1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /**
- * 健康记录添加失败处理方法
- */
- function addHealthRecordFailed(res) {
- if (res && res.msg) {
- dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
- } else {
- dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'添加失败'}).show();
- }
- }
- /**
- * 运动添加成功处理方法
- */
- function addSportSuccess(res) {
- if (res.status == 200) {
- window.location.href='health-record.html?charType=5';
- } else {
- //非200则为失败
- addHealthRecordFailed(res);
- }
- }
- /**
- * 用药添加成功处理方法
- */
- function addDrugSuccess(res) {
- if (res.status == 200) {
- dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'保存成功'}).show();
- setTimeout(function () {
- window.location.href='health-record.html?charType=6';
- },2000);
- } 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 queryListFailedAdd(res) {
- if (res && res.msg) {
- dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
- } else {
- dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'加载失败'}).show();
- }
- }
- var $member = $("#member");
- var userAgent = JSON.parse(window.localStorage.getItem(agentName));
- //获取家庭成员
- Promise.all([familyAllMembers()]).then(function(data){
- var arr_code=_.pluck(data[0], 'code');
- var arr_name=_.pluck(data[0], 'name');
- //关联被代理人
- if(userAgent.represented){
- var one = _.find(data[0],function(item){return item.code == userAgent.represented;})
- $member.attr('data-code',one.code);
- $member.val(one.name);
- }else{
- $member.attr('data-code',arr_code[0]);
- $member.val(arr_name[0]);
- }
- })
|