123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <route lang="json5">
- {
- style: {
- navigationBarTitleText: '品质商城',
- navigationBarBackgroundColor: '#fff',
- },
- }
- </route>
- <script setup lang="ts">
- import TiltedButton from '@/components/tilted-button.vue'
- import Product from '../components/product.vue'
- import { shoppingBag } from '@designer-hub/assets/src/assets/svgs/index'
- import InvertedTrapezoidButton from '@/components/inverted-trapezoid-button.vue'
- import TrapeziumButton from '@/components/trapezium-button.vue'
- import { useRouter } from '../../../../core/utils/router'
- import { createProductItemBuy, getProduct, productPlacing } from '../../../../core/libs/requests'
- import { requestToast } from '../../../../core/utils/common'
- import { useUserStore } from '../../../../store'
- import { storeToRefs } from 'pinia'
- import BottomAppBar from '@/components/bottom-app-bar.vue'
- import ButtonEvo from '@/components/button-evo.vue'
- import { usePermissions } from '../../../../composables/permissions'
- const { clickByPermission } = usePermissions()
- const userStore = useUserStore()
- const router = useRouter()
- const { userInfo } = storeToRefs(userStore)
- const id = ref()
- const show = ref(false)
- const nums = ref(1)
- const type = ref<'add2Cart' | 'orderNow'>()
- const { data, run: setData } = useRequest(() => getProduct(id.value))
- const handleConfirm = async () => {
- if (type.value === 'orderNow') {
- const { data: res, code } = await requestToast(() =>
- productPlacing({
- isShoppingCart: 0,
- userId: userInfo.value.userId,
- item: 3,
- list: [
- {
- productId: id.value,
- points: data.value.points,
- nums: nums.value,
- productName: data.value.prodcutName,
- orderImgUrl: data.value.productCoverImgUrl,
- vendorId: data.value.vendorId,
- },
- ],
- couponList: [],
- }),
- )
- if (code !== 0) return
- router.push(`/pages/home/mall/confirm-order/index?data=${JSON.stringify(res)}`)
- }
- if (type.value === 'add2Cart') {
- await requestToast(
- () =>
- createProductItemBuy({
- doList: [
- {
- userId: userInfo.value.userId,
- productId: data.value?.productId || '',
- points: data.value?.points,
- nums: nums.value,
- },
- ],
- }),
- { success: true, successTitle: '加入购物车成功' },
- )
- show.value = false
- }
- }
- onLoad(async (query: { id: string }) => {
- id.value = query.id
- await setData()
- })
- </script>
- <template>
- <view class="flex-grow flex flex-col">
- <div class="aspect-[1.34/1] relative">
- <div class="absolute aspect-[1.26/1] top-0 w-full">
- <wd-img width="100%" height="100%" :src="data?.productCoverImgUrl" />
- </div>
- </div>
- <div class="relative flex-1 bg-white p-4 flex flex-col gap-4 rounded-tl-2xl rounded-tr-2xl">
- <div class="flex items-center gap-1">
- <div class="text-[#ef4343] text-[26px] font-normal font-['D-DIN Exp'] leading-normal">
- <!-- 1000 -->
- {{ data?.points }}
- </div>
- <div class="text-black/60 text-base font-normal font-['PingFang_SC'] leading-[34px]">
- 积分
- </div>
- <div
- class="w-[66px] text-black/30 text-xs font-normal font-['PingFang_SC'] line-through leading-normal"
- >
- <!-- ¥60 -->
- ¥{{ data?.productPrice }}
- </div>
- <div class="flex-1"></div>
- <div class="text-[#999999] text-xs font-normal font-['PingFang_SC'] leading-[10.18px]">
- <!-- 已售5件 -->
- 已售{{ data?.exchangeCount || 0 }}件
- </div>
- </div>
- <div class="h-4 text-black text-xl font-normal font-['PingFang_SC'] leading-[10.18px]">
- <!-- 阿芙佳朵 -->
- {{ data?.prodcutName }}
- </div>
- <div class="h-0.25 bg-[#f6f6f6]"></div>
- <div class="text-black/90 text-base font-normal font-['PingFang_SC'] leading-normal">
- 积分兑换说明:
- </div>
- <div
- class="w-[346px] h-[95px] text-black/40 text-xs font-normal font-['PingFang_SC'] leading-[23px]"
- >
- · 不限制兑换个数
- <br />
- · 兑换后不支持退换货,如有问题可联系官方客户
- <br />
- · 规格:件
- <br />
- · 配送方式:到店自取
- </div>
- <div class="mx--4 h-2.5 bg-neutral-100"></div>
- <wd-divider>
- <div
- class="text-center text-black/40 text-xs font-normal font-['PingFang_SC'] leading-normal"
- >
- 商品详情
- </div>
- </wd-divider>
- <wd-img width="100%" mode="widthFix" :src="data?.productDetailsImgUrl"></wd-img>
- </div>
- <BottomAppBar fixed placeholder>
- <div class="h-[63px] bg-white backdrop-blur-[20px] flex items-center justify-between gap-2">
- <div class="flex-1">
- <ButtonEvo
- block
- color="white"
- location="right"
- @click="((show = true), (type = 'add2Cart'))"
- >
- <span class="text-black/80">加入购物车</span>
- </ButtonEvo>
- </div>
- <!-- <div @click="(show = true), (type = 'add2Cart')">
- <InvertedTrapezoidButton>
- <div
- class="w-20 h-[22px] text-black text-base font-normal font-['PingFang_SC'] leading-tight"
- >
- 加入购物车
- </div>
- </InvertedTrapezoidButton>
- </div> -->
- <div class="flex-1">
- <!-- <TrapeziumButton size="large">
- <div class="text-white text-base font-normal font-['PingFang_SC'] leading-tight">
- <div class="text-white text-base font-normal font-['PingFang_SC'] leading-tight">
- 立即兑换
- </div>
- </div>
- </TrapeziumButton> -->
- <ButtonEvo
- block
- size="lg"
- @click="
- clickByPermission('mallExchange', () => {
- show = true
- type = 'orderNow'
- })
- "
- >
- 立即兑换
- </ButtonEvo>
- </div>
- </div>
- </BottomAppBar>
- <wd-action-sheet v-model="show">
- <view class="px-7 py-11">
- <div class="flex gap-3 mb-13.5">
- <div class="w-[110px] h-[110px] bg-[#f6f6f6] rounded-2xl">
- <wd-img width="100%" height="100%" :src="data?.productCoverImgUrl"></wd-img>
- </div>
- <div class="flex flex-col justify-between flex-1">
- <div class="text-black/40 text-base font-normal font-['PingFang_SC'] leading-normal">
- {{ data?.prodcutName }}
- </div>
- <div class="flex items-center">
- <div class="text-[#ef4343] text-[22px] font-normal font-['D-DIN Exp'] leading-normal">
- {{ data?.points }}
- </div>
- <div class="text-black/40 text-sm font-normal font-['PingFang_SC'] leading-[34px]">
- 积分
- </div>
- <div class="flex-1"></div>
- <!-- <wd-input-number v-model="a" /> -->
- <wd-input-number v-model="nums" />
- </div>
- </div>
- </div>
- <wd-button block :round="false" @click="handleConfirm">确认</wd-button>
- </view>
- </wd-action-sheet>
- </view>
- </template>
- <style scoped lang="scss"></style>
|