init
This commit is contained in:
2025-06-27 17:42:38 +08:00
commit bd6402478b
5317 changed files with 785994 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
<template>
<div class="app">
<router-view />
</div>
</template>
<style scoped lang="less">
.app {
width: 100%;
height: 100%;
}
div {
text-align: left;
}
</style>
<style lang="less">
//@font-face {
// font-family: HarmonyOS_Sans_SC_Regular;
// src: url('/@/assets/font/HarmonyOS_Sans_SC_Regular.ttf');
//}
//@font-face {
// font-family: HarmonyOS_Sans_SC_Bold;
// src: url('/@/assets/font/HarmonyOS_Sans_SC_Bold.ttf');
//}
//@font-face {
// font-family: HarmonyOS_Sans_SC_Light;
// src: url('/@/assets/font/HarmonyOS_Sans_SC_Light.ttf');
//}
//@font-face {
// font-family: HarmonyOS_Sans_SC_Medium;
// src: url('/@/assets/font/HarmonyOS_Sans_SC_Medium.ttf');
//}
//
.f-bold {
//font-family: 'HarmonyOS_Sans_SC_Bold', serif;
font-family: auto !important;
}
.f-medium {
//font-family: 'HarmonyOS_Sans_SC_Medium', serif;
font-family: auto !important;
}
.f-s-c {
//font-family: 'HarmonyOS_Sans_SC_Regular', serif;
font-family: auto !important;
}
</style>
+5
View File
@@ -0,0 +1,5 @@
// 路径前缀
export const apiPrefix = {
healthAnswer: 'health-answer', //健康答题
healthFoodExercise: 'health-food-exercise', // 运动统计
};
+106
View File
@@ -0,0 +1,106 @@
import { get, post } from '/@/views/mobile/api/api';
// 登录
export const login = (params) => post('login', params);
// 获取个人信息
export const getUserBaseInfo = (params) => get('health-intervene/rest/health-survey/assess/getUserBaseInfo', params);
// 获取问卷
export const questionnaire = (params) => get('health-intervene/rest/health-survey/assess/questionnaire2', params);
// 提交问卷
export const psychologicalEvaluationSubmit = (params) => post('health-intervene/rest/health-survey/assess/psychological-evaluation/submit', params);
// 获取评估结果
export const psychologicalEvaluationGetConclusion = (params) => get('health-intervene/rest/health-survey/assess/psychological-evaluation/getConclusion', params);
// 提交趣味答题
export const funResultSubmit = (params) => post('health-intervene/rest/health-survey/assess/fun-result/submit', params);
// 获取历史测评
export const getHistory = (params) => get('health-intervene/rest/health-survey/assess/psychological-evaluation/getList', params);
// 是否打开档案
export const getBaseInfoStatus = (params) => get('health-intervene/rest/health-eating/analysis/getBaseInfoStatus', params);
// 健康自助管理
export const healthManageHome = (params) => get('health-intervene/rest/health-eating/analysis/healthManageHome', params);
// 糖尿病首页
export const disbetManageHome = (params) => get('health-intervene/rest/health-diabetes/analysis/healthManageHome', params);
// 糖尿病干预列表
export const disbetProposalList = (params) => get('health-intervene/rest/health-diabetes/analysis/getSuggestionsDiabetesIntervention', params);
// 查询健康检测信息列表
export const list = (params) => get('health-intervene/rest/health-eating/input/checkInfo/list/byUserId', params);
// 糖尿病检测历史数据
export const listDiabetes = (params) => get('health-intervene/rest/health-diabetes/input/checkInfoDiabetes/list/byUserId', params);
// 新增编辑健康检测信息
export const addOrEdit = (params) => post('health-intervene/rest/health-eating/input/checkInfo/addOrEdit', params);
// 新增编辑糖尿病
export const addOrEditDiabetes = (params) => post('health-intervene/rest/health-diabetes/input/checkInfoDiabetes/addOrEdit', params);
// 新增编辑健康检测信息
export const checkInfo = (params) => get('health-intervene/rest/health-eating/input/checkInfo', params);
// 糖尿病检测历史回填数据
export const checkInfoDiabetes = (params) => get('health-intervene/rest/health-diabetes/input/checkInfoDiabetes', params);
// 糖尿病回填题
export const diabetesInfo = (params) => get('health-intervene/rest/health-diabetes/input/getDietaryExerciseInfo', params);
// 吃动平衡回填题
export const eatingInfo = (params) => get('health-intervene/rest/health-eating/input/getDietaryExerciseInfo', params);
// 监测报告 日报
export const monitoringReportsOneDay = (params) => get('health-intervene/rest/health-eating/analysis/monitoringReportsOneDay', params);
// 监测报告 周报
export const monitoringReportsOneWeek = (params) => get('health-intervene/rest/health-eating/analysis/monitoringReportsOneWeek', params);
// 膳食结构调整建议
export const getSuggestionsDietaryAdjustment = (params) => get('health-intervene/rest/health-eating/analysis/getSuggestionsDietaryAdjustment', params);
// 吃动平衡建议
export const getSuggestionsOnEating = (params) => get('health-intervene/rest/health-eating/analysis/getSuggestionsOnEating', params);
// 获取员工基本信息档案和高血压所有详细信息
export const getAllInfoByUserId = (params) => get('health-intervene/rest/health-eating/input/getAllInfo/byUserId', params);
// 获取员工基本信息档案和高血压所有详细信息
export const addOrEditByUser = (params) => post('health-intervene/rest/health-eating/input/addOrEdit', params);
// 获取员工基本信息档案和高血压所有详细信息
export const getUserInfo = (params) => post('health-intervene/webjars/health-common/info/userInfo', params);
// 规律起居 —— 岗位提交
export const postStation_living = (params) => post('health-intervene/health-common/user/addOrEdit', params);
// 规律起居 —— 岗位回显
export const getStation_living = (params) => get('health-intervene/health-common/user', params);
//规律起居 —— 上次监测时间
export const times_living = (params) => get('health-intervene/rest/health-rulelife/assess/home', params);
// 规律起居 —— 历史列表
export const history_living = (params) => get('health-intervene/rest/health-rulelife/assess/list', params);
//规律起居 ——周报回填
export const historyById_living = (params) => get('health-intervene/rest/health-rulelife/assess/history', params);
//规律起居 —— 起居计划
export const plan_living = (params) => post('health-intervene/rest/health-rulelife/plan/addOrEdit', params);
//规律起居 —— 起居计划获取
export const getPlan_living = (params) => get('health-intervene/rest/health-rulelife/plan', params);
//规律起居 —— 周报
export const weekly_living = (params) => post('health-intervene/rest/health-rulelife/assess/add', params);
//规律起居 —— 报告
export const report_living = (params) => get('health-intervene/rest/health-rulelife/assess/report', params);
Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1005 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 626 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 776 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 653 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 379 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 335 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 942 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 799 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 864 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Some files were not shown because too many files have changed in this diff Show More