diff --git a/page_components/fuwu/index.vue b/page_components/fuwu/index.vue index d915805..149d626 100644 --- a/page_components/fuwu/index.vue +++ b/page_components/fuwu/index.vue @@ -17,7 +17,7 @@ - + - + 选择服务 @@ -57,7 +57,7 @@ v-for="(item,index) in deviceobj.suitList" :key="index" @click="btnactive(item)"> - {{item.name}} + {{item.name.length > 5 ? item.name.substring(0,5) + '...' : item.name}} {{item.value}} 分钟 @@ -128,7 +128,8 @@ onlineStatus: '', jine: '', dingobj: {}, - suitTimeUnit:'' + suitTimeUnit:'', + zfflag:true } }, onLoad(option) { @@ -362,7 +363,6 @@ duration: 1000 }) } else if (this.onlineStatus == 1) { - let that = this let data = { deviceNo: that.id, @@ -414,7 +414,6 @@ } }) } else { - if (this.ver_data == '') { this.czflag = true uni.showLoading({ diff --git a/page_components/newtaocan.vue b/page_components/newtaocan.vue index 61beda9..8a84cde 100644 --- a/page_components/newtaocan.vue +++ b/page_components/newtaocan.vue @@ -1,45 +1,28 @@ @@ -48,8 +31,8 @@ export default { data() { return { - list: '', - loading: false, + list: [], + loading:false, disabled: false, btnWidth: 180, show: false, @@ -59,105 +42,37 @@ backgroundColor: '#dd524d' } }], - deviceId: '', + deviceId:'', bgc: { backgroundColor: "#8883f0", }, - activeid: '', - checkboxes: [], - tcidlist: [], - titaoc: [] }; }, onLoad(option) { + console.log(option); this.deviceId = option.id - - }, - created() { - // 初始化checkboxes数组,每个元素都设为false(表示初始时不显示复选框) - this.checkboxes = new Array(this.list.length).fill(false); }, onShow() { - this.tcidlist = [] this.getlist() - setTimeout(() => { - this.getao() - }, 100) }, // 分享到好友(会话) - onShareAppMessage: function() { - return { - title: '创想物联', - path: '/pages/shouye/index' - } - }, - - // 分享到朋友圈 - onShareTimeline: function() { - return { - title: '创想物联', - query: '', - path: '/pages/shouye/index' - } - }, + onShareAppMessage: function () { + return { + title: '创想物联', + path: '/pages/shouye/index' + } + }, + + // 分享到朋友圈 + onShareTimeline: function () { + return { + title: '创想物联', + query: '', + path: '/pages/shouye/index' + } + }, methods: { - // 查询本人套餐 - getao() { - this.$u.get(`/app/suit/listByDeviceId/${this.deviceId}`).then(res => { - if (res.code == 200) { - if (res.data.length > 0) { - this.titaoc = res.data - - this.list.forEach(item => { - if (this.titaoc.some(titaocItem => titaocItem.sourceId === item.suitId)) { - this.titaoc.forEach(titaocItem => { - if (titaocItem.sourceId === item.suitId) { - this.tcidlist.push(item.suitId) - } - }) - let uniqueTcidlist = [...new Set(this.tcidlist)]; - this.tcidlist = uniqueTcidlist - } - }) - } - } - }) - }, - - btnactive(id, index) { - const indexInTcidList = this.tcidlist.indexOf(id); - if (indexInTcidList !== -1) { - this.tcidlist.splice(indexInTcidList, 1); - } else { - this.tcidlist.push(id); - } - console.log(this.tcidlist); - }, - - // 点击确定 - btnqd() { - this.$u.delete(`/app/suit/delByDevice/${this.deviceId}`).then(res=>{}) - - let numArr = this.tcidlist.map(item => parseInt(item, 10)) - let data = { - deviceId: this.deviceId, - suitIds: numArr - } - this.$u.post(`/app/suit/copy`, data).then((res) => { - if (res.code == 200) { - uni.showToast({ - title: res.msg, - icon: 'success', - duration: 1000, - }) - setTimeout(() => { - uni.navigateBack() - }, 1000) - } - }) - }, - getlist() { let data = { pageNum: 1, @@ -166,6 +81,7 @@ this.$u.get(`/app/suit/tempList`, data).then((res) => { if (res.code == 200) { this.list = res.rows + this.loading = true this.list = this.list.map(item => ({ ...item, checked: false, @@ -174,22 +90,21 @@ console.log(this.list); this.loading = true } - }); - }, - - btnedit(item) { - uni.navigateTo({ - url: '/page_fenbao/statulist/taocanlist/addtaocan/index?id=' + this.deviceId + '&suitId=' + - item.suitId }) }, - - click(item) { + + btnedit(item){ + uni.navigateTo({ + url:'/page_fenbao/statulist/taocanlist/addtaocan/index?id=' + this.deviceId + '&suitId=' + item.suitId + }) + }, + + click(item) { this.$u.delete(`/app/suit/${item.suitId}`).then((res) => { if (res.code == 200) { - this.$u.toast(`删除成功`); + this.$u.toast(`删除成功`); this.getlist() - } else { + }else{ uni.showToast({ title: res.msg, icon: 'none', @@ -197,7 +112,7 @@ }) } }); - + }, open(index) { this.list[index].show = true @@ -205,9 +120,9 @@ if (index != idx) this.list[idx].show = false; }) }, - btnadd() { + btnadd(){ uni.navigateTo({ - url: '/page_fenbao/statulist/taocanlist/addtaocan/index?id=' + '' + url:'/page_fenbao/statulist/taocanlist/addtaocan/index?id=' + this.deviceId }) } } @@ -215,22 +130,12 @@ \ No newline at end of file + diff --git a/page_fenbao/statulist/taocanlist/addtaocan/index.vue b/page_fenbao/statulist/taocanlist/addtaocan/index.vue index 69f925b..78039df 100644 --- a/page_fenbao/statulist/taocanlist/addtaocan/index.vue +++ b/page_fenbao/statulist/taocanlist/addtaocan/index.vue @@ -15,13 +15,18 @@ 通电时长 - - - - - {{array[index]}} + + + + + {{array[index]}} - + + + {{item}} + + + 详细说明 @@ -47,9 +52,10 @@ price: '', title: '', suitId: '', - array: ['日', '时', '分钟', '秒'], + array: ['天', '时', '分钟', '秒'], index: 2, - timewz:'' + timewz:'', + arrflag:false } }, onLoad(option) { @@ -80,8 +86,19 @@ } }, methods: { - bindPickerChange(e) { - this.index = e.detail.value + // bindPickerChange(e) { + // this.index = e.detail.value + // }, + btnxl(index){ + this.index = index + this.arrflag = false + }, + btnxz(){ + if(this.arrflag == true){ + this.arrflag = false + }else{ + this.arrflag = true + } }, gettaocan(suitId) { @@ -138,7 +155,7 @@ } else { if (this.title == '确定') { let data = { - deviceId: this.deviceId, + // deviceId: this.deviceId, name: this.name, value: this.value, price: this.price, @@ -160,7 +177,7 @@ } else { let data = { suitId: this.suitId, - deviceId: this.deviceId, + // deviceId: this.deviceId, name: this.name, value: this.value, price: this.price, @@ -204,13 +221,37 @@ page { background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%); } - + .arr_list{ + position: absolute; + top: 80rpx; + right: -20rpx; + background: #FFFFFF; + width: 140rpx; + height:320rpx; + box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1); + padding: 5rpx 0; + box-sizing: border-box; + border-radius: 10rpx; + z-index: 99; + .arr_item:last-child{ + border: none !important; + } + .arr_item{ + text-align: center; + height: 80rpx; + line-height: 80rpx; + border-bottom:1px solid #ccc; + } + } + .picker{ + margin-top: 30rpx; + } .page { width: 750rpx; position: fixed; top: 0; left: 0; - + .box { width: 750rpx; height: 1440rpx; diff --git a/page_fenbao/statulist/taocanlist/index.vue b/page_fenbao/statulist/taocanlist/index.vue index c512f8f..67cd40b 100644 --- a/page_fenbao/statulist/taocanlist/index.vue +++ b/page_fenbao/statulist/taocanlist/index.vue @@ -1,36 +1,62 @@