From 1570ad852203869d005689063d145baacfc217ea Mon Sep 17 00:00:00 2001 From: feiliming <275400898@qq.com> Date: Thu, 28 Apr 2022 11:27:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B4=8B=E6=B5=A6=E5=AD=A6=E6=A0=A1=20?= =?UTF-8?q?=E6=88=91=E7=9A=84=E5=B7=A5=E4=BD=9C=E5=8F=B0=20=E5=85=AB?= =?UTF-8?q?=E5=A4=A7=E4=B8=AD=E5=BF=83=20=E5=AD=A6=E7=94=9F=E7=BC=BA?= =?UTF-8?q?=E5=8B=A4=E7=AE=A1=E7=90=86=E6=A8=A1=E5=9D=97=E5=89=8D=E7=AB=AF?= =?UTF-8?q?=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../servicePlatform/interConfig.js | 55 ++++ .../moralEducation/heartActivityList.vue | 299 ++++++++++++++++++ .../pages/adminCenter/systemConfig.js | 8 + 3 files changed, 362 insertions(+) create mode 100644 src/views/screenAdaptation/pages/adminCenter/servicePlatform/moralEducation/heartActivityList.vue diff --git a/src/views/screenAdaptation/pages/adminCenter/servicePlatform/interConfig.js b/src/views/screenAdaptation/pages/adminCenter/servicePlatform/interConfig.js index bf34a4e..39429ce 100644 --- a/src/views/screenAdaptation/pages/adminCenter/servicePlatform/interConfig.js +++ b/src/views/screenAdaptation/pages/adminCenter/servicePlatform/interConfig.js @@ -981,5 +981,60 @@ const InterfaceConfig = { method: 'post', isTestLogin: true, }, + + + /* + * 获取心育活动课程列表-分页 + *"bureau_id":"必填 int 机构id" + "course_name":"非必填 string 课程名称(模糊查询)" + "course_date":"非必填 string 日期(查询条件)" + "course_place":"非必填 string 课程地点(模糊查询)" + "course_speaker":"非必填 string 主讲人(查询条件)" + "attendees":"非必填 string 参加人员(模糊查询)" + "page_number":"非必填 number 【当前页码】" + "page_size":"非必填 number 【每页条数】" + * */ + "getPsychologyList":{ + url: 'intellioa/center/psychology/list', + method: 'get', + isTestLogin: true, + }, + /* + * 查看心育活动课程信息 + "course_id": "必填 number【课程信息id】" + * */ + "getPsychologyInfo":{ + url: 'intellioa/center/psychology/view', + method: 'get', + isTestLogin: true, + }, + /* + * 新增、编辑保存心育活动课程信息 + "course_id":"例会信息id,number,非必填;填写代表编辑" + "course_name":"课程名称,string(100),必填" + "course_date":"课程日期,string,必填" + "course_speaker":"主讲人,string,必填" + "course_place":"课程地址,string,必填" + "attendees":"参见人员,string(1000),必填" + "attachment_json":"非必填 附件对象 对象属性,需要JSON.stringify转成json字符串再传" + "person_id":"必填 int 操作人ID" + "identity_id":"必填 int 操作人身份ID" + "bureau_id":"必填 int 机构ID" + * */ + "savePsychology":{ + url: 'intellioa/center/psychology/save', + method: 'post', + isTestLogin: true, + }, + /* + * 删除心育活动课程信息 + "course_ids":"课程信息ids,string,必填,批量删除时以英文逗号分隔" + "bureau_id":"必填 int 机构ID" + * */ + "deletePsychology":{ + url: 'intellioa/center/psychology/delete', + method: 'post', + isTestLogin: true, + }, }; export default InterfaceConfig; diff --git a/src/views/screenAdaptation/pages/adminCenter/servicePlatform/moralEducation/heartActivityList.vue b/src/views/screenAdaptation/pages/adminCenter/servicePlatform/moralEducation/heartActivityList.vue new file mode 100644 index 0000000..93eb5e7 --- /dev/null +++ b/src/views/screenAdaptation/pages/adminCenter/servicePlatform/moralEducation/heartActivityList.vue @@ -0,0 +1,299 @@ + + + diff --git a/src/views/screenAdaptation/pages/adminCenter/systemConfig.js b/src/views/screenAdaptation/pages/adminCenter/systemConfig.js index 019279b..865215e 100644 --- a/src/views/screenAdaptation/pages/adminCenter/systemConfig.js +++ b/src/views/screenAdaptation/pages/adminCenter/systemConfig.js @@ -307,6 +307,14 @@ export const systemCenterConfig = [ component:() => import("./servicePlatform/moralEducation/studentAbsenceList.vue"), props:true, }, + { + id:"moralEducation-2-5", + title:"心育活动管理", + path:'/workBench/servicePlatform/moralEducationHeartActivity/:id/:name/:menuId', + name:'moralEducationHeartActivity', + component:() => import("./servicePlatform/moralEducation/heartActivityList.vue"), + props:true, + }, ] }, ]