Compare commits
3 Commits
a2e98b6867
...
ada8ffcea4
Author | SHA1 | Date |
---|---|---|
|
ada8ffcea4 | |
|
b23e5ef90f | |
|
41fbd2c76d |
|
@ -386,8 +386,6 @@
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
liliaoshi(){
|
liliaoshi(){
|
||||||
// this.$queue.setData('taocanDd', '2');
|
|
||||||
|
|
||||||
uni.setStorage({
|
uni.setStorage({
|
||||||
key: 'taocanDd',
|
key: 'taocanDd',
|
||||||
data: '支付',
|
data: '支付',
|
||||||
|
|
|
@ -315,22 +315,22 @@
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 获取明天的日期字符串
|
// 获取明天的日期字符串
|
||||||
getTomorrowDate() {
|
getTomorrowDate() {
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
const tomorrow = new Date(now.getFullYear(), now.getMonth(), now.getDate() + 1);
|
const tomorrow = new Date(now.getFullYear(), now.getMonth(), now.getDate() + 1);
|
||||||
return this.formatDate(tomorrow);
|
return this.formatDate(tomorrow);
|
||||||
},
|
},
|
||||||
// 将日期对象格式化为YYYY-MM-DD字符串
|
// 将日期对象格式化为YYYY-MM-DD字符串
|
||||||
formatDate(date) {
|
formatDate(date) {
|
||||||
const year = date.getFullYear();
|
const year = date.getFullYear();
|
||||||
const month = this.padStart(date.getMonth() + 1);
|
const month = this.padStart(date.getMonth() + 1);
|
||||||
const day = this.padStart(date.getDate());
|
const day = this.padStart(date.getDate());
|
||||||
return `${year}-${month}-${day}`;
|
return `${year}-${month}-${day}`;
|
||||||
},
|
},
|
||||||
// 补齐日期字符串,确保月份和日期为两位数
|
// 补齐日期字符串,确保月份和日期为两位数
|
||||||
padStart(num) {
|
padStart(num) {
|
||||||
return num < 10 ? '0' + num : num;
|
return num < 10 ? '0' + num : num;
|
||||||
},
|
},
|
||||||
openpay() {//验证
|
openpay() {//验证
|
||||||
if(this.single=='2024-06-19'){
|
if(this.single=='2024-06-19'){
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
|
|
|
@ -5,16 +5,16 @@
|
||||||
<view class="index-top-left font-size-34">盛安到家</view>
|
<view class="index-top-left font-size-34">盛安到家</view>
|
||||||
<view class="index-top-mian">
|
<view class="index-top-mian">
|
||||||
<view class="index-top-mian-text">
|
<view class="index-top-mian-text">
|
||||||
<image src="../../static/index-nav-1.png" mode="widthFix"></image>
|
<image style="margin-top: 4px;" src="../../static/index-nav-1.png" mode=""></image>
|
||||||
<span class="font-size-19">实名认证</span>
|
<span>实名认证</span>
|
||||||
|
</view>
|
||||||
|
<view style="margin-top: 2px;" class="index-top-mian-text">
|
||||||
|
<image src="../../static/index-nav-2.png" mode=""></image>
|
||||||
|
<span>资质认证</span>
|
||||||
</view>
|
</view>
|
||||||
<view class="index-top-mian-text">
|
<view class="index-top-mian-text">
|
||||||
<image src="../../static/index-nav-2.png" mode="widthFix"></image>
|
<image src="../../static/index-nav-3.png" mode=""></image>
|
||||||
<span class="font-size-19">资质认证</span>
|
<span>平台担保</span>
|
||||||
</view>
|
|
||||||
<view class="index-top-mian-text">
|
|
||||||
<image src="../../static/index-nav-3.png" mode="widthFix"></image>
|
|
||||||
<span class="font-size-19">平台担保</span>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="index-top-right">
|
<view class="index-top-right">
|
||||||
|
@ -942,6 +942,9 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
/deep/.item-descr{
|
||||||
|
-webkit-line-clamp: 1;
|
||||||
|
}
|
||||||
.index-card-image{
|
.index-card-image{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -1339,6 +1342,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
.index-fujin-view{
|
.index-fujin-view{
|
||||||
width: 222.22rpx;
|
width: 222.22rpx;
|
||||||
|
@ -1622,10 +1626,11 @@
|
||||||
color: #019c88;
|
color: #019c88;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
.index-top-mian-text image{
|
.index-top-mian-text image{
|
||||||
width: 20.14rpx;
|
width: 12px;
|
||||||
height: 15.28rpx;
|
height: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-top{
|
.index-top{
|
||||||
|
|
|
@ -117,7 +117,7 @@
|
||||||
</u-tabs>
|
</u-tabs>
|
||||||
<view v-if="fwIndex == 0&&XCXIsSelect !='否'" class="tab ">
|
<view v-if="fwIndex == 0&&XCXIsSelect !='否'" class="tab ">
|
||||||
<view class="xiangmu" v-for="(item,index) in artificerlist"
|
<view class="xiangmu" v-for="(item,index) in artificerlist"
|
||||||
:key="index" @click="goNav(item.massageTypeId,classifyId)">
|
:key="index" @click="goNav(item)">
|
||||||
<image class="xiangmu-img" :src="item.massageImg" mode=""></image>
|
<image class="xiangmu-img" :src="item.massageImg" mode=""></image>
|
||||||
<view class="xiangmu-cont">
|
<view class="xiangmu-cont">
|
||||||
<view class="xiangmu-cont-top">
|
<view class="xiangmu-cont-top">
|
||||||
|
@ -356,7 +356,7 @@
|
||||||
}else{
|
}else{
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
icon:'error',
|
icon:'error',
|
||||||
title: '提醒成功失败!'
|
title: '提醒失败!'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -539,9 +539,15 @@
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
|
var data={
|
||||||
|
massageTypeId:massageTypeId,
|
||||||
|
tripWay:this.order.tripWay,
|
||||||
|
artificerId:this.order.artificerId,
|
||||||
|
artificerName:this.order.artificerName
|
||||||
|
}
|
||||||
|
this.$queue.setData('getJishi',data)
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: "/pages/index/order/orderDet?massageTypeId=" + massageTypeId + '&artificerId=' + this
|
url: "/my/order/payModify"
|
||||||
.artificerId + '&tripWay=' + this.tripWay + '&classifyId=' + this.classifyId
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue