index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  1. <route lang="json5">
  2. { layout: 'tabbar', style: { navigationBarTitleText: '我的', navigationStyle: 'custom' } }
  3. </route>
  4. <script setup lang="ts">
  5. import { onMounted, ref } from 'vue'
  6. import CardMenu from '@/components/card-menu.vue'
  7. import SectionHeading from '@/components/section-heading.vue'
  8. import { designer, settled, treaty, vipBg, noEyes, eyes, referrerTwo } from '../../core/libs/pngs'
  9. import { BannerMode } from '@/core/libs/models'
  10. import { integral, coupon, order, agent, setting, vip, scan, close } from '../../core/libs/svgs'
  11. import {
  12. getDesignerInfo,
  13. getMemberUserInfo,
  14. getTasks,
  15. storeAndPunchIn,
  16. getAppMemberLevelConfigs,
  17. getCircleTaskStatus,
  18. getHonorStatistics,
  19. getBanners,
  20. } from '../../core/libs/requests'
  21. import { useUserStore, useGlobalStore } from '../../store'
  22. import { storeToRefs } from 'pinia'
  23. import { isEmpty, set } from 'radash'
  24. import TasksCard from './components/tasks-card.vue'
  25. import { useRouter } from '../../core/utils/router'
  26. import { NetImages } from '../../core/libs/net-images'
  27. import { qrCodeString2Object, requestToast, toQrCodeString } from '../../core/utils/common'
  28. import { QrCodeBusinessType } from '../../core/libs/enums'
  29. import { usePermissions } from '../../composables/permissions'
  30. import { AnalysisEventType, useAnalysis } from '@/composables/analysis'
  31. const { option, report } = useAnalysis(false)
  32. const official = ref(false)
  33. const hidePoints = ref<boolean>(true)
  34. const isPublish = ref<boolean>(false)
  35. const router = useRouter()
  36. const userStore = useUserStore()
  37. const { isLogined, userInfo } = storeToRefs(userStore)
  38. const { features, clickByPermission } = usePermissions()
  39. const { setUserInfo } = userStore
  40. const { data, run } = useRequest(getMemberUserInfo)
  41. const { data: taskData, run: getTaskData } = useRequest(() => getTasks({}), {
  42. initialData: { list: [] },
  43. })
  44. const { setPublishState } = useGlobalStore()
  45. const publishState = computed(() => useGlobalStore().publishState)
  46. const tabbar$on = () => {
  47. setPublishState(true)
  48. }
  49. const { data: banners, run: setBanners } = useRequest(
  50. () => getBanners({ mode: BannerMode.StudyTour }),
  51. { initialData: [] },
  52. )
  53. const { data: taskStatusData, run: setTaskStatus } = useRequest(
  54. async () => ({
  55. data: await Promise.all<any>([
  56. getCircleTaskStatus().then(({ data }) => ({
  57. completed: data,
  58. btnProps: {
  59. content: data ? '已完成' : '去发布',
  60. disabled: data,
  61. onClick: () => tabbar$on(),
  62. },
  63. })),
  64. {
  65. btnProps: {
  66. content: '去打卡',
  67. onClick: () =>
  68. features.value.checkInAtStoreTask
  69. ? clickByPermission('scan', () => handleClickScan())
  70. : router.push(`/pages/mine/authentication/index`),
  71. },
  72. },
  73. {
  74. btnProps: {
  75. content: '去邀请',
  76. onClick: () => {
  77. console.log(userInfo.value.homePageUrl, 'userInfo.value.homePageUrl')
  78. userInfo.value.homePageUrl == null
  79. ? uni.showToast({ title: '请先配置个人主页全部信息', icon: 'none' })
  80. : router.push('/pages-sub/mine/invite/index')
  81. },
  82. },
  83. },
  84. {
  85. btnProps: {
  86. content: '去关注',
  87. // onClick: () => uni.showToast({ title: '敬请期待', icon: 'none' }),
  88. onClick: () =>
  89. uni.previewImage({
  90. urls: [
  91. 'https://image.zhuchaohui.com/zhucaohui/de0f43be81ba577eda016a994ab203bb79149f09a7a919b7598ec2c0cb04c75d.png',
  92. ],
  93. }),
  94. },
  95. },
  96. ]),
  97. code: 0,
  98. msg: '',
  99. }),
  100. { initialData: [] },
  101. )
  102. const { data: designerInfo, run: setDesignerInfo } = useRequest(
  103. () => getDesignerInfo(userInfo.value.userId),
  104. { initialData: {} },
  105. )
  106. const { data: levelConfigs, run: setLevelConfigs } = useRequest(() => getAppMemberLevelConfigs(), {
  107. initialData: [],
  108. })
  109. const { data: statistics, run: setStatistics } = useRequest(() => getHonorStatistics())
  110. const menus = ref([
  111. { title: '积分明细', icon: integral, path: '/pages-sub/mine/points/index' },
  112. { title: '优惠券包', icon: coupon, path: '/pages-sub/mine/coupons/index' },
  113. { title: '我的订单', icon: order, path: '/pages-sub/mine/orders/index' },
  114. { title: '专属客服', icon: agent, path: '/pages-sub/mine/agents/index' },
  115. { title: '个人设置', icon: setting, path: '/pages-sub/mine/setting/index' },
  116. ])
  117. const pieces = ref([
  118. {
  119. title: '设计师成长计划',
  120. desc: '赋能设计共同成长',
  121. icon: 'https://image.zhuchaohui.com/zhucaohui/e5f83b3b61868838b0947290242488a0f51e308ca66182f8563c9a305129b119.png',
  122. class: 'items-start! pb-0 pr-0',
  123. iconSize: 102,
  124. gridItemClass: 'col-start-1 row-start-1 row-end-3',
  125. path: '/pages-sub/home/study-tour/list',
  126. },
  127. {
  128. title: '材料商入驻',
  129. desc: '提供优质材料商',
  130. icon: settled,
  131. class: 'flex-row! pb-0 pr-0',
  132. iconSize: 68,
  133. gridItemClass: 'col-start-2 row-start-1',
  134. path: '/pages/material/settled-in/index',
  135. },
  136. {
  137. title: '筑巢荟公约',
  138. desc: '共同遵守平台公约',
  139. icon: treaty,
  140. class: 'col-start-2 row-start-2 flex-row! pb-0',
  141. iconSize: 44,
  142. gridItemClass: 'col-start-2 row-start-2',
  143. path: '/pages-sub/mine/convention/index',
  144. },
  145. ])
  146. const avatar = computed(() =>
  147. !isEmpty(userInfo.value.avatar) ? userInfo.value.avatar : NetImages.DefaultAvatar,
  148. )
  149. const certificationStatusText = computed(() => {
  150. if (!userInfo.value.userStatusEnabled) return '未认证'
  151. if (userInfo.value.userStatusEnabled && userInfo.value.userAuthStatus === 1) return '审核中'
  152. if (userInfo.value.userStatusEnabled && userInfo.value.userAuthStatus === 2) return '已驳回'
  153. return '通过'
  154. })
  155. const certificationBtnText = computed(
  156. () => ({ 0: '通过', 1: '审核中', 2: '已驳回' })[userInfo.value.userAuthStatus] || '去认证',
  157. )
  158. const isCertified = computed(
  159. () => userInfo.value.userStatusEnabled && userInfo.value.userAuthStatus === 0,
  160. )
  161. const nickNameClickHandle = async () => {
  162. if (isLogined.value) return
  163. uni.navigateTo({ url: '/pages-sub/login/index' })
  164. }
  165. const handleToAuthentication = (event) => {
  166. // 阻止事件冒泡
  167. event.stopPropagation()
  168. if (!isLogined.value){
  169. router.push('/pages-sub/login/index')
  170. }else{
  171. router.push('/pages-sub/mine/authentication/index')
  172. }
  173. }
  174. const handleToHomepage = () => {
  175. uni.navigateTo({ url: `/pages-sub/mine/homepage/index?id=${userInfo.value.userId}` })
  176. }
  177. const handleMenuClick = (path) => {
  178. path && router.push(path)
  179. }
  180. const handleClickScan = async () => {
  181. const { result } = await uni.scanCode({})
  182. console.log("result:" + result)
  183. const { type, options } = qrCodeString2Object(result)
  184. // console.log(type)
  185. if (type === QrCodeBusinessType.InStoreClockIn) {
  186. if (!features.value.checkInAtStoreTask)
  187. return router.push('/pages-sub/mine/authentication/index')
  188. try {
  189. await storeAndPunchIn({ id: options.id })
  190. option.value = {
  191. remark: `最近到店品牌: ${options.name}`,
  192. }
  193. await report(AnalysisEventType.ViewPage)
  194. // await storeAndPunchIn({ id: 24 })
  195. await router.push(`/pages-sub/mine/scan/result/index?result=${result}`)
  196. } catch (e) {
  197. if (e.code === 1000) {
  198. await router.push(
  199. `/pages-sub/mine/scan/result/index?result=${toQrCodeString(type, { name: options.name, desc: e.msg })}`,
  200. )
  201. } else {
  202. await uni.showToast({ title: e.msg, icon: 'none' })
  203. }
  204. }
  205. return
  206. }
  207. // console.log(options.path)
  208. if (type === QrCodeBusinessType.PagePath) {
  209. await router.push(options.path)
  210. return
  211. }
  212. await router.push(`/pages-sub/mine/scan/result/index?result=${result}`)
  213. }
  214. const navBarProps = ref({ customClass: 'bg-transparent!' })
  215. onMounted(async () => {
  216. await setLevelConfigs()
  217. // 监听 tabbar 点击事件
  218. uni.$on('clickTabbar', (e) => {
  219. isPublish.value = e
  220. })
  221. })
  222. onShow(async () => {
  223. await setBanners()
  224. pieces.value[0].path = `/pages-sub/home/study-tour/list?designStudyAbroadYear=${banners.value[0].designStudyAbroadYear}&designDesc=${banners.value[0].designDesc}`
  225. console.log(pieces.value)
  226. if (isLogined.value) {
  227. await run()
  228. setUserInfo({
  229. ...userInfo.value,
  230. ...data.value,
  231. })
  232. await Promise.all([setDesignerInfo(), getTaskData(), setTaskStatus(), setStatistics()])
  233. }
  234. })
  235. onPageScroll(({ scrollTop }: { scrollTop: number }) => {
  236. navBarProps.value.customClass = scrollTop === 0 ? 'bg-transparent!' : ''
  237. })
  238. </script>
  239. <template>
  240. <view>
  241. <wd-navbar
  242. fixed
  243. safeAreaInsetTop
  244. custom-class="bg-transparent!"
  245. :bordered="false"
  246. v-bind="navBarProps"
  247. >
  248. <template v-if="!publishState" #left>
  249. <wd-button
  250. v-if="isLogined"
  251. type="text"
  252. size="small"
  253. custom-class="p-0!"
  254. :round="false"
  255. @click="clickByPermission('scan', () => handleClickScan())"
  256. >
  257. <wd-img width="25" height="25" :src="scan" custom-class="vertical-bottom"></wd-img>
  258. </wd-button>
  259. </template>
  260. </wd-navbar>
  261. <div
  262. class="bg-black/30 flex flex-col justify-end box-border bg-[url(https://image.zhuchaohui.com/zhucaohui/c706ec14a5a927c10e9e1fa0153affb11bbdd9255882e18c67ee82687ff9813a.png)] bg-[length:100%_auto]"
  263. :class="[isCertified ? 'aspect-[0.94/1] pb-44' : 'aspect-[1.15/1] pb-20']"
  264. >
  265. <div class="my-6.5 px-3.5 flex">
  266. <!-- <img class="w-[72px] h-[72px] rounded-full border border-white" :src="avatar" /> -->
  267. <div class="relative">
  268. <wd-img
  269. custom-class="rounded-full border border-white overflow-hidden"
  270. :width="72"
  271. :height="72"
  272. :src="avatar"
  273. ></wd-img>
  274. <wd-img
  275. v-if="userInfo?.level"
  276. custom-class="absolute! level-circle"
  277. :width="79"
  278. :height="80"
  279. :src="userInfo?.level?.avatar"
  280. ></wd-img>
  281. </div>
  282. <div class="ms-3.5 ml-3.5">
  283. <div class="flex items-center gap-1.25">
  284. <div
  285. class="text-white text-xl font-normal font-['PingFang_SC'] leading-normal"
  286. @click="nickNameClickHandle"
  287. >
  288. {{ !isLogined ? '请点击登录' : userInfo?.nickname }}
  289. </div>
  290. <div v-if="isCertified">
  291. <div
  292. class="w-[76px] h-6 relative"
  293. @click="router.push(`/pages-sub/mine/honors/index?id=${userInfo?.userId}`)"
  294. >
  295. <div
  296. class="w-[76px] h-[18px] left-3 pl-1 top-[1.5px] absolute bg-[#4f4b42] rounded-[3px] border border-solid border-[#a89f89]"
  297. >
  298. <div
  299. class="text-center text-[#f2e3c4] text-xs font-normal font-['PingFang_SC'] leading-normal"
  300. >
  301. 荣誉徽章:{{ statistics?.badgeCount }}
  302. </div>
  303. </div>
  304. <wd-img width="23" height="23" :src="NetImages.HonorsLogo"></wd-img>
  305. </div>
  306. </div>
  307. </div>
  308. <div
  309. v-if="!isCertified"
  310. class="mt-2 w-[63px] h-[26px] bg-black/10 rounded-[20px] border border-white/60 flex items-center justify-center"
  311. >
  312. <div
  313. class="text-center text-white text-xs font-normal font-['PingFang_SC'] leading-normal"
  314. >
  315. <!-- 未认证 -->
  316. {{ certificationStatusText }}
  317. </div>
  318. </div>
  319. <div v-if="isCertified" class="flex items-center text-white" @click="handleToHomepage">
  320. <div
  321. class="text-center text-white text-sm font-normal font-['PingFang_SC'] leading-normal"
  322. >
  323. 个人主页
  324. </div>
  325. <wd-icon name="arrow-right"></wd-icon>
  326. </div>
  327. </div>
  328. </div>
  329. <div
  330. class="px-3.5 flex items-center"
  331. @click="router.push('/pages-sub/mine/homepage/statistics/index')"
  332. >
  333. <div class="flex items-center">
  334. <div class="text-white text-base font-normal font-['PingFang_SC'] leading-normal mr-1">
  335. <!-- 0 -->
  336. {{ designerInfo?.shareCount || 0 }}
  337. </div>
  338. <div
  339. class="text-center text-[#e9e7e4] text-xs font-normal font-['PingFang_SC'] leading-normal"
  340. >
  341. 分享
  342. </div>
  343. </div>
  344. <div class="h-4 w-[2px] mx-4 bg-[#e9e7e4]"></div>
  345. <div class="flex items-center">
  346. <div class="text-white text-base font-normal font-['PingFang_SC'] leading-normal mr-1">
  347. <!-- 0 -->
  348. {{ designerInfo?.viewCount || 0 }}
  349. </div>
  350. <div
  351. class="text-center text-[#e9e7e4] text-xs font-normal font-['PingFang_SC'] leading-normal"
  352. >
  353. 浏览
  354. </div>
  355. </div>
  356. <div class="h-4 w-[2px] mx-4 bg-[#e9e7e4]"></div>
  357. <div class="flex items-center">
  358. <div class="text-white text-base font-normal font-['PingFang_SC'] leading-normal mr-1">
  359. <!-- 0 -->
  360. <!-- {{designerInfo.c}} -->
  361. {{ designerInfo?.winCustomerCount || 0 }}
  362. </div>
  363. <div
  364. class="text-center text-[#e9e7e4] text-xs font-normal font-['PingFang_SC'] leading-normal"
  365. >
  366. 获客
  367. </div>
  368. </div>
  369. </div>
  370. </div>
  371. <div class="relative top--18" v-if="!isCertified">
  372. <div class="mx-3.5 box-border absolute left-0 right-0 top-0">
  373. <wd-img :src="vipBg" width="100%" mode="widthFix"></wd-img>
  374. </div>
  375. <div class="mx-3.5 box-border absolute left-0 right-0 top-0 p-3.5">
  376. <div class="flex items-center" @click="router.push('/pages-sub/mine/levels/index')">
  377. <wd-img :src="vip" width="35" mode="widthFix"></wd-img>
  378. <div
  379. class="ml-2 text-center text-[#faeac6] text-sm font-normal font-['PingFang_SC'] leading-normal"
  380. >
  381. 查看会员等级权益
  382. </div>
  383. <div class="flex-1"></div>
  384. <div
  385. class="w-[83px] h-[29px] bg-gradient-to-l from-[#ffdab6] to-[#ffebd5] rounded-[30px] flex items-center justify-center"
  386. @click="handleToAuthentication($event)"
  387. >
  388. <div
  389. class="text-[#9e5934] text-[13px] font-normal font-['PingFang_SC'] leading-relaxed flex items-center gap-1"
  390. >
  391. <!-- 去认证 -->
  392. <!-- {{ !isCertified ? '去认证' : certificationStatusText }} -->
  393. {{ certificationBtnText }}
  394. <div
  395. class="w-3.5 h-3.5 bg-gradient-to-tl from-[#773b19] to-[#9e5a34] rounded-full flex items-center justify-center"
  396. >
  397. <wd-icon name="play" size="12" color="#ffead2"></wd-icon>
  398. </div>
  399. </div>
  400. </div>
  401. </div>
  402. </div>
  403. </div>
  404. <template v-else>
  405. <div class="relative top--36">
  406. <div
  407. class="mx-3.5 absolute left-0 right-0 top--4 aspect-[1.93/1] rounded-2.5 p-3.5 box-border bg-[length:100%]"
  408. :class="['text-[#65341d]']"
  409. :style="{
  410. // backgroundImage: `url(${levels[userInfo.level?.level]?.bgImg})`,
  411. // color: levels[userInfo.level?.level]?.color,
  412. backgroundImage: `url(${userInfo.level?.icon})`,
  413. }"
  414. >
  415. <div class="flex items-center">
  416. <div class="flex-1"></div>
  417. <div class="mr-[140rpx] pt-[10px]" @click="hidePoints= !hidePoints">
  418. <wd-img :src="hidePoints?noEyes:eyes" width="20" height="20"></wd-img>
  419. </div>
  420. <div
  421. class="bg-gradient-to-r from-[#333333] to-[#20201e] rounded-tl-[20px] rounded-bl-[20px] mr--3.5 px-2 mt-3"
  422. @click.stop="router.push('/pages-sub/mine/levels/index')"
  423. >
  424. <div class="text-xs font-normal font-['PingFang_SC'] leading-relaxed color-[#f3f3f3]">
  425. 更多等级权益
  426. </div>
  427. </div>
  428. </div>
  429. <div class="flex items-end mt-10">
  430. <div>
  431. <span class="text-4xl font-normal font-['D-DIN_Exp'] mr-1">
  432. {{ hidePoints?"****":userInfo.level?.point }}
  433. </span>
  434. <span class="text-center text-xs font-normal font-['PingFang_SC']">积分</span>
  435. </div>
  436. <div class="flex-1"></div>
  437. <div class="text-sm font-normal font-['PingFang_SC']">
  438. 会员号:{{ userInfo.level?.cardCode }}
  439. </div>
  440. </div>
  441. </div>
  442. </div>
  443. <!-- <div class="relative h-4 box-border bg-transparent rounded-b-[50%] z-1"></div> -->
  444. </template>
  445. <view
  446. class="relative bottom-4 py-1 px-3.5"
  447. :class="[
  448. userInfo.userStatusEnabled
  449. ? 'bg-[url(https://image.zhuchaohui.com/zhucaohui/f12b86304c84eec692f4c8f040a06c63fe7110359b8a4a1262b97b1eef6b605c.png)] bg-[length:100%]'
  450. : 'bg-neutral-100 rounded-t-2xl',
  451. ]"
  452. >
  453. <div class="flex justify-around my-6">
  454. <template v-for="({ title, icon, path }, i) in menus" :key="i">
  455. <div class="flex flex-col items-center" @click="handleMenuClick(path)">
  456. <div class="relative flex-col justify-start items-start inline-flex">
  457. <wd-img :src="icon" width="24" height="24" custom-class="vertical-bottom"></wd-img>
  458. </div>
  459. <div
  460. class="mt-2 text-black/90 text-[12.86px] font-normal font-['PingFang_SC'] leading-relaxed"
  461. >
  462. {{ title }}
  463. </div>
  464. </div>
  465. </template>
  466. </div>
  467. <div @click="router.push('/pages-sub/mine/refferrer/index')" class="flex items-center px-[30rpx] py-[40rpx] bg-white mb-[20rpx] rounded-[32rpx]" v-if="isLogined">
  468. <wd-img width="44" height="44" :src="referrerTwo"></wd-img>
  469. <div class="flex-grow ml-[20rpx]">
  470. <div class="text-[32rpx]">引荐设计师赚积分</div>
  471. <div class="text-[24rpx] text-black/40">邀请新设计师可得积分奖励</div>
  472. </div>
  473. <div class="bg-black rounded-[8rpx] text-white text-[24rpx] w-[134rpx] h-[56rpx] text-center line-height-[56rpx]">立即查看</div>
  474. </div>
  475. <TasksCard
  476. v-if="isLogined"
  477. custom-class="my-6"
  478. :items="
  479. taskData.list.map((it, i) => ({
  480. ...it,
  481. ...(taskStatusData[i] || {}),
  482. }))
  483. "
  484. ></TasksCard>
  485. <SectionHeading custom-class="my-6" title="和筑巢荟一起共同成长"></SectionHeading>
  486. <CardMenu :items="pieces" custom-class="grid-cols-2" />
  487. </view>
  488. <!-- <wd-overlay :show="official" @click="official = false">
  489. <view class="wrapper" @click.stop="">
  490. <wd-img :width="'100%'" :height="'100%'" src="https://image.zhuchaohui.com/zhucaohui/de0f43be81ba577eda016a994ab203bb79149f09a7a919b7598ec2c0cb04c75d.png" mode="widthFix"></wd-img>
  491. <wd-img @click="official = false" :src="close" width="28" height="28" custom-class="vertical-bottom"></wd-img>
  492. </view>
  493. </wd-overlay> -->
  494. </view>
  495. </template>
  496. <style scoped lang="scss">
  497. .uni-button:after {
  498. position: '' bsolute;
  499. top: 0;
  500. right: 0;
  501. bottom: 0;
  502. left: 0;
  503. content: '';
  504. background: #03f463;
  505. transform: skewX(15deg);
  506. }
  507. .aaaa {
  508. &::before {
  509. position: '' bsolute;
  510. top: 0;
  511. right: 0;
  512. bottom: 0;
  513. left: 0;
  514. content: '';
  515. background: #03f463;
  516. transform: skewX(15deg);
  517. }
  518. }
  519. .wrapper {
  520. position: absolute;
  521. top: 50%;
  522. left: 50%;
  523. width: 540rpx;
  524. transform: translate(-50%, -50%);
  525. }
  526. :deep(.vertical-bottom) {
  527. left: 50%;
  528. transform: translateX(-50%);
  529. }
  530. :deep(.level-circle) {
  531. top: -18rpx;
  532. left: -10rpx;
  533. }
  534. </style>