* 同一界面内,多CRUD共存 * 解决多crud,对inject修改造成注入混乱,弃用Vue注入方式 * 自定义数据id字段名 * 以$options.cruds()方式实例化crud,避免多组件实例共享crud
187 lines
5.6 KiB
Vue
187 lines
5.6 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<!--工具栏-->
|
|
<div class="head-container">
|
|
<div v-if="crud.props.searchToggle">
|
|
<!--搜索-->
|
|
<el-input v-model="query.filename" 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 />
|
|
</div>
|
|
<crudOperation :permission="permission">
|
|
<!-- 上传 -->
|
|
<el-button
|
|
slot="left"
|
|
v-permission="['admin','pictures:add']"
|
|
class="filter-item"
|
|
size="mini"
|
|
type="primary"
|
|
icon="el-icon-upload"
|
|
@click="dialog = true"
|
|
>上传</el-button>
|
|
<el-tooltip slot="right" class="item" effect="dark" content="使用同步功能需要在 https://sm.ms/login 中注册账号,并且在 application.yml 文件中修改 Secret Token" placement="top-start">
|
|
<el-button
|
|
v-permission="['admin','pictures:add']"
|
|
class="filter-item"
|
|
size="mini"
|
|
type="success"
|
|
icon="el-icon-refresh"
|
|
:loading="syncLoading"
|
|
@click="sync"
|
|
>同步</el-button>
|
|
</el-tooltip>
|
|
</crudOperation>
|
|
</div>
|
|
<!--上传图片-->
|
|
<el-dialog :visible.sync="dialog" :close-on-click-modal="false" append-to-body width="600px" @close="doSubmit">
|
|
<el-upload
|
|
:on-preview="handlePictureCardPreview"
|
|
:before-remove="handleBeforeRemove"
|
|
:on-success="handleSuccess"
|
|
:on-error="handleError"
|
|
:headers="headers"
|
|
:file-list="fileList"
|
|
:action="imagesUploadApi"
|
|
list-type="picture-card"
|
|
>
|
|
<i class="el-icon-plus" />
|
|
</el-upload>
|
|
<el-dialog append-to-body :visible.sync="dialogVisible">
|
|
<img :src="dialogImageUrl" width="100%" alt="">
|
|
</el-dialog>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="doSubmit">确认</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
<!--表格渲染-->
|
|
<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 width="200" prop="filename" label="文件名" />
|
|
<el-table-column prop="username" label="上传者" />
|
|
<el-table-column ref="table" :show-overflow-tooltip="true" prop="url" label="缩略图">
|
|
<template slot-scope="{row}">
|
|
<el-image
|
|
:src="row.url"
|
|
:preview-src-list="[row.url]"
|
|
fit="contain"
|
|
lazy
|
|
class="el-avatar"
|
|
/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="size" label="文件大小" />
|
|
<el-table-column prop="height" label="高度" />
|
|
<el-table-column prop="width" label="宽度" />
|
|
<el-table-column prop="createTime" label="创建日期">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<!--分页组件-->
|
|
<pagination />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
import crudPic from '@/api/tools/picture'
|
|
import CRUD, { presenter, header, crud } from '@crud/crud'
|
|
import { getToken } from '@/utils/auth'
|
|
import rrOperation from '@crud/RR.operation'
|
|
import crudOperation from '@crud/CRUD.operation'
|
|
import pagination from '@crud/Pagination'
|
|
|
|
export default {
|
|
name: 'Pictures',
|
|
components: { pagination, crudOperation, rrOperation },
|
|
cruds() {
|
|
return CRUD({ title: '图片', url: 'api/pictures', crudMethod: { ...crudPic }})
|
|
},
|
|
mixins: [presenter(), header(), crud()],
|
|
data() {
|
|
return {
|
|
dialog: false,
|
|
syncLoading: false,
|
|
headers: {
|
|
'Authorization': getToken()
|
|
},
|
|
permission: {
|
|
del: ['admin', 'pictures:del']
|
|
},
|
|
dialogImageUrl: '',
|
|
dialogVisible: false,
|
|
fileList: [],
|
|
pictures: []
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'imagesUploadApi'
|
|
])
|
|
},
|
|
created() {
|
|
this.crud.optShow.add = false
|
|
this.crud.optShow.edit = false
|
|
},
|
|
methods: {
|
|
handleSuccess(response, file, fileList) {
|
|
const uid = file.uid
|
|
const id = response.id
|
|
this.pictures.push({ uid, id })
|
|
},
|
|
handleBeforeRemove(file, fileList) {
|
|
for (let i = 0; i < this.pictures.length; i++) {
|
|
if (this.pictures[i].uid === file.uid) {
|
|
crudPic.del(this.pictures[i].id).then(res => {})
|
|
return true
|
|
}
|
|
}
|
|
},
|
|
handlePictureCardPreview(file) {
|
|
this.dialogImageUrl = file.url
|
|
this.dialogVisible = true
|
|
},
|
|
// 刷新列表数据
|
|
doSubmit() {
|
|
this.fileList = []
|
|
this.dialogVisible = false
|
|
this.dialogImageUrl = ''
|
|
this.dialog = false
|
|
this.crud.toQuery()
|
|
},
|
|
// 监听上传失败
|
|
handleError(e, file, fileList) {
|
|
const msg = JSON.parse(e.message)
|
|
this.$notify({
|
|
title: msg.message,
|
|
type: 'error',
|
|
duration: 2500
|
|
})
|
|
},
|
|
sync() {
|
|
this.syncLoading = true
|
|
crudPic.sync().then(res => {
|
|
this.crud.notify('同步成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
|
|
this.crud.toQuery()
|
|
this.syncLoading = false
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|