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