Commit a2d1d7e3 authored by 姬鋆屾's avatar 姬鋆屾

Merge branch 'reg' of http://gitlab.scsmile.cn/zxf/smart_gov_platform into reg

parents 818537cb 2540e7ed
......@@ -368,24 +368,35 @@
>
</a-col>
<a-col :span="12">
<span>
<span class="flex">
<span class="lable">评价人照片:</span>
<a-avatar
v-if="!detailsInfo.picture"
shape="square"
:size="40"
icon="user"
/>
<img
v-else
:src="baseurl + '/' + detailsInfo.picture"
@click="
$viewerApi({
images: [baseurl + '/' + detailsInfo.picture],
})
"
class="cursor-pointer w-[50px] max-h-[50px] rounded-[4px]"
/>
<span v-if="detailsInfo.picture || detailsInfo.process">
<img
v-if="detailsInfo.picture"
:src="baseurl + '/' + detailsInfo.picture"
class="cursor-pointer w-[50px] max-h-[50px] rounded-[4px]"
@click="
$viewerApi({
images: [baseurl + '/' + detailsInfo.picture],
})
"
/>
<video
v-else-if="
detailsInfo.process &&
estimateVideo(detailsInfo.process)
"
class="cursor-pointer w-[50px] max-h-[50px] rounded-[4px]"
:src="baseurl + '/' + detailsInfo.process"
@click="checkMultimedia(detailsInfo.process)"
></video>
<a-icon
v-else
type="sound"
@click="checkMultimedia(detailsInfo.process)"
/>
</span>
<a-avatar v-else shape="square" :size="40" icon="user" />
</span>
</a-col>
</a-row>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment