@@ -145,11 +145,11 @@ export default {
this.searchOrEditTitle = "搜索";
this.searchOrUpdateVisible = true;
this.$nextTick(() => {
- this.$refs.searchOrUpdate.init();
+ this.$refs.searchOrUpdate.init()
});
},
conditionSearchSubmit(dataForm) {
- this.listQuery.disposalMethodStatus = dataForm.disposalMethodStatus
+ this.listQuery.key = dataForm.disposalMethodStatus
this.listQuery.page = 1;
this.getDataList();
this.searchOrUpdateVisible = false;
@@ -194,7 +194,7 @@ export default {
case "search":
// this.listQuery.paramCode = val.paramCode;
this.listQuery.page = 1;
- this.listQuery.failureTypeStatus = null
+ this.listQuery.key = null
this.getDataList();
break;
case "add":
diff --git a/src/views/modules/quality/qmsInspectionPosition.vue b/src/views/modules/quality/qmsInspectionPosition.vue
index 1c54d8a..300648f 100644
--- a/src/views/modules/quality/qmsInspectionPosition.vue
+++ b/src/views/modules/quality/qmsInspectionPosition.vue
@@ -1,7 +1,7 @@
@@ -9,9 +9,9 @@
-
+
-
-
+
+
-
+
+
@@ -50,7 +51,7 @@
import basicPage from "@/mixins/basic-page"
import InspectionPositionAdd from "./components/InspectionPosition-add"
// import AddOrUpdate from './params-add-or-update'
-// import failureTypeSearch from "./components/failureTypeSearch"
+import inspectionPositionSearch from "./components/inspectionPositionSearch"
// import available from "./components/available.vue"
import basicSearch from "@/mixins/basic-search"
import i18n from "@/i18n"
@@ -85,6 +86,7 @@ export default {
mixins: [basicPage, basicSearch],
components: {
// failureTypeSearch,
+ inspectionPositionSearch,
InspectionPositionAdd
},
data() {
@@ -144,6 +146,8 @@ export default {
},
conditionSearchSubmit(dataForm) {
this.listQuery.code = dataForm.code
+ this.listQuery.name = dataForm.name
+
this.listQuery.page = 1;
this.getDataList();
this.searchOrUpdateVisible = false;
@@ -188,7 +192,8 @@ export default {
case "search":
// this.listQuery.paramCode = val.paramCode;
this.listQuery.page = 1;
- this.listQuery.failureTypeStatus = null
+ this.listQuery.name = null
+ this.listQuery.code = null
this.getDataList();
break;
case "add":
diff --git a/src/views/modules/quality/qmsTransferRecords.vue b/src/views/modules/quality/qmsTransferRecords.vue
index 36a2c0e..d01ce0d 100644
--- a/src/views/modules/quality/qmsTransferRecords.vue
+++ b/src/views/modules/quality/qmsTransferRecords.vue
@@ -1,7 +1,7 @@
@@ -28,7 +28,7 @@
-
+
@@ -215,7 +215,12 @@ export default {
case "search":
// this.listQuery.paramCode = val.paramCode;
this.listQuery.page = 1;
- this.listQuery.failureTypeStatus = null
+ this.listQuery.startTime = null
+ this.listQuery.endTime = null
+ this.listQuery.inspectionStage = null
+ this.listQuery.inspectionTypeId = null
+ this.listQuery.productId = null
+ this.listQuery.supplierId = null
this.getDataList();
break;
case "add":
diff --git a/src/views/modules/quality/qmsTransferScheme.vue b/src/views/modules/quality/qmsTransferScheme.vue
index 285d834..524c224 100644
--- a/src/views/modules/quality/qmsTransferScheme.vue
+++ b/src/views/modules/quality/qmsTransferScheme.vue
@@ -1,7 +1,7 @@
@@ -28,7 +28,7 @@
-
+
@@ -168,9 +168,8 @@ export default {
});
},
conditionSearchSubmit(dataForm) {
- this.listQuery.transferSchemeCode = dataForm.transferSchemeCode
- this.listQuery.transferSchemeName = dataForm.transferSchemeName
-
+ this.listQuery.name = dataForm.name
+ this.listQuery.code = dataForm.code
this.listQuery.page = 1;
this.getDataList();
this.searchOrUpdateVisible = false;
@@ -215,7 +214,8 @@ export default {
case "search":
// this.listQuery.paramCode = val.paramCode;
this.listQuery.page = 1;
- this.listQuery.failureTypeStatus = null
+ this.listQuery.code = null
+ this.listQuery.name = null
this.getDataList();
break;
case "add":