西海岸需求变更
This commit is contained in:
parent
95657f9aee
commit
c08980a531
|
@ -2,7 +2,7 @@
|
||||||
* @Author: Light
|
* @Author: Light
|
||||||
* @Date: 2022-11-18 11:53:43
|
* @Date: 2022-11-18 11:53:43
|
||||||
* @LastEditors: Light
|
* @LastEditors: Light
|
||||||
* @LastEditTime: 2022-11-22 19:13:02
|
* @LastEditTime: 2022-11-22 19:28:55
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -39,14 +39,18 @@
|
||||||
<a-list size="small" bordered :data-source="dataList.requested">
|
<a-list size="small" bordered :data-source="dataList.requested">
|
||||||
<template #renderItem="{ item }">
|
<template #renderItem="{ item }">
|
||||||
<a-list-item>
|
<a-list-item>
|
||||||
<div class="name" @click="selectItem(item)">
|
<div class="name">
|
||||||
<a-tooltip>
|
<a-tooltip>
|
||||||
<template #title>{{ item.cameraInfo.channelName }}</template>
|
<template #title>{{ item.cameraInfo.channelName }}</template>
|
||||||
{{ item.cameraInfo.channelName }}
|
{{ item.cameraInfo.channelName }}
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
</div>
|
</div>
|
||||||
<a-tag color="cyan" style="margin-right: 0">
|
<a-tag
|
||||||
{{ item.approveStatus }}
|
color="cyan"
|
||||||
|
style="margin-right: 0"
|
||||||
|
@click="selectItem(item)"
|
||||||
|
>
|
||||||
|
{{ item.approveStatus == '通过' ? '预览' : item.approveStatus }}
|
||||||
</a-tag>
|
</a-tag>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
v-if="item.approveStatus == '通过'"
|
v-if="item.approveStatus == '通过'"
|
||||||
|
|
Loading…
Reference in New Issue