整理代码

This commit is contained in:
2025-02-10 17:32:12 +08:00
parent 13872d9f29
commit 431d7470fa
12 changed files with 172 additions and 217 deletions

View File

@@ -2,9 +2,9 @@ package com.test.test.controller;
import java.util.List;
import com.test.test.domain.qo.IDQO;
import com.test.test.domain.qo.TestApiListQO;
import jakarta.annotation.Resource;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
@@ -18,7 +18,6 @@ import com.test.common.core.domain.AjaxResult;
import com.test.common.enums.BusinessType;
import com.test.test.domain.TestApi;
import com.test.test.service.ITestApiService;
import com.test.common.utils.poi.ExcelUtil;
import com.test.common.core.page.TableDataInfo;
/**
@@ -36,29 +35,18 @@ public class TestApiController extends BaseController {
* 查询接口列表
*/
@GetMapping("/list")
public TableDataInfo list(@Validated TestApiListQO testApi) {
public TableDataInfo list(@Validated TestApiListQO qo) {
startPage();
List<TestApi> list = testApiService.selectTestApiList(testApi);
List<TestApi> list = testApiService.selectTestApiList(qo);
return getDataTable(list);
}
/**
* 导出接口列表
*/
@Log(title = "接口", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, TestApiListQO testApi) {
List<TestApi> list = testApiService.selectTestApiList(testApi);
ExcelUtil<TestApi> util = new ExcelUtil<TestApi>(TestApi.class);
util.exportExcel(response, list, "接口数据");
}
/**
* 获取接口详细信息
*/
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id) {
return success(testApiService.selectTestApiById(id));
@PostMapping(value = "/detail")
public AjaxResult getInfo(@RequestBody IDQO qo) {
return success(testApiService.selectTestApiById(qo.getId()));
}
/**
@@ -83,8 +71,8 @@ public class TestApiController extends BaseController {
* 删除接口
*/
@Log(title = "接口", businessType = BusinessType.DELETE)
@PostMapping("/del/{ids}")
public AjaxResult remove(@PathVariable Long[] ids) {
return toAjax(testApiService.deleteTestApiByIds(ids));
@PostMapping("/del")
public AjaxResult remove(@RequestBody IDQO qo) {
return toAjax(testApiService.deleteTestApiById(qo.getId()));
}
}

View File

@@ -2,6 +2,7 @@ package com.test.test.controller;
import java.util.List;
import com.test.test.domain.qo.IDQO;
import jakarta.annotation.Resource;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
@@ -58,8 +59,8 @@ public class TestApiGroupController extends BaseController {
* 删除接口节点
*/
@Log(title = "接口节点", businessType = BusinessType.DELETE)
@PostMapping("/del/{id}")
public AjaxResult remove(@PathVariable Long id) {
return toAjax(testApiGroupService.deleteTestApiGroupById(id));
@PostMapping("/del")
public AjaxResult remove(@RequestBody IDQO qo) {
return toAjax(testApiGroupService.deleteTestApiGroupById(qo.getId()));
}
}

View File

@@ -0,0 +1,8 @@
package com.test.test.domain.qo;
import lombok.Data;
@Data
public class IDQO {
private Long id;
}

View File

@@ -22,10 +22,10 @@ public interface TestApiMapper {
/**
* 查询接口列表
*
* @param testApi 接口
* @param qo 接口
* @return 接口集合
*/
public List<TestApi> selectTestApiList(TestApiListQO testApi);
public List<TestApi> selectTestApiList(TestApiListQO qo);
/**
* 新增接口

View File

@@ -22,10 +22,10 @@ public interface ITestApiService {
/**
* 查询接口列表
*
* @param testApi 接口
* @param qo 接口
* @return 接口集合
*/
public List<TestApi> selectTestApiList(TestApiListQO testApi);
public List<TestApi> selectTestApiList(TestApiListQO qo);
/**
* 新增接口

View File

@@ -34,12 +34,12 @@ public class TestApiServiceImpl implements ITestApiService {
/**
* 查询接口列表
*
* @param testApi 接口
* @param qo 接口
* @return 接口
*/
@Override
public List<TestApi> selectTestApiList(TestApiListQO testApi) {
return testApiMapper.selectTestApiList(testApi);
public List<TestApi> selectTestApiList(TestApiListQO qo) {
return testApiMapper.selectTestApiList(qo);
}
/**

View File

@@ -24,16 +24,13 @@
select id, group_id, name, method, uri, header, param, body, del_flag, create_by, create_time, update_by, update_time from test_api
</sql>
<select id="selectTestApiList" parameterType="TestApi" resultMap="TestApiResult">
<select id="selectTestApiList" parameterType="TestApiListQO" resultMap="TestApiResult">
<include refid="selectTestApiVo"/>
<where>
<if test="groupId != null "> and group_id = #{groupId}</if>
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
<if test="method != null and method != ''"> and method = #{method}</if>
<if test="uri != null and uri != ''"> and uri like concat('%', #{uri}, '%')</if>
<if test="header != null and header != ''"> and header = #{header}</if>
<if test="param != null and param != ''"> and param = #{param}</if>
<if test="body != null and body != ''"> and body = #{body}</if>
</where>
</select>

View File

@@ -12,8 +12,9 @@ export function listApi(query) {
// 查询接口详细
export function getApi(id) {
return request({
url: '/test/api/detail/' + id,
method: 'get'
url: '/test/api/detail',
method: 'post',
params: {id}
})
}
@@ -38,8 +39,9 @@ export function updateApi(data) {
// 删除接口
export function delApi(id) {
return request({
url: '/test/api/del/' + id,
method: 'post'
url: '/test/api/del/',
method: 'post',
params: {id}
})
}
@@ -55,7 +57,7 @@ export function listGroup() {
// 新增接口节点
export function addGroup(data) {
return request({
url: '/test/group',
url: '/test/group/add',
method: 'post',
data: data
})
@@ -64,8 +66,8 @@ export function addGroup(data) {
// 修改接口节点
export function updateGroup(data) {
return request({
url: '/test/group',
method: 'put',
url: '/test/group/edit',
method: 'post',
data: data
})
}
@@ -73,7 +75,8 @@ export function updateGroup(data) {
// 删除接口节点
export function delGroup(id) {
return request({
url: '/test/group/' + id,
method: 'delete'
url: '/test/group/del',
method: 'post',
params: {id}
})
}

View File

@@ -122,6 +122,7 @@ aside {
//main-container全局样式
.app-container {
padding: 20px;
min-height: calc(100vh - 84px);
}
.components-container {
@@ -180,3 +181,13 @@ aside {
margin-bottom: 10px;
}
}
aside {
background: unset !important;
}
.el-form-item__content {
.el-select {
width: 100%;
}
}

View File

@@ -87,6 +87,20 @@ export const constantRoutes = [
meta: { title: '个人中心', icon: 'user' }
}
]
},
{
path: '/api/add',
component: Layout,
hidden: true,
children: [
{
path: '',
component: () => import('@/views/test/api/add'),
name: 'ApiAdd',
noCache: true,
meta: { title: '添加接口', activeMenu: '/api' }
}
]
}
]

View File

@@ -0,0 +1,27 @@
<template>
<div class="app-container">
add
</div>
</template>
<script>
export default {
name: "ApiAdd",
dicts: ['http_method'],
created () {
console.log(this.$route.query.groupId)
},
data() {
return {
// 表单参数
form: {},
// 表单校验
rules: {}
}
}
}
</script>
<style scoped lang="scss">
</style>

View File

@@ -1,135 +1,66 @@
<template>
<div class="app-container">
<el-container>
<el-aside width="240px">
<el-menu class="el-menu-vertical-demo">
<el-menu-item v-for="item in groupList" :index="item.id" :key="item.id" :disabled="item.name">
<span slot="title">{{ item.name }}</span>
</el-menu-item>
</el-menu>
</el-aside>
<el-main>
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="接口名称" prop="name">
<el-input
v-model="queryParams.name"
placeholder="请输入接口名称"
clearable
@keyup.enter.native="handleQuery"
/>
<el-input v-model="queryParams.name" placeholder="请输入接口名称" clearable @keyup.enter.native="handleQuery"/>
</el-form-item>
<el-form-item label="请求类型" prop="method">
<el-select v-model="queryParams.method" placeholder="请输入接口请求类型" clearable @keyup.enter.native="handleQuery">
<el-option
v-for="dict in dict.type.http_method"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
<el-option v-for="dict in dict.type.http_method" :key="dict.value" :label="dict.label" :value="dict.value"/>
</el-select>
</el-form-item>
<el-form-item label="接口路径" prop="uri">
<el-input
v-model="queryParams.uri"
placeholder="请输入接口路径"
clearable
@keyup.enter.native="handleQuery"
/>
<el-input v-model="queryParams.uri" placeholder="请输入接口路径" clearable @keyup.enter.native="handleQuery"/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['test:api:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['test:api:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['test:api:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['test:api:export']"
>导出</el-button>
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd">新增</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="apiList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="接口id" align="center" prop="id" />
<el-table-column label="接口名称" align="center" prop="name" />
<el-table-column label="接口请求类型" align="center" prop="method" />
<el-table-column label="接口路径" align="center" prop="uri" />
<el-table-column label="接口请求头" align="center" prop="header" />
<el-table-column label="接口查询参数" align="center" prop="param" />
<el-table-column label="接口请求体" align="center" prop="body" />
<el-table v-loading="loading" :data="apiList">
<el-table-column label="接口名称" align="center" prop="name"/>
<el-table-column label="接口请求类型" align="center" prop="method"/>
<el-table-column label="接口路径" align="center" prop="uri"/>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['test:api:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['test:api:remove']"
>删除</el-button>
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)">修改</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList"/>
</el-main>
</el-container>
<!-- 添加或修改接口对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-dialog :title="title" :visible.sync="open" width="1200px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="接口名称" prop="name">
<el-input v-model="form.name" placeholder="请输入接口名称" />
<el-input v-model="form.name" placeholder="请输入接口名称"/>
</el-form-item>
<el-form-item label="接口请求类型" prop="method">
<el-input v-model="form.method" placeholder="请输入接口请求类型" />
<el-select v-model="form.method" placeholder="请选择接口请求类型" clearable>
<el-option v-for="dict in dict.type.http_method" :key="dict.value" :label="dict.label" :value="dict.value"/>
</el-select>
</el-form-item>
<el-form-item label="接口路径" prop="uri">
<el-input v-model="form.uri" placeholder="请输入接口路径" />
</el-form-item>
<el-form-item label="删除标志" prop="delFlag">
<el-input v-model="form.delFlag" placeholder="请输入删除标志" />
<el-input v-model="form.uri" placeholder="请输入接口路径"/>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
@@ -141,7 +72,7 @@
</template>
<script>
import { listApi, getApi, delApi, addApi, updateApi } from "@/api/test/api";
import {listApi, getApi, delApi, addApi, updateApi, listGroup, delGroup, addGroup, updateGroup} from "@/api/test/api";
export default {
name: "Api",
@@ -150,16 +81,11 @@ export default {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
groupList: [],
// 接口表格数据
apiList: [],
// 弹出层标题
@@ -170,24 +96,29 @@ export default {
queryParams: {
pageNum: 1,
pageSize: 10,
groupId: 1,
name: null,
method: null,
uri: null,
header: null,
param: null,
body: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
}
rules: {}
};
},
created() {
this.getGroup();
this.getList();
},
methods: {
getGroup() {
this.loading = true;
listGroup().then(response => {
this.groupList = response.data;
this.loading = false;
})
},
/** 查询接口列表 */
getList() {
this.loading = true;
@@ -204,20 +135,7 @@ export default {
},
// 表单重置
reset() {
this.form = {
id: null,
name: null,
method: null,
uri: null,
header: null,
param: null,
body: null,
delFlag: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
};
this.form = {};
this.resetForm("form");
},
/** 搜索按钮操作 */
@@ -230,27 +148,21 @@ export default {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加接口";
this.$tab.openPage("添加接口", "/api/add", {groupId: this.queryParams.groupId});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getApi(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改接口";
});
this.$tab.openPage("修改接口", "/api/add", {id: row.id || this.ids});
//
// this.reset();
// const id = row.id || this.ids
// getApi(id).then(response => {
// this.form = response.data;
// this.open = true;
// this.title = "修改接口";
// });
},
/** 提交按钮 */
submitForm() {
@@ -274,20 +186,14 @@ export default {
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除接口编号为"' + ids + '"的数据项?').then(function() {
return delApi(ids);
this.$modal.confirm('是否确认删除接口编号为"' + row.id + '"的数据项?').then(function () {
return delApi(row.id);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
}).catch(() => {
});
},
/** 导出按钮操作 */
handleExport() {
this.download('test/api/export', {
...this.queryParams
}, `api_${new Date().getTime()}.xlsx`)
}
}
};
</script>