|
|
@@ -509,21 +509,8 @@
|
|
|
watch: {
|
|
|
'form.type': {
|
|
|
handler(newVal, old) {
|
|
|
+ this.clearData();
|
|
|
if (!newVal) {
|
|
|
- this.form.planSource = '';
|
|
|
- this.form.planSourceCode = '';
|
|
|
- this.form.productName = '';
|
|
|
- this.form.productCode = '';
|
|
|
- this.form.batchNo = '';
|
|
|
- this.form.specification = '';
|
|
|
- this.form.modelType = '';
|
|
|
- this.form.brandNo = '';
|
|
|
- this.form.productNumber = '';
|
|
|
- this.form.qualifiedNumber = '';
|
|
|
- this.form.unqualifiedNumber = '';
|
|
|
- this.form.qualificationRate = '';
|
|
|
- this.form.totalWeight = '';
|
|
|
- this.form.sampleNumber = '';
|
|
|
this.sourceList = [];
|
|
|
this.$emit('resetTable');
|
|
|
return;
|
|
|
@@ -535,20 +522,7 @@
|
|
|
'form.planSource': {
|
|
|
handler(newVal) {
|
|
|
if (!newVal) {
|
|
|
- this.form.planSource = '';
|
|
|
- this.form.planSourceCode = '';
|
|
|
- this.form.productName = '';
|
|
|
- this.form.productCode = '';
|
|
|
- this.form.batchNo = '';
|
|
|
- this.form.specification = '';
|
|
|
- this.form.modelType = '';
|
|
|
- this.form.brandNo = '';
|
|
|
- this.form.productNumber = '';
|
|
|
- this.form.qualifiedNumber = '';
|
|
|
- this.form.unqualifiedNumber = '';
|
|
|
- this.form.qualificationRate = '';
|
|
|
- this.form.totalWeight = '';
|
|
|
- this.form.sampleNumber = '';
|
|
|
+ this.clearData();
|
|
|
this.$emit('resetTable');
|
|
|
}
|
|
|
},
|
|
|
@@ -595,6 +569,23 @@
|
|
|
this.getDictListIqoCode('measurement_type');
|
|
|
},
|
|
|
methods: {
|
|
|
+ clearData() {
|
|
|
+ this.form.planSource = '';
|
|
|
+ this.form.planSourceCode = '';
|
|
|
+ this.form.productName = '';
|
|
|
+ this.form.productCode = '';
|
|
|
+ this.form.batchNo = '';
|
|
|
+ this.form.specification = '';
|
|
|
+ this.form.modelType = '';
|
|
|
+ this.form.brandNo = '';
|
|
|
+ this.form.productNumber = '';
|
|
|
+ this.form.qualifiedNumber = '';
|
|
|
+ this.form.unqualifiedNumber = '';
|
|
|
+ this.form.qualificationRate = '';
|
|
|
+ this.form.totalWeight = '';
|
|
|
+ this.form.sampleNumber = '';
|
|
|
+ },
|
|
|
+
|
|
|
// 打开工艺路线弹窗
|
|
|
openVersion() {
|
|
|
this.$refs.versionRefs.open();
|