|
@@ -3,14 +3,18 @@
|
|
|
<scroll-view style="height: 100vh;" class="floor-list"
|
|
|
:scroll-top="scrollTop" scroll-y="true" v-if="list.length > 0" @scroll="scroll" @scrolltoupper="upper" @scrolltolower="lower"
|
|
|
:refresher-enabled="false">
|
|
|
- <view class="hotelcontent" v-for="(item,index) in getlist" :key="index">
|
|
|
+ <view class="hotelcontent" v-for="(item,index) in list" :key="index">
|
|
|
<view class="contentleft">
|
|
|
- <image style="width: 100%;height: 100%;"></image>
|
|
|
+ <!-- :src="pictureUrl+'/uploads/home/store/goods/'+item.goodsimage_url.substr(0, item.goodsimage_url.indexOf('\_')) + '/' + item.goodsimage_url" -->
|
|
|
+ <image
|
|
|
+ :src="pictureUrl+'/uploads/home/store/goods/'+item.goods_image.substr(0, item.goods_image.indexOf('\_')) + '/' + item.goods_image"
|
|
|
+ style="width: 100%;height: 100%;"></image>
|
|
|
</view>
|
|
|
<view class="contentitle">
|
|
|
- <view v-if="item.types == 0">催单信息</view>
|
|
|
+ <!-- <view v-if="item.types == 0">催单信息</view>
|
|
|
<view v-if="item.types == 1">联系酒店</view>
|
|
|
- <view v-if="item.types == 2">客户退货</view>
|
|
|
+ <view v-if="item.types == 2">客户退货</view> -->
|
|
|
+ <view>{{item.status}}</view>
|
|
|
<view>{{item.content}}</view>
|
|
|
<view>订单号:{{item.order_sn}}</view>
|
|
|
<view style="text-align: right;">{{item.add_time}}</view>
|
|
@@ -27,6 +31,7 @@
|
|
|
export default {
|
|
|
data() {
|
|
|
return{
|
|
|
+ pictureUrl: this.pictureUrl,
|
|
|
list:[],
|
|
|
page: 1,
|
|
|
scrollTop: 0,
|
|
@@ -63,6 +68,7 @@
|
|
|
page_size: 10
|
|
|
},
|
|
|
success: (res) => {
|
|
|
+
|
|
|
this.list = this.list.concat(res.data.data.msg_list);
|
|
|
}
|
|
|
})
|