|
@@ -321,6 +321,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>-->
|
|
|
</el-row>
|
|
|
+ <el-divider content-position="left"><i class="el-icon-document"></i> 附件信息</el-divider>
|
|
|
<el-upload ref="upload" style="display: inline-block; margin-left: 5em; :show-header='status'" action=""
|
|
|
:limit="999" :http-request="httpRequest"
|
|
|
multiple
|
|
@@ -333,13 +334,12 @@
|
|
|
:file-list="filesArra2">
|
|
|
<el-button type="info" size="mini" v-if="inputForm.permissionFlag&&showVi">点击上传</el-button>
|
|
|
</el-upload>
|
|
|
- <div style="height: calc(100% - 80px);margin-top: 30px">
|
|
|
+ <div style="height: calc(100% - 80px);margin-top: 10px">
|
|
|
<vxe-table
|
|
|
style="margin-left: 5em"
|
|
|
border="inner"
|
|
|
auto-resize
|
|
|
resizable
|
|
|
- height="500px"
|
|
|
:loading="loading"
|
|
|
size="small"
|
|
|
ref="projectTable"
|
|
@@ -373,8 +373,8 @@
|
|
|
<!-- <vxe-column title="文件描述" field="description"></vxe-column>-->
|
|
|
<vxe-column title="操作" width="200px" fixed="right" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
+ <el-button type="text" icon="el-icon-edit" size="small" @click="toHref(scope.row)" :disabled="false">下载</el-button>
|
|
|
<el-button type="text" icon="el-icon-delete" size="small" v-if="inputForm.permissionFlag&&showVi" @click="deleteMsgById(scope.row, scope.$rowIndex)">删除</el-button>
|
|
|
- <el-button type="text" icon="el-icon-edit" size="small" @click="toHref(scope.row)" :disabled="none">下载</el-button>
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
</vxe-table>
|
|
@@ -792,3 +792,12 @@
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
+<style scoped>
|
|
|
+ .avatar{
|
|
|
+ height: 100px;
|
|
|
+ }
|
|
|
+ .el-divider__text {
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+</style>
|