2023-08-15 09:18:52 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="place">
|
|
|
|
|
<view class="placeTop">
|
|
|
|
|
<view class="topLeft">
|
2023-12-08 17:42:10 +08:00
|
|
|
|
<view style="display: flex; flex-direction: column; justify-content: center;">
|
|
|
|
|
<view class="left" @click="back">
|
|
|
|
|
<uni-icons type="back" size="16" color="#1677FF" />
|
|
|
|
|
<text>返回</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view style="display: flex; flex-direction: column; justify-content: center;">
|
|
|
|
|
<view class="right">
|
|
|
|
|
<view class="statusText">
|
|
|
|
|
<view class="status kz"></view>
|
|
|
|
|
<text>空置</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="statusText">
|
|
|
|
|
<view class="status sy"></view>
|
|
|
|
|
<text>使用</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="statusText">
|
|
|
|
|
<view class="status xn"></view>
|
|
|
|
|
<text>虚拟车位</text>
|
|
|
|
|
</view>
|
|
|
|
|
<template v-if="selectValue == 2">
|
|
|
|
|
<view class="statusText">
|
|
|
|
|
<image src="../../static/images/wjhIcon.png" mode=""></image>
|
|
|
|
|
<text>无计划</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="statusText">
|
|
|
|
|
<image src="../../static/images/yjhIcon.png" mode=""></image>
|
|
|
|
|
<text>有计划</text>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2023-08-15 09:18:52 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="topRight">
|
2023-12-08 17:42:10 +08:00
|
|
|
|
<view class="rightImg">
|
|
|
|
|
<image src="../../static/images/lineImg.png" mode=""></image>
|
2023-08-15 09:18:52 +08:00
|
|
|
|
</view>
|
2023-12-08 17:42:10 +08:00
|
|
|
|
<uni-data-select v-model="selectValue" :localdata="selectList" @change="selectChange"></uni-data-select>
|
|
|
|
|
<uni-icons type="bottom" size="16" color="#1677FF" />
|
2023-08-15 09:18:52 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2023-12-08 17:42:10 +08:00
|
|
|
|
<view class="placeText">
|
|
|
|
|
<text>车位总数:{{lineData.totalSeatAmout}}车位</text>
|
|
|
|
|
<text>使用车位:{{lineData.useSeatAmout}}车位</text>
|
|
|
|
|
<text>剩余车位:{{lineData.remainSeatAmout}}车位</text>
|
|
|
|
|
<text>虚拟场位:{{lineData.virtuaSeatAmout}}车位</text>
|
|
|
|
|
<text>可停放车辆:{{lineData.unparkGoodsAmout}}辆</text>
|
|
|
|
|
<text>已停放车辆:{{lineData.stopGoodsAmout}}辆</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="placeContent" v-if="selectValue == 1">
|
|
|
|
|
<view class="placeList" style="border: 1px solid #E1E5ED;"
|
|
|
|
|
v-for="(item,index) in lineData.lineStatisticsList">
|
|
|
|
|
<view class="listLeft">
|
|
|
|
|
<template>
|
|
|
|
|
<p><template v-if="item.yalNo >= 1 && item.yalNo <= 9">0</template>{{item.yalNo}}道</p>
|
|
|
|
|
<text>已停{{item.stopGoodsAmout}}/{{item.totalSeatAmout}}辆</text>
|
|
|
|
|
</template>
|
2023-08-15 09:18:52 +08:00
|
|
|
|
</view>
|
2023-12-08 17:42:10 +08:00
|
|
|
|
<view class="listRight">
|
|
|
|
|
<template v-for="(item2,index2) in item.carLineRespList" @click="showContent(item2)">
|
|
|
|
|
<view class="rigthContent wsy" :key="index2" v-if="item2.type == '0' || item2.type == '3'">
|
|
|
|
|
<text>{{item2.carSituation}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="rigthContent sy" :key="index2" v-if="item2.type == '1'">
|
|
|
|
|
<text v-if="item2.existFlag == '1'"
|
|
|
|
|
class="gl">{{item2.carSituation}}{{item2.carAmout}}辆</text>
|
|
|
|
|
<text v-else>{{item2.carSituation}}{{item2.carAmout}}辆</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="rigthContent xn" :key="index2" v-if="item2.type == '2'">
|
|
|
|
|
<text v-if="item2.existFlag == '1'"
|
|
|
|
|
class="gl">{{item2.carSituation}}{{item2.carAmout}}辆</text>
|
|
|
|
|
<text v-else>{{item2.carSituation}}{{item2.carAmout}}辆</text>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</template>
|
2023-08-15 09:18:52 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2023-12-08 17:42:10 +08:00
|
|
|
|
<view class="placeContent" v-if="selectValue == 2">
|
|
|
|
|
<!-- <view class="seatTitle">
|
|
|
|
|
<view class="titleLeft">
|
|
|
|
|
车位
|
2023-08-15 09:18:52 +08:00
|
|
|
|
</view>
|
2023-12-08 17:42:10 +08:00
|
|
|
|
<view class="titleRight">
|
|
|
|
|
<p v-for="(item,index) in seatNum" :key="index">
|
|
|
|
|
<template v-if="item >= 1 && item <= 9">0</template>
|
|
|
|
|
{{item}}
|
|
|
|
|
</p>
|
2023-08-15 09:18:52 +08:00
|
|
|
|
</view>
|
2023-12-08 17:42:10 +08:00
|
|
|
|
</view> -->
|
|
|
|
|
<view class="placeList" v-for="(item,index) in seatData.seatCarStatisticsList">
|
|
|
|
|
<view class="listLeft">
|
|
|
|
|
<template>
|
|
|
|
|
<p><template v-if="item.yalNo >= 1 && item.yalNo <= 9">0</template>{{item.yalNo}}道</p>
|
|
|
|
|
<text>已停{{item.stopGoodsAmout}}/{{item.totalSeatAmout}}辆</text>
|
|
|
|
|
</template>
|
2023-08-15 09:18:52 +08:00
|
|
|
|
</view>
|
2023-12-08 17:42:10 +08:00
|
|
|
|
<view class="listRightSeat">
|
|
|
|
|
<template v-for="(item2,index2) in item.carStatisticsList">
|
|
|
|
|
<view class="seatBox kz" :key="index2" v-if="item2.type == 0">
|
|
|
|
|
<view class="planIcon">
|
|
|
|
|
<image src="../../static/images/yjhIcon.png" mode="" v-if="item2.godStatus == 'P'">
|
|
|
|
|
</image>
|
|
|
|
|
<image src="../../static/images/wjhIcon.png" mode="" v-if="item2.godStatus == 'N'">
|
|
|
|
|
</image>
|
2023-08-15 09:18:52 +08:00
|
|
|
|
</view>
|
2023-12-08 17:42:10 +08:00
|
|
|
|
<p>空置</p>
|
|
|
|
|
<p><template v-if="item2.yacNo >= 1 && item2.yacNo <= 9">0</template>{{item2.yacNo}}</p>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="seatBox sy" :class="{syGl:item2.existFlag == '1'}" :key="index2"
|
|
|
|
|
v-if="item2.type == 1">
|
|
|
|
|
<view class="planIcon">
|
|
|
|
|
<image src="../../static/images/yjhIcon.png" mode="" v-if="item2.godStatus == 'P'">
|
|
|
|
|
</image>
|
|
|
|
|
<image src="../../static/images/wjhIcon.png" mode="" v-if="item2.godStatus == 'N'">
|
|
|
|
|
</image>
|
|
|
|
|
</view>
|
|
|
|
|
<p>{{item2.brdName}}</p>
|
|
|
|
|
<p>{{item2.bvmName}}</p>
|
|
|
|
|
<p><template v-if="item2.yacNo >= 1 && item2.yacNo <= 9">0</template>{{item2.yacNo}}</p>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="seatBox xn" :class="{xnGl:item2.existFlag == '1'}" :key="index2"
|
|
|
|
|
v-if="item2.type == 2">
|
|
|
|
|
<view class="planIcon">
|
|
|
|
|
<image src="../../static/images/yjhIcon.png" mode="" v-if="item2.godStatus == 'P'">
|
|
|
|
|
</image>
|
|
|
|
|
<image src="../../static/images/wjhIcon.png" mode="" v-if="item2.godStatus == 'N'">
|
|
|
|
|
</image>
|
|
|
|
|
</view>
|
|
|
|
|
<p>{{item2.brdName}}</p>
|
|
|
|
|
<p>{{item2.bvmName}}</p>
|
|
|
|
|
<p><template v-if="item2.yacNo >= 1 && item2.yacNo <= 9">0</template>{{item2.yacNo}}</p>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
2023-08-15 09:18:52 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2023-12-08 17:42:10 +08:00
|
|
|
|
loginObj: {},
|
|
|
|
|
selectValue: "1",
|
|
|
|
|
selectList: [{
|
|
|
|
|
text: "车道",
|
|
|
|
|
value: "1",
|
2023-08-15 09:18:52 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-08 17:42:10 +08:00
|
|
|
|
text: "车位",
|
|
|
|
|
value: "2",
|
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
],
|
2023-12-08 17:42:10 +08:00
|
|
|
|
lineData: {},
|
|
|
|
|
seatNum: 0,
|
|
|
|
|
seatData: {},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
vvyId: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: () => ""
|
|
|
|
|
},
|
|
|
|
|
pyaObj: {
|
|
|
|
|
type: Object,
|
|
|
|
|
default: () => {}
|
|
|
|
|
},
|
|
|
|
|
brdId: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: () => ""
|
|
|
|
|
},
|
|
|
|
|
potId: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: () => ""
|
|
|
|
|
},
|
|
|
|
|
mnfBl: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: () => ""
|
|
|
|
|
},
|
|
|
|
|
vinCode: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: () => ""
|
|
|
|
|
},
|
|
|
|
|
workId: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: () => ""
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2023-12-08 17:42:10 +08:00
|
|
|
|
mounted() {
|
|
|
|
|
this.loginObj = uni.getStorageSync('loginObj')
|
|
|
|
|
this.getLineData()
|
|
|
|
|
},
|
2023-08-15 09:18:52 +08:00
|
|
|
|
methods: {
|
|
|
|
|
// 点击返回
|
|
|
|
|
back() {
|
|
|
|
|
this.$emit("modifyPlaceTabs", 0)
|
|
|
|
|
},
|
2023-12-08 17:42:10 +08:00
|
|
|
|
// 点击下拉切换车道车位
|
|
|
|
|
selectChange(e) {
|
|
|
|
|
this.selectValue = e
|
|
|
|
|
if (this.selectValue == 2) {
|
|
|
|
|
this.getSeatData()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 获取车道车辆情况
|
|
|
|
|
getLineData() {
|
|
|
|
|
uni.request({
|
|
|
|
|
url: `${this.$local}/api/yardGoods/monitor/line/statistics?displayFlag=1&vvyId=${this.vvyId}&pyaId=${this.pyaObj.pyaId}&brdId=${this.brdId}&bvmId=${this.bvmId}&potId=${this.potId}&vinCode=${this.vinCode}$workStatuss=${this.workId}`,
|
|
|
|
|
header: {
|
|
|
|
|
'Content-Type': 'application/json', //自定义请求头信息
|
|
|
|
|
'Authorization': `Bearer ${this.loginObj.access_token}`
|
|
|
|
|
},
|
|
|
|
|
method: 'GET', //请求方式,必须为大写
|
|
|
|
|
success: (res) => {
|
|
|
|
|
console.log(res)
|
|
|
|
|
if (res.data.status == 200) {
|
|
|
|
|
this.lineData = res.data.data
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 获取车位车辆情况
|
|
|
|
|
getSeatData() {
|
|
|
|
|
uni.request({
|
|
|
|
|
url: `${this.$local}/api/yardGoods/monitor/seat/statistics?displayFlag=1&vvyId=${this.vvyId}&pyaId=${this.pyaObj.pyaId}&brdId=${this.brdId}&bvmId=${this.bvmId}&potId=${this.potId}&vinCode=${this.vinCode}$workStatuss=${this.workId}`,
|
|
|
|
|
header: {
|
|
|
|
|
'Content-Type': 'application/json', //自定义请求头信息
|
|
|
|
|
'Authorization': `Bearer ${this.loginObj.access_token}`
|
|
|
|
|
},
|
|
|
|
|
method: 'GET', //请求方式,必须为大写
|
|
|
|
|
success: (res) => {
|
|
|
|
|
if (res.data.status == 200) {
|
|
|
|
|
this.seatData = res.data.data
|
|
|
|
|
console.log(this.seatData)
|
|
|
|
|
let numList = []
|
|
|
|
|
this.seatData.seatCarStatisticsList.forEach(v => {
|
|
|
|
|
numList.push(v.carStatisticsList.length)
|
|
|
|
|
})
|
|
|
|
|
this.seatNum = Math.max(...numList)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2023-08-15 09:18:52 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.place {
|
2023-12-08 17:42:10 +08:00
|
|
|
|
margin-top: 68px;
|
|
|
|
|
|
2023-08-15 09:18:52 +08:00
|
|
|
|
.placeTop {
|
2023-12-08 17:42:10 +08:00
|
|
|
|
padding: 12px 16px;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2023-12-08 17:42:10 +08:00
|
|
|
|
background-color: #F6F7F9;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
|
|
|
|
.topLeft {
|
|
|
|
|
display: flex;
|
2023-12-08 17:42:10 +08:00
|
|
|
|
|
|
|
|
|
.left {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #1677FF;
|
|
|
|
|
margin-right: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right {
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
.status {
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
margin-top: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.statusText {
|
|
|
|
|
display: flex;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #666666;
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
|
|
|
|
|
.kz {
|
|
|
|
|
background: #EEEEEE;
|
|
|
|
|
border: 1px solid #DCDCDC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sy {
|
|
|
|
|
background: #4476F6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.xn {
|
|
|
|
|
background: #FF6B3B;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
margin-top: 3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topRight {
|
|
|
|
|
display: flex;
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.rightImg {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
/deep/.uni-icons {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
/deep/.uni-stat__select {
|
|
|
|
|
width: 50px;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
/deep/.uni-select {
|
|
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
/deep/.uniui-clear:before {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/.uni-select__input-box {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/.uni-select__input-text {
|
|
|
|
|
color: #1677FF;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.placeText {
|
|
|
|
|
padding: 10px 16px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: #E6F4FF;
|
|
|
|
|
border: 1px solid #BAE0FF;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
text {
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333333;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
2023-12-08 17:42:10 +08:00
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.placeContent {
|
|
|
|
|
height: calc(100vh - 234px);
|
|
|
|
|
overflow: scroll;
|
|
|
|
|
|
|
|
|
|
.seatTitle {
|
2023-08-15 09:18:52 +08:00
|
|
|
|
display: flex;
|
2023-12-08 17:42:10 +08:00
|
|
|
|
height: 50px;
|
|
|
|
|
border: 1px solid #E1E5ED;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.titleLeft {
|
|
|
|
|
width: 80px;
|
|
|
|
|
background: #E1E5ED;
|
|
|
|
|
border: 1px solid #DBDDE3;
|
|
|
|
|
text-align: center;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
display: flex;
|
2023-12-08 17:42:10 +08:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
p {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #0B266A;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
2023-12-08 17:42:10 +08:00
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.titleRight {
|
|
|
|
|
width: calc(100% - 80px);
|
|
|
|
|
display: flex;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
p {
|
|
|
|
|
min-width: 80px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #666666;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.placeList {
|
|
|
|
|
display: flex;
|
|
|
|
|
height: 70px;
|
|
|
|
|
|
|
|
|
|
.listLeft {
|
|
|
|
|
width: 80px;
|
|
|
|
|
background: #E1E5ED;
|
|
|
|
|
border: 1px solid #DBDDE3;
|
|
|
|
|
text-align: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
p {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #0B266A;
|
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
text {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.listRight {
|
|
|
|
|
width: calc(100% - 80px);
|
2023-08-15 09:18:52 +08:00
|
|
|
|
display: flex;
|
2023-12-08 17:42:10 +08:00
|
|
|
|
padding: 0 12px;
|
|
|
|
|
gap: 10px;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.rigthContent {
|
|
|
|
|
flex: 1;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
text-align: center;
|
2023-12-08 17:42:10 +08:00
|
|
|
|
height: 56px;
|
|
|
|
|
line-height: 56px;
|
|
|
|
|
border: 1px solid #E1E5ED;
|
|
|
|
|
margin: 7px 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #666666;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.wsy {
|
|
|
|
|
background: #EEEEEE;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.sy {
|
|
|
|
|
background: rgba(199, 212, 243, 0.8);
|
|
|
|
|
color: #4476F6;
|
|
|
|
|
|
|
|
|
|
.gl {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: #4476F6;
|
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.xn {
|
|
|
|
|
background: rgba(253, 98, 98, 0.10);
|
|
|
|
|
color: #FD6262;
|
|
|
|
|
|
|
|
|
|
.gl {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: #FF6B3B;
|
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.listRightSeat {
|
|
|
|
|
width: calc(100% - 80px);
|
|
|
|
|
display: flex;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.seatBox {
|
|
|
|
|
border: 1px solid #E1E5ED;
|
|
|
|
|
min-width: 80px;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
display: flex;
|
2023-12-08 17:42:10 +08:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
position: relative;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
p {
|
2023-08-15 09:18:52 +08:00
|
|
|
|
text-align: center;
|
2023-12-08 17:42:10 +08:00
|
|
|
|
margin-top: 4px;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
p:last-child {
|
|
|
|
|
color: #828CA7;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.planIcon {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
2023-12-08 17:42:10 +08:00
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.kz {
|
|
|
|
|
background: #F7F9FF;
|
|
|
|
|
|
|
|
|
|
p:first-child {
|
|
|
|
|
width: 70%;
|
|
|
|
|
margin-left: 15%;
|
|
|
|
|
padding: 3px 0;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #E4E4E4;
|
|
|
|
|
border-radius: 1px;
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 17:42:10 +08:00
|
|
|
|
.sy {
|
|
|
|
|
color: #4476F6;
|
|
|
|
|
background: #D3DDF6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.syGl {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: #4476F6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.xn {
|
|
|
|
|
color: #FD6262;
|
|
|
|
|
background: rgba(253, 98, 98, 0.10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.xnGl {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: #FF6B3B;
|
|
|
|
|
}
|
2023-08-15 09:18:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|