|
@@ -718,7 +718,7 @@ export default {
|
|
|
methods: {
|
|
methods: {
|
|
|
setStroeNameStyle(item) {
|
|
setStroeNameStyle(item) {
|
|
|
// 是否为 家装或工装
|
|
// 是否为 家装或工装
|
|
|
- if (item.sfaStoreType.jz || item.sfaStoreType.gz) {
|
|
|
|
|
|
|
+ if (item.sfaStoreType && (item.sfaStoreType.jz || item.sfaStoreType.gz)) {
|
|
|
return {};
|
|
return {};
|
|
|
} else {
|
|
} else {
|
|
|
return { color: '#0057ba', 'text-decoration': 'underline' };
|
|
return { color: '#0057ba', 'text-decoration': 'underline' };
|
|
@@ -2112,7 +2112,7 @@ export default {
|
|
|
// 跳转好帮手门店详情
|
|
// 跳转好帮手门店详情
|
|
|
goOtherSystem(item) {
|
|
goOtherSystem(item) {
|
|
|
// 是否为 家装或工装
|
|
// 是否为 家装或工装
|
|
|
- if (item.sfaStoreType.jz || item.sfaStoreType.gz) {
|
|
|
|
|
|
|
+ if (item.sfaStoreType && (item.sfaStoreType.jz || item.sfaStoreType.gz)) {
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
if (item.storeCode) {
|
|
if (item.storeCode) {
|