From 9bb5b09920fb70f1606f2cf39cfaffdba786be54 Mon Sep 17 00:00:00 2001 From: maven <2163098428@qq.com> Date: 星期三, 16 七月 2025 16:34:41 +0800 Subject: [PATCH] yys 增加筛选条件 --- src/views/salesManagement/invoiceRegistration/index.vue | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/views/salesManagement/invoiceRegistration/index.vue b/src/views/salesManagement/invoiceRegistration/index.vue index f5c293c..4fefa73 100644 --- a/src/views/salesManagement/invoiceRegistration/index.vue +++ b/src/views/salesManagement/invoiceRegistration/index.vue @@ -2,7 +2,7 @@ <div class="app-container"> <div class="search_form"> <el-form :inline="true" :model="searchForm"> - <el-form-item label="寮�绁ㄧ櫥璁�"> + <el-form-item label="瀹㈡埛鍚嶇О"> <el-input v-model="searchForm.customerName" style="width: 240px" @@ -319,6 +319,7 @@ <el-table-column label="鏈寮�绁ㄦ暟" prop="currentInvoiceNum" width="180"> <template #default="scope"> <el-input-number :step="0.1" :min="0" style="width: 100%" + :precision="2" v-model="scope.row.currentInvoiceNum" @change="invoiceNumBlur(scope.row)" ></el-input-number> @@ -331,6 +332,7 @@ > <template #default="scope"> <el-input-number :step="0.01" :min="0" style="width: 100%" + :precision="2" v-model="scope.row.currentInvoiceAmount" @change="invoiceAmountBlur(scope.row)" ></el-input-number> -- Gitblit v1.9.3