|
|
@@ -176,6 +176,11 @@
|
|
|
<view class="flex" style="color: #3385ff;font-weight: 400" v-if="detailInfo.status == 4">
|
|
|
<button class="admin-button-com bule" @click.stop="goRefund()">发起售后</button>
|
|
|
</view>
|
|
|
+ <view v-else>
|
|
|
+ <block v-if="detailInfo.status == 1 || detailInfo.status == 5">
|
|
|
+ <button disabled="true" class="admin-button-com bule active" style="border:1rpx solid #ccc;">发起售后</button>
|
|
|
+ </block>
|
|
|
+ </view>
|
|
|
<view class="flex" style="color: #3385ff;font-weight: 400" v-if="(detailInfo.status == 3 || detailInfo.status == 2) && detailInfo.book == 0">
|
|
|
<button class="admin-button-com bule" @click.stop="confirmReach(detailInfo)">确认送达</button>
|
|
|
</view>
|
|
|
@@ -320,6 +325,8 @@
|
|
|
|
|
|
</view>
|
|
|
<div class="app-footer">
|
|
|
+ <button @click="cancelOrderFn(detailInfo)" v-if="detailInfo.status == 1" class="admin-button-com middle blue" :class="active">取消</button>
|
|
|
+
|
|
|
<!-- #ifdef MP-WEIXIN -->
|
|
|
<button class="admin-button-com middle blue" open-type="share">分享</button>
|
|
|
<!-- #endif -->
|
|
|
@@ -329,7 +336,6 @@
|
|
|
|
|
|
<button class="admin-button-com middle blue" v-if="detailInfo.status != 1 && detailInfo.status != 5" @click="printOrder(detailInfo)">打印(无价)</button>
|
|
|
|
|
|
- <button @click="cancelOrderFn(detailInfo)" v-if="detailInfo.status == 1" class="admin-button-com middle blue" :class="active">取消</button>
|
|
|
<template v-for="s in detailInfo.buttonList">
|
|
|
<button :key="s.type" @click="clickBtn(s, detailInfo)" v-if="s.show == 1" :disabled="s.disable === 1" class="admin-button-com middle blue" :class="s.disable === 1?'active':''">
|
|
|
{{ s.type === "print" ? s.name+`(${detailInfo.printNum})` : s.name}}
|