分佣:商品详情增加绑定用户
parent
15b7e3d94c
commit
ad4eb04f49
|
@ -27,7 +27,7 @@ export function wechatAuth(code, spread) {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取登录授权login
|
* 获取登录授权login
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getLogo()
|
export function getLogo()
|
||||||
{
|
{
|
||||||
|
@ -113,4 +113,4 @@ export function appleLogin(data) {
|
||||||
*/
|
*/
|
||||||
export function iosBinding(data) {
|
export function iosBinding(data) {
|
||||||
return request.post("ios/binding/phone", data, { noAuth : true });
|
return request.post("ios/binding/phone", data, { noAuth : true });
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,3 +51,10 @@ export function createBrokerageWithdraw(data) {
|
||||||
export function getBrokerageRecordPage(data) {
|
export function getBrokerageRecordPage(data) {
|
||||||
return request.get('app-api/trade/brokerage-record/page', data);
|
return request.get('app-api/trade/brokerage-record/page', data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获得商品的分销金额
|
||||||
|
export function getProductBrokeragePrice(spuId) {
|
||||||
|
return request.get('app-api/trade/brokerage-record/get-product-brokerage-price', {
|
||||||
|
spuId
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<view class='sharing-packets' :class='sharePacket.isState ? "on":""'>
|
<view class='sharing-packets' :class='!sharePacket.enabled ? "on":""'>
|
||||||
<view class='iconfont icon-guanbi' @click="closeShare"></view>
|
<view class='iconfont icon-guanbi' @click="closeShare"></view>
|
||||||
<view class='line'></view>
|
<view class='line'></view>
|
||||||
<view class='sharing-con' @click='goShare'>
|
<view class='sharing-con' @click='goShare'>
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
type: Object,
|
type: Object,
|
||||||
default: function() {
|
default: function() {
|
||||||
return {
|
return {
|
||||||
isState: true,
|
enabled: true,
|
||||||
priceName:'' // 金额
|
priceName:'' // 金额
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
// let domain = 'http://apif.java.crmeb.net'
|
let domain = 'http://apif.java.crmeb.net'
|
||||||
let domain = 'http://127.0.0.1:48080'
|
// let domain = 'http://127.0.0.1:48080'
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
// 请求域名 格式: https://您的域名
|
// 请求域名 格式: https://您的域名
|
||||||
|
|
|
@ -293,6 +293,7 @@
|
||||||
import * as CouponApi from '@/api/promotion/coupon.js';
|
import * as CouponApi from '@/api/promotion/coupon.js';
|
||||||
import * as PromotionActivityApi from '@/api/promotion/activity.js';
|
import * as PromotionActivityApi from '@/api/promotion/activity.js';
|
||||||
import * as TradeCartApi from '@/api/trade/cart.js';
|
import * as TradeCartApi from '@/api/trade/cart.js';
|
||||||
|
import * as BrokerageAPI from '@/api/trade/brokerage.js'
|
||||||
import * as Util from '@/utils/util.js';
|
import * as Util from '@/utils/util.js';
|
||||||
import * as ProductUtil from '@/utils/product.js';
|
import * as ProductUtil from '@/utils/product.js';
|
||||||
// #ifdef MP
|
// #ifdef MP
|
||||||
|
@ -372,7 +373,7 @@
|
||||||
posterbackgd: '/static/images/posterbackgd.png', // 海报的背景,用于海报的生成
|
posterbackgd: '/static/images/posterbackgd.png', // 海报的背景,用于海报的生成
|
||||||
storeImage: '', // 下载商品图片后的文件地址
|
storeImage: '', // 下载商品图片后的文件地址
|
||||||
sharePacket: { // 分销弹出信息
|
sharePacket: { // 分销弹出信息
|
||||||
isState: true, // 默认不显示
|
enabled: true, // 默认不显示
|
||||||
},
|
},
|
||||||
actionSheetHidden: true, // 微信小程序的右上角分享的弹出
|
actionSheetHidden: true, // 微信小程序的右上角分享的弹出
|
||||||
|
|
||||||
|
@ -421,11 +422,11 @@
|
||||||
|
|
||||||
// #ifdef MP || APP-PLUS
|
// #ifdef MP || APP-PLUS
|
||||||
// 小程序链接进入获取绑定关系id
|
// 小程序链接进入获取绑定关系id
|
||||||
// TODO 芋艿:分销???
|
// 绑定分销关系
|
||||||
setTimeout(()=>{
|
setTimeout(()=>{
|
||||||
if(options.spread){
|
if(options.spread){
|
||||||
app.globalData.spread = options.spread;
|
app.globalData.spread = options.spread;
|
||||||
spread(options.spread).then(res => {})
|
BrokerageAPI.bindBrokerageUser(options.spread).then(res => {})
|
||||||
}
|
}
|
||||||
},2000)
|
},2000)
|
||||||
// #endif
|
// #endif
|
||||||
|
@ -448,9 +449,9 @@
|
||||||
let mapeMpQrCodeValue = this.$util.formatMpQrCodeData(qrCodeValue);
|
let mapeMpQrCodeValue = this.$util.formatMpQrCodeData(qrCodeValue);
|
||||||
app.globalData.spread = mapeMpQrCodeValue.spread;
|
app.globalData.spread = mapeMpQrCodeValue.spread;
|
||||||
this.id = mapeMpQrCodeValue.id;
|
this.id = mapeMpQrCodeValue.id;
|
||||||
// TODO 芋艿:code 是啥
|
// 绑定分销用户
|
||||||
setTimeout(()=>{
|
setTimeout(()=>{
|
||||||
spread(mapeMpQrCodeValue.spread).then(res => {}).catch(res => {})
|
BrokerageAPI.bindBrokerageUser(mapeMpQrCodeValue.spread).then(res => {}).catch(res => {})
|
||||||
},2000)
|
},2000)
|
||||||
} else {
|
} else {
|
||||||
this.id = options.id;
|
this.id = options.id;
|
||||||
|
@ -513,8 +514,8 @@
|
||||||
this.$set(this, 'skuMap', ProductUtil.convertProductSkuMap(skus));
|
this.$set(this, 'skuMap', ProductUtil.convertProductSkuMap(skus));
|
||||||
|
|
||||||
// 设置分销相关变量 // TODO 芋艿:待接入
|
// 设置分销相关变量 // TODO 芋艿:待接入
|
||||||
this.$set(this.sharePacket, 'priceName', res.data.priceName);
|
// this.$set(this.sharePacket, 'priceName', res.data.priceName);
|
||||||
this.$set(this.sharePacket, 'isState', Math.floor(res.data.priceName) === 0);
|
// this.$set(this.sharePacket, 'enabled', Math.floor(res.data.priceName) === 0);
|
||||||
|
|
||||||
// 设置营销活动
|
// 设置营销活动
|
||||||
PromotionActivityApi.getActivityListBySpuId(this.id).then(res => {
|
PromotionActivityApi.getActivityListBySpuId(this.id).then(res => {
|
||||||
|
@ -532,6 +533,7 @@
|
||||||
if (this.isLogin) {
|
if (this.isLogin) {
|
||||||
this.getCartCount();
|
this.getCartCount();
|
||||||
this.isFavoriteExists();
|
this.isFavoriteExists();
|
||||||
|
this.getBrokeragePrice();
|
||||||
// #ifdef H5
|
// #ifdef H5
|
||||||
this.make();
|
this.make();
|
||||||
this.ShareInfo();
|
this.ShareInfo();
|
||||||
|
@ -566,6 +568,13 @@
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
getBrokeragePrice: function() {
|
||||||
|
BrokerageAPI.getProductBrokeragePrice(this.id).then(res => {
|
||||||
|
// this.sharePacket = res.data
|
||||||
|
// console.log(this.sharePacket)
|
||||||
|
this.$set(this.sharePacket, 'isState', false);
|
||||||
|
});
|
||||||
|
},
|
||||||
/**
|
/**
|
||||||
* 查找默认选中的 sku,设置到 attr.productSelect 中
|
* 查找默认选中的 sku,设置到 attr.productSelect 中
|
||||||
*
|
*
|
||||||
|
@ -698,7 +707,6 @@
|
||||||
TradeCartApi.addCart({
|
TradeCartApi.addCart({
|
||||||
count: sku.cart_num,
|
count: sku.cart_num,
|
||||||
skuId: sku.id,
|
skuId: sku.id,
|
||||||
addStatus: true // TODO 芋艿:去掉 addStatus 字段
|
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
// 关闭 attr 组件
|
// 关闭 attr 组件
|
||||||
this.attr.cartAttr = false;
|
this.attr.cartAttr = false;
|
||||||
|
@ -1191,7 +1199,7 @@
|
||||||
* 关闭分销的弹窗
|
* 关闭分销的弹窗
|
||||||
*/
|
*/
|
||||||
closeChange: function() {
|
closeChange: function() {
|
||||||
this.$set(this.sharePacket, 'isState', true);
|
this.$set(this.sharePacket, 'enabled', false);
|
||||||
},
|
},
|
||||||
|
|
||||||
// ========== 顶部 nav 相关的方法 ==========
|
// ========== 顶部 nav 相关的方法 ==========
|
||||||
|
|
Loading…
Reference in New Issue