fix: 日志、定时任务

This commit is contained in:
2025-07-31 16:03:02 +08:00
parent 9adfce31ea
commit 689237654c
14 changed files with 119 additions and 99 deletions

View File

@@ -140,12 +140,14 @@
<el-select
v-model="form.supp_code"
placeholder="请选择"
style="width: 200px;">
style="width: 200px;"
>
<el-option
v-for="item in supplist"
:key="item.supp_code"
:label="item.supp_name"
:value="item.supp_code">
:value="item.supp_code"
>
<span style="float: left">{{ item.supp_name }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.supp_code }}</span>
</el-option>
@@ -175,11 +177,6 @@
<el-table-column prop="status" label="状态" :formatter="formattStatus" :min-width="flexWidth('status',crud.data,'状态')" />
<el-table-column prop="qty" label="可用数" :formatter="crud.formatNum3" :min-width="100" />
<el-table-column prop="frozen_qty" label="冻结数" :formatter="crud.formatNum3" :min-width="100" />
<el-table-column label="总数" :formatter="crud.formatNum3" :min-width="100">
<template slot-scope="scope">
{{ parseFloat(scope.row.qty + scope.row.frozen_qty).toFixed(3) }}
</template>
</el-table-column>
<el-table-column prop="remark" label="备注" :min-width="flexWidth('remark',crud.data,'备注')" />
<el-table-column prop="create_name" label="组盘人" :min-width="flexWidth('create_name',crud.data,'组盘人')" />
<el-table-column prop="create_time" label="组盘时间" :min-width="flexWidth('create_time',crud.data,'组盘时间')" />