|
@@ -316,6 +316,7 @@
|
|
|
style="width: 100%"
|
|
style="width: 100%"
|
|
|
>
|
|
>
|
|
|
<el-table-column
|
|
<el-table-column
|
|
|
|
|
+ :resizable="false"
|
|
|
label="缩略图"
|
|
label="缩略图"
|
|
|
width="160"
|
|
width="160"
|
|
|
v-if="this.resource === 'img'"
|
|
v-if="this.resource === 'img'"
|
|
@@ -330,12 +331,12 @@
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="name" label="附件名称"> </el-table-column>
|
|
|
|
|
|
|
+ <el-table-column prop="name" label="附件名称" :resizable="false"> </el-table-column>
|
|
|
<!-- <el-table-column prop="address" label="附件说明" ></el-table-column> -->
|
|
<!-- <el-table-column prop="address" label="附件说明" ></el-table-column> -->
|
|
|
<!-- <el-table-column prop="name" label="上传人" width="360"> </el-table-column> -->
|
|
<!-- <el-table-column prop="name" label="上传人" width="360"> </el-table-column> -->
|
|
|
- <el-table-column prop="updateTime" label="上传时间" width="360">
|
|
|
|
|
|
|
+ <el-table-column prop="updateTime" label="上传时间" width="360" :resizable="false">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="操作" width="360">
|
|
|
|
|
|
|
+ <el-table-column label="操作" width="360" :resizable="false">
|
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
|
<!-- 图片的查看 -->
|
|
<!-- 图片的查看 -->
|
|
|
<a
|
|
<a
|
|
@@ -373,22 +374,24 @@
|
|
|
:header-cell-style="{ background: '#eef1f6', color: '#606266' }"
|
|
:header-cell-style="{ background: '#eef1f6', color: '#606266' }"
|
|
|
border
|
|
border
|
|
|
>
|
|
>
|
|
|
- <el-table-column label="序号" width="50">
|
|
|
|
|
|
|
+ <el-table-column label="序号" width="50" :resizable="false">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
{{ scope.$index + (myData.pageNum - 1) * myData.pageSize + 1 }}
|
|
{{ scope.$index + (myData.pageNum - 1) * myData.pageSize + 1 }}
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
<el-table-column
|
|
|
|
|
+ :resizable="false"
|
|
|
property="moduleNum"
|
|
property="moduleNum"
|
|
|
label="业务单号"
|
|
label="业务单号"
|
|
|
></el-table-column>
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
<el-table-column
|
|
|
|
|
+ :resizable="false"
|
|
|
property="tempType"
|
|
property="tempType"
|
|
|
label="业务类型"
|
|
label="业务类型"
|
|
|
width="150"
|
|
width="150"
|
|
|
></el-table-column>
|
|
></el-table-column>
|
|
|
- <el-table-column property="updateTime" label="完成时间" width="220"></el-table-column>
|
|
|
|
|
- <el-table-column label="操作" width="120">
|
|
|
|
|
|
|
+ <el-table-column property="updateTime" label="完成时间" width="220" :resizable="false"></el-table-column>
|
|
|
|
|
+ <el-table-column label="操作" width="120" :resizable="false">
|
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
|
<el-button type="text" @click="lookRZ(row)">查 看</el-button>
|
|
<el-button type="text" @click="lookRZ(row)">查 看</el-button>
|
|
|
</template>
|
|
</template>
|