diff --git a/src/api/regional/dict/hospital.js b/src/api/regional/dict/hospital.js new file mode 100644 index 0000000..7c0be19 --- /dev/null +++ b/src/api/regional/dict/hospital.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询岗位列表 +export function listhospital(query) { + return request({ + url: '/transitdict/hospital/list', + method: 'get', + params: query + }) +} + +// 查询岗位详细 +export function gethospital(hospitalId) { + return request({ + url: '/transitdict/hospital/' + hospitalId, + method: 'get' + }) +} + +// 新增岗位 +export function addhospital(data) { + return request({ + url: '/transitdict/hospital', + method: 'post', + data: data + }) +} + +// 修改岗位 +export function updatehospital(data) { + return request({ + url: '/transitdict/hospital', + method: 'put', + data: data + }) +} + +// 删除岗位 +export function delhospital(hospitalId) { + return request({ + url: '/transitdict/hospital/' + hospitalId, + method: 'delete' + }) +} diff --git a/src/views/regional/dict/container/index.vue b/src/views/regional/dict/container/index.vue new file mode 100644 index 0000000..89b1f33 --- /dev/null +++ b/src/views/regional/dict/container/index.vue @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/views/regional/dict/hospital/index.vue b/src/views/regional/dict/hospital/index.vue new file mode 100644 index 0000000..415ebf6 --- /dev/null +++ b/src/views/regional/dict/hospital/index.vue @@ -0,0 +1,272 @@ + + + diff --git a/src/views/regional/dict/item/index.vue b/src/views/regional/dict/item/index.vue new file mode 100644 index 0000000..89b1f33 --- /dev/null +++ b/src/views/regional/dict/item/index.vue @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/views/regional/dict/itemvs/index.vue b/src/views/regional/dict/itemvs/index.vue new file mode 100644 index 0000000..89b1f33 --- /dev/null +++ b/src/views/regional/dict/itemvs/index.vue @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/views/regional/dict/sampletype/index.vue b/src/views/regional/dict/sampletype/index.vue new file mode 100644 index 0000000..89b1f33 --- /dev/null +++ b/src/views/regional/dict/sampletype/index.vue @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file