From 5b62f70d5df5731a571d709f0f9ff312a7cec5dc Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期四, 20 十一月 2025 16:25:59 +0800
Subject: [PATCH] fix: 巡检加上绞合外径可选
---
src/pages/production/list/index.vue | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/src/pages/production/list/index.vue b/src/pages/production/list/index.vue
index 79b8d0e..bd6f0e4 100644
--- a/src/pages/production/list/index.vue
+++ b/src/pages/production/list/index.vue
@@ -41,6 +41,8 @@
amount: "amount",
unAmount: "unAmount",
unit: "unit",
+ poleModel: "poleModel",
+ contractNo: "contractNo",
});
const props = defineProps({
api: {
@@ -51,7 +53,7 @@
type: String,
default: "",
},
- model: {
+ search: {
type: String,
default: "",
},
@@ -80,8 +82,8 @@
current: pageNo,
size: pageSize,
};
- if (props.model) {
- params.model = props.model;
+ if (props.search) {
+ params.search = props.search;
}
const { code, data } = await props.api(params);
if (code == 200) {
@@ -99,6 +101,8 @@
map.totalAmount = "totalAmount";
map.amount = "amount";
map.unAmount = "unAmount";
+ map.poleModel = "poleModel";
+ map.contractNo = "contractNo";
}
if (data.data.total == 0) {
pagingRef.value.complete(true);
--
Gitblit v1.9.3