Commit 6e4b1a37 authored by “yiyousong”'s avatar “yiyousong”

perf: 优化办理事项评价报表详情展示

parent af924f42
...@@ -368,25 +368,36 @@ ...@@ -368,25 +368,36 @@
> >
</a-col> </a-col>
<a-col :span="12"> <a-col :span="12">
<span> <span class="flex">
<span class="lable">评价人照片:</span> <span class="lable">评价人照片:</span>
<a-avatar <span v-if="detailsInfo.picture || detailsInfo.process">
v-if="!detailsInfo.picture"
shape="square"
:size="40"
icon="user"
/>
<img <img
v-else v-if="detailsInfo.picture"
:src="baseurl + '/' + detailsInfo.picture" :src="baseurl + '/' + detailsInfo.picture"
class="cursor-pointer w-[50px] max-h-[50px] rounded-[4px]"
@click=" @click="
$viewerApi({ $viewerApi({
images: [baseurl + '/' + detailsInfo.picture], images: [baseurl + '/' + detailsInfo.picture],
}) })
" "
/>
<video
v-else-if="
detailsInfo.process &&
estimateVideo(detailsInfo.process)
"
class="cursor-pointer w-[50px] max-h-[50px] rounded-[4px]" 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> </span>
<a-avatar v-else shape="square" :size="40" icon="user" />
</span>
</a-col> </a-col>
</a-row> </a-row>
</div> </div>
......
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