diff --git a/api/http.js b/api/http.js
index 9cd5832..792be50 100644
--- a/api/http.js
+++ b/api/http.js
@@ -1,9 +1,9 @@
-const baseURL = 'http://192.168.0.112:8088/api/';
-
+const baseURL= 'http://192.168.0.111:8088/api/';
+// const baseURL= "https://www.cyjyyjy.com/api/"
export function $http(methods,url,params){
var header = {
'content-type': 'application/json',
- 'Authorization' :'Bearer '+ wx.getStorageSync('token') || '',
+ 'Authorization':'Bearer '+ wx.getStorageSync('token') || '',
'dept': '22'
};
return new Promise((resolve,reject)=>{
@@ -29,7 +29,7 @@ export function $http(methods,url,params){
} else{
wx.showToast({
title: '服务器错误,请稍后再试!',
- icon : 'none'
+ icon: 'none'
})
reject(err)
}
@@ -38,7 +38,7 @@ export function $http(methods,url,params){
wx.hideLoading();
wx.showToast({
title: '服务器错误,请稍后再试!',
- icon : 'none'
+ icon: 'none'
})
reject(err)
}
diff --git a/api/user.js b/api/user.js
index 1e7cbac..8e053cb 100644
--- a/api/user.js
+++ b/api/user.js
@@ -15,7 +15,7 @@ export function saleLeads(data){
// 获取我的团队
export function getMyTeam(){
- return http.$http('get','getTeam')
+ return http.$http('post','user/myTeam')
}
// 积分动态
diff --git a/pages/companyInfo/index.wxml b/pages/companyInfo/index.wxml
index 627fb17..907ddb3 100644
--- a/pages/companyInfo/index.wxml
+++ b/pages/companyInfo/index.wxml
@@ -6,13 +6,12 @@
- 深圳市瑞梦思时代科技有限公司,瑞蓢国际集团旗下全资子公司,以能量家居系统、智慧健康睡眠生态系统为主打的核心品牌。当前旗下产品包括“重塑本元”、“吉祥卧”床垫,“少年强”青少年床垫,旅行垫,魔术减负能量背包等。\n
- 瑞梦思以“专注每一天,健康每一夜”为目标,为人们研发贯穿生活各方面的能量家居产品,让每个家庭,每个人都能从源头开始防患于未然,远离亚健康,享受真正健康轻松的幸福生活。
+ 深圳市瑞梦思时代科技有限公司,瑞蓢国际集团旗下全资子公司,以能量家居系统、智慧健康睡眠生态系统为主打的核心品牌。当前旗下产品包括“重塑本元”、“吉祥卧”床垫,“少年强”青少年床垫,旅行垫,魔术减负能量背包等。\n瑞梦思以“专注每一天,健康每一夜”为目标,为人们研发贯穿生活各方面的能量家居产品,让每个家庭,每个人都能从源头开始防患于未然,远离亚健康,享受真正健康轻松的幸福生活。
-
+
diff --git a/pages/companyInfo/index.wxss b/pages/companyInfo/index.wxss
index 5f75be8..9358444 100644
--- a/pages/companyInfo/index.wxss
+++ b/pages/companyInfo/index.wxss
@@ -17,6 +17,7 @@
.title-box{
width: 100%;
height: 92rpx;
+ margin: 32rpx 0;
}
.title-box image{
width: 100%;
diff --git a/pages/goodsDetail/index.js b/pages/goodsDetail/index.js
index 80985a9..1ae0a32 100644
--- a/pages/goodsDetail/index.js
+++ b/pages/goodsDetail/index.js
@@ -33,8 +33,9 @@ Page({
},
getProductDetail(){
store.getProductDetail(this.data.form.id).then((res)=>{
+
+ res.data.data.storeInfo.description.replace(/\
- {{detail.storeInfo.storeName}}
- ¥{{detail.storeInfo.price}}
- 原价:¥{{detail.storeInfo.otPrice}}
+ {{detail.storeInfo.storeName || '瑞梦思'}}
+ ¥{{detail.storeInfo.price || 0}}
+ 原价:¥{{detail.storeInfo.otPrice || 0}}
- 销量:{{detail.storeInfo.sales}}
+ 销量:{{detail.storeInfo.sales || 0}}
注:提现需在每月20-26日进行,其他时间不可提现
diff --git a/pages/user/index.js b/pages/user/index.js
index b536a71..ea1e8e4 100644
--- a/pages/user/index.js
+++ b/pages/user/index.js
@@ -1,6 +1,6 @@
// pages/user/index.js
const app = getApp()
-const userApi = require('../../api/user.js')
+const user = require('../../api/user.js')
Page({
/**
@@ -14,10 +14,7 @@ Page({
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
- // userApi.getMyTeam().then((res)=>{
- // console.log(res)
- // })
-
+
},
/**
@@ -27,7 +24,7 @@ Page({
this.getUserInfo()
},
getUserInfo(){
- userApi.getUserInfo().then((res)=> {
+ user.getUserInfo().then((res)=> {
this.setData({
userInfo: res.data.data
})
@@ -38,6 +35,11 @@ Page({
url: '/pages/user/cashOut/index?brokeragePrice=' + this.data.userInfo.brokeragePrice,
})
},
+ call(){
+ wx.makePhoneCall({
+ phoneNumber: '15623111593',
+ })
+ },
/**
* 生命周期函数--监听页面隐藏
*/
diff --git a/pages/user/index.wxml b/pages/user/index.wxml
index 24fe7d1..9341eb6 100644
--- a/pages/user/index.wxml
+++ b/pages/user/index.wxml
@@ -67,7 +67,7 @@
diff --git a/pages/user/myTeam/index.js b/pages/user/myTeam/index.js
index ae57f29..99de556 100644
--- a/pages/user/myTeam/index.js
+++ b/pages/user/myTeam/index.js
@@ -1,20 +1,33 @@
// pages/user/myTeam/index.js
+const app = getApp()
+const user = require('../../../api/user.js')
Page({
/**
* 页面的初始数据
*/
data: {
-
+ teamInfo: {},
+ loadingStatus: '没有更多了。。。'
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
-
+ this.setData({
+ userInfo: wx.getStorageSync('userInfo')
+ })
+ this.getTeam()
+ },
+ getTeam(){
+ user.getMyTeam().then((res)=>{
+ this.setData({
+ teamInfo: res.data.data
+ })
+ wx.stopPullDownRefresh()
+ })
},
-
/**
* 生命周期函数--监听页面初次渲染完成
*/
@@ -47,7 +60,7 @@ Page({
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
-
+ this.getTeam()
},
/**
diff --git a/pages/user/myTeam/index.json b/pages/user/myTeam/index.json
index 9825d33..2270d4c 100644
--- a/pages/user/myTeam/index.json
+++ b/pages/user/myTeam/index.json
@@ -1,4 +1,5 @@
{
"usingComponents": {},
- "navigationBarTitleText": "我的团队"
+ "navigationBarTitleText": "我的团队",
+ "enablePullDownRefresh": true
}
\ No newline at end of file
diff --git a/pages/user/myTeam/index.wxml b/pages/user/myTeam/index.wxml
index ef7b4e1..a0bfbb7 100644
--- a/pages/user/myTeam/index.wxml
+++ b/pages/user/myTeam/index.wxml
@@ -3,15 +3,15 @@
今日新增
- 20人
+ {{teamInfo.todayNum}}人
一级
- 12人
+ {{teamInfo.firstNum}}人
二级
- 8人
+ {{teamInfo.secondNum}}人
@@ -21,10 +21,16 @@
二级积分收益
-
+
+ {{item.name}}
+ {{item.firstNum}}积分
+ {{item.secondNum}}积分
+
+
+ {{loadingStatus}}