Commit 90655a88 authored by liuzeheng's avatar liuzeheng

冲突解决

parent 226e005c
......@@ -221,35 +221,9 @@ export default {
// 有修改中的不允许修改
if (this.list.findIndex((item) => item.editMode) > -1) return false;
return true;
};
computed:{
isChinese() {
return this.$i18n.locale === "zh_CN";
},
feeList(){
return this.list.filter(item => item.status === 0)
},
// 正在编辑的费用申请
currentItem(){
return this.list.find(item => item.editMode)
},
// 是否修改模式
editMode(){
return !!this.currentItem
},
modifable(){
return (index) => {
// 审核中不允许修改
if(this.processInstanceId) return false
// 有未提交的不允许修改
if(this.feeList.length) return false
// 有修改中的不允许修改
if(this.list.findIndex(item => item.editMode) > -1) return false
return true
}
}
},
},
created() {
this.getDictDatas(this.DICT_TYPE.AUDIT_STATUS).forEach((e) => {
this.STATUS[e.value] = e.label;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment