From a3670813bcc48c5b4315cb1d52e5fbf4109ef2fa Mon Sep 17 00:00:00 2001 From: "0.0" <1092404103.qq.com> Date: Mon, 16 May 2022 18:31:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8B=E5=8D=95=E6=97=B6=E9=97=B4,=E6=93=8D?= =?UTF-8?q?=E4=BD=9C=E6=89=8B=E5=86=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/wjnft/manual.js | 44 +++++ src/views/wjnft/manual/index.vue | 329 +++++++++++++++++++++++++++++++ 2 files changed, 373 insertions(+) create mode 100644 src/api/wjnft/manual.js create mode 100644 src/views/wjnft/manual/index.vue diff --git a/src/api/wjnft/manual.js b/src/api/wjnft/manual.js new file mode 100644 index 0000000..1fbf23c --- /dev/null +++ b/src/api/wjnft/manual.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询操作手册列表 +export function listManual(query) { + return request({ + url: '/wjnft/manual/list', + method: 'get', + params: query + }) +} + +// 查询操作手册详细 +export function getManual(id) { + return request({ + url: '/wjnft/manual/' + id, + method: 'get' + }) +} + +// 新增操作手册 +export function addManual(data) { + return request({ + url: '/wjnft/manual', + method: 'post', + data: data + }) +} + +// 修改操作手册 +export function updateManual(data) { + return request({ + url: '/wjnft/manual', + method: 'put', + data: data + }) +} + +// 删除操作手册 +export function delManual(id) { + return request({ + url: '/wjnft/manual/' + id, + method: 'delete' + }) +} diff --git a/src/views/wjnft/manual/index.vue b/src/views/wjnft/manual/index.vue new file mode 100644 index 0000000..2594370 --- /dev/null +++ b/src/views/wjnft/manual/index.vue @@ -0,0 +1,329 @@ + + +