2022-03-28 10:40:02 +00:00
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
globalData:{
|
|
|
|
projectname:'', // 项目名称
|
|
|
|
lat:'', // 公司地址维度
|
|
|
|
lng:'' ,// 公司地址经度
|
|
|
|
hostapi:'' // 域名配置
|
|
|
|
},
|
|
|
|
// 优先于show方法
|
|
|
|
onLaunch: function() {
|
|
|
|
// 配置全局域名
|
|
|
|
// #ifdef APP-PLUS
|
2022-04-14 10:30:07 +00:00
|
|
|
this.globalData.hostapi = 'http://maintain.7and5.cn';
|
2022-03-28 10:40:02 +00:00
|
|
|
// #endif
|
|
|
|
// #ifdef MP-WEIXIN
|
2022-04-14 10:30:07 +00:00
|
|
|
this.globalData.hostapi = 'http://maintain.7and5.cn';
|
2022-03-28 10:40:02 +00:00
|
|
|
// #endif
|
|
|
|
// #ifdef H5
|
2022-04-14 10:30:07 +00:00
|
|
|
this.globalData.hostapi = '/web';
|
2022-03-28 10:40:02 +00:00
|
|
|
// #endif
|
|
|
|
},
|
|
|
|
onShow: function() {
|
2022-04-07 10:14:28 +00:00
|
|
|
if(uni.getStorageSync('token')){
|
2022-04-19 06:13:14 +00:00
|
|
|
|
2022-03-28 10:40:02 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
onHide: function() {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
/*每个页面公共css */
|
|
|
|
|
|
|
|
/* 阿里巴巴矢量图标库 start */
|
|
|
|
@import url("./commons/icon-font.css");
|
|
|
|
/* 阿里巴巴矢量图标库 end */
|
|
|
|
/* 项目基础样式 start */
|
|
|
|
@import url("./commons/base.css");
|
|
|
|
/* 项目基础样式 end */
|
|
|
|
/* 项目页面样式 start */
|
2022-04-10 13:59:38 +00:00
|
|
|
@import url("./commons/style.css");
|
2022-03-28 10:40:02 +00:00
|
|
|
/* 项目页面样式 end */
|
|
|
|
|
|
|
|
/* 动画样式 start */
|
|
|
|
@import url("./commons/animate.min.css");
|
|
|
|
/* 动画样式 end */
|
|
|
|
|
|
|
|
page {background-color: #f7f7f7;}
|
|
|
|
</style>
|