From 736a4b462e06a3335cb8235c0211bc8f5547bfd6 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期六, 12 七月 2025 14:47:59 +0800 Subject: [PATCH] 1.来票台账删除功能联调 --- src/views/salesManagement/receiptPayment/index.vue | 19 ++++++++++++++----- 1 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/views/salesManagement/receiptPayment/index.vue b/src/views/salesManagement/receiptPayment/index.vue index 9c88689..762865d 100644 --- a/src/views/salesManagement/receiptPayment/index.vue +++ b/src/views/salesManagement/receiptPayment/index.vue @@ -66,7 +66,7 @@ :expand-row-keys="expandedRowKeys" @expand-change="expandChange" - height="calc(100vh - 18.5em)" + height="calc(100vh - 21.5em)" > <el-table-column align="center" type="selection" width="55" /> <el-table-column type="expand"> @@ -119,6 +119,7 @@ size="small" @click="changeEditType(scope.row)" v-if="!scope.row.editType" + :disabled="scope.row.registrant !== userStore.nickName" >缂栬緫</el-button > <el-button @@ -127,6 +128,7 @@ size="small" @click="saveReceiptPayment(scope.row)" v-if="scope.row.editType" + :disabled="scope.row.registrant !== userStore.nickName" >淇濆瓨</el-button > <el-button @@ -134,6 +136,7 @@ type="primary" size="small" @click="delReceiptRecord(scope.row)" + :disabled="scope.row.registrant !== userStore.nickName" >鍒犻櫎</el-button > </template> @@ -146,11 +149,14 @@ label="閿�鍞悎鍚屽彿" prop="salesContractNo" show-overflow-tooltip + width="240" /> <el-table-column label="瀹㈡埛鍚堝悓鍙�" prop="customerContractNo" show-overflow-tooltip + width="240" + /> <el-table-column label="瀹㈡埛鍚嶇О" @@ -162,22 +168,26 @@ label="椤圭洰鍚嶇О" prop="projectName" show-overflow-tooltip + width="340" /> <el-table-column label="浜у搧澶х被" prop="productCategory" show-overflow-tooltip + width="100" /> <el-table-column label="鍙戠エ鍙�" prop="invoiceNo" show-overflow-tooltip + width="200" /> <el-table-column label="鍙戠エ閲戦(鍏�)" prop="invoiceTotal" show-overflow-tooltip :formatter="formattedNumber" + width="200" /> <el-table-column label="绋庣巼(%)" prop="taxRate" show-overflow-tooltip /> <el-table-column @@ -185,11 +195,13 @@ prop="receiptPaymentAmountTotal" show-overflow-tooltip :formatter="formattedNumber" + width="200" /> <el-table-column label="寰呭洖娆鹃噾棰�(鍏�)" prop="noReceiptAmount" show-overflow-tooltip + width="200" > <template #default="{ row, column }"> <el-text type="danger"> @@ -276,12 +288,9 @@ </el-col> <el-col :span="12"> <el-form-item label="鏈鍥炴閲戦锛�" prop="receiptPaymentAmount"> - <el-input - type="number" - min="0" + <el-input-number :step="0.01" :min="0" style="width: 100%" v-model="form.receiptPaymentAmount" placeholder="璇疯緭鍏�" - :step="0.01" clearable /> </el-form-item> -- Gitblit v1.9.3