开关完善

This commit is contained in:
3321822538@qq.com 2024-10-17 17:14:57 +08:00
parent ae1b256a92
commit b6e0d261cf
6 changed files with 17 additions and 13 deletions

View File

@ -21,7 +21,7 @@ const install = (Vue, vm) => {
Vue.prototype.$u.http.setConfig({ Vue.prototype.$u.http.setConfig({
// baseUrl: 'http://192.168.2.15:10002', // baseUrl: 'http://192.168.2.15:10002',
baseUrl: 'https://kg.chuangtewl.com/prod-api', baseUrl: 'https://kg.chuangtewl.com/prod-api',
// loadingText: '努力加载中~', // loadingText: '加载中...',
// loadingTime: 1000, // loadingTime: 1000,
// 设置自定义头部content-type // 设置自定义头部content-type
header: { header: {

View File

@ -698,6 +698,7 @@
duration: 5000 duration: 5000
}) })
this.czflag = false this.czflag = false
this.zhifuflag = false
setTimeout(()=>{ setTimeout(()=>{
uni.hideLoading() uni.hideLoading()
},5000) },5000)
@ -1035,6 +1036,7 @@
console.log("1收到设备发来的自定义数据结果", this.ver_data); console.log("1收到设备发来的自定义数据结果", this.ver_data);
setTimeout(()=>{ setTimeout(()=>{
this.czflag = false this.czflag = false
this.zhifuflag = false
uni.hideLoading() uni.hideLoading()
// uni.showToast({ // uni.showToast({
// title: '', // title: '',

View File

@ -178,7 +178,7 @@
</view> </view>
<image class="jt" src="https://api.ccttiot.com/smartmeter/img/static/ukdy921M8MNe9XDid0WI" mode=""></image> <image class="jt" src="https://api.ccttiot.com/smartmeter/img/static/ukdy921M8MNe9XDid0WI" mode=""></image>
</view> </view>
<view class="cont" @click="topage(1)"> <!-- <view class="cont" @click="topage(1)">
<view class="top"> <view class="top">
<image src="https://api.ccttiot.com/smartmeter/img/static/uhsqQVT62DOTdW8qW7ez" mode="" <image src="https://api.ccttiot.com/smartmeter/img/static/uhsqQVT62DOTdW8qW7ez" mode=""
style="width: 44rpx;height: 44rpx;"></image> style="width: 44rpx;height: 44rpx;"></image>
@ -194,7 +194,7 @@
<view class="bot">充值</view> <view class="bot">充值</view>
</view> </view>
<image class="jt" src="https://api.ccttiot.com/smartmeter/img/static/ukdy921M8MNe9XDid0WI" mode=""></image> <image class="jt" src="https://api.ccttiot.com/smartmeter/img/static/ukdy921M8MNe9XDid0WI" mode=""></image>
</view> </view> -->
</view> </view>
<view class=""> <view class="">
<view class="cont" @click="topage(5)" v-if="modelId.some(tag => tag == 2)"> <view class="cont" @click="topage(5)" v-if="modelId.some(tag => tag == 2)">

View File

@ -265,7 +265,7 @@
storeId: '', storeId: '',
pagenum: 1, pagenum: 1,
wateringList: [], wateringList: [],
pagesize: 20, pagesize: 999,
isLoading: false, isLoading: false,
noMoreData: false, noMoreData: false,
total: 0, total: 0,
@ -790,9 +790,9 @@
} }
} else if (Math.abs(deltaY) > 50 && Math.abs(deltaX) < Math.abs(deltaY)) { } else if (Math.abs(deltaY) > 50 && Math.abs(deltaX) < Math.abs(deltaY)) {
if (deltaY < 100) { if (deltaY < 100) {
// console.log("") console.log("上滑")
let sum = this.total / this.pagesize let sum = this.total / this.pagesize
// console.log(this.wateringList.length,this.total); console.log(this.wateringList.length,this.total);
if (this.wateringList.length < this.total) { if (this.wateringList.length < this.total) {
this.getlist() this.getlist()
} }
@ -1041,7 +1041,7 @@
getlist() { getlist() {
this.shujuflag = false this.shujuflag = false
// if (this.storeId == null) { // if (this.storeId == null) {
this.$u.get(`/app/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}&orderByColumn=${this.pxzt}&isAsc=asc`).then((res) => { this.$u.get(`/app/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}&orderByColumn=${this.pxzt}&isAsc=desc`).then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.xiaflag = true this.xiaflag = true
this.shuaxin = false this.shuaxin = false
@ -1049,14 +1049,13 @@
if (res.rows.length > 0) { if (res.rows.length > 0) {
// //
this.shujuflag = false this.shujuflag = false
uni.hideLoading()
} else { } else {
// //
this.shujuflag = true this.shujuflag = true
uni.hideLoading()
} }
if (this.pagenum > 1) { if (this.pagenum > 1) {
this.pagenum++ this.pagenum++
// this.wateringList = []
this.wateringList = this.wateringList.concat(res.rows) this.wateringList = this.wateringList.concat(res.rows)
this.shujuflag = false this.shujuflag = false
// console.log(this.wateringList); // console.log(this.wateringList);
@ -1075,6 +1074,7 @@
} }
}) })
}) })
uni.hideLoading()
} else { } else {
this.pagenum++ this.pagenum++
this.wateringList = res.rows this.wateringList = res.rows
@ -1093,11 +1093,13 @@
}) })
}) })
// console.log(this.groupLists) // console.log(this.groupLists)
uni.hideLoading()
} }
this.isLoading = false this.isLoading = false
} else { } else {
this.shuaxin = false this.shuaxin = false
this.xiaflag = true this.xiaflag = true
uni.hideLoading()
} }
}) })
}, },

View File

@ -18,7 +18,7 @@
}, },
onShareAppMessage: function() { onShareAppMessage: function() {
return { return {
title: '创亿康', title: '创享物联',
path: '/pages/index/index' path: '/pages/index/index'
} }
}, },
@ -26,7 +26,7 @@
// //
onShareTimeline: function() { onShareTimeline: function() {
return { return {
title: '创亿康', title: '创享物联',
query: '', query: '',
path: '/pages/index/index' path: '/pages/index/index'
} }

View File

@ -18,7 +18,7 @@
}, },
onShareAppMessage: function() { onShareAppMessage: function() {
return { return {
title: '创亿康', title: '创享物联',
path: '/pages/index/index' path: '/pages/index/index'
} }
}, },
@ -26,7 +26,7 @@
// //
onShareTimeline: function() { onShareTimeline: function() {
return { return {
title: '创亿康', title: '创享物联',
query: '', query: '',
path: '/pages/index/index' path: '/pages/index/index'
} }