From a119bf8f2681ac0ebf78f4b698370acf4255cefc Mon Sep 17 00:00:00 2001
From: yuanwei <362142050@qq.com>
Date: Sun, 26 Nov 2023 02:12:11 +0800
Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E5=8A=A8=E6=80=81?=
=?UTF-8?q?=E9=85=8D=E7=BD=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../basic/product/UdiInfoSelectLocalUdi.vue | 56 +++++++++----------
1 file changed, 28 insertions(+), 28 deletions(-)
diff --git a/src/views/basic/product/UdiInfoSelectLocalUdi.vue b/src/views/basic/product/UdiInfoSelectLocalUdi.vue
index 1c43108..1a8bf6d 100644
--- a/src/views/basic/product/UdiInfoSelectLocalUdi.vue
+++ b/src/views/basic/product/UdiInfoSelectLocalUdi.vue
@@ -2,7 +2,7 @@
-
+
@@ -66,7 +66,7 @@
-
+
@@ -77,7 +77,7 @@
-
+
@@ -86,7 +86,7 @@
-
+
@@ -111,8 +111,8 @@
-
-
+
+
@@ -122,8 +122,8 @@
-
-
+
+
@@ -131,8 +131,8 @@
-
-
+
+
@@ -303,8 +303,8 @@
@@ -522,7 +522,7 @@ export default {
data() {
return {
- unionQuery: {
+ filterQuery: {
page: 1,
limit: 10,
udiCode: null,
@@ -569,7 +569,7 @@ export default {
this.$router.push({
path: "",
});
- this.unionQuery = {
+ this.filterQuery = {
page: 1,
limit: 10,
udiCode: null,
@@ -584,11 +584,11 @@ export default {
this.udidlList = [];
},
clear() {
- this.unionQuery.ylqxzcrbarmc == null;
- this.unionQuery.cpmctymc = null;
+ this.filterQuery.ylqxzcrbarmc == null;
+ this.filterQuery.cpmctymc = null;
},
searchList() {
- this.unionQuery.page = 1;
+ this.filterQuery.page = 1;
this.getList();
},
getSuperSeaech() {
@@ -599,12 +599,12 @@ export default {
type: "warning",
})
.then(() => {
- if (this.unionQuery.nameCode == "") {
+ if (this.filterQuery.nameCode == "") {
this.$message.warning("请输入完成DI信息进行查询!");
return;
}
this.loading = true;
- superSearch(this.unionQuery)
+ superSearch(this.filterQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
@@ -628,18 +628,18 @@ export default {
getList() {
if (
- this.unionQuery.udiCode == "" &&
- this.unionQuery.nameCode == "" &&
- this.unionQuery.cpmctymc == "" &&
- this.unionQuery.ylqxzcrbarmc == "" &&
- this.unionQuery.ggxh == "" &&
- this.unionQuery.zczbhhzbapzbh == ""
+ this.filterQuery.udiCode == "" &&
+ this.filterQuery.nameCode == "" &&
+ this.filterQuery.cpmctymc == "" &&
+ this.filterQuery.ylqxzcrbarmc == "" &&
+ this.filterQuery.ggxh == "" &&
+ this.filterQuery.zczbhhzbapzbh == ""
) {
this.$message.warning("请输入查询条件");
return;
}
this.loading = true;
- getUdiInfos(this.unionQuery)
+ getUdiInfos(this.filterQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
@@ -662,7 +662,7 @@ export default {
},
keyup_submit(_this,event) {
- _this.unionQuery.page = 1;
+ _this.filterQuery.page = 1;
_this.getList();
event.target.select();
},
@@ -677,7 +677,7 @@ export default {
},
handleCurrentChange(val) {
- this.unionQuery.page = val;
+ this.filterQuery.page = val;
this.getList();
},
tableRowClassName({row, rowIndex}) {