|
@@ -100,7 +100,7 @@
|
|
|
/>
|
|
|
</el-col>
|
|
|
|
|
|
- <el-col :span="4" style="margin-top: 15px;margin-left:10px">
|
|
|
+ <el-col :span="4" style="margin-top: 15px; margin-left:10px">
|
|
|
<search-work-company
|
|
|
:value="parmValue.customerCode"
|
|
|
:placeholder="'业务公司'"
|
|
@@ -143,6 +143,10 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
+ <template #wsm_has_account="{ scope }">
|
|
|
+ <el-tag size="mini">{{Number(scope.row.wsm_has_account) === 0 ? '开通' :'未开通'}}</el-tag>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template #company="{scope}">
|
|
|
<div style="display:flex;align-items:center">
|
|
|
<el-tooltip :content="'企业客户编码 : ' + (scope.row.companyCode || '--')" placement="top">
|
|
@@ -236,10 +240,9 @@ export default {
|
|
|
return this.business_companyNo;
|
|
|
},
|
|
|
powers() {
|
|
|
+ const { btnList } = this.$store.getters;
|
|
|
const tran =
|
|
|
- this.$store.getters.btnList.find(
|
|
|
- item => item.menu_route == "supplierFiling"
|
|
|
- ) || {};
|
|
|
+ btnList.find(item => item.menu_route == "supplierFiling") || {};
|
|
|
const { action } = tran ?? {};
|
|
|
return action ?? [];
|
|
|
}
|