Commit 1dd34796 authored by youjie's avatar youjie

no message

parent b578e81b
...@@ -403,20 +403,22 @@ ...@@ -403,20 +403,22 @@
<template slot-scope="scope"> <template slot-scope="scope">
<div>{{scope.row.Remark}}</div> <div>{{scope.row.Remark}}</div>
<template v-if="scope.row.vorcherInos"> <template v-if="scope.row.vorcherInos">
<div v-for="(vitem,index) in scope.row.vorcherInos" style="display: flex;flex-direction: row;flex-wrap: wrap;"> <div style="display: flex;flex-direction: row;flex-wrap: wrap;">
<template v-for="(vitem,index) in scope.row.vorcherInos">
<el-image v-if="vitem.Type==3" <el-image v-if="vitem.Type==3"
style="width: 30px; height: 30px;margin-right: 3px;" style="width: 30px; height: 30px;margin-right: 3px;"
:src="vitem.Content" :src="vitem.Content"
:preview-src-list="scope.row.srcList" :preview-src-list="scope.row.srcList"
fit="cover"> fit="cover">
</el-image> </el-image>
<div v-if="vitem.Type==1" style="width: 30px; height: 30px;text-align: center;line-height: 30px;background: #eee;margin-right: 3px;"> <div v-if="vitem.Type==1" style="width: 30px; height: 30px;text-align: center;line-height: 30px;background: #eee;margin-right: 3px;">
<div class="iconfont _wenjian_P" <div class="iconfont _wenjian_P"
:class="vitem.Content.substring(vitem.Content.lastIndexOf('.')+1,vitem.Content.length).toUpperCase()=='PDF'? 'icon-pdf' : 'icon-excel'" :class="vitem.Content.substring(vitem.Content.lastIndexOf('.')+1,vitem.Content.length).toUpperCase()=='PDF'? 'icon-pdf' : 'icon-excel'"
@click="showUpLoadFile(vitem.Content)"> @click="showUpLoadFile(vitem.Content)">
</div>
</div> </div>
</div> </template>
</div> </div>
</template> </template>
</template> </template>
......
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