|
|
@@ -342,7 +342,7 @@
|
|
|
<el-button type="danger" icon="el-icon-delete" size="small" @click="removeList"
|
|
|
:disabled="(selection.length == 0) || detailData.seeDisabled || browse">删除
|
|
|
</el-button>
|
|
|
- <el-button type="primary" icon="el-icon-plus" size="small" @click="DLSelection"
|
|
|
+ <el-button v-if="isDisabled" type="primary" icon="el-icon-plus" size="small" @click="DLSelection"
|
|
|
:disabled="detailData.seeDisabled || !form.corpId || browse">
|
|
|
代理订单
|
|
|
</el-button>
|
|
|
@@ -1596,6 +1596,7 @@ export default {
|
|
|
routerTag: '',
|
|
|
handId: null,
|
|
|
mockData: [],
|
|
|
+ isDisabled:true,
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
@@ -1618,6 +1619,9 @@ export default {
|
|
|
},
|
|
|
//初始化查询
|
|
|
async created() {
|
|
|
+ if(this.$store.getters.userInfo.tenant_id == "941197"){
|
|
|
+ this.isDisabled = false
|
|
|
+ }
|
|
|
this.rowHeight = (window.innerHeight - 130) + 'px'
|
|
|
this.customerContact = await this.getColumnData(this.getColumnName(15), customerContact);
|
|
|
this.getWorkDicts("payment_term").then(res => {
|