修改bug

This commit is contained in:
Mr.jiang 2024-08-26 10:02:54 +08:00
parent 6a70eb1f76
commit ed11e74801
2 changed files with 1 additions and 5 deletions

View File

@ -177,11 +177,7 @@
}, },
// //
sub() { sub() {
delete this.host_All.timeStamp; delete this.host_All.timeStamp;
if (this.host_index == []) { if (this.host_index == []) {
this.$queue.showToast('请选择时间') this.$queue.showToast('请选择时间')
} else { } else {

View File

@ -6,7 +6,7 @@
<view class="dx_view margin-bottom-sm" v-if="msList.length > 0"> <view class="dx_view margin-bottom-sm" v-if="msList.length > 0">
<view class="dx_title">忙时时间</view> <view class="dx_title">忙时时间</view>
<view class="flex align-center flex-wrap "> <view class="flex align-center flex-wrap ">
<view v-for="(item,index) in msList" class="btn flex align-center margin-top"> <view v-for="(item,index) in msList" :key="index" class="btn flex align-center margin-top">
<view>{{item}}</view> <view>{{item}}</view>
<view class="margin-left-sm" @tap.stop="bindupdata(index,item)">x</view> <view class="margin-left-sm" @tap.stop="bindupdata(index,item)">x</view>
</view> </view>