123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- // pages/mine/mine.js
- const app = getApp()
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- isIpx: app.data.systemInfo.isIpx ? true : false, //底部按钮适配Iphone X
- safeAreaTop: '',
- userInfo: {},
- writePhotosFlag:-1,
- qunFlag:false
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- this.init()
- this.setData({
- safeAreaTop:30+app.data.safeAreaTop,
- userInfo: wx.getStorageSync('userInfo')
- })
- },
- onShow: function(){
- this.init()
- },
- init(){
- var _this = this;
- wx.getSetting({
- success(res) {
- if(res.authSetting['scope.writePhotosAlbum'] == false){
- _this.setData({writePhotosFlag:false})
- }
- if(res.authSetting['scope.writePhotosAlbum'] == true){
- _this.setData({writePhotosFlag:true})
- }
- }
- })
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- cancelTask(){
- this.setData({qunFlag:false})
- },
- copyEvent(){
- wx.setClipboardData({
- data: 'https://sph.wenxingshuju.com',
- success: function (res) {
- wx.getClipboardData({
- success: function (res) {
- wx.showToast({
- title: '复制成功'
- })
- }
- })
- }
- })
- },
- toUrl(e) {
- if(e.currentTarget.dataset.path.indexOf('allNotice')!=-1) {
- wx.navigateTo({
- url: '/pages/newNotice/allNotice/allNotice'
- })
- }else {
- wx.navigateTo({
- url: e.currentTarget.dataset.path
- })
- }
- },
- goPageClaim(){
- wx.navigateTo({
- url: '/pages/claim/index/index',
- })
- },
- qunEvent(){
- this.setData({qunFlag:true})
- },
- downLoadImgEvent(){
- if(!this.data.writePhotosFlag){
- wx.openSetting()
- return
- }
- var _this = this;
- wx.getSetting({
- success(res) {
- if (!res.authSetting['scope.writePhotosAlbum']) {
- wx.authorize({
- scope:'scope.writePhotosAlbum',
- success() {//授权成功
- _this.setData({writePhotosFlag:true})
- _this.downloadImg()
- },
- fail:function(err){
- _this.setData({writePhotosFlag:false})
- },
- })
- }else{//已经授权
- _this.setData({writePhotosFlag:true})
- _this.downloadImg()
- }
- }
- })
- },
- downloadImg(){
- var imgSrc = "https://www.wenxingshuju.com/kol_wx_qun_evm.jpg"
- wx.downloadFile({
- url: imgSrc,
- success: function (res) {
- wx.saveImageToPhotosAlbum({
- filePath: res.tempFilePath,
- success: function (data) {
- wx.showToast({
- title: '保存成功',
- icon: 'success',
- duration: 2000
- })
- },
- fail: function (err) {
- },
- complete(res){
- }
- })
- }
- })
- },
- goExtension(){
- wx.navigateTo({
- url: "/pages/extension/list/index",
- })
- },
- goWebView(){
- wx.navigateTo({
- url: '/pages/webView/index',
- })
- },
- onShareAppMessage(res){
- return app.shareEvent(res)
- }
- })
|