油漆实验室批量自动获取工单信息并填充

This commit is contained in:
2025-03-18 13:09:57 +08:00
parent 971fc4bd7b
commit f152b69ae4

View File

@@ -178,7 +178,7 @@
<el-dialog title="工单自动生成" :visible.sync="batchWorkOrderAddDialog.show" width="30%"> <el-dialog title="工单自动生成" :visible.sync="batchWorkOrderAddDialog.show" width="30%">
<h2>选择工单日期</h2> <h2>选择工单日期</h2>
<div> <div>
<el-date-picker v-model="batchWorkOrderAddDialog.searchDate" type="date" placeholder="选择日期时间" <el-date-picker v-model="batchWorkOrderAddDialog.actionDate" type="date" placeholder="选择日期时间"
:clearable="false"> :clearable="false">
</el-date-picker> </el-date-picker>
</div> </div>
@@ -240,7 +240,7 @@ export default {
show: false, show: false,
workOrderList: [], workOrderList: [],
total: 0, total: 0,
searchDate: '' actionDate: ''
}, },
sexList: [ sexList: [
@@ -257,7 +257,7 @@ export default {
} }
}, },
mounted() { mounted() {
this.batchWorkOrderAddDialog.searchDate = new Date(); this.batchWorkOrderAddDialog.actionDate = new Date();
this.fetchData() this.fetchData()
}, },
methods: { methods: {