|
@@ -138,8 +138,42 @@
|
|
|
|
|
|
};
|
|
|
},
|
|
|
+ onShareTimeline() {
|
|
|
+ uni.share({
|
|
|
+ provider: "weixin",
|
|
|
+ scene: "WXSceneTimeline",
|
|
|
+ type: 0,
|
|
|
+ href: "http://uniapp.dcloud.io/",
|
|
|
+ title: "uni-app分享",
|
|
|
+ summary: "我正在使用丽湖双创小程序,赶紧跟我一起来体验!",
|
|
|
+ imageUrl: "https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",
|
|
|
+ success: function(res) {
|
|
|
+ console.log("success:" + JSON.stringify(res));
|
|
|
+ },
|
|
|
+ fail: function(err) {
|
|
|
+ console.log("fail:" + JSON.stringify(err));
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ },
|
|
|
+ // 分享
|
|
|
+ onShareAppMessage() {
|
|
|
+
|
|
|
+ uni.share({
|
|
|
+ provider: "weixin",
|
|
|
+ scene: "WXSceneSession",
|
|
|
+ type: 1,
|
|
|
+ summary: "我正在使用丽湖双创小程序,赶紧跟我一起来体验!",
|
|
|
+ success: function(res) {
|
|
|
+ console.log("success:" + JSON.stringify(res));
|
|
|
+ },
|
|
|
+ fail: function(err) {
|
|
|
+ console.log("fail:" + JSON.stringify(err));
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
methods: {
|
|
|
- gotoFeedback(){
|
|
|
+ gotoFeedback() {
|
|
|
const value = this.$store.state.user.openid;
|
|
|
if (!value) {
|
|
|
uni.showToast({
|
|
@@ -243,22 +277,22 @@
|
|
|
},
|
|
|
|
|
|
},
|
|
|
- // 分享
|
|
|
- onShareAppMessage() {
|
|
|
-
|
|
|
- uni.share({
|
|
|
- provider: "weixin",
|
|
|
- scene: "WXSceneSession",
|
|
|
- type: 1,
|
|
|
- summary: "我正在使用丽湖双创小程序,赶紧跟我一起来体验!",
|
|
|
- success: function(res) {
|
|
|
- console.log("success:" + JSON.stringify(res));
|
|
|
- },
|
|
|
- fail: function(err) {
|
|
|
- console.log("fail:" + JSON.stringify(err));
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
+ // // 分享
|
|
|
+ // onShareAppMessage() {
|
|
|
+
|
|
|
+ // uni.share({
|
|
|
+ // provider: "weixin",
|
|
|
+ // scene: "WXSceneSession",
|
|
|
+ // type: 1,
|
|
|
+ // summary: "我正在使用丽湖双创小程序,赶紧跟我一起来体验!",
|
|
|
+ // success: function(res) {
|
|
|
+ // console.log("success:" + JSON.stringify(res));
|
|
|
+ // },
|
|
|
+ // fail: function(err) {
|
|
|
+ // console.log("fail:" + JSON.stringify(err));
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // },
|
|
|
onShow() {
|
|
|
// if (!this.$store.state.user.openid) {
|
|
|
this.getMag() // 调用app.js中的方法
|