mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-uniapp.git
synced 2026-08-06 19:07:23 +08:00
- 将多个组件转换为 `<script setup>` 语法,提升可读性和性能 - 优化状态管理和事件处理逻辑,简化代码结构 - 更新样式和布局以适应新组件结构 - 添加新功能和修复已知问题,提升用户体验
294 lines
7.1 KiB
Vue
294 lines
7.1 KiB
Vue
<template>
|
|
<view class="mp-iphonex-bottom content">
|
|
<up-form
|
|
:model="form"
|
|
ref="uForm"
|
|
label-position="left"
|
|
label-width="180rpx"
|
|
>
|
|
<view class="after-sales-goods-detail-view">
|
|
<view class="header">
|
|
<view>
|
|
本次售后服务将由
|
|
<text class="seller-name">{{ sku.storeName }}</text>
|
|
为您提供
|
|
</view>
|
|
</view>
|
|
<view>
|
|
<view class="goods-item-view" @click="gotoGoodsDetail(sku)">
|
|
<view class="goods-img">
|
|
<u-image border-radius="6" width="131rpx" height="131rpx" :src="sku.image"></u-image>
|
|
</view>
|
|
<view class="goods-info">
|
|
<view class="goods-title u-line-2">{{ sku.name }}</view>
|
|
<view class="goods-price">
|
|
<span>¥{{unitPrice(sku.price) }}</span>
|
|
<span class="num">购买数量: {{ sku.num }} </span>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<scroll-view scroll-y>
|
|
<!-- 上传凭证 -->
|
|
<view class="opt-view">
|
|
<view class="img-title" style="font-size: 30rpx">填写物流信息</view>
|
|
<up-form-item label="返回方式" label-width="180rpx">
|
|
<div style="width: 100%; text-align: right;">快递至第三方卖家</div>
|
|
</up-form-item>
|
|
<up-form-item label="快递公司" label-width="180rpx">
|
|
<div style="width: 100%; text-align: right;" @click="companySelectShow = true">
|
|
{{ form.courierCompany || '请选择快递公司' }}
|
|
</div>
|
|
</up-form-item>
|
|
<up-form-item label="快递单号" label-width="180rpx">
|
|
<u-input input-align="right" v-model="form.logisticsNo" placeholder="请输入快递单号"/>
|
|
</up-form-item>
|
|
<up-form-item label="发货时间" label-width="180rpx">
|
|
<div style="width: 100%; text-align: right;" @click="timeshow = true">{{
|
|
form.mDeliverTime || '请选择发货时间'
|
|
}}
|
|
</div>
|
|
</up-form-item>
|
|
</view>
|
|
</scroll-view>
|
|
|
|
<view class="submit-view">
|
|
<u-button ripple :customStyle="{ background: lightColor, color: '#fff' }" shape="circle" @click="onSubmit">
|
|
提交申请
|
|
</u-button>
|
|
</view>
|
|
</up-form>
|
|
<u-select mode="single-column" :list="companyList" v-model:show="companySelectShow"
|
|
@confirm="companySelectConfirm"></u-select>
|
|
<u-calendar v-model:show="timeshow" :mode="'date'" @change="onTimeChange"></u-calendar>
|
|
<u-toast ref="uToast"/>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, reactive, computed } from 'vue'
|
|
import { onLoad } from '@dcloudio/uni-app'
|
|
import { useStore } from '@/store'
|
|
import { unitPrice } from '@/utils/filters.js'
|
|
import { getLogistics } from '@/api/address.js'
|
|
import { fillShipInfo } from '@/api/after-sale.js'
|
|
import storage from '@/utils/storage'
|
|
|
|
const store = useStore()
|
|
const lightColor = computed(() => store.getters.lightColor)
|
|
|
|
const companySelectShow = ref(false)
|
|
const companyList = ref<any[]>([])
|
|
const timeshow = ref(false)
|
|
const form = reactive({
|
|
courierCompany: '',
|
|
logisticsId: '',
|
|
logisticsNo: '',
|
|
mDeliverTime: '',
|
|
})
|
|
const serviceDetail = reactive<{ sn: string }>({ sn: '' })
|
|
const sku = ref<any>({})
|
|
const uToast = ref<any>(null)
|
|
|
|
onLoad((options) => {
|
|
sku.value = storage.getAfterSaleData()
|
|
uni.setNavigationBarTitle({ title: '服务单详情' })
|
|
serviceDetail.sn = options?.serviceSn || ''
|
|
fetchLogisticsList()
|
|
})
|
|
|
|
function hideLoadingIfNeeded() {
|
|
if (store.state.isShowToast) uni.hideLoading()
|
|
}
|
|
|
|
function companySelectConfirm(e: any[]) {
|
|
form.logisticsId = e[0].value
|
|
form.courierCompany = e[0].label
|
|
}
|
|
|
|
function fetchLogisticsList() {
|
|
getLogistics().then((res) => {
|
|
if (res.data.success) {
|
|
companyList.value = res.data.result.map((item: any) => ({
|
|
value: item.id,
|
|
label: item.name,
|
|
}))
|
|
}
|
|
})
|
|
}
|
|
|
|
function onTimeChange(e: { result: string }) {
|
|
form.mDeliverTime = e.result
|
|
}
|
|
|
|
function onSubmit() {
|
|
const submitForm = { ...form }
|
|
delete submitForm.courierCompany
|
|
|
|
if (form.logisticsId == '') {
|
|
uToast.value?.show({ title: '请选择快递公司', type: 'error' })
|
|
return
|
|
}
|
|
if (form.logisticsNo == '') {
|
|
uToast.value?.show({ title: '请填写快递单号', type: 'error' })
|
|
return
|
|
}
|
|
if (form.mDeliverTime == '') {
|
|
uToast.value?.show({ title: '请选择发货时间', type: 'error' })
|
|
return
|
|
}
|
|
|
|
uni.showLoading({ title: '加载中', mask: true })
|
|
fillShipInfo(serviceDetail.sn, submitForm).then((res) => {
|
|
hideLoadingIfNeeded()
|
|
if (res.statusCode === 200) {
|
|
uToast.value?.show({
|
|
title: '提交成功',
|
|
type: 'success',
|
|
back: true,
|
|
url: '/pages/order/afterSales/afterSales',
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
function gotoGoodsDetail(item: any) {
|
|
uni.navigateTo({
|
|
url: `/pages/product/goods?id=${item.skuId}&goodsId=${item.goodsId}`,
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
page,
|
|
.content {
|
|
background: $page-color-base;
|
|
height: 100%;
|
|
}
|
|
|
|
.mp-iphonex-bottom {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.after-sales-goods-detail-view {
|
|
background-color: #fff;
|
|
padding: 10rpx 0rpx;
|
|
|
|
.header {
|
|
background-color: #f7f7f7;
|
|
color: #999999;
|
|
font-size: 22rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
line-height: 70rpx;
|
|
|
|
.header-text {
|
|
background-color: #999999;
|
|
padding: 10rpx 30rpx;
|
|
border-radius: 50rpx;
|
|
}
|
|
|
|
.seller-name {
|
|
color: $main-color;
|
|
}
|
|
}
|
|
|
|
.goods-item-view {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 20rpx 30rpx;
|
|
background-color: #eef1f2;
|
|
|
|
.goods-info {
|
|
padding-left: 30rpx;
|
|
flex: 1;
|
|
|
|
.goods-title {
|
|
margin-bottom: 10rpx;
|
|
color: $font-color-dark;
|
|
}
|
|
|
|
.goods-specs {
|
|
font-size: 24rpx;
|
|
margin-bottom: 10rpx;
|
|
color: #cccccc;
|
|
}
|
|
|
|
.goods-price {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
font-size: 28rpx;
|
|
margin-bottom: 10rpx;
|
|
color: $light-color;
|
|
|
|
.num {
|
|
font-size: 24rpx;
|
|
color: #999999;
|
|
}
|
|
}
|
|
}
|
|
|
|
.goods-num {
|
|
width: 60rpx;
|
|
color: $main-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.opt-view {
|
|
background-color: #fff;
|
|
padding: 40rpx 30rpx 0rpx 30rpx;
|
|
|
|
font-size: 26rpx;
|
|
|
|
.how-view {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 80rpx;
|
|
border-bottom: 1px solid $page-color-base;
|
|
}
|
|
|
|
.explain-view {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
height: 150rpx;
|
|
}
|
|
|
|
.img-title {
|
|
height: 80rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.images-view {
|
|
padding: 20rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
|
|
.submit-view {
|
|
position: fixed;
|
|
z-index: 999;
|
|
bottom: 10px;
|
|
left: 0px;
|
|
margin-top: 100rpx;
|
|
height: 100rpx;
|
|
width: 750rpx;
|
|
align-items: center;
|
|
padding: 0rpx 20rpx;
|
|
color: #fff;
|
|
}
|
|
</style>
|