You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
197 lines
5.2 KiB
197 lines
5.2 KiB
<template>
|
|
<div>
|
|
<card-container>
|
|
<vxe-toolbar>
|
|
<template #buttons>
|
|
<el-button icon="el-icon-menu" type="primary" size="small" @click="isShowDraw = true">文章分类</el-button>
|
|
<el-button icon="el-icon-plus" type="primary" size="small" @click="isShowAdd = true">新增</el-button>
|
|
<el-button icon="el-icon-search" type="primary" plain size="small" @click="getList">搜索</el-button>
|
|
</template>
|
|
</vxe-toolbar>
|
|
<vxe-table
|
|
ref="table"
|
|
stripe
|
|
style="margin-top: 10px;"
|
|
:loading="loading"
|
|
keep-source
|
|
show-overflow
|
|
:column-config="{ resizable: true }"
|
|
:edit-rules="validRules"
|
|
:edit-config="{ trigger: 'manual', mode: 'row', showStatus: true, isHover: true, autoClear: false }"
|
|
:align="allAlign"
|
|
:data="tableData"
|
|
>
|
|
<vxe-column type="seq" width="58" align="center" />
|
|
<vxe-column field="title" width="170" title="标题" />
|
|
<vxe-column field="sub_title" width="150" title="简介" />
|
|
<vxe-column field="content" min-width="180" title="内容" />
|
|
<vxe-column field="operate" title="操作" min-width="220">
|
|
<template #default="{ row }">
|
|
<template>
|
|
<el-button size="small" type="warning" @click="editRowEvent(row)">编辑</el-button>
|
|
<el-button size="small" type="danger" @click="destroyRowEvent(row)">删除</el-button>
|
|
</template>
|
|
</template>
|
|
</vxe-column>
|
|
</vxe-table>
|
|
|
|
<el-pagination
|
|
style="margin-top: 10px;"
|
|
:current-page.sync="select.page"
|
|
:page-sizes="[20, 30, 40, 50]"
|
|
:page-size.sync="select.page_size"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
:total="total"
|
|
@size-change="e => {
|
|
select.page_size = e;
|
|
select.page = 1;
|
|
getList();
|
|
}"
|
|
@current-change="e => {
|
|
select.page = e;
|
|
getList();
|
|
}"
|
|
/>
|
|
</card-container>
|
|
<add-article ref="AddArticle" :is-show.sync="isShowAdd" @refresh="getList" />
|
|
<article-type ref="ArticleType" :is-show.sync="isShowDraw" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { deepCopy } from '@/utils'
|
|
import { index, save, destroy } from '@/api/article'
|
|
import AddArticle from './components/AddArticle.vue'
|
|
import ArticleType from './components/ArticleType.vue'
|
|
export default {
|
|
components: {
|
|
AddArticle,
|
|
ArticleType
|
|
},
|
|
data() {
|
|
return {
|
|
isShowDraw: false,
|
|
isShowAdd: false,
|
|
|
|
loading: false,
|
|
select: {
|
|
page: 1,
|
|
page_size: 20
|
|
},
|
|
total: 0,
|
|
allAlign: null,
|
|
tableData: [],
|
|
validRules: {},
|
|
form: {
|
|
id: '',
|
|
name: '',
|
|
key: '',
|
|
value: '',
|
|
mysort: ''
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
isActiveStatus() {
|
|
return function(row) {
|
|
if (this.$refs['table']) {
|
|
return this.$refs['table'].isEditByRow(row)
|
|
}
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
this.getList()
|
|
},
|
|
methods: {
|
|
editRowEvent(row) {
|
|
this.$refs['AddArticle'].form.id = row.id
|
|
this.isShowAdd = true
|
|
// if (this.$refs['table']) {
|
|
// this.$refs['table'].setEditRow(row)
|
|
// }
|
|
},
|
|
cancelRowEvent(row) {
|
|
if (this.$refs['table']) {
|
|
this.$refs['table'].clearEdit().then(() => {
|
|
// 还原行数据
|
|
this.$refs['table'].revertData(row)
|
|
})
|
|
}
|
|
},
|
|
|
|
async getList() {
|
|
this.loading = true
|
|
try {
|
|
const res = await index(this.select)
|
|
this.tableData = res.data
|
|
this.total = res.total
|
|
this.loading = false
|
|
} catch (err) {
|
|
console.error(err)
|
|
this.loading = false
|
|
}
|
|
},
|
|
|
|
async saveRowEvent(row) {
|
|
try {
|
|
const errMap = await this.$refs['table'].validate()
|
|
if (errMap) {
|
|
throw new Error(errMap)
|
|
}
|
|
await this.$confirm('确认保存?', '提示', {
|
|
confirmButtonText: '确认',
|
|
cancelButtonText: '取消'
|
|
})
|
|
await this.$refs['table'].clearEdit()
|
|
const form = deepCopy(this.form)
|
|
for (const key in form) {
|
|
form[key] = row[key]
|
|
}
|
|
if (!form.password) {
|
|
delete form.password
|
|
}
|
|
this.loading = true
|
|
await save(form)
|
|
await this.getList()
|
|
this.loading = false
|
|
} catch (err) {
|
|
this.loading = false
|
|
}
|
|
},
|
|
async destroyRowEvent(row) {
|
|
try {
|
|
await this.$confirm('确认删除?', '提示', {
|
|
confirmButtonText: '确认',
|
|
cancelButtonText: '取消'
|
|
})
|
|
this.loading = true
|
|
if (row.id) {
|
|
await destroy({
|
|
id: row.id
|
|
})
|
|
await this.getList()
|
|
} else {
|
|
console.log(row)
|
|
this.tableData.splice(this.tableData.findIndex(i => i._X_ROW_KEY === row._X_ROW_KEY), 1)
|
|
}
|
|
this.loading = false
|
|
} catch (err) {
|
|
this.loading = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.total {
|
|
color: #666;
|
|
text-align: right;
|
|
line-height: 3;
|
|
}
|
|
::v-deep .el-tag + .el-tag {
|
|
margin-left: 4px;
|
|
}
|
|
</style>
|