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}) {