|
@@ -12,7 +12,7 @@
|
|
|
<view style="display: flex;margin-top: 15rpx;" v-if="item.status == 1">
|
|
|
<view class="btn_printil markd10" v-if="item.status == 1 || item.status == 2 || item.status == 3"
|
|
|
@click.stop="modifyOrder(item)">
|
|
|
- <u-button size="small" type="warning" text="修改订单"></u-button>
|
|
|
+ <u-button size="small" type="warning" text="修改运单"></u-button>
|
|
|
</view>
|
|
|
<view class="btn_printil markd10" @click.stop="antiDismantle(item)">
|
|
|
<u-button size="small" type="primary" text="防拆标签"></u-button>
|
|
@@ -33,7 +33,7 @@
|
|
|
<u-popup :show="signForShow" mode="center" round="6" closeable :closeOnClickOverlay="false" @close="close">
|
|
|
<view class="center_in title_sign">{{signRejection}}</view>
|
|
|
<view class="card_sign_for">
|
|
|
- <view class="img_sign_rejection">订单号: {{orderNumber}}</view>
|
|
|
+ <view class="img_sign_rejection">运单号: {{orderNumber}}</view>
|
|
|
<view class="card_image_sign">
|
|
|
<view class="img_sign_rejection">{{signRejection}}图片</view>
|
|
|
<u-upload :fileList="fileList1" name="1" multiple :maxCount="10" @afterRead="afterRead"
|
|
@@ -65,7 +65,7 @@
|
|
|
export default {
|
|
|
name: 'xOrderManagement',
|
|
|
props: {
|
|
|
- // 订单列表
|
|
|
+ // 运单列表
|
|
|
orderList: {
|
|
|
type: Array,
|
|
|
default: () => [],
|
|
@@ -194,7 +194,7 @@
|
|
|
...this.goodsModel,
|
|
|
}
|
|
|
uni.showLoading();
|
|
|
- // 修改订单
|
|
|
+ // 修改运单
|
|
|
this.$api.put('/api/waybill', params).then(res => {
|
|
|
if (res.code == 200) {
|
|
|
this.antiShow = false
|
|
@@ -216,21 +216,21 @@
|
|
|
url: '/pages/order/quantum?waybillNo=' + value.waybillNo + '&printType=record'
|
|
|
});
|
|
|
},
|
|
|
- // 修改订单
|
|
|
+ // 修改运单
|
|
|
modifyOrder(value) {
|
|
|
this.$cache.setCache('orderDetails', value)
|
|
|
uni.redirectTo({
|
|
|
- url: '/pages/order/addWaybill?title=修改订单&type=2'
|
|
|
+ url: '/pages/order/addWaybill?title=修改运单&type=2'
|
|
|
});
|
|
|
},
|
|
|
- // 订单详情
|
|
|
+ // 运单详情
|
|
|
goOrderDetails(value) {
|
|
|
this.$cache.setCache('orderDetails', value)
|
|
|
uni.navigateTo({
|
|
|
url: '/pages/order/orderDetails?type=details'
|
|
|
});
|
|
|
},
|
|
|
- // 订单状态
|
|
|
+ // 运单状态
|
|
|
orderStatus(value) {
|
|
|
if (value == 1) {
|
|
|
return '已下单'
|
|
@@ -242,7 +242,7 @@
|
|
|
return '已拒收'
|
|
|
}
|
|
|
},
|
|
|
- // 订单文字颜色
|
|
|
+ // 运单文字颜色
|
|
|
getState(value) {
|
|
|
if (value == 1) {
|
|
|
return '#9ddd54'
|