This commit is contained in:
2020-07-03 22:50:33 +00:00
parent 4a48866d77
commit 0eaa688961
2 changed files with 10 additions and 2 deletions

View File

@@ -7,6 +7,8 @@ PRIORITY - ALWAYS Lowest level stuff first, i.e. TODO at server, api route chang
todo: if dbid in url query parameter of contact form on server it should include that in the message todo: if dbid in url query parameter of contact form on server it should include that in the message
also something needs to be fixed there, it's been in notes forever also something needs to be fixed there, it's been in notes forever
todo: move contact url from evaluate form to gzapi and then consider places to put more contact tech support buttons, perhaps in About form?
todo: error http://localhost:8080/adm-global-select-templates pick Customer get error at server: todo: error http://localhost:8080/adm-global-select-templates pick Customer get error at server:
Check other ones as well Check other ones as well

View File

@@ -145,10 +145,16 @@ export default {
}); });
}, },
supportLink() { supportLink() {
return ( console.log(window.$gz.store.state.globalSettings);
"https://contact.ayanova.com/contact?dbid=" + let dbId = encodeURIComponent(
window.$gz.store.state.globalSettings.serverDbId window.$gz.store.state.globalSettings.serverDbId
); );
let company = encodeURIComponent(
window.$gz.store.state.globalSettings.company
);
return `http://localhost:3002/contact?dbid=${dbId}&company=${company}`;
// "https://contact.ayanova.com/contact?dbid=" +
// window.$gz.store.state.globalSettings.serverDbId
}, },
async generate() { async generate() {
let vm = this; let vm = this;