kaiguan-zfb/page_fenbao/statulist/taocanlist/addtaocan/index.vue

1451 lines
37 KiB
Vue
Raw Normal View History

2024-05-10 17:37:36 +08:00
<template>
<view class="page">
2024-07-17 17:59:51 +08:00
<u-navbar title="套餐设置" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff"
title-size='36' height='50'></u-navbar>
2024-05-10 17:37:36 +08:00
<view class="box">
2024-08-16 22:23:20 +08:00
<view class="titwz">
2024-08-12 21:49:12 +08:00
<view class="" style="margin-top: 0;">
单次收费为一次性收取费用不退款
</view>
<view class="">
2024-09-10 18:34:35 +08:00
智能收费为按用时和用量智能动态计费用户提前结束异常结束商家关闭订单等操作都将动态智能计算费用
2024-08-12 21:49:12 +08:00
</view>
<view class="">
2024-09-10 18:34:35 +08:00
例如1小时2元的收费模式用户用半小时提前结束订单实际消费为1元多收费用将退回原支付账户
</view>
<view class="">
提示当套餐的金额低于5元手续费都按0.05元收取
2024-08-12 21:49:12 +08:00
</view>
</view>
<view class="tcname">
<view class="title">
套餐名称
</view>
<input type="text" style="padding-right: 28rpx;box-sizing: border-box;" v-model="name"
placeholder="输入套餐名称" />
</view>
2024-10-16 13:32:50 +08:00
<view class="feems1" style="border-radius: 0;" v-if="yjflag">
<view class="one">
<view class="feelt">
预存
</view>
<view class="feert">
<input type="text" class="yj" v-model="yajinvalue" /> <text></text>
</view>
</view>
</view>
<view class="feems1" style="border: 0;padding-bottom: 40rpx;box-sizing: border-box;">
<view class="feelt">
套餐说明
</view>
<view class="feert" style="margin-top: 16rpx;width: 600rpx;">
<!-- <input type="text" placeholder="请输入套餐说明" v-model="description" /> -->
<textarea name="" id="" cols="30" rows="10" placeholder="请输入套餐说明" style="height: 100rpx" v-model="description"></textarea>
</view>
</view>
2024-08-12 21:49:12 +08:00
<view class="feebox">
<view class="feems">
<view class="feelt">
收费模式
</view>
<view class="feert">
<view class="">
<u-radio-group v-model="valueone" @change="radioGroupChange">
2024-08-16 22:23:20 +08:00
<u-radio @change="radioChange" v-for="(item, index) in sfms" :key="index"
active-color="#8883f0" :name="item.name" :disabled="item.disabled">
2024-08-12 21:49:12 +08:00
{{item.name}}
</u-radio>
</u-radio-group>
</view>
</view>
</view>
<view class="feems">
<view class="feelt">
收费类型
</view>
<view class="feert">
2024-08-16 22:23:20 +08:00
<view class="" v-if="valueone == '智能收费'">
2024-08-12 21:49:12 +08:00
<u-radio-group v-model="valuetwo" @change="radioGroupChanges">
2024-08-16 22:23:20 +08:00
<u-radio @change="radioChanges" v-for="(item, index) in sflx" :key="index"
active-color="#8883f0" :name="item.name" :disabled="item.disabled">
{{item.name}}
</u-radio>
</u-radio-group>
</view>
<view class="" v-else>
<u-radio-group v-model="valuetwo" @change="radioGroupChanges">
<u-radio @change="radioChangesone" v-for="(item, index) in sfdan" :key="index"
2024-08-16 22:23:20 +08:00
active-color="#8883f0" :name="item.name" :disabled="item.disabled">
2024-08-12 21:49:12 +08:00
{{item.name}}
</u-radio>
</u-radio-group>
</view>
</view>
</view>
2024-10-16 13:32:50 +08:00
<view class="" style="display: flex;justify-content: space-between;margin-bottom: 20rpx;">
<view class="feems" v-if="jeflag" style="display: block;">
<view class="feelt" style="margin-bottom: 10rpx;">
单价
</view>
<view class="feert" style="width: 100%;">
<input type="text" class="yj" v-model="qianvalue" /> <text></text>
2024-08-12 21:49:12 +08:00
</view>
</view>
2024-10-16 13:32:50 +08:00
<view class="feemss" v-if="gmsjflag" style="max-width: 430rpx;padding-left: 50rpx;box-sizing: border-box;">
<view class="feelt" style="display: block;">
2024-10-16 18:02:42 +08:00
<text class="txt" style="width: 60rpx;margin-bottom: 10rpx;">时间</text> <input type="number" v-model="duvalue" />
2024-10-16 13:32:50 +08:00
</view>
<view class="feert" style="margin-top: 80rpx;margin-left: 0;">
<view class="">
<u-radio-group v-model="valuethr" @change="radioGroupChangetime">
<u-radio @change="radioChangetime" v-for="(item, index) in gmsj" :key="index"
active-color="#8883f0" :name="item.name" :disabled="item.disabled">
{{item.name}}
</u-radio>
</u-radio-group>
</view>
</view>
2024-08-12 21:49:12 +08:00
</view>
2024-10-16 13:32:50 +08:00
<view class="feems" v-if="duflag" style="display: block;padding-left: 50rpx;box-sizing: border-box;">
<view class="feelt" style="margin-bottom: 10rpx;">
购买度数
</view>
<view class="feert">
<input type="text" class="yj" v-model="duvalue" /> <text></text>
</view>
2024-08-12 21:49:12 +08:00
</view>
</view>
2024-10-16 13:32:50 +08:00
<text style="font-size: 24rpx;color: #999;">消费金额为单价的倍数结束订单后将返回剩余预存款</text>
2024-08-12 21:49:12 +08:00
</view>
<view class="batterybox" v-if="djflag">
<view class="dianj">
<view class="djone" @click="btnys('#64B6A7')">
谷电电价
</view>
<view class="dianjtwo">
2024-08-16 22:23:20 +08:00
<input type="text" v-model="gdvalue" /> <text>/</text>
2024-08-12 21:49:12 +08:00
</view>
<view class="dianjthre" @click="changeColor('#64B6A7')">
全天为谷电
</view>
</view>
<view class="dianj">
<view class="djone" style="color: #468DFF;border-color: #468DFF;" @click="btnys('#468DFF')">
平电电价
</view>
<view class="dianjtwo">
2024-08-16 22:23:20 +08:00
<input type="text" v-model="pdvalue" /> <text>/</text>
2024-08-12 21:49:12 +08:00
</view>
<view class="dianjthre" style="background: #468DFF;" @click="changeColor('#468DFF')">
全天为平电
</view>
</view>
<view class="dianj">
<view class="djone" style="color: #8883F0;border-color: #8883F0;" @click="btnys('#8883F0')">
峰电电价
</view>
<view class="dianjtwo">
2024-08-16 22:23:20 +08:00
<input type="text" v-model="dfvalue" /> <text>/</text>
2024-08-12 21:49:12 +08:00
</view>
<view class="dianjthre" style="background: #8883F0;" @click="changeColor('#8883F0')">
全天为峰电
</view>
</view>
<view class="dianj">
<view class="djone" style="color: #FF4444;border-color: #FF4444;" @click="btnys('#FF4444')">
尖电电价
</view>
<view class="dianjtwo">
2024-08-16 22:23:20 +08:00
<input type="text" v-model="jdvalue" /> <text>/</text>
2024-08-12 21:49:12 +08:00
</view>
<view class="dianjthre" style="background: #FF4444;" @click="changeColor('#FF4444')">
全天为尖电
</view>
</view>
<view class="timeshi">
2024-08-16 22:23:20 +08:00
<view class="time_item" v-for="(item,index) in 24" :key="index"
:style="{ backgroundColor: backgroundColor[index] }" @click="btnbs(item,index)">
{{index}}
2024-08-12 21:49:12 +08:00
</view>
</view>
<view class="wz">
提示点击谷尖4个色块选中相应电价 色块在0:00到24:00以1小时为1格的区域里涂 抹相应的色块
</view>
</view>
<view class="batterybox" v-if="dangflag">
<view class="dianj">
<view class="djone" @click="btnys('#64B6A7')">
一档费用
</view>
<view class="dianjtwo">
2024-09-11 18:01:14 +08:00
<input type="text" v-model="gdvalue" /> <text>/</text>
2024-08-12 21:49:12 +08:00
</view>
<view class="dianjthre" @click="changeColor('#64B6A7')">
全天为一档
</view>
</view>
<view class="dianj">
<view class="djone" style="color: #468DFF;border-color: #468DFF;" @click="btnys('#468DFF')">
二档费用
</view>
<view class="dianjtwo">
2024-09-11 18:01:14 +08:00
<input type="text" v-model="pdvalue" /> <text>/</text>
2024-08-12 21:49:12 +08:00
</view>
<view class="dianjthre" style="background: #468DFF;" @click="changeColor('#468DFF')">
全天为二档
</view>
</view>
<view class="dianj">
<view class="djone" style="color: #8883F0;border-color: #8883F0;" @click="btnys('#8883F0')">
三档费用
</view>
<view class="dianjtwo">
2024-09-11 18:01:14 +08:00
<input type="text" v-model="dfvalue" /> <text>/</text>
2024-08-12 21:49:12 +08:00
</view>
<view class="dianjthre" style="background: #8883F0;" @click="changeColor('#8883F0')">
全天为三档
</view>
</view>
<view class="dianj">
<view class="djone" style="color: #FF4444;border-color: #FF4444;" @click="btnys('#FF4444')">
四档费用
</view>
<view class="dianjtwo">
2024-09-11 18:01:14 +08:00
<input type="text" v-model="jdvalue" /> <text>/</text>
2024-08-12 21:49:12 +08:00
</view>
<view class="dianjthre" style="background: #FF4444;" @click="changeColor('#FF4444')">
全天为四档
</view>
</view>
<view class="timeshi">
2024-08-16 22:23:20 +08:00
<view class="time_item" v-for="(item,index) in 24" :key="index"
:style="{ backgroundColor: backgroundColor[index] }" @click="btnbs(item,index)">
{{index}}
2024-08-12 21:49:12 +08:00
</view>
</view>
<view class="wz">
提示点击一挡二挡三挡四挡4个色块选中相应电价 色块在0:00到24:00以1小时为1格的区域里涂 抹相应的色块
</view>
2024-08-16 22:23:20 +08:00
</view>
2024-08-12 21:49:12 +08:00
2024-08-16 22:23:20 +08:00
<!-- <view class="list">
2024-07-27 18:43:42 +08:00
<view class="" style="display: flex;
2024-07-29 18:03:40 +08:00
justify-content: space-between;
width: 100%;
align-items: center;">
2024-07-27 18:43:42 +08:00
<view class="title">
套餐名称
</view>
2024-08-12 21:49:12 +08:00
<input type="text" style="padding-right: 28rpx;box-sizing: border-box;" v-model="name"
placeholder="输入套餐名称" />
2024-05-10 17:37:36 +08:00
</view>
2024-07-27 18:43:42 +08:00
<view class="" style="display: flex;
2024-07-29 18:03:40 +08:00
justify-content: space-between;
width: 100%;
align-items: center;margin-top: 30rpx;">
2024-07-27 18:43:42 +08:00
<view class="title">
价格
</view>
2024-08-12 21:49:12 +08:00
<input type="text" style="padding-right: 28rpx;box-sizing: border-box;" v-model="price"
placeholder="输入价格" />
2024-05-10 17:37:36 +08:00
</view>
2024-08-12 21:49:12 +08:00
<view class="" style="display: flex;
2024-07-29 18:03:40 +08:00
justify-content: space-between;
width: 100%;
2024-07-31 18:01:34 +08:00
margin-top: 30rpx;
height: 50rpx;
line-height: 50rpx;">
2024-08-12 21:49:12 +08:00
<view class="title">
通电时长
2024-07-27 18:43:42 +08:00
</view>
2024-08-12 21:49:12 +08:00
<view class="" style="display: flex;justify-content: space-between;position: relative;">
<input type="number" style="height: 50rpx;
line-height: 50rpx;" v-model="value" placeholder="输入通电时长" />
<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>
2024-07-17 17:59:51 +08:00
</view>
2024-07-27 18:43:42 +08:00
</view>
2024-07-17 17:59:51 +08:00
</view>
2024-07-27 18:43:42 +08:00
<view class="title" style="margin-top: 30rpx;margin-bottom: 20rpx;">
2024-05-10 17:37:36 +08:00
详细说明
</view>
2024-08-12 21:49:12 +08:00
<textarea style="height: 120rpx !important;margin-top: 40rpx;margin-bottom: 40rpx;"
v-model="description" placeholder="输入说明解释" auto-height="true" />
2024-08-16 22:23:20 +08:00
</view> -->
2024-09-18 18:00:38 +08:00
<!-- 自动断点 #8883F0-->
2024-09-30 17:13:18 +08:00
<view class="shebei" v-if="feeType == 2 || feeType == 3">
2024-09-18 18:00:38 +08:00
<view class="sbarr" style="align-items: center;">
<view class="" style="font-size:30rpx">低功率输出时自动断电</view> <u-switch active-color="#8883F0" v-model="checked"></u-switch>
</view>
<view class="sbarr" style="display: flex; align-items: center;margin-top: 30rpx;" v-if="checked == true">
<view class="">最低</view> <input type="text" v-model="power" style="text-align: right;width: 380rpx;" placeholder="低于该值将结束订单并断电"/>
</view>
<view class="" style="color: #FF4444;margin-top: 20rpx;">
该功能仅在在线状态下才能正常使用
</view>
</view>
2024-09-30 17:13:18 +08:00
<!-- 彩铃 -->
<view class="shebei" v-if="feeType == 1">
<view class="sbarr" style="align-items: center;">
<view class="" style="font-size:30rpx">剩余时间不足语音提示</view> <u-switch active-color="#8883F0" v-model="checkes"></u-switch>
</view>
<view class="sbarr" style="display: flex; align-items: center;margin-top: 30rpx;" v-if="checkes == true">
<view class="">剩余时长</view> <input type="text" v-model="powes" style="text-align: right;width: 380rpx;" placeholder="低于该值将结束订单并断电"/>分钟
</view>
<view class="" style="color: #FF4444;margin-top: 20rpx;">
2024-10-16 13:32:50 +08:00
仅限于语音版设备并在线状态才能正常使用
2024-09-30 17:13:18 +08:00
</view>
</view>
2024-09-18 18:00:38 +08:00
2024-07-27 18:43:42 +08:00
<!-- 应用设备 -->
2024-07-31 18:01:34 +08:00
<view class="shebei">
2024-07-27 18:43:42 +08:00
<view class="sbtit">应用设备</view>
<view class="sbarr">
2024-07-31 18:01:34 +08:00
<view class="sbarrval" v-for="(item,index) in deviceList" :key="index">
2024-08-12 21:49:12 +08:00
<text style="width: 100%;text-align: center;">{{item.deviceName}}</text>
<text style="font-size: 45rpx;position: absolute;top: 0;right: 20rpx;"
@click="sbdel(item.deviceId)">×</text>
2024-08-02 18:00:50 +08:00
</view>
<view class="btnsbadd" @click="btnaddsb">
+
2024-07-27 18:43:42 +08:00
</view>
</view>
2024-07-31 18:01:34 +08:00
</view>
2024-07-27 18:43:42 +08:00
2024-05-10 17:37:36 +08:00
<view class="trues" @click="btnadd">
{{title}}
</view>
2024-07-27 18:43:42 +08:00
<view v-if="title == '修改'" class="truess" @click="btndel">
删除
</view>
2024-07-29 18:03:40 +08:00
<view v-else class="trueqx" @click="btnqx">
取消
</view>
2024-05-10 17:37:36 +08:00
</view>
2024-08-12 21:49:12 +08:00
2024-09-23 18:01:24 +08:00
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 98;">
2024-08-12 21:49:12 +08:00
</view>
2024-07-17 17:59:51 +08:00
2024-05-10 17:37:36 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2024-09-18 18:00:38 +08:00
power:'',
2024-09-30 17:13:18 +08:00
powes:'',
2024-09-18 18:00:38 +08:00
checked:false,
2024-09-30 17:13:18 +08:00
checkes:false,
2024-08-12 21:49:12 +08:00
btnmsk: false,
2024-05-10 17:37:36 +08:00
deviceId: '',
yajinvalue:'',
2024-05-10 17:37:36 +08:00
name: '',
value: '',
2024-08-16 22:23:20 +08:00
// description: '',
2024-05-10 17:37:36 +08:00
price: '',
title: '',
2024-07-17 17:59:51 +08:00
suitId: '',
array: ['天', '时', '分钟', '秒'],
2024-08-12 21:49:12 +08:00
sfms: [{
name: '单次收费',
disabled: false
},
{
name: '智能收费',
disabled: false
}
],
sflx: [{
name: '计时收费',
disabled: false
},
{
name: '按量收费',
disabled: false
}, {
name: '分时段按量收费',
disabled: false
},
{
name: '分时段按时收费',
disabled: false
}
],
2024-08-16 22:23:20 +08:00
sfdan: [{
name: '计时收费',
disabled: false
},
{
name: '按量收费',
disabled: false
}
],
2024-08-12 21:49:12 +08:00
gmsj: [{
name: '时',
disabled: false
},
{
name: '分',
disabled: false
},
{
name: '秒',
disabled: false
}
],
2024-07-17 17:59:51 +08:00
index: 2,
2024-07-27 18:43:42 +08:00
timewz: '',
arrflag: false,
bgc: {
backgroundColor: "#8883f0",
},
2024-08-12 21:49:12 +08:00
deviceList: [],
2024-07-31 18:01:34 +08:00
list: '',
loading: false,
disabled: false,
btnWidth: 180,
show: false,
activeid: '',
checkboxes: [],
tcidlist: [],
titaoc: [],
newobj: [],
2024-08-12 21:49:12 +08:00
listflag: false,
valueone: '单次收费',
valuetwo: '计时收费',
valuethr: '',
gmsjflag: true,
yjflag: false,
duflag: false,
djflag: false,
2024-08-16 22:23:20 +08:00
jeflag: true,
2024-08-12 21:49:12 +08:00
dangflag: false,
backgroundColor: Array(24).fill('#64B6A7'),
2024-08-16 22:23:20 +08:00
backcolor: '',
duvalue: '',
qianvalue: '',
description: '',
feeMode: '1', ////收费模式1单次收费 2智能收费
feeType: "1", //收费类型1计时收费 2按量收费 3分时段按量收费 4分时段按时收费
2024-09-05 18:00:53 +08:00
timeUnit: null, //时长单位1-天2-时3-分4-秒
2024-08-16 22:23:20 +08:00
gearAmount: [], //档位金额列表必须4个
gearTime: [], //时段档位列表必须24个
gdvalue: '',
pdvalue: '',
dfvalue: '',
jdvalue: '',
2024-09-23 18:01:24 +08:00
timevalue: '',
contwz:'',
contwzflag:false,
contwzflags:false
2024-05-10 17:37:36 +08:00
}
},
onLoad(option) {
if (option.suitId) {
2024-09-10 18:34:35 +08:00
this.deviceId = option.id
2024-05-10 17:37:36 +08:00
this.title = '修改'
this.suitId = option.suitId
} else {
this.deviceId = option.id
this.title = '确定'
}
},
2024-07-31 18:01:34 +08:00
onShow() {
2024-09-23 18:01:24 +08:00
this.getuser()
this.getxieyi()
2024-08-12 21:49:12 +08:00
if (uni.getStorageSync('tcidlist')) {
2024-07-31 18:01:34 +08:00
this.deviceList = uni.getStorageSync('tcidlist')
}
2024-08-12 21:49:12 +08:00
setTimeout(() => {
2024-07-31 18:01:34 +08:00
if (this.suitId) {
this.gettaocan(this.suitId)
} else {
2024-08-12 21:49:12 +08:00
2024-07-31 18:01:34 +08:00
}
2024-08-12 21:49:12 +08:00
}, 1)
2024-07-31 18:01:34 +08:00
},
2024-07-17 17:59:51 +08:00
// 分享到好友(会话)
2024-07-27 18:43:42 +08:00
onShareAppMessage: function() {
return {
title: '创想物联',
path: '/pages/shouye/index'
}
},
// 分享到朋友圈
onShareTimeline: function() {
return {
title: '创想物联',
query: '',
path: '/pages/shouye/index'
}
},
2024-08-12 21:49:12 +08:00
onUnload() {
uni.removeStorageSync('tcidlist')
},
onHide() {
2024-07-31 18:01:34 +08:00
uni.removeStorageSync('tcidlist')
},
2024-05-10 17:37:36 +08:00
methods: {
2024-08-12 21:49:12 +08:00
// 统一全天时间
changeColor(color) {
this.backgroundColor = Array(24).fill(color)
},
btnys(color) {
this.backcolor = color
},
btnbs(item, index) {
if (this.backcolor != '') {
this.$set(this.backgroundColor, index, this.backcolor)
}
},
2024-09-23 18:01:24 +08:00
// 用户协议
getxieyi(){
this.$u.get(`/app/article/licence/mch`).then(res => {
if(res.code == 200){
this.contwz = res.data.content
}
})
},
// 获取用户信息
getuser(){
this.$u.get("/app/user/userInfo").then((res) => {
if (res.code == 200) {
if(res.data.readMchLicence == false){
this.contwzflags = true
}else{
this.contwzflags = false
}
}
})
},
btnadd() {
let regex = /^\d+(\.\d{1,2})?$/
let regexs = /^\d+$/
if (this.description == '') {
uni.showToast({
2024-10-16 13:32:50 +08:00
title: '套餐说明不能为空',
2024-09-23 18:01:24 +08:00
icon: 'none',
duration: 1000,
})
} else {
this.btnmsk = true
if (this.title == '确定') {
2024-09-29 19:32:37 +08:00
// if(this.contwzflags == false){
// this.contwzflag = false
2024-09-23 18:01:24 +08:00
let colorMap = {
"#64B6A7": 0,
"#468DFF": 1,
"#8883F0": 2,
"#FF4444": 3
}
this.gearTime = []
this.backgroundColor.forEach(color => {
this.gearTime.push(colorMap[color]);
})
let arrs = [...this.deviceList.map(item => item.deviceId)]
if (this.feeType == 3 || this.feeType == 4) {
this.gearAmount = []
this.gearAmount.push(this.gdvalue, this.pdvalue, this.dfvalue, this.jdvalue)
}
let data = {
// deviceId: this.deviceId,
name: this.name,
value:this.feeType == 3 || this.feeType == 4 ? (this.duvalue = null) : this.duvalue,
price: this.qianvalue,
deposit:this.yajinvalue,
2024-09-23 18:01:24 +08:00
description: this.description,
timeUnit: this.feeType == 3 || this.feeType == 4 || this.feeType == 2 ? (this.timeUnit = null) : this.timeUnit,
deviceIds: arrs,
feeMode: this.feeMode,
feeType: this.feeType,
gearAmount: this.gearAmount,
gearTime: this.feeType === 3 || this.feeType === 4 ? this.gearTime : (this.gearTime = []),
enabledLowPowerClose:this.checked,
2024-09-30 17:13:18 +08:00
enabledVoice:this.checkes,
lowPower:this.power,
voiceMinutes:this.powes
2024-09-23 18:01:24 +08:00
}
this.$u.post('/app/suit', data).then((res) => {
if (res.code == 200) {
uni.removeStorageSync('tcidlist')
uni.showToast({
title: '新建套餐成功',
icon: 'success',
duration: 1000,
})
setTimeout(() => {
this.btnmsk = false
uni.navigateBack()
}, 1000)
} else {
this.btnmsk = false
uni.showToast({
title: res.msg,
icon: 'none',
duration: 1000,
})
}
})
2024-09-29 19:32:37 +08:00
// }else{
// this.contwzflag = true
// }
2024-09-23 18:01:24 +08:00
} else {
let colorMap = {
"#64B6A7": 0,
"#468DFF": 1,
"#8883F0": 2,
"#FF4444": 3
}
this.gearTime = []
this.backgroundColor.forEach(color => {
this.gearTime.push(colorMap[color]);
})
let arrs = [...this.deviceList.map(item => item.deviceId)]
if (this.feeType == 3 || this.feeType == 4) {
this.gearAmount = []
this.gearAmount.push(this.gdvalue, this.pdvalue, this.dfvalue, this.jdvalue)
}
let data = {
suitId: this.suitId,
name: this.name,
value: this.duvalue,
price: this.qianvalue,
deposit:this.yajinvalue,
2024-09-23 18:01:24 +08:00
description: this.description,
timeUnit: this.timeUnit,
deviceIds: arrs,
feeMode: this.feeMode,
feeType: this.feeType,
gearAmount: this.gearAmount,
gearTime: this.feeType === 3 || this.feeType === 4 ? this.gearTime : (this.gearTime = []),
enabledLowPowerClose:this.checked,
2024-09-30 17:13:18 +08:00
enabledVoice:this.checkes,
lowPower:this.power,
voiceMinutes:this.powes
2024-09-23 18:01:24 +08:00
}
this.$u.put('/app/suit', data).then((res) => {
if (res.code == 200) {
uni.showToast({
title: '修改套餐成功',
icon: 'success',
duration: 1000,
})
setTimeout(() => {
this.btnmsk = false
uni.navigateBack()
}, 1000)
} else {
this.btnmsk = false
uni.showToast({
title: res.msg,
icon: 'none',
duration: 1000,
})
}
})
}
}
},
2024-08-12 21:49:12 +08:00
// 收费模式 单次and智能
radioChange(e) {
// console.log(e);
2024-08-16 22:23:20 +08:00
if (e == '单次收费') {
this.feeMode = 1
this.valuetwo = '计时收费'
this.feeType = 1
this.gmsjflag = true
this.jeflag = true
this.duflag = false
this.yjflag = false
this.djflag = false
this.dangflag = false
} else {
this.feeMode = 2
this.yjflag = true
2024-08-16 22:23:20 +08:00
}
2024-08-12 21:49:12 +08:00
},
radioGroupChange(e) {
// console.log(e);
},
// 收费类型// 收费类型// 收费类型
radioChangesone(e) {
2024-08-12 21:49:12 +08:00
if (e == '按量收费') {
2024-08-16 22:23:20 +08:00
this.feeType = 2
2024-08-12 21:49:12 +08:00
this.duflag = true
this.jeflag = true
this.gmsjflag = false
this.yjflag = false
this.djflag = false
this.dangflag = false
} else if (e == '计时收费') {
2024-08-16 22:23:20 +08:00
this.feeType = 1
2024-08-12 21:49:12 +08:00
this.gmsjflag = true
this.jeflag = true
this.duflag = false
this.yjflag = false
this.djflag = false
this.dangflag = false
}
},
radioChanges(e) {
if (e == '按量收费') {
this.feeType = 2
this.duflag = true
this.jeflag = true
this.gmsjflag = false
this.yjflag = true
this.djflag = false
this.dangflag = false
} else if (e == '计时收费') {
this.feeType = 1
this.gmsjflag = true
this.jeflag = true
this.duflag = false
this.yjflag = true
this.djflag = false
this.dangflag = false
2024-08-12 21:49:12 +08:00
} else if (e == '分时段按量收费') {
2024-08-16 22:23:20 +08:00
this.feeType = 3
2024-08-12 21:49:12 +08:00
this.gmsjflag = false
this.jeflag = false
this.duflag = false
this.yjflag = true
this.djflag = true
this.dangflag = false
} else if (e == '分时段按时收费') {
2024-08-16 22:23:20 +08:00
this.feeType = 4
2024-08-12 21:49:12 +08:00
this.gmsjflag = false
this.dangflag = true
this.jeflag = false
this.duflag = false
this.yjflag = true
this.djflag = false
}
},
radioGroupChanges(e) {
// console.log(e);
},
// 收费类型// 收费类型// 收费类型// 收费类型
// 收费时间 收费时间 收费时间 收费时间
radioChangetime(e) {
2024-08-16 22:23:20 +08:00
if (e == '时') {
this.timeUnit = 2
} else if (e == '分') {
this.timeUnit = 3
} else {
this.timeUnit = 4
}
2024-08-12 21:49:12 +08:00
},
// 选中任一radio时由radio-group触发
radioGroupChangetime(e) {
// console.log(e);
},
// 收费时间 收费时间 收费时间 收费时间
2024-07-31 18:01:34 +08:00
// 点击删除套餐里面的设备
2024-08-12 21:49:12 +08:00
sbdel(id) {
if (this.title == '确定') {
2024-07-31 18:01:34 +08:00
this.deviceList = this.deviceList.filter(item => item.deviceId !== id)
2024-08-12 21:49:12 +08:00
} else {
2024-07-31 18:01:34 +08:00
let that = this
uni.showModal({
title: '提示',
content: '您是否要将应用此套餐设备删除?',
success: function(res) {
if (res.confirm) {
2024-08-12 21:49:12 +08:00
// console.log(id);
2024-08-02 18:00:50 +08:00
const indexInTcidList = that.tcidlist.indexOf(id);
if (indexInTcidList !== -1) {
that.tcidlist.splice(indexInTcidList, 1);
} else {
that.tcidlist.push(id);
}
2024-08-12 21:49:12 +08:00
// console.log(that.tcidlist,indexInTcidList,'0202');
2024-07-31 18:01:34 +08:00
let data = {
deviceIds: that.tcidlist,
suitId: that.suitId
}
that.$u.put(`/app/suit`, data).then((res) => {
if (res.code == 200) {
uni.showToast({
title: res.msg,
icon: 'success',
duration: 1000,
})
2024-08-02 18:00:50 +08:00
that.tcidlist = []
2024-07-31 18:01:34 +08:00
that.gettaocan(that.suitId)
}
})
} else if (res.cancel) {
2024-08-12 21:49:12 +08:00
2024-07-31 18:01:34 +08:00
}
}
})
}
},
2024-08-12 21:49:12 +08:00
btnqx() {
2024-07-31 18:01:34 +08:00
uni.removeStorageSync('tcidlist')
2024-07-29 18:03:40 +08:00
uni.navigateBack()
},
// bindPickerChange(e) {
// this.index = e.detail.value
// },
2024-08-12 21:49:12 +08:00
// 跳转选择设备
btnaddsb() {
2024-07-27 18:43:42 +08:00
uni.navigateTo({
2024-09-23 18:01:24 +08:00
url: '/page_components/shebeixz?id=' + this.suitId + '&title=' + this.title + '&list=' + JSON.stringify(this.deviceList)
2024-07-27 18:43:42 +08:00
})
},
btnxl(index) {
this.index = index
this.arrflag = false
},
2024-07-27 18:43:42 +08:00
btnxz() {
if (this.arrflag == true) {
this.arrflag = false
2024-07-27 18:43:42 +08:00
} else {
this.arrflag = true
}
2024-07-17 17:59:51 +08:00
},
2024-05-10 17:37:36 +08:00
gettaocan(suitId) {
this.$u.get(`/app/suit/${suitId}`).then((res) => {
if (res.code == 200) {
this.name = res.data.name
2024-08-16 22:23:20 +08:00
this.qianvalue = res.data.price
2024-10-11 18:03:30 +08:00
this.yajinvalue = res.data.deposit
2024-08-16 22:23:20 +08:00
this.duvalue = res.data.value
2024-05-10 17:37:36 +08:00
this.description = res.data.description
2024-07-31 18:01:34 +08:00
this.deviceList = res.data.deviceList
2024-09-23 18:01:24 +08:00
this.checked = res.data.enabledLowPowerClose
2024-09-30 17:13:18 +08:00
this.checkes = res.data.enabledVoice
2024-09-23 18:01:24 +08:00
this.power = res.data.lowPower
2024-09-30 17:13:18 +08:00
this.powes = res.data.voiceMinutes
2024-10-06 18:03:09 +08:00
console.log(this.powes,res.data.voiceMinutes)
2024-07-31 18:01:34 +08:00
this.deviceList.forEach(item => {
this.tcidlist.push(item.deviceId)
})
2024-08-16 22:23:20 +08:00
if (res.data.gearAmount) {
this.gdvalue = res.data.gearAmount[0]
this.pdvalue = res.data.gearAmount[1]
this.dfvalue = res.data.gearAmount[2]
this.jdvalue = res.data.gearAmount[3]
}
if (res.data.timeUnit == 2) {
this.valuethr = '时'
this.timeUnit = 2
} else if (res.data.timeUnit == 3) {
this.valuethr = '分'
this.timeUnit = 3
} else if (res.data.timeUnit == 4) {
this.valuethr = '秒'
this.timeUnit = 4
}
if (res.data.feeMode == 1) {
this.valueone = '单次收费'
this.feeMode = 1
2024-10-11 18:03:30 +08:00
this.yjflag = false
2024-08-16 22:23:20 +08:00
} else {
this.valueone = '智能收费'
this.feeMode = 2
2024-10-11 18:03:30 +08:00
this.yjflag = true
2024-08-16 22:23:20 +08:00
}
if (res.data.feeType == 1) {
this.valuetwo = '计时收费'
this.feeType = 1
this.gmsjflag = true
this.jeflag = true
this.duflag = false
2024-10-11 18:03:30 +08:00
// if(this.feeMode = 1){
// this.yjflag = false
// }else{
// this.yjflag = true
// }
2024-08-16 22:23:20 +08:00
this.djflag = false
this.dangflag = false
} else if (res.data.feeType == 2) {
this.valuetwo = '按量收费'
this.feeType = 2
this.duflag = true
this.jeflag = true
this.gmsjflag = false
2024-10-11 18:03:30 +08:00
// if(this.feeMode = 1){
// this.yjflag = false
// }else{
// this.yjflag = true
// }
2024-08-16 22:23:20 +08:00
this.djflag = false
this.dangflag = false
} else if (res.data.feeType == 3) {
this.valuetwo = '分时段按量收费'
this.feeType = 3
this.gmsjflag = false
this.jeflag = false
this.duflag = false
2024-10-11 18:03:30 +08:00
// this.yjflag = true
2024-08-16 22:23:20 +08:00
this.djflag = true
this.dangflag = false
} else if (res.data.feeType == 4) {
this.valuetwo = '分时段按时收费'
this.feeType = 4
this.gmsjflag = false
this.dangflag = true
this.jeflag = false
this.duflag = false
2024-10-11 18:03:30 +08:00
// this.yjflag = true
2024-08-16 22:23:20 +08:00
this.djflag = false
}
if (res.data.gearTime.length > 0) {
let colorMap = {
0: "#64B6A7",
1: "#468DFF",
2: "#8883F0",
3: "#FF4444"
}
let colorsFromGearTime = res.data.gearTime.map(index => colorMap[index] || 'defaultColor')
this.backgroundColor = colorsFromGearTime
}else{
this.backgroundColor = Array(24).fill('#64B6A7')
}
2024-05-10 17:37:36 +08:00
}
})
},
2024-07-27 18:43:42 +08:00
btndel() {
2024-08-02 18:00:50 +08:00
this.btnmsk = true
2024-07-29 18:03:40 +08:00
let that = this
uni.showModal({
title: '提示',
content: '您确定要删除该套餐吗?',
success: function(res) {
if (res.confirm) {
that.$u.delete(`/app/suit/${that.suitId}`).then((res) => {
if (res.code == 200) {
uni.showToast({
title: '删除成功',
icon: 'success',
duration: 1000,
})
setTimeout(() => {
2024-08-02 18:00:50 +08:00
that.btnmsk = false
2024-07-29 18:03:40 +08:00
uni.navigateBack()
}, 1000)
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 1000,
})
2024-08-02 18:00:50 +08:00
that.btnmsk = false
2024-07-29 18:03:40 +08:00
}
})
} else if (res.cancel) {
2024-08-12 21:49:12 +08:00
2024-07-29 18:03:40 +08:00
}
2024-07-27 18:43:42 +08:00
}
})
},
2024-05-10 17:37:36 +08:00
}
}
</script>
<style lang="scss">
2024-07-17 17:59:51 +08:00
/deep/ .u-title {
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
2024-07-17 17:59:51 +08:00
/deep/ .u-icon__icon {
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
2024-07-17 17:59:51 +08:00
2024-08-12 21:49:12 +08:00
/deep/ .uicon-checkbox-mark {
padding-bottom: 0 !important;
}
// 收费模式
.batterybox {
width: 654rpx;
height: 980rpx;
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
filter: blur(0px);
border-radius: 20rpx;
margin: auto;
margin-top: 24rpx;
padding: 24rpx 28rpx;
box-sizing: border-box;
.wz {
font-size: 28rpx;
color: #3D3D3D;
margin-top: 30rpx;
}
.timeshi {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 52rpx;
.time_item {
width: 134rpx;
height: 48rpx;
// background: #64B6A7;
border-radius: 6rpx 6rpx 6rpx 6rpx;
margin-top: 18rpx;
color: #fff;
text-align: center;
line-height: 48rpx;
}
}
.dianj {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 26rpx;
.djone {
width: 134rpx;
height: 58rpx;
border-radius: 6rpx 6rpx 6rpx 6rpx;
border: 2rpx solid #64B6A7;
color: #64B6A7;
text-align: center;
line-height: 54rpx;
}
.dianjtwo {
display: flex;
align-items: center;
input {
width: 172rpx;
height: 58rpx;
background: #D8D8D8;
border-radius: 6rpx 6rpx 6rpx 6rpx;
text-align: center;
margin-right: 20rpx;
}
}
.dianjthre {
width: 134rpx;
height: 58rpx;
background: #64B6A7;
border-radius: 6rpx 6rpx 6rpx 6rpx;
color: #fff;
text-align: center;
font-size: 24rpx;
line-height: 58rpx;
}
}
}
2024-10-16 13:32:50 +08:00
.feems1 {
padding-bottom: 20rpx;
box-sizing: border-box;
background: #fff;
width: 654rpx;
margin: auto;
padding: 15rpx 24rpx;
// margin-top: 20rpx;
border-radius:0 0 20rpx 20rpx;
.one{
display: flex;
align-items: center;
}
.feert {
width: 430rpx;
display: flex;
align-items: center;
.yj {
width: 172rpx;
height: 58rpx;
background: #D8D8D8;
border-radius: 6rpx 6rpx 6rpx 6rpx;
// padding-left: 30rpx;
text-align: center;
box-sizing: border-box;
margin-right: 20rpx;
}
}
.feelt {
width: 174rpx;
height: 42rpx;
font-size: 30rpx;
color: #000000;
input {
width: 172rpx;
height: 58rpx;
background: #D8D8D8;
border-radius: 6rpx 6rpx 6rpx 6rpx;
text-align: center;
margin-right: 20rpx;
}
}
}
2024-08-12 21:49:12 +08:00
.feebox {
width: 654rpx;
max-height: 100%;
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
filter: blur(0px);
border-radius: 20rpx;
margin: auto;
margin-top: 24rpx;
padding: 15rpx 24rpx;
box-sizing: border-box;
.feemss {
border-bottom: 2rpx solid #D8D8D8;
padding-bottom: 20rpx;
padding-top: 20rpx;
box-sizing: border-box;
.txt {
display: inline-block;
width: 174rpx;
}
.feert {
width: 430rpx;
display: flex;
margin-left: 174rpx;
align-items: center;
margin-top: 30rpx;
justify-content: space-between;
.yj {
width: 172rpx;
height: 58rpx;
background: #D8D8D8;
border-radius: 6rpx 6rpx 6rpx 6rpx;
// padding-left: 30rpx;
text-align: center;
box-sizing: border-box;
margin-right: 20rpx;
}
}
.feelt {
// width: 174rpx;
height: 42rpx;
font-size: 30rpx;
color: #000000;
display: flex;
align-items: center;
input {
width: 172rpx;
height: 58rpx;
background: #D8D8D8;
border-radius: 6rpx 6rpx 6rpx 6rpx;
text-align: center;
margin-right: 20rpx;
}
}
}
.feems {
display: flex;
align-items: center;
border-bottom: 2rpx solid #D8D8D8;
padding-bottom: 20rpx;
padding-top: 20rpx;
box-sizing: border-box;
.feert {
width: 430rpx;
display: flex;
align-items: center;
.yj {
width: 172rpx;
height: 58rpx;
background: #D8D8D8;
border-radius: 6rpx 6rpx 6rpx 6rpx;
// padding-left: 30rpx;
text-align: center;
box-sizing: border-box;
margin-right: 20rpx;
}
}
.feelt {
width: 174rpx;
height: 42rpx;
font-size: 30rpx;
color: #000000;
input {
width: 172rpx;
height: 58rpx;
background: #D8D8D8;
border-radius: 6rpx 6rpx 6rpx 6rpx;
text-align: center;
margin-right: 20rpx;
}
}
}
}
2024-07-27 18:43:42 +08:00
.shebei {
width: 654rpx;
2024-08-02 18:00:50 +08:00
max-height: 55%;
overflow: scroll;
2024-07-27 18:43:42 +08:00
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
-webkit-filter: blur(0px);
filter: blur(0px);
margin: auto;
border-radius: 30rpx;
padding: 28rpx 38rpx;
box-sizing: border-box;
2024-08-02 18:00:50 +08:00
margin-top: 40rpx;
2024-07-27 18:43:42 +08:00
.sbtit {
font-size: 32rpx;
color: #000000;
font-weight: 600;
}
2024-08-12 21:49:12 +08:00
.sbarr {
2024-07-27 18:43:42 +08:00
display: flex;
flex-wrap: wrap;
width: 100%;
justify-content: space-between;
2024-08-12 21:49:12 +08:00
.sbarrval {
2024-08-02 18:00:50 +08:00
position: relative;
2024-07-27 18:43:42 +08:00
width: 48%;
height: 80rpx;
line-height: 80rpx;
background-color: #8883F0;
color: #fff;
2024-07-31 18:01:34 +08:00
text-align: right;
2024-07-27 18:43:42 +08:00
border-radius: 30rpx;
margin-top: 20rpx;
font-size: 30rpx;
2024-07-31 18:01:34 +08:00
text-align: right;
box-sizing: border-box;
display: flex;
justify-content: space-between;
padding: 0 20rpx;
box-sizing: border-box;
2024-07-27 18:43:42 +08:00
}
}
2024-08-12 21:49:12 +08:00
.btnsbadd {
2024-07-27 18:43:42 +08:00
width: 48%;
height: 80rpx;
line-height: 70rpx;
background-color: #8883F0;
color: #fff;
text-align: center;
border-radius: 30rpx;
margin-top: 20rpx;
font-size: 65rpx;
}
2024-08-12 21:49:12 +08:00
2024-07-27 18:43:42 +08:00
}
2024-05-10 17:37:36 +08:00
page {
background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%);
}
2024-08-12 21:49:12 +08:00
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
2024-07-27 18:43:42 +08:00
.arr_list {
position: absolute;
2024-07-27 18:43:42 +08:00
top: 50rpx;
right: -20rpx;
background: #FFFFFF;
width: 140rpx;
2024-07-27 18:43:42 +08:00
height: 245rpx;
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;
2024-08-12 21:49:12 +08:00
opacity: 0;
animation-name: fadeIn;
animation-duration: .5s;
animation-fill-mode: forwards;
2024-07-27 18:43:42 +08:00
.arr_item:last-child {
border: none !important;
}
2024-07-27 18:43:42 +08:00
.arr_item {
text-align: center;
2024-07-27 18:43:42 +08:00
height: 60rpx;
line-height: 60rpx;
border-bottom: 1px solid #ccc;
}
}
2024-07-27 18:43:42 +08:00
.picker {
2024-08-02 18:00:50 +08:00
margin-left: 10rpx;
}
2024-07-27 18:43:42 +08:00
2024-05-10 17:37:36 +08:00
.page {
width: 750rpx;
2024-08-02 18:00:50 +08:00
overflow: hidden;
height: 100vh;
2024-08-12 21:49:12 +08:00
2024-05-10 17:37:36 +08:00
.box {
width: 750rpx;
background: #F4F5F7;
border-radius: 0rpx 0rpx 0rpx 0rpx;
padding-top: 32rpx;
2024-08-12 21:49:12 +08:00
padding-bottom: 400rpx;
box-sizing: border-box;
height: 100vh;
overflow: scroll;
// overflow: hidden;
.tcname {
width: 654rpx;
height: 82rpx;
line-height: 82rpx;
margin: auto;
margin-top: 24rpx;
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
2024-10-16 13:32:50 +08:00
border-radius: 20rpx 20rpx 0 0;
2024-08-12 21:49:12 +08:00
display: flex;
padding-left: 28rpx;
box-sizing: border-box;
.title {
font-size: 30rpx;
color: #000000;
margin-right: 52rpx;
}
input {
height: 82rpx;
line-height: 82rpx;
}
}
.titwz {
width: 654rpx;
2024-09-10 18:34:35 +08:00
height: 450rpx;
2024-08-12 21:49:12 +08:00
background: #F0EFFF;
box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0, 0, 0, 0.15);
padding: 16rpx 28rpx;
box-sizing: border-box;
border-radius: 20rpx;
margin: auto;
view {
font-size: 28rpx;
color: #8883F0;
margin-top: 22rpx;
}
}
2024-05-10 17:37:36 +08:00
.list {
width: 654rpx;
2024-06-14 20:46:37 +08:00
max-height: 100%;
2024-05-10 17:37:36 +08:00
background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
filter: blur(0px);
margin: auto;
border-radius: 30rpx;
2024-07-29 18:03:40 +08:00
padding: 30rpx 38rpx;
2024-05-10 17:37:36 +08:00
box-sizing: border-box;
.title {
font-size: 32rpx;
color: #000000;
font-weight: 600;
}
input {
2024-07-27 18:43:42 +08:00
// margin-top: 30rpx;
// padding-left: 100rpx;
text-align: right;
2024-05-10 17:37:36 +08:00
}
}
.trues {
2024-07-27 18:43:42 +08:00
width: 290rpx;
2024-05-10 17:37:36 +08:00
height: 84rpx;
background: #8883F0;
filter: blur(0px);
text-align: center;
line-height: 84rpx;
position: fixed;
bottom: 76rpx;
2024-07-27 18:43:42 +08:00
left: 75%;
transform: translateX(-50%);
font-size: 36rpx;
color: #FFFFFF;
border-radius: 50rpx;
}
.truess {
width: 290rpx;
height: 84rpx;
background: red;
filter: blur(0px);
text-align: center;
line-height: 84rpx;
position: fixed;
bottom: 76rpx;
right: 33%;
2024-05-10 17:37:36 +08:00
transform: translateX(-50%);
font-size: 36rpx;
color: #FFFFFF;
border-radius: 50rpx;
}
2024-08-12 21:49:12 +08:00
2024-07-29 18:03:40 +08:00
.trueqx {
width: 290rpx;
height: 84rpx;
background: #ccc;
filter: blur(0px);
text-align: center;
line-height: 84rpx;
position: fixed;
bottom: 76rpx;
right: 33%;
transform: translateX(-50%);
font-size: 36rpx;
color: #FFFFFF;
border-radius: 50rpx;
}
2024-05-10 17:37:36 +08:00
}
}
</style>