字体和购物车修复
This commit is contained in:
parent
735851a9e5
commit
8c3b393265
|
@ -4,4 +4,4 @@ export const suiUrl = 'http://154.8.193.216:9092/api' //隋宇霏的接口地
|
||||||
export const domain = 'https://www.carboner.cn/api'
|
export const domain = 'https://www.carboner.cn/api'
|
||||||
export const myIp = 'http://8.130.119.119:9092/api'
|
export const myIp = 'http://8.130.119.119:9092/api'
|
||||||
|
|
||||||
export const baseUrl = Url
|
export const baseUrl = testUrl
|
||||||
|
|
|
@ -334,7 +334,8 @@
|
||||||
products.value.forEach((item) => {
|
products.value.forEach((item) => {
|
||||||
item.checked = false //将全部都取消选择
|
item.checked = false //将全部都取消选择
|
||||||
})
|
})
|
||||||
}
|
checkedData.value = []
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//减少商品(适用于服务类和商品类)
|
//减少商品(适用于服务类和商品类)
|
||||||
const decrease = (index, item) => { //item用于监测是否选中
|
const decrease = (index, item) => { //item用于监测是否选中
|
||||||
|
|
|
@ -47,11 +47,27 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { onMounted } from 'vue';
|
||||||
import emitter from '../../../utils/emitter';
|
import emitter from '../../../utils/emitter';
|
||||||
|
onMounted(()=>{
|
||||||
|
getFonts()
|
||||||
|
})
|
||||||
const closeFeeTips = () => {
|
const closeFeeTips = () => {
|
||||||
emitter.emit('closeFeeTips')
|
emitter.emit('closeFeeTips')
|
||||||
}
|
}
|
||||||
|
//获取字体
|
||||||
|
const getFonts =()=>{
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
@ -79,7 +95,7 @@ import emitter from '../../../utils/emitter';
|
||||||
.text {
|
.text {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
font-size: 36.99rpx;
|
font-size: 36.99rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 36.12rpx;
|
line-height: 36.12rpx;
|
||||||
}
|
}
|
||||||
.group {
|
.group {
|
||||||
|
@ -87,13 +103,13 @@ import emitter from '../../../utils/emitter';
|
||||||
}
|
}
|
||||||
.font {
|
.font {
|
||||||
font-size: 32.88rpx;
|
font-size: 32.88rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 39.04rpx;
|
line-height: 39.04rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
.font_2 {
|
.font_2 {
|
||||||
font-size: 28.77rpx;
|
font-size: 28.77rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 34.93rpx;
|
line-height: 34.93rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
|
@ -111,7 +127,7 @@ import emitter from '../../../utils/emitter';
|
||||||
}
|
}
|
||||||
.font_3 {
|
.font_3 {
|
||||||
font-size: 32.88rpx;
|
font-size: 32.88rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 31.73rpx;
|
line-height: 31.73rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,6 +73,7 @@
|
||||||
const point = ref(0)
|
const point = ref(0)
|
||||||
|
|
||||||
onMounted( async () => {
|
onMounted( async () => {
|
||||||
|
getFonts()
|
||||||
await getAllCategory()
|
await getAllCategory()
|
||||||
await getPhotoProductsByCategoryId(categoryName.value)
|
await getPhotoProductsByCategoryId(categoryName.value)
|
||||||
getSpecialIds()
|
getSpecialIds()
|
||||||
|
@ -166,7 +167,19 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//获取字体
|
||||||
|
const getFonts =()=>{
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
@ -206,7 +219,7 @@
|
||||||
}
|
}
|
||||||
.font {
|
.font {
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 28.71rpx;
|
line-height: 28.71rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
|
@ -261,7 +274,7 @@
|
||||||
}
|
}
|
||||||
.font_2 {
|
.font_2 {
|
||||||
font-size: 26.25rpx;
|
font-size: 26.25rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 25.16rpx;
|
line-height: 25.16rpx;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
@ -319,7 +332,7 @@
|
||||||
}
|
}
|
||||||
.font_3 {
|
.font_3 {
|
||||||
font-size: 18.75rpx;
|
font-size: 18.75rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 17.14rpx;
|
line-height: 17.14rpx;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
|
@ -209,6 +209,7 @@
|
||||||
|
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
getFonts()
|
||||||
getDefaultAddress()
|
getDefaultAddress()
|
||||||
getPhotoProductsById()
|
getPhotoProductsById()
|
||||||
emitter.on('closeBookingTips', () => {
|
emitter.on('closeBookingTips', () => {
|
||||||
|
@ -377,7 +378,19 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//获取字体
|
||||||
|
const getFonts =()=>{
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
@ -450,7 +463,7 @@
|
||||||
}
|
}
|
||||||
.font {
|
.font {
|
||||||
font-size: 37.5rpx;
|
font-size: 37.5rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 35.01rpx;
|
line-height: 35.01rpx;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
@ -473,7 +486,7 @@
|
||||||
}
|
}
|
||||||
.font_2 {
|
.font_2 {
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 28.01rpx;
|
line-height: 28.01rpx;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
@ -515,7 +528,7 @@
|
||||||
}
|
}
|
||||||
.font_3 {
|
.font_3 {
|
||||||
font-size: 26.25rpx;
|
font-size: 26.25rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 24.3rpx;
|
line-height: 24.3rpx;
|
||||||
color: #8b8b8b;
|
color: #8b8b8b;
|
||||||
}
|
}
|
||||||
|
@ -573,7 +586,7 @@
|
||||||
}
|
}
|
||||||
.font_4 {
|
.font_4 {
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 20.04rpx;
|
line-height: 20.04rpx;
|
||||||
color: #8b8b8b;
|
color: #8b8b8b;
|
||||||
}
|
}
|
||||||
|
@ -612,7 +625,7 @@
|
||||||
}
|
}
|
||||||
.font_5 {
|
.font_5 {
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 20.04rpx;
|
line-height: 20.04rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
|
@ -642,7 +655,7 @@
|
||||||
}
|
}
|
||||||
.font_6 {
|
.font_6 {
|
||||||
font-size: 26.25rpx;
|
font-size: 26.25rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 24.3rpx;
|
line-height: 24.3rpx;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
@ -661,7 +674,7 @@
|
||||||
.text_11 {
|
.text_11 {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
font-size: 22.5rpx;
|
font-size: 22.5rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 21.09rpx;
|
line-height: 21.09rpx;
|
||||||
}
|
}
|
||||||
.section_6 {
|
.section_6 {
|
||||||
|
|
|
@ -135,6 +135,7 @@ import { getFonts } from '../../../common/globalFont';
|
||||||
})
|
})
|
||||||
|
|
||||||
onMounted( async () => {
|
onMounted( async () => {
|
||||||
|
getFonts()
|
||||||
await getAdvanceOrder()
|
await getAdvanceOrder()
|
||||||
emitter.on('closeCancelOrderPopup', () => {
|
emitter.on('closeCancelOrderPopup', () => {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
|
@ -400,33 +401,19 @@ import { getFonts } from '../../../common/globalFont';
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
//获取字体
|
||||||
|
const getFonts =()=>{
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
|
|
@ -98,7 +98,7 @@ const getFonts =()=>{ //获取字体
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
height: 100%;
|
height: 100vh;
|
||||||
}
|
}
|
||||||
.section_2 {
|
.section_2 {
|
||||||
margin-left: 256.88rpx;
|
margin-left: 256.88rpx;
|
||||||
|
|
|
@ -44,6 +44,7 @@
|
||||||
const ContactArr = ref() //联系人数组
|
const ContactArr = ref() //联系人数组
|
||||||
const popup = ref(null) //弹窗对象
|
const popup = ref(null) //弹窗对象
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
getFonts()
|
||||||
getContactInfo() //获取联系人信息
|
getContactInfo() //获取联系人信息
|
||||||
emitter.on('closeContactPop',()=>{
|
emitter.on('closeContactPop',()=>{
|
||||||
close()
|
close()
|
||||||
|
@ -114,6 +115,19 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
//获取字体
|
||||||
|
const getFonts =()=>{
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -145,7 +159,7 @@
|
||||||
.text {
|
.text {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
font-size: 37.5rpx;
|
font-size: 37.5rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 36.47rpx;
|
line-height: 36.47rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -174,14 +188,14 @@
|
||||||
|
|
||||||
.font {
|
.font {
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 25.89rpx;
|
line-height: 25.89rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
|
|
||||||
.font_2 {
|
.font_2 {
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 20.04rpx;
|
line-height: 20.04rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
|
@ -196,7 +210,7 @@
|
||||||
.text_2 {
|
.text_2 {
|
||||||
color: #c35c5d;
|
color: #c35c5d;
|
||||||
font-size: 22.5rpx;
|
font-size: 22.5rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 18.71rpx;
|
line-height: 18.71rpx;
|
||||||
margin-top: 8rpx;
|
margin-top: 8rpx;
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,9 +41,9 @@ import { baseUrl } from '../../../api/request';
|
||||||
import { onShow } from '@dcloudio/uni-app';
|
import { onShow } from '@dcloudio/uni-app';
|
||||||
const items = ref([null,null,null,null,null,null,null,null,null])
|
const items = ref([null,null,null,null,null,null,null,null,null])
|
||||||
const addressArr = ref([]) //地址数组
|
const addressArr = ref([]) //地址数组
|
||||||
// onMounted(()=>{
|
onMounted(()=>{
|
||||||
// getAddress()
|
getFonts() //获取字体
|
||||||
// })
|
})
|
||||||
onShow(()=>{
|
onShow(()=>{
|
||||||
getAddress()
|
getAddress()
|
||||||
})
|
})
|
||||||
|
@ -101,6 +101,19 @@ const jump_newAddress =()=> {
|
||||||
url: '/pages/Shopping-cart/newaddress_Info/newaddress_Info'
|
url: '/pages/Shopping-cart/newaddress_Info/newaddress_Info'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
//获取字体
|
||||||
|
const getFonts =()=>{
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -131,13 +144,13 @@ const jump_newAddress =()=> {
|
||||||
}
|
}
|
||||||
.font {
|
.font {
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 25.89rpx;
|
line-height: 25.89rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
.font_2 {
|
.font_2 {
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 20.04rpx;
|
line-height: 20.04rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
|
@ -155,7 +168,7 @@ const jump_newAddress =()=> {
|
||||||
.text_2 {
|
.text_2 {
|
||||||
color: #c35c5d;
|
color: #c35c5d;
|
||||||
font-size: 22.5rpx;
|
font-size: 22.5rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
// line-height: 18.71rpx;
|
// line-height: 18.71rpx;
|
||||||
}
|
}
|
||||||
.image {
|
.image {
|
||||||
|
@ -165,7 +178,7 @@ const jump_newAddress =()=> {
|
||||||
}
|
}
|
||||||
.font_3 {
|
.font_3 {
|
||||||
font-size: 26.25rpx;
|
font-size: 26.25rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 31.88rpx;
|
line-height: 31.88rpx;
|
||||||
color: #818181;
|
color: #818181;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,261 +0,0 @@
|
||||||
<template>
|
|
||||||
<view class="flex-col page">
|
|
||||||
<view class="flex-col section">
|
|
||||||
<view class="flex-row justify-between self-stretch group">
|
|
||||||
<text class="font text">待消费</text>
|
|
||||||
<text class="font text_2" @click="goto()">已消费</text>
|
|
||||||
</view>
|
|
||||||
<view class="self-start section_2"></view>
|
|
||||||
</view>
|
|
||||||
<view class="flex-col section_3 mt-13" v-for="i in item">
|
|
||||||
<text class="self-end font_2 text_3">待消费</text>
|
|
||||||
<view class="flex-row items-baseline self-stretch group_2">
|
|
||||||
<text class="font_3 text_4">订单编号:</text>
|
|
||||||
<text class="font_3 text_5 ml-5">E20241005095840091406189</text>
|
|
||||||
</view>
|
|
||||||
<view class="flex-row self-stretch group_3">
|
|
||||||
<image class="shrink-0 image"
|
|
||||||
src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=bc0e955304da0a2ccafe3a66ac1f3aca.png" />
|
|
||||||
<view class="flex-col flex-1 group_4">
|
|
||||||
<view class="flex-row justify-center self-stretch relative">
|
|
||||||
<text class="font_2 text_6 pos">整套约拍</text>
|
|
||||||
<text class="font_2 text_7">【时尚精选】</text>
|
|
||||||
</view>
|
|
||||||
<text class="self-start font_5 text_10">到店日期:2024-10-15</text>
|
|
||||||
<text class="self-start font_5 text_1">具体场次:上午场(09:30-12:00)</text>
|
|
||||||
<text class="self-stretch text_11">已选服务:妆发服务;摄影服务;室内;</text>
|
|
||||||
</view>
|
|
||||||
<view class="flex-row items-center shrink-0 self-start group_5">
|
|
||||||
<text class="text_8">138.</text>
|
|
||||||
<image class="shrink-0 image_2 image_3"
|
|
||||||
src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=6c5700b3ac5fd83a23d838cb456bdd10.png" />
|
|
||||||
<text class="font_4 text_9">00</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="flex-row justify-end items-center self-stretch group_6">
|
|
||||||
<text class="font_2 text_12">去支付:</text>
|
|
||||||
<image class="image_2"
|
|
||||||
src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=ea05ec17023763edb8cfe919508e0459.png" />
|
|
||||||
<view class="group_7">
|
|
||||||
<text class="text_13">88</text>
|
|
||||||
<text class="font_4 text_14">.00</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup>
|
|
||||||
import { ref } from 'vue'
|
|
||||||
const item = ref([null,null,null])
|
|
||||||
const goto=()=>{
|
|
||||||
uni.navigateTo({
|
|
||||||
url:'/pages/mine/bookings/bookings'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.mt-13 {
|
|
||||||
margin-top: 24.38rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ml-5 {
|
|
||||||
margin-left: 9.38rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.page {
|
|
||||||
padding-bottom: 1185rpx;
|
|
||||||
background-color: #f8e8c1;
|
|
||||||
width: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section {
|
|
||||||
padding: 0 121.88rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group {
|
|
||||||
padding: 21.68rpx 4.71rpx 18.23rpx 10.22rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font {
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 26.25rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text {
|
|
||||||
line-height: 27.6rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_2 {
|
|
||||||
line-height: 27.6rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section_2 {
|
|
||||||
background-color: #fb8b05;
|
|
||||||
width: 112.5rpx;
|
|
||||||
height: 5.63rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section_3 {
|
|
||||||
margin-left: 16.88rpx;
|
|
||||||
margin-right: 15rpx;
|
|
||||||
padding: 35.4rpx 19.89rpx 35.4rpx 24.38rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font_2 {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 26.25rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_3 {
|
|
||||||
color: #fb8b05;
|
|
||||||
line-height: 24.15rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_2 {
|
|
||||||
margin-top: 18.49rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font_3 {
|
|
||||||
font-size: 22.5rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
color: #818181;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_4 {
|
|
||||||
line-height: 20.85rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_5 {
|
|
||||||
line-height: 16.54rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_3 {
|
|
||||||
margin-top: 29.81rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image {
|
|
||||||
border-radius: 9.38rpx;
|
|
||||||
width: 118.13rpx;
|
|
||||||
height: 151.88rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_4 {
|
|
||||||
margin-left: 23.38rpx;
|
|
||||||
margin-top: 2.19rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_6 {
|
|
||||||
line-height: 24.49rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pos {
|
|
||||||
position: absolute;
|
|
||||||
left: 0.15rpx;
|
|
||||||
top: 50%;
|
|
||||||
transform: translateY(-50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_7 {
|
|
||||||
line-height: 24.43rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font_5 {
|
|
||||||
font-size: 22.5rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 26.25rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_10 {
|
|
||||||
margin-top: 22.91rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_1 {
|
|
||||||
margin-top: 3.39rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_11 {
|
|
||||||
margin-top: 20.89rpx;
|
|
||||||
color: #939393;
|
|
||||||
font-size: 22.5rpx;
|
|
||||||
font-family: Inter;
|
|
||||||
line-height: 22.97rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_5 {
|
|
||||||
margin-left: 3.52rpx;
|
|
||||||
margin-right: 14.59rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_8 {
|
|
||||||
margin-left: 25.03rpx;
|
|
||||||
color: #323232;
|
|
||||||
font-size: 33.75rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
font-weight: 600;
|
|
||||||
line-height: 24.88rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image_2 {
|
|
||||||
width: 30rpx;
|
|
||||||
height: 26.25rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image_3 {
|
|
||||||
margin-left: -90.66rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font_4 {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 19.29rpx;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_9 {
|
|
||||||
margin-left: 61.14rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_6 {
|
|
||||||
margin-top: 26.68rpx;
|
|
||||||
padding: 0 9.54rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_12 {
|
|
||||||
margin-right: -8.06rpx;
|
|
||||||
line-height: 24.23rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_7 {
|
|
||||||
line-height: 21.99rpx;
|
|
||||||
height: 22.05rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_13 {
|
|
||||||
color: #fb8b05;
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
font-weight: 600;
|
|
||||||
line-height: 21.99rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_14 {
|
|
||||||
color: #fb8b05;
|
|
||||||
line-height: 19.39rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
@import url("../../../common/css/global.css");
|
|
||||||
</style>
|
|
|
@ -1,275 +0,0 @@
|
||||||
<template>
|
|
||||||
<view class="flex-col page">
|
|
||||||
<view class="flex-col section">
|
|
||||||
<view class="flex-row justify-between self-stretch group">
|
|
||||||
<text class="font text" @click="goto()">待消费</text>
|
|
||||||
<text class="font text_2">已消费</text>
|
|
||||||
</view>
|
|
||||||
<view class="self-end section_2"></view>
|
|
||||||
</view>
|
|
||||||
<view class="flex-col section_3 mt-16" v-for="i in item">
|
|
||||||
<text class="self-end font_2 text_3">已消费</text>
|
|
||||||
<view class="flex-row items-baseline self-stretch group_2">
|
|
||||||
<text class="font_3 text_4">订单编号:</text>
|
|
||||||
<text class="font_3 text_5 ml-5">E20241005095840091406189</text>
|
|
||||||
</view>
|
|
||||||
<view class="flex-row self-stretch group_3">
|
|
||||||
<image class="shrink-0 image"
|
|
||||||
src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=bc0e955304da0a2ccafe3a66ac1f3aca.png" />
|
|
||||||
<view class="flex-col flex-1 group_4">
|
|
||||||
<view class="flex-row justify-center self-stretch relative">
|
|
||||||
<text class="font_2 text_6 pos">整套约拍</text>
|
|
||||||
<text class="font_2 text_7">【时尚精选】</text>
|
|
||||||
</view>
|
|
||||||
<text class="self-start font_5 text_10">到店日期:2024-10-15</text>
|
|
||||||
<text class="self-start font_5 text_1">具体场次:上午场(09:30-12:00)</text>
|
|
||||||
<text class="self-stretch text_11">已选服务:妆发服务;摄影服务;室内;</text>
|
|
||||||
</view>
|
|
||||||
<view class="flex-row items-center shrink-0 self-start group_5">
|
|
||||||
<text class="text_8">138.</text>
|
|
||||||
<image class="shrink-0 image_2 image_3"
|
|
||||||
src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=6c5700b3ac5fd83a23d838cb456bdd10.png" />
|
|
||||||
<text class="font_4 text_9">00</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="flex-row justify-end items-center self-stretch group_6">
|
|
||||||
<text class="font_2 text_12">已付款:</text>
|
|
||||||
<image class="image_2"
|
|
||||||
src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=ea05ec17023763edb8cfe919508e0459.png" />
|
|
||||||
<view class="group_7">
|
|
||||||
<text class="text_13">88</text>
|
|
||||||
<text class="font_4 text_14">.00</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="flex-col justify-start items-center self-end text-wrapper">
|
|
||||||
<text class="font_2 text_15">删除记录</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup>
|
|
||||||
import {ref} from 'vue'
|
|
||||||
const goto = () => {
|
|
||||||
uni.navigateTo({
|
|
||||||
url: '/pages/mine/bookings/booking'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
const item =ref([null,null,null])
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.ml-5 {
|
|
||||||
margin-left: 9.38rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.page {
|
|
||||||
padding-bottom: 1085.63rpx;
|
|
||||||
background-color: #f8e8c1;
|
|
||||||
width: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section {
|
|
||||||
padding-left: 132.09rpx;
|
|
||||||
padding-right: 116.25rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group {
|
|
||||||
padding: 21.68rpx 0 19.16rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font {
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 26.25rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text {
|
|
||||||
line-height: 27.6rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_2 {
|
|
||||||
margin-right: 10.33rpx;
|
|
||||||
line-height: 27.6rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section_2 {
|
|
||||||
background-color: #fb8b05;
|
|
||||||
width: 112.5rpx;
|
|
||||||
height: 5.63rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section_3 {
|
|
||||||
margin-left: 16.88rpx;
|
|
||||||
margin-right: 15rpx;
|
|
||||||
padding: 30rpx 20.06rpx 30rpx 24.38rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font_2 {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 26.25rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_3 {
|
|
||||||
color: #fb8b05;
|
|
||||||
line-height: 24.15rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_2 {
|
|
||||||
margin-top: 18.49rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font_3 {
|
|
||||||
font-size: 22.5rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
color: #818181;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_4 {
|
|
||||||
line-height: 20.85rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_5 {
|
|
||||||
line-height: 16.54rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_3 {
|
|
||||||
margin-top: 29.81rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image {
|
|
||||||
border-radius: 9.38rpx;
|
|
||||||
width: 118.13rpx;
|
|
||||||
height: 151.88rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_4 {
|
|
||||||
margin: 2.19rpx 0 5.38rpx 23.38rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_6 {
|
|
||||||
line-height: 24.49rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pos {
|
|
||||||
position: absolute;
|
|
||||||
left: 0.15rpx;
|
|
||||||
top: 50%;
|
|
||||||
transform: translateY(-50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_7 {
|
|
||||||
line-height: 24.43rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font_5 {
|
|
||||||
font-size: 22.5rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 26.25rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_10 {
|
|
||||||
margin-top: 21.04rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_1 {
|
|
||||||
margin-top: 3.39rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_11 {
|
|
||||||
margin-top: 19.01rpx;
|
|
||||||
color: #939393;
|
|
||||||
font-size: 22.5rpx;
|
|
||||||
font-family: Inter;
|
|
||||||
line-height: 22.97rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_5 {
|
|
||||||
margin-left: 3.52rpx;
|
|
||||||
margin-right: 14.42rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_8 {
|
|
||||||
margin-left: 25.03rpx;
|
|
||||||
color: #323232;
|
|
||||||
font-size: 33.75rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
font-weight: 600;
|
|
||||||
line-height: 24.88rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image_2 {
|
|
||||||
width: 30rpx;
|
|
||||||
height: 26.25rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image_3 {
|
|
||||||
margin-left: -90.66rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.font_4 {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 19.29rpx;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_9 {
|
|
||||||
margin-left: 61.14rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_6 {
|
|
||||||
margin-top: 37.93rpx;
|
|
||||||
padding: 0 9.38rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_12 {
|
|
||||||
margin-right: -8.06rpx;
|
|
||||||
line-height: 24.23rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group_7 {
|
|
||||||
line-height: 21.99rpx;
|
|
||||||
height: 22.05rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_13 {
|
|
||||||
color: #fb8b05;
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
font-weight: 600;
|
|
||||||
line-height: 21.99rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_14 {
|
|
||||||
color: #fb8b05;
|
|
||||||
line-height: 19.39rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-wrapper {
|
|
||||||
margin-right: 2.44rpx;
|
|
||||||
margin-top: 35.4rpx;
|
|
||||||
padding: 13.54rpx 0 14.83rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 75rpx;
|
|
||||||
width: 155.63rpx;
|
|
||||||
border: solid 1.88rpx #cbcbcb;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text_15 {
|
|
||||||
line-height: 24.13rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
@import url('../../../common/css/global.css')
|
|
||||||
</style>
|
|
|
@ -39,6 +39,7 @@ onLoad(()=>{
|
||||||
onShow(()=>{
|
onShow(()=>{
|
||||||
})
|
})
|
||||||
onMounted(()=>{
|
onMounted(()=>{
|
||||||
|
getFonts() //获取字体
|
||||||
emitter.on('contactInfo',(val)=>{ //编辑按钮传来的联系人信息
|
emitter.on('contactInfo',(val)=>{ //编辑按钮传来的联系人信息
|
||||||
console.log('当前编辑的联系人信息',val);
|
console.log('当前编辑的联系人信息',val);
|
||||||
if(val != null) {
|
if(val != null) {
|
||||||
|
@ -118,6 +119,19 @@ const closePop = () =>{ //关闭弹窗方法
|
||||||
contactParam.value.isDefault = 0
|
contactParam.value.isDefault = 0
|
||||||
emitter.emit('closeContactPop')
|
emitter.emit('closeContactPop')
|
||||||
}
|
}
|
||||||
|
//获取字体
|
||||||
|
const getFonts =()=>{
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -138,7 +152,7 @@ const closePop = () =>{ //关闭弹窗方法
|
||||||
.text {
|
.text {
|
||||||
color: #323232;
|
color: #323232;
|
||||||
font-size: 37.5rpx;
|
font-size: 37.5rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 36.47rpx;
|
line-height: 36.47rpx;
|
||||||
}
|
}
|
||||||
.pos_2 {
|
.pos_2 {
|
||||||
|
@ -172,7 +186,7 @@ const closePop = () =>{ //关闭弹窗方法
|
||||||
}
|
}
|
||||||
.font_2 {
|
.font_2 {
|
||||||
font-size: 26.25rpx;
|
font-size: 26.25rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 24.62rpx;
|
line-height: 24.62rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
|
@ -217,7 +231,7 @@ const closePop = () =>{ //关闭弹窗方法
|
||||||
.text_6 {
|
.text_6 {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
font-size: 33.75rpx;
|
font-size: 33.75rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 32.83rpx;
|
line-height: 32.83rpx;
|
||||||
}
|
}
|
||||||
.radius {
|
.radius {
|
||||||
|
|
|
@ -49,6 +49,7 @@ const addressList = ref([])
|
||||||
const userInfo = wx.getStorageSync('userInfo')
|
const userInfo = wx.getStorageSync('userInfo')
|
||||||
//页面跳转回来之后,刷新一次地址列表 onShow就是在页面显示后执行
|
//页面跳转回来之后,刷新一次地址列表 onShow就是在页面显示后执行
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
getFonts() //获取字体
|
||||||
getAddressList()
|
getAddressList()
|
||||||
})
|
})
|
||||||
onShow(() => {
|
onShow(() => {
|
||||||
|
@ -119,7 +120,19 @@ const deleteAddress = async( id ) =>{
|
||||||
const closeWindow =()=> {
|
const closeWindow =()=> {
|
||||||
emitter.emit('closeAddress')
|
emitter.emit('closeAddress')
|
||||||
}
|
}
|
||||||
|
//获取字体
|
||||||
|
const getFonts =()=>{
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
|
@ -119,16 +119,24 @@
|
||||||
<text class="text_33">¥{{ orderObject.totalAmount }}</text>
|
<text class="text_33">¥{{ orderObject.totalAmount }}</text>
|
||||||
<!-- <text class="font_6 text_36">00</text> -->
|
<!-- <text class="font_6 text_36">00</text> -->
|
||||||
</view>
|
</view>
|
||||||
<view class="flex-row flex-1 ml-46">
|
<view class="flex-row flexed ml-46" v-if="orderObject.orderStatus == '待支付' ">
|
||||||
<button class="text-wrapper_9" open-type="contact" bindcontact="handleContact" session-from="sessionFrom">
|
<view>
|
||||||
<text class="font_9 text_64">联系客服</text>
|
<button class="text-wrapper_9" open-type="contact" bindcontact="handleContact" session-from="sessionFrom">
|
||||||
</button>
|
<text class="font_8 text_64">联系客服</text>
|
||||||
<view class="flex-col justify-start items-center text-wrapper_3 ml-6" @click="stateSubmit(orderObject)" v-if="orderObject.orderStatus == '待支付' ">
|
</button>
|
||||||
|
</view>
|
||||||
|
<view class="flex-col justify-start items-center text-wrapper_3 ml-6" @click="stateSubmit(orderObject)" >
|
||||||
<text class="font_8 text_35">{{ bottomBtn }}</text>
|
<text class="font_8 text_35">{{ bottomBtn }}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="flex-row ml-47" v-if="orderObject.orderStatus != '待支付' ">
|
||||||
|
<button class="text-wrapper_9" open-type="contact" bindcontact="handleContact" session-from="sessionFrom">
|
||||||
|
<text class="font_8 text_64">联系客服</text>
|
||||||
|
</button>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 遮罩层 -->
|
<!-- 遮罩层 -->
|
||||||
<view v-if="isShow" class="overlay"></view>
|
<view v-if="isShow" class="overlay"></view>
|
||||||
</template>
|
</template>
|
||||||
|
@ -146,6 +154,7 @@
|
||||||
const oid = ref(0)
|
const oid = ref(0)
|
||||||
onMounted(()=>{
|
onMounted(()=>{
|
||||||
getOrderItem()
|
getOrderItem()
|
||||||
|
getFonts()
|
||||||
})
|
})
|
||||||
onLoad((options)=>{
|
onLoad((options)=>{
|
||||||
oid.value = JSON.parse(options.oid) //获取从上一个页面传来的值
|
oid.value = JSON.parse(options.oid) //获取从上一个页面传来的值
|
||||||
|
@ -283,6 +292,19 @@
|
||||||
isLoading.value = false
|
isLoading.value = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//获取字体
|
||||||
|
const getFonts =()=>{
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -331,7 +353,7 @@
|
||||||
}
|
}
|
||||||
.font {
|
.font {
|
||||||
font-size: 26.25rpx;
|
font-size: 26.25rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 25.54rpx;
|
line-height: 25.54rpx;
|
||||||
color: #818181;
|
color: #818181;
|
||||||
}
|
}
|
||||||
|
@ -343,7 +365,7 @@
|
||||||
.text_2 {
|
.text_2 {
|
||||||
color: #6b6e72;
|
color: #6b6e72;
|
||||||
font-size: 22.5rpx;
|
font-size: 22.5rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 22.14rpx;
|
line-height: 22.14rpx;
|
||||||
}
|
}
|
||||||
.section_3 {
|
.section_3 {
|
||||||
|
@ -359,7 +381,7 @@
|
||||||
.text_3 {
|
.text_3 {
|
||||||
color: #818181;
|
color: #818181;
|
||||||
font-size: 37.5rpx;
|
font-size: 37.5rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 32.38rpx;
|
line-height: 32.38rpx;
|
||||||
}
|
}
|
||||||
.section_4 {
|
.section_4 {
|
||||||
|
@ -391,7 +413,7 @@
|
||||||
}
|
}
|
||||||
.font_2 {
|
.font_2 {
|
||||||
font-size: 26.25rpx;
|
font-size: 26.25rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 25.54rpx;
|
line-height: 25.54rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
|
@ -405,7 +427,7 @@
|
||||||
}
|
}
|
||||||
.font_3 {
|
.font_3 {
|
||||||
font-size: 26.25rpx;
|
font-size: 26.25rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 17.53rpx;
|
line-height: 17.53rpx;
|
||||||
color: #818181;
|
color: #818181;
|
||||||
}
|
}
|
||||||
|
@ -422,13 +444,13 @@
|
||||||
}
|
}
|
||||||
.font_4 {
|
.font_4 {
|
||||||
font-size: 33.75rpx;
|
font-size: 33.75rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 22.54rpx;
|
line-height: 22.54rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
.font_5 {
|
.font_5 {
|
||||||
font-size: 26.25rpx;
|
font-size: 26.25rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 17.53rpx;
|
line-height: 17.53rpx;
|
||||||
color: #323232;
|
color: #323232;
|
||||||
}
|
}
|
||||||
|
@ -588,7 +610,7 @@
|
||||||
}
|
}
|
||||||
.font_8 {
|
.font_8 {
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
font-family: FangZhengFonts;
|
||||||
line-height: 27.77rpx;
|
line-height: 27.77rpx;
|
||||||
}
|
}
|
||||||
.text_32 {
|
.text_32 {
|
||||||
|
@ -624,10 +646,11 @@
|
||||||
}
|
}
|
||||||
.text-wrapper_3 {
|
.text-wrapper_3 {
|
||||||
padding: 20.63rpx 0 22.86rpx;
|
padding: 20.63rpx 0 22.86rpx;
|
||||||
flex: 1 1 204.38rpx;
|
// flex: 1 1 204.38rpx;
|
||||||
background-color: #ffaaa5;
|
background-color: #ffaaa5;
|
||||||
border-radius: 75rpx;
|
border-radius: 75rpx;
|
||||||
height: 71.25rpx;
|
height: 71.25rpx;
|
||||||
|
width: 100px;
|
||||||
}
|
}
|
||||||
.text_35 {
|
.text_35 {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
@ -635,17 +658,28 @@
|
||||||
.text-wrapper_9 {
|
.text-wrapper_9 {
|
||||||
// position: relative;
|
// position: relative;
|
||||||
// left: 326rpx;
|
// left: 326rpx;
|
||||||
background-color: #ffffff;
|
|
||||||
border-radius: 75rpx;
|
border-radius: 75rpx;
|
||||||
width: 214rpx;
|
width: 200rpx;
|
||||||
// height: 71rpx;
|
// height: 71rpx;
|
||||||
font-size: unset;
|
font-size: unset;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border-radius: 75rpx;
|
||||||
|
border-left: solid 1.88rpx #e79ea1;
|
||||||
|
border-right: solid 1.88rpx #e79ea1;
|
||||||
|
border-top: solid 1.88rpx #e79ea1;
|
||||||
|
border-bottom: solid 1.88rpx #e79ea1;
|
||||||
}
|
}
|
||||||
.ml-46 {
|
.ml-46 {
|
||||||
margin-left: 141.25rpx;
|
margin-left: 107.25rpx;
|
||||||
|
}
|
||||||
|
.ml-47 {
|
||||||
|
margin-left: 280rpx;
|
||||||
}
|
}
|
||||||
.text_64 {
|
.text_64 {
|
||||||
color: #ffaaa5;
|
color: #ffaaa5;
|
||||||
}
|
}
|
||||||
|
.flexed {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
@import url(../../../common/css/global.css);
|
@import url(../../../common/css/global.css);
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<view style="width: 100%; background-color: gold; text-align: center;">
|
<!-- <view style="width: 100%; background-color: gold; text-align: center;">
|
||||||
<text style="font-size: 50rpx;">先登录再查看物流</text>
|
<text style="font-size: 50rpx;">先登录再查看物流</text>
|
||||||
</view>
|
</view>
|
||||||
<button @click="login" type="primary">登录</button>
|
<button @click="login" type="primary">登录</button>
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
<button @click="testMap" type="primary">导航到师大</button>
|
<button @click="testMap" type="primary">导航到师大</button>
|
||||||
<button @click="userLogin" type="primary">测试登录</button>
|
<button @click="userLogin" type="primary">测试登录</button>
|
||||||
<button @click="getWxLoginCode" type="warn">获取微信登录code</button>
|
<button @click="getWxLoginCode" type="warn">获取微信登录code</button>
|
||||||
|
-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -104,6 +104,7 @@
|
||||||
let countMap = new Map()
|
let countMap = new Map()
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
getFonts() //获取字体
|
||||||
closeyyxzTip()
|
closeyyxzTip()
|
||||||
emitter.on('getGoodData', (val) => {
|
emitter.on('getGoodData', (val) => {
|
||||||
productObject.value = val
|
productObject.value = val
|
||||||
|
@ -298,7 +299,19 @@
|
||||||
+ '&appointmentDate=' + appointmentDate + '&timeSlot=' + timeSlot
|
+ '&appointmentDate=' + appointmentDate + '&timeSlot=' + timeSlot
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
//获取字体
|
||||||
|
const getFonts =()=>{
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user