|
@@ -73,6 +73,10 @@
|
|
|
<el-descriptions-item label=" 公众号/渠道" ><span v-if="item!=null">{{item.channel}}</span></el-descriptions-item>
|
|
<el-descriptions-item label=" 公众号/渠道" ><span v-if="item!=null">{{item.channel}}</span></el-descriptions-item>
|
|
|
<el-descriptions-item label=" 渠道" ><span v-if="item!=null"><dict-tag :options="channelOptions" :value="item.orderChannel"/></span></el-descriptions-item>
|
|
<el-descriptions-item label=" 渠道" ><span v-if="item!=null"><dict-tag :options="channelOptions" :value="item.orderChannel"/></span></el-descriptions-item>
|
|
|
<el-descriptions-item label=" 企微主体" ><span v-if="item!=null"><dict-tag :options="qwSubjectOptions" :value="item.qwSubject"/></span></el-descriptions-item>
|
|
<el-descriptions-item label=" 企微主体" ><span v-if="item!=null"><dict-tag :options="qwSubjectOptions" :value="item.qwSubject"/></span></el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="物流公司编码" ><span v-if="item!=null">{{item.deliveryCode}}</span></el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="物流公司名称" ><span v-if="item!=null">{{item.deliveryName}}</span></el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="物流单号" ><span v-if="item!=null">{{item.deliverySn}}</span></el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="发货时间" ><span v-if="item!=null">{{item.deliverySendTime}}</span></el-descriptions-item>
|
|
|
</el-descriptions>
|
|
</el-descriptions>
|
|
|
</el-card>
|
|
</el-card>
|
|
|
</div>
|
|
</div>
|
|
@@ -710,17 +714,15 @@ export default {
|
|
|
|
|
|
|
|
//修改订单状态
|
|
//修改订单状态
|
|
|
submitEditForm(){
|
|
submitEditForm(){
|
|
|
|
|
+ var that = this;
|
|
|
this.$refs["editForm"].validate(valid => {
|
|
this.$refs["editForm"].validate(valid => {
|
|
|
if (valid) {
|
|
if (valid) {
|
|
|
updateLiveOrder(this.editForm).then(response => {
|
|
updateLiveOrder(this.editForm).then(response => {
|
|
|
if (response.code === 200) {
|
|
if (response.code === 200) {
|
|
|
this.msgSuccess("操作成功");
|
|
this.msgSuccess("操作成功");
|
|
|
this.edit.open = false;
|
|
this.edit.open = false;
|
|
|
- getLiveOrder(this.item.orderId).then(response => {
|
|
|
|
|
- this.item=response.data
|
|
|
|
|
- that.getlogList(this.item.orderId);
|
|
|
|
|
- that.$parent.$parent.getList();
|
|
|
|
|
- });
|
|
|
|
|
|
|
+ // 刷新当前页面数据
|
|
|
|
|
+ this.getDetails(this.item.orderId, this.nickName, this.storeName);
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
@@ -982,10 +984,8 @@ export default {
|
|
|
if (response.code === 200) {
|
|
if (response.code === 200) {
|
|
|
this.msgSuccess("操作成功");
|
|
this.msgSuccess("操作成功");
|
|
|
this.editDy.open = false;
|
|
this.editDy.open = false;
|
|
|
- getLiveOrder(this.item.orderId).then(response => {
|
|
|
|
|
- this.item = response.data;
|
|
|
|
|
- this.$parent.$parent.getList();
|
|
|
|
|
- });
|
|
|
|
|
|
|
+ // 刷新当前页面数据
|
|
|
|
|
+ this.getDetails(this.item.orderId, this.nickName, this.storeName);
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|