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.

223 lines
5.5 KiB

2 years ago
// pages/article/article.js
var app = getApp();
var WXAPI = require('../../utils/server.js');
2 years ago
//引入这个插件,使html内容自动转换成wxml内容
var WxParse = require('../../wxParse/wxParse.js');
Page({
data: {
images: {},
titstu:false,
maskHidden: false,
show_share: false,
},
onLoad: function (options) {
console.log(options)
2 years ago
var that = this;
var id = options.id;
if (options.p_openid != '') {
app.globalData.userInfo['p_openid'] = options.p_openid;
} else {
app.globalData.userInfo['p_openid'] = '';
}
that.setData({
id: id,
});
that.y_detail(id);
},
onPullDownRefresh: function () {
},
// 获取文章详情
y_detail: function (id) {
var that = this;
2 years ago
WXAPI.envelopeIndex({
id: id,
}).then(res => {
if (res.code == 200) {
var data = res;
var article = data.article;
var content = article['0'].content;
//绑定页面数据,使用插件titstu
WxParse.wxParse('content', 'html', content, that, 3);
that.setData({
article: article['0'],
title:article['0'].Article_title,
});
if (article['0'].Article_title !='关于我们'){
2 years ago
that.setData({
2 years ago
titstu:true,
2 years ago
});
}
2 years ago
//设置动态标题
wx.setNavigationBarTitle({
title: article['0'].Article_title
});
} else {
//返回错误提示
2 years ago
wx.showToast({
2 years ago
title: res.err,
2 years ago
duration: 2000,
});
2 years ago
}
2 years ago
});
},
// 转发分享
onShareAppMessage: function (res) {
var that = this;
var id = that.data.article.Article_id;
var Article_title = that.data.article.Article_title;
if (res.from === 'button') {
// 来自页面内转发按钮
console.log(res.target)
}
return {
title: Article_title,
imageUrl:that.data.article.Article_imgurl,
path: '/pages/index/index?id?p_openid=' + app.globalData.userInfo.openid,
success: function (res) {
// 转发成功
2 years ago
WXAPI.envelopeShare({
id: id,
openid: app.globalData.userInfo.openid
}).then(res => {
if (res.code == 200) {
var data = res;
wx.navigateTo({
url: '../share/index?id=' + id + '&n=1',
2 years ago
});
2 years ago
} else {
2 years ago
wx.showToast({
2 years ago
title: res.err,
2 years ago
duration: 2000
});
2 years ago
}
2 years ago
});
},
fail: function (res) {
// 转发失败
}
}
},
storage: function () {
var that = this;
2 years ago
WXAPI.appUser({
nickName: app.globalData.userInfo.nickName,
headimgurl: app.globalData.userInfo.avatarUrl,
sex: app.globalData.userInfo.gender,
openid: app.globalData.userInfo.openid,
p_openid: app.globalData.userInfo.p_openid,
}).then(res => {
if (res.code == 200) {
var data = res;
}
2 years ago
});
},
//分享朋友圈 查看保存图片
user_share: function () {
var that = this;
wx.showToast({
title: '图片生成中',
icon: 'loading',
duration: 1500,
});
2 years ago
WXAPI.getcodeProductShare({
scene: 'id=' + that.data.id + '&p_openid=' + app.globalData.userInfo.openid,
path: 'pages/article/article',
id: app.globalData.userInfo.user_id,
pid: that.data.id,
type: 1
}).then(res => {
if (res.code == 200) {
var data = res;
2 years ago
that.setData({
maskHidden: true,
imagePath: res.url,
});
}
2 years ago
});
2 years ago
var animation = wx.createAnimation({
duration: 200,
timingFunction: "linear",
delay: 0
});
that.animation = animation;
animation.translateY(300).step();
that.setData({
animationData: animation.export()
})
setTimeout(function () {
animation.translateY(0).step()
that.setData({
animationData: animation,
show_share: false
})
}.bind(that), 200)
},
close_share: function (e) {
var that = this;
that.setData({
maskHidden: false
})
},
//点击保存到相册
baocun: function () {
var that = this;
console.log('用户点击保存');
wx.getSetting({
success(res) {
console.log(res)
2 years ago
}
})
wx.downloadFile({
url: that.data.imagePath,
success: function (res) {
var tempFilePath = res.tempFilePath;
console.log(tempFilePath);
wx.saveImageToPhotosAlbum({
filePath: tempFilePath,
success(res) {
wx.showModal({
content: '图片已保存到相册,赶紧晒一下吧~',
showCancel: false,
confirmText: '好的',
confirmColor: '#333',
success: function (res) {
if (res.confirm) {
console.log('用户点击确定');
/* 该隐藏的隐藏 */
that.setData({
maskHidden: false
})
}
}, fail: function (res) {
}
})
}
})
}
})
},
//图片预览
previewImage: function (e) {
var current = e.target.dataset.src;
// 路径和 图片的数组
var arr = [current];
// 图片预览函数
wx.previewImage({
current: current, // 当前显示图片的http链接
urls: arr, // 需要预览的图片http链接列表
})
},
preventTouchMove: function (e) {
},
})