bike/page_fix/repair/repair_detail.vue
2024-07-02 18:07:01 +08:00

1142 lines
28 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="page">
<u-navbar title="工单详情" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='45'></u-navbar>
<view class="top">
<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>
</view>
</view>
<view class="page1" v-if="curtitidx==0">
<view class="device_info">
<view class="device_top">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uacJ7fdNpS3llY54ZaUi" mode=""></image>
设备信息
</view>
<view class="info_li">
<view class="info_li_left">
设备编号
</view>
<view class="info_li_right">
{{info.sn}}
</view>
</view>
<view class="info_li">
<view class="info_li_left">
车辆型号
</view>
<view class="info_li_right">
{{info.device.model}}
</view>
</view>
<!-- <view class="info_li">
<view class="info_li_left">
运营商
</view>
<view class="info_li_right">
{{info.model}}
</view>
</view> -->
<view class="info_li">
<view class="info_li_left">
运营区域
</view>
<view class="info_li_right">
{{info.device.areaName}}
</view>
</view>
<view class="info_li">
<view class="info_li_left">
车辆状态
</view>
<view class="info_li_right">
{{comstatus}}
</view>
</view>
<!-- <view class="info_li">
<view class="info_li_left">
开机状态
</view>
<view class="info_li_right">
DS-15659874523
</view>
</view>
<view class="info_li">
<view class="info_li_left">
头盔锁状态
</view>
<view class="info_li_right">
DS-15659874523
</view>
</view>
<view class="info_li">
<view class="info_li_left">
电池锁状态
</view>
<view class="info_li_right">
DS-15659874523
</view>
</view> -->
<!-- <view class="info_li">
<view class="info_li_left">
剩余电量
</view>
<view class="info_li_right">
DS-15659874523
</view>
</view> -->
<view class="info_li">
<view class="info_li_left">
续航里程
</view>
<view class="info_li_right">
{{info.device.remainingMileage}}
</view>
</view>
<view class="info_li">
<view class="info_li_left">
电池电量
</view>
<view class="info_li_right">
{{info.device.voltage}}V, {{info.device.remainingPower}}%
</view>
</view>
<view class="info_li" @click="mapFun()" style="align-items: flex-start;">
<view class="info_li_left">
设备位置
</view>
<view class="info_li_right" style="display: inline;width: 62%;">
{{info.address}}
</view>
<image src="https://lxnapi.ccttiot.com/bike/img/static/uklW7KIegcLR6E7DTOGO" mode="" style="width: 46rpx;"></image>
</view>
</view>
<view class="fix_info" v-if="info.type==1">
<view class="fix_top">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uCQgmzKCxtkLtZTeMgRC" mode=""></image>
设备维修
</view>
<view class="info_li">
<view class="info_li_left">
报修单号
</view>
<view class="info_li_right">
{{info.orderNo}}
</view>
</view>
<view class="info_li">
<view class="info_li_left">
故障部位
</view>
<view class="info_li_right">
{{info.fault.typeStr}}
</view>
</view>
<view class="info_li">
<view class="info_li_left">
报修用户
</view>
<view class="info_li_right">
{{info.fault.userName}}
</view>
</view>
<view class="info_li">
<view class="info_li_left">
故障描述
</view>
<view class="info_li_right">
{{info.fault.detail}}
</view>
</view>
<view class="info_li">
<view class="info_li_left">
报修时间
</view>
<view class="info_li_right">
{{info.fault.createTime}}
</view>
</view>
<view class="info_li">
<view class="info_li_left">
维修人员
</view>
<view class="info_li_right">
{{info.adminName}}
</view>
</view>
</view>
<view class="fix_info" v-if="info.type==2">
<view class="fix_top">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uCQgmzKCxtkLtZTeMgRC" mode=""></image>
换电信息
</view>
<view class="info_li"style="align-items: flex-start;word-wrap: break-word;">
<view class="info_li_left">
换电单号
</view>
<view class="info_li_right" style="display: inline;width: 70%;">
{{info.orderNo}}
</view>
</view>
<view class="info_li">
<view class="info_li_left">
换电前电量
</view>
<view class="info_li_right">
{{info.beforeElectric}}%
</view>
</view>
<view class="info_li">
<view class="info_li_left">
换电后电量
</view>
<view class="info_li_right">
{{info.afterElectric}}%
</view>
</view>
<view class="info_li">
<view class="info_li_left">
报修时间
</view>
<view class="info_li_right">
{{info.createTime}}
</view>
</view>
<view class="info_li">
<view class="info_li_left">
换电人员
</view>
<view class="info_li_right">
{{info.adminName}}
</view>
</view>
</view>
<view class="bot_btn" v-if="info.status!=4">
<view class="btn" @click="btn(0)">
开锁
</view>
<view class="btn" @click="btn(1)">
关锁
</view>
<view class="btn" @click="btn(2)">
车辆禁用
</view>
<view class="btn" @click="btn(3)">
车辆解禁
</view>
<view class="btn" @click="btn(4)">
响铃寻车
</view>
<view class="btn" @click="Binddevice()">
蓝牙链接
</view>
<view class="btn" @click="open()" v-if="carstause">
蓝牙开锁
</view>
<view class="btn" @click="close()" v-if="carstause">
蓝牙关锁
</view>
<view class="btn" @click="reboot()" v-if="carstause">
设备重启
</view>
<view class="btn" @click="tipshow=true" v-if="info.type==1">
维修处理
</view>
<view class="btn" @click="tipshow=true" v-if="info.type==2">
换电处理
</view>
</view>
</view>
<view class="page2" v-if="curtitidx==1" style="padding: 30rpx;padding-left: 80rpx;">
<view class="timebox" style="padding: 30rpx;">
<u-time-line >
<u-time-line-item v-for="(imte,index ) in history" :key="index" >
<!-- 此处没有自定义左边的内容,会默认显示一个点 -->
<template v-slot:content>
<view>
<view class="u-order-desc">{{imte.info}}</view>
<view class="u-order-time">{{imte.createTime}}</view>
</view>
</template>
</u-time-line-item>
</u-time-line>
</view>
</view>
<u-mask :show="tipshow" z-index='10'>
</u-mask>
<view class="tip_box" v-if="tipshow">
<view class="cont">
<view class="tit">
维修备注
</view>
<view class="input-container">
<!-- <view class="placeholder" v-if="!textValue">如选项未涵盖,请输入故障问题</view> -->
<textarea class="custom-textarea" v-model="textValue" @focus="hidePlaceholder" style="border: none;" placeholder="请填写维修备注"
@input="updateWordCount" @blur="showPlaceholder" maxlength='100'></textarea>
<text class="word-count">{{ currentCount }}/100</text>
</view>
<view class="tip_btn" @click="putFix()">
完成
</view>
</view>
</view>
</view>
</template>
<script>
const app = getApp();
var xBlufi = require("@/utils/blufi/xBlufi.js");
let _this = null;
export default {
data() {
return {
devicesList: [
// {name:'110000',
// mac:'11111'}
],
searching: false,
texts: '正在扫描蓝牙设备...',
btnflag: true,
tishiflag: false,
option: '',
bluthlist: [], //蓝牙数组
// status: 'loading',
statusflag: false,
Bluetoothmac: '',
mac: '',
ishave: false,
ver_data: null,
deviceInfoss: {},
gps: {},
isband: false,
// status: false,
deviceIds: '',
name: '',
orderinfo: {},
dl: 0,
czmoney:true,
iscz:true,
bgc: {
backgroundColor: "#fff",
},
curtitidx:0,
latitude: 0,
longitude: 0,
info:'',
tipshow:false,
textValue: '',
placeholderVisible:false,
currentCount: 0,
info:{},
history:[]
}
},
onLoad(e) {
this.id=e.id
this.getdetail()
},
computed:{
comstatus(){
if(this.info.status==0){
return '未上架'
}else if (this.info.status==1){
return '正常'
}else if (this.info.status==2){
return '预约中'
}else if (this.info.status==3){
return '使用中'
}else if (this.info.status==4){
return '临时锁车'
}else if (this.info.status==5){
return '检修中'
}else if (this.info.status==6){
return '工单中'
}else if (this.info.status==9){
return '废弃'
}
}
},
methods: {
Binddevice(){
uni.showLoading({
title:'连接中..'
})
xBlufi.initXBlufi(1);
console.log("xBlufi", xBlufi.XMQTT_SYSTEM);
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
xBlufi.notifyStartDiscoverBle({
'isStart': true
});
// 两秒后停止蓝牙搜索
setTimeout(() => {
xBlufi.notifyStartDiscoverBle({
'isStart': false
});
setTimeout(()=>{
uni.hideLoading()
if (this.devicesList.length == 0) {
uni.showToast({
title: '暂无发现对应设备,请靠近设备',
icon: 'none'
});
} else {
let uniqueDevicesList = Array.from(new Set(this.devicesList));
// 将去重后的数组重新赋值给 this.devicesList
this.devicesList = uniqueDevicesList;
console.log(this.devicesList,'this.devicesListthis.devicesList');
this.devicesList.forEach(device => {
// 从设备名称中提取 MAC 地址(假设 MAC 地址是设备名称的后6个字符
let macFromName = device.name.substring(device.name.length - 12);
console.log(macFromName,'macFromNamemacFromName');
// 与 this.mac 进行比较
if (macFromName == this.mac) {
// 如果相同,则将 this.ishave 设置为 true
console.log(device);
this.deviceInfoss = device
// this.ishave = true;
this.createBLEConnection(device)
console.log('对比正确1111111111');
} else {
console.log('对比错误');
}
});
}
},200)
// 判断是否存在浇花器设备
// this.status = true
}, 2000)
},
reboot(){
let vm = this; // 将外部的 this 绑定到 vm 上
uni.getNetworkType({
success(res) {
if (res.networkType !== 'none') {
uni.getConnectedBluetoothDevices({
success(res) {
console.log('已连接的蓝牙设备信息:', res);
// vm.dl = (vm.orderinfo.deviceAmount / vm.orderinfo.unitPrice).toFixed(2); // 使用 vm 访问 Vue 实例的属性
xBlufi.notifySendCustomData({
customData: "11reboot"
});
// uni.hideLoading()
// vm.remakr()
},
fail(err) {
uni.hideLoading()
console.error('获取已连接蓝牙设备信息失败:', err);
}
});
} else {
console.log('手机未连接网络');
}
}
});
},
open(){
let vm = this; // 将外部的 this 绑定到 vm 上
uni.getNetworkType({
success(res) {
if (res.networkType !== 'none') {
uni.getConnectedBluetoothDevices({
success(res) {
console.log('已连接的蓝牙设备信息:', res);
// vm.dl = (vm.orderinfo.deviceAmount / vm.orderinfo.unitPrice).toFixed(2); // 使用 vm 访问 Vue 实例的属性
xBlufi.notifySendCustomData({
customData: "11open"
});
// uni.hideLoading()
// vm.remakr()
},
fail(err) {
uni.hideLoading()
console.error('获取已连接蓝牙设备信息失败:', err);
}
});
} else {
console.log('手机未连接网络');
}
}
});
},
close(){
let vm = this; // 将外部的 this 绑定到 vm 上
uni.getNetworkType({
success(res) {
if (res.networkType !== 'none') {
uni.getConnectedBluetoothDevices({
success(res) {
console.log('已连接的蓝牙设备信息:', res);
// vm.dl = (vm.orderinfo.deviceAmount / vm.orderinfo.unitPrice).toFixed(2); // 使用 vm 访问 Vue 实例的属性
xBlufi.notifySendCustomData({
customData: "11close"
});
// uni.hideLoading()
// vm.remakr()
},
fail(err) {
uni.hideLoading()
console.error('获取已连接蓝牙设备信息失败:', err);
}
});
} else {
console.log('手机未连接网络');
}
}
});
},
btnyc() {
this.titleflag = false
},
// 解析自定义数据
funListenDeviceMsgEvent: function(options) {
switch (options.type) {
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS:
if (options.result) {
let devicesarr = options.data
// this.devicesList = options.data
devicesarr.forEach(device => {
// this.$u.get(`/app/device/${mac}/isBind`, data).then((res) => {
// if (res.data == false) {
this.devicesList.push(device);
let uniqueDevicesList = Array.from(new Set(this.devicesList));
// 将去重后的数组重新赋值给 this.devicesList
this.devicesList = uniqueDevicesList;
});
}
break;
case xBlufi.XBLUFI_TYPE.TYPE_CONNECTED:
console.log("连接回调:" + JSON.stringify(options));
if (options.result) {
uni.hideLoading();
uni.showToast({
title: '连接成功',
icon: 'none'
}); {
xBlufi.notifyInitBleEsp32({
deviceId: options.data.deviceId
});
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvents);
this.deviceIds = options.data.deviceId
this.name = options.data.name
// 连接成功绑定设备
// let params = {
// mac: this.Bluetoothmac,
// userId: this.$store.state.user.userId
// }
let systemInfo = uni.getSystemInfoSync();
if (systemInfo.platform === 'android') {
// 当前设备是 Android
} else if (systemInfo.platform === 'ios') {
// 当前设备是 iOS
// uni.navigateTo({
// url: '/pages/wifilist/index?deviceId=' + options
// .data.deviceId + '&name=' + options.data.name
// })
}
}
}
break;
case xBlufi.XBLUFI_TYPE.TYPE_RECIEVE_CUSTON_DATA:
// this.ver_data = this.parseCustomData(options.data)
if(options.data){
this.carstause=true
}
// console.log("1收到设备发来的自定义数据结果", this.ver_data);
break;
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS_STOP:
if (options.result) {
let uniqueDevicesList = Array.from(new Set(this.devicesList));
// 过滤出名称字段的前五个字母为 "CTPOW" 的项
let filteredDevices = uniqueDevicesList.filter(device => device.name.substring(0, 4) ===
"BBLE");
// 将过滤后的数组重新赋值给 this.devicesList
this.devicesList = filteredDevices;
// console.log('蓝牙停止搜索ok',this.devicesList);
} else {
//蓝牙停止搜索失败
// console.log('蓝牙停止搜索失败');
}
this.searching = false
// _this.setData({
// searching: false
// });
break;
}
},
//4、建立连接
createBLEConnection(e) {
console.log('调用了');
xBlufi.notifyStartDiscoverBle({
'isStart': false
});
console.log(e, '蓝牙信息')
const deviceId = e.deviceId
this.Bluetoothmac = e.localName.substring(5) //从第七位开始截取 只取后面的mac号
console.log(this.Bluetoothmac, '11111');
let name = e.name;
console.log('点击了蓝牙准备连接的deviceId:' + e.deviceId);
xBlufi.notifyConnectBle({
isStart: true,
deviceId: e.deviceId,
name
});
// for (var i = 0; i < this.devicesList.length; i++) {
// if (e.deviceId === this.devicesList[i].deviceId) {
// uni.showLoading({
// title: '连接蓝牙设备中...'
// });
// }
// }
},
// 点击重新搜索
Search() {
if (this.status) {
xBlufi.notifyStartDiscoverBle({
'isStart': true
});
// 重新搜索清空蓝牙数组
this.bluthlist = []
this.devicesList = []
// 重新搜索
// this.startBluetoothDevicesDiscovery()
this.statusflag = true
this.status = false
this.texts = '正在扫描蓝牙设备...'
setTimeout(() => {
this.statusflag = false
this.status = true
if (this.searching) {
xBlufi.notifyStartDiscoverBle({
'isStart': false
});
// 判断是否存在浇花器设备
if (this.devicesList.length == 0) {
uni.showToast({
title: '暂无发现对应设备,请靠近设备',
icon: 'none'
});
} else {
this.texts = '扫描到以下设备,请点击连接!'
}
} else {
xBlufi.notifyStartDiscoverBle({
'isStart': true
});
}
}, 2000)
}
},
funListenDeviceMsgEvents: function(options) {
let that = this;
switch (options.type) {
case xBlufi.XBLUFI_TYPE.TYPE_STATUS_CONNECTED: {
console.log('状态', options.result)
if( options.result==false){
this.carstause=false
uni.showToast({
title: '设备断开链接,请重新点击蓝牙链接',
icon: 'none'
});
// uni.showModal({
// title: '很抱歉提醒你!',
// content: '小程序与设备异常断开',
// showCancel: false,
// success: function(res) {
// // uni.navigateBack({
// // url: '../search/search'
// // });
// }
// });
// this.statusflag = false
uni.hideLoading();
}
}
break;
case xBlufi.XBLUFI_TYPE.TYPE_RECIEVE_MY_DATA:
this.loadPercent = options.data;
this.loadText = '文件读取中'
console.log("文件读取中", options.data);
break;
case xBlufi.XBLUFI_TYPE.TYPE_RECIEVE_CUSTON_DATA:
// this.isband = true
// this.ver_data = this.parseCustomData(options.data)
console.log("1收到设备发来的自定义数据结果", options.data);
if(options.data){
this.carstause=true
}
break;
case xBlufi.XBLUFI_TYPE.TYPE_INIT_ESP32_RESULT:
uni.hideLoading();
if (options.result) {
console.log('初始化成功');
} else {
console.log('初始化失败');
}
break;
}
},
// 点击隐藏没有设备提示
btnhd() {
this.tishiflag = false
},
btn(num){
if(num==0){
this.$u.post('/appVerify/admin/unlocking?sn='+this.info.sn).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
this.deviceInfo()
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
}else if(num==1){
this.$u.post('/appVerify/admin/lock?sn='+this.info.sn).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
this.deviceInfo()
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
}else if(num==2){
this.$u.post('/appVerify/device/offline?sn='+this.info.sn).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
this.deviceInfo()
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
}else if(num==3){
this.$u.post('/appVerify/device/online?sn='+this.info.sn).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
this.deviceInfo()
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
}else if(num==4){
this.$u.post('/app/device/ring?sn=' + this.info.sn).then((res) => {
if (res.code === 200) {
}
})
}
},
historyList(){
this.$u.get(`/appVerify/admiOrder/historyList?orderNo` + 111).then((res) => {
if (res.code == 200) {
this.history=res.rows
} else {
// 处理接口返回错误的情况
}
}).catch(error => {
// 处理接口请求失败的情况
});
},
getdetail(){
this.$u.get(`/appVerify/adminOrder/` + this.id).then((res) => {
if (res.code == 200) {
this.info=res.data
this.mac=res.data.device.mac
if(res.data.device.onlineStatus==0){
this.Binddevice()
}
this.latitude=parseFloat(this.info.device.latitude)
this.longitude=parseFloat(this.info.device.longitude)
this.historyList()
} else {
// 处理接口返回错误的情况
}
}).catch(error => {
// 处理接口请求失败的情况
});
},
putFix(){
this.$u.put(`/appVerify/admiOrder?remark=` + this.textValue+'&orderNo='+this.info.orderNo).then((res) => {
if (res.code == 200) {
this.tipshow=false
uni.navigateBack()
} else {
uni.showToast({
title: '处理失败',
icon: 'none',
duration: 1000
});
// 处理接口返回错误的情况
}
}).catch(error => {
// 处理接口请求失败的情况
});
},
changeidx(idx){
this.curtitidx=idx
},
hidePlaceholder() {
this.placeholderVisible = false;
},
showPlaceholder() {
if (!this.textValue) {
this.placeholderVisible = true;
}
},
updateWordCount() {
this.currentCount = this.textValue.trim().replace(/\s+/g, '').length;
// if (this.currentCount > 500) {
// this.textValue = this.textValue.slice(0, this.textValue.lastIndexOf(' ', 500)).trim();
// uni.showToast({
// title: '字数已超过500字限制',
// icon: 'none'
// });
// }
},
mapFun() {
console.log('点击了');
uni.openLocation({
latitude: this.latitude,
//纬度 - 目的地/坐标点
longitude: this.longitude,
//经度 - 目的地/坐标点
// name: "荆门市",
address: this.info.address
});
},
}
}
</script>
<style lang="scss" >
page{
background-color: #fff;
}
.page{
width: 750rpx;
.tap{
margin-top: 24rpx;
width: 750rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-around;
.tap_cont{
text-align: center;
padding-bottom: 15rpx;
width: 130rpx;
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
border-bottom: 6rpx solid #fff ;
}
.act1{
border-bottom: 6rpx solid #4C97E7 ;
color: #4C97E7;
}
}
.tip_box{
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 12;
height: 100%;
.cont{
padding: 36rpx 42rpx;
// display: flex;
flex-wrap: wrap;
// justify-content: center;
width: 610rpx;
height: 772rpx;
background: #FFFFFF;
border-radius: 30rpx;
.tit{
width: 100%;
font-weight: 500;
font-size: 36rpx;
color: #3D3D3D;
}
.input-container {
margin-top: 34rpx;
position: relative;
width: 526rpx;
height: 396rpx;
background: #F7F7F7;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
border-radius: 20rpx;
// margin-top: 40rpx;
overflow: hidden;
// padding-right: 38rpx;
box-sizing: border-box;
border: 2rpx solid #C7C7C7;
}
.placeholder {
position: absolute;
top: 18rpx;
left: 38rpx;
color: #999;
/* placeholder颜色 */
pointer-events: none;
/* 确保点击事件可以穿透到textarea上 */
}
.custom-textarea {
width: 100%;
height: 100%;
/* 设置一个合适高度 */
padding-top: 18rpx;
padding-bottom: 40rpx;
/* 为placeholder留出空间 */
padding-left: 10rpx;
box-sizing: border-box;
border: 1px solid #ccc;
}
.word-count {
position: absolute;
right: 10px;
bottom: 10px;
font-size: 12px;
color: #999;
}
.tip_btn{
margin-top: 94rpx;
display: flex;
align-items: center;
justify-content: center;
width: 526rpx;
height: 78rpx;
background: #4C97E7;
border-radius: 49rpx 49rpx 49rpx 49rpx;
font-weight: 500;
font-size: 36rpx;
color: #FFFFFF;
}
}
}
.page2{
.timebox{
padding-left: 20rpx;
background: #fff;
}
.u-node {
width: 44rpx;
height: 44rpx;
border-radius: 100rpx;
display: flex;
justify-content: center;
align-items: center;
background: #d0d0d0;
}
.u-order-title {
color: #333333;
font-weight: bold;
font-size: 32rpx;
}
.u-order-desc {
color: rgb(150, 150, 150);
font-size: 28rpx;
margin-bottom: 6rpx;
}
.u-order-time {
color: rgb(200, 200, 200);
font-size: 26rpx;
}
}
.page1{
padding-bottom: 250rpx;
.device_info{
margin: 32rpx auto;
padding: 32rpx 28rpx;
width: 680rpx;
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
border-radius: 20rpx 20rpx 20rpx 20rpx;
.device_top{
margin-bottom: 28rpx;
image{
margin-right: 18rpx;
width: 42rpx;
height: 42rpx;
}
width: 100%;
display: flex;
flex-wrap: nowrap;
align-items: center;
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
}
.info_li{
display: flex;
align-items: center;
flex-wrap: nowrap;
margin-bottom: 28rpx;
.info_li_left{
margin-right: 44rpx;
width: 140rpx;
font-weight: 400;
font-size: 28rpx;
color: #808080;
}
.info_li_right{
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
}
image{
margin-left: auto;
width: 41.66rpx;
height: 48rpx;
}
}
}
.fix_info{
margin: 32rpx auto;
padding: 32rpx 28rpx;
width: 680rpx;
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
border-radius: 20rpx 20rpx 20rpx 20rpx;
.fix_top{
margin-bottom: 28rpx;
image{
margin-right: 18rpx;
width: 42rpx;
height: 42rpx;
}
width: 100%;
display: flex;
flex-wrap: nowrap;
align-items: center;
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
}
.info_li{
display: flex;
align-items: center;
flex-wrap: nowrap;
margin-bottom: 28rpx;
.info_li_left{
margin-right: 44rpx;
width: 140rpx;
font-weight: 400;
font-size: 28rpx;
color: #808080;
}
.info_li_right{
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
}
image{
margin-left: auto;
width: 41.66rpx;
height: 48rpx;
}
}
}
.bot_btn{
position: fixed;
bottom: 0;
display: flex;
flex-wrap: wrap;
padding: 40rpx 18rpx;
width: 750rpx;
height: 230rpx;
background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
border-radius: 0rpx 0rpx 0rpx 0rpx;
.btn:nth-child(4n) {
margin-right: 0;
}
.btn{
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;
}
}
}
}
</style>