Merge branch 'fix/im-vue3-migration'

This commit is contained in:
田香琪
2026-07-22 18:10:04 +08:00
55 changed files with 672 additions and 378 deletions

View File

@@ -284,7 +284,7 @@ export default {
// 跳转店铺首页
goShopPage(id) {
let routeUrl = this.$router.resolve({
path: "/Merchant",
path: "/merchant",
query: { id },
});
window.open(routeUrl.href, "_blank");

View File

@@ -177,7 +177,7 @@ export default {
let url
if (this.params.type === 'STORE') {
url = this.$router.resolve({
path: '/Merchant',
path: '/merchant',
query: { 'id': storeId }
})
} else {

View File

@@ -198,7 +198,7 @@ export default {
// 跳转店铺首页
shopPage(id) {
let routeUrl = this.$router.resolve({
path: '/Merchant',
path: '/merchant',
query: {id: id}
});
window.open(routeUrl.href, '_blank');

View File

@@ -265,7 +265,7 @@ export default {
// 跳转店铺首页
shopPage (id) {
let routeUrl = this.$router.resolve({
path: '/Merchant',
path: '/merchant',
query: { id: id }
});
window.open(routeUrl.href, '_blank');

View File

@@ -424,7 +424,7 @@ export default {
// 跳转店铺首页
shopPage(id) {
let routeUrl = this.$router.resolve({
path: "/Merchant",
path: "/merchant",
query: { id: id },
});
window.open(routeUrl.href, "_blank");

View File

@@ -71,7 +71,7 @@ export default {
// 跳转店铺首页
shopPage(id) {
let routeUrl = this.$router.resolve({
path: "/Merchant",
path: "/merchant",
query: { id: id },
});
window.open(routeUrl.href, "_blank");

View File

@@ -794,7 +794,7 @@ export default {
// 跳转店铺首页
goShopPage(id) {
let routeUrl = this.$router.resolve({
path: "/Merchant",
path: "/merchant",
query: { id: id },
});
window.open(routeUrl.href, "_blank");