Compare commits
No commits in common. "1db9a11d757cc45430bac40b568d2f440e53359d" and "14f660a5329bfb457b889a8abae6d684768e837e" have entirely different histories.
1db9a11d75
...
14f660a532
|
@ -19,8 +19,7 @@
|
|||
<p
|
||||
style="cursor: pointer"
|
||||
:class="{
|
||||
'blur-word': !((approveStatus == '通过' || role) &&
|
||||
whoShow1.itShowXiHaiAn
|
||||
'blur-word': !(approveStatus == '通过' && whoShow1.itShowXiHaiAn
|
||||
? false
|
||||
: true),
|
||||
}"
|
||||
|
@ -36,8 +35,7 @@
|
|||
<!-- <p style="filter: blur(4px)">{{ dataFrom.number }}</p> -->
|
||||
<p
|
||||
:class="{
|
||||
'blur-word': !((approveStatus == '通过' || role) &&
|
||||
whoShow1.itShowXiHaiAn
|
||||
'blur-word': !(approveStatus == '通过' && whoShow1.itShowXiHaiAn
|
||||
? false
|
||||
: true),
|
||||
}"
|
||||
|
@ -61,8 +59,7 @@
|
|||
<p
|
||||
style="filter: blur(4px)"
|
||||
:class="{
|
||||
'blur-word': !((approveStatus == '通过' || role) &&
|
||||
whoShow1.itShowXiHaiAn
|
||||
'blur-word': !(approveStatus == '通过' && whoShow1.itShowXiHaiAn
|
||||
? false
|
||||
: true),
|
||||
}"
|
||||
|
|
|
@ -23,9 +23,7 @@
|
|||
approveStatus === '通过' ? item.linkValue : '请申请后查看'
|
||||
}}
|
||||
</template>
|
||||
<span
|
||||
:class="{ 'blur-word': approveStatus !== '通过' && !role }"
|
||||
>
|
||||
<span :class="{ 'blur-word': approveStatus !== '通过' }">
|
||||
{{ item.linkValue }}
|
||||
</span>
|
||||
</a-tooltip>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</template>
|
||||
<p @click="ServiceAddressFunction(item.linkValue)">
|
||||
<span>服务地址:</span>
|
||||
<span :class="{ 'blur-word': approveStatus !== '通过' && !role }">
|
||||
<span :class="{ 'blur-word': approveStatus !== '通过' }">
|
||||
{{ item.linkValue }}
|
||||
</span>
|
||||
</p>
|
||||
|
@ -31,7 +31,7 @@
|
|||
|
||||
<p @click="ServiceAddressFunction(item.csslinkValue)">
|
||||
<span>样式服务地址:</span>
|
||||
<span :class="{ 'blur-word': approveStatus !== '通过' && !role }">
|
||||
<span :class="{ 'blur-word': approveStatus !== '通过' }">
|
||||
{{ item.csslinkValue }}
|
||||
</span>
|
||||
</p>
|
||||
|
|
Loading…
Reference in New Issue