This commit is contained in:
zoujiandong
2024-05-09 14:28:15 +08:00
parent 57389606fa
commit a35f8fc3ed
11 changed files with 42 additions and 14 deletions
+1 -1
View File
@@ -229,7 +229,7 @@ getFollowDetail(){
this.setData({
showServiceNumber:false,
monthly_frequency:index==0?10:0
monthly_frequency:index==0?10:'0'
})
},
cancelServiceNumber(){
@@ -6,7 +6,7 @@
<view class="price_steup_box_top_title">服务次数/月</view>
<view class="price_steup_box_top_stepper" bind:tap="openServiceNumber">
<text class="amount nodata" wx:if="{{monthly_frequency===''}}">请选择服务次数</text>
<text class="amount" wx:else>{{monthly_frequency===0?'不限次数':'10次'}}</text>
<text class="amount" wx:else>{{monthly_frequency==='0'?'不限次数':'10次'}}</text>
<van-icon name="arrow" color="#999" style="margin-top: 2rpx;"/>
</view>