diff --git a/src/views/basic/product/udiInfoManageSp.vue b/src/views/basic/product/udiInfoManageSp.vue
index b54a9cab..db8fd27e 100644
--- a/src/views/basic/product/udiInfoManageSp.vue
+++ b/src/views/basic/product/udiInfoManageSp.vue
@@ -281,6 +281,7 @@ export default {
};
this.total = 0;
this.list = [];
+ this.getList();
},
search() {
this.filterQuery.page = 1;
@@ -671,7 +672,7 @@ export default {
}
,
created() {
- // this.getList();
+ this.getList();
this.selectSysParam();
this.getSysFilter();
this.findMethod();
diff --git a/src/views/inout/DialogSelectReceiveOrder.vue b/src/views/inout/DialogSelectReceiveOrder.vue
index 348e5759..ada5cd42 100644
--- a/src/views/inout/DialogSelectReceiveOrder.vue
+++ b/src/views/inout/DialogSelectReceiveOrder.vue
@@ -90,7 +90,7 @@
-
+
diff --git a/src/views/purchase/purApply/purApply.vue b/src/views/purchase/purApply/purApply.vue
index c5b787d7..e5c4ff25 100644
--- a/src/views/purchase/purApply/purApply.vue
+++ b/src/views/purchase/purApply/purApply.vue
@@ -264,6 +264,7 @@ export default {
targetDeptCode: this.invCodebe,
targetInvCode:null
};
+ this.initActDateRange()
if(deptCode!=this.invCodebe){
this.getInvList()
}
@@ -428,6 +429,13 @@ export default {
this. getInvList();
});
},
+ initActDateRange(){
+
+ let end = new Date();
+ let start = new Date();
+ start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
+ this.actDateRange = [start, end];
+ }
}
,
@@ -450,10 +458,7 @@ export default {
}
,
created() {
- let end = new Date();
- let start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
- this.actDateRange = [start, end];
+ this.initActDateRange()
this.getDeptList();
}
,
diff --git a/src/views/purchase/purApply/pureApplyAudit.vue b/src/views/purchase/purApply/pureApplyAudit.vue
index b19e148f..817ed906 100644
--- a/src/views/purchase/purApply/pureApplyAudit.vue
+++ b/src/views/purchase/purApply/pureApplyAudit.vue
@@ -28,7 +28,7 @@
-
+
{
this.invList = res.data || [];
})
@@ -387,8 +399,8 @@ export default {
this.filterQuery.targetDeptCode=this.deptList[0].code
this.invCodebe=this.filterQuery.targetDeptCode
}
- this.getList();
this. getInvList();
+ this.getList();
});
},
}
diff --git a/src/views/purchase/purApply/pureApplySearch.vue b/src/views/purchase/purApply/pureApplySearch.vue
index 4f3d69d2..6b141ed6 100644
--- a/src/views/purchase/purApply/pureApplySearch.vue
+++ b/src/views/purchase/purApply/pureApplySearch.vue
@@ -311,6 +311,7 @@ export default {
targetDeptCode: this.invCodebe,
};
this.actDateRange = [];
+ this.actAuditDateRange = [];
this.getList();
},
diff --git a/src/views/purchase/purPlan/purPlan.vue b/src/views/purchase/purPlan/purPlan.vue
index 63419ab1..42401c74 100644
--- a/src/views/purchase/purPlan/purPlan.vue
+++ b/src/views/purchase/purPlan/purPlan.vue
@@ -179,6 +179,7 @@ export default {
editStatus: 1,
emergency:'',
deptCode:'',
+ invCode:null
},
invCodebe:null,
formName: null,
@@ -262,8 +263,10 @@ export default {
type: 1,
editStatus: 1,
deptCode: this.invCodebe,
+ invCode:null
};
this.actDateRange = [];
+ this.getInvList()
this.getList();
},
handleClose() {
@@ -406,6 +409,7 @@ export default {
var query={
parentId:this.filterQuery.deptCode
}
+ this.filterQuery.invCode = null
filterSubAll(query).then((res) => {
this.invList = res.data || [];
})