[update] 收入合同关联优化;支出合同校验修改;系统催款

This commit is contained in:
zhaoxiao
2021-09-09 18:39:05 +08:00
parent cd5e5ae3a3
commit 2bd07a3397
5 changed files with 312 additions and 38 deletions
@@ -31,10 +31,7 @@
placeholder="请选择负责人"
option-filter-prop="children"
:filter-option="filterOption">
<a-select-option v-for="item in userList" :key="item.id" :value="item.id">{{
item.realname
}}
</a-select-option>
<a-select-option v-for="item in userList" :key="item.id" :value="item.id">{{ item.realname }}</a-select-option>
</a-select>
</a-form-item>
</a-col>
@@ -98,7 +95,7 @@
:disabled-charge-company="true"
:default-charge-way="2"
:is-contract-num-disabled="true"
@ok="modalFormOk"></general-project-module>
@ok="selectProjectOk"></general-project-module>
</j-modal>
</template>
@@ -310,6 +307,7 @@ export default {
},
handleCancel() {
this.close()
this.$emit('ok')
},
/**
* 打开新增module
@@ -346,9 +344,21 @@ export default {
*/
searchReset() {
this.lastQueryParam = {}
this.queryParam.departId = this.departId
let obj = {
departId: this.departId,
principalId: undefined,
year: undefined,
}
this.queryParam = Object.assign(this.queryParam, obj)
this.loadData(1)
},
/**
* 新建项目完成后关闭两个模态框
*/
selectProjectOk() {
this.close()
this.$emit('ok')
}
}
}
</script>