diff --git a/src/api/system/question.js b/src/api/system/question.js new file mode 100644 index 0000000..55ffc30 --- /dev/null +++ b/src/api/system/question.js @@ -0,0 +1,54 @@ +import request from '@/utils/request' + +// 查询问卷基本信息列表 +export function listQuestion(query) { + return request({ + url: '/system/question/list', + method: 'get', + params: query + }) +} + +// 查询问卷基本信息详细 +export function getQuestion(id) { + return request({ + url: '/system/question/' + id, + method: 'get' + }) +} + +// 新增问卷基本信息 +export function addQuestion(data) { + return request({ + url: '/system/question', + method: 'post', + data: data + }) +} + +// 修改问卷基本信息 +export function updateQuestion(data) { + return request({ + url: '/system/question', + method: 'put', + data: data + }) +} + +// 删除问卷基本信息 +export function delQuestion(id) { + return request({ + url: '/system/question/' + id, + method: 'delete' + }) +} + + +//科室接口 +export function getDepartmentList(query) { + return request({ + url: 'system/department/getDepartmentList', + method: 'get', + params: query + }) +} diff --git a/src/assets/system/dafen.png b/src/assets/system/dafen.png new file mode 100644 index 0000000..7819f77 Binary files /dev/null and b/src/assets/system/dafen.png differ diff --git a/src/assets/system/dafens.png b/src/assets/system/dafens.png new file mode 100644 index 0000000..a5a46b3 Binary files /dev/null and b/src/assets/system/dafens.png differ diff --git a/src/assets/system/danxuan.png b/src/assets/system/danxuan.png new file mode 100644 index 0000000..e9d1355 Binary files /dev/null and b/src/assets/system/danxuan.png differ diff --git a/src/assets/system/danxuans.png b/src/assets/system/danxuans.png new file mode 100644 index 0000000..33cccbd Binary files /dev/null and b/src/assets/system/danxuans.png differ diff --git a/src/assets/system/duoxuan.png b/src/assets/system/duoxuan.png new file mode 100644 index 0000000..08671e0 Binary files /dev/null and b/src/assets/system/duoxuan.png differ diff --git a/src/assets/system/duoxuans.png b/src/assets/system/duoxuans.png new file mode 100644 index 0000000..7ef0dbc Binary files /dev/null and b/src/assets/system/duoxuans.png differ diff --git a/src/assets/system/gb.png b/src/assets/system/gb.png new file mode 100644 index 0000000..711581e Binary files /dev/null and b/src/assets/system/gb.png differ diff --git a/src/assets/system/riqi.png b/src/assets/system/riqi.png new file mode 100644 index 0000000..114ca0f Binary files /dev/null and b/src/assets/system/riqi.png differ diff --git a/src/assets/system/shijian.png b/src/assets/system/shijian.png new file mode 100644 index 0000000..dd8a5bc Binary files /dev/null and b/src/assets/system/shijian.png differ diff --git a/src/assets/system/tiankong.png b/src/assets/system/tiankong.png new file mode 100644 index 0000000..fa17591 Binary files /dev/null and b/src/assets/system/tiankong.png differ diff --git a/src/assets/system/tiankongs.png b/src/assets/system/tiankongs.png new file mode 100644 index 0000000..8684728 Binary files /dev/null and b/src/assets/system/tiankongs.png differ diff --git a/src/assets/system/yidong.png b/src/assets/system/yidong.png new file mode 100644 index 0000000..272a23b Binary files /dev/null and b/src/assets/system/yidong.png differ diff --git a/src/views/manage/components/healthEducation.vue b/src/views/manage/components/healthEducation.vue index 4994a19..c9e8d6e 100644 --- a/src/views/manage/components/healthEducation.vue +++ b/src/views/manage/components/healthEducation.vue @@ -45,7 +45,7 @@ import { getList } from '@/api/manage/healthEducation' export default { - name: "visitRecords", + name: "healthEducation", data() { return { pickerOptions: { diff --git a/src/views/manage/components/indicatorMonitoring.vue b/src/views/manage/components/indicatorMonitoring.vue index ef45ab5..940c63b 100644 --- a/src/views/manage/components/indicatorMonitoring.vue +++ b/src/views/manage/components/indicatorMonitoring.vue @@ -17,7 +17,7 @@ import * as echarts from 'echarts'; export default { - name: "visitRecords", + name: "indicatorMonitoring", data() { return { pickerOptions: { diff --git a/src/views/manage/components/signingRecords.vue b/src/views/manage/components/signingRecords.vue index 5d2748c..4f718cb 100644 --- a/src/views/manage/components/signingRecords.vue +++ b/src/views/manage/components/signingRecords.vue @@ -40,7 +40,7 @@ + \ No newline at end of file diff --git a/src/views/system/question/index.vue b/src/views/system/question/index.vue new file mode 100644 index 0000000..2f4a858 --- /dev/null +++ b/src/views/system/question/index.vue @@ -0,0 +1,178 @@ + + +