From d5e65bf5925c8cd1fe0f0bf0b8b857006d64ad94 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期五, 30 一月 2026 15:26:34 +0800
Subject: [PATCH] 进销存升级 1.部分输入框(有效日期、检定周期)输入做下限制(大于0的整数数字)

---
 src/views/procurementManagement/paymentEntry/index.vue |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/views/procurementManagement/paymentEntry/index.vue b/src/views/procurementManagement/paymentEntry/index.vue
index 89152bf..3f4512b 100644
--- a/src/views/procurementManagement/paymentEntry/index.vue
+++ b/src/views/procurementManagement/paymentEntry/index.vue
@@ -261,7 +261,6 @@
   {
     label: "渚涘簲鍟嗗悕绉�",
     prop: "supplierName",
-    width:240
   },
 	{
 		label: "浠樻鐘舵��",
@@ -282,7 +281,6 @@
 		label: "浜у搧澶х被",
 		prop: "productCategory",
 		showOverflowTooltip: true,
-		width: 100
 	},
 	{
 		label: "瑙勬牸鍨嬪彿",
@@ -293,7 +291,6 @@
   {
     label: "宸蹭粯娆鹃噾棰�(鍏�)",
     prop: "ticketsTotal",
-    width: 120,
     formatData: (params) => {
       return params ? parseFloat(params).toFixed(2) : 0;
     },
@@ -301,7 +298,6 @@
   {
     label: "寰呬粯娆鹃噾棰�(鍏�)",
     prop: "pendingTicketsTotal",
-    width: 120,
     formatData: (params) => {
       return params ? parseFloat(params).toFixed(2) : 0;
     },
@@ -327,6 +323,8 @@
   searchForm: {
     supplierNameOrContractNo: "",
     status: false,
+    // 鍙煡璇㈠鎵圭姸鎬佷负 3 鐨勮褰�
+    approvalStatus: 3,
   },
   form: {
     purchaseContractNumber: "",
@@ -537,7 +535,7 @@
   })
     .then(() => {
       tableLoading.value = true;
-			delPaymentRegistration(row.id)
+			delPaymentRegistration([row.id])
         .then((res) => {
           proxy.$modal.msgSuccess("鍒犻櫎鎴愬姛");
           getList();

--
Gitblit v1.9.3