All checks were successful
continuous-integration/drone/push Build is passing
- 解压官方默认主题 default_yfMBA.tar.gz 到 clientarea/hgcloud/ - .gitignore 排除压缩包和临时解压目录 - drone 新增步骤: 同步 hgcloud 到 /clientarea/template/pc/
56 lines
1.2 KiB
JavaScript
56 lines
1.2 KiB
JavaScript
(function (window, undefined) {
|
|
var old_onload = window.onload
|
|
window.onload = function () {
|
|
const template = document.getElementsByClassName('template')[0]
|
|
Vue.prototype.lang = window.lang
|
|
new Vue({
|
|
components: {
|
|
asideMenu,
|
|
topMenu,
|
|
// pagination,
|
|
},
|
|
created () {
|
|
|
|
},
|
|
mounted () {
|
|
|
|
},
|
|
updated () {
|
|
// // 关闭loading
|
|
// document.getElementById('mainLoading').style.display = 'none';
|
|
// document.getElementsByClassName('template')[0].style.display = 'block'
|
|
},
|
|
destroyed () {
|
|
|
|
},
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
},
|
|
filters: {
|
|
formateTime (time) {
|
|
if (time && time !== 0) {
|
|
return formateDate(time * 1000)
|
|
} else {
|
|
return "--"
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
// 获取通用配置
|
|
getCommonData () {
|
|
this.commonData = JSON.parse(localStorage.getItem("common_set_before"))
|
|
document.title = this.commonData.website_name + '-暂无权限'
|
|
},
|
|
back () {
|
|
history.go(-1)
|
|
}
|
|
},
|
|
|
|
}).$mount(template)
|
|
typeof old_onload == 'function' && old_onload()
|
|
};
|
|
})(window);
|