|
|
@ -109,7 +109,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="menu"> |
|
|
<div class="menu"> |
|
|
<div class="item" v-for="tab of menuList" :key="tab.id" @click="goPage(tab)"> |
|
|
|
|
|
|
|
|
<div class="item" v-for="tab of menuList" :key="tab.id" @click="goMenu(tab)"> |
|
|
<div class="icon"><img :src="theme.images[tab.content.moduleName]" /></div> |
|
|
<div class="icon"><img :src="theme.images[tab.content.moduleName]" /></div> |
|
|
<div class="title">{{ tab.content.name }}</div> |
|
|
<div class="title">{{ tab.content.name }}</div> |
|
|
</div> |
|
|
</div> |
|
|
@ -188,9 +188,9 @@ getBrandList().then(({ data: { allShopNum, industryFatherList } }) => { |
|
|
guideDesc.value = `全场${allShopNum}个品牌${spFormat ? `,其中${spFormat.shopNum}个${spFormat.industryName}品牌` : ''}` |
|
|
guideDesc.value = `全场${allShopNum}个品牌${spFormat ? `,其中${spFormat.shopNum}个${spFormat.industryName}品牌` : ''}` |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
const goPage = item => { |
|
|
|
|
|
router.push(item.content.path) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
const goPage = item => router.push(item.path) |
|
|
|
|
|
|
|
|
|
|
|
const goMenu = item => router.push(item.content.path) |
|
|
|
|
|
|
|
|
const setShopById = id => { |
|
|
const setShopById = id => { |
|
|
const shop = shopList.value.find(_shop => _shop.shopCode === id) |
|
|
const shop = shopList.value.find(_shop => _shop.shopCode === id) |
|
|
|