<template>
|
<view>
|
<u-toast ref="uToast" /><u-no-network></u-no-network>
|
<u-navbar title="已核销服务码" safeAreaInsetTop fixed placeholder>
|
<view class="coreshop-navbar-left-slot" slot="left">
|
<u-icon name="arrow-left" size="19" @click="goNavigateBack"></u-icon>
|
<u-line direction="column" :hairline="false" length="16" margin="0 8px"></u-line>
|
<u-icon name="home" size="22" @click="goHome"></u-icon>
|
</view>
|
<view slot="right">
|
</view>
|
</u-navbar>
|
<view v-if="logs.length>0">
|
<view class="orderList" v-for="(item, key) in logs" :key="key">
|
<view class="coreshop-flex coreshop-justify-between coreshop-align-center">
|
<view class="coreshop-flex coreshop-align-center">
|
<u-icon name="order" :size="20" color="rgb(94,94,94)"></u-icon>
|
<view class="coreshop-margin-left-5 coreshop-margin-right-5 coreshop-font-15 coreshop-font-weight-bold">编号:{{item.ticket.serviceOrderId}}</view>
|
</view>
|
<view class="coreshop-width-fit-content">
|
<u-tag text="复制核销码" type="success" size="mini" @click="doCopyData(item.ticket.redeemCode)" />
|
</view>
|
</view>
|
<view class="item" v-if="item.service">
|
<view class="left">
|
<u--image :showLoading="true" :src="item.service.thumbnail" width="80px" height="80px" mode="aspectFill"></u--image>
|
</view>
|
<view class="content">
|
<view class="title u-line-2">{{item.service.title}}</view>
|
<view class="type u-line-2">{{item.service.description}}</view>
|
<view class="success coreshop-font-12 coreshop-margin-top-10 coreshop-margin-bottom-10 coreshop-text-yellow">核销时间:{{item.ticket.verificationTime}}</view>
|
<view class="success coreshop-font-12 coreshop-margin-top-10 coreshop-margin-bottom-10 coreshop-text-yellow">核销码:{{item.ticket.redeemCode}}</view>
|
</view>
|
</view>
|
<view class="bottom coreshop-margin-0">
|
<view class="more">
|
下单时间:{{ $u.timeFormat(item.ticket.createTime, 'mm-dd hh:MM:ss') }}
|
</view>
|
<view class='logistics coreshop-btn' @click="logsDel(item.id)">删除</view>
|
</view>
|
</view>
|
<!-- 更多 -->
|
<u-loadmore :status="status" :icon-type="iconType" :load-text="loadText" margin-top="20" margin-bottom="20" />
|
</view>
|
<!-- 无数据时默认显示 -->
|
<view class="coreshop-emptybox" v-else>
|
<u-empty :icon="$globalConstVars.apiFilesUrl+'/static/images/empty/data.png'" icon-size="150" text="暂无已核销服务码记录" mode="list"></u-empty>
|
</view>
|
|
</view>
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
return {
|
page: 1,
|
limit: 10,
|
logs: [],
|
status: 'loadmore',
|
iconType: 'flower',
|
loadText: {
|
loadmore: '轻轻上拉',
|
loading: '努力加载中',
|
nomore: '实在没有了'
|
},
|
storeId: 0,
|
}
|
},
|
onLoad(option) {
|
this.storeId = option.storeId;
|
this.getlogs();
|
},
|
methods: {
|
//获取提货单列表
|
getlogs() {
|
let _this = this
|
let data = {
|
page: _this.page,
|
limit: _this.limit,
|
id: _this.storeId
|
}
|
_this.status = 'loading';
|
this.$u.api.getverificationPageList(data).then(res => {
|
if (res.status) {
|
_this.logs = [..._this.logs, ...res.data]
|
// 判断数据是否加载完毕
|
if (_this.page < res.otherData.totalPages) {
|
_this.page++
|
_this.status = 'loadmore'
|
} else {
|
_this.status = 'nomore'
|
}
|
} else {
|
// 接口請求出錯
|
_this.$u.toast(res.msg)
|
_this.status = 'loadmore'
|
}
|
});
|
},
|
//删除
|
logsDel(id) {
|
let _this = this
|
_this.$common.modelShow('提示', '删除核验单后将无法找回!', res => {
|
let data = {
|
'id': id
|
}
|
_this.$u.api.serviceLogDelete(data).then(res => {
|
_this.$refs.uToast.show({
|
message: res.msg, type: 'success', complete: function () {
|
_this.getlogs();
|
}
|
})
|
});
|
});
|
}
|
},
|
// 页面滚动到底部触发事件
|
onReachBottom() {
|
let _this = this
|
if (_this.status === 'loadmore') {
|
_this.getlogs()
|
}
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
</style>
|