|
@@ -242,7 +242,9 @@ export default {
|
|
|
collectionTime: [{ required: true, message: '请输入收款时间', trigger: 'blur' }],
|
|
|
auditPersonId: [{ required: true, message: '请选择审核人', trigger: 'blur' }]
|
|
|
},
|
|
|
- settlementAccountForm: {},
|
|
|
+ settlementAccountForm: {
|
|
|
+ remark: '无'
|
|
|
+ },
|
|
|
disabled: false,
|
|
|
fileList: [],
|
|
|
optionData: [],
|
|
@@ -285,7 +287,8 @@ export default {
|
|
|
'{y}-{m}-{d} {h}:{i}:{s}'
|
|
|
),
|
|
|
registerUser: this.checkData[9].approvalPersonName || sessionStorage.getItem('realName'),
|
|
|
- approvalSuggest: this.checkData[9].approvalSuggest
|
|
|
+ approvalSuggest: this.checkData[9].approvalSuggest,
|
|
|
+ remark: ''
|
|
|
}
|
|
|
this.list = this.checkData[9].histroy.filter(e => {
|
|
|
return (e.approvalStatus == 2 && e.nodeAlias == 'managerApproval')
|
|
@@ -297,7 +300,8 @@ export default {
|
|
|
this.settlementAccountForm = {
|
|
|
registerDate: this.checkData[9].approvalTime ? this.checkData[9].approvalTime.slice(0, 10) : '',
|
|
|
registerUser: this.checkData[9].approvalPersonName,
|
|
|
- approvalSuggest: this.checkData[9].approvalSuggest
|
|
|
+ approvalSuggest: this.checkData[9].approvalSuggest,
|
|
|
+ remark: ''
|
|
|
}
|
|
|
if (this.checkData[9].histroy) {
|
|
|
this.list = this.checkData[9].histroy.filter(e => {
|
|
@@ -316,7 +320,9 @@ export default {
|
|
|
// 获取数据
|
|
|
async getData() {
|
|
|
// 初始化数据
|
|
|
- const settlementAccountForm = {}
|
|
|
+ const settlementAccountForm = {
|
|
|
+ remar: ''
|
|
|
+ }
|
|
|
|
|
|
// 调用接口
|
|
|
const form = await queryFormData(this.settlementAccountFormId)
|