|
|
@@ -40,9 +40,8 @@
|
|
|
<view>{{ detailInfo.shopAdminName }}</view>
|
|
|
</view>
|
|
|
<view class="order-info_box">
|
|
|
- <view>出货时间:</view>
|
|
|
- <view v-if="detailInfo.outTime == '0000-00-00 00:00:00'">--</view>
|
|
|
- <view v-else>{{ detailInfo.outTime }}</view>
|
|
|
+ <view>送货时间:</view>
|
|
|
+ <view>{{ detailInfo.sendTimeWant }}</view>
|
|
|
</view>
|
|
|
<view class="order-info_box">
|
|
|
<view>客户下单:</view>
|
|
|
@@ -71,6 +70,9 @@
|
|
|
<view v-if="detailInfo.refund == 2" class="order-info_box">
|
|
|
<view>退款金额:</view>
|
|
|
<view style="color:red;font-weight:bold;font-size:30rpx;">{{detailInfo.tkPrice}}</view>
|
|
|
+ <view class="price" v-if="detailInfo.refund==2">
|
|
|
+ <button @click="pageTo({url: '/pagesOrder/refundMsg',query: {orderSn: detailInfo.orderSn}})" class="admin-button-com">退款明细</button>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view v-if="detailInfo.refund == 2" class="order-info_box">
|
|
|
<view>退款方式:</view>
|
|
|
@@ -104,7 +106,6 @@
|
|
|
<view class="flex-space title">
|
|
|
商品信息
|
|
|
<view class="flex" style="color: #3385ff;font-weight: 400" v-if="detailInfo.status == 4">
|
|
|
- <navigator v-if="detailInfo.refund==2" :url="`/pagesOrder/refundMsg?orderSn=${detailInfo.orderSn}`">退款明细</navigator>
|
|
|
<navigator v-if="detailInfo.refund==1" :url="`/pagesOrder/refund?id=${option.id}`" style="margin-left: 20rpx;">发起退款</navigator>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -136,7 +137,10 @@
|
|
|
<view class="summary-bar">
|
|
|
<view class="operate-view" ></view>
|
|
|
<view class="describe-view">
|
|
|
- 共{{ detailInfo.productStat.kind}}种,共{{ detailInfo.productStat.bigNum }}扎{{detailInfo.productStat.smallNun}}支,合计 ¥<text class="price">{{ userPrice.toFixed(2) }}</text>
|
|
|
+ 共{{ detailInfo.productStat.kind}}种,共
|
|
|
+ <text v-if="detailInfo.productStat.bigNum > 0">{{ detailInfo.productStat.bigNum }}扎</text>
|
|
|
+ <text v-if="detailInfo.productStat.smallNun > 0">{{detailInfo.productStat.smallNun}}支</text>
|
|
|
+ ,合计 ¥<text class="price">{{ userPrice.toFixed(2) }}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -145,15 +149,7 @@
|
|
|
<div class="module-com input-line-wrap">
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<div class="tui-title">备注</div>
|
|
|
- <input
|
|
|
- :disabled="true"
|
|
|
- v-model="detailInfo.remark"
|
|
|
- placeholder-class="phcolor"
|
|
|
- class="tui-input"
|
|
|
- name="name"
|
|
|
- maxlength="50"
|
|
|
- type="text"
|
|
|
- />
|
|
|
+ <div>{{ detailInfo.remark }}</div>
|
|
|
</tui-list-cell>
|
|
|
</div>
|
|
|
</view>
|
|
|
@@ -635,7 +631,7 @@ export default {
|
|
|
justify-content: space-between;
|
|
|
align-items: flex-end;
|
|
|
.item-name {
|
|
|
- color: #666;
|
|
|
+ color: black;
|
|
|
font-size: 30px;
|
|
|
font-weight: 700;
|
|
|
}
|