From 16e525655d5419cd75c33f4725c842f710379943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=91=E5=B9=B4=E6=A2=A6=E4=B8=8E=E7=A0=96?= <2847127106@qq.com> Date: Fri, 23 Aug 2024 08:32:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=95=B0=E6=8D=AE=E9=9B=86?= =?UTF-8?q?=E5=B8=82=E6=8E=A5=E5=8F=A3=E7=9B=B8=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/market/apitype.js | 44 ++++ src/views/market/apitype/index.vue | 344 +++++++++++++++++++++++++++++ 2 files changed, 388 insertions(+) create mode 100644 src/api/market/apitype.js create mode 100644 src/views/market/apitype/index.vue diff --git a/src/api/market/apitype.js b/src/api/market/apitype.js new file mode 100644 index 0000000..7f47004 --- /dev/null +++ b/src/api/market/apitype.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询接口列表 +export function listApitype(query) { + return request({ + url: '/market/apitype/list', + method: 'get', + params: query + }) +} + +// 查询接口详细 +export function getApitype(sysId) { + return request({ + url: '/market/apitype/' + sysId, + method: 'get' + }) +} + +// 新增接口 +export function addApitype(data) { + return request({ + url: '/market/apitype', + method: 'post', + data: data + }) +} + +// 修改接口 +export function updateApitype(data) { + return request({ + url: '/market/apitype', + method: 'put', + data: data + }) +} + +// 删除接口 +export function delApitype(sysId) { + return request({ + url: '/market/apitype/' + sysId, + method: 'delete' + }) +} diff --git a/src/views/market/apitype/index.vue b/src/views/market/apitype/index.vue new file mode 100644 index 0000000..a19a1e3 --- /dev/null +++ b/src/views/market/apitype/index.vue @@ -0,0 +1,344 @@ + + + + + + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + 新增 + + + 修改 + + + 删除 + + + 导出 + + + + + + + + + + {{customer.sysIntro}} + + + + + + + + + + + + + 产品编号 + {{customer.sysSerial}} + + + + 元/次 + {{customer.sysNumber}} + + + + 备注 + {{customer.sysBeihzu}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +