Commit 9e6a7ba4 by mamingqun

修改分享标题和分享描述为后台接口

parent b03e7fb0
......@@ -47,6 +47,8 @@ import wx from 'weixin-js-sdk';
import api from '@/modules/js/api.js';
import tools from '@/modules/js/tools';
export default {
data() {
return {
......@@ -208,7 +210,7 @@ export default {
// 自定义“分享给朋友”及“分享到QQ”按钮的分享内容(1.4.0)
wx.updateAppMessageShareData(
{
title: _this.$randomText(), // 分享标题
title: tools.randomShareTitle(), // 分享标题
// desc: '@'+ this.pictureInfo.nickname +', ' + _this.pictureInfo.desc, // 分享描述
// desc: _this.pictureInfo.desc, // 分享描述
desc: _this.pictureInfo.desc, // 分享描述
......@@ -224,7 +226,7 @@ export default {
// 自定义“分享到朋友圈”及“分享到QQ空间”按钮的分享内容(1.4.0)
wx.updateTimelineShareData(
{
title: _this.$randomText(), // 分享标题
title: tools.randomShareTitle(), // 分享标题
link: this.url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: _this.pictureInfo.image // 分享图标
},
......
import store from '../store';
// api地址
var server = 'http://web-comment.canskj.cn/new';
......
import store from '../store';
import Vue from 'vue';
function RandomNumBoth(Min, Max) {
var Range = Max - Min - 1;
var Rand = Math.random();
var num = Min + Math.round(Rand * Range);
return num;
}
let randomShareTitle = function () {
var length = store.state.publicShareInfo.title.length
var index = RandomNumBoth(0,length);
return store.state.publicShareInfo.title[index]
}
let randomShareDesc = function randomShareDesc() {
var length = store.state.publicShareInfo.desc.length
var index = RandomNumBoth(0,length);
return store.state.publicShareInfo.desc[index]
}
export default { randomShareTitle , randomShareDesc}
......@@ -141,6 +141,8 @@ import ruwei from './ruwei.vue';
import api from '@/modules/js/api.js';
import tools from '@/modules/js/tools';
export default {
data() {
return {
......@@ -226,11 +228,6 @@ export default {
this.getRuweiList();
// this.hiddenBar();
setTimeout(() => {
console.log('store的数据');
console.log(store.state.publicActiveInfo);
}, 500);
},
mounted() {
......@@ -591,8 +588,9 @@ export default {
// // 自定义“分享给朋友”及“分享到QQ”按钮的分享内容(1.4.0)
wx.updateAppMessageShareData(
{
title: _this.$randomText() , // 分享标题
desc: '春节回家,拍照有奖', // 分享描述
// title: _this.$randomText() , // 分享标题
title: tools.randomShareTitle() , // 分享标题
desc: tools.randomShareDesc(), // 分享描述
link: api.wrapHref, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: api.shareImg // 分享图标
},
......@@ -604,7 +602,7 @@ export default {
// // 自定义“分享到朋友圈”及“分享到QQ空间”按钮的分享内容(1.4.0)
wx.updateTimelineShareData(
{
title: _this.$randomText(), // 分享标题
title: tools.randomShareTitle(), // 分享标题
link: api.wrapHref, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: api.shareImg // 分享图标
},
......
......@@ -45,6 +45,9 @@ export default {
// this.hiddenBar();
this.judgeShare()
this.getActiveInfo()
store.commit('getPublicActiveInfo');
store.commit('getPublicShareInfo');
},
activated(){
// this.hiddenBar();
......
......@@ -58,6 +58,9 @@ import wx from 'weixin-js-sdk';
import api from '@/modules/js/api.js';
import tools from '@/modules/js/tools';
export default {
data() {
return {
......@@ -219,8 +222,8 @@ export default {
// // 自定义“分享给朋友”及“分享到QQ”按钮的分享内容(1.4.0)
wx.updateAppMessageShareData(
{
title: _this.$randomText() , // 分享标题
desc: '春节回家,拍照有奖', // 分享描述
title: tools.randomShareTitle() , // 分享标题
desc: tools.randomShareDesc(), // 分享描述
link: api.wrapHref, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: api.shareImg // 分享图标
},
......@@ -232,7 +235,7 @@ export default {
// // 自定义“分享到朋友圈”及“分享到QQ空间”按钮的分享内容(1.4.0)
wx.updateTimelineShareData(
{
title: _this.$randomText(), // 分享标题
title: tools.randomShareTitle(), // 分享标题
link: api.wrapHref, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: api.shareImg // 分享图标
},
......
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 sign in to comment