diff --git a/ayanova/src/api/gzmenu.js b/ayanova/src/api/gzmenu.js index 201c6f9b..bc19a850 100644 --- a/ayanova/src/api/gzmenu.js +++ b/ayanova/src/api/gzmenu.js @@ -65,8 +65,7 @@ export default { title: window.$gz.locale.get("HelpAboutAyaNova"), icon: "info-circle", key: "app:nav:abt", - - data: "about" + data: "ay-about" }); //CUSTOMIZE @@ -155,7 +154,7 @@ export default { break; case "customize": vm.$router.push({ - name: "customize", + name: "ay-customize", params: { formCustomTemplateKey: item.data } }); break; diff --git a/ayanova/src/router.js b/ayanova/src/router.js index 7f515c0d..bd44a866 100644 --- a/ayanova/src/router.js +++ b/ayanova/src/router.js @@ -350,24 +350,24 @@ export default new Router({ }, //**********************************GENERAL */ { - path: "/about", - name: "about", + path: "/ay-about", + name: "ay-about", // route level code-splitting // this generates a separate chunk (about.[hash].js) for this route // which is lazy-loaded when the route is visited. component: () => - import(/* webpackChunkName: "home" */ "./views/about.vue") + import(/* webpackChunkName: "ay" */ "./views/ay-about.vue") }, { - path: "/log", - name: "log", - component: () => import(/* webpackChunkName: "home" */ "./views/log.vue") + path: "/ay-log", + name: "ay-log", + component: () => import(/* webpackChunkName: "ay" */ "./views/ay-log.vue") }, { - path: "/customize/:formCustomTemplateKey", - name: "customize", + path: "/ay-customize/:formCustomTemplateKey", + name: "ay-customize", component: () => - import(/* webpackChunkName: "customize" */ "./views/customize.vue") + import(/* webpackChunkName: "ay" */ "./views/ay-customize.vue") }, { diff --git a/ayanova/src/views/About.vue b/ayanova/src/views/ay-about.vue similarity index 99% rename from ayanova/src/views/About.vue rename to ayanova/src/views/ay-about.vue index 3e7a2dce..35f75b2f 100644 --- a/ayanova/src/views/About.vue +++ b/ayanova/src/views/ay-about.vue @@ -205,7 +205,7 @@ export default { isMain: false, icon: "fa-info-circle", title: window.$gz.locale.get("HelpAboutAyaNova"), - helpUrl: "user-form-about", + helpUrl: "form-ay-about", menuItems: [ { title: window.$gz.locale.get("Copy"), diff --git a/ayanova/src/views/customize.vue b/ayanova/src/views/ay-customize.vue similarity index 99% rename from ayanova/src/views/customize.vue rename to ayanova/src/views/ay-customize.vue index 0a6a83c0..d5a66b67 100644 --- a/ayanova/src/views/customize.vue +++ b/ayanova/src/views/ay-customize.vue @@ -318,7 +318,7 @@ function generateMenu(vm) { isMain: false, icon: "fa-sliders-h", title: window.$gz.locale.get("Customize"), - helpUrl: "user-form-customize", + helpUrl: "form-ay-customize", formData: { formKey: FORM_KEY, ayaType: window.$gz.type.FormCustom, diff --git a/ayanova/src/views/log.vue b/ayanova/src/views/ay-log.vue similarity index 100% rename from ayanova/src/views/log.vue rename to ayanova/src/views/ay-log.vue