tearoom/page_shanghu/editsheshi.vue
2025-03-05 17:42:13 +08:00

801 lines
17 KiB
Vue

<template>
<view class="page">
<u-navbar :title="txttit" :border-bottom="false" :background="bgc" back-icon-color="#262B37" title-color='#262B37'
title-size='36' height='48' id="navbar">
</u-navbar>
<!-- <view class="name" v-if="type == 1">
<view class="lt">
模版名称
</view>
<view class="rt">
<input type="text" v-model="name" placeholder="请输入模版名称"/>
</view>
</view> -->
<view class="priceshuom">
<view class="top">
套餐名称
</view>
<input type="text" style="text-align: left;" v-model="explain" placeholder="请输入价格说明"/>
</view>
<view class="" v-if="type == 1">
<view class="pricesz">
<view class="top">
价格设置
</view>
<!-- <view class="one">
<view class="lt">
计费单位时长
</view>
<view class="rt">
<input type="text" v-model="huor" placeholder="请输入"/> 小时
</view>
</view> -->
<view class="one">
<view class="lt">
基础价格设置
</view>
<view class="rt">
<input type="text" v-model="price" placeholder="请输入"/> 元
</view>
</view>
<view class="one" style="border: none;">
<view class="lt">
最低消费时长
</view>
<view class="rt">
<input type="text" v-model="mintime" placeholder="请输入"/> 小时
</view>
</view>
</view>
<view class="pricesz">
<view class="top">
押金收取
</view>
<view class="one">
<view class="lt">
押金金额
</view>
<view class="rt">
<input type="text" v-model="yajin" placeholder="请输入"/> 元
</view>
</view>
<view class="one" style="border: none;" @click="timeshow = true">
<view class="lt">
自动退押金
</view>
<view class="rt">
<text>{{tuitime}}</text> <image src="https://api.ccttiot.com/smartmeter/img/static/uS5JydUQDmvbMyg4nsdo" mode=""></image>
</view>
</view>
</view>
<view class="" style="width: 100%;text-align: center;color: red;margin-top: 30rpx;">
注:押金的金额需是基础价格的倍数
</view>
</view>
<!-- <view class="mask" v-if="maskflag"></view> -->
<view class="tanchuang" v-if="type == 2">
<view class="names">
套餐时长
</view>
<view class="time">
<input type="text" v-model="huor" placeholder="请输入时长"/> 小时
</view>
<view class="names">
价格
</view>
<view class="time">
<input type="text" v-model="price" placeholder="请输入价格"/> 元
</view>
</view>
<!-- 是否选择时间限制 -->
<view class="pricesz" style="padding-top: 0;">
<view class="one" style="border: none;">
<view class="lt">
是否开启时间限制
</view>
<view class="rt">
<u-switch v-model="checked" active-color="#48893B" @change="change"></u-switch>
</view>
</view>
<view class="xianzhitime" v-if="checked">
<view class="">
允许使用开始时间:<text @click="btnksihitime(1)">{{kaishitime}}</text>
</view>
<view class="" style="margin-top: 10rpx;">
允许使用结束时间:<text @click="btnksihitime(2)">{{jieshutime}}</text>
</view>
</view>
</view>
<!-- 时间选择器 -->
<u-picker v-model="xianzhitime" mode="time" :default-time="00" :params="params" @confirm="btntime"></u-picker>
<!-- 套餐配置房间/大厅 -->
<view class="pricesz" style="padding-top: 0;" @click="roomdatflag = true">
<view class="one" style="border: none;">
<view class="lt">
选择房间/大厅
</view>
<view class="rt">
<image src="https://api.ccttiot.com/smartmeter/img/static/uS5JydUQDmvbMyg4nsdo" mode=""></image>
</view>
</view>
<view class="list">
<view class="item_list" v-for="(item,index) in selectedIdname" :key="index">
{{item}}
</view>
</view>
</view>
<u-select v-model="timeshow" :list="timelist" @confirm="confirm"></u-select>
<view class="anniu">
<view class="tougang" style="margin-right: 30rpx;background-color: red;" @click="btnshanchu" v-if="ruleId">
删除
</view>
<view class="tougang" @click="btnshop">
{{anniutxt}}
</view>
</view>
<!-- 所有的房间和大厅选择 -->
<view class="roomtinglist" v-if="roomdatflag">
<view class="nametit">
选择配置房间/大厅
</view>
<view class="roomtinglist_item">
<view class="" v-for="(item,index) in roomdatlist" :key="index" :class="{ active: selectedIds.includes(item.roomId) }"
@click="toggleSelection(item)">
{{item.roomName}}
</view>
</view>
</view>
<view class="xzbtn" v-if="roomdatflag">
<view class="qx" @click="roomqx">
取消
</view>
<view class="qd" @click="roomqd">
确定
</view>
</view>
<view class="mask" v-if="roomdatflag"></view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
checked:false,
type:'',
maskflag:false,
price:'',
name:'',
jcprice:'',
time:'',
mintime:'',
yajin:'',
explain:'',
timeshow: false,
timelist: [
{
value: '0',
label: '立即退还'
},{
value: '1',
label: '1分钟'
},{
value: '2',
label: '3分钟'
},{
value: '3',
label: '5分钟'
}
],
tuitime:'',
tuitimes:'',
huor:'1',
ruleId:'',
anniutxt:'确认新建',
txttit:'新建收费模版',
roomdatlist:[],
selectedIds: [],
selectedIdname: [],
roomdatflag:false,
timeflag:false,
kaishitime:'请选择开始时间',
jieshutime:'请选择结束时间',
params: {
year: false,
month: false,
day: false,
hour: true,
minute: true,
second: false
},
xianzhitime:false,
num:''
}
},
onLoad(option) {
this.type = option.type
if(option.ruleId){
this.ruleId = option.ruleId
this.anniutxt = '确认修改'
this.txttit = '修改收费模版'
this.getxq()
}else{
this.anniutxt = '确认新建'
this.txttit = '新建收费模版'
}
},
onShow() {
this.selectedIdname = []
this.selectedIds = []
this.getroomdat()
},
methods: {
// 确定选择时间
btntime(e){
if(this.num == 1){
this.kaishitime = e.hour + ':' + e.minute
}else if(this.num == 2){
this.jieshutime = e.hour + ':' + e.minute
}
},
// 选择开始时间
btnksihitime(num){
this.num = num
this.xianzhitime = true
},
// 点击是否打开时间限制
change(e) {
if(e == true){
this.timeflag = true
}else{
this.timeflag = false
}
},
// 点击取消选择
roomqx(){
this.roomdatflag = false
},
roomqd(){
this.roomdatflag = false
},
// 点击选择房间/大厅
toggleSelection(item) {
const index = this.selectedIds.indexOf(item.roomId);
const nameindex = this.selectedIdname.indexOf(item.roomName)
if (index == -1) {
this.selectedIds.push(item.roomId);
} else {
this.selectedIds.splice(index, 1);
}
if(nameindex == -1) {
this.selectedIdname.push(item.roomName);
} else {
this.selectedIdname.splice(nameindex, 1);
}
console.log(this.selectedIds,this.selectedIdname);
},
// 请求所有的房间和大厅
getroomdat(){
this.$u.get(`/app/room/getRoomList`).then(res =>{
if(res.code == 200){
this.roomdatlist = res.data
}
})
},
// 请求套餐详情
getxq(){
this.$u.get(`app/rule/${this.ruleId}`).then(res =>{
if(res.code == 200){
this.huor = res.data.hours
this.price = res.data.price
this.mintime = res.data.minHours
this.explain = res.data.explain
this.tuitimes = res.data.refundDuration
this.yajin = res.data.deposit
this.kaishitime = res.data.useTimeStart
this.jieshutime = res.data.useTimeEnd
this.checked = res.data.isRestriction
if(res.data.roomIds.length == 0 || res.data.roomIds == null){
this.selectedIds = []
this.selectedIdname = []
}else{
this.selectedIds = res.data.roomIds
this.selectedIdname = res.data.roomNames.split(",")
}
if(res.data.refundDuration == 0){
this.tuitime = '立即退还'
}else{
this.tuitime = res.data.refundDuration + '分钟'
}
}
})
},
// 点击删除套餐
btnshanchu(){
let that = this
uni.showModal({
title: '温馨提示',
content: '您确定要删除此套餐吗?',
success: function (res) {
if (res.confirm) {
that.$u.delete(`app/rule/${that.ruleId}`).then(res =>{
if(res.code == 200){
uni.showToast({
title: '删除成功',
icon: 'success',
duration: 2000
})
setTimeout(()=>{
uni.navigateBack()
},1000)
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
setTimeout(()=>{
uni.navigateBack()
},1000)
}
})
}
}
})
},
// 点击右上角编辑
btndelflag(){
this.delflag = true
this.txt = '取消'
},
// 确认多长时间退押金
confirm(e){
this.tuitime = e[0].label
if(e[0].label == '立即退还'){
this.tuitimes = 0
}else{
this.tuitimes = e[0].label.slice(0,1)
}
},
// 点击编辑
btnbj(){
this.maskflag = true
},
// 确定新建and修改
btnshop(){
if(this.yajin % this.price == 0){
let data = {
ruleId:this.ruleId,
mode:this.type,
hours:this.huor,
price:this.price,
minHours:this.mintime,
explain:this.explain,
refundDuration:this.tuitimes,
deposit:this.yajin,
roomIds:this.selectedIds,
useTimeStart:this.kaishitime,
useTimeEnd:this.jieshutime,
isRestriction:this.checked
}
if(this.anniutxt == '确认新建'){
this.$u.post(`/app/rule`,data).then(res => {
if (res.code == 200) {
uni.showToast({
title: '新建成功',
icon: 'success',
duration: 2000
})
setTimeout(()=>{
uni.navigateBack()
},1000)
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}else if(this.anniutxt == '确认修改'){
this.$u.put(`/app/rule`,data).then(res => {
if (res.code == 200) {
uni.showToast({
title: '修改成功',
icon: 'success',
duration: 2000
})
setTimeout(()=>{
uni.navigateBack()
},1000)
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}
}else{
uni.showToast({
title: '押金需是基础价格的倍数',
icon: 'none',
duration: 2000
})
}
},
// 取消
btnqx(){
this.maskflag = false
this.price = ''
this.huor = ''
},
}
}
</script>
<style lang="scss">
/deep/ .u-iconfont,
/deep/ .u-title{
padding-bottom: 20rpx;
box-sizing: border-box;
}
.active {
background-color: #48893B !important;
border: 1px solid #48893B;
color: #fff !important;
}
.xzbtn{
display: flex;
justify-content: space-between;
position: fixed;
bottom: 50rpx;
left: 0;
width: 100%;
z-index: 10;
padding: 0 40rpx;
box-sizing: border-box;
.qd{
background-color: #48893B;
border: 1px solid #48893B;
color: #fff !important;
font-size: 32rpx;
}
.qx,
.qd{
width: 300rpx;
height: 80rpx;
line-height: 80rpx;
text-align: center;
color: #333;
border-radius: 10rpx;
border: 1px solid #ccc;
}
}
.roomtinglist{
width: 100%;
height: 80vh;
position: fixed;
bottom: 0;
left: 0;
background-color: #fff;
z-index: 9;
border-radius: 20rpx 20rpx 0 0;
padding: 40rpx;
box-sizing: border-box;
.nametit{
width: 750rpx;
height: 60rpx;
text-align: center;
font-size: 32rpx;
font-weight: 600;
margin-top: 10rpx;
}
.roomtinglist_item{
margin-top: 20rpx;
display: flex;
flex-wrap: wrap;
height: 80vh;
overflow: scroll;
padding-bottom: 500rpx;
box-sizing: border-box;
view{
margin: 4rpx;
margin-top: 20rpx;
padding:10rpx 20rpx;
height: 64rpx;
box-sizing: border-box;
border-radius: 10rpx;
border: 1px solid #ccc;
}
}
}
.list{
display: flex;
flex-wrap: wrap;
box-sizing: border-box;
.item_list{
padding: 10rpx;
box-sizing: border-box;
color: #48893B;
padding-bottom: 20rpx;
}
}
.mask{
width: 100%;
height: 100vh;
position: fixed;
top: 0;
left: 0;
background-color: #000;
opacity: .3;
z-index: 4;
}
.tanchuang{
width: 680rpx;
max-height: 660rpx;
margin: auto;
background: #FFFFFF;
border-radius: 30rpx;
margin-top: 30rpx;
padding: 20rpx 0;
box-sizing: border-box;
.btn{
width: 680rpx;
height: 104rpx;
background: #48893B;
margin: auto;
margin-top: 30rpx;
text-align: center;
line-height: 104rpx;
border-radius: 20rpx;
font-weight: 600;
font-size: 36rpx;
color: #FFFFFF;
}
.names{
margin-top: 46rpx;
font-weight: 600;
font-size: 32rpx;
color: #3D3D3D;
padding: 0 30rpx;
box-sizing: border-box;
}
.time{
width: 618rpx;
margin: auto;
display: flex;
justify-content: space-between;
border-bottom: 1px solid #D8D8D8;
padding-bottom: 30rpx;
box-sizing: border-box;
margin-top: 30rpx;
input{
width: 85%;
}
}
.del{
position: absolute;
top: 18rpx;
right: 44rpx;
font-size: 68rpx;
font-weight: 600;
z-index: 6;
}
.namea{
width: 100%;
text-align: center;
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
margin-top: 42rpx;
margin-bottom: 14rpx;
}
}
.anniu{
width: 100%;
height: 152rpx;
background: #FFFFFF;
box-shadow: 0rpx 8rpx 20rpx 0rpx rgba(0,0,0,0.3);
border-radius: 0rpx 0rpx 0rpx 0rpx;
display: flex;
padding: 24rpx 36rpx;
box-sizing: border-box;
justify-content: space-between;
text-align: center;
position: fixed;
left: 0;
bottom: 0;
.tougang{
width: 680rpx;
margin: auto;
height: 104rpx;
background: #48893B;
font-size: 36rpx;
color: #FFFFFF;
line-height: 104rpx;
border-radius: 20rpx;
}
}
.priceshuom{
width: 680rpx;
height: 184rpx;
background: #FFFFFF;
margin: auto;
margin-top: 24rpx;
border-radius: 20rpx;
padding: 0 34rpx;
padding-top: 26rpx;
box-sizing: border-box;
.top{
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
}
input{
margin-top: 26rpx;
text-align: right;
margin-right: 10rpx;
}
}
.pricesz{
width: 680rpx;
max-height: 15424rpx;
margin: auto;
margin-top: 24rpx;
border-radius: 20rpx;
background: #FFFFFF;
padding: 0 34rpx;
padding-top: 26rpx;
box-sizing: border-box;
.xianzhitime{
padding-bottom: 20rpx;
box-sizing: border-box;
text{
color: #ccc;
}
}
.topname{
display: flex;
justify-content: space-between;
align-items: center;
.bianji{
font-size: 28rpx;
color: #48893B;
}
}
.addxinjian{
width: 610rpx;
height: 66rpx;
border-radius: 6rpx 6rpx 6rpx 6rpx;
border: 1rpx dashed #48893B;
color: #48893B;
text-align: center;
line-height: 66rpx;
}
.bds{
display: flex;
justify-content: space-between;
background-color: #fff;
width: 100%;
height: 76rpx;
line-height: 76rpx;
.lt{
width: 33%;
text-align: center;
}
.cen{
width: 33%;
text-align: center;
}
.rt{
width: 33%;
text-align: center;
}
}
.bd{
display: flex;
justify-content: space-between;
background-color: #F0F0F0;
width: 100%;
height: 76rpx;
line-height: 76rpx;
margin-top: 24rpx;
.lt{
width: 33%;
text-align: center;
}
.cen{
width: 33%;
text-align: center;
}
.rt{
width: 33%;
text-align: center;
}
}
.one{
display: flex;
justify-content: space-between;
height: 110rpx;
line-height: 110rpx;
border-bottom: 1px solid #D8D8D8;
.lt{
font-size: 32rpx;
color: #3D3D3D;
}
.rt{
display: flex;
align-items: center;
input{
width: 120rpx;
height: 110rpx;
line-height: 110rpx;
text-align: right;
margin-right: 10rpx;
}
text{
font-size: 32rpx;
color: #7C7C7C;
}
image{
width: 14rpx;
height: 48rpx;
margin-left: 10rpx;
}
}
}
.top{
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
}
}
.name{
width: 680rpx;
height: 114rpx;
line-height: 114rpx;
background: #FFFFFF;
margin: auto;
margin-top: 28rpx;
border-radius: 20rpx;
display: flex;
justify-content: space-between;
padding: 0 34rpx;
box-sizing: border-box;
.lt{
font-size: 32rpx;
color: #3D3D3D;
}
.rt{
input{
width: 210rpx;
height: 114rpx;
line-height: 114rpx;
text-align: right;
margin-right: 10rpx;
}
}
}
page {
background: #F6F6F6;
padding-bottom: 180rpx;
box-sizing: border-box;
}
</style>