This commit is contained in:
3321822538@qq.com 2024-09-03 18:02:48 +08:00
parent 8532f7a46d
commit 739f6524a4
8 changed files with 141 additions and 57 deletions

View File

@ -20,8 +20,8 @@ const install = (Vue, vm) => {
// }, // },
// }); // });
Vue.prototype.$u.http.setConfig({ Vue.prototype.$u.http.setConfig({
baseUrl: 'http://192.168.2.223:3302', // baseUrl: 'http://192.168.2.223:3302',
// baseUrl: 'https://kang.chuangtewl.com/prod-api', baseUrl: 'https://kang.chuangtewl.com/prod-api',
loadingText: '努力加载中~', loadingText: '努力加载中~',
loadingTime: 800, loadingTime: 800,
// 设置自定义头部content-type // 设置自定义头部content-type

View File

@ -3,17 +3,10 @@
<u-navbar title="使用说明" :border-bottom="false" :background="bgc" title-color='#3D3D3D' back-icon-color="#3D3D3D" <u-navbar title="使用说明" :border-bottom="false" :background="bgc" title-color='#3D3D3D' back-icon-color="#3D3D3D"
title-size='36' height='44'></u-navbar> title-size='36' height='44'></u-navbar>
<view class="" v-html="cont"> <!-- <view class="cont" v-html="cont">
</view>
</view> -->
<rich-text class="cont" :nodes="cont"></rich-text>
<view class="" style="position: fixed;top: 0;left: 0;width: 100%;height: 100vh;z-index: -1;"> <view class="" style="position: fixed;top: 0;left: 0;width: 100%;height: 100vh;z-index: -1;">
@ -72,7 +65,12 @@
/deep/ .u-icon__icon { /deep/ .u-icon__icon {
padding-bottom: 15rpx; padding-bottom: 15rpx;
} }
.cont{
width: 100%;
height: 89vh;
overflow: scroll;
margin-top: 10rpx;
}
page { page {
background: #F4F5F7; background: #F4F5F7;
} }

View File

@ -106,7 +106,7 @@
</view> </view>
<view class="jy" v-for="(item,index) in obj.bonusList" :key="index"> <view class="jy" v-for="(item,index) in obj.bonusList" :key="index">
<view class="one">{{item.arrivalName == undefined ? '--' : item.arrivalName}}<text v-if="item.arrivalType == 1">平台</text><text v-if="item.arrivalType == 2">公司</text><text v-if="item.arrivalType == 3">合作伙伴商</text><text v-if="item.arrivalType == 4">渠道商</text><text v-if="item.arrivalType == 5">创业者</text><text v-if="item.arrivalType == 6">经营场所</text>{{item.point}}%</view> <view class="one">{{item.arrivalName == undefined ? '--' : item.arrivalName}}<text v-if="item.arrivalType == 1">平台</text><text v-if="item.arrivalType == 2">公司</text><text v-if="item.arrivalType == 3">合作伙伴商</text><text v-if="item.arrivalType == 4">渠道商</text><text v-if="item.arrivalType == 5">创业者</text><text v-if="item.arrivalType == 6">经营场所</text>{{item.point}}%</view>
<view class="two">{{item.amount== undefined ? '--' : otem.amount}}</view> <!-- <view class="two">{{item.amount== undefined ? '--' : otem.amount}}</view> -->
</view> </view>
</view> </view>
</view> </view>
@ -145,7 +145,7 @@
}, },
methods: { methods: {
getxq(){ getxq(){
this.$u.get(`/agent/device/${this.deviceId}`).then(res =>{ this.$u.get(`/app/device/${this.deviceId}`).then(res =>{
if(res.code == 200){ if(res.code == 200){
this.obj = res.data this.obj = res.data
} }

View File

@ -67,7 +67,7 @@
</view> </view>
<view class="xiaoav"> <view class="xiaoav">
<view class="">所属创业者</view> <view class="">所属创业者</view>
<view class="" v-if="item.userName">{{item.userName == undefined ? '--' : item.userName}}</view> <view class="" v-if="item.userId">{{item.userName == undefined ? '--' : item.userName}}</view>
<view class="wbd" v-else @click.stop="btntz(item.deviceId)">未绑定</view> <view class="wbd" v-else @click.stop="btntz(item.deviceId)">未绑定</view>
</view> </view>
</view> </view>
@ -107,10 +107,7 @@
room: '', room: '',
shows: false, shows: false,
showtz: false, showtz: false,
listtz: [{ listtz: [],
value: '1',
label: '张三'
}, ],
lists: [], lists: [],
list: [{ list: [{
value: '1', value: '1',
@ -131,10 +128,12 @@
type: 2, type: 2,
keyword: '', keyword: '',
statusList: '', statusList: '',
deviceId: '' deviceId: '',
type:''
} }
}, },
onLoad() { onLoad(option) {
this.type = option.type
this.getlist() this.getlist()
this.gettzr() this.gettzr()
this.getchangsuo() this.getchangsuo()
@ -237,6 +236,8 @@
icon: 'success', icon: 'success',
duration: 1000, duration: 1000,
}) })
this.wateringList = []
this.pagenum = 1
this.getlist() this.getlist()
} else { } else {
uni.showToast({ uni.showToast({
@ -265,6 +266,8 @@
icon: 'success', icon: 'success',
duration: 1000, duration: 1000,
}) })
this.wateringList = []
this.pagenum = 1
this.getlist() this.getlist()
} else { } else {
uni.showToast({ uni.showToast({
@ -276,21 +279,68 @@
}) })
}, },
// //
getlist() { getlist() {
this.$u.get( //
`/agent/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}&statusList=${this.statusList}&keyword=${this.keyword}` if(this.type == 2){
).then(res => { this.$u.get(
if (res.code == 200) { `/agent/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}&statusList=${this.statusList}&keyword=${this.keyword}`
this.total = res.total ).then(res => {
if (res.rows.length > 0) { if (res.code == 200) {
// this.total = res.total
this.wateringList = this.wateringList.concat(res.rows) if (res.rows.length > 0) {
this.pagenum++ //
this.wateringList = this.wateringList.concat(res.rows)
this.pagenum++
}
} }
} })
}) //
}else if(this.type == 4){
this.$u.get(
`/app/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}&statusList=${this.statusList}&keyword=${this.keyword}`
).then(res => {
if (res.code == 200) {
this.total = res.total
if (res.rows.length > 0) {
//
this.wateringList = this.wateringList.concat(res.rows)
this.pagenum++
}
}
})
//
}else if(this.type == 3){
this.$u.get(
`/biz/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}&statusList=${this.statusList}&keyword=${this.keyword}`
).then(res => {
if (res.code == 200) {
this.total = res.total
if (res.rows.length > 0) {
//
this.wateringList = this.wateringList.concat(res.rows)
this.pagenum++
}
}
})
//
}else if(this.type == 5){
this.$u.get(
`store/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}&statusList=${this.statusList}&keyword=${this.keyword}`
).then(res => {
if (res.code == 200) {
this.total = res.total
if (res.rows.length > 0) {
//
this.wateringList = this.wateringList.concat(res.rows)
this.pagenum++
}
}
})
}
}, },
// //
onScrollToLower() { onScrollToLower() {
if (this.total > this.wateringList.length) { if (this.total > this.wateringList.length) {
@ -329,22 +379,22 @@
}) })
}, },
// //
gettzr() { // gettzr() {
this.$u.get(`/biz/user/allInvestorList`).then(res => { // this.$u.get(`/biz/user/allInvestorList`).then(res => {
if (res.code == 200) { // if (res.code == 200) {
res.data.forEach(item => { // res.data.forEach(item => {
this.listtz.push({ // this.listtz.push({
label: item.userName, // label: item.userName,
value: item.userId // value: item.userId
}) // })
}) // })
} // }
}) // })
}, // },
// //
getchangsuo() { getchangsuo() {
this.$u.get(`/agent/user/allInvestorList`).then(res => { this.$u.get(`/agent/store/allList`).then(res => {
if (res.code == 200) { if (res.code == 200) {
res.data.forEach(item => { res.data.forEach(item => {
this.lists.push({ this.lists.push({

View File

@ -124,7 +124,7 @@
</view> </view>
<view class="list_val" @click="btnpage(4)"> <view class="list_val" @click="btnpage(4)">
<view class="lt"> <view class="lt">
<image src="https://api.ccttiot.com/smartmeter/img/static/uZTgZyEIQ1NCnGQEboQG" mode=""></image> <text>推广管理</text> <image src="https://api.ccttiot.com/smartmeter/img/static/uZTgZyEIQ1NCnGQEboQG" mode=""></image> <text>{{jytxt}}</text>
</view> </view>
<view class="rt"> <view class="rt">
<u-icon name="arrow-right" color="#3D3D3D" size="28"></u-icon> <u-icon name="arrow-right" color="#3D3D3D" size="28"></u-icon>
@ -157,7 +157,9 @@
firsTime:'', firsTime:'',
lasTime:'', lasTime:'',
infoobj:{}, infoobj:{},
tongobj:{} tongobj:{},
jytxt:'',
type:''
} }
}, },
onLoad() { onLoad() {
@ -194,6 +196,12 @@
this.$u.get(`/app/user/userInfo`).then(res => { this.$u.get(`/app/user/userInfo`).then(res => {
if(res.code == 200){ if(res.code == 200){
this.infoobj = res.data this.infoobj = res.data
this.type = res.data.type
if(res.data.type == 5){
this.jytxt = '场所管理'
}else{
this.jytxt = '推广管理'
}
this.gettongji() this.gettongji()
} }
}) })
@ -218,12 +226,18 @@
}) })
}else if(num == 3){ }else if(num == 3){
uni.navigateTo({ uni.navigateTo({
url:'/page_user/devicelist' url:'/page_user/devicelist?type=' + this.type
}) })
}else if(num == 4){ }else if(num == 4){
uni.navigateTo({ if(this.jytxt == '推广管理'){
url:'/page_user/tuiguang' uni.navigateTo({
}) url:'/page_user/tuiguang'
})
}else{
uni.navigateTo({
url:'/page_user/changsuo'
})
}
}else if(num == 5){ }else if(num == 5){
uni.navigateTo({ uni.navigateTo({
url:'/page_fenbao/listtaocan' url:'/page_fenbao/listtaocan'
@ -281,7 +295,7 @@
let yesterday = new Date() let yesterday = new Date()
yesterday.setDate(yesterday.getDate() - 1) yesterday.setDate(yesterday.getDate() - 1)
this.firsTime = this.formatDate(yesterday) this.firsTime = this.formatDate(yesterday)
this.lasTime = this.formatDate(new Date()) this.lasTime = this.formatDate(yesterday)
this.gettongji() this.gettongji()
} else if (num == 3) { } else if (num == 3) {
let today = new Date() let today = new Date()

View File

@ -120,7 +120,7 @@
canvasId: 'qrcode', canvasId: 'qrcode',
componentInstance: this, componentInstance: this,
text: 'https://kang.chuangtewl.com/sc?c=' + text, text: 'https://kang.chuangtewl.com/sc?c=' + text,
size: 150, size: 170,
margin: 0, margin: 0,
backgroundColor: '#ffffff', backgroundColor: '#ffffff',
foregroundColor: '#000000', foregroundColor: '#000000',

View File

@ -34,6 +34,9 @@
<view class="button" v-else> <view class="button" v-else>
马上加盟 立即赚钱 马上加盟 立即赚钱
</view> </view>
<view class="botwz" @click="btnxq">
商家合作角色权益与职责
</view>
</view> </view>
@ -78,6 +81,11 @@
} }
}, },
methods: { methods: {
btnxq(){
uni.navigateTo({
url:'/page_fenbao/sjhzxq'
})
},
confirm(){ confirm(){
this.type = '' this.type = ''
}, },
@ -166,6 +174,13 @@
page { page {
background-color: #F7FAFE; background-color: #F7FAFE;
} }
.botwz{
margin-top: 20rpx;
color: #8883F0;
font-size: 28rpx;
width: 100%;
text-align: center;
}
#active{ #active{
position: fixed; position: fixed;
bottom: 300rpx !important; bottom: 300rpx !important;

View File

@ -323,6 +323,13 @@
"enablePullDownRefresh": false, "enablePullDownRefresh": false,
"navigationStyle": "custom" "navigationStyle": "custom"
} }
},{
"path": "sjhzxq",
"style": {
"navigationBarTitleText": "上传",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
} }
] ]
} }