2024-05-10 18:00:23 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="page">
|
|
|
|
|
<u-navbar title="设备管理" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
2024-06-07 18:08:55 +08:00
|
|
|
|
height='45'></u-navbar>
|
2024-05-10 18:00:23 +08:00
|
|
|
|
<view class="tap">
|
|
|
|
|
<!-- <view class="tap_cont " :class="curtitidx==0?'act1':''" @click="changeidx(0)">
|
|
|
|
|
投放中设备
|
|
|
|
|
</view>
|
|
|
|
|
<view class="tap_cont" :class="curtitidx==1?'act1':''" @click="changeidx(1)">
|
|
|
|
|
仓库中设备
|
|
|
|
|
</view> -->
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="stause_box">
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="stause_li" @click="show=true">
|
|
|
|
|
{{tit}}
|
|
|
|
|
<view class="iconfont icon-xiangxia1"></view>
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="stause_li" style="margin-left: 50rpx;" @click="showdsc=true">
|
2024-06-03 18:06:08 +08:00
|
|
|
|
{{sctit}}
|
|
|
|
|
<view class="iconfont icon-xiangxia1"></view>
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
<view class="info_card" style="margin-top: 20rpx;" v-for="(item,index) in deviceList" :key="index" v-if="">
|
|
|
|
|
<view class="info_tit" style="margin-left: 36rpx;">
|
|
|
|
|
<view class="tit_left" v-if="stepindex==1">
|
|
|
|
|
<image src="https://lxnapi.ccttiot.com/bike/img/static/uTuWiPEViwzaPPHAgjdN" mode=""
|
|
|
|
|
v-if="!isSelected(item.sn)" @click="selectItem(item.sn)"></image>
|
|
|
|
|
<image src="https://lxnapi.ccttiot.com/bike/img/static/uGY25CNyW7Vz0LJcOYtS" mode=""
|
|
|
|
|
v-if="isSelected(item.sn)" @click="deselectItem(item.sn)"></image>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
车牌号:{{item.vehicleNum}}
|
|
|
|
|
<view class="tit_right" :style="{ color: getStatusColor(item) }">
|
|
|
|
|
|
|
|
|
|
<view class="yuan" :style="{ background: getStatusColor(item) }"></view>
|
|
|
|
|
{{status(item)}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="lines"></view>
|
|
|
|
|
<view class="cont">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<view class="info_li">
|
|
|
|
|
<view class="half_infoli">
|
|
|
|
|
MAC:<span>{{item.mac}}</span>
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="half_infoli">
|
|
|
|
|
电量:<span>{{item.remainingPower}}%</span>
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="info_li">
|
|
|
|
|
<view class="half_infoli">
|
|
|
|
|
SN:<span>{{item.sn}}</span>
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="half_infoli">
|
|
|
|
|
型号:<span>{{item.model}}</span>
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
<view class="bot_box">
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="step1" v-if="stepindex ==0">
|
2024-05-10 18:00:23 +08:00
|
|
|
|
<view class="step1_left">
|
2024-05-14 18:04:34 +08:00
|
|
|
|
设备总数:<span>{{deviceList.length}}</span>
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="right_box" @click="stepindex=1">
|
2024-05-10 18:00:23 +08:00
|
|
|
|
批量操作
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="step2">
|
|
|
|
|
<view class="top">
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="top_left" @click="selectAll">
|
|
|
|
|
<image
|
|
|
|
|
:src="isAllSelected ? 'https://lxnapi.ccttiot.com/bike/img/static/uGY25CNyW7Vz0LJcOYtS' : 'https://lxnapi.ccttiot.com/bike/img/static/uTuWiPEViwzaPPHAgjdN'"
|
|
|
|
|
mode=""></image>
|
|
|
|
|
{{ isAllSelected ? '取消全选' : '全选' }}
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="top_right">
|
2024-05-14 18:04:34 +08:00
|
|
|
|
已选设备:{{selectedItems.length}}
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="bot_btn">
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="btn" @click="closestep()">
|
2024-05-10 18:00:23 +08:00
|
|
|
|
取消
|
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<!-- <view class="btn">
|
2024-05-10 18:00:23 +08:00
|
|
|
|
返仓
|
|
|
|
|
</view> -->
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="btn" @click="ban()">
|
2024-05-10 18:00:23 +08:00
|
|
|
|
车辆禁用
|
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="btn" @click="pick()">
|
2024-05-10 18:00:23 +08:00
|
|
|
|
车辆解禁
|
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-05-14 18:04:34 +08:00
|
|
|
|
<view class="bottom" style="width: 100%;height: 300rpx;">
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
<u-select v-model="show" :list="list" title='设备状态' @confirm="confirm"></u-select>
|
|
|
|
|
<u-select v-model="showdsc" :list="lists" title='剩余电量' @confirm="confirms"></u-select>
|
2024-05-10 18:00:23 +08:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2024-05-14 18:04:34 +08:00
|
|
|
|
curtitidx: 0,
|
2024-05-10 18:00:23 +08:00
|
|
|
|
bgc: {
|
|
|
|
|
backgroundColor: "#fff",
|
|
|
|
|
},
|
2024-05-14 18:04:34 +08:00
|
|
|
|
showdsc: false,
|
|
|
|
|
sctit: '从高到低',
|
|
|
|
|
scidx: 'desc',
|
|
|
|
|
show: false,
|
|
|
|
|
lists: [{
|
|
|
|
|
value: 'desc',
|
|
|
|
|
label: '从高到低'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 'asc',
|
|
|
|
|
label: '从低到高'
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
list: [{
|
|
|
|
|
value: '',
|
|
|
|
|
label: '全部'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: '0',
|
|
|
|
|
label: '未上架'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: '1',
|
|
|
|
|
label: '待租'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: '2',
|
|
|
|
|
label: '预约中'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: '3',
|
|
|
|
|
label: '骑行中'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: '4',
|
|
|
|
|
label: '临时锁车'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: '8',
|
|
|
|
|
label: '下线'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
tit: '全部',
|
|
|
|
|
typeidx: '',
|
|
|
|
|
deviceList: [],
|
|
|
|
|
stepindex: 0,
|
|
|
|
|
selectedItems: [],
|
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.getDevice()
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
isAllSelected() {
|
|
|
|
|
if (this.selectedItems.length == this.deviceList.length) {
|
|
|
|
|
return true
|
|
|
|
|
} else {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
methods: {
|
2024-06-03 18:06:08 +08:00
|
|
|
|
ban() {
|
|
|
|
|
let data = {
|
|
|
|
|
disableType: 'disable',
|
|
|
|
|
sns: this.selectedItems.join(',')
|
2024-05-14 18:04:34 +08:00
|
|
|
|
}
|
2024-06-03 18:06:08 +08:00
|
|
|
|
this.$u.post(`/appVerify/device/disable?sns=` + data.sns + '&disableType=disable').then((res) => {
|
2024-05-14 18:04:34 +08:00
|
|
|
|
if (res.code == 200) {
|
2024-06-03 18:06:08 +08:00
|
|
|
|
this.closestep()
|
2024-05-14 18:04:34 +08:00
|
|
|
|
this.getDevice()
|
|
|
|
|
} else {
|
|
|
|
|
// 处理接口返回错误的情况
|
|
|
|
|
}
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
// 处理接口请求失败的情况
|
|
|
|
|
});
|
|
|
|
|
},
|
2024-06-03 18:06:08 +08:00
|
|
|
|
pick() {
|
|
|
|
|
let data = {
|
|
|
|
|
disableType: 'enable',
|
|
|
|
|
sns: this.selectedItems.join(',')
|
2024-05-14 18:04:34 +08:00
|
|
|
|
}
|
2024-06-03 18:06:08 +08:00
|
|
|
|
this.$u.post(`/appVerify/device/disable?sns=` + data.sns + '&disableType=enable').then((res) => {
|
2024-05-14 18:04:34 +08:00
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.closestep()
|
|
|
|
|
this.getDevice()
|
2024-06-03 18:06:08 +08:00
|
|
|
|
|
|
|
|
|
|
2024-05-14 18:04:34 +08:00
|
|
|
|
} else {
|
|
|
|
|
// 处理接口返回错误的情况
|
|
|
|
|
}
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
// 处理接口请求失败的情况
|
|
|
|
|
});
|
|
|
|
|
},
|
2024-06-03 18:06:08 +08:00
|
|
|
|
confirms(e) {
|
|
|
|
|
|
2024-05-14 18:04:34 +08:00
|
|
|
|
this.scidx = e[0].value
|
|
|
|
|
this.sctit = e[0].label
|
|
|
|
|
this.getDevice()
|
|
|
|
|
},
|
|
|
|
|
getStatusColor(item) {
|
|
|
|
|
if (item.onlineStatus == 0) {
|
|
|
|
|
// 离线状态为红色
|
|
|
|
|
return 'red';
|
|
|
|
|
} else if (item.status == 0 || item.status == 8) {
|
|
|
|
|
// 下线和未上架状态为灰色
|
|
|
|
|
return 'gray';
|
|
|
|
|
} else {
|
|
|
|
|
// 其他状态为蓝色
|
|
|
|
|
// return 'blue';
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
closestep() {
|
|
|
|
|
this.selectedItems = []
|
|
|
|
|
this.stepindex = 0
|
|
|
|
|
},
|
|
|
|
|
isSelected(sn) {
|
|
|
|
|
return this.selectedItems.includes(sn);
|
|
|
|
|
},
|
|
|
|
|
selectItem(sn) {
|
|
|
|
|
this.selectedItems.push(sn);
|
|
|
|
|
// 更新 isAllSelected
|
|
|
|
|
|
|
|
|
|
console.log(this.selectedItems, '选择');
|
|
|
|
|
},
|
|
|
|
|
deselectItem(sn) {
|
|
|
|
|
this.selectedItems = this.selectedItems.filter(item => item !== sn);
|
|
|
|
|
// 更新 isAllSelected
|
|
|
|
|
|
|
|
|
|
console.log(this.selectedItems, '删除');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
selectAll() {
|
|
|
|
|
if (this.selectedItems.length === this.deviceList.length) {
|
|
|
|
|
// All items are already selected, so deselect all
|
|
|
|
|
this.selectedItems = [];
|
|
|
|
|
} else {
|
|
|
|
|
// Select all items
|
|
|
|
|
this.selectedItems = this.deviceList.map(item => item.sn);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
status(item) {
|
|
|
|
|
if (item.onlineStatus == 0) {
|
|
|
|
|
return '离线'
|
|
|
|
|
} else {
|
|
|
|
|
if (item.status == 0) {
|
|
|
|
|
return '未上架'
|
|
|
|
|
} else if (item.status == 1) {
|
|
|
|
|
return '待租'
|
|
|
|
|
} else if (item.status == 2) {
|
|
|
|
|
return '预约中'
|
|
|
|
|
} else if (item.status == 3) {
|
|
|
|
|
return '骑行中'
|
|
|
|
|
} else if (item.status == 4) {
|
|
|
|
|
return '临时锁车中'
|
|
|
|
|
} else if (item.status == 8) {
|
|
|
|
|
return '下线'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
getDevice() {
|
|
|
|
|
let data = {
|
|
|
|
|
powerStart: '',
|
|
|
|
|
powerEnd: '',
|
2024-06-03 18:06:08 +08:00
|
|
|
|
sort: this.scidx,
|
2024-05-14 18:04:34 +08:00
|
|
|
|
status: this.typeidx
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.selectedItems = [];
|
|
|
|
|
this.$u.get(`/appVerify/allVehicleInfo?`, data).then((res) => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.deviceList = res.data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
// 处理接口返回错误的情况
|
|
|
|
|
}
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
// 处理接口请求失败的情况
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
confirm(e) {
|
|
|
|
|
// console.log(e,'eeeeeeeeee');
|
|
|
|
|
this.typeidx = e[0].value
|
|
|
|
|
this.tit = e[0].label
|
|
|
|
|
this.getDevice()
|
|
|
|
|
// console.log(e);
|
|
|
|
|
// this.mode = e[0].label
|
|
|
|
|
// this.gettype()
|
|
|
|
|
},
|
|
|
|
|
changeidx(idx) {
|
|
|
|
|
this.curtitidx = idx
|
2024-05-10 18:00:23 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
page {
|
2024-05-14 18:04:34 +08:00
|
|
|
|
background-color: #F6F6F6;
|
2024-05-10 18:00:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page {
|
|
|
|
|
width: 750rpx;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
.info_card {
|
|
|
|
|
background: #FFFFFF;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
.info_tit {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
padding: 22rpx 28rpx;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.tit_left {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #3D3D3D;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
image {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
width: 46rpx;
|
|
|
|
|
height: 46rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.tit_right {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #4C97E7;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.yuan {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
margin-right: 12rpx;
|
|
|
|
|
margin-top: 6rpx;
|
|
|
|
|
width: 15rpx;
|
|
|
|
|
height: 15rpx;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: #4C97E7;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
.lines {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 2rpx;
|
|
|
|
|
border: 2rpx solid #ccc;
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
.cont {
|
|
|
|
|
padding: 26rpx 28rpx;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
.info_li {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #808080;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
span {
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
line-height: 48rpx;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
.half_infoli {
|
2024-05-14 18:04:34 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
2024-05-10 18:00:23 +08:00
|
|
|
|
width: 50%;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #808080;
|
2024-06-03 18:06:08 +08:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
/* 禁止换行 */
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
/* 超出部分隐藏 */
|
|
|
|
|
text-overflow: ellipsis;
|
2024-05-10 18:00:23 +08:00
|
|
|
|
span {
|
|
|
|
|
color: #3D3D3D;
|
2024-06-03 18:06:08 +08:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
/* 禁止换行 */
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
/* 超出部分隐藏 */
|
|
|
|
|
text-overflow: ellipsis;
|
2024-05-10 18:00:23 +08:00
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.input {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
width: 30%;
|
2024-06-03 18:06:08 +08:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
/* 禁止换行 */
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
/* 超出部分隐藏 */
|
|
|
|
|
text-overflow: ellipsis;
|
2024-05-10 18:00:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.bot_box {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
padding: 0 30rpx;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 232rpx;
|
|
|
|
|
background: #FFFFFF;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
box-shadow: 0rpx 8rpx 20rpx 0rpx rgba(0, 0, 0, 0.3);
|
|
|
|
|
|
|
|
|
|
.step2 {
|
|
|
|
|
padding: 42rpx 32rpx;
|
2024-05-10 18:00:23 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
// align-items: center;
|
|
|
|
|
// flex-wrap: nowrap;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.top {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.top_left {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #3D3D3D;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
image {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
width: 46rpx;
|
|
|
|
|
height: 46rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.top_right {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.bot_btn {
|
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
width: 750rpx;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
background: #fff;
|
|
|
|
|
// background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
2024-05-10 18:00:23 +08:00
|
|
|
|
.btn:nth-child(4n) {
|
2024-05-14 18:04:34 +08:00
|
|
|
|
margin-right: 0;
|
2024-05-10 18:00:23 +08:00
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.btn {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
margin-right: 18rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 164rpx;
|
|
|
|
|
height: 66rpx;
|
|
|
|
|
background: #E2F2FF;
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
border: 2rpx solid #4C97E7;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.step1 {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.step1_left {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #3D3D3D;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
span {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
color: #4C97E7;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.right_box {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
margin-left: auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 244rpx;
|
|
|
|
|
height: 66rpx;
|
|
|
|
|
background: #4C97E7;
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
border: 2rpx solid #4C97E7;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.stause_box {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 44rpx 30rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.stause_li {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.icon-xiangxia1 {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
margin-left: 6rpx;
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.tap {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
padding-top: 24rpx;
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
background: #fff;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.tap_cont {
|
2024-05-10 18:00:23 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
padding-bottom: 15rpx;
|
|
|
|
|
width: 200rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
2024-05-14 18:04:34 +08:00
|
|
|
|
border-bottom: 6rpx solid #fff;
|
2024-05-10 18:00:23 +08:00
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
|
|
|
|
|
.act1 {
|
|
|
|
|
border-bottom: 6rpx solid #4C97E7;
|
2024-05-10 18:00:23 +08:00
|
|
|
|
color: #4C97E7;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-14 18:04:34 +08:00
|
|
|
|
</style>
|