快游戏一期
iframe
var page;
var type;
var query = window.location;
var searchs = (window.location.search || '').split('&')
searchs.forEach(function(it, idx) {
if (it.indexOf('page') > -1) {
page = it.split('=')[1] || 'fastGame'
console.log('page: ', page);
}
if (it.indexOf('type') > -1) {
type = it.split('=')[1] || 'audit'
console.log('type: ', type);
}
})
var pageIframe = document.createElement('iframe')
pageIframe.style.cssText = 'border: 0px;width:760px;height: 100%;margin-top:20px; min-height:1000px;overflow-y:hidden';
pageIframe.src = '//game.developer.flyme.cn/resources/developer/dist/index.html/#/' + page + '?' + 'type' + '=' + type;
document.querySelector('.section').appendChild(pageIframe);前端老三样
mock
Vuex
Router
上传进度条
最后更新于