|
@@ -97,7 +97,7 @@
|
|
|
v-if="
|
|
v-if="
|
|
|
[2].includes(row.status) &&
|
|
[2].includes(row.status) &&
|
|
|
((isAddContract == 1 && row.genContractNum == 0) ||
|
|
((isAddContract == 1 && row.genContractNum == 0) ||
|
|
|
- isAddContract == 0)
|
|
|
|
|
|
|
+ isAddContract == 0) && row.createUserId == userInfo.id
|
|
|
"
|
|
"
|
|
|
>
|
|
>
|
|
|
生成合同
|
|
生成合同
|
|
@@ -309,6 +309,13 @@
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
minWidth: 180
|
|
minWidth: 180
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'createUserName',
|
|
|
|
|
+ label: '创建人',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ showOverflowTooltip: true,
|
|
|
|
|
+ minWidth: 180
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
prop: 'status',
|
|
prop: 'status',
|
|
|
label: '状态',
|
|
label: '状态',
|
|
@@ -338,11 +345,14 @@
|
|
|
fixed: 'right'
|
|
fixed: 'right'
|
|
|
}
|
|
}
|
|
|
],
|
|
],
|
|
|
- cacheKeyUrl: 'eos-151ba34e-inquiryManage'
|
|
|
|
|
|
|
+ cacheKeyUrl: 'eos-151ba34e-inquiryManage',
|
|
|
|
|
+ userInfo: {}
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
computed: {},
|
|
computed: {},
|
|
|
created() {
|
|
created() {
|
|
|
|
|
+ this.userInfo = this.$store.getters.user.info;
|
|
|
|
|
+ console.log('userInfo~~~', userInfo);
|
|
|
this.getTreeData();
|
|
this.getTreeData();
|
|
|
//是否可以重复生成合同//0否 1是
|
|
//是否可以重复生成合同//0否 1是
|
|
|
parameterGetByCode({
|
|
parameterGetByCode({
|