企业预约金额

This commit is contained in:
曹磊 2024-08-15 16:39:48 +08:00
parent cc5aa35631
commit 867c0d2ba7
3 changed files with 14 additions and 14 deletions

View File

@ -20,7 +20,7 @@
<view class="money-pay-zhen"> <view class="money-pay-zhen">
<text class="title-font">项目价格</text> <text class="title-font">项目价格</text>
<span class="money-pay-zhen-a1"></span> <span class="money-pay-zhen-a1"></span>
<span class="money-pay-zhen-a2">{{detailData[0].packagePrice}}</span> <span class="money-pay-zhen-a2">{{orderXm.price}}</span>
</view> </view>
</view> </view>
<view class="money-pay justify-between"> <view class="money-pay justify-between">
@ -44,7 +44,7 @@
<view class="detail-foot-list" v-for="(item,index) in detailData" :key="index" @click="detail(item)"> <view class="detail-foot-list" v-for="(item,index) in detailData" :key="index" @click="detail(item)">
<view class="detail-foot-list-top"> <view class="detail-foot-list-top">
<span style="margin-right: 5px;">{{item.title}}</span> <span style="margin-right: 5px;">{{item.title}}</span>
<!-- <span style="display: none;">详情</span> <!-- <span style="display: none;">详情</span>
<span style="margin-left: 5px;">{{orderXm.levelName}}</span>--> <span style="margin-left: 5px;">{{orderXm.levelName}}</span>-->
<image style="width:80rpx; height:30rpx;" :src="orderXm.level=='3'?'../../static/vip/grade1.gif':orderXm.level=='4'?'../../static/vip/grade2.gif':'../../static/vip/grade3.gif'" mode=""></image> <image style="width:80rpx; height:30rpx;" :src="orderXm.level=='3'?'../../static/vip/grade1.gif':orderXm.level=='4'?'../../static/vip/grade2.gif':'../../static/vip/grade3.gif'" mode=""></image>
</view> </view>
@ -54,8 +54,8 @@
<view class="header-bottom-money"> <view class="header-bottom-money">
<view class="header-bottom-money-zhen"> <view class="header-bottom-money-zhen">
<span class="header-bottom-money-zhen-child1"></span> <span class="header-bottom-money-zhen-child1"></span>
<span class="header-bottom-money-zhen-child2">{{item.packagePrice}}</span> <span class="header-bottom-money-zhen-child2">{{orderXm.price}}</span>
<span class="header-bottom-money-zhen-child3">{{item.oldPrice}}</span> <span class="header-bottom-money-zhen-child3">{{orderXm.oldPrice}}</span>
</view> </view>
</view> </view>
<view class="xiangmu-cont-top-left">服务时长:{{item.duration}}分钟</view> <view class="xiangmu-cont-top-left">服务时长:{{item.duration}}分钟</view>
@ -90,7 +90,7 @@
</view> </view>
</view> </view>
<view class="push-button"> <view class="push-button">
<view class="pay_btn" @click="openpay()">去支付</view> <view class="pay_btn" @click="openpay()">去支付</view>
</view> </view>
</view> </view>
<!-- <u-skeleton :loading="loading" :animation="true" bgColor="#FFF"></u-skeleton> --> <!-- <u-skeleton :loading="loading" :animation="true" bgColor="#FFF"></u-skeleton> -->
@ -1345,7 +1345,7 @@
.header-bottom-money-zhen{ .header-bottom-money-zhen{
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: flex-end; align-items: flex-end;
} }
.detail-foot-nav-bor{ .detail-foot-nav-bor{
width: 64px; width: 64px;
@ -2073,7 +2073,7 @@
font-size:28rpx; font-size:28rpx;
color: #666666; color: #666666;
display: flex; display: flex;
align-items: flex-end; align-items: flex-end;
} }
.value-font{ .value-font{
background: #fdeee9; background: #fdeee9;

View File

@ -35,8 +35,8 @@
</view> </view>
<view class="item-view-bottom-qian"> <view class="item-view-bottom-qian">
<span></span> <span></span>
<span>{{item.packagePrice}}</span> <span>{{item.price}}</span>
<span></span> <span></span>
<span>{{item.oldPrice}}</span> <span>{{item.oldPrice}}</span>
</view> </view>
@ -194,7 +194,7 @@
this.$refs.paging.complete(false); this.$refs.paging.complete(false);
}) })
} }
}, },
changeClick(index, item) { changeClick(index, item) {
this.classifyId = item.id this.classifyId = item.id
@ -622,4 +622,4 @@
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
} }
</style> </style>

View File

@ -24,10 +24,10 @@
<view class="header-bottom-money1"> <view class="header-bottom-money1">
<view class="header-bottom-money-zhen"> <view class="header-bottom-money-zhen">
<span></span> <span></span>
<span>{{detailData[0].packagePrice}}</span> <span>{{mainData.price}}</span>
</view> </view>
<view v-if="dataList.name=='index'" class="header-bottom-money-jia" style="text-decoration: line-through;"> <view v-if="dataList.name=='index'" class="header-bottom-money-jia" style="text-decoration: line-through;">
{{detailData[0].oldPrice}} {{mainData.oldPrice}}
</view> </view>
</view> </view>
</view> </view>
@ -94,7 +94,7 @@
<view class="detail-btn btn" v-if="dataList.name=='index'" @click="openpay(mainData)"> <view class="detail-btn btn" v-if="dataList.name=='index'" @click="openpay(mainData)">
立即购买 立即购买
</view> </view>
</view> </view>
</template> </template>
<script> <script>