diff --git a/src/api/countersign/countersign.js b/src/api/countersign/countersign.js new file mode 100644 index 00000000..7d95530a --- /dev/null +++ b/src/api/countersign/countersign.js @@ -0,0 +1,48 @@ +import request from '@/utils/request' + +//会签配置管理列表信息 +export function getConfigList(query) { + return request({ + url: '/material/sign_config/list', + method: 'get', + params: query, + }) +} + +// 会签配置管理--新增 +export function addConfig(data) { + return request({ + url: '/material/sign_config/addConfig', + method: 'post', + data: data, + }) +} + + +//会签配置管理--详细信息 +export function getConfigDetail(id) { + return request({ + url: '/material/sign_config/'+ id, + method: 'get', + }) +} + +// 会签配置管理--修改 +export function editConfig(data) { + return request({ + url: '/material/sign_config/editConfig', + method: 'post', + data: data, + }) +} + + +// 会签配置管理--删除 +export function delConfig(id) { + return request({ + url: '/material/sign_config/delConfig/' + id, + method: 'post', + }) +} + + diff --git a/src/views/material/countersign/config/index.vue b/src/views/material/countersign/config/index.vue new file mode 100644 index 00000000..8c37c1c6 --- /dev/null +++ b/src/views/material/countersign/config/index.vue @@ -0,0 +1,382 @@ + + + + \ No newline at end of file