mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-21 02:15:54 +08:00
feat: ✨ 管理端添加多标签Tab页内嵌模式设置
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -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() {
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user