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

@@ -145,10 +145,16 @@ export default {
});
},
supportLink() {
return (
"https://contact.ayanova.com/contact?dbid=" +
console.log(window.$gz.store.state.globalSettings);
let dbId = encodeURIComponent(
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() {
let vm = this;