diff --git a/page_components/fuwu/index.vue b/page_components/fuwu/index.vue index 9914bc4..6ea7466 100644 --- a/page_components/fuwu/index.vue +++ b/page_components/fuwu/index.vue @@ -1,9 +1,9 @@ @@ -47,7 +50,13 @@ tittxt: "授权登录", chooseType: true, usertype: '', - login: false + login: false, + id:'' + } + }, + onLoad(option) { + if(option.id){ + this.id = option.id } }, methods: { @@ -94,11 +103,21 @@ }, async ceshi() { this.$u.get("/app/user/userInfo").then((res) => { - uni.navigateTo({ - url: '/pages/shouye/index' - }) + if(this.id == 1){ + uni.navigateBack() + }else{ + uni.navigateTo({ + url: '/pages/shouye/index' + }) + } }) }, + + btnbudl(){ + uni.navigateTo({ + url: '/pages/shouye/index' + }) + } } } diff --git a/pages/shouye/index.vue b/pages/shouye/index.vue index fe72f1b..60f2330 100644 --- a/pages/shouye/index.vue +++ b/pages/shouye/index.vue @@ -100,10 +100,57 @@ bgc: { backgroundColor: "#8883F0", }, + deviceobj:{} }; }, - onLoad() { - // this.initOtherCovers(); // 初始化其他覆盖物 + onLoad(option) { + if (option.flag) { + let id = option.id + this.$u.get(`/app/device/${id}/withSuitList`).then((res) => { + if (res.code == 200) { + this.deviceobj = res.data; + } + }) + let that = this + uni.showModal({ + title: '提示', + content: '该设备未被绑定,你需进行绑定吗?', + success: function(res) { + if (res.confirm) { + let data = { + deviceNo: id + } + that.$u.put("/app/device/bind", data).then(res => { + if (res.code == 200) { + uni.showModal({ + title: '提示', + content: '绑定成功,需前去设置吗?', + success: function(res) { + if (res.confirm) { + uni.navigateTo({ + url: '/page_user/sbdetail?id=' +that.deviceobj.deviceId + }) + } else if (res.cancel) { + + } + } + }) + } else { + uni.showToast({ + title: res.msg, + icon: 'none', + duration: 1000 + }) + } + }) + } else if (res.cancel) { + uni.navigateTo({ + url: '/pages/shouye/index' + }) + } + } + }) + } }, onShow() { this.logins() @@ -474,16 +521,19 @@ .dateactive { background: #E1F3ED; } + page { background: linear-gradient(180deg, #8883F0 10%, rgba(255, 255, 255, 0) 100%); border-radius: 0rpx 0rpx 0rpx 0rpx; } + .page { width: 750rpx; padding-left: 34rpx; padding-right: 34rpx; box-sizing: border-box; height: 100%; + .tip_box { position: fixed; left: 72rpx; @@ -734,7 +784,8 @@ left: -34rpx; padding-top: 22rpx; border-radius: 54rpx 54rpx 0 0; - margin-top: 20rpx; + margin-top: 20rpx; + view { text-align: center; width: 676rpx; @@ -781,8 +832,8 @@ width: 642rpx; height: 812rpx; margin: auto; - border-radius: 30rpx; - overflow: hidden; + border-radius: 30rpx; + overflow: hidden; } .tubiao { diff --git a/pages/tj.vue b/pages/tj.vue index ac95084..03f4efb 100644 --- a/pages/tj.vue +++ b/pages/tj.vue @@ -26,7 +26,7 @@ - + {{yeartime.year + '年' + yeartime.month + '月' + item.createDay + '日'}} @@ -62,16 +62,16 @@ - - + @@ -116,8 +116,9 @@ deviceId: '', userType: '', totalRecharge: 0, - - + dateday:'', + timelists:'', + monthdui:'' } }, onLoad() { @@ -146,6 +147,8 @@ const now = new Date(); this.yeartime.year = now.getFullYear() this.yeartime.month = now.getMonth() + 1 + this.monthdui = this.yeartime.month + this.dateday = String(now.getDate()).padStart(2, '0') this.gettime() }, methods: { @@ -172,10 +175,19 @@ this.$u.get('app/bill/landlordCount', data).then((res) => { if (res.code == 200) { this.timelist = res.data - this.totalRecharge = res.totalRecharge - this.chartData = this.timelist.map(item => item.recharge); - this.chartday = this.timelist.map(item => item.createDay + '日'); - + if(this.monthdui != this.yeartime.month){ + this.timelists = this.timelist + this.totalRecharge = res.totalRecharge + this.chartData = this.timelist.map(item => item.recharge); + this.chartday = this.timelist.map(item => item.createDay + '日'); + }else{ + this.timelists = this.timelist.slice(0, 14) + this.timelists.reverse() + this.totalRecharge = res.totalRecharge + this.chartData = this.timelist.slice(0, this.dateday).map(item => item.recharge) + this.chartday = this.timelist.slice(0, this.dateday).map(item => item.createDay + '日'); + } + this.loging = true for (let i = 0; i < this.timelist.length; i++) { this.recharge += this.timelist[i].recharge @@ -185,6 +197,7 @@ } }) }, + gettimes() { let data = {