This commit is contained in:
yuanteng0011 2025-03-27 20:45:18 +08:00
parent 53f03a5893
commit 6ace5ba71d
5 changed files with 52 additions and 18 deletions

View File

@ -1,7 +1,7 @@
export const Url = 'http://localhost:9092/api' //后端接口文档 export const Url = 'http://localhost:9092/api' //后端接口文档
export const testUrl = 'http://123.249.108.160:8888/api' //自己组的服务器接口地址 export const testUrl = 'http://123.249.108.160:8888/api' //自己组的服务器接口地址
export const develop = 'http://154.8.193.216:9092/api' //隋霏的接口地址(开发环境) export const develop = 'http://154.8.193.216:9092/api' //隋霏的接口地址(开发环境)
export const test = 'http://154.8.193.216:9093/api' //隋霏的接口地址(测试环境) export const test = 'http://154.8.193.216:9093/api' //隋霏的接口地址(测试环境)
export const domain = 'https://www.carboner.cn:8888/api' export const domain = 'https://www.carboner.cn:8888/api'
export const myIp = 'http://8.130.119.119:9092/api' export const myIp = 'http://8.130.119.119:9092/api'
export const nwct = 'https://winning-mouse-internally.ngrok-free.app/api' export const nwct = 'https://winning-mouse-internally.ngrok-free.app/api'

View File

@ -2,16 +2,7 @@
<view class="flex-col page"> <view class="flex-col page">
<text class="self-center text">预约须知</text> <text class="self-center text">预约须知</text>
<view class="flex-col self-stretch group"> <view class="flex-col self-stretch group">
<text class="font"> <rich-text :nodes="noticeRichText"></rich-text>
1.成功预约的顾客需按照预定时间前往店内挑选相应级别的服装为确保衣物在体验过程中的完好无损顾客需根据所选服装的级别补缴尾款以及相应的押金拍摄结束后店铺将依据衣物的实际状况评估是否扣除押金
</text>
<text class="mt-14 font">
2.其中部分物品商家可提供属于增值服务如一次性隐形眼镜
一次性粉扑等属于服务费以外的赠送服务买家可选择自带用品不影响服务价格需要买家自己准备的客服需要提前告诉买家如胸贴等贴身物品
</text>
<text class="mt-14 font">
3.用户可以在预约的试穿时间内到店试穿预定的服装试穿时请小心爱护服装避免弄脏或损坏如果试穿后发现尺码不合适或者对服装不满意可在符合规定的时间内联系客服进行更换或者取消订单
</text>
</view> </view>
<view @click="closeBookingTips" class="flex-col justify-start items-center self-stretch text-wrapper"> <view @click="closeBookingTips" class="flex-col justify-start items-center self-stretch text-wrapper">
<text class="text_2">我知道了</text> <text class="text_2">我知道了</text>
@ -19,14 +10,44 @@
</view> </view>
</template> </template>
<script setup lang="ts"> <script setup>
import emitter from '../../../utils/emitter'; import emitter from '../../../utils/emitter';
import { onLoad } from "@dcloudio/uni-app"; import { onLoad,onShow } from "@dcloudio/uni-app";
import { getFonts } from '../../../common/globalFont'; import { getFonts } from '../../../common/globalFont';
import { baseUrl } from '../../../api/request';
import { onMounted,ref } from 'vue';
const cookie = wx.getStorageSync('cookie')
const noticeRichText = ref('')
onMounted(()=>{
getNotice()
})
onShow(()=>{
getNotice()
})
onLoad(() => { onLoad(() => {
getFonts() getFonts()
}) })
const getNotice = async () => {
const res = await uni.request({
url: baseUrl + '/global/query/notice',
method: 'GET',
header: {
cookie
}
})
// console.log('--->',res.data.data);
if(res.data.code === 1) {
noticeRichText.value = res.data.data
}
}
const closeBookingTips = () => { const closeBookingTips = () => {
emitter.emit('closeBookingTips') emitter.emit('closeBookingTips')
} }

View File

@ -37,7 +37,7 @@
/> />
<view class="flex-col items-start ml-7"> <view class="flex-col items-start ml-7">
<text class="font_2 text_9">{{ item.name }}</text> <text class="font_2 text_9">{{ item.name }}</text>
<text class="font_2 text_10 mt-50">{{ item.price.toFixed(2) }}{{ isShow ? '起' : '/天' }}</text> <text class="font_22 text_10 mt-50" >{{ item.price.toFixed(2) }}{{ isShow ? '起' : '/天' }}</text>
</view> </view>
</view> </view>
<view class="flex-col justify-start items-center self-start text-wrapper_2"> <view class="flex-col justify-start items-center self-start text-wrapper_2">
@ -270,6 +270,12 @@
line-height: 25.16rpx; line-height: 25.16rpx;
color: #323232; color: #323232;
} }
.font_22 {
font-size: 26.25rpx;
font-family: FangZhengFonts;
line-height: 25.16rpx;
color: #ff0000;
}
.text_11 { .text_11 {
line-height: 24rpx; line-height: 24rpx;
} }

View File

@ -70,7 +70,7 @@
</view> </view>
<view class="flex-row justify-end items-center group_8"> <view class="flex-row justify-end items-center group_8">
<text class="font_2 text_14">实付款</text> <text class="font_2 text_14">实付款</text>
<text class="font_8">{{ item.totalAmount.toFixed(2) }}</text> <text class="font_88">{{ item.totalAmount.toFixed(2) }}</text>
</view> </view>
<view class="flex-row justify-center group_9"> <view class="flex-row justify-center group_9">
@ -629,8 +629,15 @@ button::after{
font-size: 33.75rpx; font-size: 33.75rpx;
font-family: FangZhengFonts; font-family: FangZhengFonts;
line-height: 22.54rpx; line-height: 22.54rpx;
color: #e79ea1; color: #000;
} }
.font_88 {
font-size: 33.75rpx;
font-family: FangZhengFonts;
line-height: 22.54rpx;
color: #c35c5d;;
}
.section_4 { .section_4 {
margin: 0 12.5rpx; margin: 0 12.5rpx;
padding: 22.5rpx 18.75rpx; padding: 22.5rpx 18.75rpx;

View File

@ -231,7 +231,7 @@ const jump_detail =(item,index)=>{
height: 26.25rpx; height: 26.25rpx;
} }
.font_2 { .font_2 {
color: #c35c5d; color: #ff0000;
font-size: 30rpx; font-size: 30rpx;
line-height: 20.68rpx; line-height: 20.68rpx;
} }