web-retail-h5/pages/selfService/orderPick/orderPick.vue

498 lines
10 KiB
Vue
Raw Normal View History

2025-03-23 09:29:40 +08:00
<template>
<view class="content">
<!-- <view class="flex_box">
<view class="timeA">申请时间</view>
<view class="timeB" @click="openDate(0)">
{{ queryParams.startCreationTime?queryParams.startCreationTime:'开始时间' }}
</view>
<view class="timeA">{{$t('w_0139')}}</view>
<view class="timeB" @click="openDate(1)">
{{ queryParams.endCreationTime?queryParams.endCreationTime:'结束时间' }}
</view>
<view class="seatch_r" @click="getDataList">
<u-icon name="search" size="22" color="#fff"></u-icon>
</view>
</view> -->
<template v-if="tableData.length>0">
<view class="contentList" v-for="item,index in tableData" :key="index">
<view class="list_flex">
<view class="top_flex">
<view class="zc_btn">{{item.orderTypeVal}}</view>
<view class="code_text">{{$t('MY_ORD_1')}}{{item.orderCode}}</view>
</view>
<view class="top_status">
{{item.orderStatusVal}}
</view>
</view>
<view class="list_flex" style="margin-top: 20rpx;" v-for="aitem,aindex in item.waresOrderList">
<view class="center_left">
<image class="center_img" :src="aitem.cover1" mode=""></image>
<view class="center_title">{{aitem.waresName}}</view>
</view>
<view class="center_right">
<view class="center_price"><!-- {{aitem.price}} --></view>
<view class="center_num">X{{aitem.quantity}}</view>
</view>
</view>
<view class="btm_time">
{{$t('MY_ORD_15')}}:{{item.creationTime}}
</view>
<view class="list_btn">
<view class="list_btm1">
{{$t('MY_CK_7')}}{{item.approveStatusVal}}
</view>
<view class="sub_btn" v-if="item.selfCode&&item.approveStatus!=3" @click="lookCode(item)">
{{$t('MY_CK_18')}}
</view>
<view class="sub_btn" v-if="item.selfCode&&item.approveStatus==3" @click="findWhy(item)">
{{$t('CK_KS_19')}}
</view>
<view v-if="!item.approveStatus" class="sub_btn" @click="goApply(item)">
{{$t('MY_CK_19')}}
</view>
</view>
</view>
</template>
<template v-else>
<u-empty mode="list">
</u-empty>
</template>
<u-datetime-picker :closeOnClickOverlay="true" @close="dataShow = false" @cancel="dataShow = false"
@confirm="getDate" :show="dataShow" v-model="value1" mode="date"></u-datetime-picker>
<u-popup class="thePopup" :show="successShow" mode="center" @close="successShow = false">
<view class="successPopup">
<view class="poupTop">
{{$t('MY_CK_18')}}
</view>
<view class="poupContent">
<!-- {{selfCode}} -->
<text class="green">{{$t('MY_CK_26')}}{{selfCode}}</text>
<text class="copy" @click="copy(selfCode)">{{$t('MY_CK_27')}}</text>
</view>
<view class="tipcontent">
<view class="tip1">
{{$t('MY_ORD_80')}}
</view>
<view class="tip2">
{{$t('MY_CK_23')}}</br>
{{$t('MY_ORD_81')}}400-111-2818
</view>
</view>
<view class="poupBtn" @click="successShow=false">
{{$t('w_0035')}}
</view>
</view>
</u-popup>
<u-popup :show="rejectShow" closeable mode="center" round='10' @close="rejectShow=false">\
<view class="popview">
<view class="email_neir " @click="clickhtml(rejectContent)" v-html="rejectContent">
</view>
</view>
</u-popup>
</view>
</template>
<script>
import * as sel from '@/config/selfService.js'
import * as mar from "@/config/market.js"
import {
formatMsToDate
} from '@/util/index'
export default {
data() {
return {
tabList: [{
value: 0,
label: this.$t('MY_ORD_82')
}, {
value: 1,
label: this.$t('MY_ORD_83')
}],
// isTab: 0,
queryParams: {
creationTimeStart: "",
creationTimeEnd: "",
assessType: 0,
assessStatus: ""
},
tableData: [],
dataShow: false,
value1: '',
timeIndex: 0,
riqi: "",
successShow: false,
selfCode: "",
rejectShow: false,
rejectContent: ""
}
},
watch: {
// isTab(n, o) {
// this.queryParams.assessType = n
// this.getDataList()
// },
},
onLoad() {
this.getDataList()
},
methods: {
findWhy(item) {
this.rejectContent = item.rejectMsg
this.rejectShow = true
},
clickhtml(content) {
this.rejectShow = false
// 在组件挂载后调用handleImageClick方法预览第一张图片
const parser = new DOMParser();
const doc = parser.parseFromString(content, "text/html");
const imgElements = doc.getElementsByTagName("img");
if (imgElements.length > 0) {
const firstImageUrl = imgElements[0].src;
this.handleImageClick(firstImageUrl, content);
}
},
handleImageClick(url, content) {
uni.previewImage({
urls: this.getUrls(content),
current: url
});
},
getUrls(content) {
const parser = new DOMParser();
const doc = parser.parseFromString(content, "text/html");
const imgElements = doc.getElementsByTagName("img");
const urls = [];
for (let i = 0; i < imgElements.length; i++) {
urls.push(imgElements[i].src);
}
return urls;
},
copy(code) {
uni.setClipboardData({
data: code,
success() {
uni.showToast({
title: this.$t('MY_CK_29'),
icon: 'success'
});
},
fail() {
uni.showToast({
title: this.$t('w_0349'),
icon: 'none'
});
}
});
},
lookCode(item) {
this.selfCode = item.selfCode
this.successShow = true
},
goApply(item) {
let params = item
let queryString = Object.keys(params).map(key =>
`${encodeURIComponent(key)}=${encodeURIComponent(params[key])}`).join('&')
uni.navigateTo({
url: '/pages/selfService/orderPick/applyPick?' + queryString,
})
},
getDate(e) {
if (this.timeIndex == 1) {
this.queryParams.creationTimeEnd = formatMsToDate(e.value)
} else {
this.queryParams.creationTimeStart = formatMsToDate(e.value)
}
this.dataShow = false
},
openDate(index) {
this.timeIndex = index
this.dataShow = true
},
getDataList() {
sel.getOrderSelfList(this.queryParams).then(res => {
this.tableData = res.rows
})
}
}
}
</script>
<style lang="scss" scoped>
::v-deep img {
max-width: 100%;
height: auto;
}
.popview {
padding: 24rpx;
width: 620rpx;
.email_neir {
font-size: 24rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #666666;
}
}
.content {
background: #F2F2F2;
padding-bottom: 20rpx;
.tab {
display: flex;
align-items: center;
justify-content: space-around;
margin-bottom: 6rpx;
background-color: #FFFFFF;
.tab_i {
text-align: center;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
color: #333333;
white-space: nowrap;
display: flex;
flex-direction: column;
align-items: center;
padding: 24rpx 0;
// background-color: pink;
}
.heng {
border-bottom: 6rpx solid #FB3024;
color: #FB3024;
}
.heng {
color: #333333;
}
}
.flex_box {
background-color: #FFFFFF;
padding: 30rpx 20rpx 30rpx 50rpx;
align-items: center;
justify-content: space-between;
display: flex;
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: #999999;
.neibox {
display: flex;
align-items: center;
}
.seatch_r {
background: #fb3024;
border-radius: 50%;
padding: 8rpx;
margin-left: 24rpx;
}
}
.contentList {
padding: 27rpx 22rpx 22rpx 22rpx;
background-color: #FFFFFF;
margin-top: 21rpx;
.list_flex {
display: flex;
align-items: center;
justify-content: space-between;
.top_flex {
display: flex;
align-items: center;
.zc_btn {
display: flex;
align-items: center;
justify-content: center;
background: #3D3D3D;
color: #FFFFFF;
border-radius: 30rpx;
padding: 7rpx 23rpx;
margin-right: 8rpx;
font-size: 20rpx;
font-family: Source Han Sans CN;
font-weight: 400;
}
.code_text {
font-size: 24rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #999999;
}
}
.top_status {
font-size: 24rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #69A35B;
}
.center_left {
display: flex;
align-items: center;
.center_img {
width: 124rpx;
height: 124rpx;
border-radius: 15rpx;
margin-right: 20rpx;
}
.center_title {
font-size: 28rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #333333;
}
}
.center_right {
.center_price {
font-size: 32rpx;
font-family: Source Han Sans CN;
font-weight: bold;
color: #FB3024;
}
.center_num {
text-align: right;
font-size: 22rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #666666;
}
}
}
.btm_time {
padding: 24rpx 0;
font-size: 24rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #999999;
border-bottom: 1rpx solid #EEEEEE;
}
.list_btn {
margin-top: 22rpx;
display: flex;
justify-content: space-between;
align-items: center;
.list_btm1 {
font-size: 24rpx;
color: #666666;
}
.sub_btn {
display: flex;
align-items: center;
justify-content: center;
border-radius: 30rpx;
background: #FB3024;
color: #ffffff;
padding: 15rpx 28rpx;
font-size: 24rpx;
font-family: Source Han Sans CN;
font-weight: 400;
}
}
}
.successPopup {
width: 560rpx;
background: #FFFFFF;
border-radius: 20rpx;
padding: 26rpx 60rpx;
.poupTop {
font-size: 30rpx;
font-family: Source Han Sans CN;
font-weight: bold;
color: #333333;
}
.poupContent {
margin-top: 50rpx;
text-align: center;
.green {
font-size: 36rpx;
font-family: Source Han Sans CN;
font-weight: bold;
color: #69A35B;
margin-right: 18rpx;
}
.copy {
font-size: 26rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #FB3024;
}
}
.tipcontent {
font-size: 26rpx;
font-family: Source Han Sans CN;
margin-top: 36rpx;
.tip1 {
color: #333333;
font-weight: bold;
}
.tip2 {
color: #666666;
font-weight: 400;
line-height: 42rpx;
}
}
.poupBtn {
background: #FB3024;
border-radius: 39rpx;
padding: 26rpx 0;
display: flex;
align-items: center;
justify-content: center;
color: #FFFFFF;
margin-top: 70rpx;
margin-bottom: 40rpx;
}
}
}
</style>