123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // pages/user/setting/index.js
- const {
- globalData: {
- util: {
- regeneratorRuntime,
- goHome,
- showTip,
- logout
- }
- }
- } = getApp()
- Page({
- data: {
- list: {
- title: '分享小程序',
- icon: 'fenxiang',
- url: '',
- },
- },
- logout() {
- wx.showModal({
- content: '确定退出登录?',
- success: async ({ confirm }) => {
- if (confirm){
- wx.clearStorageSync()
- wx.reLaunch({
- url: '/pages/login/login',
- })
- }
- }
- })
- },
- preview: function () {
- wx.previewImage({
- urls: ['http://img.mp.itc.cn/upload/20160428/b52be3dc215d4ecd844bf922be46f278_th.jpg'],
- })
- }
- })
|