代码拉取完成,页面将自动刷新
<script>
import {
mapMutations,
mapState
} from 'vuex';
import {
launch
} from '@/api/app.js';
export default {
onLaunch: function() {
console.log('App Launch')
let _self = this
// #ifdef APP-PLUS
var RTModule = uni.requireNativePlugin("RTModule")
try {
RTModule.getSmartCard(function(e) {
let uuid = null
if (!e.smartcard || e.smartcard == "null") {
// 没获取到卡号
let info = uni.getSystemInfoSync();
uuid = info.deviceId
} else {
uuid = e.smartcard
uni.showModal({
title: "卡号",
content: e.smartcard
})
}
_self.setSmartCard(uuid)
if (uni.getStorageSync("uuid") != uuid) {
uni.setStorageSync("uuid", uuid)
launch({
first: true
})
} else {
launch()
}
})
} catch(e) {
console.log("错误", e)
}
// #endif
setInterval(function() {
_self.ping()
}, 1000 * 10)
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
this.close()
},
methods: {
...mapMutations(['setSmartCard']),
}
}
</script>
<style>
body {
background-color: #070707;
background-image: linear-gradient(0deg, #222222 0%, #010101 51%, #070707 75%);
color: white;
}
/* .page{
width: 750rpx
background-color: #070707;
position: absolute;
} */
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。