jiangchengfeiyi-xiaochengxu/pages/clothesRent/component/clothesAttributePlus.vue

353 lines
8.5 KiB
Vue
Raw Normal View History

2025-03-22 03:18:54 +00:00
<template>
<view class="flex-col page">
<view class="flex-col group">
<view class="flex-row justify-between self-stretch">
<text class="font text">请选择产品规格</text>
<image
2025-03-22 15:09:53 +00:00
@click="closePopup"
2025-03-22 03:18:54 +00:00
class="image"
:src="clothesRentUrl + '/component/cha.png'"
/>
</view>
<view class="flex-row self-stretch group_2">
<image
2025-03-22 15:09:53 +00:00
class="shrink-0 image_2" mode="aspectFill"
:src="publicPath + photoProductsInfo.introImg"
2025-03-22 03:18:54 +00:00
/>
<view class="flex-col shrink-0 group_3 ml-13">
2025-03-22 15:09:53 +00:00
<text class="self-stretch font_2 text_2">{{ photoProductsInfo.name }}</text>
<text class="mt-48 self-start font_2 text_3">{{ photoProductsInfo.price.toFixed(2) }}</text>
2025-03-22 03:18:54 +00:00
</view>
</view>
<view class="flex-col self-stretch">
<view class="flex-col justify-start items-start relative">
<view class="group_4"></view>
<text class="font_2 text_4 pos">妆造服务</text>
</view>
<view class="flex-row">
2025-03-22 22:30:24 +00:00
<view :style="styleObj1" class="flex-col justify-start items-center text-wrapper" @click="selectStatus(true)">
<text :style="fontObj1" class="font_3 text_5">本店上妆</text>
2025-03-22 03:18:54 +00:00
</view>
2025-03-22 15:09:53 +00:00
<view :style="styleObj2" class="flex-col justify-start items-center text-wrapper ml-17" @click="selectStatus(false)">
2025-03-22 22:30:24 +00:00
<text :style="fontObj2" class="font_3 text_6">无需妆造</text>
2025-03-22 03:18:54 +00:00
</view>
</view>
</view>
2025-03-22 22:30:24 +00:00
2025-03-22 03:18:54 +00:00
<text class="self-start font_2 text_7">拍摄场地</text>
2025-03-22 22:30:24 +00:00
<radio-group class="flex-row equal-division my-radio" @change="changeRadioStatus">
<view class="flex-col section equal-division-item" v-if="isShow1">
2025-03-22 03:18:54 +00:00
<view class="flex-row justify-between items-end self-stretch">
<image
class="image_3"
:src="clothesRentUrl + '/component/indoor.png'"
/>
2025-03-22 22:30:24 +00:00
<!-- <view class="section_2"></view> -->
<radio class="section_2" color="#FFB6B9" value="室内" :checked="checked1"></radio>
2025-03-22 03:18:54 +00:00
</view>
<text class="self-start font_3 text_8 mt-5">室内</text>
</view>
2025-03-22 22:30:24 +00:00
<view class="flex-col section equal-division-item" v-if="isShow2">
2025-03-22 03:18:54 +00:00
<view class="flex-row justify-between items-end self-stretch">
<image
class="image_4"
:src="clothesRentUrl + '/component/outdoor.png'"
/>
2025-03-22 22:30:24 +00:00
<!-- <view class="section_2"></view> -->
<radio class="section_2" color="#FFB6B9" value="室外" :checked="checked2"></radio>
2025-03-22 03:18:54 +00:00
</view>
<text class="self-start font_3 text_8 mt-5">室外</text>
</view>
2025-03-22 22:30:24 +00:00
</radio-group>
2025-03-22 03:18:54 +00:00
</view>
<view class="flex-row justify-between items-center group_5">
<view class="flex-row items-baseline">
<text class="font text_9">定金</text>
2025-03-22 15:09:53 +00:00
<text class="font text_10">{{ photoProductsInfo.price.toFixed(2) }}</text>
2025-03-22 03:18:54 +00:00
</view>
2025-03-22 22:30:24 +00:00
<view @click="gotoSubmitOrderPage" class="flex-col justify-start items-center text-wrapper_2"><text class="text_11">确定</text></view>
2025-03-22 03:18:54 +00:00
</view>
</view>
</template>
<script setup>
2025-03-22 15:09:53 +00:00
import {onMounted, onUnmounted, ref} from 'vue'
import { clothesRentUrl } from '../../../common/globalImagesUrl';
import emitter from '../../../utils/emitter';
import { publicPath } from '../../../common/globalImagesUrl';
2025-03-22 22:30:24 +00:00
import { dealResult } from '../../../common/globalFunction';
import { baseUrl } from '../../../api/request';
2025-03-22 23:04:49 +00:00
import { getFonts } from '../../../common/globalFont';
2025-03-22 22:30:24 +00:00
let style1 = { borderColor: '#FFB6B9', backgroundColor: '#FBDEDF'}
let style2 = { borderColor: '#C3C3C3', backgroundColor: '#fff' }
let fontStyle1 = { color: '#E79EA1' }
let fontStyle2 = { color: '#323232' }
const cookie = wx.getStorageSync('cookie')
const isShow1 = ref(true)
const isShow2 = ref(true)
const checked1 = ref(true)
const checked2 = ref(false)
2025-03-22 15:09:53 +00:00
const photoProductsInfo = ref({})
2025-03-22 22:30:24 +00:00
const styleObj1 = ref(style1)
const styleObj2 = ref(style2)
const fontObj1 = ref(fontStyle1)
const fontObj2 = ref(fontStyle2)
let point = true
let scene = '室内'
2025-03-22 15:09:53 +00:00
const closePopup = () => {
emitter.emit('closeClothesAttributePlusPopup')
}
const getPhotoProductsInfoHandler = (val) => {
console.log(val)
photoProductsInfo.value = val
2025-03-22 22:30:24 +00:00
if (val.shotScene === '室内') {
isShow2.value = false
checked1.value = true
scene = '室内'
} else if (val.shotScene === '室外') {
isShow1.value = false
checked2.value = true
scene = '室外'
}
}
const changeRadioStatus = (e) => {
scene = e.detail.value
2025-03-22 15:09:53 +00:00
}
const selectStatus = (val) => {
2025-03-22 22:30:24 +00:00
if (point && !val ) {
styleObj1.value = style2
styleObj2.value = style1
fontObj1.value = fontStyle2
fontObj2.value = fontStyle1
2025-03-22 15:09:53 +00:00
2025-03-22 22:30:24 +00:00
point = !point
}
if (!point && val) {
styleObj1.value = style1
styleObj2.value = style2
fontObj1.value = fontStyle1
fontObj2.value = fontStyle2
point = !point
2025-03-22 15:09:53 +00:00
}
}
onMounted(() => {
2025-03-22 23:04:49 +00:00
getFonts()
2025-03-22 15:09:53 +00:00
emitter.on('getPhotoProductsInfo', getPhotoProductsInfoHandler)
})
onUnmounted(() => {
emitter.off('getPhotoProductsInfo', getPhotoProductsInfoHandler)
})
2025-03-22 03:18:54 +00:00
2025-03-22 22:30:24 +00:00
const gotoSubmitOrderPage = async () => {
let res = await checkPhotoProducts()
if (!dealResult(res)) return ;
uni.navigateTo({
url: '/pages/book/photoProductsOrder/photoProductsOrder?isMakeup=' + point + '&scene=' + scene + '&id=' + photoProductsInfo.value.id
})
}
const checkPhotoProducts = async () => {
const res = await uni.request({
url: baseUrl + '/advanceOrder/check/photoProducts',
method: 'POST',
header: {
cookie
},
data: {
id: photoProductsInfo.value.id
}
})
return res
}
2025-03-22 03:18:54 +00:00
</script>
<style scoped lang="scss">
2025-03-22 22:30:24 +00:00
.my-radio {
display: flex;
justify-content: space-between;
}
2025-03-22 03:18:54 +00:00
.ml-13 {
margin-left: 24.38rpx;
}
.ml-17 {
margin-left: 31.88rpx;
}
.mt-5 {
margin-top: 9.38rpx;
}
.ml-19 {
margin-left: 35.63rpx;
}
.page {
background-color: #ffffff;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
2025-03-22 15:09:53 +00:00
border-radius: 20rpx 20rpx 0 0;
2025-03-22 03:18:54 +00:00
}
.group {
padding: 37.5rpx 22.5rpx;
border-bottom: solid 1.88rpx #0000001f;
}
.font {
font-size: 37.5rpx;
2025-03-22 23:04:49 +00:00
font-family: FangZhengFonts;
2025-03-22 03:18:54 +00:00
color: #323232;
}
.text {
margin: 3.75rpx 0;
line-height: 36.34rpx;
}
.image {
margin-right: 3.75rpx;
width: 52.5rpx;
height: 41.25rpx;
}
.group_2 {
margin-top: 35.63rpx;
}
.image_2 {
border-radius: 18.75rpx;
width: 198.75rpx;
height: 200.63rpx;
}
.group_3 {
2025-03-22 15:09:53 +00:00
position: relative;
2025-03-22 03:18:54 +00:00
margin-right: 112.5rpx;
margin-bottom: 7.5rpx;
width: 369.38rpx;
}
.font_2 {
font-size: 33.75rpx;
2025-03-22 23:04:49 +00:00
font-family: FangZhengFonts;
2025-03-22 03:18:54 +00:00
line-height: 30.58rpx;
color: #323232;
}
.text_2 {
line-height: 41.25rpx;
}
.text_3 {
margin-left: 7.5rpx;
line-height: 22.54rpx;
2025-03-22 15:09:53 +00:00
position: absolute;
bottom: 0;
2025-03-22 03:18:54 +00:00
}
.group_4 {
margin-left: 26.25rpx;
border-radius: 9.38rpx;
width: 123.75rpx;
height: 97.95rpx;
}
.text_4 {
line-height: 32.31rpx;
}
.pos {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
}
.text-wrapper {
padding: 15rpx 0;
background-color: #ffffff;
border-radius: 37.5rpx;
width: 159.38rpx;
height: 54.38rpx;
2025-03-22 15:09:53 +00:00
border: solid 1.88rpx #c3c3c3;
2025-03-22 03:18:54 +00:00
}
.font_3 {
font-size: 26.25rpx;
2025-03-22 23:04:49 +00:00
font-family: FangZhengFonts;
2025-03-22 03:18:54 +00:00
line-height: 24.21rpx;
color: #323232;
}
.text_5 {
line-height: 24.41rpx;
}
.text_6 {
line-height: 23.89rpx;
}
.text_7 {
margin-top: 33.75rpx;
}
.equal-division {
align-self: stretch;
margin: 41.25rpx 15rpx 0;
}
.section {
2025-03-22 22:30:24 +00:00
position: relative;
width: 320.63rpx;
2025-03-22 03:18:54 +00:00
}
.equal-division-item {
padding: 18.75rpx 22.5rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
height: 157.5rpx;
2025-03-22 22:30:24 +00:00
border: solid 1.88rpx #c3c3c3;
2025-03-22 03:18:54 +00:00
}
.image_3 {
opacity: 0.85;
border-radius: 18.75rpx;
width: 138.75rpx;
height: 84.38rpx;
}
.section_2 {
margin-right: 15rpx;
background-color: #ffffff;
border-radius: 50%;
width: 45rpx;
height: 45rpx;
}
.text_8 {
margin-left: 45rpx;
}
.image_4 {
border-radius: 15rpx;
width: 138.75rpx;
height: 84.38rpx;
}
.group_5 {
padding: 37.5rpx 22.5rpx 31.88rpx;
}
.text_9 {
line-height: 34.42rpx;
}
.text_10 {
color: #e79ea1;
line-height: 25.05rpx;
}
.text-wrapper_2 {
padding: 22.5rpx 0;
background-color: #e79ea1;
border-radius: 187.5rpx;
width: 241.88rpx;
height: 76.88rpx;
}
.text_11 {
color: #ffffff;
font-size: 30rpx;
2025-03-22 23:04:49 +00:00
font-family: FangZhengFonts;
2025-03-22 03:18:54 +00:00
line-height: 28.01rpx;
}
@import url(../../../common/css/global.css);
</style>