tearoom/page_shanghu/bangding.vue

600 lines
16 KiB
Vue
Raw Normal View History

2024-12-20 09:02:40 +08:00
<template>
<view class="page">
<u-navbar title="设备绑定" :border-bottom="false" :background="bgc" back-icon-color="#262B37"
title-color='#262B37' title-size='36' height='50' id="navbar">
</u-navbar>
<view class="box">
<view class="tongji">
2024-12-27 18:03:26 +08:00
<view class="one" @click="btngundong('section1',0)">
2024-12-20 09:02:40 +08:00
<view class="gn">店门</view>
2024-12-27 18:03:26 +08:00
<image v-if="tabindex == 0" src="https://api.ccttiot.com/smartmeter/img/static/uZNimi3DEsGWsjfJm2Bg" mode=""></image>
2024-12-20 09:02:40 +08:00
</view>
<view class="xian"></view>
2024-12-27 18:03:26 +08:00
<view class="one" @click="btngundong('section2',1)">
2024-12-20 09:02:40 +08:00
<view class="gn">房间</view>
2024-12-27 18:03:26 +08:00
<image v-if="tabindex == 1" src="https://api.ccttiot.com/smartmeter/img/static/uZNimi3DEsGWsjfJm2Bg" mode=""></image>
2024-12-20 09:02:40 +08:00
</view>
<view class="xian"></view>
2024-12-27 18:03:26 +08:00
<view class="one" @click="btngundong('section3',2)">
2024-12-20 09:02:40 +08:00
<view class="gn">大厅</view>
2024-12-27 18:03:26 +08:00
<image v-if="tabindex == 2" src="https://api.ccttiot.com/smartmeter/img/static/uZNimi3DEsGWsjfJm2Bg" mode=""></image>
2024-12-20 09:02:40 +08:00
</view>
<view class="xian"></view>
2024-12-27 18:03:26 +08:00
<view class="one" @click="btngundong('section4',3)">
2024-12-20 09:02:40 +08:00
<view class="gn">卫生间</view>
2024-12-27 18:03:26 +08:00
<image v-if="tabindex == 3" src="https://api.ccttiot.com/smartmeter/img/static/uZNimi3DEsGWsjfJm2Bg" mode=""></image>
2024-12-20 09:02:40 +08:00
</view>
</view>
2024-12-23 18:15:03 +08:00
<!-- 店门 --><!-- 店门 --><!-- 店门 --><!-- 店门 --><!-- 店门 --><!-- 店门 --><!-- 店门 --><!-- 店门 --><!-- 店门 --><!-- 店门 --><!-- 店门 --><!-- 店门 -->
2024-12-27 18:03:26 +08:00
<view class="damen" id="section1" style="margin-top: 10vh;">
2024-12-20 09:02:40 +08:00
<view class="name">
店门
</view>
2024-12-27 18:03:26 +08:00
<view class="menbj" :id="gateSnobj.device.sn == null ? 'active' : ''" @click="btnmendian">
2024-12-20 09:02:40 +08:00
<view class="top">
<view class="lt">
<text style="font-weight: 600;font-size: 32rpx;">店门</text>
</view>
2024-12-27 18:03:26 +08:00
<view class="rt" :id="gateSnobj.device.sn == null ? 'active' : ''">
<text :id="gateSnobj.device.sn == null ? 'active' : ''"></text> {{gateSnobj.device.sn == null ? '未绑定' : '已绑定'}}
2024-12-20 09:02:40 +08:00
</view>
</view>
2024-12-27 18:03:26 +08:00
<view class="bot" v-if="gateSnobj.device.sn != null">
2024-12-20 09:02:40 +08:00
<view class="lt">
有当前订单才能进入门店
</view>
<view class="rt">
2024-12-27 18:03:26 +08:00
SN{{gateSnobj.device.sn}}
2024-12-20 09:02:40 +08:00
</view>
</view>
</view>
</view>
2024-12-23 18:15:03 +08:00
<!-- 房间 --><!-- 房间 --><!-- 房间 --><!-- 房间 --><!-- 房间 --><!-- 房间 --><!-- 房间 --><!-- 房间 --><!-- 房间 --><!-- 房间 --><!-- 房间 --><!-- 房间 -->
2024-12-27 18:03:26 +08:00
<view class="" id="section2">
2024-12-23 18:15:03 +08:00
<view class="damen" v-for="(item,index) in roomList" :key="index">
<view class="name">
2024-12-27 18:03:26 +08:00
{{item.roomName}}
2024-12-23 18:15:03 +08:00
</view>
<view class="fjlist">
2024-12-27 18:03:26 +08:00
<view class="fj_item" v-for="(val,indexs) in item.equipmentList" :key="indexs" @click="btnfj(indexs,item)" :id="val.device.sn == null ? 'active' : ''">
2024-12-23 18:15:03 +08:00
<view class="name">
2024-12-27 18:03:26 +08:00
<text :id="val.device.sn == null ? 'active' : ''">{{val.name}}</text> <text style="font-size: 28rpx;color: #3D3D3D;" :id="val.device.sn == null ? 'active' : ''">
<text style="margin-bottom: 6rpx;" :id="val.device.sn == null ? 'active' : ''"></text> {{val.device.sn == null ? '未绑定' : '已绑定'}}</text>
2024-12-23 18:15:03 +08:00
</view>
2024-12-27 18:03:26 +08:00
<view class="zt" v-if="val.device.sn != null">
SN{{val.device.sn}}
2024-12-23 18:15:03 +08:00
</view>
2024-12-20 09:02:40 +08:00
</view>
2024-12-27 18:03:26 +08:00
</view>
2024-12-20 09:02:40 +08:00
</view>
</view>
2024-12-23 18:15:03 +08:00
<!-- 大厅 --><!-- 大厅 --><!-- 大厅 --><!-- 大厅 --><!-- 大厅 --><!-- 大厅 --><!-- 大厅 --><!-- 大厅 --><!-- 大厅 --><!-- 大厅 --><!-- 大厅 --><!-- 大厅 -->
2024-12-27 18:03:26 +08:00
<view class="damen" id="section3">
2024-12-20 09:02:40 +08:00
<view class="name">
大厅
</view>
2024-12-27 18:03:26 +08:00
<view class="menbj" v-for="(item,index) in datingobj.equipmentList" :key="index" :id="item.device.sn == null ? 'active' : ''" @click="btndating(index)">
2024-12-20 09:02:40 +08:00
<view class="top">
2024-12-27 18:03:26 +08:00
<view class="lt" :id="item.device.sn == null ? 'active' : ''">
<text style="font-weight: 600;" :id="item.device.sn == null ? 'active' : ''">{{item.name}}</text>
2024-12-20 09:02:40 +08:00
</view>
2024-12-27 18:03:26 +08:00
<view class="rt" :id="item.device.sn == null ? 'active' : ''">
<text :id="item.device.sn == null ? 'active' : ''"></text> {{item.device.sn == null ? '未绑定' : '已绑定'}}
2024-12-20 09:02:40 +08:00
</view>
</view>
2024-12-27 18:03:26 +08:00
<view class="bot" v-if="item.device.sn != null">
<view class="lt" :id="item.device.sn == null ? 'active' : ''">
SN{{item.device.sn}}
2024-12-20 09:02:40 +08:00
</view>
<view class="rt">
</view>
</view>
</view>
</view>
2024-12-23 18:15:03 +08:00
<!-- 厕所 --><!-- 厕所 --><!-- 厕所 --><!-- 厕所 --><!-- 厕所 --><!-- 厕所 --><!-- 厕所 --><!-- 厕所 --><!-- 厕所 -->
2024-12-27 18:03:26 +08:00
<view class="damen" id="section4">
2024-12-20 09:02:40 +08:00
<view class="name">
卫生间配置
</view>
2024-12-23 18:15:03 +08:00
<view class="" v-for="(val,index) in cesuolist" :key="index">
2024-12-27 18:03:26 +08:00
<view class="menbj" v-for="(item,index) in val.equipmentList" :key="index" :id="item.device.sn == null ? 'active' : ''" @click="btncesuo(index)">
2024-12-23 18:15:03 +08:00
<view class="top">
2024-12-27 18:03:26 +08:00
<view class="lt" :id="item.device.sn == null ? 'active' : ''">
<text style="font-weight: 600;" :id="item.device.sn == null ? 'active' : ''">{{item.name}}</text>
2024-12-23 18:15:03 +08:00
</view>
2024-12-27 18:03:26 +08:00
<view class="rt" :id="item.device.sn == null ? 'active' : ''">
<text :id="item.device.sn == null ? 'active' : ''"></text> {{item.device.sn == null ? '未绑定' : '已绑定'}}
2024-12-23 18:15:03 +08:00
</view>
2024-12-20 09:02:40 +08:00
</view>
2024-12-27 18:03:26 +08:00
<view class="bot" v-if="item.device.sn != null">
<view class="lt" :id="item.device.sn == null ? 'active' : ''">
SN{{item.device.sn}}
2024-12-23 18:15:03 +08:00
</view>
<view class="rt">
</view>
2024-12-20 09:02:40 +08:00
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
storeId: '',
2024-12-23 18:15:03 +08:00
xuanzeflag:false,
roomList: [],
datingobj:{},
cesuolist:[],
list: [],
show: false,
roomId: '',
gateSnobj:{},
objxq:{},
2024-12-27 18:03:26 +08:00
deviceId:'',
tabindex:0
2024-12-20 09:02:40 +08:00
}
},
onLoad(option) {
this.storeId = option.storeId
2024-12-23 18:15:03 +08:00
this.deviceId = option.deviceId
2024-12-20 09:02:40 +08:00
this.getxq()
2024-12-27 18:03:26 +08:00
this.getmendian()
2024-12-20 09:02:40 +08:00
},
methods: {
2024-12-27 18:03:26 +08:00
// 点击tab进行滚动查找
btngundong(section,index) {
this.tabindex = index
const query = uni.createSelectorQuery().in(this);
query.select(`#${section}`).boundingClientRect((rectObj) => {
if (rectObj) {
uni.pageScrollTo({
scrollTop: rectObj.top - 180,
duration: 300
})
} else {
console.error('Element with ID ' + section + ' not found, but this should not happen if the callback is executed.')
}
}).exec()
},
2024-12-23 18:15:03 +08:00
// 点击门店是否绑定
btnmendian(){
2025-01-08 15:23:53 +08:00
if(this.gateSnobj.device == null){
2024-12-23 18:15:03 +08:00
let that = this
uni.showModal({
title: '温馨提示',
content: '您确定要绑定到该设施上吗?',
success: function (res) {
if (res.confirm) {
let data = {
storeId:that.storeId,
2024-12-27 18:03:26 +08:00
deviceId:that.deviceId
2024-12-23 18:15:03 +08:00
}
2024-12-27 18:03:26 +08:00
that.$u.put(`/app/store/bandGate`,data).then(res => {
2024-12-23 18:15:03 +08:00
if(res.code == 200){
uni.showToast({
title: '绑定成功',
icon: 'success',
duration:2000
})
that.getxq()
2024-12-27 18:03:26 +08:00
setTimeout(()=>{
uni.navigateBack({
delta:3
})
},1000)
2024-12-23 18:15:03 +08:00
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration:2000
})
}
})
} else if (res.cancel) {
}
}
})
}else{
uni.showToast({
title: '该设施已被绑定',
icon: 'none',
duration:2000
})
}
},
// 点击房间是否绑定
2024-12-27 18:03:26 +08:00
btnfj(index,item){
2024-12-23 18:15:03 +08:00
let deviceIds = this.roomList?.[0]?.equipmentList?.[index]?.deviceList?.[0]?.deviceId ?? null
2024-12-27 18:03:26 +08:00
let equipmentId = item.equipmentList[index].equipmentId
console.log(equipmentId)
2024-12-23 18:15:03 +08:00
if(deviceIds == null){
let that = this
uni.showModal({
title: '温馨提示',
content: '您确定要绑定到该设施上吗?',
success: function (res) {
if (res.confirm) {
that.$u.post(`/app/device/placement/${equipmentId}/${that.deviceId}`).then(res => {
if(res.code == 200){
uni.showToast({
title: '绑定成功',
icon: 'success',
duration:2000
})
that.getxq()
2024-12-27 18:03:26 +08:00
setTimeout(()=>{
uni.navigateBack({
delta:3
})
},1000)
2024-12-23 18:15:03 +08:00
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration:2000
})
}
})
} else if (res.cancel) {
}
}
})
}else{
uni.showToast({
title: '该设施已被绑定',
icon: 'none',
duration:2000
})
}
},
// 点击大厅是否绑定
btndating(index){
let deviceIds = this.datingobj?.equipmentList?.[index]?.deviceList?.[0]?.deviceId ?? null
let equipmentId = this.datingobj.equipmentList[index].equipmentId
console.log(deviceIds,equipmentId,'大厅');
if(deviceIds == null){
let that = this
uni.showModal({
title: '温馨提示',
content: '您确定要绑定到该设施上吗?',
success: function (res) {
if (res.confirm) {
that.$u.post(`/app/device/placement/${equipmentId}/${that.deviceId}`).then(res => {
if(res.code == 200){
uni.showToast({
title: '绑定成功',
icon: 'success',
duration:2000
})
that.getxq()
2024-12-27 18:03:26 +08:00
setTimeout(()=>{
uni.navigateBack({
delta:3
})
},1000)
2024-12-23 18:15:03 +08:00
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration:2000
})
}
})
} else if (res.cancel) {
}
}
})
}else{
uni.showToast({
title: '该设施已被绑定',
icon: 'none',
duration:2000
})
}
},
// 点击厕所是否绑定
btncesuo(index){
let deviceIds = this.cesuolist?.[0]?.equipmentList?.[index]?.deviceList?.[0]?.deviceId ?? null
let equipmentId = this.cesuolist[0].equipmentList[index].equipmentId
console.log(deviceIds,equipmentId,'厕所');
if(deviceIds == null){
let that = this
uni.showModal({
title: '温馨提示',
content: '您确定要绑定到该设施上吗?',
success: function (res) {
if (res.confirm) {
that.$u.post(`/app/device/placement/${equipmentId}/${that.deviceId}`).then(res => {
if(res.code == 200){
uni.showToast({
title: '绑定成功',
icon: 'success',
duration:2000
})
that.getxq()
2024-12-27 18:03:26 +08:00
setTimeout(()=>{
uni.navigateBack({
delta:3
})
},1000)
2024-12-23 18:15:03 +08:00
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration:2000
})
}
})
} else if (res.cancel) {
}
}
})
}else{
uni.showToast({
title: '该设施已被绑定',
icon: 'none',
duration:2000
})
}
},
2024-12-27 18:03:26 +08:00
// 根据店铺查大门
getmendian(){
this.$u.get(`/app/equipment/gateGate?storeId=${this.storeId}`).then(res =>{
if(res.code == 200){
this.gateSnobj = res.data
}
})
},
2024-12-20 09:02:40 +08:00
// 获取门店详情
getxq(){
this.$u.get(`app/store/mch/${this.storeId}`).then(res => {
if (res.code == 200) {
2024-12-23 18:15:03 +08:00
this.objxq = res.data
this.roomList = []
this.cesuolist = []
this.datingobj = {}
res.data.roomList.forEach(item => {
if (item.type2 == 1) {
this.roomList.push(item)
} else if (item.type2 == 2) {
this.datingobj = item;
} else if (item.type2 == 3) {
this.cesuolist.push(item)
}
})
2024-12-20 09:02:40 +08:00
}
})
}
}
}
</script>
<style lang="scss">
/deep/ .u-iconfont,
/deep/ .u-title{
padding-bottom: 20rpx;
}
2024-12-23 18:15:03 +08:00
#active{
background-color: #DEF1DA !important;
color: #48893B !important;
}
2024-12-20 09:02:40 +08:00
page {
background: #F6F6F6;
}
.box{
width: 100%;
2024-12-27 18:03:26 +08:00
// height: 88vh;
// overflow: scroll;
padding-bottom: 210rpx;
2024-12-20 09:02:40 +08:00
box-sizing: border-box;
}
.damen{
padding: 0 30rpx;
box-sizing: border-box;
margin-top: 38rpx;
.fjlist{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 16rpx;
2024-12-23 18:15:03 +08:00
width: 100%;
2024-12-20 09:02:40 +08:00
max-height: 1408rpx;
background: #FFFFFF;
padding: 16rpx;
padding-top: 0;
box-sizing: border-box;
border-radius: 20rpx 20rpx 20rpx 20rpx;
.fj_item{
margin-top: 16rpx;
width: 318rpx;
max-height: 178rpx;
background: #F9F9F9;
padding: 26rpx;
box-sizing: border-box;
.zt{
font-size: 28rpx;
margin-top: 24rpx;
}
.name{
display: flex;
justify-content: space-between;
align-items: center;
text{
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
text{
width: 10rpx;
height: 10rpx;
background-color: #3D3D3D;
border-radius: 50%;
margin-right: 10rpx;
display: inline-block;
}
}
}
}
}
.name{
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
text-align: left;
}
.menbj{
width: 686rpx;
max-height: 170rpx;
background: #FFFFFF;
border-radius: 20rpx 20rpx 20rpx 20rpx;
padding: 30rpx;
box-sizing: border-box;
margin-top: 28rpx;
.bot{
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20rpx;
.lt{
font-size: 28rpx;
color: #3D3D3D;
}
.rt{
image{
width: 50rpx;
height: 50rpx;
}
}
}
.top{
display: flex;
justify-content: space-between;
.lt{
text{
font-size: 28rpx;
color: #3D3D3D;
margin-right: 54rpx;
}
}
.rt{
display: flex;
align-items: center;
font-size: 28rpx;
color: #3D3D3D;
font-weight: 600;
text{
width: 10rpx;
height: 10rpx;
background-color: #3D3D3D;
border-radius: 50%;
margin-right: 10rpx;
}
}
}
}
}
.tongji{
width: 750rpx;
height: 150rpx;
background: #FFFFFF;
border-radius: 0rpx 0rpx 0rpx 0rpx;
box-sizing: border-box;
2024-12-27 18:03:26 +08:00
margin-top: 14rpx;
2024-12-20 09:02:40 +08:00
display: flex;
align-items: center;
2024-12-27 18:03:26 +08:00
position: fixed;
top: 10vh;
2024-12-20 09:02:40 +08:00
.one{
width: 188rpx;
text-align: center;
.kg{
font-weight: 600;
font-size: 24rpx;
color: #3D3D3D;
text{
color: #48893B;
margin-left: 4rpx;
}
}
.gn{
font-weight: 600;
font-size: 32rpx;
color: #3D3D3D;
margin-top: 10rpx;
}
image{
width: 58rpx;
height: 14rpx;
}
}
.xian{
width: 1px;
height: 62rpx;
background-color: #3D3D3D;
}
}
.list {
margin-top: 30rpx;
height: 70vh;
overflow: scroll;
.list_item {
width: 100%;
height: 200rpx;
line-height: 100rpx;
text-align: center;
border: 1px solid;
}
}
.anniu{
width: 750rpx;
height: 152rpx;
background: #FFFFFF;
box-shadow: 0rpx 8rpx 20rpx 0rpx rgba(0,0,0,0.3);
border-radius: 0rpx 0rpx 0rpx 0rpx;
position: fixed;
left: 0;
bottom: 0;
display: flex;
justify-content: space-between;
padding: 0 36rpx;
box-sizing: border-box;
padding-top: 24rpx;
.queren{
width: 330rpx;
height: 104rpx;
background: #48893B;
text-align: center;
line-height: 104rpx;
font-weight: 600;
font-size: 36rpx;
color: #FFFFFF;
border-radius: 20rpx;
}
.xinjian{
width: 330rpx;
height: 104rpx;
border: 2rpx solid #48893B;
border-radius: 20rpx;
text-align: center;
line-height: 104rpx;
font-weight: 600;
font-size: 36rpx;
color: #48893B;
}
}
</style>