From dac654a66861e9a33257aada97bcd43a4e1fa05d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=90=8C=E6=B5=B7?= <963808678@qq.com> Date: Tue, 25 Apr 2023 16:13:28 +0800 Subject: [PATCH] 4/25 --- .../modular/main/CommondbCodeIssueTypeList.js | 33 ++ .../CommondbCodeIssueTypeList/addForm.vue | 133 +++++++ .../CommondbCodeIssueTypeList/editForm.vue | 143 ++++++++ .../main/CommondbCodeIssueTypeList/index.vue | 326 ++++++++++++++++++ 4 files changed, 635 insertions(+) create mode 100644 src/api/modular/main/CommondbCodeIssueTypeList.js create mode 100644 src/views/main/CommondbCodeIssueTypeList/addForm.vue create mode 100644 src/views/main/CommondbCodeIssueTypeList/editForm.vue create mode 100644 src/views/main/CommondbCodeIssueTypeList/index.vue diff --git a/src/api/modular/main/CommondbCodeIssueTypeList.js b/src/api/modular/main/CommondbCodeIssueTypeList.js new file mode 100644 index 0000000..1046911 --- /dev/null +++ b/src/api/modular/main/CommondbCodeIssueTypeList.js @@ -0,0 +1,33 @@ +import { axios } from '@/utils/request' + +/** + * 获取签单方式信息 + * + * @author Myshipping + */ +export function CommondbList(parameter) { + return axios({ + url: '/commondb/mappingIssueTypelist', + method: 'get', + params: parameter + }) +} +export function CommondbPageList(parameter) { + return axios({ + url: '/commondb/mappingIssueTypelist', + method: 'get', + params: parameter + }) +} +/** + * 新增签单方式 + * + * @author Myshipping + */ +export function CommondbAdd(parameter) { + return axios({ + url: '/commondb/addmappingIssueType', + method: 'post', + data: parameter + }) +} diff --git a/src/views/main/CommondbCodeIssueTypeList/addForm.vue b/src/views/main/CommondbCodeIssueTypeList/addForm.vue new file mode 100644 index 0000000..506ce19 --- /dev/null +++ b/src/views/main/CommondbCodeIssueTypeList/addForm.vue @@ -0,0 +1,133 @@ + + + diff --git a/src/views/main/CommondbCodeIssueTypeList/editForm.vue b/src/views/main/CommondbCodeIssueTypeList/editForm.vue new file mode 100644 index 0000000..18fe561 --- /dev/null +++ b/src/views/main/CommondbCodeIssueTypeList/editForm.vue @@ -0,0 +1,143 @@ + + + diff --git a/src/views/main/CommondbCodeIssueTypeList/index.vue b/src/views/main/CommondbCodeIssueTypeList/index.vue new file mode 100644 index 0000000..fb6626c --- /dev/null +++ b/src/views/main/CommondbCodeIssueTypeList/index.vue @@ -0,0 +1,326 @@ + + +