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://dgt.dgtis.com/oneportal//fileServer/head_image/201911061454581573023298346.png'],
- })
- }
- })
|