小钻风 5 years ago
parent 98b4136609
commit 98bc06e300

@ -3,6 +3,7 @@
"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [
{
"path": "pages/index/index",
"style": {
@ -90,6 +91,7 @@
"enablePullDownRefresh": false
}
},
{
"path": "pages/shop/shop",
"style": {
@ -355,8 +357,8 @@
{
"path": "pages/webview/webview",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
// "navigationBarTitleText": "",
// "enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},
@ -474,8 +476,28 @@
"enablePullDownRefresh": false
}
}
,{
},
{
"path": "pages/apply/apply",
"style": {
"navigationBarTitleText": "填写资料"
}
},
{
"path": "pages/apply/success",
"style": {
"navigationBarTitleText": "提交成功"
}
},
{
"path": "pages/invite/invite",
"style": {
"navigationBarTitleText": "推荐升级",
"enablePullDownRefresh": false
// "navigationStyle": "custom"
}
},
{
"path" : "pages/shopOrders/shopOrders",
"style" :
{
@ -505,6 +527,7 @@
"navigationStyle": "custom"
}
},
{
"path": "goodsCart/index",
"style": {
@ -518,6 +541,7 @@
"navigationStyle": "custom"
}
},
{
"path": "agreement/goods",
"style": {

@ -0,0 +1,200 @@
<template>
<view class="apply_box">
<div class="diaTitle">请填写以下信息</div>
<view class="list">
<view class="li">
<view class="lf">
<text>姓名</text>
</view>
<view class="rg">
<input class="uni-input" v-model="fromData.name" focus placeholder="输入姓名" />
</view>
</view>
<view class="li">
<view class="lf">
<text>手机号</text>
</view>
<view class="rg">
<input class="uni-input" maxlength="11" type="number" v-model="fromData.Phone" placeholder="输入手机号" />
</view>
</view>
<view class="li">
<view class="lf">
<text>微信号</text>
</view>
<view class="rg">
<input class="uni-input" v-model="fromData.wechat" placeholder="输入微信号" />
</view>
</view>
<view class="li">
<view class="lf">
<text>社群粉丝数量</text>
</view>
<view class="rg">
<input class="uni-input" v-model="fromData.socialFansNum" type="number" placeholder="输入社群粉丝数量" />
</view>
</view>
<view class="li">
<view class="lf">
<text>曾做过的平台</text>
</view>
<view class="rg">
<input class="uni-input" v-model="fromData.platformBefore" placeholder="例如:云集、返利网" />
</view>
</view>
<view class="li">
<view class="lf">
<text>月最高销售额</text>
</view>
<view class="rg">
<input class="uni-input" v-model="fromData.highestSocialRecord" type="digit" placeholder="输入销售额" />
</view>
<text></text>
</view>
<view class="li">
<view class="lf">
<text>所在地区</text>
</view>
<view class="rg flex justify-between align-center">
<picker mode="region" @change="chooseAddress" style="flex: 1;">
<text style="color: #757575;" v-if="!address"></text>
<text v-else>{{address}}</text>
</picker>
<text class="cuIcon-right text-gray"></text>
</view>
</view>
</view>
<!-- https://h5.reecook.cn/app/autoopen.html -->
<view class="mybotton sub" v-if="subBool" @click="sub"></view>
<view v-else class="mybotton">提交</view>
</view>
</template>
<script>
export default {
data() {
return {
fromData:{
name:null,
Phone: null,
wechat: null,
province: null,
city: null,
zone: null,
socialFansNum:null,
platformBefore: null,
highestSocialRecord:null,
introCode: 'UEU1P3P9'
},
address: null,
subBool:false,
};
},
computed:{
comSubBool (){
let arr;
if ((arr = Object.keys(this.fromData).filter(v=>!this.fromData[v])).length<=0) {
this.subBool = true
}else{
this.subBool = false
}
}
},
methods: {
sub() {
this.$u.post('/api/v1/diamond_register/inform', {
name:this.fromData.name,
Phone: this.fromData.Phone,
wechat: this.fromData.wechat,
province: this.fromData.province,
city: this.fromData.city,
zone: this.fromData.zone,
socialFansNum:parseInt(this.fromData.socialFansNum),
platformBefore: this.fromData.platformBefore,
highestSocialRecord:parseInt(this.fromData.highestSocialRecord),
introCode: this.fromData.introCode
}).then(res => {
console.log(res.data);
if (res.data.code == "FAIL") {
this.$u.toast(res.data.msg);
return
}
uni.navigateTo({
url: "./success"
})
})
},
chooseAddress(e) {
console.log(e)
this.fromData.province = e.detail.value[0]
this.fromData.city= e.detail.value[1]
this.fromData.zone= e.detail.value[2]
this.address =e.detail.value.join(' ')
console.log(this.address)
}
},
onLoad(options) {
this.introCode = options.code
console.log(options)
}
}
</script>
<style scoped lang="scss">
.list {
.li {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1rpx solid #f8f8f8;
padding: 20rpx 0rpx;
.lf {
width: 220rpx;
font-size: 32rpx;
color: #000;
}
.rg {
flex: 1;
}
}
}
.apply_box {
width: 750rpx;
height: 100vh;
background: #FFFFFF;
padding: 20rpx 40rpx;
}
.mybotton {
background: grey;
text-align: center;
color: #fff;
line-height: 90rpx;
border-radius: 8rpx;
font-size: 36rpx;
margin-top: 80rpx;
-webkit-box-shadow: 2rpx 4rpx 6rpx #dedede;
box-shadow: 2rpx 4rpx 6rpx #dedede;
&.sub {
background: #d5101a;
-webkit-box-shadow: 2rpx 4rpx 6rpx #f1b1b4;
box-shadow: 2rpx 4rpx 6rpx #f1b1b4;
}
}
.diaTitle {
font-size: 36rpx;
border-left: 6rpx solid #da2e38;
padding-left: 20rpx;
font-weight: 700;
margin-bottom: 20rpx;
}
</style>

@ -0,0 +1,92 @@
<template>
<view class="">
<view class="logo-box">
<image :src="IMAGE_URL+'/logo.png'" mode="widthFix"></image>
</view>
<view class="txt-box">
<view class="title">
<text>提交成功</text>
</view>
<view class="txt">
<text>您的资料已提交工作人员将在3个工作日内与您联系请耐心等待审核</text>
</view>
</view>
<!-- https://h5.reecook.cn/app/autoopen.html -->
<!-- <u-popup v-model="show" mode="center">
<view>
<image src="../../static/wx.png" mode="widthFix" style="width: 400rpx;"></image>
</view>
</u-popup> -->
<button class="btn" @click="toWebview">
<text>去下载APP</text>
</button>
</view>
</template>
<script>
export default {
data() {
return {
IMAGE_URL: this.IMAGE_URL,
show: false
};
},
mounted() {
},
// methods: {
// // webview
// toWebview() {
// this.show = true
// // uni.navigateTo({
// // url:'/pages/webview/webview?src='+'https://cdn.reecook.cn/website/www/activity/e.html'
// // })
// },
// }
}
</script>
<style lang="scss" scoped>
.logo-box {
image {
width: 30%;
display: block;
margin: 80rpx auto 0rpx;
}
}
.txt-box {
text-align: center;
.title {
margin-top: 80rpx;
text-align: center;
font-size: 50rpx;
color: rgb(64, 64, 64);
}
.txt {
margin: 0rpx auto;
text-align: center;
font-size: 26rpx;
width: 80%;
}
}
.btn {
text-align: center;
color: #fff;
line-height: 90rpx;
border-radius: 10rpx;
font-size: 36rpx;
background: #d5101a;
-webkit-box-shadow: 2rpx 4rpx 6rpx #f1b1b4;
box-shadow: 2rpx 4rpx 6rpx #f1b1b4;
position: absolute;
bottom: 120rpx;
left: 40rpx;
right: 40rpx;
}
</style>

@ -8,7 +8,7 @@
<text class="cuIcon-home" v-if="type=='share'"></text>
<text class="cuIcon-back" v-else></text>
</view>
<!-- <view class="isLoading bg-white flex flex-direction justify-center align-center" style="height: 100vh;width: 100vw;"v-if="showLoading">
<!-- <view class="isLoading bg-white flex flex-direction justify-center align-center" style="height: 100vh;width: 100vw;"v-if="showLoading">
<image src="/static/loading-white.gif" mode="widthFix" style="width:500upx"></image>
</view> -->
<view class="">
@ -79,57 +79,79 @@
<text class="cuIcon-roundcheck text-red"></text>售后无忧
</view>
</view>
</view>
<view class="box bg-white">
<view class="item flex justify-between">
<view class="span">领券</view>
<view class="text-hidden flex-sub txt">暂无优惠券</view>
</view>
<view class="item flex justify-between" @tap="specModel(true)">
<view class="span">规格</view>
<view class="text-hidden flex-sub txt">{{checkedSku}}</view>
<text class="cuIcon-right"></text>
</view>
</view>
<view class="box bg-white" v-if="goodsDetail.isFerme">
<view class="item flex justify-between align-center">
<view class="span">进口税</view>
<view class="text-hidden flex-sub txt flex align-center justify-start">
<view class="tab_ferme">包税</view> 预计{{goodsDetail.price.max.ferme}}由瑞库客
</view>
</view>
</view>
<view class="box bg-white">
<view class="item flex justify-between">
<view class="span">领券</view>
<view class="text-hidden flex-sub txt">暂无优惠券</view>
</view>
<view class="item flex justify-between" @tap="specModel(true)">
<view class="span">规格</view>
<view class="text-hidden flex-sub txt">{{checkedSku}}</view>
<text class="cuIcon-right"></text>
</view>
</view>
<view class="box bg-white" v-if="goodsDetail.isFerme">
<view class="item flex justify-between align-center">
<view class="span">进口税</view>
<view class="text-hidden flex-sub txt flex align-center justify-start">
<view class="tab_ferme">包税</view> 预计{{goodsDetail.price.max.ferme}}由瑞库客
</view>
</view>
</view>
<view class="box bg-white" v-if="goodsDetail.isImport">
<view class="item flex justify-between">
<view class="span">送至</view>
<view class="text-hidden flex-sub txt"> <text style="color: #CC1B4F;">请选择</text> 收货地址</view>
<text class="cuIcon-right"></text>
</view>
<!-- <view class="item flex justify-between">
<view class="span"></view>
<view class="text-hidden flex-sub txt " style="padding-right: 88rpx;">
<view class="flex align-end justify-between goods_box">
<view class="goods_icon">
<image src="/static/goodsIcon/just.png" mode="widthFix"></image>
<text>正品保障</text>
</view>
<view class="goods_hr">
</view>
<view class="goods_icon">
<image src="/static/goodsIcon/details.png" mode="widthFix"></image>
<text>国内仓</text>
<!--
is_import 是否进口商品
storehouse 进口商品仓库 0= 1=国内仓 2=海外直邮 3=保税仓-->
<view class="box bg-white" v-if="goodsDetail.isImport && goodsDetail.storehouse">
<view class="item flex justify-between">
<view class="span">送至</view>
<view class="text-hidden flex-sub txt">
<picker mode="region" @change="chooseAddress">
<block v-if="addressList.length < 1"><text style="color: #CC1B4F;"></text></block>
<block v-else>{{address}}</block>
</picker>
</view>
<text class="cuIcon-right"></text>
</view>
<view class="item flex justify-between">
<view class="span"></view>
<view class="text-hidden flex-sub txt " style="padding-right: 88rpx;">
<view class="flex align-start justify-between goods_box" style="margin: 16rpx 0;">
<view class="goods_icon">
<image :src="`${IMAGE_URL}/recook-weapp/goodsIcon/just.png`" mode="widthFix"></image>
<text>正品保障</text>
</view>
<view class="goods_hr">
</view>
<view class="goods_icon" v-if="goodsDetail.storehouse === 1">
<image v-if="addressList.length > 1" :src="`${IMAGE_URL}/recook-weapp/goodsIcon/details_active.png`" mode="widthFix"></image>
<image v-else :src="`${IMAGE_URL}/recook-weapp/goodsIcon/details.png`" mode="widthFix"></image>
<text>国内仓</text>
</view>
<view class="goods_hr">
<view class="goods_icon" v-else-if="goodsDetail.storehouse === 2">
<image v-if="addressList.length > 1" :src="`${IMAGE_URL}/recook-weapp/goodsIcon/aircraft_active.png`" mode="widthFix"></image>
<image v-else :src="`${IMAGE_URL}/recook-weapp/goodsIcon/aircraft.png`" mode="widthFix"></image>
<text>海外直邮</text>
</view>
<view class="goods_icon" v-else-if="goodsDetail.storehouse === 3">
<image v-if="addressList.length > 1" :src="`${IMAGE_URL}/recook-weapp/goodsIcon/bonded_active.png`" mode="widthFix"></image>
<image v-else :src="`${IMAGE_URL}/recook-weapp/goodsIcon/bonded.png`" mode="widthFix"></image>
<text>保税仓</text>
</view>
<view class="goods_hr">
</view>
<view class="goods_icon">
<image src="/static/goodsIcon/location.png" mode="widthFix"></image>
<text>宁波市</text>
</view>
</view>
</view>
</view> -->
<block v-if="addressList.length > 1">
<image :src="`${IMAGE_URL}/recook-weapp/goodsIcon/location_active.png`" mode="widthFix"></image>
<text>{{addressList[addressList.length-1]}}</text>
</block>
<block v-else>
<image :src="`${IMAGE_URL}/recook-weapp/goodsIcon/location.png`" mode="widthFix"></image>
</block>
</view>
</view>
</view>
</view>
</view>
<view class="box bg-white">
<view class="item flex justify-between" @tap="parameterModel(true)">
@ -139,30 +161,30 @@
</view>
<view class="item flex justify-between">
<view class="span">服务</view>
<view class="text-hidden flex-sub txt">
<block v-if="goodsDetail.storehouse===1">
<view>
不支持7天无理由退换货
</view>
</block>
<block v-else-if="goodsDetail.storehouse===3||goodsDetail.storehouse===2">
<view>
跨境商品不支持开发票
</view>
<view>
不支持7天无理由退换货
</view>
</block>
<block v-else>
<view>
正品保证 | 售后无忧
</view>
</block>
<view class="text-hidden flex-sub txt">
<block v-if="goodsDetail.storehouse===1">
<view>
不支持7天无理由退换货
</view>
</block>
<block v-else-if="goodsDetail.storehouse===3||goodsDetail.storehouse===2">
<view>
跨境商品不支持开发票
</view>
<view>
不支持7天无理由退换货
</view>
</block>
<block v-else>
<view>
正品保证 | 售后无忧
</view>
</block>
</view>
</view>
</view>
<view class="box bg-white">
<view class="item flex justify-between" @tap="toGoodsComments">
<view class="txt flex text-black" style="font-size: 28rpx;">用户评价<text style="color: #AAAAAA;">({{goodsDetail.evaluations.total}})</text></view>
@ -242,7 +264,7 @@
<view class="" style="height: 100rpx;"></view>
<view class="detail-bottom bg-white shadow flex justify-between align-center">
<view class="flex text-center flex-sub justify-around">
<navigator url="../../packageA/goodsCart/index" style="width: 100rpx;text-align: center;">
<navigator url="../../packageA/goodsCart/index" style="width: 100rpx;text-align: center;">
<text class="cuIcon-cart" style="font-size: 48rpx;"></text>
<view style="font-size: 20rpx;">购物车</view>
</navigator>
@ -338,34 +360,35 @@
<view @tap="tipModel(false)"></view>
</view>
</u-popup>
<!-- 规格弹框 -->
<!-- 规格弹框 -->
<u-popup v-model="parameterShow" mode="bottom" border-radius="20">
<view class="text-center text-black" style="line-height: 100rpx;font-size: 32rpx;font-weight: 900;">产品参数</view>
<view class="parameter-box" style="height: 40vh;">
<view class="parameter-list">
<view class="lf">
<text>品牌</text>
</view>
<view class="rg">
<text>{{goodsDetail.brand.name}}</text>
</view>
</view>
<view class="parameter-list">
<view class="lf">
<text>条形码</text>
</view>
<view class="rg">
<view class="" v-for="(item,index) in goodsDetail.sku" :key='index'><text style="padding-right: 16rpx;">{{item.name}} </text> <text>{{item.code}}</text></view>
</view>
</view>
</view>
<view class="tip-btn text-center text-white">
<view @tap="parameterModel(false)"></view>
<view class="text-center text-black" style="line-height: 100rpx;font-size: 32rpx;font-weight: 900;">产品参数</view>
<view class="parameter-box" style="height: 40vh;">
<view class="parameter-list">
<view class="lf">
<text>品牌</text>
</view>
<view class="rg">
<text>{{goodsDetail.brand.name}}</text>
</view>
</view>
<view class="parameter-list">
<view class="lf">
<text>条形码</text>
</view>
<view class="rg">
<view class="" v-for="(item,index) in goodsDetail.sku" :key='index'><text style="padding-right: 16rpx;">{{item.name}}
</text> <text>{{item.code}}</text></view>
</view>
</view>
</view>
<view class="tip-btn text-center text-white">
<view @tap="parameterModel(false)"></view>
</view>
</u-popup>
<!-- 规格弹框 -->
<u-popup v-model="showSpecs" mode="bottom" border-radius="20" :closeable="true">
<view class="spec-box">
@ -415,8 +438,8 @@
import dynamics from 'components/dynamics.vue'
export default {
data() {
return {
parameterShow:false,
return {
parameterShow: false,
swiperImgList: [],
roleLevel: 500,
STATIC_URL: this.STATIC_URL,
@ -440,6 +463,8 @@
containerIndex: 0,
dynamics: [], //,
showBtn: false, //
addressList: [],
address: null
}
},
components: {
@ -459,8 +484,8 @@
if (uni.getStorageSync("auth")) {
this.showBtn = true
}
this.id = parseInt(options.id)
console.log(this.id+'-------')
this.id = parseInt(options.id)
console.log(this.id + '-------')
this.getGoodsDetail()
},
computed: {
@ -475,9 +500,9 @@
mounted() {
console.log(uni.getStorageSync("userInfo").id)
},
methods: {
parameterModel(bool){
this.parameterShow = bool
methods: {
parameterModel(bool) {
this.parameterShow = bool
},
getUrlKey(url, name) { //url
return decodeURIComponent(
@ -648,10 +673,10 @@
this.$u.toast(res.data.msg);
return
}
let preViewMsg = res.data.data
let preViewMsg = res.data.data
preViewMsg.isImport = this.goodsDetail.isImport
this.$store.commit('updatePreOrderMsg', preViewMsg);
console.log(res.data.data)
this.$store.commit('updatePreOrderMsg', preViewMsg);
console.log(res.data.data)
// return
uni.navigateTo({
url: "/pages/confirmOrder/confirmOrder"
@ -710,6 +735,12 @@
// console.log(this.shopItemInfo[result])
return this.shopItemInfo[result].inventory == 0 ? false : true; //truefalse
},
chooseAddress(e) {
console.log(e)
this.addressList = e.detail.value
this.address = this.addressList.join("-")
console.log(this.addressList)
},
//
downloadPic(pics) {
console.log(pics)
@ -765,58 +796,61 @@
}
</script>
<style lang="scss">
.parameter-box{
.parameter-list{
display: flex;
margin-bottom: 30rpx;
.lf{
color: #121212;
padding-left: 100rpx;
width: 250rpx;
}
.rg{
color: #bebebe;
}
}
}
.goods_box{
.goods_icon{
text-align: center;
width: 96rpx;
image{
width: 52rpx;
margin: 0 auto;
}
}
// .goods_hr{
// flex: 1;
// height: 1px;
// border: 1px dashed #CCCCCC;
// }
<style lang="scss">
.parameter-box {
.parameter-list {
display: flex;
margin-bottom: 30rpx;
.lf {
color: #121212;
padding-left: 100rpx;
width: 250rpx;
}
.rg {
color: #bebebe;
}
}
}
.goods_box {
.goods_icon {
text-align: center;
width: 96rpx;
image {
width: 52rpx;
margin: 0 auto;
}
}
}
//
.goodsDetail-swiper {
.u-swiper-indicator {
bottom: 100rpx !important;
}
}
.tab_ferme{
display: flex;
justify-content: center;
align-items: center;
width: 64rpx;
height: 28rpx;
background: #FFE5ED;
border-radius: 15rpx;
margin-right: 20rpx;
font-size: 20rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #CC1B4F;
.tab_ferme {
display: flex;
justify-content: center;
align-items: center;
width: 64rpx;
height: 28rpx;
background: #FFE5ED;
border-radius: 15rpx;
margin-right: 20rpx;
font-size: 20rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #CC1B4F;
}
.back {
position: absolute;
top: 80rpx;
@ -1089,7 +1123,7 @@
font-size: 26rpx;
color: #AAAAAA;
.span {
.span {
width: 96rpx;
}

@ -243,11 +243,9 @@
}
},
onShareAppMessage(res) {
if (res.from === 'button') { //
console.log(res.target.dataset)
}
return {
title: "我在买" + res.target.dataset.title + ",快来看看吧!",
path: '/pages/goodsDetail/goodsDetail?id=' + res.target.dataset.id + "&type=share",
@ -255,6 +253,8 @@
}
},
onLoad() {
// uni.getStorageSync("userInfo").id
if (uni.getStorageSync("localCity")) {
//
this.currentCity = this.cityName = uni.getStorageSync("localCity")
@ -357,12 +357,11 @@
return
}
this.swipers = res.data.data
console.log(res.data.data)
console.log(res)
this.swipers.map(item => {
item.url = this.IMAGE_URL + item.url
})
this.bgImage = this.swipers[0].url
console.log(this.swipers)
});
},
//
@ -374,6 +373,7 @@
return
}
this.posts = res.data.data
console.log(res)
});
},
//

@ -0,0 +1,82 @@
<template>
<view class="">
<view class="box">
<!-- IMAGE_URL -->
<image :src="`${IMAGE_URL}/recook-weapp/shop/invite.jpg`" mode="widthFix" style="width: 750rpx;"></image>
<view class="tips" @tap='tipsShow'>
</view>
<u-popup v-model="show" mode="center" :closeable='true'>
<view>
<image :src="`${IMAGE_URL}/recook-weapp/shop/invite_tips.jpg`" mode="widthFix" style="width: 600rpx;"></image>
</view>
</u-popup>
<button class="invite_btn" open-type="share">
</button>
</view>
</view>
</template>
<script>
export default {
data() {
return {
IMAGE_URL: this.IMAGE_URL,
show: false
};
},
methods: {
tipsShow() {
this.show = true
console.log(uni.getStorageSync("userInfo"))
}
},
onShareAppMessage(res) {
if (res.from === 'button') { //
console.log(res.target.dataset)
}
let code = uni.getStorageSync("userInfo").introCode
return {
title: "瑞库客邀你玩转店铺,快来一起体验吧!",
path: '/pages/apply/apply?code=' + code + "&type=share"
}
},
// onShareAppMessage(res) {
// if (res.from === 'button') { //
// console.log(res.target.dataset)
// }
// return {
// title: "",
// path: '/pages/goodsDetail/goodsDetail?id=' + res.target.dataset.id + "&type=share",
// imageUrl: this.IMAGE_URL + res.target.dataset.url
// }
// },
}
</script>
<style lang="scss" scoped>
.box {
position: relative;
.invite_btn {
position: absolute;
bottom: 75rpx;
left: 10%;
right: 10%;
opacity: 0;
height: 110rpx;
}
.tips {
position: absolute;
bottom: 235rpx;
left: 34%;
right: 37%;
opacity: 0;
height: 70rpx;
}
}
</style>

@ -177,18 +177,18 @@
<view class="box bg-white">
<view class="subtitle" style="line-height: 60rpx;border: 0;">邀请升级</view>
<view class="invite-box flex justify-between text-white" v-if="roleLevel==100">
<navigator class="bg-img" :style="'width: 260rpx;height: 300rpx;background-image: url('+STATIC_URL+'t03.png'">
<navigator url="../invite/invite" class="bg-img" :style="'width: 260rpx;height: 300rpx;background-image: url('+STATIC_URL+'t03.png'">
<view class="">推荐砖石店铺</view>
<view class="">邀请好友·福利双赢</view>
</navigator>
<view class="flex flex-direction justify-between">
<view class="flex justify-between">
<navigator url="../myRecommend/myRecommend" class="bg-img" :style="'width: 204rpx;height: 150rpx;background-image: url('+STATIC_URL+'t04.png);'">
<view class="">我的团队</view>
<view class="">我的邀请</view>
<view class="">呼朋唤友·享收益</view>
</navigator>
<navigator url="../myInvite/myInvite" class="bg-img" :style="'width: 204rpx;height: 150rpx;background-image: url('+STATIC_URL+'t05.png);'">
<view class="">我的邀请</view>
<view class="">我的团队</view>
<view class="">有福同享·真壕友</view>
</navigator>
</view>
@ -209,8 +209,6 @@
</navigator>
</view>
</view>
<!-- 订单中心 -->
<view class="box bg-white">
<navigator url="../shopOrders/shopOrders" hover-class="none" class="subtitle flex justify-between">

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

@ -49,7 +49,7 @@ const install = (Vue, vm) => {
config.header["X-Recook-ID"] = id
config.header["X-Recook-Token"] = token
config.header["Device-Type"] = "wxapp"
console.log("请求参数为========",config.data)
// console.log("请求参数为========",config.data)
config.data = Encrypt(config.data)
}
// 响应拦截

Loading…
Cancel
Save