diff --git a/common/globalFont.js b/common/globalFont.js
new file mode 100644
index 0000000..4cc493a
--- /dev/null
+++ b/common/globalFont.js
@@ -0,0 +1,24 @@
+export const getFonts =()=>{
+ //首页
+ uni.loadFontFace({
+ family: 'ZhongShanFonts',
+ source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/ZhongShanFonts.ttf")`,
+ success:(res) =>{
+ console.log('success',res);
+ },
+ fail:(err) => {
+ console.log('err',err);
+ }
+ })
+ //其他页面
+ uni.loadFontFace({
+ family: 'FangZhengFonts',
+ source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/FangZhengFonts.TTF")`,
+ success:(res) =>{
+ console.log('success',res);
+ },
+ fail:(err) => {
+ console.log('err',err);
+ }
+ })
+}
\ No newline at end of file
diff --git a/pages.json b/pages.json
index 28746b6..cb92871 100644
--- a/pages.json
+++ b/pages.json
@@ -101,27 +101,6 @@
"navigationBarTitleText" : ""
}
},
- {
- "path" : "pages/booking/AppointmentHome",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- },
- {
- "path" : "pages/booking/ContactInformation",
- "style" :
- {
- "navigationBarTitleText" : "联系人信息"
- }
- },
- {
- "path" : "pages/booking/date",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- },
{
"path" : "pages/store-home/ProductDetails/ProductDetails",
"style" :
@@ -136,27 +115,6 @@
"navigationBarTitleText" : ""
}
},
- {
- "path" : "pages/booking/BillingOfFees/BillingOfFees",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- },
- {
- "path" : "pages/booking/ReservationInstructions/ReservationInstructions",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- },
- {
- "path" : "pages/booking/respectable/respectable",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- },
{
"path" : "pages/Shopping-cart/newaddress_Info/newaddress_Info",
"style" :
@@ -171,19 +129,6 @@
"navigationBarTitleText" : ""
}
},
- {
- "path": "pages/booking/Simple/Simple",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- {
- "path" : "pages/booking/bookingpay/bookingpay",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- },
{
"path" : "pages/login/login",
"style" :
@@ -205,20 +150,6 @@
"navigationBarTitleText" : ""
}
},
- {
- "path" : "pages/booking/CostumeDisplay/CostumeDisplay",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- },
- {
- "path" : "pages/booking/CostumeDetails/CostumeDetails",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- },
{
"path" : "pages/mine/Contact/Contact",
"style" :
diff --git a/pages/Shopping-cart/productmain/testproductmain.vue b/pages/Shopping-cart/productmain/testproductmain.vue
index 1d74532..de6c299 100644
--- a/pages/Shopping-cart/productmain/testproductmain.vue
+++ b/pages/Shopping-cart/productmain/testproductmain.vue
@@ -11,8 +11,14 @@
- 商品类
- 服务类
+
+ 商品类
+
+
+
+ 服务类
+
+
@@ -109,6 +115,8 @@
+
+
@@ -139,6 +147,7 @@
onLoad(() => {
getProductCart() //再获取一次
getFonts()
+ // console.log(current.value)
})
//获取实体类商品信息
const getEntityPro = async () => {
@@ -207,17 +216,27 @@
})
}
}
+ const isShowLine = ref(true)
//更改实体商品和服务类方法
const changeType = async (num) => {
+ if (num == 1) {
+ if (!isShowLine.value) {
+ isShowLine.value = true
+ }
+ } else {
+ if (isShowLine.value) {
+ isShowLine.value = false
+ }
+ }
current.value = num;
console.log('current状态--->',current.value);
getProductCart()
totalPrice.value = 0
}
- //更改下划线
- const getTextStyle = (num) => ({
- 'border-bottom': current.value === num ? '2px solid orange' : '2px solid #ffffff'
- });
+ // //更改下划线
+ // const getTextStyle = (num) => ({
+ // 'border-bottom': current.value === num ? '2px solid orange' : '2px solid #ffffff'
+ // });
//复选框绑定方法
const checkBoxChange = (event) => {
console.log('服务类打印出来是---->', event); //选中后是数组下标
@@ -638,7 +657,7 @@
}
.group {
- padding: 27.06rpx 4.33rpx 23.08rpx 10.89rpx;
+ padding: 20.06rpx 4.33rpx 0 4.33rpx;
z-index: 1;
}
diff --git a/pages/book/component/bookingSelected.vue b/pages/book/component/bookingSelected.vue
index 0f0b497..01a62a5 100644
--- a/pages/book/component/bookingSelected.vue
+++ b/pages/book/component/bookingSelected.vue
@@ -5,7 +5,7 @@
请选择拍摄人数和场地
@@ -19,24 +19,24 @@
{{ number }}
人
@@ -48,9 +48,9 @@
-
+
室内
@@ -59,9 +59,9 @@
-
+
室外
@@ -93,11 +93,18 @@
import {nextTick, onMounted, ref} from 'vue'
import emitter from '../../../utils/emitter';
import feeTipsVue from './feeTips.vue';
+ import { bookUrl } from '../../../common/globalImagesUrl';
const number = ref(1)
- const field = ref('室内')
+ const field = ref('')
const feeTips = ref(null)
const obj = ref('')
const totalPrice = ref(0)
+ const shotScene = ref('')
+ const disabled1 = ref(false)
+ const disabled2 = ref(false)
+ const checked1 = ref(false)
+ const checked2 = ref(false)
+ const type = ref('')
onMounted(() => {
emitter.on('closeFeeTips', () => {
@@ -108,15 +115,31 @@
})
})
+ emitter.on('getProductsType', (val:any) => {
+ type.value = val
+ console.log('=================================================>', type.value)
+ })
+
emitter.on('getProductObj', (val:any) => {
obj.value = val
- totalPrice.value = val.price
+ totalPrice.value = val.price * val.minNumber
+ number.value = obj.value.minNumber
+ shotScene.value = obj.value.shotScene
+ if (shotScene.value === '室内') {
+ disabled1.value = true
+ checked2.value = true
+ field.value = '室内'
+ } else {
+ disabled2.value = true
+ checked1.value = true
+ field.value = '室外'
+ }
console.log(totalPrice.value)
})
})
const sub = () => {
- if (number.value > 1) {
+ if (number.value > obj.value.minNumber) {
number.value --
totalPrice.value = number.value * obj.value.price
}
@@ -142,8 +165,15 @@
}
const jumpToOrder = () => {
+ if (field.value === '' || field.value === undefined || field.value === null) {
+ uni.showToast({
+ title: '请选择场地',
+ icon: 'error'
+ })
+ return ;
+ }
uni.navigateTo({
- url: '/pages/book/photoProductsOrder/photoProductsOrder?field=' + field.value + '&number=' + number.value + '&id=' + obj.value.id
+ url: '/pages/book/photoProductsOrder/photoProductsOrder?field=' + field.value + '&number=' + number.value + '&id=' + obj.value.id + '&type=' + type.value
})
}
diff --git a/pages/book/component/confirmBookingInfo.vue b/pages/book/component/confirmBookingInfo.vue
index 10c132c..74d57b8 100644
--- a/pages/book/component/confirmBookingInfo.vue
+++ b/pages/book/component/confirmBookingInfo.vue
@@ -19,6 +19,8 @@ const cookie = wx.getStorageSync("cookie") //请求头
const orderObj = ref({})
const isIndoors = ref(0)
+ const isMakeup = ref(1)
+ const isPhotography = ref(1)
onMounted(() => {
emitter.on('getBookingOrderData', (val:any) => {
orderObj.value = val
@@ -37,6 +39,12 @@ const cookie = wx.getStorageSync("cookie") //请求头
if (orderObj.value.field === '室内') {
isIndoors.value = 1
}
+ if (orderObj.value.type === '妆造') {
+ isPhotography.value = 0
+
+ } else if (orderObj.value.type === '摄影') {
+ isMakeup.value = 0
+ }
const res = await uni.request({
url: baseUrl + '/advanceOrder/add',
method: 'POST',
@@ -49,8 +57,8 @@ const cookie = wx.getStorageSync("cookie") //请求头
specificDate: orderObj.value.bookingDate,
timePoint: orderObj.value.bookingTime,
isIndoors: isIndoors.value,
- isMakeup: 1,
- isPhotography: 1,
+ isMakeup: isMakeup.value,
+ isPhotography: isPhotography.value,
quantity: orderObj.value.number
}
})
diff --git a/pages/book/photoProductDetail/photoProductDetail.vue b/pages/book/photoProductDetail/photoProductDetail.vue
index ea599e3..c3abbbc 100644
--- a/pages/book/photoProductDetail/photoProductDetail.vue
+++ b/pages/book/photoProductDetail/photoProductDetail.vue
@@ -7,28 +7,28 @@
/>
{{ obj.name }}
- ¥{{ obj.price.toFixed(2) }}起
+ ¥{{ obj.totalAmountPrice.toFixed(2) }}起
服务&交付标准
1组造型
1套服装
1种背景
@@ -64,13 +64,20 @@
import emitter from "../../../utils/emitter";
import bookingSelectedVue from "../component/bookingSelected.vue";
import { baseUrl } from "../../../api/request";
+ import { bookUrl } from "../../../common/globalImagesUrl";
const cookie = wx.getStorageSync("cookie") //请求头
const id = ref({})
const bookingSelected = ref(null)
const obj = ref({})
+ const type = ref('')
+ const bookingDateVOList =ref([])
+
onLoad((options) => {
console.log(options)
id.value = options.id
+ if (options.type) {
+ type.value = options.type
+ }
getPhotoProductsById()
})
@@ -99,11 +106,22 @@
})
console.log(res.data.data)
obj.value = res.data.data
+ obj.value.totalAmountPrice = obj.value.minNumber * obj.value.price
+ bookingDateVOList.value = res.data.data.bookingDateVOList
}
const openBookingPopup = () => {
+ if (bookingDateVOList.value.length === 0) {
+ uni.showModal({
+ title: '提示',
+ content: '当前写真产品的所有时段已约满',
+ showCancel: false
+ })
+ return ;
+ }
emitter.emit('getProductObj', obj.value)
+ emitter.emit('getProductsType', type.value)
bookingSelected.value.open('bottom')
}
@@ -122,7 +140,7 @@
}
.page {
background-color: #ffffff;
- background-image: url('https://ide.code.fun/api/image?token=67be7f674ae84d0012275313&name=8a8617bd8ea20ecda3f731825ed1b080.png');
+ background-image: url(https://carbon2.obs.cn-north-4.myhuaweicloud.com/feiyi/miniProgram/book/photoProductDetail/bkg.png);
background-size: 100% 100%;
background-repeat: no-repeat;
width: 100%;
@@ -131,7 +149,7 @@
height: 100%;
}
.section {
- background-image: url('https://ide.code.fun/api/image?token=67be7f674ae84d0012275313&name=8a8617bd8ea20ecda3f731825ed1b080.png');
+ background-image: url(https://carbon2.obs.cn-north-4.myhuaweicloud.com/feiyi/miniProgram/book/photoProductDetail/bkg.png);
background-size: 100% 100%;
background-repeat: no-repeat;
width: 750rpx;
diff --git a/pages/book/photoProducts/photoProducts.vue b/pages/book/photoProducts/photoProducts.vue
index 56614e5..0ffbb89 100644
--- a/pages/book/photoProducts/photoProducts.vue
+++ b/pages/book/photoProducts/photoProducts.vue
@@ -5,21 +5,21 @@
写真专区
-
+
摄影服务
-
+
妆造服务
@@ -47,7 +47,7 @@
/>
{{ item.name }}
- {{ item.price.toFixed(2) }}元起
+ {{ item.totalAmountPrice.toFixed(2) }}元起
@@ -61,6 +61,7 @@
@@ -138,7 +150,7 @@
margin-top: 24.38rpx;
}
.page {
- background-image: url('https://ide.code.fun/api/image?token=67be7f674ae84d0012275313&name=039df2fe261116bd1bd408f287b060bc.png');
+ background-image: url(https://carbon2.obs.cn-north-4.myhuaweicloud.com/feiyi/miniProgram/book/photoProducts/bkg.png);
background-size: 100% 100%;
background-repeat: no-repeat;
width: 100%;
@@ -147,7 +159,7 @@
height: 100vh;
}
.section {
- background-image: url('https://ide.code.fun/api/image?token=67be7f674ae84d0012275313&name=039df2fe261116bd1bd408f287b060bc.png');
+ background-image: url(https://carbon2.obs.cn-north-4.myhuaweicloud.com/feiyi/miniProgram/book/photoProducts/bkg.png);
background-size: 100% 100%;
background-repeat: no-repeat;
width: 750rpx;
diff --git a/pages/book/photoProductsOrder/photoProductsOrder.vue b/pages/book/photoProductsOrder/photoProductsOrder.vue
index ebff554..34494a8 100644
--- a/pages/book/photoProductsOrder/photoProductsOrder.vue
+++ b/pages/book/photoProductsOrder/photoProductsOrder.vue
@@ -4,7 +4,7 @@
选择联系人
预约须知
@@ -12,14 +12,14 @@
{{ contactTemplateString }}
更换联系人
@@ -67,7 +67,7 @@
导航
@@ -111,6 +111,7 @@
import contactsComponentVue from '../../order/component/contactsComponent.vue';
import confirmBookingInfoVue from '../component/confirmBookingInfo.vue';
import { onLoad } from "@dcloudio/uni-app";
+ import { bookUrl } from '../../../common/globalImagesUrl';
const cookie = wx.getStorageSync("cookie") //请求头
const photoProduct = ref({})
@@ -139,6 +140,7 @@
const isShow = ref(false)
let loading = false;
+ const type = ref('')
const contactTemplateString = ref('请选择')
@@ -191,7 +193,8 @@
contactId: contactInfo.value.id,
name: photoProduct.value.name,
bookingDate: bookingDate.value,
- bookingTime: bookingTime.value
+ bookingTime: bookingTime.value,
+ type: type.value
})
confirmBookingInfo.value.open('center')
}
@@ -201,6 +204,7 @@
field.value = options.field
number.value = options.number
id.value = options.id
+ type.value = options.type
})
@@ -429,7 +433,7 @@
}
.page {
background-color: #ffffff;
- background-image: url('https://ide.code.fun/api/image?token=67be7f674ae84d0012275313&name=c07af569900e34d63f1e91cbbae55df7.png');
+ background-image: url(https://carbon2.obs.cn-north-4.myhuaweicloud.com/feiyi/miniProgram/book/photoProductsOrder/bkg.png);
background-size: 100% 100%;
background-repeat: no-repeat;
width: 100%;
@@ -438,7 +442,7 @@
height: 100%;
}
.section {
- background-image: url('https://ide.code.fun/api/image?token=67be7f674ae84d0012275313&name=c07af569900e34d63f1e91cbbae55df7.png');
+ background-image: url(https://carbon2.obs.cn-north-4.myhuaweicloud.com/feiyi/miniProgram/book/photoProductsOrder/bkg.png);
background-size: 100% 100%;
background-repeat: no-repeat;
width: 750rpx;
diff --git a/pages/book/photoProductsOrderDetail/photoProductsOrderDetail.vue b/pages/book/photoProductsOrderDetail/photoProductsOrderDetail.vue
index a4af5cc..b5b3cf1 100644
--- a/pages/book/photoProductsOrderDetail/photoProductsOrderDetail.vue
+++ b/pages/book/photoProductsOrderDetail/photoProductsOrderDetail.vue
@@ -57,7 +57,7 @@
到店时间:{{ item.specificDate }} {{ item.timePoint }}
@@ -116,11 +116,13 @@
-
-
\ No newline at end of file
diff --git a/pages/booking/BillingOfFees/BillingOfFees.vue b/pages/booking/BillingOfFees/BillingOfFees.vue
deleted file mode 100644
index fce6a74..0000000
--- a/pages/booking/BillingOfFees/BillingOfFees.vue
+++ /dev/null
@@ -1,151 +0,0 @@
-
-
- 费用说明
-
- 一、费用支付流程
-
- 确定等级:您将根据个人需求选择合适的服装价位区间,并完成预约操作。
-
- 预约成功:预约成功后,您需前往店铺挑选对应等级的服装。
-
-
-
- 补缴尾款及押金:在挑选服装时,您需要补缴尾款(扣除已支付定金后的剩余服务或商品费用)以及押金(用于保障服装归还时的完好)。
-
-
-
- 二、尾款具体事项
-
- 租赁服装:若您选择租赁我们店铺没有的服装,租赁费用将在您支付尾款时一并结算。无论拍摄是否进行,租赁费用均不予退还。
-
- 购买服装:如您希望购买我们店铺的服装,且我们同意购买,将按照服装的稀有程度分等级定价。您需按照所选等级支付尾款。
-
- 定制服务:若您自带衣服,我们提供妆发及摄影服务。若需我们额外购买服装,将按照上述等级定价,您需支付相应的尾款。
-
-
-
- 三、定金与押金说明
-
- 定金:预约时支付的定金用于确认您的预约意向,定金 不予退还。
-
- 押金:拍摄完成后,我们将根据服装的归还情况决定是否扣除押金。若服装无损坏,押金将全额退还。
-
-
-
- 四、特殊情况处理
-
- 若因特殊情况您需要取消预约,请及时与我们联系。未拍摄情况下,定金不予退还,已支付的租赁费用亦不退还。
-
-
-
-
- 我知道了
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/booking/ContactInformation.vue b/pages/booking/ContactInformation.vue
deleted file mode 100644
index 97762b9..0000000
--- a/pages/booking/ContactInformation.vue
+++ /dev/null
@@ -1,162 +0,0 @@
-
-
-
-
-
-
-
- 张三
- 15888610253
-
-
-
-
-
-
-
-
-
- 张三
- 15888610253
-
-
-
-
-
-
-
-
-
- 张三
- 15888610253
-
-
-
-
-
-
-
-
-
- 张三
- 15888610253
-
-
-
-
-
-
-
-
- 添加新联系人
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/booking/CostumeDetails/CostumeDetails.vue b/pages/booking/CostumeDetails/CostumeDetails.vue
deleted file mode 100644
index 10ebd14..0000000
--- a/pages/booking/CostumeDetails/CostumeDetails.vue
+++ /dev/null
@@ -1,46 +0,0 @@
-
- {{details.name}}
-
-
- {{details.intro}}
- {{details.price}}
- {{details.clothesType}}
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/booking/CostumeDisplay/CostumeDisplay.vue b/pages/booking/CostumeDisplay/CostumeDisplay.vue
deleted file mode 100644
index b510667..0000000
--- a/pages/booking/CostumeDisplay/CostumeDisplay.vue
+++ /dev/null
@@ -1,442 +0,0 @@
-
-
-
-
-
-
- 服装详情
-
-
-
-
- {{item.name}}
-
- {{item.intro}}
-
- ¥{{item.price}}
-
-
-
-
-
-
- 客服
-
- 现在去预约
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/booking/ReservationInstructions/ReservationInstructions.vue b/pages/booking/ReservationInstructions/ReservationInstructions.vue
deleted file mode 100644
index cb195c8..0000000
--- a/pages/booking/ReservationInstructions/ReservationInstructions.vue
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
- 预约须知
-
-
- 1.成功预约的顾客需按照预定时间前往店内挑选相应级别的服装。为确保衣物在体验过程中的完好无损,顾客需根据所选服装的级别补缴尾款以及相应的押金。拍摄结束后,店铺将依据衣物的实际状况评估是否扣除押金。
-
-
- 2.其中部分物品商家可提供,属于增值服务(如一次性隐形眼镜、
- 一次性粉扑等属于服务费以外的赠送服务,买家可选择自带用品,不影响服务价格),需要买家自己准备的,客服需要提前告诉买家(如胸贴等贴身物品)
-
-
-
-
- 我知道了
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/booking/Simple/Simple.vue b/pages/booking/Simple/Simple.vue
deleted file mode 100644
index 01844b6..0000000
--- a/pages/booking/Simple/Simple.vue
+++ /dev/null
@@ -1,250 +0,0 @@
-
-
-
-
-
-
- 简约风尚
- 传承非遗之美,简约演绎经典
-
- 服装特点
-
- 提供多样化的经典汉服款式,如基础款曲裾、直裾等
- 服装面料舒适,适合日常拍摄体验
- 配饰简约,适合初次尝试传统服饰的用户
-
- 服务内容
-
- 专业化妆及基础发型设计
- 服装租赁服务
- 基础摄影服务(不含精修)
-
-
-
-
- 服装选择
-
-
-
-
-
- 详细信息
-
-
- 彩绣菊花纹刺绣长袍
-
- 服装简介:
-
- 用上等丝绸,质地细腻、柔软且富有光泽,触感极佳。统手工刺绣技艺,每一针每一线都凝聚着匠人的心血与智慧,图案精美绝伦,色彩丰富和谐...
-
-
- ¥150
-
-
-
-
-
-
-
-
- 客服
-
-
- 现在去预约
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/booking/bookingpay/bookingpay.vue b/pages/booking/bookingpay/bookingpay.vue
deleted file mode 100644
index bf9494d..0000000
--- a/pages/booking/bookingpay/bookingpay.vue
+++ /dev/null
@@ -1,443 +0,0 @@
-
-
-
-
-
- 填写预约信息
-
-
-
-
- 联系人:张三
- 15888610253
-
-
-
-
-
-
-
- 到店日期:2024-10-15
- 具体场次:上午场(09:30-12:00)
-
-
-
-
-
-
-
-
- 选择预约类别
-
-
-
-
- 租赁服装
-
-
-
- 自带服装
-
-
-
-
-
- 提供免费的服务
-
-
-
-
-
- 妆发服务
-
- 包括底妆、眉毛、眼妆、腮红和唇妆,根据您的肤色和服装风格进行个性化设计。
-
-
- 根据您的脸型和服装风格,提供合适的发型设计,包括但不限于编发、盘发、吹风造型等。
-
-
-
-
-
-
- 摄影服务
-
- 提供专业的摄影棚和灯光设备,为客户打造舒适的拍摄环境。
-
-
-
- 拍摄完成后,摄影师将精选照片进行后期处理,包括色彩调整、亮度优化、瑕疵去除等。
-
-
-
-
-
-
-
- 联系客服
- 请提供详细的问题描述,以便我们更快地为您解决问题。
-
-
-
-
-
- 预约须知
-
-
-
-
-
- 预约费用:
-
- ¥88.
- 00
-
-
-
- 费用说明
-
-
-
- 确定预约
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/booking/date.vue b/pages/booking/date.vue
deleted file mode 100644
index 1e00935..0000000
--- a/pages/booking/date.vue
+++ /dev/null
@@ -1,475 +0,0 @@
-
-
-
-
-
-
- 场次
-
-
- 上午场(09:30-12:00)
-
-
- 下午场(13:00-16:00)
-
-
-
- 日期
-
-
-
-
-
- 9月
- ¥68.00起
-
-
- 10月
- ¥68.00起
-
-
- 11月
- ¥68.00起
-
-
- 12月
- ¥68.00起
-
-
-
-
- 日
- 一
- 二
- 三
- 四
- 五
- 六
-
-
-
-
-
-
- 余99
- 1
- ¥68.00
-
-
- 余99
- 2
- ¥68.00
-
-
- 余99
- 3
- ¥68.00
-
-
- 余99
- 4
- ¥68.00
-
-
- 余99
- 5
- ¥68.00
-
-
- 余99
- 6
- ¥68.00
-
-
- 余99
- 7
- ¥68.00
-
-
- 余99
- 8
- ¥68.00
-
-
- 余99
- 9
- ¥68.00
-
-
- 余99
- 10
- ¥68.00
-
-
- 余99
- 11
- ¥68.00
-
-
- 余99
- 12
- ¥68.00
-
-
- 余99
- 13
- ¥68.00
-
-
- 余99
- 14
- ¥68.00
-
-
- 余99
- 15
- ¥68.00
-
-
- 余99
- 16
- ¥68.00
-
-
- 余99
- 17
- ¥68.00
-
-
- 余99
- 18
- ¥68.00
-
-
- 余99
- 19
- ¥68.00
-
-
- 余99
- 20
- ¥68.00
-
-
- 余99
- 21
- ¥68.00
-
-
- 余99
- 22
- ¥68.00
-
-
- 余99
- 23
- ¥68.00
-
-
- 余99
- 24
- ¥68.00
-
-
- 余99
- 25
- ¥68.00
-
-
- 余99
- 26
- ¥68.00
-
-
- 余99
- 27
- ¥68.00
-
-
- 余99
- 28
- ¥68.00
-
-
-
-
- 余99
- 29
- ¥68.00
-
-
- 余99
- 30
- ¥68.00
-
-
-
-
- 数量
-
- 一次限购100件
-
-
- 1
-
-
-
-
-
-
- 下一步
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/booking/exquisite/exquisite.vue b/pages/booking/exquisite/exquisite.vue
deleted file mode 100644
index a3a8ce1..0000000
--- a/pages/booking/exquisite/exquisite.vue
+++ /dev/null
@@ -1,266 +0,0 @@
-
-
-
-
-
-
- 精致体验
- 融合时尚与传统,精选非遗华章
-
- 服装特点
-
- 提供更为精致的汉服款式,如刺绣襦裙、改良旗袍等。
- 服装细节丰富,面料上乘,适合追求品质的用户。
- 配饰精美,增添拍摄效果。
-
- 服务内容
-
- 高级化妆及发型设计。
- 服装租赁服务。
- 专业摄影服务(含5张精修照片)。
-
-
-
-
- 服装选择
-
-
-
-
-
-
- 详细信息
-
-
- “锦绣中华”系列汉服
-
-
- 服装简介:
-
- “瑞凤呈祥”以凤凰为主题,象征着吉祥、和谐与美好。交领的设计,端庄大气,展现东方女性的温婉气质;直裾流畅,行走间尽显风华。衣襟上的凤凰图案...
-
-
- ¥350
-
-
-
-
-
-
-
-
- 客服
-
-
- 现在去预约
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/booking/payOrder.vue b/pages/booking/payOrder.vue
deleted file mode 100644
index e8292b1..0000000
--- a/pages/booking/payOrder.vue
+++ /dev/null
@@ -1,501 +0,0 @@
-
-
-
-
-
- {{good.price}}
- 积分
-
- {{good.name}}
- {{good.type}}
-
-
- 创客实验室
- 权益提供方-
-
-
- 已兑换
- {{good.sales}}
- 件
-
-
-
-
-
-
- 已选 :
- {{good.name}},
- {{changeCnt}}
- 件
-
-
-
-
-
- 送至 :
- {{tempAddress}}
-
-
-
-
-
- 商品详情
-
-
- {{good.detail}}
-
-
-
-
-
-
- {{changePrice}}
- 积分兑换
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/booking/respectable/respectable.vue b/pages/booking/respectable/respectable.vue
deleted file mode 100644
index f176a01..0000000
--- a/pages/booking/respectable/respectable.vue
+++ /dev/null
@@ -1,561 +0,0 @@
-
-
-
- 预约须知
- 1.成功预约的顾客需按照预定时间前往店内挑选相应级别的服装。
- 为确保衣物在体验过程中的完好无损,顾客需根据所选服装的级别补缴尾款以及相应的押金。
- 拍摄结束后,店铺将依据衣物的实际状况评估是否扣除押金。
-
- 2.其中部分物品商家可提供,属于增值服务(如一次性隐形眼镜、
- 一次性粉扑等属于服务费以外的赠送服务,买家可选择自带用品,不影响服务价格),
- 需要买家自己准备的,客服需要提前告诉买家(如胸贴等贴身物品)
-
-
-
-
-
- 费用说明
- 一、费用支付流程
-
- 1.确定等级:您将根据个人需求选择合适的服装价位区间,并完成预约操作。
- 2.预约成功:预约成功后,您需前往店铺挑选对应等级的服装。
- 3.补缴尾款及押金:在挑选服装时,您需要补缴尾款(扣除已支付定金后的剩余服务或商品费用)以及押金(用于保障服装归还时的完好)。
-
- 二、尾款具体事项
-
- 1.租赁服装:若您选择租赁我们店铺没有的服装,租赁费用将在您支付尾款时一并结算。无论拍摄是否进行,租赁费用均不予退还。
- 2.购买服装:如您希望购买我们店铺的服装,且我们同意购买,将按照服装的稀有程度分等级定价。您需按照所选等级支付尾款。
- 3.定制服务:若您自带衣服,我们提供妆发及摄影服务。若需我们额外购买服装,将按照上述等级定价,您需支付相应的尾款。
-
- 三、定金与押金说明
-
- 1.定金:预约时支付的定金用于确认您的预约意向,定金不予退还。
- 2.押金:拍摄完成后,我们将根据服装的归还情况决定是否扣除押金。若服装无损坏,押金将全额退还。
-
- 四、特殊情况处理
-
- 若因特殊情况您需要取消预约,请及时与我们联系。未拍摄情况下,定金不予退还,已支付的租赁费用亦不退还。
-
-
-
-
-
-
-
- 选择预约类别
-
-
-
- 整套约拍
-
-
-
- 自带服装
-
-
-
- 选择服装类别
-
-
-
-
-
-
- {{item.clothesType}}
-
-
- 价位
- :
-
- ¥{{item.minPrice}}-{{item.maxPrice}}
-
- {{item.brief}}
-
-
-
-
-
-
-
-
- 选择服务
-
-
-
-
-
-
- {{item.name}}
- {{item.title}}
-
-
-
-
-
- -
-
-
- {{ item.num }}
-
- +
-
-
-
-
-
-
-
-
-
-
- 88.
- 定金:
- 00
-
- 费用说明
-
-
-
- 确定预约
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/coupon/CouponMall/CouponMall.vue b/pages/coupon/CouponMall/CouponMall.vue
index 07f562f..a67e5c7 100644
--- a/pages/coupon/CouponMall/CouponMall.vue
+++ b/pages/coupon/CouponMall/CouponMall.vue
@@ -12,7 +12,7 @@
规则
@@ -52,7 +52,9 @@
import confirmPopupVue from '../component/confirmPopup.vue';
import popupVue from '../../popup.vue';
import emitter from '../../../utils/emitter';
+ import { couponUrl } from '../../../common/globalImagesUrl';
const cookie = wx.getStorageSync("cookie") //请求头
+
const couponList = ref([])
const points = ref(0)
const exchange = ref(null)
@@ -175,7 +177,7 @@
}
.page {
background-color: #ffffff;
- background-image: url('https://ide.code.fun/api/image?token=67bd70bf4ae84d0012272c1a&name=776298fdb18de84cb191f66e4d22ba7a.png');
+ background-image: url(https://carbon2.obs.cn-north-4.myhuaweicloud.com/feiyi/miniProgram/coupon/CouponMall/bkg.png);
background-size: 100% 100%;
background-repeat: no-repeat;
width: 100%;
@@ -184,7 +186,7 @@
height: 100%;
}
.section {
- background-image: url('https://ide.code.fun/api/image?token=67bd70bf4ae84d0012272c1a&name=776298fdb18de84cb191f66e4d22ba7a.png');
+ background-image: url(https://carbon2.obs.cn-north-4.myhuaweicloud.com/feiyi/miniProgram/coupon/CouponMall/bkg.png);
background-size: 100% 100%;
background-repeat: no-repeat;
width: 750rpx;
diff --git a/pages/coupon/CouponTips/CouponTips.vue b/pages/coupon/CouponTips/CouponTips.vue
index 85f3132..d17898f 100644
--- a/pages/coupon/CouponTips/CouponTips.vue
+++ b/pages/coupon/CouponTips/CouponTips.vue
@@ -27,7 +27,7 @@
diff --git a/pages/mine/Contact/testContact.vue b/pages/mine/Contact/testContact.vue
index bfa78bd..d7a6059 100644
--- a/pages/mine/Contact/testContact.vue
+++ b/pages/mine/Contact/testContact.vue
@@ -188,13 +188,13 @@
.text-wrapper_2 {
padding-bottom: 7.5rpx;
- background-color: #ffbe55;
+ background-color: #fbdedf;
border-radius: 9.38rpx;
width: 71.06rpx;
}
.text_2 {
- color: #ffffff;
+ color: #c35c5d;
font-size: 22.5rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 18.71rpx;
diff --git a/pages/mine/mineorders/mineorders.vue b/pages/mine/mineorders/mineorders.vue
index c71d617..e4a297a 100644
--- a/pages/mine/mineorders/mineorders.vue
+++ b/pages/mine/mineorders/mineorders.vue
@@ -34,10 +34,15 @@
-
- 订单编号:
- {{order.orderNumber}}
- {{ order.orderStatus }}
+
+
+ 订单编号:
+ {{order.orderNumber}}
+
+
+
+ {{ order.orderStatus }}
+
@@ -66,7 +71,7 @@
售后详情
-->
- 总 金额:
+ 总金额:
{{order.totalAmount}}
@@ -122,7 +127,7 @@