Skip to content

Commit

Permalink
update inner check (#16700)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkun authored and island205 committed Jul 24, 2019
1 parent e8483ac commit 11417a3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
22 changes: 12 additions & 10 deletions examples/components/header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@
import compoLang from '../i18n/component.json';
import Element from 'main/index.js';
import themeLoader from './theme/loader';
import { getTestEle, getTestAli } from './theme/loader/api.js';
import { getTestEle } from './theme/loader/api.js';
import bus from '../bus';
import { ACTION_USER_CONFIG_UPDATE } from './theme/constant.js';
Expand Down Expand Up @@ -434,15 +434,17 @@
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);
});
const testInnerImg = new Image();
testInnerImg.onload = () => {
this.$isEle = true;
ga('send', 'event', 'DocView', 'Ali', 'Inner');
};
testInnerImg.onerror = (err) => {
ga('send', 'event', 'DocView', 'Ali', 'Outer');
console.error(err);
};
testInnerImg.src = `https://private-alipayobjects.alipay.com/alipay-rmsdeploy-image/rmsportal/VmvVUItLdPNqKlNGuRHi.png?t=${Date.now()}`;
},
methods: {
switchVersion(version) {
Expand Down
4 changes: 0 additions & 4 deletions examples/components/theme/loader/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ export const getTestEle = () => {
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) => {
return post(`${host}updateVariable?version=${version}`, data, cb);
};

0 comments on commit 11417a3

Please sign in to comment.