|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<!-- 新闻管理 -->
|
|
|
|
|
<div class="gva-search-box">
|
|
|
|
|
<el-form ref="searchForm" :inline="true" :model="searchInfo">
|
|
|
|
|
<el-form-item label="名称">
|
|
|
|
|
<el-input v-model="searchInfo.path" placeholder="请输入新闻名称" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="选择发布日期">
|
|
|
|
|
<el-date-picker v-model="value2" align="right" type="date" placeholder="选择日期" :picker-options="pickerOptions"></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button size="mini" type="primary" icon="el-icon-search" @click="onSubmit">查询</el-button>
|
|
|
|
|
<el-button size="mini" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="gva-table-box">
|
|
|
|
|
<div class="gva-btn-list">
|
|
|
|
|
<el-button size="mini" type="primary" icon="el-icon-plus" @click="openDialog('addApi')">新增</el-button>
|
|
|
|
|
<!-- <el-button size="mini" type="primary" icon="el-icon-upload" @click="openDialog('addApi')">导入员工数据</el-button> -->
|
|
|
|
|
<el-popover v-model:visible="deleteVisible" placement="top" width="160">
|
|
|
|
|
<p>确定要删除吗?</p>
|
|
|
|
|
<div style="text-align: right; margin-top: 8px;">
|
|
|
|
|
<el-button size="mini" type="text" @click="deleteVisible = false">取消</el-button>
|
|
|
|
|
<el-button size="mini" type="primary" @click="onDelete">确定</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<template #reference>
|
|
|
|
|
<el-button icon="el-icon-delete" size="mini" :disabled="!apis.length" style="margin-left: 10px;">删除</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-popover>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table :data="tableData" @sort-change="sortChange" @selection-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="55"/>
|
|
|
|
|
<el-table-column align="left" label="新闻名称" prop="ID"/>
|
|
|
|
|
<el-table-column align="left" label="发布时间" prop="path"/>
|
|
|
|
|
<el-table-column align="left" label="阅读量" prop="apiGroup"/>
|
|
|
|
|
<el-table-column align="left" label="详细介绍" prop="description"/>
|
|
|
|
|
|
|
|
|
|
<el-table-column align="left" fixed="right" label="操作" width="200">
|
|
|
|
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
size="small"
|
|
|
|
|
type="text"
|
|
|
|
|
@click="editApi(scope.row)"
|
|
|
|
|
>编辑</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
icon="el-icon-delete"
|
|
|
|
|
size="small"
|
|
|
|
|
type="text"
|
|
|
|
|
@click="deleteApi(scope.row)"
|
|
|
|
|
>删除</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<div class="gva-pagination">
|
|
|
|
|
<el-pagination
|
|
|
|
|
:current-page="page"
|
|
|
|
|
:page-size="pageSize"
|
|
|
|
|
:page-sizes="[10, 30, 50, 100]"
|
|
|
|
|
:total="total"
|
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
@size-change="handleSizeChange"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<el-dialog v-model="dialogFormVisible" :before-close="closeDialog" :title="dialogTitle" width="40%">
|
|
|
|
|
<el-form ref="apiForm" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
<el-form-item label="新闻名称" prop="num">
|
|
|
|
|
<el-input v-model="form.num" autocomplete="off"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="选择发布日期">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="value2"
|
|
|
|
|
align="right"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="选择日期"
|
|
|
|
|
:picker-options="pickerOptions">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="阅读量" prop="num">
|
|
|
|
|
<el-input v-model="form.num" autocomplete="off"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="详情" prop="num">
|
|
|
|
|
<!-- <editor-bar v-model="detail" :isClear="isClear" @change="change"></editor-bar> -->
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<div class="dialog-footer">
|
|
|
|
|
<el-button size="small" @click="closeDialog">取 消</el-button>
|
|
|
|
|
<el-button size="small" type="primary" @click="enterDialog">确 定</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
// 获取列表内容封装在mixins内部 getTableData方法 初始化已封装完成 条件搜索时候 请把条件安好后台定制的结构体字段 放到 this.searchInfo 中即可实现条件搜索
|
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
getApiById,
|
|
|
|
|
getApiList,
|
|
|
|
|
createApi,
|
|
|
|
|
updateApi,
|
|
|
|
|
deleteApi,
|
|
|
|
|
deleteApisByIds
|
|
|
|
|
} from '@/api/api'
|
|
|
|
|
import infoList from '@/mixins/infoList'
|
|
|
|
|
// import EditorBar from '../../components/wangEnduit/index.vue'
|
|
|
|
|
import { toSQLLine } from '@/utils/stringFun'
|
|
|
|
|
import warningBar from '@/components/warningBar/warningBar.vue'
|
|
|
|
|
|
|
|
|
|
const methodOptions = [
|
|
|
|
|
{
|
|
|
|
|
value: 'POST',
|
|
|
|
|
label: '创建',
|
|
|
|
|
type: 'success'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 'GET',
|
|
|
|
|
label: '查看',
|
|
|
|
|
type: ''
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 'PUT',
|
|
|
|
|
label: '更新',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 'DELETE',
|
|
|
|
|
label: '删除',
|
|
|
|
|
type: 'danger'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'Api',
|
|
|
|
|
components: {
|
|
|
|
|
// warningBar,EditorBar
|
|
|
|
|
warningBar
|
|
|
|
|
},
|
|
|
|
|
mixins: [infoList],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
deleteVisible: false,
|
|
|
|
|
// listApi: getApiList,
|
|
|
|
|
dialogFormVisible: false,
|
|
|
|
|
dialogTitle: '新增新闻',
|
|
|
|
|
apis: [],
|
|
|
|
|
form: {
|
|
|
|
|
wxId:'',
|
|
|
|
|
jdId:'',
|
|
|
|
|
num:'',
|
|
|
|
|
name:'',
|
|
|
|
|
type:'',
|
|
|
|
|
birthDate:'',
|
|
|
|
|
onboardingDate:'',
|
|
|
|
|
password:'',
|
|
|
|
|
passwordTwo:'',
|
|
|
|
|
department:'',
|
|
|
|
|
post: '',
|
|
|
|
|
gender: '',
|
|
|
|
|
age: '',
|
|
|
|
|
certificate: '',
|
|
|
|
|
certificateNum: '',
|
|
|
|
|
phone: '',
|
|
|
|
|
state: '',
|
|
|
|
|
},
|
|
|
|
|
methodOptions: methodOptions,
|
|
|
|
|
type: '',
|
|
|
|
|
rules: {
|
|
|
|
|
path: [{ required: true, message: '请输入api路径', trigger: 'blur' }],
|
|
|
|
|
apiGroup: [
|
|
|
|
|
{ required: true, message: '请输入组名称', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
description: [
|
|
|
|
|
{ required: true, message: '请输入api介绍', trigger: 'blur' }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getTableData()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
methodFiletr(value) {
|
|
|
|
|
const target = methodOptions.filter(item => item.value === value)[0]
|
|
|
|
|
return target && `${target.label}`
|
|
|
|
|
},
|
|
|
|
|
tagTypeFiletr(value) {
|
|
|
|
|
const target = methodOptions.filter(item => item.value === value)[0]
|
|
|
|
|
return target && `${target.type}`
|
|
|
|
|
},
|
|
|
|
|
// 选中api
|
|
|
|
|
handleSelectionChange(val) {
|
|
|
|
|
this.apis = val
|
|
|
|
|
},
|
|
|
|
|
async onDelete() {
|
|
|
|
|
const ids = this.apis.forEach(item => item.ID)
|
|
|
|
|
const res = await deleteApisByIds({ ids })
|
|
|
|
|
if (res.code === 0) {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: 'success',
|
|
|
|
|
message: res.msg
|
|
|
|
|
})
|
|
|
|
|
if (this.tableData.length === ids.length && this.page > 1) {
|
|
|
|
|
this.page--
|
|
|
|
|
}
|
|
|
|
|
this.deleteVisible = false
|
|
|
|
|
this.getTableData()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 排序
|
|
|
|
|
sortChange({ prop, order }) {
|
|
|
|
|
if (prop) {
|
|
|
|
|
this.searchInfo.orderKey = toSQLLine(prop)
|
|
|
|
|
this.searchInfo.desc = order === 'descending'
|
|
|
|
|
}
|
|
|
|
|
this.getTableData()
|
|
|
|
|
},
|
|
|
|
|
onReset() {
|
|
|
|
|
this.searchInfo = {}
|
|
|
|
|
},
|
|
|
|
|
// 条件搜索前端看此方法
|
|
|
|
|
onSubmit() {
|
|
|
|
|
this.page = 1
|
|
|
|
|
this.pageSize = 10
|
|
|
|
|
this.getTableData()
|
|
|
|
|
},
|
|
|
|
|
initForm() {
|
|
|
|
|
this.$refs.apiForm.resetFields()
|
|
|
|
|
this.form = {
|
|
|
|
|
path: '',
|
|
|
|
|
apiGroup: '',
|
|
|
|
|
method: '',
|
|
|
|
|
description: ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.initForm()
|
|
|
|
|
this.dialogFormVisible = false
|
|
|
|
|
},
|
|
|
|
|
openDialog(type) {
|
|
|
|
|
switch (type) {
|
|
|
|
|
case 'addApi':
|
|
|
|
|
this.dialogTitle = '新增新闻'
|
|
|
|
|
break
|
|
|
|
|
case 'edit':
|
|
|
|
|
this.dialogTitle = '编辑新闻'
|
|
|
|
|
break
|
|
|
|
|
default:
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
this.type = type
|
|
|
|
|
this.dialogFormVisible = true
|
|
|
|
|
},
|
|
|
|
|
async editApi(row) {
|
|
|
|
|
const res = await getApiById({ id: row.ID })
|
|
|
|
|
this.form = res.data.api
|
|
|
|
|
this.openDialog('edit')
|
|
|
|
|
},
|
|
|
|
|
async deleteApi(row) {
|
|
|
|
|
this.$confirm('此操作将永久删除所有角色下该api, 是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
.then(async() => {
|
|
|
|
|
const res = await deleteApi(row)
|
|
|
|
|
if (res.code === 0) {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: 'success',
|
|
|
|
|
message: '删除成功!'
|
|
|
|
|
})
|
|
|
|
|
if (this.tableData.length === 1 && this.page > 1) {
|
|
|
|
|
this.page--
|
|
|
|
|
}
|
|
|
|
|
this.getTableData()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
async enterDialog() {
|
|
|
|
|
this.$refs.apiForm.validate(async valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
switch (this.type) {
|
|
|
|
|
case 'addApi':
|
|
|
|
|
{
|
|
|
|
|
const res = await createApi(this.form)
|
|
|
|
|
if (res.code === 0) {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: 'success',
|
|
|
|
|
message: '添加成功',
|
|
|
|
|
showClose: true
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
this.getTableData()
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break
|
|
|
|
|
case 'edit':
|
|
|
|
|
{
|
|
|
|
|
const res = await updateApi(this.form)
|
|
|
|
|
if (res.code === 0) {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: 'success',
|
|
|
|
|
message: '编辑成功',
|
|
|
|
|
showClose: true
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
this.getTableData()
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
}
|
|
|
|
|
break
|
|
|
|
|
default:
|
|
|
|
|
// eslint-disable-next-line no-lone-blocks
|
|
|
|
|
{
|
|
|
|
|
this.$message({
|
|
|
|
|
type: 'error',
|
|
|
|
|
message: '未知操作',
|
|
|
|
|
showClose: true
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.el-input {
|
|
|
|
|
width: 220px;
|
|
|
|
|
}
|
|
|
|
|
.button-box {
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
.el-button {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.warning {
|
|
|
|
|
color: #dc143c;
|
|
|
|
|
}
|
|
|
|
|
</style>
|