|
|
@@ -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 }} {{ 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; |
|
|
|
|
|
|
|
} |
|
|
|
|