From 574601fdca77c02a92788322a6c7fc7aaba57cd8 Mon Sep 17 00:00:00 2001 From: paidaxing444 <12qwaszx> Date: Thu, 28 May 2020 18:12:06 +0800 Subject: [PATCH] =?UTF-8?q?20200528-zlp-1=201=E5=B7=B2=E5=AE=8C=E5=96=84?= =?UTF-8?q?=E5=9F=B9=E8=AE=AD=E7=AE=A1=E7=90=86=E5=8A=9F=E8=83=BD=202?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=A4=9A=E7=BA=A7=E5=AD=97=E5=85=B8=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/api/system/moedata.js | 44 +++ ruoyi-ui/src/views/system/moedata/index.vue | 370 ++++++++++++++++++++ 2 files changed, 414 insertions(+) create mode 100644 ruoyi-ui/src/api/system/moedata.js create mode 100644 ruoyi-ui/src/views/system/moedata/index.vue diff --git a/ruoyi-ui/src/api/system/moedata.js b/ruoyi-ui/src/api/system/moedata.js new file mode 100644 index 000000000..1732d9782 --- /dev/null +++ b/ruoyi-ui/src/api/system/moedata.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询多级字典管理列表 +export function listMoedata(query) { + return request({ + url: '/system/moedata/list', + method: 'get', + params: query + }) +} + +// 查询多级字典管理详细 +export function getMoedata(id) { + return request({ + url: '/system/moedata/' + id, + method: 'get' + }) +} + +// 新增多级字典管理 +export function addMoedata(data) { + return request({ + url: '/system/moedata', + method: 'post', + data: data + }) +} + +// 修改多级字典管理 +export function updateMoedata(data) { + return request({ + url: '/system/moedata', + method: 'put', + data: data + }) +} + +// 删除多级字典管理 +export function delMoedata(id) { + return request({ + url: '/system/moedata/' + id, + method: 'delete' + }) +} \ No newline at end of file diff --git a/ruoyi-ui/src/views/system/moedata/index.vue b/ruoyi-ui/src/views/system/moedata/index.vue new file mode 100644 index 000000000..0c46686a7 --- /dev/null +++ b/ruoyi-ui/src/views/system/moedata/index.vue @@ -0,0 +1,370 @@ + + + \ No newline at end of file