Chore: Mark ali inner user's access (#16609)

* Chore: update theme inner api

* Chore: update theme inner api

* Chore: text

* Chore: fix

* Chore: fix
pull/16643/head
iamkun 2019-07-18 14:46:20 +08:00 committed by Zhi Cun
parent 11bf7172a0
commit e13de1688b
2 changed files with 16 additions and 2 deletions

View File

@ -380,7 +380,7 @@
import compoLang from '../i18n/component.json'; import compoLang from '../i18n/component.json';
import Element from 'main/index.js'; import Element from 'main/index.js';
import themeLoader from './theme/loader'; import themeLoader from './theme/loader';
import { getTestEle } from './theme/loader/api.js'; import { getTestEle, getTestAli } from './theme/loader/api.js';
import bus from '../bus'; import bus from '../bus';
import { ACTION_USER_CONFIG_UPDATE } from './theme/constant.js'; import { ACTION_USER_CONFIG_UPDATE } from './theme/constant.js';
@ -428,9 +428,19 @@
getTestEle() getTestEle()
.then(() => { .then(() => {
this.$isEle = true; this.$isEle = true;
ga('send', 'event', 'DocView', 'Inner'); ga('send', 'event', 'DocView', 'Ele', 'Inner');
}) })
.catch((err) => { .catch((err) => {
ga('send', 'event', 'DocView', 'Ele', 'Outer');
console.error(err);
});
getTestAli()
.then(() => {
this.$isEle = true;
ga('send', 'event', 'DocView', 'Ali', 'Inner');
})
.catch((err) => {
ga('send', 'event', 'DocView', 'Ali', 'Outer');
console.error(err); console.error(err);
}); });
}, },

View File

@ -19,6 +19,10 @@ export const getTestEle = () => {
return get(`${hostList.alpha}getVariable`); return get(`${hostList.alpha}getVariable`);
}; };
export const getTestAli = () => {
return get(`https://private-alipayobjects.alipay.com/alipay-rmsdeploy-image/rmsportal/VmvVUItLdPNqKlNGuRHi.png?t=${Date.now()}`);
};
export const updateVars = (data, cb) => { export const updateVars = (data, cb) => {
return post(`${host}updateVariable?version=${version}`, data, cb); return post(`${host}updateVariable?version=${version}`, data, cb);
}; };