添加 加钟

This commit is contained in:
Mr.jiang 2024-07-11 16:18:37 +08:00
parent af3a1ad9e5
commit eaba6dc5c1
4 changed files with 130 additions and 26 deletions

View File

@ -91,6 +91,43 @@
</view> -->
</view>
</view>
<view class="detail-foot" style="margin-bottom: 100px;" v-if="getList.childrenMassageList.length>0">
<view class="detail-foot-nav">
<span class="detail-foot-nav-text">加钟项目</span>
<span class="detail-foot-nav-bor"></span>
</view>
<view class="detail-foot-mian" v-for="(item,index) in getList.childrenMassageList" :key="index">
<view class="detail-foot-list">
<view class="detail-view" style="position: relative;">
<image class="detail-view-img" :src="item.massageImg" mode=""></image>
<view class="detail-view-mina">
<view class="header-bottom-money" style="margin: 7px 0px;display: flex;justify-content: space-between; ">
<view style="display: flex; align-items: flex-end;">
<view class="detail-foot-list-top">
<span style="margin-right: 5px;">{{item.title}}</span>
</view>
</view>
</view>
<view class="header-bottom-money-zhen">
<span></span>
<span>{{item.price}}</span>
</view>
<view class="xiangmu-cont-top-time">
<view class="xiangmu-cont-top-left">服务时长{{item.duration}}分钟</view>
<view class="xiangmu-cont-top-left">已售{{item.sales}}</view>
</view>
<view class="tese">
<span>项目特色: </span>
<span>{{item.jianjie}}</span>
</view>
</view>
</view>
<view class="detail-foot-title">
服务项目{{index+1}}
</view>
</view>
</view>
</view>
<view class="detail-btn" v-if="getList.status=='1'" @click="goumai(getList)">
立即预约
</view>
@ -164,6 +201,54 @@
}
</script>
<style scoped>
.detail-foot-title{
width: 115px;
height: 32px;
background-image: url(../../static/servicePackage/horn.png);
background-repeat: no-repeat;
background-size: 100% 100%;
font-weight: 400;
font-size: 13px;
color: #FFFFFF;
text-align: right;
line-height: 32px;
padding-right: 15px;
position: absolute;
right: 0;
top: 0;
}
.xiangmu-cont-top-left{
font-weight: normal;
font-size: 21rpx;
color: #049E89;
margin-top: 1px;
}
.xiangmu-cont-top-time{
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin-bottom: 5px;
}
.detail-view-mina{
width: 70%;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.detail-view-img{
width: 76px;
height: 76px;
border-radius: 9px;
}
.detail-view{
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.lab-view{
width:100%;
display: flex;

View File

@ -175,7 +175,7 @@
that.$Request.get("/app/consortia/selectConsortiaList", {
page:that.page,
limit:that.limit,
title:that.searchValue
consortiaName:that.searchValue
}).then(res => {
if (res.code == 0) {
if (res.data) {

View File

@ -11,6 +11,12 @@
<span>{{mainData.consortiaName}}</span>
</view>
</view>
<view class="header-bottom-title">
<view class="header-bottom-title-text" style="font-size: 12px;">
<span>商家电话</span>
<span style="margin-left: 10px;font-size: 12px;">{{mainData.phone}}</span>
</view>
</view>
<view class="shop_label" v-if="labels">
<span v-for="(item,index) in labels" :key="index">{{item}}</span>
</view>

View File

@ -376,35 +376,48 @@
this.money=e.detail.value;
},
zhifu(){//
var data={
userId: this.myId,
artificerId: this.artificerId,
money:this.money
}
if(this.money!=''){
this.$Request.post("/app/userMoney/payUserMoneyArtificer", data).then(res => {
if (res.code == 0) {
uni.showToast({
title: '打赏成功!'
})
this.closePopup('center')
}else{
uni.showToast({
icon:'error',
title: res.msg
})
var that=this;
uni.showModal({
title: '提示',
content: '确定为'+that.order.artificerName+'打赏吗?',
success: function(res) {
if (res.confirm) {
var data={
userId: that.myId,
artificerId: that.artificerId,
money:that.money
}
if(that.money!=''){
that.$Request.post("/app/userMoney/payUserMoneyArtificer", data).then(res => {
if (res.code == 0) {
uni.showToast({
title: '打赏成功!'
})
that.closePopup('center')
}else{
uni.showToast({
icon:'error',
title: res.msg
})
}
});
}else{
uni.showToast({
icon:'error',
title: '请输入打赏金额'
})
}
} else if (res.cancel) {
console.log('用户点击取消');
}
});
}else{
uni.showToast({
icon:'error',
title: '请输入打赏金额'
})
}
}
})
},
guanzhu(item) {//
let oldIsFollow = this.isFollow;
let that = this
let that = this;
let data = {
artificerId: that.artificerId,
userId: that.myId,