123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /**
- * 健康记录添加失败处理方法
- */
- function addHealthRecordFailed(res) {
- if (res && res.msg) {
- dialog({contentType:'tipsbox', skin:'bk-popup' , content:res.msg}).show();
- } else {
- dialog({contentType:'tipsbox', skin:'bk-popup' , content:'添加失败'}).show();
- }
- }
- /**
- * 运动添加成功处理方法
- */
- function addSportSuccess(res) {
- if (res.status == 200) {
- window.history.back();
- } else {
- //非200则为失败
- addHealthRecordFailed(res);
- }
- }
- /**
- * 用药添加成功处理方法
- */
- function addDrugSuccess(res) {
- if (res.status == 200) {
- window.history.back();
- } else {
- //非200则为失败
- addHealthRecordFailed(res);
- }
- }
- /**
- * 饮食添加成功处理方法
- */
- function addDietSuccess(res) {
- if (res.status == 200) {
- //添加成功
- window.history.back();
- } else {
- //非200则为失败
- addHealthRecordFailed(res);
- }
- }
- /////////////////////////////////////////////////////////////////////////////////健康指标历史记录查询///////////////////////////////////////////////////////////////////////////
- /**
- * 健康指标历史记录查询
- * @param {Object} type 健康指标类型(1血糖,2血压,3体重,4腰围)
- * @param {Object} page 当前分页
- * @param {Object} pagesize 分页大小
- */
- /**
- * 健康指标历史记录查询失败处理方法
- */
- function queryListFailed(res) {
- if (res && res.msg) {
- dialog({contentType:'tipsbox', skin:'bk-popup' , content:res.msg}).show();
- } else {
- dialog({contentType:'tipsbox', skin:'bk-popup' , content:'加载失败'}).show();
- }
- }
|