|
@@ -117,6 +117,7 @@
|
|
|
<el-col :xs="24" :sm="24" :lg="4" style="text-align: right;">
|
|
|
<el-link type="primary" :underline="false" @click="showRemark(order.orderRefundId, order.remark)">订单备注</el-link>
|
|
|
<el-link type="primary" :underline="false" @click="showDetail(index)">查看详情</el-link>
|
|
|
+ <el-link type="primary" :underline="false" @click="queryWorkOrder(order.orderId)">订单工单</el-link>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
@@ -310,6 +311,14 @@ export default {
|
|
|
this.getWebsiteList();
|
|
|
},
|
|
|
methods: {
|
|
|
+ queryWorkOrder(id) {
|
|
|
+ this.$router.push({
|
|
|
+ name: "workOrderPool",
|
|
|
+ query: {
|
|
|
+ saleOrderId: id,
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
changeTabs(tab, event) {
|
|
|
// this.$refs.screenForm.resetFields();
|
|
|
this.screenForm.orderStatus = this.tabCurrent === 'ALL' ? '' : tab.$options.propsData.name
|