kaiguan-zfb/page_components/newtaocan.vue

283 lines
6.7 KiB
Vue
Raw Normal View History

2024-07-17 17:59:51 +08:00
<template>
<view class="page">
<u-navbar title="套餐管理" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
height='50'></u-navbar>
2024-07-17 17:59:51 +08:00
<view class="box" v-if="loading">
2024-07-27 18:43:42 +08:00
<!-- <u-swipe-action :show="item.show" :index="index" v-for="(item, index) in list" :key="item.suitId" @click="click(item)" @open="open" :options="options">
<view class="boxlist" @click="btnedit(item)">
<view class="toptime">
<text>{{item.name.length > 5 ? item.name.substring(0,4) + '...' : 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>
2024-07-17 17:59:51 +08:00
</view>
<view class="bumday" v-if="item.description">
<text class="shi">{{item.description.length > 20 ? item.description.substring(0, 20) + '...' : item.description}}</text></text>
2024-07-17 17:59:51 +08:00
</view>
</view>
2024-07-27 18:43:42 +08:00
</u-swipe-action> -->
<HM-dragSorts ref="dragSorts" :list="newobj" :tcidlist="tcidlist"
@update:tcidlist="handleTcidlistUpdate" :autoScroll="true" :feedbackGenerator="false"
@newList="handleNewList" rowHeight='50' @change="change" @confirm="confirm" @onclick="onclick"
:listBackgroundColor='F7FAFE'></HM-dragSorts>
2024-08-02 18:00:50 +08:00
<view class="" v-if="listflag" style="color: #ccc;font-size: 36rpx;margin-top: 200rpx;text-align: center;">
2024-07-17 17:59:51 +08:00
该设备暂无套餐
</view>
<view class="anniu">
<view class="xinz" @click="btnadd">
新增套餐
2024-07-17 17:59:51 +08:00
</view>
</view>
2024-08-02 18:00:50 +08:00
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
2024-07-27 18:43:42 +08:00
2024-07-17 17:59:51 +08:00
</view>
</view>
</template>
<script>
2024-07-27 18:43:42 +08:00
import dragSorts from '@/page_components/HM-dragSorts/HM-dragSorts.vue'
2024-07-17 17:59:51 +08:00
export default {
2024-07-27 18:43:42 +08:00
components: {
'HM-dragSorts': dragSorts
},
2024-07-17 17:59:51 +08:00
data() {
return {
2024-08-02 18:00:50 +08:00
btnmsk:false,
list: [],
loading:false,
2024-07-17 17:59:51 +08:00
disabled: false,
btnWidth: 180,
show: false,
options: [{
text: '删除',
style: {
backgroundColor: '#dd524d'
}
}],
deviceId:'',
2024-07-17 17:59:51 +08:00
bgc: {
backgroundColor: "#8883f0",
},
2024-07-27 18:43:42 +08:00
newobj:[],
2024-08-02 18:00:50 +08:00
tcidlist:'',
listflag:false
2024-07-17 17:59:51 +08:00
};
},
onLoad(option) {
console.log(option);
2024-07-17 17:59:51 +08:00
this.deviceId = option.id
},
onShow() {
2024-08-02 18:00:50 +08:00
this.btnmsk = false
2024-07-27 18:43:42 +08:00
this.tcidlist = []
this.list = []
this.newobj = []
2024-07-17 17:59:51 +08:00
this.getlist()
},
// 分享到好友(会话)
onShareAppMessage: function () {
return {
title: '创想物联',
path: '/pages/shouye/index'
}
},
// 分享到朋友圈
onShareTimeline: function () {
return {
title: '创想物联',
query: '',
path: '/pages/shouye/index'
}
},
2024-07-17 17:59:51 +08:00
methods: {
2024-07-27 18:43:42 +08:00
handleTcidlistUpdate(newTcidlist) {
// 这里是处理接收到的新 tcidlist 的地方
// console.log('接收到的 tcidlist:', newTcidlist);
this.tcidlist = newTcidlist
uni.navigateTo({
url:'/page_fenbao/statulist/taocanlist/addtaocan/index?id=' + this.deviceId + '&suitId=' + this.tcidlist.suitId
})
},
handleNewList(newList) {
let list = [this.list, ...newList]
const newSortedList = list.map((item, index) => {
return {
suitId: item.suitId,
sort: index + 1 // 使用索引值加 1 作为 groupSort
}
})
let filteredArr = newSortedList.filter(item => item.suitId !== undefined)
console.log("新的排列数据:", filteredArr)
setTimeout(() => {
this.$u.put("/app/suit/sort", filteredArr).then((res) => {
if (res.code == 200) {
// this.getgroup()
}
});
}, 200)
},
2024-07-17 17:59:51 +08:00
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.loading = true
2024-07-27 18:43:42 +08:00
// this.list = this.list.map(item => ({
// ...item,
// checked: false,
// isActive: false
// }))
this.newobj = this.list
2024-08-02 18:00:50 +08:00
if(this.list.length > 0){
this.listflag = false
}else{
this.listflag = true
}
2024-07-17 17:59:51 +08:00
}
})
2024-07-17 17:59:51 +08:00
},
2024-07-27 18:43:42 +08:00
// btnedit(item){
// uni.navigateTo({
// url:'/page_fenbao/statulist/taocanlist/addtaocan/index?id=' + this.deviceId + '&suitId=' + item.suitId
// })
// },
click(item) {
2024-07-17 17:59:51 +08:00
this.$u.delete(`/app/suit/${item.suitId}`).then((res) => {
if (res.code == 200) {
this.$u.toast(`删除成功`);
2024-07-17 17:59:51 +08:00
this.getlist()
}else{
2024-07-17 17:59:51 +08:00
uni.showToast({
title: res.msg,
icon: 'none',
duration: 1000,
})
}
});
2024-07-17 17:59:51 +08:00
},
open(index) {
this.list[index].show = true
this.list.map((val, idx) => {
if (index != idx) this.list[idx].show = false;
})
},
btnadd(){
2024-08-02 18:00:50 +08:00
this.btnmsk = true
2024-07-17 17:59:51 +08:00
uni.navigateTo({
url:'/page_fenbao/statulist/taocanlist/addtaocan/index?id=' + this.deviceId
2024-07-17 17:59:51 +08:00
})
2024-07-27 18:43:42 +08:00
},
change() {
},
confirm(e) {
},
onclick(e) {
},
2024-07-17 17:59:51 +08:00
}
};
</script>
<style lang="scss">
2024-07-27 18:43:42 +08:00
/deep/ .u-swipe-del{
height: 140rpx !important;
}
/deep/ .u-swipe-action{
height: 140rpx !important;
}
/deep/ .u-title{
padding-bottom: 22rpx;
2024-07-17 17:59:51 +08:00
}
/deep/ .u-icon__icon{
padding-bottom: 22rpx;
2024-07-17 17:59:51 +08:00
}
page {
background: #F4F5F7;
}
.page {
width: 750rpx;
2024-08-02 18:00:50 +08:00
padding-bottom: 220rpx;
2024-07-17 17:59:51 +08:00
.box {
width: 750rpx;
height:100%;
2024-07-17 17:59:51 +08:00
background: #F4F5F7;
border-radius: 0rpx 0rpx 0rpx 0rpx;
padding: 50rpx;
2024-08-02 18:00:50 +08:00
padding-top: 30rpx !important;
.anniu{
2024-07-17 17:59:51 +08:00
position: fixed;
bottom: 0;
2024-07-17 17:59:51 +08:00
left: 50%;
transform: translateX(-50%);
width: 100%;
height: 200rpx;
padding-top: 40rpx;
background-color: #fff;
padding-left: 50rpx;
padding-right: 50rpx;
.xinz{
width: 100%;
height: 84rpx;
background: #8883F0;
filter: blur(0px);
text-align: center;
line-height: 84rpx;
font-size: 36rpx;
color: #FFFFFF;
border-radius: 50rpx;
}
2024-07-17 17:59:51 +08:00
}
.boxlist{
2024-07-27 18:43:42 +08:00
padding: 20rpx 42rpx;
2024-07-17 17:59:51 +08:00
box-sizing: border-box;
.toptime{
2024-07-17 17:59:51 +08:00
font-size: 32rpx;
// color: #000000;
2024-07-17 17:59:51 +08:00
display: flex;
justify-content: space-between;
}
.bumday{
2024-07-17 17:59:51 +08:00
margin-top: 10rpx;
text{
2024-07-17 17:59:51 +08:00
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>