Browse Source

鼠标样式

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

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

<div class="tabBar"> <div class="tabBar">
<span <span
:class="[tabIndex == 1 ? 'checkedColor' : 'uncheckedColor']" :class="[tabIndex == 1 ? 'checkedColor' : 'uncheckedColor']"
style="margin-right: 97px"
style="margin-right: 97px;cursor:pointer"
@click="showTask" @click="showTask"
>任务</span> >任务</span>
<span <span
:class="[tabIndex == 1 ? 'uncheckedColor' : 'checkedColor']" :class="[tabIndex == 1 ? 'uncheckedColor' : 'checkedColor']"
style="cursor:pointer"
@click="showProblem" @click="showProblem"
>问题</span> >问题</span>
</div> </div>
<img <img
v-if="listChecked == true" v-if="listChecked == true"
src="../../../assets/images/listChecked.png" src="../../../assets/images/listChecked.png"
style="cursor:pointer"
> >
<img v-else src="../../../assets/images/listUnchecked.png">
<img v-else src="../../../assets/images/listUnchecked.png" style="cursor:pointer">
</div> </div>


<span :style="{ color: listChecked ? '#1890FF' : '#666666' }">列表</span> <span :style="{ color: listChecked ? '#1890FF' : '#666666' }">列表</span>
<img <img
v-if="airportSelected == true" v-if="airportSelected == true"
src="../../../assets/images/airportChecked.png" src="../../../assets/images/airportChecked.png"
style="cursor:pointer"
> >
<img v-else src="../../../assets/images/airportUnchecked.png">
<img v-else src="../../../assets/images/airportUnchecked.png" style="cursor:pointer">
</div> </div>


<span :style="{ color: airportSelected ? '#1890FF' : '#666666' }">机场</span> <span :style="{ color: airportSelected ? '#1890FF' : '#666666' }">机场</span>

+ 2
- 1
src/views/dashboard/components/ProblemInfo.vue View File

> >
</td> </td>
</tr> </tr>
<tr>
<tr v-show="detail.handlerUserName ">
<th class="title">处理人:</th> <th class="title">处理人:</th>
<td>{{ detail.handlerUserName }}</td> <td>{{ detail.handlerUserName }}</td>
</tr> </tr>


watch(() => props.detail, (value) => { watch(() => props.detail, (value) => {
if (JSON.stringify(value) !== '{}') { if (JSON.stringify(value) !== '{}') {
const fileImageList = value.fileMarkerUrl.split(',') const fileImageList = value.fileMarkerUrl.split(',')
data.fileImageList = [] data.fileImageList = []
fileImageList.map((item) => { fileImageList.map((item) => {

Loading…
Cancel
Save