diff --git a/src/api/uav/clue.js b/src/api/uav/clue.js index e69de29..02af02d 100644 --- a/src/api/uav/clue.js +++ b/src/api/uav/clue.js @@ -0,0 +1,9 @@ +import request from '@/config/axios' + +// 查询线索 +export const searchClue = async (params) => { + return await request.get({ + url: '/admin-api/applet/wrj/clue/page', + params + }) +} diff --git a/src/api/uav/regiest.js b/src/api/uav/regiest.js new file mode 100644 index 0000000..113530f --- /dev/null +++ b/src/api/uav/regiest.js @@ -0,0 +1,33 @@ +import request from '@/config/axios' + +// 查询机构 +export const searchStation = async (params) => { + return await request.get({ + url: '/admin-api/applet/wrj/school/page', + params + }) +} + +// 审核机构 +export const auditStation = async (data) => { + return await request.post({ + url: '/admin-api/applet/wrj/school/check', + data + }) +} + +// 查询教员 +export const searchTeacher = async (params) => { + return await request.get({ + url: '/admin-api/applet/wrj/teacher/page', + params + }) +} + +// 审核教员 +export const auditTeacher = async (data) => { + return await request.post({ + url: '/admin-api/applet/wrj/teacher/audit', + data + }) +} diff --git a/src/api/uav/testRoom.js b/src/api/uav/testRoom.js new file mode 100644 index 0000000..8f934e6 --- /dev/null +++ b/src/api/uav/testRoom.js @@ -0,0 +1,28 @@ +import request from '@/config/axios' + +export const searchTestroom = async (params) => { + return await request.get({ + url: '/admin-api/applet/wrj/examPlace/page', + params + }) +} + +export const addTestroom = async (data) => { + return await request.post({ + url: '/admin-api/applet/wrj/examPlace/add', + data, + isSubmitForm: true + }) +} +export const updateTestroom = async (data) => { + return await request.put({ + url: '/admin-api/applet/wrj/examPlace/update', + data + }) +} +export const deleteTestroom = async (params) => { + return await request.delete({ + url: '/admin-api/applet/wrj/examPlace/delete', + params + }) +} diff --git a/src/views/ExamVenue/Room/index.vue b/src/views/ExamVenue/Room/index.vue index 9007b07..f0efd02 100644 --- a/src/views/ExamVenue/Room/index.vue +++ b/src/views/ExamVenue/Room/index.vue @@ -2,7 +2,7 @@
- + 搜 索 @@ -12,27 +12,37 @@ - - - - + + + + - + - + - + - + diff --git a/src/views/JoinUs/Coach/index.vue b/src/views/JoinUs/Coach/index.vue index 8d0ca7f..4d5bb51 100644 --- a/src/views/JoinUs/Coach/index.vue +++ b/src/views/JoinUs/Coach/index.vue @@ -2,10 +2,13 @@
- + - + + + + @@ -29,7 +32,7 @@ diff --git a/src/views/UAVClue/CluePool/index.vue b/src/views/UAVClue/CluePool/index.vue index cdf7cc5..3dd35b1 100644 --- a/src/views/UAVClue/CluePool/index.vue +++ b/src/views/UAVClue/CluePool/index.vue @@ -29,11 +29,12 @@ - - + + - - + + + - + -