91 lines
2.1 KiB
Vue
91 lines
2.1 KiB
Vue
<script>
|
|
import request from '@/utils/request.js';
|
|
import bleTool from '@/utils/BleHelper.js';
|
|
import upgrade from '@/utils/update.js'
|
|
export default {
|
|
|
|
onLaunch: function() {
|
|
var ble = bleTool.getBleTool();
|
|
//以下代码仅在开发时使用,否则会出现不可预知的问题。
|
|
// uni.clearStorageSync();
|
|
// let store=uni.getStorageInfoSync();
|
|
// store.keys.forEach((val,index,array)=>{
|
|
// if(val=="tokenTime"){
|
|
// let time=uni.getStorageSync(val);
|
|
// if(!time){
|
|
// time=0;
|
|
// }
|
|
// let currTime=new Date().getTime();
|
|
// if(currTime>=time){
|
|
// uni.removeStorageSync(val);
|
|
// uni.removeStorageSync("token");
|
|
// uni.removeStorageSync("clientID");
|
|
// }
|
|
// }
|
|
// else if(val=="token" || val=="clientID"){
|
|
// console.log("忽略登陆信息");
|
|
// }else{
|
|
// uni.removeStorageSync(val);
|
|
// }
|
|
// });
|
|
|
|
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show');
|
|
upgrade.checkAndUpdateWgt("http://114.55.111.217/app/CheckUpdate");
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import 'vk-uview-ui/index.scss';
|
|
uni-slider .uni-slider-handle-wrapper {
|
|
border-radius: 20rpx;
|
|
}
|
|
uni-slider .uni-slider-thumb {
|
|
width: 66rpx !important;
|
|
height: 80rpx !important;
|
|
margin-top: -40rpx !important;
|
|
border-radius: 16rpx !important;
|
|
margin-left: -72rpx !important;
|
|
|
|
}
|
|
uni-slider .uni-slider-handle-wrapper {
|
|
height: 88rpx;
|
|
position: relative;
|
|
}
|
|
.custom-file-picker .file-picker__box-content {
|
|
background: rgba(26, 26, 26, 1);
|
|
border: none !important;
|
|
border-radius: 45rpx;
|
|
width: 180rpx;
|
|
height: 180rpx;
|
|
}
|
|
.uni-file-picker.custom-file-picker {
|
|
overflow: inherit !important;
|
|
}
|
|
.custom-file-picker .icon-add {
|
|
height: 5rpx !important;
|
|
width: 70rpx !important;
|
|
}
|
|
.uni-picker-view-mask{
|
|
background: rgba(42, 42, 42, 1);
|
|
z-index: -1;
|
|
}
|
|
.uni-picker-view-content{
|
|
position: inherit;
|
|
}
|
|
.uni-picker-view-wrapper{
|
|
background: rgba(42, 42, 42, 1);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "PingFang SC";
|
|
src: url("~@/static/fonts/PingFangSC.ttf") format("opentype");
|
|
}
|
|
</style>
|