154 lines
4.3 KiB
Vue
154 lines
4.3 KiB
Vue
<template>
|
|
<el-card class="mod-oss">
|
|
<el-form :inline="true" :model="dataForm">
|
|
<el-form-item>
|
|
<el-button type="primary" @click="handleConfig()">云存储配置</el-button>
|
|
<el-button type="primary" @click="handleUpload()">上传文件</el-button>
|
|
<el-button
|
|
type="danger"
|
|
@click="deleteHandle()"
|
|
:disabled="dataListSelections.length <= 0"
|
|
>批量删除</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-table
|
|
:data="dataList"
|
|
border
|
|
v-loading="dataListLoading"
|
|
@selection-change="handleChangeSelection"
|
|
style="width: 100%;"
|
|
>
|
|
<el-table-column type="selection" header-align="center" align="center" width="50"></el-table-column>
|
|
<el-table-column prop="id" header-align="center" align="center" width="80" label="ID"></el-table-column>
|
|
<el-table-column prop="url" header-align="center" align="center" label="URL地址"></el-table-column>
|
|
<el-table-column
|
|
prop="createDate"
|
|
header-align="center"
|
|
align="center"
|
|
width="180"
|
|
label="创建时间"
|
|
></el-table-column>
|
|
<el-table-column fixed="right" header-align="center" align="center" width="150" label="操作">
|
|
<template slot-scope="scope">
|
|
<el-button type="text" size="small" @click="deleteHandle(scope.row.id)">删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<el-pagination
|
|
@size-change="handleChangeSize"
|
|
@current-change="handleChangeCurrent"
|
|
:current-page="pageIndex"
|
|
:page-sizes="[10, 20, 50, 100]"
|
|
:page-size="pageSize"
|
|
:total="totalPage"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
></el-pagination>
|
|
<!-- 弹窗, 云存储配置 -->
|
|
<config v-if="configVisible" ref="config"></config>
|
|
<!-- 弹窗, 上传文件 -->
|
|
<upload v-if="uploadVisible" ref="upload" @refreshDataList="handleGetTableList"></upload>
|
|
</el-card>
|
|
</template>
|
|
|
|
<script>
|
|
import Config from './oss-config'
|
|
import Upload from './oss-upload'
|
|
import { apiSysOssList, apiSysOssDelete } from '@/api/api_sys'
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
dataForm: {},
|
|
dataList: [],
|
|
pageIndex: 1,
|
|
pageSize: 20,
|
|
totalPage: 0,
|
|
dataListLoading: false,
|
|
dataListSelections: [],
|
|
configVisible: false,
|
|
uploadVisible: false
|
|
}
|
|
},
|
|
components: {
|
|
Config,
|
|
Upload
|
|
},
|
|
activated () {
|
|
this.handleGetTableList()
|
|
},
|
|
methods: {
|
|
// 获取数据列表
|
|
handleGetTableList () {
|
|
apiSysOssList({
|
|
'page': this.pageIndex,
|
|
'limit': this.pageSize
|
|
}).then(res => {
|
|
if (res && res.code === 0) {
|
|
this.dataList = res.page.list
|
|
this.totalPage = res.page.totalCount
|
|
} else {
|
|
this.dataList = []
|
|
this.totalPage = 0
|
|
}
|
|
this.dataListLoading = false
|
|
})
|
|
},
|
|
// 每页数
|
|
handleChangeSize (val) {
|
|
this.pageSize = val
|
|
this.pageIndex = 1
|
|
this.handleGetTableList()
|
|
},
|
|
// 当前页
|
|
handleChangeCurrent (val) {
|
|
this.pageIndex = val
|
|
this.handleGetTableList()
|
|
},
|
|
// 多选
|
|
handleChangeSelection (val) {
|
|
this.dataListSelections = val
|
|
},
|
|
// 云存储配置
|
|
handleConfig () {
|
|
this.configVisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs.config.init()
|
|
})
|
|
},
|
|
// 上传文件
|
|
handleUpload () {
|
|
this.uploadVisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs.upload.init()
|
|
})
|
|
},
|
|
// 删除
|
|
deleteHandle (id) {
|
|
let ids = id ? [id] : this.dataListSelections.map(item => {
|
|
return item.id
|
|
})
|
|
this.$confirm(`确定对[id=${ids.join(',')}]进行[${id ? '删除' : '批量删除'}]操作?`, '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
apiSysOssDelete(ids).then(res => {
|
|
if (res && res.code === 0) {
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {
|
|
this.handleGetTableList()
|
|
}
|
|
})
|
|
} else {
|
|
this.$message.error(res.msg)
|
|
}
|
|
})
|
|
}).catch(() => { })
|
|
}
|
|
}
|
|
}
|
|
</script>
|