| | |
| | | <template v-if="isChannelAccount"> |
| | | <ListItemV2 :icon="IconMineDataBoard" title="数据看板" @click="goDashboard"></ListItemV2> |
| | | <ListItemV2 |
| | | :icon="IconMinePromotion" |
| | | :icon="IconMineChannel" |
| | | title="渠道二维码" |
| | | @click="goShareQrcode" |
| | | ></ListItemV2> |
| | |
| | | @click="goPromotionQrcode" |
| | | ></ListItemV2> |
| | | <ListItemV2 |
| | | :icon="IconMinePromotion" |
| | | :icon="IconMineAgentRecruitment" |
| | | title="代理招募" |
| | | @click="goAgentRecruitment" |
| | | ></ListItemV2> |
| | |
| | | import IconMineUserId from '@/assets/mine/icon-mine-userId.png'; |
| | | import IconMineDataBoard from '@/assets/mine/icon-mine-data-board.png'; |
| | | import IconMinePromotion from '@/assets/mine/icon-mine-promotion.png'; |
| | | import IconMineChannel from '@/assets/mine/icon-mine-channel.png'; |
| | | import IconMineAgentRecruitment from '@/assets/mine/icon-mine-agent-recruitment.png'; |
| | | import IconMineCustomerService from '@/assets/mine/icon-mine-customer-service.png'; |
| | | import IconMineExist from '@/assets/mine/icon-mine-exist.png'; |
| | | import { useSystemStore } from '@/stores/modules/system'; |
| | |
| | | const goShareQrcode = useAccessLogin(() => goPage(RouterPath.shareQrcode)); |
| | | const goPromotionQrcode = useAccessLogin(() => goPage(RouterPath.promotionQrcode)); |
| | | const goDashboard = useAccessLogin(() => goPage(RouterPath.dashboard)); |
| | | const goAgentRecruitment = useAccessLogin(() => goPage(RouterPath.AgentRecruitment)); |
| | | const goAgentRecruitment = useAccessLogin(() => goPage(RouterPath.agentRecruitment)); |
| | | |
| | | async function goLogout() { |
| | | try { |