浏览代码

Merge branch 'develop' of gitadmin/tuoheng_lc_web into release

tags/v1.1.0^2
zhangtao 1年前
父节点
当前提交
982198035e
共有 7 个文件被更改,包括 24 次插入11 次删除
  1. 二进制
      src/assets/images/airport.png
  2. 二进制
      src/assets/images/airportChecked.png
  3. 二进制
      src/assets/images/airportUnchecked.png
  4. 二进制
      src/assets/images/listChecked.png
  5. 二进制
      src/assets/images/listUnchecked.png
  6. +8
    -4
      src/views/dashboard/components/AirInfo.vue
  7. +16
    -7
      src/views/dashboard/components/OneMap.vue

二进制
src/assets/images/airport.png 查看文件

之前 之后
宽度: 52  |  高度: 38  |  大小: 3.5KB 宽度: 52  |  高度: 38  |  大小: 3.4KB

二进制
src/assets/images/airportChecked.png 查看文件

之前 之后
宽度: 20  |  高度: 20  |  大小: 853B 宽度: 20  |  高度: 20  |  大小: 571B

二进制
src/assets/images/airportUnchecked.png 查看文件

之前 之后
宽度: 20  |  高度: 20  |  大小: 907B 宽度: 20  |  高度: 20  |  大小: 536B

二进制
src/assets/images/listChecked.png 查看文件

之前 之后
宽度: 20  |  高度: 20  |  大小: 341B 宽度: 20  |  高度: 20  |  大小: 302B

二进制
src/assets/images/listUnchecked.png 查看文件

之前 之后
宽度: 20  |  高度: 20  |  大小: 340B 宽度: 20  |  高度: 20  |  大小: 310B

+ 8
- 4
src/views/dashboard/components/AirInfo.vue 查看文件

<table> <table>
<tr> <tr>
<th class="title">机场名称:</th> <th class="title">机场名称:</th>
<th>{{ detail.name }}</th>
<td>{{ detail.name }}</td>


</tr> </tr>
<tr> <tr>
<th class="title">机场状态:</th> <th class="title">机场状态:</th>
<th>{{ status }}</th>
<td> {{ status }}</td>
</tr> </tr>
<tr> <tr>
<th class="title">可选挂载:</th> <th class="title">可选挂载:</th>
<th>{{ mountedName }}</th>
<td>{{ mountedName }}</td>
</tr> </tr>
</table> </table>
<div class="deviceInfo"> <div class="deviceInfo">
color: white; color: white;
font-weight: 400; font-weight: 400;
} }
td{
padding-left:10px;
}
.deviceInfo { .deviceInfo {
margin-top: 5px; margin-top: 5px;
width: 100%; width: 100%;
background: #2c2c2c; background: #2c2c2c;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding:0 25px;
.item { .item {
color: white; color: white;
display: flex; display: flex;
} }
} }
.monitorList { .monitorList {
margin-top: 10px;
margin-top: 5px;
display: flex; display: flex;
justify-content: space-around; justify-content: space-around;
.innerMonitor { .innerMonitor {

+ 16
- 7
src/views/dashboard/components/OneMap.vue 查看文件

</li> </li>
</ul> </ul>
<n-pagination <n-pagination

v-model:page="page" v-model:page="page"
:page-count="pageCount" :page-count="pageCount"
:page-slot="7" :page-slot="7"
airportSelected: true, airportSelected: true,
problemLayerList: [], problemLayerList: [],
airportPopupShow: false, airportPopupShow: false,
lastSevenDateList: []
lastSevenDateList: [],
paginationShow: false
}) })
watch( watch(
() => data.page, () => data.page,
geometry: new Point(fromLonLat([problem.lng, problem.lat])) geometry: new Point(fromLonLat([problem.lng, problem.lat]))
}) })
let icon let icon
switch (iitem.code) {
switch (iitem.type) {
case '002000': case '002000':
icon = problemSpot_icon icon = problemSpot_icon
break break
data.taskList = res.data.records data.taskList = res.data.records


data.pageCount = res.data.pages data.pageCount = res.data.pages
if (data.pageCount == 1) {
data.paginationShow = false
} else {
data.paginationShow = true
}
data.taskList.map((item, index) => { data.taskList.map((item, index) => {
const arr = item.executionStartTime.split(/[ ]+/) // 以空格分开 const arr = item.executionStartTime.split(/[ ]+/) // 以空格分开
item.date = arr[0] item.date = arr[0]
padding: 10px 19px; padding: 10px 19px;
ul { ul {
li { li {
padding: 5px 2px;
margin-bottom: 3px;
padding: 0 2px;

height:24px;
margin-bottom:10px;
div { div {
float: left; float: left;
height: 100%;
height: 30px;
height:100%;
} }
} }
} }

正在加载...
取消
保存