feat: 管理端添加多标签Tab页内嵌模式设置

This commit is contained in:
Yer
2023-07-14 09:19:52 +08:00
parent 36ef331b94
commit 873764b59e
18 changed files with 238 additions and 89 deletions

View File

@@ -354,10 +354,10 @@ export default {
// 跳转售后详情
detail(v) {
let sn = v.sn;
this.$router.push({
this.$options.filters.customRouterPush({
name: "after-order-detail",
query: { sn: sn },
});
})
},
// 售后筛选
serviceStatusClick(item) {

View File

@@ -244,10 +244,10 @@
//投诉详情
detail(v) {
let id = v.id;
this.$router.push({
this.$options.filters.customRouterPush({
name: "order-complaint-detail",
query: { id: id },
});
})
},
},
mounted() {

View File

@@ -267,13 +267,11 @@ export default {
},
// 订单详情
detail (v) {
console.log(v.orderType);
let sn = v.sn;
this.$router.push({
this.$options.filters.customRouterPush({
name: "order-detail",
query: { sn: sn, orderType: v.orderType },
});
})
},
// 订单筛选
orderStatusClick(item) {

View File

@@ -383,10 +383,11 @@ export default {
// 跳转详情页面
detail(v) {
let sn = v.sn;
this.$router.push({
this.$options.filters.customRouterPush({
name: "order-detail",
query: { sn: sn },
});
})
},
// 导出订单
async exportOrder() {