Commit d159845c authored by 郭志伟's avatar 郭志伟

Merge branch 'fix/goods' into 'master'

微信分享联调

See merge request !142
parents 2a112d91 db8cba5a
......@@ -16,6 +16,10 @@ export const authByxyqb = param => {
export const getwxOpenId = param => {
return req.post("wechat/code", param);
};
// 微信用户获取分享信息
export const getwxAuth = param => {
return req.post("third/wxJsapi/getJsapiSign", param);
};
// 获取短信验证码
export const getCaptchaSms = param => {
......
......@@ -8,7 +8,7 @@
>
<cr-tabbar-item v-for="(item, index) in tabbarData" :key="item.name">
<div class="mongo-tabbar-item">
<img class="mongo-tabbar-item-svg" :src="index === activeIdx ? item.activeImg : item.img">
<img class="mongo-tabbar-item-svg" :src="index === activeIdx ? item.activeImg : item.img" />
<span class="mongo-tabbar-item-name">{{ item.name }}</span>
</div>
</cr-tabbar-item>
......
/*
* @Description: IOS12input弹框bug修复 mixins
修复讨论: https://developers.weixin.qq.com/community/develop/doc/00044ae90742f8c82fb78fcae56800
* @LastEditors: gzw
* @Date: 2019-03-14 18:40:11
* @LastEditTime: 2020-08-30 18:17:40
*/
import cfg from "@/config/index";
import { getwxAuth } from "@/api/user";
import wx from "weixin-js-sdk";
export default {
data() {
return {
wxAuthInfo: {}
};
},
methods: {
async getWxShareInfo(
title = "wwww",
desc = "aaaa",
link = window.location.href,
imgUrl = "https://activitystatic.lkbang.net/mongo/images/activity%402x.272880e4.png"
) {
const res = await getwxAuth({
appId: cfg.wxAppId,
url: window.location.href
});
const { appId, timestamp, nonceStr, signature } = res;
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId, // 必填,公众号的唯一标识,填自己的!
timestamp, // 必填,生成签名的时间戳,刚才接口拿到的数据
nonceStr, // 必填,生成签名的随机串
signature, // 必填,签名,见附录1
jsApiList: ["onMenuShareTimeline", "onMenuShareAppMessage"]
});
wx.ready(function() {
//分享到朋友圈
wx.onMenuShareTimeline({
title, // 分享时的标题
link, // 分享时的链接
imgUrl, // 分享时的图标
success: function() {
console.log("分享成功");
},
cancel: function() {
console.log("取消分享");
}
});
//分享给朋友
wx.onMenuShareAppMessage({
title,
desc,
link,
imgUrl,
type: "",
dataUrl: "",
success: function() {
console.log("分享成功");
},
cancel: function() {
console.log("取消分享");
}
});
});
}
}
};
......@@ -17,6 +17,7 @@ import AdvisorRecDialog from "./modules/AdvisorRecDialog";
import { getCulOrder } from "@/api/consultant";
import localStorage from "@/service/localStorage";
import { isXyqb } from "@/service/validation";
import weixinJsSdk from "@/mixins/weixinJsSdk.mixin";
import { mapActions, mapState } from "vuex";
export default {
......@@ -28,6 +29,7 @@ export default {
liDetail,
AdvisorRecDialog
},
mixins: [weixinJsSdk],
data() {
return {
detailType: "",
......@@ -50,6 +52,9 @@ export default {
next();
}
},
created() {
this.getWxShareInfo();
},
mounted() {
this.getOrderInfo();
this.detailType = this.$route.query.type;
......
......@@ -70,7 +70,10 @@ export default {
},
methods: {
showPdf() {
this.$router.push({ path: "/policy/virtual-detail", query: { policySecId: this.data.policySecId } });
this.$router.push({
path: "/policy/virtual-detail",
query: { policySecId: this.data.policySecId }
});
}
},
computed: {
......
......@@ -136,7 +136,10 @@ export default {
query: { id: item.id, type: item.itype }
});
} else if (text === "电子保单") {
this.$router.push({ path: "/policy/virtual-detail", query: { policySecId: item.policySecId } });
this.$router.push({
path: "/policy/virtual-detail",
query: { policySecId: item.policySecId }
});
} else if (text === "去支付") {
this.orderInfo = {
payOrderNo: item?.payInfo?.payOrderNo,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment