286 lines
6.1 KiB
Vue
286 lines
6.1 KiB
Vue
|
<template>
|
|||
|
<view class="page">
|
|||
|
<u-navbar title="选择套餐" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff"
|
|||
|
title-size='36' height='42'></u-navbar>
|
|||
|
|
|||
|
<view class="box" v-if="loading">
|
|||
|
<view class="box_list" v-for="(item, index) in list" :key="index" @click="btnactive(item.suitId,index)">
|
|||
|
<view :class="['boxlist', { active: tcidlist.includes(item.suitId) }]">
|
|||
|
<view :class="['toptime', { activewz: tcidlist.includes(item.suitId) }]">
|
|||
|
<text>{{item.name}}(通电时长:{{item.value}} <text v-if="item.timeUnit == 1">日</text> <text v-if="item.timeUnit == 2">时</text> <text v-if="item.timeUnit == 3">分钟</text> <text v-if="item.timeUnit == 4">秒</text> )</text> <text>¥{{item.price}}</text>
|
|||
|
</view>
|
|||
|
<view class="ccc">
|
|||
|
<view class="bumday" v-if="item.description == null">
|
|||
|
<text class="shi"></text></text>
|
|||
|
</view>
|
|||
|
<view class="bumday" v-else>
|
|||
|
<text :class="['shi', { activewz: tcidlist.includes(item.suitId) }]">{{item.description.length > 20 ? item.description.substring(0, 20) + '...' : item.description}}</text></text>
|
|||
|
</view>
|
|||
|
<!-- <u-checkbox-group>
|
|||
|
<u-checkbox v-model="item.checked"></u-checkbox>
|
|||
|
</u-checkbox-group> -->
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
|
|||
|
<view class="" v-if="list == ''"
|
|||
|
style="color: #ccc;font-size: 36rpx;margin-top: 200rpx;text-align: center;">
|
|||
|
该设备暂无套餐
|
|||
|
</view>
|
|||
|
<view class="anniu">
|
|||
|
<view class="xinz" @click="btnadd">
|
|||
|
新建套餐
|
|||
|
</view>
|
|||
|
<view class="xinz" @click="btnqd">
|
|||
|
确定
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
|
|||
|
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
list: '',
|
|||
|
loading: false,
|
|||
|
disabled: false,
|
|||
|
btnWidth: 180,
|
|||
|
show: false,
|
|||
|
options: [{
|
|||
|
text: '删除',
|
|||
|
style: {
|
|||
|
backgroundColor: '#dd524d'
|
|||
|
}
|
|||
|
}],
|
|||
|
deviceId: '',
|
|||
|
bgc: {
|
|||
|
backgroundColor: "#8883f0",
|
|||
|
},
|
|||
|
activeid: '',
|
|||
|
checkboxes: [],
|
|||
|
tcidlist: []
|
|||
|
};
|
|||
|
},
|
|||
|
onLoad(option) {
|
|||
|
this.deviceId = option.id
|
|||
|
},
|
|||
|
created() {
|
|||
|
// 初始化checkboxes数组,每个元素都设为false(表示初始时不显示复选框)
|
|||
|
this.checkboxes = new Array(this.list.length).fill(false);
|
|||
|
},
|
|||
|
onShow() {
|
|||
|
this.tcidlist = []
|
|||
|
this.getlist()
|
|||
|
},
|
|||
|
// 分享到好友(会话)
|
|||
|
onShareAppMessage: function () {
|
|||
|
return {
|
|||
|
title: '创想物联',
|
|||
|
path: '/pages/shouye/index'
|
|||
|
}
|
|||
|
},
|
|||
|
|
|||
|
// 分享到朋友圈
|
|||
|
onShareTimeline: function () {
|
|||
|
return {
|
|||
|
title: '创想物联',
|
|||
|
query: '',
|
|||
|
path: '/pages/shouye/index'
|
|||
|
}
|
|||
|
},
|
|||
|
methods: {
|
|||
|
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() {
|
|||
|
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,
|
|||
|
pageSize: 99
|
|||
|
}
|
|||
|
this.$u.get(`/app/suit/tempList`, data).then((res) => {
|
|||
|
if (res.code == 200) {
|
|||
|
this.list = res.rows
|
|||
|
this.list = this.list.map(item => ({
|
|||
|
...item,
|
|||
|
checked: false,
|
|||
|
isActive: false
|
|||
|
}))
|
|||
|
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) {
|
|||
|
this.$u.delete(`/app/suit/${item.suitId}`).then((res) => {
|
|||
|
if (res.code == 200) {
|
|||
|
this.$u.toast(`删除成功`);
|
|||
|
this.getlist()
|
|||
|
} else {
|
|||
|
uni.showToast({
|
|||
|
title: res.msg,
|
|||
|
icon: 'none',
|
|||
|
duration: 1000,
|
|||
|
})
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
},
|
|||
|
open(index) {
|
|||
|
this.list[index].show = true
|
|||
|
this.list.map((val, idx) => {
|
|||
|
if (index != idx) this.list[idx].show = false;
|
|||
|
})
|
|||
|
},
|
|||
|
btnadd() {
|
|||
|
uni.navigateTo({
|
|||
|
url: '/page_fenbao/statulist/taocanlist/addtaocan/index?id=' + ''
|
|||
|
})
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
</script>
|
|||
|
|
|||
|
<style lang="scss">
|
|||
|
// /deep/ .u-title {
|
|||
|
// padding-bottom: 22rpx;
|
|||
|
// }
|
|||
|
|
|||
|
// /deep/ .u-icon__icon {
|
|||
|
// padding-bottom: 22rpx;
|
|||
|
// }
|
|||
|
.active {
|
|||
|
background-color: #8883F0 !important;
|
|||
|
border-radius: 20rpx;
|
|||
|
}
|
|||
|
|
|||
|
.activewz {
|
|||
|
color: #fff !important;
|
|||
|
}
|
|||
|
|
|||
|
page {
|
|||
|
background: #F4F5F7;
|
|||
|
}
|
|||
|
|
|||
|
.page {
|
|||
|
width: 750rpx;
|
|||
|
padding-bottom: 400rpx;
|
|||
|
|
|||
|
.box {
|
|||
|
width: 750rpx;
|
|||
|
height: 100%;
|
|||
|
background: #F4F5F7;
|
|||
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|||
|
padding: 50rpx;
|
|||
|
|
|||
|
.box_list {
|
|||
|
background-color: #fff;
|
|||
|
margin-top: 20rpx;
|
|||
|
border-radius: 20rpx;
|
|||
|
}
|
|||
|
|
|||
|
.anniu {
|
|||
|
position: fixed;
|
|||
|
bottom: 76rpx;
|
|||
|
left: 50%;
|
|||
|
transform: translateX(-50%);
|
|||
|
display: flex;
|
|||
|
justify-content: space-between;
|
|||
|
width: 80%;
|
|||
|
}
|
|||
|
|
|||
|
.xinz {
|
|||
|
width: 280rpx;
|
|||
|
height: 84rpx;
|
|||
|
background: #8883F0;
|
|||
|
filter: blur(0px);
|
|||
|
text-align: center;
|
|||
|
line-height: 84rpx;
|
|||
|
font-size: 36rpx;
|
|||
|
color: #FFFFFF;
|
|||
|
border-radius: 50rpx;
|
|||
|
}
|
|||
|
|
|||
|
.boxlist {
|
|||
|
padding: 40rpx 42rpx;
|
|||
|
box-sizing: border-box;
|
|||
|
|
|||
|
.ccc {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-between;
|
|||
|
}
|
|||
|
|
|||
|
.toptime {
|
|||
|
font-size: 32rpx;
|
|||
|
color: #000000;
|
|||
|
display: flex;
|
|||
|
justify-content: space-between;
|
|||
|
}
|
|||
|
|
|||
|
.bumday {
|
|||
|
margin-top: 10rpx;
|
|||
|
|
|||
|
text {
|
|||
|
font-size: 32rpx;
|
|||
|
color: #95989D;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/deep/ .u-swipe-action {
|
|||
|
margin-top: 30rpx;
|
|||
|
border-radius: 20rpx;
|
|||
|
width: 654rpx;
|
|||
|
height: 182rpx;
|
|||
|
background: #FFFFFF;
|
|||
|
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
|||
|
filter: blur(0px);
|
|||
|
border: 0;
|
|||
|
}
|
|||
|
|
|||
|
/deep/ .u-swipe-del {
|
|||
|
height: 190rpx;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
</style>
|