This commit is contained in:
2019-12-20 21:41:17 +00:00
parent 020fc9a02b
commit 37d3b73566
5 changed files with 13 additions and 14 deletions

View File

@@ -65,8 +65,7 @@ export default {
title: window.$gz.locale.get("HelpAboutAyaNova"), title: window.$gz.locale.get("HelpAboutAyaNova"),
icon: "info-circle", icon: "info-circle",
key: "app:nav:abt", key: "app:nav:abt",
data: "ay-about"
data: "about"
}); });
//CUSTOMIZE //CUSTOMIZE
@@ -155,7 +154,7 @@ export default {
break; break;
case "customize": case "customize":
vm.$router.push({ vm.$router.push({
name: "customize", name: "ay-customize",
params: { formCustomTemplateKey: item.data } params: { formCustomTemplateKey: item.data }
}); });
break; break;

View File

@@ -350,24 +350,24 @@ export default new Router({
}, },
//**********************************GENERAL */ //**********************************GENERAL */
{ {
path: "/about", path: "/ay-about",
name: "about", name: "ay-about",
// route level code-splitting // route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route // this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited. // which is lazy-loaded when the route is visited.
component: () => component: () =>
import(/* webpackChunkName: "home" */ "./views/about.vue") import(/* webpackChunkName: "ay" */ "./views/ay-about.vue")
}, },
{ {
path: "/log", path: "/ay-log",
name: "log", name: "ay-log",
component: () => import(/* webpackChunkName: "home" */ "./views/log.vue") component: () => import(/* webpackChunkName: "ay" */ "./views/ay-log.vue")
}, },
{ {
path: "/customize/:formCustomTemplateKey", path: "/ay-customize/:formCustomTemplateKey",
name: "customize", name: "ay-customize",
component: () => component: () =>
import(/* webpackChunkName: "customize" */ "./views/customize.vue") import(/* webpackChunkName: "ay" */ "./views/ay-customize.vue")
}, },
{ {

View File

@@ -205,7 +205,7 @@ export default {
isMain: false, isMain: false,
icon: "fa-info-circle", icon: "fa-info-circle",
title: window.$gz.locale.get("HelpAboutAyaNova"), title: window.$gz.locale.get("HelpAboutAyaNova"),
helpUrl: "user-form-about", helpUrl: "form-ay-about",
menuItems: [ menuItems: [
{ {
title: window.$gz.locale.get("Copy"), title: window.$gz.locale.get("Copy"),

View File

@@ -318,7 +318,7 @@ function generateMenu(vm) {
isMain: false, isMain: false,
icon: "fa-sliders-h", icon: "fa-sliders-h",
title: window.$gz.locale.get("Customize"), title: window.$gz.locale.get("Customize"),
helpUrl: "user-form-customize", helpUrl: "form-ay-customize",
formData: { formData: {
formKey: FORM_KEY, formKey: FORM_KEY,
ayaType: window.$gz.type.FormCustom, ayaType: window.$gz.type.FormCustom,