123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434 |
- <template>
- <view v-if="!isLoading" class="container p-bottom">
- <!-- 顶部状态栏 -->
- <view class="detail-header dis-flex flex-y-center">
- <view class="header-backdrop">
- <image class="image" src="/static/order/refund-bg.png"></image>
- </view>
- <view class="header-state">
- <text class="f-32 col-f" v-if="detail.status == RefundStatusEnum.A.key">{{RefundStatusEnum.A.name}}</text>
- <text class="f-32 col-f" v-if="detail.status == RefundStatusEnum.B.key">{{RefundStatusEnum.B.name}}</text>
- <text class="f-32 col-f" v-if="detail.status == RefundStatusEnum.C.key">{{RefundStatusEnum.C.name}}</text>
- <text class="f-32 col-f" v-if="detail.status == RefundStatusEnum.D.key">{{RefundStatusEnum.D.name}}</text>
- <text class="f-32 col-f" v-if="detail.status == RefundStatusEnum.E.key">{{RefundStatusEnum.E.name}}</text>
- </view>
- </view>
- <!-- 商品详情 -->
- <view v-for="(goods, index) in detail.orderInfo.goods" :key="index" class="detail-goods b-f m-top20 dis-flex flex-dir-row" @click="onGoodsDetail(goods.goodsId)">
- <view class="left">
- <image class="goods-image" :src="goods.image"></image>
- </view>
- <view class="right dis-flex flex-box flex-dir-column flex-x-around">
- <view class="goods-name">
- <text class="twolist-hidden">{{ goods.name }}</text>
- </view>
- <view class="dis-flex col-9 f-24">
- <view class="flex-box">
- <view class="goods-props clearfix">
- <view class="goods-props-item" v-for="(props, idx) in goods.specList" :key="idx">
- <text>{{ props.specName }}</text>
- </view>
- </view>
- </view>
- <text class="t-r">×{{ goods.num }}</text>
- </view>
- </view>
- </view>
- <!-- 订单金额 -->
- <view class="detail-order b-f row-block">
- <view class="item dis-flex flex-x-end flex-y-center">
- <text class="">订单金额:</text>
- <text class="col-m">¥{{ detail.orderInfo.amount }}</text>
- </view>
- </view>
- <!-- 已退款金额 -->
- <view v-if="detail.status == 'B' && detail.type == 'A'" class="detail-order b-f row-block dis-flex flex-x-end flex-y-center">
- <text class="">已退款金额:</text>
- <text class="col-m">¥{{ detail.refundMoney }}</text>
- </view>
- <!-- 售后信息 -->
- <view class="detail-refund b-f m-top20">
- <view class="detail-refund__row dis-flex">
- <view class="text">
- <text>售后类型:</text>
- </view>
- <view class="flex-box">
- <text v-if="detail.type == RefundTypeEnum.RETURN.value">{{RefundTypeEnum.RETURN.name}}</text>
- <text v-if="detail.type == RefundTypeEnum.EXCHANGE.value">{{RefundTypeEnum.EXCHANGE.name}}</text>
- </view>
- </view>
- <view class="detail-refund__row dis-flex">
- <view class="text">
- <text>申请原因:</text>
- </view>
- <view class="flex-box">
- <text>{{ detail.remark }}</text>
- </view>
- </view>
- <view v-if="detail.imageList && detail.imageList.length > 0" class="detail-refund__row dis-flex">
- <view class="text">
- <text>申请凭证:</text>
- </view>
- <view class="image-list flex-box">
- <view class="image-preview" v-for="(item, index) in detail.imageList" :key="index">
- <image class="image" mode="aspectFill" :src="item" @click="handlePreviewImages(index)"></image>
- </view>
- </view>
- </view>
- </view>
- <!-- 售后信息 -->
- <view v-if="detail.status == RefundStatusEnum.C.key" class="detail-refund b-f m-top20">
- <view class="detail-refund__row dis-flex">
- <view class="text">
- <text class="col-m">拒绝原因:</text>
- </view>
- <view class="flex-box">
- <text>{{ detail.remark }}</text>
- </view>
- </view>
- </view>
- <!-- 商家收货地址 -->
- <view v-if="detail.status == RefundStatusEnum.B.key" class="detail-address b-f m-top20">
- <view class="detail-address__row address-title">
- <text class="col-m">退货地址</text>
- </view>
- <view class="detail-address__row address-details">
- <view class="address-details__row">
- <text>收货人名:{{ detail.address.name ? detail.address.name : '-'}}</text>
- </view>
- <view class="address-details__row">
- <text>联系电话:{{ detail.address.mobile ? detail.address.mobile : '-' }}</text>
- </view>
- <view class="address-details__row dis-flex">
- <view class="text">
- <text>详细地址:</text>
- </view>
- <view class="address flex-box">
- <text class="region" v-for="(region, idx) in detail.address.region" :key="idx">{{ region }}</text>
- <text class="detail">{{ detail.address.detail ? detail.address.detail : '-'}}</text>
- </view>
- </view>
- </view>
- <view class="detail-address__row address-tips">
- <view class="f-26 col-9">
- <text>· 未与卖家协商一致情况下,请勿寄到付或平邮</text>
- </view>
- <view class="f-26 col-9">
- <text>· 请填写真实有效物流信息</text>
- </view>
- </view>
- </view>
- <!-- 填写物流信息 -->
- <form v-if="detail.type == RefundTypeEnum.RETURN.value && detail.status == RefundStatusEnum.B.value && !detail.is_user_send"
- @submit="onSubmit()">
- <view class="detail-express b-f m-top20">
- <view class="form-group dis-flex flex-y-center">
- <view class="field">物流公司:</view>
- <view class="flex-box">
- <input class="input" v-model="expressName" placeholder="请填写物流公司名称"></input>
- </view>
- </view>
- <view class="form-group dis-flex flex-y-center">
- <view class="field">物流单号:</view>
- <view class="flex-box">
- <input class="input" v-model="expressNo" placeholder="请填写物流单号"></input>
- </view>
- </view>
- </view>
- <!-- 操作按钮 -->
- <view class="footer">
- <view class="btn-wrapper">
- <button class="btn-item btn-item-main btn-normal" :class="{ disabled }" formType="submit">确认发货</button>
- </view>
- </view>
- </form>
- </view>
- </template>
- <script>
- import { RefundStatusEnum, RefundTypeEnum } from '@/common/enum/order/refund'
- import * as RefundApi from '@/api/refund'
- export default {
- data() {
- return {
- // 枚举类
- RefundStatusEnum,
- RefundTypeEnum,
- // 正在加载
- isLoading: true,
- // 售后单ID
- refundId: null,
- // 售后单详情
- detail: {},
- // 物流公司
- expressName: '',
- // 物流单号
- expressNo: '',
- // 按钮禁用
- disabled: false
- }
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad({ refundId }) {
- // 售后单ID
- this.refundId = refundId
- // 获取页面数据
- this.getPageData()
- },
- methods: {
- // 获取页面数据
- getPageData() {
- const app = this
- app.isLoading = true
- Promise.all([app.getRefundDetail()])
- .then(result => {
- app.isLoading = false
- })
- },
- // 获取售后单详情
- getRefundDetail() {
- const app = this
- return new Promise((resolve, reject) => {
- RefundApi.detail(app.refundId)
- .then(result => {
- app.detail = result.data;
- resolve()
- })
- .catch(err => reject(err))
- })
- },
- // 跳转商品详情页
- onGoodsDetail(goodsId) {
- this.$navTo('pages/goods/detail', { goodsId })
- },
- // 凭证图片预览
- handlePreviewImages(index) {
- const { detail: { images } } = this
- const imageUrls = images.map(item => item.image_url)
- uni.previewImage({
- current: imageUrls[index],
- urls: imageUrls
- })
- },
- // 表单提交
- onSubmit() {
- const app = this
- // 判断是否重复提交
- if (app.disabled === true) return false
- // 按钮禁用
- app.disabled = true
- // 提交到后端
- RefundApi.delivery(app.refundId, app.expressName, app.expressNo)
- .then(result => {
- if (result.code == 200) {
- app.$toast("提交成功");
- setTimeout(() => {
- app.disabled = false
- uni.navigateBack()
- }, 1500)
- } else {
- app.$error(result.message);
- app.disabled = false;
- }
- })
- .catch(err => app.disabled = false)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- // 顶部状态栏
- .detail-header {
- position: relative;
- width: 100%;
- height: 140rpx;
- .header-backdrop {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 0;
- .image {
- display: block;
- width: 750rpx;
- height: 140rpx;
- }
- }
- }
- .header-state {
- padding: 0rpx 130rpx;
- font-size: 60rpx;
- font-weight: bold;
- }
- /* 商品详情 */
- .detail-goods {
- padding: 24rpx 20rpx;
- .left {
- .goods-image {
- display: block;
- width: 150rpx;
- height: 150rpx;
- border-radius: 6rpx;
- }
- }
- .right {
- padding-left: 20rpx;
- }
- .goods-props {
- margin-top: 14rpx;
- height: 40rpx;
- color: #ababab;
- font-size: 24rpx;
- overflow: hidden;
- .goods-props-item {
- display: inline-block;
- margin-right: 14rpx;
- padding: 4rpx 16rpx;
- border-radius: 12rpx;
- background-color: #F5F5F5;
- width: auto;
- }
- }
- }
- .detail-order {
- padding: 15rpx 20rpx;
- font-size: 26rpx;
- .item {
- margin-bottom: 10rpx;
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
- /* 售后详情 */
- .detail-refund {
- padding: 15rpx 20rpx;
- }
- .detail-refund__row {
- margin: 20rpx 0;
- }
- /* 申请凭证 */
- .image-list {
- margin-bottom: -15rpx;
- .image-preview {
- margin: 0 15rpx 15rpx 0;
- float: left;
- .image {
- display: block;
- width: 180rpx;
- height: 180rpx;
- }
- &:nth-child(3n+0) {
- margin-right: 0;
- }
- }
- }
- /* 商家收货地址 */
- .detail-address {
- padding: 20rpx 30rpx;
- }
- .address-details {
- padding: 5rpx 0;
- border-bottom: 1px solid #eee;
- .address-details__row {
- margin: 10rpx 0;
- }
- }
- .address-tips {
- line-height: 46rpx;
- }
- .detail-address__row {
- margin: 15rpx 0;
- }
- /* 填写物流信息 */
- .detail-express {
- padding: 10rpx 30rpx;
- }
- .form-group {
- height: 60rpx;
- margin: 14rpx 0;
- .input {
- height: 100%;
- font-size: 28rpx;
- }
- }
- /* 底部操作栏 */
- .footer {
- margin-top: 60rpx;
- .btn-wrapper {
- height: 100%;
- display: flex;
- align-items: center;
- padding: 0 20rpx;
- }
- .btn-item {
- flex: 1;
- font-size: 28rpx;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- color: #fff;
- border-radius: 40rpx;
- }
- .btn-item-main {
- background: linear-gradient(to right, #f9211c, #ff6335);
- // 禁用按钮
- &.disabled {
- background: #ff9779;
- }
- }
- }
- </style>
|