From 203fdcab5e836681d9536797b618ea9597e39dd3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=97=AB=E6=99=93=E8=8C=B9?= <1935832701@qq.com>
Date: Mon, 13 Feb 2023 10:41:29 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B5=B7=E6=8A=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/system/poser.js | 66 +++
src/views/system/poser/index.vue | 883 +++++++++++++++++++++++++++++++
2 files changed, 949 insertions(+)
create mode 100644 src/api/system/poser.js
create mode 100644 src/views/system/poser/index.vue
diff --git a/src/api/system/poser.js b/src/api/system/poser.js
new file mode 100644
index 0000000..ebb1f90
--- /dev/null
+++ b/src/api/system/poser.js
@@ -0,0 +1,66 @@
+import request from '@/utils/request'
+
+// 查询泉医到家系统海报模块信息(包含咨询简介信息)列表
+export function listPoser(query) {
+ return request({
+ url: '/system/poser/list',
+ method: 'get',
+ params: query
+ })
+}
+//取消
+export function updatePicture(data) {
+ return request({
+ url: '/system/patientArchives/updatePicture',
+ method: 'post',
+ data: data
+ })
+}
+// 查询护理机构和护理项目分类信息列表
+export function listInfo(query) {
+ return request({
+ url: '/classifyItem/info/list',
+ method: 'get',
+ params: query
+ })
+}
+// 查询泉医到家系统海报模块信息(包含咨询简介信息)详细
+export function getPoser(id) {
+ return request({
+ url: '/system/poser/' + id,
+ method: 'get'
+ })
+}
+
+// 新增泉医到家系统海报模块信息(包含咨询简介信息)
+export function addPoser(data) {
+ return request({
+ url: 'system/poser/add',
+ method: 'post',
+ data: data
+ })
+}
+export function getListByUser(query) {
+ return request({
+ url: '/system/station/list',
+ method: 'GET',
+ params: query
+ })
+}
+
+// 修改泉医到家系统海报模块信息(包含咨询简介信息)
+export function updatePoser(data) {
+ return request({
+ url: 'system/poser/edit',
+ method: 'post',
+ data: data
+ })
+}
+
+// 删除泉医到家系统海报模块信息(包含咨询简介信息)
+export function delPoser(id) {
+ return request({
+ url: '/system/poser/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/views/system/poser/index.vue b/src/views/system/poser/index.vue
new file mode 100644
index 0000000..467d787
--- /dev/null
+++ b/src/views/system/poser/index.vue
@@ -0,0 +1,883 @@
+
+
+
+
+ {{
+ queryParams.nurseStationName
+ }}
+
+
+
+
+ {{
+ queryParams.nurseItemName
+ }}
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file