fixes ui
This commit is contained in:
parent
8d565ce4fb
commit
c26880240d
|
@ -14,7 +14,16 @@ export default [
|
|||
redirect: '/b2b',
|
||||
component: () => import(/* webpackChunkName: "meModule" */ '@/components/retailer/layout/Layout.vue'),
|
||||
children: [
|
||||
|
||||
{
|
||||
path: 'b2b',
|
||||
name: 'AccountDashboard',
|
||||
component: () => import(/* webpackChunkName: "meModule" */ '@/routes/retailer/account_dashboard.vue'),
|
||||
meta: {
|
||||
breadcrumb: {
|
||||
label: 'Account Dashboard Page',
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/b2b/:id',
|
||||
name: 'BoxedOrderHistoryPage',
|
||||
|
@ -55,16 +64,7 @@ export default [
|
|||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
path: 'b2b',
|
||||
name: 'AccountDashboard',
|
||||
component: () => import(/* webpackChunkName: "meModule" */ '@/routes/retailer/account_dashboard.vue'),
|
||||
meta: {
|
||||
breadcrumb: {
|
||||
label: 'Account Dashboard Page',
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
path: 'address-book',
|
||||
name: 'AddressBook',
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
/* eslint-disable */
|
||||
|
||||
const loginUrl = import.meta.env.VITE_APP_LOGIN_URL ? import.meta.env.VITE_APP_LOGIN_URL : '/gate/sign-in';
|
||||
const homeUrl = import.meta.env.VITE_APP_ME_URL ? import.meta.env.VITE_APP_ME_URL + '/b2b' : '/';
|
||||
const homeUrl = import.meta.env.VITE_APP_ME_URL ? import.meta.env.VITE_APP_ME_URL : '/';
|
||||
const vueMaintenanceMode = import.meta.env.VITE_APP_MAINTENANCE_MODE;
|
||||
|
||||
const loginInterrupt = function(current_url, message) {
|
||||
|
|
Loading…
Reference in New Issue