只留已申请标签
This commit is contained in:
parent
0a55ac7b68
commit
89d782fa9b
|
@ -136,6 +136,7 @@
|
|||
<div class="header">
|
||||
<span style="display: flex; align-items: center; width: 680px">
|
||||
{{ item.name }}
|
||||
<!-- 已申请--通过 -->
|
||||
<svg
|
||||
t="1652322568870"
|
||||
class="icon"
|
||||
|
@ -145,7 +146,9 @@
|
|||
p-id="3062"
|
||||
width="40"
|
||||
height="40"
|
||||
v-if="item.applyState == '通过'"
|
||||
v-if="
|
||||
item.applyState == '已申请' && item.approveStatus == '通过'
|
||||
"
|
||||
style="margin-left: 10px; min-width: 40px"
|
||||
>
|
||||
<path
|
||||
|
@ -164,7 +167,8 @@
|
|||
p-id="3065"
|
||||
></path>
|
||||
</svg>
|
||||
<svg
|
||||
<!-- 审核中 -->
|
||||
<!-- <svg
|
||||
t="1652322568870"
|
||||
class="icon"
|
||||
viewBox="0 0 3072 1024"
|
||||
|
@ -173,7 +177,9 @@
|
|||
p-id="3062"
|
||||
width="40"
|
||||
height="40"
|
||||
v-if="item.applyState == '审核中'"
|
||||
v-if="
|
||||
item.applyState == '已申请' && item.approveStatus == '审核中'
|
||||
"
|
||||
style="margin-left: 10px; min-width: 40px"
|
||||
>
|
||||
<path
|
||||
|
@ -188,7 +194,9 @@
|
|||
></path>
|
||||
</svg>
|
||||
<span
|
||||
v-if="item.applyState == '审核中'"
|
||||
v-if="
|
||||
item.applyState == '已申请' && item.approveStatus == '审核中'
|
||||
"
|
||||
style="
|
||||
font-size: 12px;
|
||||
-webkit-transform: scale(0.75);
|
||||
|
@ -200,7 +208,7 @@
|
|||
"
|
||||
>
|
||||
审核中
|
||||
</span>
|
||||
</span> -->
|
||||
</span>
|
||||
<div class="header-right">
|
||||
<div
|
||||
|
|
Loading…
Reference in New Issue