bike/pages_admin/worke/woke_deviceMgmt.vue

785 lines
16 KiB
Vue
Raw Normal View History

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">
2024-05-14 18:04:34 +08:00
2024-06-20 18:08:54 +08:00
</view>
<view class="" style="background: #FFFFFF;width: 750rpx;padding-bottom: 36rpx;">
2025-01-02 17:13:25 +08:00
2024-06-20 18:08:54 +08:00
<view class="top_box" style="margin-top: 20rpx;">
2025-01-02 17:13:25 +08:00
2024-06-20 18:08:54 +08:00
<view class="sear_ipt">
2025-01-02 17:13:25 +08:00
<input type="text" v-model="searchKeyword" placeholder="请输入SN码" class="input"
placeholder-style="color:#C7CDD3" @input="search()">
2024-06-20 18:08:54 +08:00
</view>
</view>
2025-01-02 17:13:25 +08:00
2024-05-10 18:00:23 +08:00
</view>
<view class="stause_box">
2025-01-02 17:13:25 +08:00
<view class="stause_li" @click="show = true">
{{ tit }}
2024-05-14 18:04:34 +08:00
<view class="iconfont icon-xiangxia1"></view>
2024-05-10 18:00:23 +08:00
</view>
2025-01-02 17:13:25 +08:00
<view class="stause_li" style="margin-left: 50rpx;" @click="showdsc = true">
{{ sctit }}
<view class="iconfont icon-xiangxia1"></view>
</view>
<view class="stause_li" style="margin-left: 50rpx;" @click="showtype = true">
{{ typeSortLabel }}
2024-06-03 18:06:08 +08:00
<view class="iconfont icon-xiangxia1"></view>
2024-05-10 18:00:23 +08:00
</view>
</view>
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
<view class="info_card" style="margin-top: 20rpx;" v-for="(item, index) in filteredList" :key="index"
@click.stop="todetail(item)">
2024-05-14 18:04:34 +08:00
<view class="info_tit" style="margin-left: 36rpx;">
2025-01-02 17:13:25 +08:00
<view class="tit_right" :style="{ color: getStatusColors(item) }"
style="margin-left: 0rpx;margin-right: 20rpx;">
2024-07-11 18:01:54 +08:00
<view class="yuan" :style="{ background: getStatusColors(item) }"></view>
2025-01-02 17:13:25 +08:00
{{ statuss(item) }}
2024-07-11 18:01:54 +08:00
</view>
2025-01-02 17:13:25 +08:00
<view class="tit_left" v-if="stepindex == 1">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uTuWiPEViwzaPPHAgjdN" mode="aspectFit"
2024-06-20 18:08:54 +08:00
v-if="!isSelected(item.sn)" @click.stop="selectItem(item.sn)"></image>
2025-01-02 17:13:25 +08:00
<image src="https://lxnapi.ccttiot.com/bike/img/static/uGY25CNyW7Vz0LJcOYtS" mode="aspectFit"
2024-06-20 18:08:54 +08:00
v-if="isSelected(item.sn)" @click.stop="deselectItem(item.sn)"></image>
2024-05-14 18:04:34 +08:00
</view>
2025-01-02 17:13:25 +08:00
<span v-if="item.vehicleNum"> 车牌号{{ item.vehicleNum }}</span>
<span v-if="!item.vehicleNum"> 车牌号--</span>
2024-05-14 18:04:34 +08:00
<view class="tit_right" :style="{ color: getStatusColor(item) }">
<view class="yuan" :style="{ background: getStatusColor(item) }"></view>
2025-01-02 17:13:25 +08:00
{{ status(item) }}
2024-05-14 18:04:34 +08:00
</view>
</view>
<view class="lines"></view>
<view class="cont">
<view class="info_li">
<view class="half_infoli">
2024-06-21 18:03:21 +08:00
MAC
2025-01-02 17:13:25 +08:00
<span v-if="item.mac"> {{ item.mac }}</span>
<span v-if="!item.mac"> --</span>
2024-05-10 18:00:23 +08:00
</view>
2024-05-14 18:04:34 +08:00
<view class="half_infoli">
2024-06-21 18:03:21 +08:00
电量
2025-01-02 17:13:25 +08:00
<span v-if="item.remainingPower"> {{ item.remainingPower }}%</span>
<span v-else> --</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">
2024-06-21 18:03:21 +08:00
SN
2025-01-02 17:13:25 +08:00
<span v-if="item.sn"> {{ item.sn }}</span>
<span v-else> --</span>
2024-05-10 18:00:23 +08:00
</view>
2024-05-14 18:04:34 +08:00
<view class="half_infoli">
2024-06-21 18:03:21 +08:00
型号
2025-01-02 17:13:25 +08:00
<span v-if="item.model"> {{ item.model }}</span>
<span v-else> --</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">
2025-01-02 17:13:25 +08:00
<view class="step1" v-if="stepindex == 0" style="padding: 50rpx;">
2024-05-10 18:00:23 +08:00
<view class="step1_left">
2025-01-02 17:13:25 +08:00
设备总数<span>{{ filteredList.length }}</span>
2024-05-10 18:00:23 +08:00
</view>
2025-01-02 17:13:25 +08:00
<view class="right_box" @click="stepindex = 1">
2024-05-10 18:00:23 +08:00
批量操作
</view>
</view>
2025-01-02 17:13:25 +08:00
<view class="step2" v-if="stepindex == 1">
2024-05-10 18:00:23 +08:00
<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'"
2025-01-02 17:13:25 +08:00
mode="aspectFit"></image>
2024-05-14 18:04:34 +08:00
{{ isAllSelected ? '取消全选' : '全选' }}
2024-05-10 18:00:23 +08:00
</view>
<view class="top_right">
2025-01-02 17:13:25 +08:00
已选设备{{ selectedItems.length }}
2024-05-10 18:00:23 +08:00
</view>
</view>
<view class="bot_btn">
2025-01-02 17:13:25 +08:00
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-07-08 18:01:44 +08:00
<view class="btn" @click="gohome()">
车辆回仓
</view>
<view class="btn" @click="livehome()">
车辆出仓
</view>
2024-08-15 18:02:32 +08:00
<view class="btn" @click="closestep()">
2025-01-02 17:13:25 +08:00
退出操作
2024-08-15 18:02:32 +08:00
</view>
2025-01-02 17:13:25 +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>
2025-01-02 17:13:25 +08:00
<u-select v-model="showdsc" :list="lists" title='排序方式' @confirm="confirms"></u-select>
<u-select v-model="showtype" :list="sortTypeList" title='排序选择' @confirm="confirmSortType"></u-select>
2024-05-10 18:00:23 +08:00
</view>
</template>
<script>
2025-01-02 17:13:25 +08:00
export default {
data() {
return {
curtitidx: 0,
bgc: {
backgroundColor: "#fff",
},
showdsc: false,
sctit: '从低到高',
scidx: 'asc',
show: false,
showtype: false,
typeSort: '1',
typeSortLabel: 'SN码排序',
// 添加排序类型列表
sortTypeList: [{
value: '1',
label: 'SN码排序'
},
{
value: '2',
label: '车型排序'
},
{
value: '3',
label: '车牌号排序'
}],
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: [],
searchKeyword: '',
filteredList: [],
areaId: 0,
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
}
},
onLoad() {
},
onShow() {
if (uni.getStorageSync('adminAreaid')) {
this.areaId = uni.getStorageSync('adminAreaid')
this.getDevice()
}
},
computed: {
isAllSelected() {
if (this.selectedItems.length == this.deviceList.length) {
return true
} else {
return false
2024-05-10 18:00:23 +08:00
}
2025-01-02 17:13:25 +08:00
2024-05-10 18:00:23 +08:00
},
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
},
methods: {
search() {
if (this.searchKeyword != '') {
this.filteredList = this.deviceList.filter(device =>
device.sn.includes(this.searchKeyword)
);
} else {
this.filteredList = this.deviceList;
}
2024-08-09 18:03:26 +08:00
},
2025-01-02 17:13:25 +08:00
todetail(item) {
if (this.stepindex == 0) {
uni.navigateTo({
url: '/pages_admin/order/device_detail?id=' + item.sn
})
2024-06-25 09:23:55 +08:00
}
2025-01-02 17:13:25 +08:00
},
// 添加新的排序类型确认方法
confirmSortType(e) {
this.typeSort = e[0].value
this.typeSortLabel = e[0].label
this.getDevice()
2024-05-14 18:04:34 +08:00
},
2025-01-02 17:13:25 +08:00
ban() {
let data = {
disableType: 'disable',
sns: this.selectedItems.join(',')
}
this.$u.post(`/appVerify/device/disable?sns=` + data.sns + '&disableType=disable').then((res) => {
if (res.code == 200) {
this.closestep()
this.getDevice()
2024-05-14 18:04:34 +08:00
} else {
2025-01-02 17:13:25 +08:00
// 处理接口返回错误的情况
2024-05-14 18:04:34 +08:00
}
2025-01-02 17:13:25 +08:00
}).catch(error => {
// 处理接口请求失败的情况
});
2024-05-14 18:04:34 +08:00
},
2025-01-02 17:13:25 +08:00
pick() {
let data = {
disableType: 'enable',
sns: this.selectedItems.join(',')
}
this.$u.post(`/appVerify/device/disable?sns=` + data.sns + '&disableType=enable').then((res) => {
if (res.code == 200) {
this.closestep()
this.getDevice()
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
} else {
// 处理接口返回错误的情况
2024-05-14 18:04:34 +08:00
}
2025-01-02 17:13:25 +08:00
}).catch(error => {
// 处理接口请求失败的情况
});
},
gohome() {
let data = {
disableType: 'inStash',
sns: this.selectedItems.join(',')
}
this.$u.post(`/appVerify/device/disable?sns=` + data.sns + '&disableType=enable').then((res) => {
if (res.code == 200) {
this.closestep()
this.getDevice()
2024-06-03 18:06:08 +08:00
2025-01-02 17:13:25 +08:00
} else {
// 处理接口返回错误的情况
2024-07-08 18:01:44 +08:00
}
2025-01-02 17:13:25 +08:00
}).catch(error => {
// 处理接口请求失败的情况
});
},
livehome() {
let data = {
disableType: 'outStash',
sns: this.selectedItems.join(',')
}
this.$u.post(`/appVerify/device/disable?sns=` + data.sns + '&disableType=enable').then((res) => {
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 {
2025-01-02 17:13:25 +08:00
// 处理接口返回错误的情况
2024-07-11 18:01:54 +08:00
}
2025-01-02 17:13:25 +08:00
}).catch(error => {
// 处理接口请求失败的情况
});
},
confirms(e) {
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
this.scidx = e[0].value
this.sctit = e[0].label
this.getDevice()
},
getStatusColor(item) {
if (item.status == 0 || item.status == 8) {
return '#808080'; // 下线和未上架状态为灰色
} else if (item.status == 1) {
return '#28a745'; // 待租状态为绿色
} else if (item.status == 2) {
return '#ff8c00'; // 预约中状态为橙色
} else if (item.status == 3) {
return '#007bff'; // 骑行中状态为蓝色
} else if (item.status == 4) {
return '#ffc107'; // 临时锁车中状态为黄色
} else if (item.status == 6) {
return '#6f42c1'; // 调度中状态为紫色
} else if (item.status == 7) {
return '#343a40'; // 未绑定状态为黑色
}
},
getStatusColors(item) {
if (item.onlineStatus == 0) {
return '#dc3545'; // 离线状态为红色
} else {
return '#28a745'; // 在线状态为绿色
}
},
closestep() {
this.selectedItems = []
this.stepindex = 0
},
isSelected(sn) {
return this.selectedItems.includes(sn);
},
selectItem(sn) {
this.selectedItems.push(sn);
// 更新 isAllSelected
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
console.log(this.selectedItems, '选择');
},
deselectItem(sn) {
this.selectedItems = this.selectedItems.filter(item => item !== sn);
// 更新 isAllSelected
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
console.log(this.selectedItems, '删除');
},
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
selectAll() {
if (this.selectedItems.length === this.deviceList.length) {
// All items are already selected, so deselect all
2024-05-14 18:04:34 +08:00
this.selectedItems = [];
2025-01-02 17:13:25 +08:00
} else {
// Select all items
this.selectedItems = this.deviceList.map(item => item.sn);
}
},
status(item) {
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 == 6) {
return '调度中'
} else if (item.status == 7) {
return '未绑定'
} else if (item.status == 8) {
return '禁用中'
}
},
statuss(item) {
if (item.onlineStatus == 0) {
return '离线'
} else {
return '在线'
}
},
getDevice() {
let data = {
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
sort: this.scidx,
status: this.typeidx,
areaId: this.areaId,
typeSort: this.typeSort
}
this.selectedItems = [];
this.$u.get(`/appVerify/allVehicleInfo?`, data).then((res) => {
if (res.code == 200) {
this.deviceList = res.data
this.filteredList = this.deviceList;
} 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
}
2025-01-02 17:13:25 +08:00
}
2024-05-10 18:00:23 +08:00
</script>
<style lang="scss">
2025-01-02 17:13:25 +08:00
page {
background-color: #F6F6F6;
}
2024-05-10 18:00:23 +08:00
2025-01-02 17:13:25 +08:00
.page {
width: 750rpx;
.top_box {
display: flex;
flex-wrap: nowrap;
align-items: center;
padding: 28rpx 30rpx;
// padding: 20rpx 0;
margin: 0 auto;
width: 672rpx;
height: 100rpx;
background: #FFFFFF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
border-radius: 10rpx 10rpx 10rpx 10rpx;
.left_text {
2024-06-20 18:08:54 +08:00
display: flex;
flex-wrap: nowrap;
align-items: center;
2025-01-02 17:13:25 +08:00
width: 25%;
font-weight: 400;
font-size: 32rpx;
color: #3D3D3D;
.icon-xiangxia1 {
font-size: 26rpx;
}
}
.timebox {
width: 75%;
display: flex;
flex-wrap: nowrap;
align-items: center;
margin-left: 34rpx;
.left_time {
text-align: center;
margin-right: 6rpx;
height: 50rpx;
width: 45%;
border: 2rpx solid #ccc;
border-radius: 12rpx;
font-weight: 400;
font-size: 32rpx;
color: #979797;
}
.right_time {
text-align: center;
margin-left: 6rpx;
height: 50rpx;
width: 45%;
border: 2rpx solid #ccc;
border-radius: 12rpx;
font-weight: 400;
font-size: 32rpx;
color: #979797;
}
}
}
.info_card {
background: #FFFFFF;
.info_tit {
display: flex;
flex-wrap: nowrap;
padding: 22rpx 28rpx;
.tit_left {
2024-06-20 18:08:54 +08:00
display: flex;
align-items: center;
font-weight: 400;
2025-01-02 17:13:25 +08:00
font-size: 28rpx;
2024-06-20 18:08:54 +08:00
color: #3D3D3D;
2025-01-02 17:13:25 +08:00
image {
width: 46rpx;
height: 46rpx;
2024-06-20 18:08:54 +08:00
}
}
2025-01-02 17:13:25 +08:00
.tit_right {
2024-06-20 18:08:54 +08:00
display: flex;
flex-wrap: nowrap;
align-items: center;
2025-01-02 17:13:25 +08:00
margin-left: auto;
font-weight: 400;
font-size: 28rpx;
color: #4C97E7;
.yuan {
margin-right: 12rpx;
margin-top: 6rpx;
width: 15rpx;
height: 15rpx;
border-radius: 50%;
background: #4C97E7;
2024-06-20 18:08:54 +08:00
}
}
}
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.lines {
width: 750rpx;
height: 1rpx;
border: 1rpx solid #E6E8EB;
}
.cont {
padding: 26rpx 28rpx;
.info_li {
2024-05-10 18:00:23 +08:00
display: flex;
flex-wrap: nowrap;
2025-01-02 17:13:25 +08:00
font-weight: 400;
font-size: 28rpx;
color: #808080;
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
span {
2024-05-10 18:00:23 +08:00
color: #3D3D3D;
}
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
line-height: 48rpx;
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.half_infoli {
2024-05-10 18:00:23 +08:00
display: flex;
flex-wrap: nowrap;
2025-01-02 17:13:25 +08:00
width: 50%;
2024-05-10 18:00:23 +08:00
font-weight: 400;
font-size: 28rpx;
color: #808080;
2025-01-02 17:13:25 +08:00
white-space: nowrap;
/* 禁止换行 */
overflow: hidden;
/* 超出部分隐藏 */
text-overflow: ellipsis;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
span {
color: #3D3D3D;
2025-01-02 17:13:25 +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
2025-01-02 17:13:25 +08:00
.input {
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
}
}
}
}
2025-01-02 17:13:25 +08:00
}
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.bot_box {
padding: 0 10rpx 0 30rpx;
position: fixed;
bottom: 0;
width: 750rpx;
// height: 262rpx;
background: #FFFFFF;
box-shadow: 0rpx 8rpx 20rpx 0rpx rgba(0, 0, 0, 0.3);
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.step2 {
padding: 42rpx 32rpx;
display: flex;
flex-wrap: wrap;
// align-items: center;
// flex-wrap: nowrap;
width: 100%;
height: 100%;
.top {
2024-05-10 18:00:23 +08:00
width: 100%;
2025-01-02 17:13:25 +08:00
display: flex;
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.top_left {
2024-05-10 18:00:23 +08:00
display: flex;
2025-01-02 17:13:25 +08:00
flex-wrap: nowrap;
font-weight: 400;
font-size: 36rpx;
color: #3D3D3D;
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
image {
width: 46rpx;
height: 46rpx;
2024-05-10 18:00:23 +08:00
}
}
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.top_right {
font-weight: 400;
font-size: 36rpx;
color: #3D3D3D;
margin-left: auto;
2024-05-10 18:00:23 +08:00
}
}
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.bot_btn {
margin-top: 30rpx;
2024-05-10 18:00:23 +08:00
display: flex;
2025-01-02 17:13:25 +08:00
flex-wrap: wrap;
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
width: 750rpx;
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
background: #fff;
// background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
.btn:nth-child(4n) {
margin-right: 0;
2024-05-10 18:00:23 +08:00
}
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.btn {
margin-top: 10rpx;
margin-right: 16rpx;
2024-05-10 18:00:23 +08:00
display: flex;
align-items: center;
justify-content: center;
2025-01-02 17:13:25 +08:00
width: 150rpx;
2024-05-10 18:00:23 +08:00
height: 66rpx;
2025-01-02 17:13:25 +08:00
background: #E2F2FF;
2024-05-10 18:00:23 +08:00
border-radius: 0rpx 0rpx 0rpx 0rpx;
border: 2rpx solid #4C97E7;
2025-01-02 17:13:25 +08:00
font-weight: 400;
2024-05-10 18:00:23 +08:00
font-size: 28rpx;
2025-01-02 17:13:25 +08:00
color: #3D3D3D;
2024-05-10 18:00:23 +08:00
}
}
}
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.step1 {
2024-05-10 18:00:23 +08:00
display: flex;
2025-01-02 17:13:25 +08:00
align-items: center;
2024-05-10 18:00:23 +08:00
flex-wrap: nowrap;
2025-01-02 17:13:25 +08:00
width: 100%;
height: 100%;
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.step1_left {
2024-05-10 18:00:23 +08:00
font-weight: 400;
2025-01-02 17:13:25 +08:00
font-size: 36rpx;
2024-05-10 18:00:23 +08:00
color: #3D3D3D;
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
span {
color: #4C97E7;
2024-05-10 18:00:23 +08:00
}
}
2025-01-02 17:13:25 +08:00
.right_box {
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-10 18:00:23 +08:00
}
2025-01-02 17:13:25 +08:00
}
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.stause_box {
background: #fff;
padding: 44rpx 30rpx;
display: flex;
flex-wrap: nowrap;
.stause_li {
2024-05-10 18:00:23 +08:00
display: flex;
flex-wrap: nowrap;
align-items: center;
2025-01-02 17:13:25 +08:00
font-weight: 400;
font-size: 32rpx;
color: #3D3D3D;
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.icon-xiangxia1 {
margin-left: 6rpx;
font-size: 20rpx;
2024-05-10 18:00:23 +08:00
}
2025-01-02 17:13:25 +08:00
}
}
2024-05-14 18:04:34 +08:00
2025-01-02 17:13:25 +08:00
.tap {
padding-top: 24rpx;
width: 750rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-around;
background: #fff;
.tap_cont {
text-align: center;
padding-bottom: 15rpx;
width: 200rpx;
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
border-bottom: 6rpx solid #fff;
}
.act1 {
border-bottom: 6rpx solid #4C97E7;
color: #4C97E7;
2024-05-10 18:00:23 +08:00
}
}
2025-01-02 17:13:25 +08:00
}
2024-05-14 18:04:34 +08:00
</style>