|
|
|
@ -92,7 +92,7 @@ |
|
|
|
<span v-else-if="item.status==11">已取消</span> |
|
|
|
</div> |
|
|
|
<div class="order_item_info_content_operation"> |
|
|
|
<p @click="goDetails(item.status,item.batchcode)">订单详情</p> |
|
|
|
<p @click="goDetails(item.status,item.batchcode,item.type)">订单详情</p> |
|
|
|
<p>下载合同</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@ -143,7 +143,7 @@ export default { |
|
|
|
this.getData() |
|
|
|
}, |
|
|
|
methods:{ |
|
|
|
goDetails(status,batchcode){ |
|
|
|
goDetails(status,batchcode,orderType){ |
|
|
|
let step, |
|
|
|
type=1, |
|
|
|
url='/order/sellorderPendingPay'; |
|
|
|
@ -163,7 +163,7 @@ export default { |
|
|
|
url='/order/orderDetails' |
|
|
|
type=2 |
|
|
|
} |
|
|
|
this.$router.push({path:url,query:{step:step,batchcode:batchcode,type:type}}) |
|
|
|
this.$router.push({path:url,query:{step:step,batchcode:batchcode,type:type,orderType:orderType}}) |
|
|
|
}, |
|
|
|
changeSelect(index,type){ |
|
|
|
this.header_active=index |
|
|
|
|