Commit 31ad8e6e by 刘泽奇

123

parent 4cb277ef
......@@ -3,7 +3,7 @@
data: function() {
return {
listPath: { path: `/${this.$root.channelName}/jdindentlist`, query: {} },
currentStep: 1,
currentStep: 0,
companyData: [],
channelFrom: null,
user_Name: "",
......@@ -36,8 +36,8 @@
methods: {
getFlow(){
let obj = this.$root.copyParams({
"channelUserId": this.$root.channelUserId || "15010929366",
"orderNo": this.$route.query.channelOrderNo || "203915601880842"
"channelUserId": this.$root.channelUserId,
"orderNo": this.$route.query.orderNo || "203915601880842"
}, "getOrderDeliveryInfo", "/action/tmOrder/springBoard", 'yes', 'yes');
/*
obj.actionBody.channelUserId = '15010929366';
......@@ -46,6 +46,32 @@
this.$root.postReq("/web/trademark/tmqueryCtl/doPost", obj).then(d => {
console.log(d, ';;;;;;;;;;;;;;;;;;;;;;;');
this.$root.loading = false;
switch (d.data.orderDeliveryStatusName) {
case '已下单':
this.currentStep = 0;
break;
case '已提交材料':
this.currentStep = 1;
break;
case '初审通过':
this.currentStep = 2;
break;
case '工商审核通过':
this.currentStep = 3;
break;
case '刻章完成':
this.currentStep = 4;
break;
case '证件已邮寄':
this.currentStep = 5;
break;
case '已签收':
this.currentStep = 6;
break;
default:
break;
}
})
},
getDetail(){
......
......@@ -482,12 +482,12 @@
</div>
<div class="jdindentlist-list">
<el-table header-row-class-name="companydetail-name-header" :data="tableData" style="width: 100%">
<el-table-column prop="channelOrderNo" label="订单编号">
<el-table header-row-class-name="companydetail-name-header" :data="icbcData" style="width: 100%">
<el-table-column prop="channelServiceNo" label="订单编号">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.channelOrderNo"
:disabled="scope.row.channelOrderNo ? false : true">
<p solt="content">{{scope.row.channelOrderNo ? scope.row.channelOrderNo : \'---\'}}
<el-tooltip placement="top" :content="scope.row.channelServiceNo"
:disabled="scope.row.channelServiceNo ? false : true">
<p solt="content">{{scope.row.channelServiceNo ? scope.row.channelServiceNo : \'---\'}}
</p>
</el-tooltip>
</template>
......
......@@ -465,6 +465,7 @@
icbcChannelItemName: '',
icbcChannelServiceNo: '',
icbcOrderStatus: '',
icbcData:[],
}
},
......@@ -606,7 +607,7 @@
this.$router.push({
path: `/${this.$root.channelName}/companydetail`,
query: {
channelOrderNo: row.channelOrderNo,
orderNo: row.orderNo,
channelUserId: this.$route.query.channelUserId,
deliveryStatus: this.deliveryStatus,
totalSum: row.totalSum,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment