123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <route lang="json5">
- {
- layout: 'tabbar',
- style: {
- navigationBarTitleText: '首页',
- navigationBarBackgroundColor: '#fff',
- navigationStyle: 'custom',
- },
- }
- </route>
- <script lang="ts" setup>
- import dayjs from 'dayjs'
- import {
- getDeignerPointsActivities,
- getTaskList,
- getTodoPage,
- getTodos,
- scanCodeCheckPaper,
- } from '../../core/libs/requests'
- import SectionHeading from '@designer-hub/app/src/components/section-heading.vue'
- import Card from '@designer-hub/app/src/components/card.vue'
- import { merchantPageHeaderBg, scanIcon, bookIcon } from '@designer-hub/assets/src/svgs'
- import { useUserStore } from '../../store'
- import { storeToRefs } from 'pinia'
- import { qrCodeString2Object, requestToast } from '@designer-hub/app/src/core/utils/common'
- import { QrCodeBusinessType } from '../../core/libs/enums'
- import { useRouter } from '../../composables/router'
- import PageHelperEvo from '@/components/page-helper-evo.vue'
- import TaskCard from './agent/components/task-card.vue'
- import { getTasks } from '../../core/libs/agent-requests'
- defineOptions({
- name: 'Home',
- })
- const router = useRouter()
- const userStore = useUserStore()
- const { isLogined, userInfo, isAgent, isMerchant } = storeToRefs(userStore)
- const orderAmount = ref()
- const pointsAmount = computed(() => orderAmount.value * 10)
- const todosQuery = computed(() => ({
- brokerId: userInfo.value.userId.toString(),
- executionTime: [
- dayjs().startOf('days').format('YYYY-MM-DD HH:mm:ss'),
- dayjs().endOf('days').format('YYYY-MM-DD HH:mm:ss'),
- ].join(','),
- }))
- const { data: tasks, run: setTasks } = useRequest(
- () => getTasks({ brokerId: userInfo.value.userId }),
- { initialData: { list: [], total: 0 } },
- )
- const toDesigner = () => {
- uni.navigateTo({ url: '/pages/designer/index' })
- }
- const handleScanning = async () => {
- console.log('handleScanning')
- const { result } = await uni.scanCode({ scanType: ['qrCode'] })
- const { type, options } = qrCodeString2Object(result)
- if (type !== QrCodeBusinessType.InStoreWriteOff) {
- uni.showToast({ title: '不支持此二维码/条码', icon: 'none', duration: 5000 })
- return
- }
- await requestToast(() => scanCodeCheckPaper({ orderNo: options.no }), {
- success: true,
- successTitle: '验券成功',
- })
- }
- const handle2Settlement = () => {
- if ((orderAmount.value ?? '') === '') {
- uni.showToast({ title: '请输入金额', icon: 'none', duration: 5000 })
- return
- }
- router.push(
- `/pages/home/merchant/settlement?orderAmount=${orderAmount.value}&pointsAmount=${pointsAmount.value}`,
- )
- }
- const toAddReporting = () => {
- uni.navigateTo({ url: '/pages/home/merchant/add-reporting-information' })
- }
- onShow(async () => {
- isAgent.value && (await Promise.all([setTasks()]))
- })
- onLoad(() => {
- console.log(isLogined.value)
- if (!isLogined.value) {
- uni.reLaunch({ url: '/pages/login/index' })
- }
- })
- onShareAppMessage(() => ({}))
- </script>
- <template>
- <view class="flex-grow relative">
- <template v-if="isAgent">
- <div class="aspect-[0.96/1] absolute left-0 right-0 top--1">
- <wd-img
- width="100%"
- height="100%"
- :src="merchantPageHeaderBg"
- custom-class="vertical-bottom"
- ></wd-img>
- </div>
- <wd-navbar custom-class="bg-transparent!" safe-area-inset-top :bordered="false">
- <template #left>
- <div
- @click="toAddReporting"
- class="ml-1 text-center text-white text-lg font-normal font-['PingFang_SC'] leading-relaxed"
- >
- 今日待办
- </div>
- </template>
- </wd-navbar>
- <div class="flex flex-col gap-8 p-4 relative box-border">
- <div>
- <div class="text-white text-sm font-normal font-['PingFang_SC'] leading-relaxed my-2.5">
- {{ dayjs().format('YYYY-MM-DD') }}
- </div>
- <Card>
- <div>
- <!-- <wd-steps :active="1" vertical>
- <wd-step description="注册1个账号" />
- <wd-step description="登录账号并绑定手机" />
- <wd-step description="完善个人信息" />
- </wd-steps> -->
- <PageHelperEvo :request="getTodoPage" :query="todosQuery"></PageHelperEvo>
- <div
- class="flex items-center justify-center b-t b-t-solid b-t-[#f6f6f6] pt-3.5"
- @click="router.push('/pages/home/agent/todo/index')"
- >
- <div class="text-[#2357e9] text-xs font-normal font-['PingFang_SC'] leading-none">
- 全部待办
- </div>
- <wd-icon name="arrow-right" size="10" color="#2357e9" />
- </div>
- </div>
- </Card>
- </div>
- <div>
- <SectionHeading
- title="任务"
- path="/pages/home/tasks/index"
- end-text="查看全部"
- custom-class="mb-5"
- ></SectionHeading>
- <div class="flex overflow-x-auto whitespace-nowrap mx--4 px-4 gap-4 box-border">
- <Card v-if="!tasks.list.length">
- <wd-status-tip image="search" tip="当前暂无未开始/进行中的任务" />
- </Card>
- <template v-for="(it, i) in tasks.list" :key="i">
- <div class="inline-block">
- <div class="w-[calc(75vw)]"><TaskCard :options="it"></TaskCard></div>
- </div>
- </template>
- </div>
- </div>
- <div>
- <SectionHeading title="设计师" path="" custom-class="mb-5"></SectionHeading>
- <div class="flex flex-col gap-4">
- <template
- v-for="{ label, color, ...it } of [
- {
- label: '关系报备',
- color: 'white',
- path: '/pages/home/agent/report-infos/index',
- },
- { label: '重点跟进设计师', color: '#FF523F', path: '/pages/designer/index' },
- { label: '全部设计师', color: '#7199FF', path: '/pages/designer/index' },
- { label: '本月新增设计师', color: '#FFE786', path: '/pages/designer/index' },
- { label: '超过30天未跟进', color: '#89F4E3', path: '/pages/designer/index' },
- {
- label: '超过60天未产生积分设计师',
- color: '#FFBA6A',
- path: '/pages/designer/index',
- },
- {
- label: '超过60天未消耗积分设计师',
- color: '#C494FF',
- path: '/pages/designer/index',
- },
- { label: '未成交过设计师', color: '#FF9EE2', path: '/pages/designer/index' },
- ]"
- :key="label"
- >
- <div class="h-12 bg-white rounded-lg shadow flex items-center hover:bg-[#fff6f5]">
- <div
- class="w-1.5 h-12 rounded-tl-lg rounded-bl-lg shadow"
- :style="{ background: color }"
- ></div>
- <div class="flex-1 mx-3">
- <SectionHeading :title="label" :path="it.path" size="sm"></SectionHeading>
- </div>
- </div>
- </template>
- </div>
- </div>
- <div>
- <SectionHeading title="设计师最新动态" path="" custom-class="mb-5"></SectionHeading>
- <PageHelperEvo
- :request="getDeignerPointsActivities"
- :query="{ brokerId: userInfo.userId }"
- >
- <template #default="{ source }">
- <div class="flex flex-col gap-4">
- <template v-for="(it, i) in source.list" :key="i">
- <Card>
- <div
- class="text-black/90 text-sm font-normal font-['PingFang_SC'] leading-none"
- >
- {{ it.content }}
- </div>
- <div
- class="mt-3 text-black/30 text-xs font-normal font-['PingFang_SC'] leading-none"
- >
- {{ dayjs(it.createTime).format('YYYY-MM-DD hh:mm') }}
- </div>
- </Card>
- </template>
- </div>
- </template>
- </PageHelperEvo>
- </div>
- </div>
- </template>
- <template v-if="isMerchant">
- <div
- class="bg-white backdrop-blur-[60px] my-[16px] flex flex-col justify-center items-center p-[16px] mt-[20px]"
- >
- <div
- class="w-[68px] h-[68px] bg-[#2357e9] rounded-full mt-[37px] flex items-center justify-center"
- >
- <wd-img width="36px" height="36px" :src="scanIcon"></wd-img>
- </div>
- <div class="w-full mt-[45px]">
- <wd-button block :round="false" @click="handleScanning">
- <div
- class="text-center text-white text-base font-normal font-['PingFang_SC'] leading-normal"
- >
- 扫码验券
- </div>
- </wd-button>
- </div>
- </div>
- <div
- class="bg-white backdrop-blur-[60px] flex flex-col justify-center items-center p-[16px] mt-[20px]"
- >
- <div
- class="w-[68px] h-[68px] bg-[#2357e9] rounded-full mt-[34px] flex items-center justify-center"
- >
- <wd-img width="36px" height="36px" :src="bookIcon"></wd-img>
- </div>
- <div class="w-full flex items-center mt-[40px] gap-5">
- <div
- class="text-black/90 text-base font-normal font-['PingFang_SC'] leading-relaxed w-[96px]"
- >
- 输入订单金额
- </div>
- <div class="flex-1 bg-[#f5f7f9] rounded-lg flex items-center p-3.5">
- <wd-input
- custom-class="bg-transparent! flex-1"
- type="number"
- no-border
- placeholder="请输金额"
- v-model="orderAmount"
- />
- </div>
- </div>
- <div class="w-full flex items-center mt-[20px] gap-5">
- <div
- class="text-black/90 text-base font-normal font-['PingFang_SC'] leading-relaxed w-[96px]"
- >
- 需支付积分
- </div>
- <div class="text-[#ff2d2d] text-base font-normal font-['PingFang_SC'] leading-relaxed">
- {{ pointsAmount }} 积分
- </div>
- </div>
- <div class="w-full mt-[45px]">
- <wd-button block :round="false" @click="handle2Settlement">
- <div
- class="text-center text-white text-base font-normal font-['PingFang_SC'] leading-normal"
- >
- 积分结账
- </div>
- </wd-button>
- </div>
- </div>
- </template>
- </view>
- </template>
- <style></style>
|