301 lines
6.9 KiB
Vue
301 lines
6.9 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='50'></u-navbar>
|
|
<view class="box">
|
|
<view class="list">
|
|
<view class="title">
|
|
套餐名称
|
|
</view>
|
|
<input type="text" v-model="name" placeholder="输入套餐名称" />
|
|
<view class="title" style="margin-top: 50rpx;">
|
|
价格(元)
|
|
</view>
|
|
<input type="text" v-model="price" placeholder="输入价格" />
|
|
<view class="title" style="margin-top: 50rpx;">
|
|
通电时长
|
|
</view>
|
|
<view class="" style="display: flex;justify-content: space-between;position: relative;">
|
|
<input style="width: 80%;" type="number" v-model="value" placeholder="输入通电时长" />
|
|
<!-- <picker style="margin-top: 24rpx;border: 1px solid;padding: 5rpx 10rpx;border-radius: 10rpx;height: 40rpx;" mode="selector" :range="array" @change="bindPickerChange"> -->
|
|
<view class="picker" @click="btnxz">
|
|
{{array[index]}} <u-icon v-if="arrflag" name="arrow-down" color="#000" size="24"></u-icon> <u-icon v-else name="arrow-right" color="#000" size="24"></u-icon>
|
|
</view>
|
|
<view class="arr_list" v-if="arrflag">
|
|
<view class="arr_item" v-for="(item,index) in array" :key="index" @click="btnxl(index)">
|
|
{{item}}
|
|
</view>
|
|
</view>
|
|
<!-- </picker> -->
|
|
</view>
|
|
<view class="title" style="margin-top: 50rpx;margin-bottom: 20rpx;">
|
|
详细说明
|
|
</view>
|
|
<textarea v-model="description" placeholder="输入说明解释" auto-height="true" />
|
|
</view>
|
|
<view class="trues" @click="btnadd">
|
|
{{title}}
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
deviceId: '',
|
|
name: '',
|
|
value: '',
|
|
description: '',
|
|
price: '',
|
|
title: '',
|
|
suitId: '',
|
|
array: ['天', '时', '分钟', '秒'],
|
|
index: 2,
|
|
timewz:'',
|
|
arrflag:false
|
|
}
|
|
},
|
|
onLoad(option) {
|
|
if (option.suitId) {
|
|
this.deviceId = option.id
|
|
this.title = '修改'
|
|
this.suitId = option.suitId
|
|
this.gettaocan(option.suitId)
|
|
} else {
|
|
this.deviceId = option.id
|
|
this.title = '确定'
|
|
}
|
|
},
|
|
// 分享到好友(会话)
|
|
onShareAppMessage: function () {
|
|
return {
|
|
title: '创想物联',
|
|
path: '/pages/shouye/index'
|
|
}
|
|
},
|
|
|
|
// 分享到朋友圈
|
|
onShareTimeline: function () {
|
|
return {
|
|
title: '创想物联',
|
|
query: '',
|
|
path: '/pages/shouye/index'
|
|
}
|
|
},
|
|
methods: {
|
|
// 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) {
|
|
this.$u.get(`/app/suit/${suitId}`).then((res) => {
|
|
if (res.code == 200) {
|
|
this.name = res.data.name
|
|
this.price = res.data.price
|
|
this.value = res.data.value
|
|
this.description = res.data.description
|
|
this.index = Number(res.data.timeUnit) - 1
|
|
}
|
|
})
|
|
},
|
|
|
|
btnadd() {
|
|
let regex = /^\d+(\.\d{1,2})?$/
|
|
let regexs = /^\d+$/
|
|
if (this.name == '') {
|
|
uni.showToast({
|
|
title: '套餐名称不能为空',
|
|
icon: 'none',
|
|
duration: 1000,
|
|
})
|
|
} else if (this.price == '') {
|
|
uni.showToast({
|
|
title: '价格不能为空',
|
|
icon: 'none',
|
|
duration: 1000,
|
|
})
|
|
} else if (!regex.test(this.price)) {
|
|
uni.showToast({
|
|
title: '价格必须是数字且小数点只能两位',
|
|
icon: 'none',
|
|
duration: 2000,
|
|
})
|
|
} else if (this.value == '') {
|
|
uni.showToast({
|
|
title: '时长不能为空',
|
|
icon: 'none',
|
|
duration: 1000,
|
|
})
|
|
} else if (!regexs.test(this.value)) {
|
|
uni.showToast({
|
|
title: '时长必须是整数',
|
|
icon: 'none',
|
|
duration: 2000,
|
|
})
|
|
} else if (this.description == '') {
|
|
uni.showToast({
|
|
title: '详细说明不能为空',
|
|
icon: 'none',
|
|
duration: 1000,
|
|
})
|
|
} else {
|
|
if (this.title == '确定') {
|
|
let data = {
|
|
// deviceId: this.deviceId,
|
|
name: this.name,
|
|
value: this.value,
|
|
price: this.price,
|
|
description: this.description,
|
|
timeUnit:Number(this.index) + 1
|
|
}
|
|
this.$u.post('/app/suit', data).then((res) => {
|
|
if (res.code == 200) {
|
|
uni.showToast({
|
|
title: '新建套餐成功',
|
|
icon: 'success',
|
|
duration: 1000,
|
|
})
|
|
setTimeout(() => {
|
|
uni.navigateBack()
|
|
}, 1000)
|
|
}
|
|
})
|
|
} else {
|
|
let data = {
|
|
suitId: this.suitId,
|
|
// deviceId: this.deviceId,
|
|
name: this.name,
|
|
value: this.value,
|
|
price: this.price,
|
|
description: this.description,
|
|
timeUnit:Number(this.index) + 1
|
|
}
|
|
this.$u.put('/app/suit', data).then((res) => {
|
|
if (res.code == 200) {
|
|
uni.showToast({
|
|
title: '修改套餐成功',
|
|
icon: 'success',
|
|
duration: 1000,
|
|
})
|
|
setTimeout(() => {
|
|
uni.navigateBack()
|
|
}, 1000)
|
|
} else {
|
|
uni.showToast({
|
|
title: res.msg,
|
|
icon: 'none',
|
|
duration: 1000,
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/deep/ .u-title {
|
|
padding-bottom: 22rpx;
|
|
}
|
|
|
|
/deep/ .u-icon__icon {
|
|
padding-bottom: 22rpx;
|
|
}
|
|
|
|
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;
|
|
background: #F4F5F7;
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
padding-top: 32rpx;
|
|
|
|
.list {
|
|
width: 654rpx;
|
|
max-height: 100%;
|
|
background: #FFFFFF;
|
|
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
|
filter: blur(0px);
|
|
margin: auto;
|
|
border-radius: 30rpx;
|
|
padding: 48rpx 38rpx;
|
|
box-sizing: border-box;
|
|
|
|
.title {
|
|
font-size: 32rpx;
|
|
color: #000000;
|
|
font-weight: 600;
|
|
}
|
|
|
|
input {
|
|
margin-top: 30rpx;
|
|
}
|
|
}
|
|
|
|
.trues {
|
|
width: 590rpx;
|
|
height: 84rpx;
|
|
background: #8883F0;
|
|
filter: blur(0px);
|
|
text-align: center;
|
|
line-height: 84rpx;
|
|
position: fixed;
|
|
bottom: 76rpx;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
font-size: 36rpx;
|
|
color: #FFFFFF;
|
|
border-radius: 50rpx;
|
|
}
|
|
}
|
|
}
|
|
</style> |