更新客户管理、订单进度、生产计划、仓储汇总和配置文件

This commit is contained in:
Developer
2026-06-03 15:50:22 +08:00
parent b7b86b6549
commit 197603483d
5 changed files with 116 additions and 67 deletions

View File

@@ -102,7 +102,7 @@
</el-table-column>
<el-table-column width="150px" label="登记时间" align="center" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.登记时间 ? scope.row.登记时间.substring(0, 10) : '' }}
{{ scope.row.登记时间 }}
</template>
</el-table-column>
<el-table-column width="100px" label="客户来源" align="center" show-overflow-tooltip>
@@ -234,7 +234,7 @@
<el-form-item label="登记时间:" prop="登记时间">
<el-date-picker
v-model="form.登记时间"
:disabled="flag1 === 2 && id != 273"
:disabled="true"
type="date"
value-format="yyyy-MM-dd"
size="small"
@@ -348,6 +348,10 @@ export default {
this.$refs['form'].resetFields()
}
this.title = '新增客户'
var now = new Date()
var month = (now.getMonth() + 1).toString().padStart(2, '0')
var day = now.getDate().toString().padStart(2, '0')
this.form.登记时间 = now.getFullYear() + '-' + month + '-' + day
this.dialogFormVisible = true
},
handleEdit(row) {