|
|
@@ -503,14 +503,17 @@
|
|
|
|
|
|
<viewer :images="scope.row.OldFileUrlList">
|
|
|
<div v-for="(tmpUrl,index) in scope.row.OldFileUrlList" :key="index" style="vertical-align: middle; text-align: center;">
|
|
|
- <el-link :href="'http://'+fileurlcut(scope.row.OldFileUrl, index)" target="_blank" type="primary"
|
|
|
- v-if="imgFormat(scope.row.OldFileUrl, index)" >
|
|
|
- {{scope.row.OldFileName.split('$')[index]}}</el-link>
|
|
|
- <img
|
|
|
- v-else
|
|
|
- class="photoStyle" alt=""
|
|
|
- :src="'http://'+fileurlcut(scope.row.OldFileUrl, index)"
|
|
|
- :key="index">
|
|
|
+ <div v-if="imgFormat(scope.row.OldFileUrl, index)">
|
|
|
+ <el-link :href="'http://'+fileurlcut(scope.row.OldFileUrl, index)" target="_blank" type="primary">
|
|
|
+ {{scope.row.OldFileName.split('$')[index]}}</el-link>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div v-else>
|
|
|
+ <img
|
|
|
+ class="photoStyle" alt=""
|
|
|
+ :src="'http://'+fileurlcut(scope.row.OldFileUrl, index)"
|
|
|
+ :key="index" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</viewer>
|
|
|
|
|
|
@@ -534,14 +537,16 @@
|
|
|
|
|
|
<viewer :images="scope.row.FileUrlList">
|
|
|
<div v-for="(tmpUrl,index) in scope.row.FileUrlList" :key="index" style="vertical-align: middle; text-align: center;">
|
|
|
- <el-link :href="'http://'+fileurlcut(scope.row.FileUrl, index)" target="_blank" type="primary"
|
|
|
- v-if="imgFormat(scope.row.FileUrl, index)" >
|
|
|
- {{scope.row.FileName.split('$')[index]}}</el-link>
|
|
|
- <img
|
|
|
- v-else
|
|
|
- class="photoStyle" alt=""
|
|
|
- :src="'http://'+fileurlcut(scope.row.FileUrl, index)"
|
|
|
- :key="index">
|
|
|
+ <div v-if="imgFormat(scope.row.FileUrl, index)">
|
|
|
+ <el-link :href="'http://'+fileurlcut(scope.row.FileUrl, index)" target="_blank" type="primary">
|
|
|
+ {{scope.row.FileName.split('$')[index]}}</el-link>
|
|
|
+ </div>
|
|
|
+ <div v-else>
|
|
|
+ <img
|
|
|
+ class="photoStyle" alt=""
|
|
|
+ :src="'http://'+fileurlcut(scope.row.FileUrl, index)"
|
|
|
+ :key="index">
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</viewer>
|
|
|
|
|
|
@@ -1493,6 +1498,7 @@
|
|
|
_this.btnloading = false
|
|
|
}).catch(err => {
|
|
|
console.error(err)
|
|
|
+ _this.btnloading = false
|
|
|
})
|
|
|
},
|
|
|
commonAuditParamsCheck () {
|
|
|
@@ -1760,6 +1766,7 @@
|
|
|
params
|
|
|
})
|
|
|
.then(res => {
|
|
|
+ console.log('这是', res.data.items)
|
|
|
_this.subfileList1 = res.data.items
|
|
|
_this.currentItemCountProject = res.data.currentItemCount
|
|
|
for (let idx in _this.subfileList1) {
|