Commit 88c53782 authored by youjie's avatar youjie

no message

parent 6c9e01e1
...@@ -409,7 +409,7 @@ ...@@ -409,7 +409,7 @@
<tr v-for="(item, index) in DataList" v-loading="loading"> <tr v-for="(item, index) in DataList" v-loading="loading">
<td width="150px">{{ item.Date }}</td> <td width="150px">{{ item.Date }}</td>
<td width="150px">{{ item.Name }}</td> <td width="150px">{{ item.Name }}</td>
<td style="min-width: 200px;max-width: 400px;"> <td style="min-width: 200px;max-width: 400px;cursor: pointer;">
<el-tooltip class="item" effect="dark" :content="item.Content" placement="bottom"> <el-tooltip class="item" effect="dark" :content="item.Content" placement="bottom">
<div style="overflow: hidden;white-space: nowrap;width: 100%;">{{ item.Content }}...</div> <div style="overflow: hidden;white-space: nowrap;width: 100%;">{{ item.Content }}...</div>
</el-tooltip> </el-tooltip>
...@@ -417,18 +417,18 @@ ...@@ -417,18 +417,18 @@
<td width="200px"> <td width="200px">
<div class="_addUpload_box clearfix"> <div class="_addUpload_box clearfix">
<template v-for="(file,fIndex) in item.FileList"> <template v-for="(file,fIndex) in item.FileList">
<div v-if="file.FileType==1" style="width: 30px;height: 30px;"> <div v-if="file.FileType==1" style="width: 30px;height: 30px;" @click="showUpLoadFile(file)">
<div style="width:100%;height:100%;overflow: hidden;"> <div style="width:100%;height:100%;overflow: hidden;">
<img v-if="file.Url" :src="file.Url" @click="showUpLoadFile(file)"> <img v-if="file.Url" :src="file.Url">
</div> </div>
</div> </div>
<div v-if="file.FileType==2" style="width: 30px;height: 30px;"> <div v-if="file.FileType==2" style="width: 30px;height: 30px;" @click="showUpLoadFile(file)">
<div class="iconfont " style="line-height: 19px;font-size: 18px;" <div class="iconfont " style="line-height: 19px;font-size: 18px;"
:class="file.Name.substring(file.Name.lastIndexOf('.')+1,file.Name.length).toUpperCase()=='PDF'? 'icon-pdf' : 'icon-excel'" :class="file.Name.substring(file.Name.lastIndexOf('.')+1,file.Name.length).toUpperCase()=='PDF'? 'icon-pdf' : 'icon-excel'"
@click="showUpLoadFile(file)"> >
</div> </div>
</div> </div>
<div v-if="file.FileType==3" style="width: 30px;height: 30px;"> <div v-if="file.FileType==3" style="width: 30px;height: 30px;" @click="showUpLoadFile(file)">
<div class="iconfont icon-excel" @click="showUpLoadFile(file)"> <div class="iconfont icon-excel" @click="showUpLoadFile(file)">
</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