|
|
@@ -41,13 +41,24 @@
|
|
|
label="文件名"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <a
|
|
|
- style="text-decoration-line: none"
|
|
|
- href="javascript:void(0)"
|
|
|
- @click="onClickFilename(scope.row)"
|
|
|
- >
|
|
|
- <span>{{ scope.row.filename }}</span>
|
|
|
- </a>
|
|
|
+ <span v-if="scope.row.fileType === 1000" class="el-icon-folder">
|
|
|
+ <a style="text-decoration-line: none" href="javascript:void(0)" @click="onClickFilename(scope.row)">{{ scope.row.filename }}</a>
|
|
|
+ </span>
|
|
|
+ <span v-if="scope.row.fileType === 1001" class="el-icon-picture">
|
|
|
+ <a style="text-decoration-line: none" href="javascript:void(0)" @click="onClickFilename(scope.row)">{{ scope.row.filename }}</a>
|
|
|
+ </span>
|
|
|
+ <span v-if="scope.row.fileType === 1002" class="el-icon-film">
|
|
|
+ <a style="text-decoration-line: none" href="javascript:void(0)" @click="onClickFilename(scope.row)">{{ scope.row.filename }}</a>
|
|
|
+ </span>
|
|
|
+ <span v-if="scope.row.fileType === 1003" class="el-icon-headset">
|
|
|
+ <a style="text-decoration-line: none" href="javascript:void(0)" @click="onClickFilename(scope.row)">{{ scope.row.filename }}</a>
|
|
|
+ </span>
|
|
|
+ <span v-if="scope.row.fileType === 1004" class="el-icon-document">
|
|
|
+ <a style="text-decoration-line: none" href="javascript:void(0)" @click="onClickFilename(scope.row)">{{ scope.row.filename }}</a>
|
|
|
+ </span>
|
|
|
+ <span v-if="scope.row.fileType === 1005" class="el-icon-files">
|
|
|
+ <a style="text-decoration-line: none" href="javascript:void(0)" @click="onClickFilename(scope.row)">{{ scope.row.filename }}</a>
|
|
|
+ </span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|