From f5987541fae35e3bed09c5eb7ba3b5f8ab65aba9 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期一, 21 七月 2025 17:50:02 +0800 Subject: [PATCH] 1.生产订单、生产派工、工序排产前端页面开发 --- src/views/procurementManagement/invoiceEntry/components/Modal.vue | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/views/procurementManagement/invoiceEntry/components/Modal.vue b/src/views/procurementManagement/invoiceEntry/components/Modal.vue index 7161460..4ff529e 100644 --- a/src/views/procurementManagement/invoiceEntry/components/Modal.vue +++ b/src/views/procurementManagement/invoiceEntry/components/Modal.vue @@ -77,6 +77,8 @@ style="width: 100%" v-model="form.entryDate" type="date" + value-format="YYYY-MM-DD" + format="YYYY-MM-DD" clearable /> </el-form-item> @@ -103,6 +105,8 @@ style="width: 100%" v-model="form.enterDate" type="date" + value-format="YYYY-MM-DD" + format="YYYY-MM-DD" clearable /> </el-form-item> @@ -123,6 +127,7 @@ placeholder="璇疯緭鍏�" :min="0" :step="0.1" + :precision="2" clearable style="width: 100%" @change="invoiceNumBlur(row)" @@ -133,6 +138,7 @@ v-model="row.ticketsAmount" placeholder="璇疯緭鍏�" :min="0" + :precision="2" :step="0.1" clearable style="width: 100%" @@ -142,10 +148,10 @@ </PIMTable> </el-form> <template #footer> + <el-button type="primary" :loading="modalLoading" @click="submitForm"> + {{ modalOptions.confirmText }} + </el-button> <el-button @click="closeModal">{{ modalOptions.cancelText }}</el-button> - <el-button type="primary" :loading="modalLoading" @click="submitForm"> - {{ modalOptions.confirmText }} - </el-button> </template> </el-dialog> </template> -- Gitblit v1.9.3