You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
675 B
32 lines
675 B
|
|
import addApi from '../../common/sdk/qqmap-wx-jssdk.min.js'; // 引入
|
|
|
|
const user = {
|
|
state: {
|
|
identity: uni.getStorageSync('identity')?uni.getStorageSync('identity'):1
|
|
},
|
|
mutations: {
|
|
// 更新用户身份
|
|
upDateIdentity(state, val) {
|
|
state.identity = val
|
|
uni.setStorageSync('identity', val);
|
|
},
|
|
},
|
|
actions: {
|
|
// 点击广告
|
|
async addClick({commit, dispatch}, curAdd) {
|
|
// await dispatch('updateStatistics')
|
|
curAdd.clicks ++
|
|
if(!curAdd.adBannerDO.jumpUrl) {
|
|
return false
|
|
}
|
|
|
|
commit('updateWebVeiwUrl', curAdd.adBannerDO.jumpUrl)
|
|
uni.navigateTo({
|
|
url:'/pages/commeWebView/addWebView'
|
|
})
|
|
},
|
|
}
|
|
}
|
|
|
|
export default user
|