|
|
|
@ -404,6 +404,7 @@
|
|
|
|
|
:before-close="handleClose"
|
|
|
|
|
>
|
|
|
|
|
<pureApplyEdit
|
|
|
|
|
:pageType = "pageType"
|
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
|
:idQuery="idQuery"
|
|
|
|
|
v-on:cancelDialog="getId"
|
|
|
|
@ -425,6 +426,7 @@ import {
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
pageType:null,
|
|
|
|
|
defaultSort: {prop: 'createTime', order: 'desc'},
|
|
|
|
|
showSearch: true,
|
|
|
|
|
pId: null,
|
|
|
|
@ -441,7 +443,8 @@ export default {
|
|
|
|
|
emergency: '',
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
targetDeptCode: '',
|
|
|
|
|
targetInvCode: null
|
|
|
|
|
targetInvCode: null,
|
|
|
|
|
pageType: this.$route.query.pageType
|
|
|
|
|
},
|
|
|
|
|
isChang: false,
|
|
|
|
|
formName: null,
|
|
|
|
@ -524,9 +527,6 @@ export default {
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
onReset() {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "",
|
|
|
|
|
});
|
|
|
|
|
let deptCode = this.filterQuery.targetDeptCode
|
|
|
|
|
this.filterQuery = {
|
|
|
|
|
billNo: "",
|
|
|
|
@ -543,6 +543,7 @@ export default {
|
|
|
|
|
targetDeptCode: this.invCodebe,
|
|
|
|
|
targetInvCode: null,
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
pageType: this.pageType
|
|
|
|
|
};
|
|
|
|
|
this.initActDateRange()
|
|
|
|
|
if (deptCode != this.invCodebe) {
|
|
|
|
@ -797,6 +798,8 @@ export default {
|
|
|
|
|
this.initActDateRange()
|
|
|
|
|
this.getCurInvList(this);
|
|
|
|
|
this.getDeptList(this);
|
|
|
|
|
|
|
|
|
|
this.pageType = this.$route.query.pageType;
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
}
|
|
|
|
|