|
@@ -16,6 +16,7 @@ import { locationIcon } from '@designer-hub/assets/src/svgs'
|
|
import { dayjs } from 'wot-design-uni'
|
|
import { dayjs } from 'wot-design-uni'
|
|
import PageHelperEvo from '@/components/page-helper-evo.vue'
|
|
import PageHelperEvo from '@/components/page-helper-evo.vue'
|
|
import ListHelperEvo from '@/components/list-helper-evo.vue'
|
|
import ListHelperEvo from '@/components/list-helper-evo.vue'
|
|
|
|
+import { business } from '@/core/libs/svgs'
|
|
|
|
|
|
const pageHelperRef = ref<ComponentExposed<typeof PageHelperEvo>>()
|
|
const pageHelperRef = ref<ComponentExposed<typeof PageHelperEvo>>()
|
|
const userStore = useUserStore()
|
|
const userStore = useUserStore()
|
|
@@ -64,6 +65,9 @@ const toSettings = () => {
|
|
const toInvite = () => {
|
|
const toInvite = () => {
|
|
uni.navigateTo({ url: '/pages/mine/agent/invite/index' })
|
|
uni.navigateTo({ url: '/pages/mine/agent/invite/index' })
|
|
}
|
|
}
|
|
|
|
+const toBusinessCard = () => {
|
|
|
|
+ uni.navigateTo({ url: '/pages/mine/agent/business-card/index' })
|
|
|
|
+}
|
|
const confirmDelete = (id: number) => {
|
|
const confirmDelete = (id: number) => {
|
|
uni.showModal({
|
|
uni.showModal({
|
|
title: '提示',
|
|
title: '提示',
|
|
@@ -123,6 +127,14 @@ onMounted(async () => {
|
|
<!-- ID:{{ agent?.inviteCode }}-->
|
|
<!-- ID:{{ agent?.inviteCode }}-->
|
|
<!-- </div>-->
|
|
<!-- </div>-->
|
|
</div>
|
|
</div>
|
|
|
|
+ <!-- <div class="flex flex-col items-center mr-[30px]" @click.stop="toBusinessCard">
|
|
|
|
+ <div class="w-[29px] h-[29px] relative">
|
|
|
|
+ <wd-img width="28" height="28" :src="business"></wd-img>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="text-white text-[10px] font-normal font-['PingFang_SC'] leading-relaxed">
|
|
|
|
+ 个人名片
|
|
|
|
+ </div>
|
|
|
|
+ </div> -->
|
|
<div class="flex flex-col items-center" @click.stop="toInvite">
|
|
<div class="flex flex-col items-center" @click.stop="toInvite">
|
|
<div class="w-[29px] h-[29px] relative">
|
|
<div class="w-[29px] h-[29px] relative">
|
|
<wd-img width="28" height="28" :src="qrCode"></wd-img>
|
|
<wd-img width="28" height="28" :src="qrCode"></wd-img>
|