update
init
@@ -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>
|
||||
@@ -0,0 +1,5 @@
|
||||
// 路径前缀
|
||||
export const apiPrefix = {
|
||||
healthAnswer: 'health-answer', //健康答题
|
||||
healthFoodExercise: 'health-food-exercise', // 运动统计
|
||||
};
|
||||
@@ -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);
|
||||
|
After Width: | Height: | Size: 119 KiB |
|
After Width: | Height: | Size: 1005 B |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 65 KiB |
|
After Width: | Height: | Size: 65 KiB |
|
After Width: | Height: | Size: 100 KiB |
|
After Width: | Height: | Size: 132 KiB |
|
After Width: | Height: | Size: 168 KiB |
|
After Width: | Height: | Size: 134 KiB |
|
After Width: | Height: | Size: 173 KiB |
|
After Width: | Height: | Size: 130 KiB |
|
After Width: | Height: | Size: 132 KiB |
|
After Width: | Height: | Size: 2.2 MiB |
|
After Width: | Height: | Size: 284 KiB |
|
After Width: | Height: | Size: 626 B |
|
After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 208 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 213 KiB |
|
After Width: | Height: | Size: 776 B |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 5.6 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 150 KiB |
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 67 KiB |
|
After Width: | Height: | Size: 67 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 7.0 KiB |
|
After Width: | Height: | Size: 653 KiB |
|
After Width: | Height: | Size: 645 KiB |
|
After Width: | Height: | Size: 379 KiB |
|
After Width: | Height: | Size: 395 KiB |
|
After Width: | Height: | Size: 361 KiB |
|
After Width: | Height: | Size: 336 KiB |
|
After Width: | Height: | Size: 335 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 942 B |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 157 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 799 B |
|
After Width: | Height: | Size: 943 B |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 864 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 90 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 244 KiB |
|
After Width: | Height: | Size: 146 KiB |
|
After Width: | Height: | Size: 179 B |
|
After Width: | Height: | Size: 393 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 7.8 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 1.1 MiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 119 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 2.5 KiB |