123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <template>
- <div>
- <div class="button-box clearflex">
- <el-button @click="openDialog('addApi')" type="primary">新增api</el-button>
- </div>
- <el-table :data="tableData" border stripe>
- <el-table-column label="id" min-width="60" prop="ID"></el-table-column>
- <el-table-column label="api路径" min-width="150" prop="path"></el-table-column>
- <el-table-column label="api分组" min-width="150" prop="group"></el-table-column>
- <el-table-column label="api简介" min-width="150" prop="description"></el-table-column>
- <el-table-column fixed="right" label="操作" width="200">
- <template slot-scope="scope">
- <el-button @click="editApi(scope.row)" size="small" type="text">编辑</el-button>
- <el-button @click="deleteApi(scope.row)" size="small" type="text">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- :current-page="page"
- :page-size="pageSize"
- :page-sizes="[10, 30, 50, 100]"
- :style="{float:'right',padding:'20px'}"
- :total="total"
- @current-change="handleCurrentChange"
- @size-change="handleSizeChange"
- hide-on-single-page
- layout="total, sizes, prev, pager, next, jumper"
- ></el-pagination>
- <el-dialog :visible.sync="dialogFormVisible" title="新增Api">
- <el-form :inline="true" :model="form" label-width="80px">
- <el-form-item label="路径">
- <el-input autocomplete="off" @blur="autoGroup" v-model="form.path"></el-input>
- </el-form-item>
- <el-form-item label="api分组">
- <el-input autocomplete="off" v-model="form.group"></el-input>
- </el-form-item>
- <el-form-item label="api简介">
- <el-input autocomplete="off" v-model="form.description"></el-input>
- </el-form-item>
- </el-form>
- <div class="dialog-footer" slot="footer">
- <el-button @click="closeDialog">取 消</el-button>
- <el-button @click="enterDialog" type="primary">确 定</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- // 获取列表内容封装在mixins内部 getTableData方法 初始化已封装完成
- import { getApiById, getApiList, createApi, updataApi } from '@/api/api'
- import infoList from '@/view/superAdmin/mixins/infoList'
- export default {
- name: 'Api',
- mixins: [infoList],
- data() {
- return {
- listApi: getApiList,
- listKey: 'list',
- dialogFormVisible: false,
- form: {
- path: '',
- group: '',
- description: ''
- },
- type: ''
- }
- },
- methods: {
- // 自动设置api分组
- autoGroup(){
- this.form.group = this.form.path.split('/')[1]
- },
- initForm() {
- this.form = {
- path: '',
- group: '',
- description: ''
- }
- },
- closeDialog() {
- this.initForm()
- this.dialogFormVisible = false
- },
- openDialog(type) {
- this.type = type
- this.dialogFormVisible = true
- },
- addApi() {
- createApi()
- },
- async editApi(row) {
- const res = await getApiById({ id: row.ID })
- this.form = res.data.api
- this.openDialog('edit')
- },
- deleteApi() {},
- async enterDialog() {
- switch (this.type) {
- case 'addApi':
- {
- const res = await createApi(this.form)
- if (res.success) {
- this.$message({
- type: 'success',
- message: '添加成功',
- showClose: true
- })
- }
- this.getTableData()
- this.closeDialog()
- }
- break
- case 'edit':
- {
- const res = await updataApi(this.form)
- if (res.success) {
- this.$message({
- type: 'success',
- message: '添加成功',
- showClose: true
- })
- }
- this.getTableData()
- this.closeDialog()
- }
- break
- default:
- {
- this.$message({
- type: 'error',
- message: '未知操作',
- showClose: true
- })
- }
- break
- }
- }
- },
- created() {
- this.getTableData()
- }
- }
- </script>
- <style scoped lang="scss">
- .button-box {
- padding: 10px 20px;
- .el-button {
- float: right;
- }
- }
- </style>
|