Browse Source

Merge branch 'wangmq' of gitadmin/tuoheng_lc_web into develop

tags/v1.1.0^2
wangmengqi 1 year ago
parent
commit
86d5b8b137
1 changed files with 8 additions and 4 deletions
  1. +8
    -4
      src/views/dashboard/components/OneMap.vue

+ 8
- 4
src/views/dashboard/components/OneMap.vue View File

@@ -55,7 +55,7 @@
:key="index"
style="display:flex;font-size:14px"
>
<div style="width:145px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis">{{ item.taskName }}</div>
<div style="width:145px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis">{{ item.date }}&nbsp;&nbsp;{{ item.taskName }}</div>
<div style="width:42px">{{ item.statusInfo }}</div>

<n-popconfirm
@@ -583,7 +583,8 @@ export default {
// console.log(data.pageCount, '页数')
data.taskList.map((item) => {
const arr = item.executionStartTime.split(/[ ]+/)// 以空格分开
item.taskName = arr[0] + item.name
item.date = arr[0]
item.taskName = item.name
switch (item.status) {
case 1:
item.statusInfo = '待执行'
@@ -721,8 +722,11 @@ export default {
overflow:hidden;
}
.map-container {
width:100vw;
height:100vh;
position:absolute;
top:0px;
left:0px;
right:0px;
bottom:0px;

}


Loading…
Cancel
Save