|
|
@@ -717,8 +717,12 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
setStroeNameStyle(item) {
|
|
|
- // 是否为 家装或工装
|
|
|
- if (item.sfaStoreType && (item.sfaStoreType.jz || item.sfaStoreType.gz)) {
|
|
|
+ // 家装或工装 approvalStatus:是否结案 0:未结案,1:已结案
|
|
|
+ if (
|
|
|
+ (item.sfaStoreType && (item.sfaStoreType.jz || item.sfaStoreType.gz)) ||
|
|
|
+ item.approvalStatus == null ||
|
|
|
+ item.approvalStatus == 0
|
|
|
+ ) {
|
|
|
return {};
|
|
|
} else {
|
|
|
return { color: '#0057ba', 'text-decoration': 'underline' };
|
|
|
@@ -2111,8 +2115,12 @@ export default {
|
|
|
},
|
|
|
// 跳转好帮手门店详情
|
|
|
goOtherSystem(item) {
|
|
|
- // 是否为 家装或工装
|
|
|
- if (item.sfaStoreType && (item.sfaStoreType.jz || item.sfaStoreType.gz)) {
|
|
|
+ // 家装或工装 approvalStatus:是否结案 0:未结案,1:已结案
|
|
|
+ if (
|
|
|
+ (item.sfaStoreType && (item.sfaStoreType.jz || item.sfaStoreType.gz)) ||
|
|
|
+ item.approvalStatus == null ||
|
|
|
+ item.approvalStatus == 0
|
|
|
+ ) {
|
|
|
return false;
|
|
|
}
|
|
|
if (item.storeCode) {
|