Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
闫晓茹 2023-10-27 17:09:58 +08:00
commit fd70992ce6
2 changed files with 17 additions and 16 deletions

View File

@ -68,8 +68,8 @@
</view>
</view>
<view class="anniu">
<view class="logistics" v-if="item.orderStatus=='WAIT_REFUND'" style="background-color: coral;color:#fff"
@tap='goorderdetails(item)'>退款中
<view class="logistics" v-if="item.orderStatus=='WAIT_REFUND'"
style="background-color: coral;color:#fff" @tap='goorderdetails(item)'>退款中
</view>
<view class="logistics"
v-if="item.orderStatus=='WAIT_RECEIVED_GOODS'&&item.orderType !='HEALTH_CONSULTATION'"
@ -151,13 +151,14 @@
},
orderTypeList: {
patientId: '',
goodsOrderId: '',
orderTypeList: [
'INTEGRAL_EXCHANGE',
'DIRECT_BUY',
],
orderStatus: '',
pageSize: 15, //
pageNum: 1, //
pageSize: 15,
pageNum: 1,
goodsName: '',
},
orderNoitem: null,
@ -167,12 +168,6 @@
total: 0, //list
show: false, //
img: '', //
orderStatus: '', //
goodsOrderId: '', //
pageSize: 15, //
pageNum: 1, //
goodsName: '',
getCodeText: null,
}
},
methods: {
@ -331,8 +326,8 @@
this.orderTypeList.pageNum = 1;
this.baseurl = baseurl;
let that = this
const value3 = uni.getStorageSync('Refresh');
if (value3) {
const Refresh = uni.getStorageSync('Refresh');
if (Refresh) {
that.goodsOrderinfo();
}
},
@ -345,7 +340,7 @@
that.openid = value2
if (options.orderStatus) {
that.tabscurrent = options.toindex
that.orderStatus = options.orderStatus
that.orderTypeList.orderStatus = options.orderStatus
that.goodsOrderinfo();
} else {
that.goodsOrderinfo();

View File

@ -68,8 +68,14 @@
<view class="items" v-if="Soonerorlater=='after'">
<view @tap='taptime(item,index)'
v-for="(item ,index) in appointmentTimeList[timecurrent].afternoonList"
:class="timeindex==index?'timeitemtap':'timeitem'">
{{item.scheduleTimeSlot}}
:class="timeindex==index?'timeitemtap':'timeitem'"
:style="item.status?'':'background: #FFFFFF;color: #AAABB0;'">
<view class="itemstext">
{{item.scheduleTimeSlot}}
</view>
<view class="itemstexttwo">
{{item.status?'(可预约)':'(不可预约)'}}
</view>
</view>
</view>
</view>