结论
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
18631081161 2026-03-26 15:06:50 +08:00
parent 32f5bce9cc
commit 72f6d19a5f
3 changed files with 8 additions and 5 deletions

View File

@ -26,7 +26,11 @@
<el-input v-model.number="queryParams.assignUserId" placeholder="请输入用户ID" clearable />
</el-form-item>
<el-form-item label="状态">
<DictSelect v-model="queryParams.status" type="invite_code_status" placeholder="请选择状态" clearable />
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable style="width: 160px">
<el-option label="未分配" :value="1" />
<el-option label="已分配" :value="2" />
<el-option label="已使用" :value="3" />
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="handleSearch"><el-icon><Search /></el-icon></el-button>

View File

@ -9,7 +9,7 @@
flex-direction: column;
width: 100%;
height: 100%;
gap: 20px;
gap: 16px;
}
/* 板块标题 */
@ -24,7 +24,6 @@
display: flex;
gap: 40px;
align-items: flex-start;
flex: 1;
}
.la-chart-panel {

View File

@ -116,8 +116,8 @@ function formatDate(dateStr) {
* 格式化金额整数
*/
function formatAmount(amount) {
if (amount === undefined || amount === null) return '0'
return Math.floor(Number(amount)).toString()
if (amount === undefined || amount === null) return '0.00'
return Number(amount).toFixed(2)
}
/**