Browse Source

图层筛选问题

tags/v1.1.0^2
unknown 1 year ago
parent
commit
f9e919f902
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      src/views/dashboard/components/OneMap.vue

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

@@ -23,7 +23,7 @@
>问题</span>
</div>
<div v-if="tabIndex == 1" class="listDetail">
<ul>
<ul style="user-select: none;">
<li
v-for="(item, index) in taskList"
:key="index"
@@ -41,7 +41,7 @@
{{ item.date }}&nbsp;&nbsp;{{ item.taskName }}
</div>
<div style="margin-right: 30px">{{ item.statusInfo }}</div>
<div v-if="item.status == 1" style="float: left; width: 56px">
<div v-if="item.status == 1" style="float: left; width: 56px;cursor:pointer">
<n-popconfirm
@positive-click="handlePositiveClick(item)"
@negative-click="handleNegativeClick"
@@ -55,7 +55,7 @@

<div
v-else
style="color: #1890ff; float: left; width: 56px"
style="color: #1890ff; float: left; width: 56px;cursor:pointer"
@click="liveShow(item)"
>
直播
@@ -491,6 +491,7 @@ export default {
}

// 添加问题图层
initProblemType()
addproblemLayer(nar)
}
})

Loading…
Cancel
Save