2019-11-19 13:44:19 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container" style="padding: 8px;">
|
|
|
|
|
<!--工具栏-->
|
|
|
|
|
<div class="head-container">
|
2020-01-07 23:32:27 +08:00
|
|
|
|
<div v-if="crud.props.searchToggle">
|
|
|
|
|
<!-- 搜索 -->
|
|
|
|
|
<el-input v-model="query.blurry" clearable size="small" placeholder="输入内容模糊搜索" style="width: 200px;" class="filter-item" @keyup.enter.native="crud.toQuery" />
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="query.createTime"
|
|
|
|
|
:default-time="['00:00:00','23:59:59']"
|
|
|
|
|
type="daterange"
|
|
|
|
|
range-separator=":"
|
|
|
|
|
size="small"
|
|
|
|
|
class="date-item"
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
/>
|
|
|
|
|
<rrOperation :crud="crud" />
|
|
|
|
|
</div>
|
|
|
|
|
<crudOperation :permission="permission">
|
|
|
|
|
<!-- 新增 -->
|
2019-11-19 13:44:19 +08:00
|
|
|
|
<el-button
|
2020-01-07 23:32:27 +08:00
|
|
|
|
slot="left"
|
|
|
|
|
v-permission="['admin','storage:add']"
|
2019-11-19 13:44:19 +08:00
|
|
|
|
class="filter-item"
|
|
|
|
|
size="mini"
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-upload"
|
2020-01-07 23:32:27 +08:00
|
|
|
|
@click="crud.toAdd"
|
|
|
|
|
>上传
|
|
|
|
|
</el-button>
|
|
|
|
|
</crudOperation>
|
2019-11-19 13:44:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
<!--表单组件-->
|
2020-01-07 23:32:27 +08:00
|
|
|
|
<el-dialog append-to-body :close-on-click-modal="false" :before-close="crud.cancelCU" :visible.sync="crud.status.cu > 0" :title="crud.status.add ? '文件上传' : '编辑文件'" width="500px">
|
|
|
|
|
<el-form ref="form" :model="form" size="small" label-width="80px">
|
|
|
|
|
<el-form-item label="文件名">
|
|
|
|
|
<el-input v-model="form.name" style="width: 370px;" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 上传文件 -->
|
|
|
|
|
<el-form-item v-if="crud.status.add" label="上传">
|
|
|
|
|
<el-upload
|
|
|
|
|
ref="upload"
|
|
|
|
|
:limit="1"
|
|
|
|
|
:before-upload="beforeUpload"
|
|
|
|
|
:auto-upload="false"
|
|
|
|
|
:headers="headers"
|
|
|
|
|
:on-success="handleSuccess"
|
|
|
|
|
:on-error="handleError"
|
|
|
|
|
:action="fileUploadApi + '?name=' + form.name"
|
|
|
|
|
>
|
|
|
|
|
<div class="eladmin-upload"><i class="el-icon-upload" /> 添加文件</div>
|
|
|
|
|
<div slot="tip" class="el-upload__tip">可上传任意格式文件,且不超过100M</div>
|
|
|
|
|
</el-upload>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button type="text" @click="crud.cancelCU">取消</el-button>
|
|
|
|
|
<el-button v-if="crud.status.add" :loading="loading" type="primary" @click="upload">确认</el-button>
|
|
|
|
|
<el-button v-else :loading="crud.cu === 2" type="primary" @click="crud.submitCU">确认</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
2019-11-19 13:44:19 +08:00
|
|
|
|
<!--表格渲染-->
|
2020-01-07 23:32:27 +08:00
|
|
|
|
<el-table ref="table" v-loading="crud.loading" :data="crud.data" style="width: 100%;" @selection-change="crud.selectionChangeHandler">
|
|
|
|
|
<el-table-column type="selection" width="55" />
|
|
|
|
|
<el-table-column v-if="columns.visible('name')" prop="name" label="文件名">
|
2019-11-19 13:44:19 +08:00
|
|
|
|
<template slot-scope="scope">
|
2020-01-07 23:32:27 +08:00
|
|
|
|
<el-popover
|
|
|
|
|
:content="'file/' + scope.row.type + '/' + scope.row.realName"
|
|
|
|
|
placement="top-start"
|
|
|
|
|
title="路径"
|
|
|
|
|
width="200"
|
|
|
|
|
trigger="hover"
|
|
|
|
|
>
|
|
|
|
|
<a
|
|
|
|
|
slot="reference"
|
|
|
|
|
:href="baseApi + '/file/' + scope.row.type + '/' + scope.row.realName"
|
|
|
|
|
class="el-link--primary"
|
|
|
|
|
style="word-break:keep-all;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color: #1890ff;font-size: 13px;"
|
|
|
|
|
target="_blank"
|
|
|
|
|
>
|
|
|
|
|
{{ scope.row.name }}
|
|
|
|
|
</a>
|
|
|
|
|
</el-popover>
|
2019-11-19 13:44:19 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2020-01-07 23:32:27 +08:00
|
|
|
|
<el-table-column v-if="columns.visible('path')" prop="path" label="预览图">
|
|
|
|
|
<template slot-scope="{row}">
|
|
|
|
|
<el-image
|
|
|
|
|
:src=" baseApi + '/file/' + row.type + '/' + row.realName"
|
|
|
|
|
:preview-src-list="[baseApi + '/file/' + row.type + '/' + row.realName]"
|
|
|
|
|
fit="contain"
|
|
|
|
|
lazy
|
|
|
|
|
class="el-avatar"
|
|
|
|
|
>
|
|
|
|
|
<div slot="error">
|
|
|
|
|
<i class="el-icon-document" />
|
|
|
|
|
</div>
|
|
|
|
|
</el-image>
|
2019-11-19 13:44:19 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2020-01-07 23:32:27 +08:00
|
|
|
|
<el-table-column v-if="columns.visible('suffix')" prop="suffix" label="文件类型" />
|
|
|
|
|
<el-table-column v-if="columns.visible('type')" prop="type" label="类别" />
|
|
|
|
|
<el-table-column v-if="columns.visible('size')" prop="size" label="大小" />
|
|
|
|
|
<el-table-column v-if="columns.visible('operate')" prop="operate" label="操作人" />
|
|
|
|
|
<el-table-column v-if="columns.visible('createTime')" prop="createTime" label="创建日期">
|
2019-11-19 13:44:19 +08:00
|
|
|
|
<template slot-scope="scope">
|
2020-01-07 23:32:27 +08:00
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
2019-11-19 13:44:19 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<!--分页组件-->
|
2020-01-07 23:32:27 +08:00
|
|
|
|
<pagination />
|
2019-11-19 13:44:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { mapGetters } from 'vuex'
|
2020-01-07 23:32:27 +08:00
|
|
|
|
import { getToken } from '@/utils/auth'
|
|
|
|
|
import crudFile from '@/api/tools/localStorage'
|
|
|
|
|
import CRUD, { presenter, header, form, crud } from '@crud/crud'
|
|
|
|
|
import rrOperation from '@crud/RR.operation'
|
|
|
|
|
import crudOperation from '@crud/CRUD.operation'
|
|
|
|
|
import pagination from '@crud/Pagination'
|
|
|
|
|
|
|
|
|
|
// crud交由presenter持有
|
|
|
|
|
const defaultCrud = CRUD({ title: '文件', url: 'api/localStorage', crudMethod: { ...crudFile }})
|
|
|
|
|
const defaultForm = { id: null, name: '' }
|
2019-11-19 13:44:19 +08:00
|
|
|
|
export default {
|
2020-01-07 23:32:27 +08:00
|
|
|
|
components: { pagination, crudOperation, rrOperation },
|
|
|
|
|
mixins: [presenter(defaultCrud), header(), form(defaultForm), crud()],
|
2019-11-19 13:44:19 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
2020-01-07 23:32:27 +08:00
|
|
|
|
delAllLoading: false,
|
|
|
|
|
loading: false,
|
|
|
|
|
headers: { 'Authorization': getToken() },
|
|
|
|
|
permission: {
|
|
|
|
|
edit: ['admin', 'storage:edit'],
|
|
|
|
|
del: ['admin', 'storage:del']
|
|
|
|
|
}
|
2019-11-19 13:44:19 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
...mapGetters([
|
2020-01-07 23:32:27 +08:00
|
|
|
|
'baseApi',
|
|
|
|
|
'fileUploadApi'
|
2019-11-19 13:44:19 +08:00
|
|
|
|
])
|
|
|
|
|
},
|
|
|
|
|
created() {
|
2020-01-07 23:32:27 +08:00
|
|
|
|
this.crud.optShow.add = false
|
2019-11-19 13:44:19 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
2020-01-07 23:32:27 +08:00
|
|
|
|
// 上传文件
|
|
|
|
|
upload() {
|
|
|
|
|
this.$refs.upload.submit()
|
2019-11-19 13:44:19 +08:00
|
|
|
|
},
|
2020-01-07 23:32:27 +08:00
|
|
|
|
beforeUpload(file) {
|
|
|
|
|
let isLt2M = true
|
|
|
|
|
isLt2M = file.size / 1024 / 1024 < 100
|
|
|
|
|
if (!isLt2M) {
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.$message.error('上传文件大小不能超过 100MB!')
|
2019-11-19 13:44:19 +08:00
|
|
|
|
}
|
2020-01-07 23:32:27 +08:00
|
|
|
|
this.form.name = file.name
|
|
|
|
|
return isLt2M
|
2019-11-19 13:44:19 +08:00
|
|
|
|
},
|
2020-01-07 23:32:27 +08:00
|
|
|
|
handleSuccess(response, file, fileList) {
|
|
|
|
|
this.crud.notify('上传成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
|
|
|
|
|
this.$refs.upload.clearFiles()
|
|
|
|
|
this.crud.status.add = CRUD.STATUS.NORMAL
|
|
|
|
|
this.crud.resetForm()
|
|
|
|
|
this.crud.toQuery()
|
2019-11-19 13:44:19 +08:00
|
|
|
|
},
|
2020-01-07 23:32:27 +08:00
|
|
|
|
// 监听上传失败
|
|
|
|
|
handleError(e, file, fileList) {
|
|
|
|
|
const msg = JSON.parse(e.message)
|
|
|
|
|
this.$notify({
|
|
|
|
|
title: msg.message,
|
|
|
|
|
type: 'error',
|
|
|
|
|
duration: 2500
|
2019-11-19 13:44:19 +08:00
|
|
|
|
})
|
2020-01-07 23:32:27 +08:00
|
|
|
|
this.loading = false
|
2019-11-19 13:44:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2020-01-07 23:32:27 +08:00
|
|
|
|
/deep/ .el-image__error, .el-image__placeholder{
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
/deep/ .el-image-viewer__wrapper{
|
|
|
|
|
top: 55px;
|
|
|
|
|
}
|
2019-11-19 13:44:19 +08:00
|
|
|
|
</style>
|