2022-04-23 23:13:29 +08:00
|
|
|
<script>
|
|
|
|
|
import Vue from 'vue';
|
2022-03-15 17:38:58 +08:00
|
|
|
export default {
|
2022-04-23 23:13:29 +08:00
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLaunch: function() {
|
|
|
|
|
uni.getSystemInfo({
|
|
|
|
|
success: function(e) {
|
|
|
|
|
// #ifndef MP
|
|
|
|
|
Vue.prototype.StatusBar = e.statusBarHeight;
|
|
|
|
|
if (e.platform == 'android') {
|
|
|
|
|
Vue.prototype.CustomBar = e.statusBarHeight + 50;
|
|
|
|
|
} else {
|
|
|
|
|
Vue.prototype.CustomBar = e.statusBarHeight + 45;
|
|
|
|
|
};
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef MP-WEIXIN
|
|
|
|
|
Vue.prototype.StatusBar = e.statusBarHeight;
|
|
|
|
|
let custom = wx.getMenuButtonBoundingClientRect();
|
|
|
|
|
Vue.prototype.Custom = custom;
|
|
|
|
|
Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef MP-ALIPAY
|
|
|
|
|
Vue.prototype.StatusBar = e.statusBarHeight;
|
|
|
|
|
Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
|
|
|
|
|
// #endif
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Vue.prototype.ColorList = [{
|
|
|
|
|
title: '嫣红',
|
|
|
|
|
name: 'red',
|
|
|
|
|
color: '#e54d42'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '桔橙',
|
|
|
|
|
name: 'orange',
|
|
|
|
|
color: '#f37b1d'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '明黄',
|
|
|
|
|
name: 'yellow',
|
|
|
|
|
color: '#fbbd08'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '橄榄',
|
|
|
|
|
name: 'olive',
|
|
|
|
|
color: '#8dc63f'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '森绿',
|
|
|
|
|
name: 'green',
|
|
|
|
|
color: '#39b54a'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '天青',
|
|
|
|
|
name: 'cyan',
|
|
|
|
|
color: '#1cbbb4'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '海蓝',
|
|
|
|
|
name: 'blue',
|
|
|
|
|
color: '#0081ff'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '姹紫',
|
|
|
|
|
name: 'purple',
|
|
|
|
|
color: '#6739b6'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '木槿',
|
|
|
|
|
name: 'mauve',
|
|
|
|
|
color: '#9c26b0'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '桃粉',
|
|
|
|
|
name: 'pink',
|
|
|
|
|
color: '#e03997'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '棕褐',
|
|
|
|
|
name: 'brown',
|
|
|
|
|
color: '#a5673f'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '玄灰',
|
|
|
|
|
name: 'grey',
|
|
|
|
|
color: '#8799a3'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '草灰',
|
|
|
|
|
name: 'gray',
|
|
|
|
|
color: '#aaaaaa'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '墨黑',
|
|
|
|
|
name: 'black',
|
|
|
|
|
color: '#333333'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '雅白',
|
|
|
|
|
name: 'white',
|
|
|
|
|
color: '#ffffff'
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
onShow: function(data) {
|
|
|
|
|
console.log('App Show')
|
|
|
|
|
},
|
|
|
|
|
onHide: function() {
|
|
|
|
|
console.log('App Hide')
|
2022-03-15 17:38:58 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
2022-04-23 23:13:29 +08:00
|
|
|
<style lang="scss">
|
|
|
|
|
/* 主题 */
|
|
|
|
|
@import '@/style/blue/blue-topic.css';
|
|
|
|
|
/* 自定义公共css */
|
|
|
|
|
@import '@/style/default.css';
|
|
|
|
|
/* colorui */
|
|
|
|
|
@import '@/colorui/main.css';
|
2022-03-15 17:38:58 +08:00
|
|
|
@import '@/colorui/icon.css';
|
2022-04-23 23:13:29 +08:00
|
|
|
/*每个页面公共css */
|
|
|
|
|
@import '@/uni_modules/uni-scss/index.scss';
|
|
|
|
|
/* #ifndef APP-NVUE */
|
|
|
|
|
@import '@/static/customicons.css';
|
|
|
|
|
|
|
|
|
|
// 设置整个项目的背景色
|
|
|
|
|
page {
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-18 17:13:24 +08:00
|
|
|
/* #endif */
|
2022-03-15 17:38:58 +08:00
|
|
|
</style>
|