|
|
@@ -19,7 +19,7 @@
|
|
|
<van-tabbar-item name="agentList">
|
|
|
<span>经销商</span>
|
|
|
<template #icon>
|
|
|
- <van-icon :name="tabBarActive == 'agentList' ? activedChain : chains" />
|
|
|
+ <van-icon :name="tabBarActive == 'agentList' ? activedChain : chain" />
|
|
|
</template>
|
|
|
</van-tabbar-item>
|
|
|
<van-tabbar-item name="info">
|
|
|
@@ -33,10 +33,10 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import chains from '@/assets/icon/chain.svg';
|
|
|
-import activedChain from '@/assets/icon/activedChain.svg';
|
|
|
-import info from '@/assets/icon/info.svg';
|
|
|
-import activedInfo from '@/assets/icon/activedInfo.svg';
|
|
|
+import chain from '@/assets/icon/chain.png';
|
|
|
+import activedChain from '@/assets/icon/activedChain.png';
|
|
|
+import info from '@/assets/icon/info.png';
|
|
|
+import activedInfo from '@/assets/icon/activedInfo.png';
|
|
|
export default {
|
|
|
name: 'tabBar',
|
|
|
props: {
|
|
|
@@ -47,7 +47,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- chains: chains,
|
|
|
+ chain: chain,
|
|
|
activedChain: activedChain,
|
|
|
info: info,
|
|
|
activedInfo: activedInfo,
|