需求变更

This commit is contained in:
zhaoxiao
2021-09-30 10:03:58 +08:00
parent 6a69b17709
commit 5893f554b5
4 changed files with 31 additions and 3 deletions
@@ -315,6 +315,13 @@ export default {
workingGroupDetail: {},
chargeNoticeList: [], // 收费通知号选项
importParam: {},
// 给定当年作为来款年份默认查询条件
queryParam: {
paymentDate: new Date().getFullYear().toString()
},
lastQueryParam: {
paymentDate: new Date().getFullYear().toString()
},
canOperate: true, // 是否可操作(负责人B不可操作)
}
},
@@ -460,7 +467,16 @@ export default {
// let url = `${window._CONFIG['onlinePreviewDomainURL']}?url=${encodeURIComponent(fileFullUrl)}`
window.open(url)
}
}
},
searchReset() {
this.lastQueryParam = {
paymentDate: new Date().getFullYear().toString()
}
this.queryParam = {
paymentDate: new Date().getFullYear().toString()
}
this.loadData(1)
},
}
}
</script>