'新更新文件'
This commit is contained in:
parent
4f61751327
commit
38b120d270
12
App.vue
12
App.vue
|
@ -18,13 +18,13 @@
|
||||||
mapActions
|
mapActions
|
||||||
} from 'vuex'
|
} from 'vuex'
|
||||||
import {
|
import {
|
||||||
spread,copyrightApi,channelId
|
spread,copyrightApi
|
||||||
} from "@/api/user";
|
} from "@/api/user";
|
||||||
// const app = getApp();
|
// const app = getApp();
|
||||||
export default {
|
export default {
|
||||||
globalData: {
|
globalData: {
|
||||||
spread: 0, //推广人id
|
spread: 0, //推广人id
|
||||||
channelId:0, //通道id
|
|
||||||
code: 0,
|
code: 0,
|
||||||
isLogin: false,
|
isLogin: false,
|
||||||
userInfo: {},
|
userInfo: {},
|
||||||
|
@ -117,14 +117,14 @@
|
||||||
let value = this.$util.getUrlParams(decodeURIComponent(option.query.scene));
|
let value = this.$util.getUrlParams(decodeURIComponent(option.query.scene));
|
||||||
that.globalData.spread = value.spread?value.spread:'';
|
that.globalData.spread = value.spread?value.spread:'';
|
||||||
// 通道id
|
// 通道id
|
||||||
that.globalData.channelId = value.channelId?value.channelId:'';
|
|
||||||
that.globalData = this.$util.formatMpQrCodeData(value);
|
that.globalData = this.$util.formatMpQrCodeData(value);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (option.spread) that.globalData.spread = option.spread;
|
if (option.spread) that.globalData.spread = option.spread;
|
||||||
// 通道id
|
// 通道id
|
||||||
if (option.channelId) that.globalData.channelId = option.channelId;
|
|
||||||
// #endif
|
// #endif
|
||||||
// 获取导航高度;
|
// 获取导航高度;
|
||||||
uni.getSystemInfo({
|
uni.getSystemInfo({
|
||||||
|
@ -159,8 +159,7 @@
|
||||||
// 存储静默授权code
|
// 存储静默授权code
|
||||||
uni.setStorageSync('snsapiCode', code);
|
uni.setStorageSync('snsapiCode', code);
|
||||||
let spread = that.globalData.spread ? that.globalData.spread : 0;
|
let spread = that.globalData.spread ? that.globalData.spread : 0;
|
||||||
// 通道id
|
|
||||||
let channelId = that.globalData.channelId ? that.globalData.channelId : 0;
|
|
||||||
Auth.auth(code, that.$Cache.get('SPREAD'))
|
Auth.auth(code, that.$Cache.get('SPREAD'))
|
||||||
.then(res => {
|
.then(res => {
|
||||||
uni.setStorageSync('snRouter', decodeURIComponent(decodeURIComponent(option.query
|
uni.setStorageSync('snRouter', decodeURIComponent(decodeURIComponent(option.query
|
||||||
|
@ -195,6 +194,7 @@
|
||||||
location.replace(uni.getStorageSync('snRouter'));
|
location.replace(uni.getStorageSync('snRouter'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// #endif
|
// #endif
|
||||||
|
|
||||||
// #ifdef MP
|
// #ifdef MP
|
||||||
|
|
|
@ -19,11 +19,12 @@ export function getWechatConfig() {
|
||||||
* 获取微信sdk配置
|
* 获取微信sdk配置
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function wechatAuth(code, spread) {
|
export function wechatAuth(code, spread,) {
|
||||||
var reg=/^[0-9]+.?[0-9]*$/; //判断字符串是否为数字 ,判断正整数用/^[1-9]+[0-9]*]*$/
|
var reg=/^[0-9]+.?[0-9]*$/; //判断字符串是否为数字 ,判断正整数用/^[1-9]+[0-9]*]*$/
|
||||||
spread = reg.test(spread) ? spread : 0;
|
spread = reg.test(spread) ? spread : 0;
|
||||||
|
|
||||||
return request.get(
|
return request.get(
|
||||||
"wechat/authorize/login?code=" + code + "&spread_spid=" + spread, {},
|
"wechat/authorize/login?code=" + code + "&spread_spid=" + spread , {},
|
||||||
{ noAuth: true }
|
{ noAuth: true }
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,7 @@ module.exports = {
|
||||||
|
|
||||||
TIPS_KEY: 'TIPS_KEY',
|
TIPS_KEY: 'TIPS_KEY',
|
||||||
|
|
||||||
|
|
||||||
SPREAD: 'SPREAD',
|
SPREAD: 'SPREAD',
|
||||||
//缓存经度
|
//缓存经度
|
||||||
CACHE_LONGITUDE: 'LONGITUDE',
|
CACHE_LONGITUDE: 'LONGITUDE',
|
||||||
|
|
|
@ -33,5 +33,6 @@ class Apps{
|
||||||
.catch(reject);
|
.catch(reject);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
export default new Apps();
|
export default new Apps();
|
|
@ -232,6 +232,7 @@ class AuthWechat {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取跳转授权后的地址
|
* 获取跳转授权后的地址
|
||||||
* @param {Object} appId
|
* @param {Object} appId
|
||||||
|
|
9
main.js
9
main.js
|
@ -35,6 +35,7 @@ Vue.prototype.$wechat = Auth;
|
||||||
let cookieName = "VCONSOLE",
|
let cookieName = "VCONSOLE",
|
||||||
query = parseQuery(),
|
query = parseQuery(),
|
||||||
urlSpread = query["spread"],
|
urlSpread = query["spread"],
|
||||||
|
|
||||||
vconsole = query[cookieName.toLowerCase()],
|
vconsole = query[cookieName.toLowerCase()],
|
||||||
md5Crmeb = "b14d1e9baeced9bb7525ab19ee35f2d2", //CRMEB MD5 加密开启vconsole模式
|
md5Crmeb = "b14d1e9baeced9bb7525ab19ee35f2d2", //CRMEB MD5 加密开启vconsole模式
|
||||||
md5UnCrmeb = "3dca2162c4e101b7656793a1af20295c"; //UN_CREMB MD5 加密关闭vconsole模式
|
md5UnCrmeb = "3dca2162c4e101b7656793a1af20295c"; //UN_CREMB MD5 加密关闭vconsole模式
|
||||||
|
@ -44,14 +45,8 @@ let cookieName = "VCONSOLE",
|
||||||
name: 'spread',
|
name: 'spread',
|
||||||
value: urlSpread,
|
value: urlSpread,
|
||||||
})
|
})
|
||||||
// var spread = Cache.get(SPREAD);
|
|
||||||
// urlSpread = parseInt(urlSpread);
|
|
||||||
// if (!Number.isNaN(urlSpread) && spread !== urlSpread) {
|
|
||||||
// Cache.set("spread", urlSpread || 0);
|
|
||||||
// } else if (spread === 0 || typeof spread !== "number") {
|
|
||||||
// Cache.set("spread", urlSpread || 0);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (vconsole !== undefined) {
|
if (vconsole !== undefined) {
|
||||||
if (vconsole === md5UnCrmeb && Cache.has(cookieName))
|
if (vconsole === md5UnCrmeb && Cache.has(cookieName))
|
||||||
Cache.clear(cookieName);
|
Cache.clear(cookieName);
|
||||||
|
|
|
@ -342,7 +342,7 @@
|
||||||
import countDown from '@/components/countDown';
|
import countDown from '@/components/countDown';
|
||||||
import parser from "@/components/jyf-parser/jyf-parser";
|
import parser from "@/components/jyf-parser/jyf-parser";
|
||||||
import {
|
import {
|
||||||
silenceBindingSpread
|
silenceBindingSpread,
|
||||||
} from "@/utils";
|
} from "@/utils";
|
||||||
// #ifdef APP-PLUS
|
// #ifdef APP-PLUS
|
||||||
import {
|
import {
|
||||||
|
@ -494,8 +494,7 @@
|
||||||
|
|
||||||
// 链接进入获取绑定关系id
|
// 链接进入获取绑定关系id
|
||||||
if(options.spread) app.globalData.spread = options.spread;
|
if(options.spread) app.globalData.spread = options.spread;
|
||||||
// 通道id
|
|
||||||
// if(options.channelId) app.globalData.channelId = options.channelId;
|
|
||||||
|
|
||||||
var pages = getCurrentPages();
|
var pages = getCurrentPages();
|
||||||
if (pages.length <= 1) {
|
if (pages.length <= 1) {
|
||||||
|
@ -535,6 +534,7 @@
|
||||||
if(this.isLogin && parseInt(app.globalData.spread)>0){
|
if(this.isLogin && parseInt(app.globalData.spread)>0){
|
||||||
silenceBindingSpread()
|
silenceBindingSpread()
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
//去支付
|
//去支付
|
||||||
|
|
|
@ -494,6 +494,7 @@
|
||||||
|
|
||||||
//获取浏览器参数
|
//获取浏览器参数
|
||||||
if(options.spread) app.globalData.spread = options.spread; //推广码
|
if(options.spread) app.globalData.spread = options.spread; //推广码
|
||||||
|
|
||||||
if (options.id) this.id = options.id; // 商品id
|
if (options.id) this.id = options.id; // 商品id
|
||||||
// 仅仅小程序扫码进入获取商品id,商品类型
|
// 仅仅小程序扫码进入获取商品id,商品类型
|
||||||
if (options.scene) {
|
if (options.scene) {
|
||||||
|
@ -504,6 +505,7 @@
|
||||||
if (this.isLogin) {
|
if (this.isLogin) {
|
||||||
this.combinationDetail();
|
this.combinationDetail();
|
||||||
if(parseInt(app.globalData.spread)>0) silenceBindingSpread()
|
if(parseInt(app.globalData.spread)>0) silenceBindingSpread()
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
this.$Cache.set('login_back_url',
|
this.$Cache.set('login_back_url',
|
||||||
`/pages/activity/goods_combination_details/index?id=${options.id}&spread=${app.globalData.spread?app.globalData.spread:0}`
|
`/pages/activity/goods_combination_details/index?id=${options.id}&spread=${app.globalData.spread?app.globalData.spread:0}`
|
||||||
|
@ -616,6 +618,7 @@
|
||||||
getCombinationDetail(data).then(function(res) {
|
getCombinationDetail(data).then(function(res) {
|
||||||
//分享地址
|
//分享地址
|
||||||
that.openPages = '/pages/activity/goods_combination_details/index?id=' + that.id + '&spread=' + that.uid;
|
that.openPages = '/pages/activity/goods_combination_details/index?id=' + that.id + '&spread=' + that.uid;
|
||||||
|
|
||||||
that.dataShow = 1;
|
that.dataShow = 1;
|
||||||
uni.setNavigationBarTitle({
|
uni.setNavigationBarTitle({
|
||||||
title: res.data.storeCombination.storeName.substring(0, 16)
|
title: res.data.storeCombination.storeName.substring(0, 16)
|
||||||
|
@ -1105,6 +1108,7 @@
|
||||||
// 生成二维码;
|
// 生成二维码;
|
||||||
make() {
|
make() {
|
||||||
let href = location.href.split('?')[0] + "?id="+ this.id + "&spread=" + this.uid;
|
let href = location.href.split('?')[0] + "?id="+ this.id + "&spread=" + this.uid;
|
||||||
|
|
||||||
uQRCode.make({
|
uQRCode.make({
|
||||||
canvasId: 'qrcode',
|
canvasId: 'qrcode',
|
||||||
text: href,
|
text: href,
|
||||||
|
@ -1122,6 +1126,7 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 保存到手机相册
|
* 保存到手机相册
|
||||||
*/
|
*/
|
||||||
|
@ -1178,8 +1183,7 @@
|
||||||
if (this.$wechat.isWeixin()) {
|
if (this.$wechat.isWeixin()) {
|
||||||
href =
|
href =
|
||||||
href.indexOf("?") === -1 ?
|
href.indexOf("?") === -1 ?
|
||||||
href + "?spread=" + this.uid :
|
href + "?spread=" + this.uid : href + "&spread=" + this.uid;
|
||||||
href + "&spread=" + this.uid;
|
|
||||||
|
|
||||||
let configAppMessage = {
|
let configAppMessage = {
|
||||||
desc: data.storeInfo,
|
desc: data.storeInfo,
|
||||||
|
|
|
@ -237,6 +237,7 @@
|
||||||
if (newV) {
|
if (newV) {
|
||||||
this.getCombinationPink();
|
this.getCombinationPink();
|
||||||
if(parseInt(app.globalData.spread)>0)silenceBindingSpread()
|
if(parseInt(app.globalData.spread)>0)silenceBindingSpread()
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
deep: true
|
deep: true
|
||||||
|
@ -254,6 +255,7 @@
|
||||||
this.$set(this,'theme',this.$Cache.get('theme'));
|
this.$set(this,'theme',this.$Cache.get('theme'));
|
||||||
this.pinkId = options.id;
|
this.pinkId = options.id;
|
||||||
if(options.spread) app.globalData.spread = options.spread;
|
if(options.spread) app.globalData.spread = options.spread;
|
||||||
|
|
||||||
switch (this.theme) {
|
switch (this.theme) {
|
||||||
case 'theme1':
|
case 'theme1':
|
||||||
this.posterbackgd = '../../../static/images/bargain_post1.png' // 因为跨域不能使用网络图片,
|
this.posterbackgd = '../../../static/images/bargain_post1.png' // 因为跨域不能使用网络图片,
|
||||||
|
@ -275,10 +277,12 @@
|
||||||
this.timestamp = (new Date()).getTime();
|
this.timestamp = (new Date()).getTime();
|
||||||
this.getCombinationPink();
|
this.getCombinationPink();
|
||||||
if(parseInt(app.globalData.spread)>0)silenceBindingSpread()
|
if(parseInt(app.globalData.spread)>0)silenceBindingSpread()
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
this.$Cache.set('login_back_url',
|
this.$Cache.set('login_back_url',
|
||||||
`/pages/activity/goods_combination_status/index?id=${options.id}&spread=${app.globalData.spread?app.globalData.spread:0}`
|
`/pages/activity/goods_combination_status/index?id=${options.id}&spread=${app.globalData.spread?app.globalData.spread:0}`
|
||||||
);
|
);
|
||||||
|
|
||||||
toLogin();
|
toLogin();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -305,6 +309,7 @@
|
||||||
this.timestamp = (new Date()).getTime();
|
this.timestamp = (new Date()).getTime();
|
||||||
this.getCombinationPink();
|
this.getCombinationPink();
|
||||||
silenceBindingSpread()
|
silenceBindingSpread()
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
toLogin();
|
toLogin();
|
||||||
}
|
}
|
||||||
|
@ -658,6 +663,7 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
//拼团信息
|
//拼团信息
|
||||||
getCombinationPink: function() {
|
getCombinationPink: function() {
|
||||||
var that = this;
|
var that = this;
|
||||||
|
@ -665,6 +671,7 @@
|
||||||
.then(res => {
|
.then(res => {
|
||||||
that.openPages = '/pages/activity/goods_combination_status/index?id=' + that.pinkId +
|
that.openPages = '/pages/activity/goods_combination_status/index?id=' + that.pinkId +
|
||||||
"&spread=" + that.uid;
|
"&spread=" + that.uid;
|
||||||
|
|
||||||
let storeCombination = res.data.storeCombination;
|
let storeCombination = res.data.storeCombination;
|
||||||
res.data.pinkT.stop_time = parseInt(res.data.pinkT.stopTime);
|
res.data.pinkT.stop_time = parseInt(res.data.pinkT.stopTime);
|
||||||
that.$set(that, 'storeCombination', storeCombination);
|
that.$set(that, 'storeCombination', storeCombination);
|
||||||
|
@ -708,6 +715,7 @@
|
||||||
desc: that.storeCombination.title,
|
desc: that.storeCombination.title,
|
||||||
link: window.location.protocol + '//' + window.location.host +
|
link: window.location.protocol + '//' + window.location.host +
|
||||||
'/pages/activity/goods_combination_status/index?id=' + that.pinkId + "&spread=" + this.uid,
|
'/pages/activity/goods_combination_status/index?id=' + that.pinkId + "&spread=" + this.uid,
|
||||||
|
|
||||||
imgUrl: that.storeCombination.image
|
imgUrl: that.storeCombination.image
|
||||||
};
|
};
|
||||||
if (this.$wechat.isWeixin()) {
|
if (this.$wechat.isWeixin()) {
|
||||||
|
|
|
@ -446,16 +446,7 @@
|
||||||
this.id = value.id ? value.id : '';
|
this.id = value.id ? value.id : '';
|
||||||
}
|
}
|
||||||
if(options.spread) app.globalData.spread = options.spread;
|
if(options.spread) app.globalData.spread = options.spread;
|
||||||
// if (options.hasOwnProperty('id') || options.scene){
|
|
||||||
// if (options.scene) { // 仅仅小程序扫码进入
|
|
||||||
// let qrCodeValue = this.$util.getUrlParams(decodeURIComponent(options.scene));
|
|
||||||
// let mapeMpQrCodeValue = this.$util.formatMpQrCodeData(qrCodeValue);
|
|
||||||
// app.globalData.spread = mapeMpQrCodeValue.spread;
|
|
||||||
// this.id = mapeMpQrCodeValue.id;
|
|
||||||
// }else{
|
|
||||||
// this.id = options.id;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
if (this.isLogin) {
|
if (this.isLogin) {
|
||||||
|
@ -463,6 +454,7 @@
|
||||||
} else {
|
} else {
|
||||||
this.$Cache.set('login_back_url',
|
this.$Cache.set('login_back_url',
|
||||||
'/pages/activity/goods_seckill_details/index?id=' + this.id + '&spread=' + app.globalData.spread?app.globalData.spread:0);
|
'/pages/activity/goods_seckill_details/index?id=' + this.id + '&spread=' + app.globalData.spread?app.globalData.spread:0);
|
||||||
|
|
||||||
toLogin();
|
toLogin();
|
||||||
}
|
}
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
|
@ -480,6 +472,7 @@
|
||||||
if(this.isLogin && parseInt(app.globalData.spread)>0){
|
if(this.isLogin && parseInt(app.globalData.spread)>0){
|
||||||
silenceBindingSpread()
|
silenceBindingSpread()
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// app分享
|
// app分享
|
||||||
|
@ -492,7 +485,8 @@
|
||||||
provider: "weixin",
|
provider: "weixin",
|
||||||
scene: scene,
|
scene: scene,
|
||||||
type: 0,
|
type: 0,
|
||||||
href: `${HTTP_H5_URL}${curRoute}&spread=${that.uid}`,
|
href: `${HTTP_H5_URL}${curRoute}&spread=${that.uid}}`,
|
||||||
|
|
||||||
title: that.storeInfo.storeName,
|
title: that.storeInfo.storeName,
|
||||||
summary:app.globalData.companyName,
|
summary:app.globalData.companyName,
|
||||||
imageUrl: that.storeInfo.image,
|
imageUrl: that.storeInfo.image,
|
||||||
|
@ -614,7 +608,8 @@
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
that.infoScroll();
|
that.infoScroll();
|
||||||
}, 1000);
|
}, 1000);
|
||||||
that.openPages = '/pages/activity/goods_seckill_details/index?id=' + that.id + '&spread=' + that.uid ;
|
that.openPages = '/pages/activity/goods_seckill_details/index?id=' + that.id + '&spread=' + that.uid+ '&channelI=' + that.uid;
|
||||||
|
// that.openPages = '/pages/activity/goods_seckill_details/index?id=' + that.id + '&channelI=' + that.uid ;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
that.showSkeleton = false
|
that.showSkeleton = false
|
||||||
}, 1000)
|
}, 1000)
|
||||||
|
@ -1068,7 +1063,7 @@
|
||||||
},
|
},
|
||||||
// 生成二维码;
|
// 生成二维码;
|
||||||
make() {
|
make() {
|
||||||
let href = location.href.split('?')[0] + "?id="+ this.id + "&spread=" + this.uid;
|
let href = location.href.split('?')[0] + "?id="+ this.id + "&spread=" + this.uid + "&channelI=" + this.uid;
|
||||||
uQRCode.make({
|
uQRCode.make({
|
||||||
canvasId: 'qrcode',
|
canvasId: 'qrcode',
|
||||||
text: href,
|
text: href,
|
||||||
|
@ -1086,6 +1081,25 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
// make() {
|
||||||
|
// let href = location.href.split('?')[0] + "?id="+ this.id + "&channelI=" + this.uid;
|
||||||
|
// uQRCode.make({
|
||||||
|
// canvasId: 'qrcode',
|
||||||
|
// text: href,
|
||||||
|
// size: this.qrcodeSize,
|
||||||
|
// margin: 10,
|
||||||
|
// success: res => {
|
||||||
|
// this.PromotionCode = res;
|
||||||
|
// },
|
||||||
|
// complete: (res) => {
|
||||||
|
// },
|
||||||
|
// fail:res=>{
|
||||||
|
// this.$util.Tips({
|
||||||
|
// title: '海报二维码生成失败!'
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// },
|
||||||
// 图片预览;
|
// 图片预览;
|
||||||
getpreviewImage: function() {
|
getpreviewImage: function() {
|
||||||
if (this.posterImage) {
|
if (this.posterImage) {
|
||||||
|
@ -1157,8 +1171,12 @@
|
||||||
if (this.$wechat.isWeixin()) {
|
if (this.$wechat.isWeixin()) {
|
||||||
href =
|
href =
|
||||||
href.indexOf("?") === -1 ?
|
href.indexOf("?") === -1 ?
|
||||||
href + "?spread=" + this.uid :
|
href + "?spread=" + this.uid+ "?channelI=" + this.uid :
|
||||||
href + "&spread=" + this.uid;
|
href + "&spread=" + this.uid+"&channelI=" + this.uid;
|
||||||
|
// href =
|
||||||
|
// href.indexOf("?") === -1 ?
|
||||||
|
// href + "?channelI=" + this.uid :
|
||||||
|
// href + "&channelI=" + this.uid;
|
||||||
|
|
||||||
let configAppMessage = {
|
let configAppMessage = {
|
||||||
desc: app.globalData.companyName,
|
desc: app.globalData.companyName,
|
||||||
|
|
|
@ -145,6 +145,34 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
make(uid) {
|
||||||
|
let href = location.protocol + '//' + window.location.host + '/pages/activity/goods_combination_status/index?id=' + this.id ;
|
||||||
|
uQRCode.make({
|
||||||
|
canvasId: 'qrcode',
|
||||||
|
text: href,
|
||||||
|
size: this.qrcodeSize,
|
||||||
|
margin: 10,
|
||||||
|
success: res => {
|
||||||
|
this.PromotionCode = res;
|
||||||
|
let arrImages = [this.posterbackgd, this.imgTop, this.PromotionCode];
|
||||||
|
let storeName = this.storeCombination.storeCombination.title;
|
||||||
|
let price = this.storeCombination.storeCombination.price;
|
||||||
|
let people = this.storeCombination.storeCombination.people;
|
||||||
|
let otPrice = this.storeCombination.storeCombination.otPrice;
|
||||||
|
let count = this.storeCombination.count;
|
||||||
|
setTimeout(() => {
|
||||||
|
this.PosterCanvas(arrImages, storeName, price, people,otPrice,count);
|
||||||
|
}, 300);
|
||||||
|
},
|
||||||
|
complete: () => {
|
||||||
|
},
|
||||||
|
fail:res=>{
|
||||||
|
this.$util.Tips({
|
||||||
|
title: '海报二维码生成失败!'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
// 生成海报
|
// 生成海报
|
||||||
PosterCanvas:function(arrImages, storeName, price, people,otPrice,count){
|
PosterCanvas:function(arrImages, storeName, price, people,otPrice,count){
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
|
|
|
@ -368,7 +368,8 @@
|
||||||
import shareRedPackets from '@/components/shareRedPackets';
|
import shareRedPackets from '@/components/shareRedPackets';
|
||||||
import cusPreviewImg from '@/components/cus-previewImg/cus-previewImg.vue'
|
import cusPreviewImg from '@/components/cus-previewImg/cus-previewImg.vue'
|
||||||
import {
|
import {
|
||||||
silenceBindingSpread
|
silenceBindingSpread,
|
||||||
|
|
||||||
} from "@/utils";
|
} from "@/utils";
|
||||||
import parser from "@/components/jyf-parser/jyf-parser";
|
import parser from "@/components/jyf-parser/jyf-parser";
|
||||||
import {
|
import {
|
||||||
|
@ -608,6 +609,7 @@
|
||||||
|
|
||||||
if (options.spread) app.globalData.spread = options.spread;
|
if (options.spread) app.globalData.spread = options.spread;
|
||||||
|
|
||||||
|
|
||||||
this.getGoodsDetails(); //商品详情
|
this.getGoodsDetails(); //商品详情
|
||||||
this.getCouponType(); //获取默认的 优惠券类型
|
this.getCouponType(); //获取默认的 优惠券类型
|
||||||
this.getProductReplyList(); //评论列表
|
this.getProductReplyList(); //评论列表
|
||||||
|
@ -645,6 +647,8 @@
|
||||||
title: that.productInfo.storeName || '',
|
title: that.productInfo.storeName || '',
|
||||||
imageUrl: that.productInfo.image || '',
|
imageUrl: that.productInfo.image || '',
|
||||||
path: '/pages/goods_details/index?id=' + that.id + '&spread=' + that.uid,
|
path: '/pages/goods_details/index?id=' + that.id + '&spread=' + that.uid,
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// #endif
|
// #endif
|
||||||
|
@ -683,6 +687,7 @@
|
||||||
this.getCartCount(true); //购物车数量
|
this.getCartCount(true); //购物车数量
|
||||||
//绑定关系
|
//绑定关系
|
||||||
if (parseInt(app.globalData.spread) > 0) silenceBindingSpread();
|
if (parseInt(app.globalData.spread) > 0) silenceBindingSpread();
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -696,6 +701,8 @@
|
||||||
scene: scene,
|
scene: scene,
|
||||||
type: 0,
|
type: 0,
|
||||||
href: `${HTTP_H5_URL}${curRoute}&spread=${that.uid}`,
|
href: `${HTTP_H5_URL}${curRoute}&spread=${that.uid}`,
|
||||||
|
|
||||||
|
|
||||||
title: that.productInfo.storeName,
|
title: that.productInfo.storeName,
|
||||||
summary: app.globalData.companyName,
|
summary: app.globalData.companyName,
|
||||||
imageUrl: that.productInfo.image,
|
imageUrl: that.productInfo.image,
|
||||||
|
@ -1424,6 +1431,7 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
getImageBase64: function(images) {
|
getImageBase64: function(images) {
|
||||||
let that = this;
|
let that = this;
|
||||||
imageBase64({
|
imageBase64({
|
||||||
|
@ -1576,7 +1584,8 @@
|
||||||
let data = this.productInfo;
|
let data = this.productInfo;
|
||||||
let href = location.href;
|
let href = location.href;
|
||||||
if (this.$wechat.isWeixin()) {
|
if (this.$wechat.isWeixin()) {
|
||||||
href = href.indexOf("?") === -1 ? href + "?spread=" + this.uid : href + "&spread=" + this.uid;
|
href = href.indexOf("?") === -1 ? href + "?spread=" + this.uid: href + "&spread=" + this.uid;
|
||||||
|
|
||||||
let configAppMessage = {
|
let configAppMessage = {
|
||||||
desc: app.globalData.companyName,
|
desc: app.globalData.companyName,
|
||||||
title: data.storeName,
|
title: data.storeName,
|
||||||
|
|
|
@ -418,8 +418,11 @@
|
||||||
let qrCodeValue = this.$util.getUrlParams(decodeURIComponent(options.scene));
|
let qrCodeValue = this.$util.getUrlParams(decodeURIComponent(options.scene));
|
||||||
let mapeMpQrCodeValue = this.$util.formatMpQrCodeData(qrCodeValue);
|
let mapeMpQrCodeValue = this.$util.formatMpQrCodeData(qrCodeValue);
|
||||||
app.globalData.spread = mapeMpQrCodeValue.spread;
|
app.globalData.spread = mapeMpQrCodeValue.spread;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
if (options.spread) app.globalData.spread = options.spread; //非小程序扫码进入情况下,直接获取url中的分销员id保存在globalDta中
|
if (options.spread) app.globalData.spread = options.spread; //非小程序扫码进入情况下,直接获取url中的分销员id保存在globalDta中
|
||||||
|
|
||||||
// #endif
|
// #endif
|
||||||
// #ifndef MP || APP-PLUS
|
// #ifndef MP || APP-PLUS
|
||||||
this.navH = 0;
|
this.navH = 0;
|
||||||
|
@ -431,6 +434,7 @@
|
||||||
if (this.isLogin && parseInt(app.globalData.spread) > 0) {
|
if (this.isLogin && parseInt(app.globalData.spread) > 0) {
|
||||||
silenceBindingSpread()
|
silenceBindingSpread()
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
let self = this;
|
let self = this;
|
||||||
|
|
|
@ -130,7 +130,7 @@
|
||||||
|
|
||||||
<!-- 加载logo -->
|
<!-- 加载logo -->
|
||||||
<view class="logobox" v-show="logoflag">
|
<view class="logobox" v-show="logoflag">
|
||||||
<image class="logoicon" :src="logoicon"></image>
|
<image class="logoicon" src="../../static/img/logo.png"></image>
|
||||||
<text>正在生成签署证书中...</text>
|
<text>正在生成签署证书中...</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
@ -316,7 +316,6 @@
|
||||||
codeImg: '',
|
codeImg: '',
|
||||||
qrcodeSize: 100,
|
qrcodeSize: 100,
|
||||||
order_id: '',
|
order_id: '',
|
||||||
logoicon: 'https://www.bing.com/th/id/OGC.2a900b3c36d322151e95758438f7969c?pid=1.7&rurl=http%3a%2f%2fimg.zcool.cn%2fcommunity%2f014d8456df99c332f875520fefa07d.gif&ehk=UeVN2KesER9OKAkq%2fTigaUKsvSNK%2bndZDjePMEecfmQ%3d',
|
|
||||||
evaluate: 0,
|
evaluate: 0,
|
||||||
cartInfo: [], //购物车产品
|
cartInfo: [], //购物车产品
|
||||||
orderInfo: {
|
orderInfo: {
|
||||||
|
|
|
@ -315,8 +315,9 @@
|
||||||
loginMobile({
|
loginMobile({
|
||||||
phone: that.account,
|
phone: that.account,
|
||||||
captcha: that.captcha,
|
captcha: that.captcha,
|
||||||
spread_spid: that.$Cache.get("spread")
|
spread_spid: that.$Cache.get("spread"),
|
||||||
// spread_spid: uni.getStorageSync('spid')
|
|
||||||
|
|
||||||
})
|
})
|
||||||
.then(res => {
|
.then(res => {
|
||||||
let data = res.data;
|
let data = res.data;
|
||||||
|
@ -358,8 +359,9 @@
|
||||||
account: that.account,
|
account: that.account,
|
||||||
captcha: that.captcha,
|
captcha: that.captcha,
|
||||||
password: that.password,
|
password: that.password,
|
||||||
spread_spid: that.$Cache.get("spread")
|
spread_spid: that.$Cache.get("spread"),
|
||||||
// spread_spid: uni.getStorageSync('spid') || 0
|
|
||||||
|
|
||||||
})
|
})
|
||||||
.then(res => {
|
.then(res => {
|
||||||
that.$util.Tips({
|
that.$util.Tips({
|
||||||
|
@ -420,7 +422,9 @@
|
||||||
loginH5({
|
loginH5({
|
||||||
account: that.account,
|
account: that.account,
|
||||||
password: that.password,
|
password: that.password,
|
||||||
spread_spid: that.$Cache.get("spread")
|
spread_spid: that.$Cache.get("spread"),
|
||||||
|
|
||||||
|
|
||||||
}).then(({data}) => {
|
}).then(({data}) => {
|
||||||
this.$store.commit("LOGIN", {
|
this.$store.commit("LOGIN", {
|
||||||
'token': data.token,
|
'token': data.token,
|
||||||
|
|
|
@ -160,7 +160,6 @@
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
// 正面身份证
|
|
||||||
positiveImg: '', //自己图片路径
|
positiveImg: '', //自己图片路径
|
||||||
upLoadPositiveImg: 'https://tse1-mm.cn.bing.net/th/id/OIP-C.zrlmSg7klHyl3uDBB-nG3wAAAA?w=280&h=170&c=7&r=0&o=5&pid=1.7', // 反面身份证
|
upLoadPositiveImg: 'https://tse1-mm.cn.bing.net/th/id/OIP-C.zrlmSg7klHyl3uDBB-nG3wAAAA?w=280&h=170&c=7&r=0&o=5&pid=1.7', // 反面身份证
|
||||||
reverseImg: '', //自己图片路径
|
reverseImg: '', //自己图片路径
|
||||||
|
@ -787,12 +786,13 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-bottom: 1px solid #ccc;
|
border-bottom: 1px solid #ccc;
|
||||||
|
|
||||||
text {
|
text {
|
||||||
margin-right: 80rpx;
|
margin-right: 80rpx;
|
||||||
|
width: 160rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
|
width: 100%;
|
||||||
height: 80rpx;
|
height: 80rpx;
|
||||||
line-height: 80rpx;
|
line-height: 80rpx;
|
||||||
font-size: 26rpx;
|
font-size: 26rpx;
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
</view>
|
</view>
|
||||||
<!-- 加载logo -->
|
<!-- 加载logo -->
|
||||||
<view class="logobox" v-show="logoflag">
|
<view class="logobox" v-show="logoflag">
|
||||||
<image class="logoicon" :src="logoicon"></image>
|
<image class="logoicon" src="../../../static/img/logo.png"></image>
|
||||||
<text>正在生成签署证书中...</text>
|
<text>正在生成签署证书中...</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -151,7 +151,6 @@
|
||||||
orderStatus: 0, //订单状态
|
orderStatus: 0, //订单状态
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 20,
|
limit: 20,
|
||||||
logoicon: 'https://www.bing.com/th/id/OGC.2a900b3c36d322151e95758438f7969c?pid=1.7&rurl=http%3a%2f%2fimg.zcool.cn%2fcommunity%2f014d8456df99c332f875520fefa07d.gif&ehk=UeVN2KesER9OKAkq%2fTigaUKsvSNK%2bndZDjePMEecfmQ%3d',
|
|
||||||
payMode: [{
|
payMode: [{
|
||||||
name: "微信支付",
|
name: "微信支付",
|
||||||
icon: "icon-weixinzhifu",
|
icon: "icon-weixinzhifu",
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
<!-- 加载logo -->
|
<!-- 加载logo -->
|
||||||
<view class="logobox" v-show="logoflag">
|
<view class="logobox" v-show="logoflag">
|
||||||
<image class="logoicon" :src="logoicon"></image>
|
<image class="logoicon" src="../../../static/img/logo.png"></image>
|
||||||
<text>正在生成订单中,请稍等...</text>
|
<text>正在生成订单中,请稍等...</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -38,8 +38,6 @@
|
||||||
shopobj: {},
|
shopobj: {},
|
||||||
ordermo: '',
|
ordermo: '',
|
||||||
logoflag:true,
|
logoflag:true,
|
||||||
logoicon: 'https://www.bing.com/th/id/OGC.2a900b3c36d322151e95758438f7969c?pid=1.7&rurl=http%3a%2f%2fimg.zcool.cn%2fcommunity%2f014d8456df99c332f875520fefa07d.gif&ehk=UeVN2KesER9OKAkq%2fTigaUKsvSNK%2bndZDjePMEecfmQ%3d',
|
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(option) {
|
onLoad(option) {
|
||||||
|
@ -47,7 +45,7 @@
|
||||||
this.timer = setInterval(() => {
|
this.timer = setInterval(() => {
|
||||||
this.ordermo = this.$Cache.get('ordernobh')
|
this.ordermo = this.$Cache.get('ordernobh')
|
||||||
this.logoflag = false
|
this.logoflag = false
|
||||||
console.log(this.ordermo)
|
// console.log(this.ordermo)
|
||||||
}, 3000); // 定时器时间设置为1秒
|
}, 3000); // 定时器时间设置为1秒
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
<!-- 加载logo -->
|
<!-- 加载logo -->
|
||||||
<view class="logobox" v-show="logoflag">
|
<view class="logobox" v-show="logoflag">
|
||||||
<image class="logoicon" :src="logoicon"></image>
|
<image class="logoicon" src="../../../static/img/logo.png"></image>
|
||||||
<text>正在签约中,请稍等...</text>
|
<text>正在签约中,请稍等...</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
@ -49,7 +49,6 @@
|
||||||
flag: false,
|
flag: false,
|
||||||
text: '失败',
|
text: '失败',
|
||||||
logoflag:true,
|
logoflag:true,
|
||||||
logoicon: 'https://www.bing.com/th/id/OGC.2a900b3c36d322151e95758438f7969c?pid=1.7&rurl=http%3a%2f%2fimg.zcool.cn%2fcommunity%2f014d8456df99c332f875520fefa07d.gif&ehk=UeVN2KesER9OKAkq%2fTigaUKsvSNK%2bndZDjePMEecfmQ%3d',
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(option) {
|
onLoad(option) {
|
||||||
|
|
|
@ -307,7 +307,7 @@
|
||||||
let configAppMessage = {
|
let configAppMessage = {
|
||||||
desc: '分销海报',
|
desc: '分销海报',
|
||||||
title: this.userInfo.nickname + '-分销海报',
|
title: this.userInfo.nickname + '-分销海报',
|
||||||
link: '/pages/index/index?spread=' + this.uid,
|
link: '/pages/index/index?spread=' + this.uid ,
|
||||||
imgUrl: this.spreadList[0].pic
|
imgUrl: this.spreadList[0].pic
|
||||||
};
|
};
|
||||||
this.$wechat.wechatEvevt(["updateAppMessageShareData", "updateTimelineShareData"],
|
this.$wechat.wechatEvevt(["updateAppMessageShareData", "updateTimelineShareData"],
|
||||||
|
|
|
@ -46,8 +46,8 @@
|
||||||
<script>
|
<script>
|
||||||
const app = getApp();
|
const app = getApp();
|
||||||
let statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
let statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
||||||
import mobileLogin from '@/components/login_mobile/index.vue'
|
import mobileLogin from '@/components/login_mobile/index.vue';
|
||||||
import atModel from '@/components/accredit/index.vue'
|
import atModel from '@/components/accredit/index.vue';
|
||||||
import {
|
import {
|
||||||
mapGetters
|
mapGetters
|
||||||
} from "vuex";
|
} from "vuex";
|
||||||
|
@ -66,8 +66,7 @@
|
||||||
} from '@/config/app';
|
} from '@/config/app';
|
||||||
import {
|
import {
|
||||||
getUserInfo,
|
getUserInfo,
|
||||||
spread,
|
spread
|
||||||
channelId
|
|
||||||
} from '@/api/user.js'
|
} from '@/api/user.js'
|
||||||
import Routine from '@/libs/routine';
|
import Routine from '@/libs/routine';
|
||||||
import wechat from "@/libs/wechat";
|
import wechat from "@/libs/wechat";
|
||||||
|
@ -146,6 +145,7 @@
|
||||||
//if(!code) location.replace(decodeURIComponent(decodeURIComponent(option.query.back_url)));
|
//if(!code) location.replace(decodeURIComponent(decodeURIComponent(option.query.back_url)));
|
||||||
if (code && this.options.scope !== 'snsapi_base') {
|
if (code && this.options.scope !== 'snsapi_base') {
|
||||||
let spread = app.globalData.spread ? app.globalData.spread : 0;
|
let spread = app.globalData.spread ? app.globalData.spread : 0;
|
||||||
|
|
||||||
//公众号授权登录回调 wechatAuth(code, Cache.get("spread"), loginType)
|
//公众号授权登录回调 wechatAuth(code, Cache.get("spread"), loginType)
|
||||||
wechat.auth(code, spread).then(res => {
|
wechat.auth(code, spread).then(res => {
|
||||||
if (res.type === 'register') {
|
if (res.type === 'register') {
|
||||||
|
@ -252,6 +252,7 @@
|
||||||
let userInfo = {};
|
let userInfo = {};
|
||||||
userInfo.code = code;
|
userInfo.code = code;
|
||||||
userInfo.spread_spid = app.globalData.spread; //获取推广人ID
|
userInfo.spread_spid = app.globalData.spread; //获取推广人ID
|
||||||
|
|
||||||
userInfo.avatar = '';
|
userInfo.avatar = '';
|
||||||
userInfo.nickName = '微信用户';
|
userInfo.nickName = '微信用户';
|
||||||
userInfo.type = 'routine'
|
userInfo.type = 'routine'
|
||||||
|
@ -267,6 +268,7 @@
|
||||||
let userInfo = res.userInfo;
|
let userInfo = res.userInfo;
|
||||||
userInfo.code = code;
|
userInfo.code = code;
|
||||||
userInfo.spread_spid = app.globalData.spread; //获取推广人ID
|
userInfo.spread_spid = app.globalData.spread; //获取推广人ID
|
||||||
|
|
||||||
userInfo.avatar = userInfo.userInfo.avatarUrl;
|
userInfo.avatar = userInfo.userInfo.avatarUrl;
|
||||||
userInfo.city = userInfo.userInfo.city;
|
userInfo.city = userInfo.userInfo.city;
|
||||||
userInfo.country = userInfo.userInfo.country;
|
userInfo.country = userInfo.userInfo.country;
|
||||||
|
@ -306,6 +308,8 @@
|
||||||
if (app.globalData.spread) {
|
if (app.globalData.spread) {
|
||||||
spread(app.globalData.spread).then(res => {}) //登录成功后读取spread绑定分销关系
|
spread(app.globalData.spread).then(res => {}) //登录成功后读取spread绑定分销关系
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
self.$util.Tips({
|
self.$util.Tips({
|
||||||
title: res,
|
title: res,
|
||||||
icon: 'success'
|
icon: 'success'
|
||||||
|
|
|
@ -612,17 +612,21 @@ export default {
|
||||||
let v1 = values[0].split(":");
|
let v1 = values[0].split(":");
|
||||||
if (v1[0] === 'pid') {
|
if (v1[0] === 'pid') {
|
||||||
result.spread = v1[1];
|
result.spread = v1[1];
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
result.id = v1[1];
|
result.id = v1[1];
|
||||||
}
|
}
|
||||||
let v2 = values[1].split(":");
|
let v2 = values[1].split(":");
|
||||||
if (v2[0] === 'pid') {
|
if (v2[0] === 'pid') {
|
||||||
result.spread = v2[1];
|
result.spread = v2[1];
|
||||||
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
result.id = v2[1];
|
result.id = v2[1];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
result.spread = values[0].split(":")[1];
|
result.spread = values[0].split(":")[1];
|
||||||
|
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user