123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- // 页面标识,未登录时将重定向到登录页面,根据这个pagetype来保证登录后的跳转到该页面
- var pagetype = -1;
- var Request = GetRequest();
- var d = dialog({contentType:'load', skin:'bk-popup'});
- var userAgent = window.localStorage.getItem(agentName);
- var toUser = Request["toUser"];
- var toName = decodeURIComponent(Request["toName"]);
- var openid = Request["openid"];
- var represented = Request["represented"];
- uid = "",
- code = Request["code"],
- reqPromise = function(url,data) {
- return new Promise(function(resolve, reject) {
- sendPost(url, data, "json", "post",
- function queryFailed (res) {
- dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'加载失败'}).show();
- // TODO 开启示例数据
- // resolve({});
- }
- , function success(res) {
- resolve(res);
- });
- });
- },
- // 对数据按照签约类型进行分组,并添加额外信息
- handleData = function(list) {
- if(!list) return [];
- // 签约状态对应的文本
- var signStatus = ["审核中","已签约","待解约"],
- // 签约状态应用的样式类列表
- signStyleClass = ["to-signed","be-signed","to-surrender"],
- groups = _.chain(list).map(function(o) {
- o.signStatusText = signStatus[o.signStatus] || "";
- o.signStyleClass = signStyleClass[o.signStatus] || "";
- o.dateText = (function() {
- switch(o.signStatus) {
- case 0: return "申请时间:"+o.sqDate
- case 1: return "时效:"+o.qyDate+' ~ '+o.endDate
- case 2: return "提交时间:"+o.qyDate
- }
- })();
- return o;
- }).groupBy(function(o) {
- return o.signType;
- }).value();
-
- return groups;
- },
- // 更新签约Card列表视图
- updateCardView = function($card,data) {
- if(!data.list.length) {
- $card.hide();
- return ;
- } else {
- $card.show();
- }
- var html = template("doctor_li_tmpl", data);
- $('.signing-docotors',$card).html(html);
- $('.date-text',$card).text(data.list[0].dateText);
- $('.status-text',$card).text(data.list[0].signStatusText);
- $('.status',$card).addClass(data.list[0].signStyleClass);
- },
- getReqPromises = function() {
- return Promise.all(_.map([{url: "weixin/getOpenidByCode",data:{code:code}},
- {url:"patient/family_contract/getSignMessage",data:{patientCode:uid}}],
- function(param){
- return reqPromise(param.url,param.data);
- }));
- },
- wxInit= function(){
- var params = {};
- params.pageUrl = window.location.href;
- $.ajax(server + "weixin/getSign", {
- data: params,
- dataType: "json",
- type: "post",
- success: function(res) {
- if(res.status == 200) {
- var t = res.data.timestamp;
- var noncestr = res.data.noncestr;
- var signature = res.data.signature;
- wx.config({
- //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
- appId: appId, // 必填,公众号的唯一标识
- timestamp: t, // 必填,生成签名的时间戳
- nonceStr: noncestr, // 必填,生成签名的随机串
- signature: signature, // 必填,签名,见附录1
- jsApiList: [
- 'closeWindow'
- ] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
- });
- }
- }
- });
- }
- $(function(){
- wxInit();
- if(!userAgent) {
- window.location.href = server + "wx/html/home/html/zhmm-login.html?openid=" + openid+"&type="+pagetype;
- return false;
- }else{
- queryInit();
- }
- })
- function queryInit(){
- new Promise(function(resolve, reject) {
- localStorage.setItem("toUser",toUser);
- var newUaObj = JSON.parse(window.localStorage.getItem(agentName))
- //判断关系
- function hasFamilyRelation(a,b){
- return new Promise(function(resolve, reject) {
- var data={
- patient:a,
- familyMember:b
- }
- sendPost("patient/family/is_authorize", data, "json", "get", function(res){
- dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求家庭成员关系失败'}).show();
- }, function(res){
- if(res.status == 200) {
- window.localStorage.setItem('nowPatientName',res.data.name);
- resolve(res)
- }else if(res.status == 100) {
- dialog({
- content:'对不起,'+res.data.name+'未授权给您,如需查看,请切换'+res.data.name+'账号登录',
- okValue:'切换账号',
- ok: function() {
- window.localStorage.setItem(pageName, JSON.stringify({pageurl: location.href}))
- window.location.href = "../../grzx/html/change-login.html?type=0&openid="+ Request["openid"];
- },
- cancelValue: '我不看了',
- cancel: function () {
- wx.closeWindow();
- }
- }).showModal();
- }else{
- relogin();
- }
-
- })
- })
- }
- //重新登录操作
- function relogin(){
- dialog({
- content:'对不起,该消息是发给'+toName+',如需查看,请切换'+toName+'账号登录',
- okValue:'切换账号',
- ok: function() {
- window.localStorage.setItem(pageName, JSON.stringify({pageurl: location.href}))
- window.location.href = "../../grzx/html/change-login.html?type=0&openid="+ Request["openid"];
- },
- cancelValue: '我不看了',
- cancel: function () {
- wx.closeWindow();
- }
- }).showModal();
- }
- //保存信息
- function saveUserInfo(a,b){
- Promise.all([hasFamilyRelation(a,b)]).then(function () {
- newUaObj.represented = represented;
- window.localStorage.setItem(agentName,JSON.stringify(newUaObj));
- userAgent = JSON.parse(window.localStorage.getItem(agentName))
- nextWork();
- })
- }
-
- function initFamilyData () {
- //从微信模板消息进入
- if(represented && userAgent && toUser){
- if(toUser == represented){
- saveUserInfo(represented,newUaObj.uid)
- }else if(toUser != represented && represented == newUaObj.uid){
- //本人代理
- saveUserInfo(represented,newUaObj.uid)
- }else if(toUser != represented && toUser == newUaObj.uid){
- //需要判定关系 200有授权 100家人 1无关系
- saveUserInfo(represented,newUaObj.uid)
- }else{
- //重新登录
- relogin();
- }
- }else{
- userAgent = JSON.parse(window.localStorage.getItem(agentName))
- nextWork();
- }
- }
- initFamilyData();
-
- function nextWork(){
- uid = userAgent.represented?userAgent.represented:userAgent.uid;
- sendPost("patient/family_contract/getSignMessage", {patientCode:uid}, "json", "post",
- function queryFailed () {
- dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'加载失败'}).show();
- },function success(req) {
- // TODO 启用示例数据
- // resolve(req);
- if (req.status == 200) {
- resolve(req);
- } else {
- reject(Error(req.status));
- }
- });
- }
-
- }).then(function(data) {
-
- // TODO 示例数据
- //data = []||{"msg":"获取列表成功!","list":[{"jobName":"健康管理师","code":"D2016080006","disease":1,"level":3,"endDate":"2017-08-04","sex":1,"signStatus":1,"name":"大米健管师2","photo":"","hosptialName":"嘉莲社区医疗服务中心","signType":"1","qyDate":"2016-08-04"},{"jobName":" 全科医师","code":"D2016080005","disease":1,"level":2,"endDate":"2017-08-04","sex":2,"signStatus":1,"name":"大米全科2","photo":"","hosptialName":"嘉莲社区医疗服务中心","signType":"1","qyDate":"2016-08-04"},{"jobName":"专科医师","code":"D2016080004","disease":1,"level":1,"endDate":"2017-08-04","sex":1,"signStatus":1,"name":"大米专科2","photo":"","hosptialName":"厦门大学附属第一医院思明分院","signType":"1","qyDate":"2016-08-04"},{"jobName":" 全科医师","code":"D2016080005","disease":1,"level":2,"endDate":"2017-08-15","sex":2,"signStatus":0,"name":"大米全科2","photo":"","hosptialName":"嘉莲社区医疗服务中心","signType":"2","sqDate":"2016-08-15"}],"status":200};
- // 根据签约类型signType分组,groups[1]为家庭医生, groups[2]为慢病管理
- var groups = handleData(data.list),
- familyList = groups[2] || [],
- sanshiList = groups[1] || [],
- $hasContent = $('.has-content'),
- $noContent = $('.none-content'),
- $onlySanshi = $('.only-sanshi'),
- $otherView = $('#other_view');
-
- // 签约类型
- var type;
- // 签约三师(也就是慢病管理)医生的level=2(表示“全科”)的医生
- var quanKeDoctor;
- // 没有任何类型的签约医生
- if(!familyList.length && !sanshiList.length) {
- $hasContent.hide();
- $noContent.show();
- $otherView.show();
- $(document.body).addClass('bc-9beaf6');
- type = 0;
- }
- // 仅有家庭签约医生
- else if(familyList.length && !sanshiList.length) {
- $hasContent.show();
- $otherView.show();
- $noContent.hide();
- $otherView.find('.btn-wrap').hide();
- type = 1;
- }
- // 仅有慢病管理签约医生
- else if(sanshiList.length && !familyList.length) {
- $hasContent.show();
- $noContent.hide();
- $otherView.show();
- type = 2;
- // 查找到全科医生,level:1专科医生,2全科医生,3健康管理师
- var quanKeDoctor = _.find(sanshiList,function(obj) {
- return obj.level==2;
- });
- }
- // 既有慢病管理签约医生,也有家庭签约医生
- else {
- $hasContent.show();
- $otherView.hide();
- type = 3;
- }
- // 更新家庭医生签约列表
- updateCardView($('#family_card'),{list: familyList});
- // 更新慢病管理签约列表
- updateCardView($('#sanshi_card'),{list: sanshiList});
-
- // 仅有慢病管理签约医生或者没有任何签约医生时页面底部按钮显示方式控制
- if( $hasContent[0].scrollHeight+$onlySanshi[0].scrollHeight>document.body.offsetHeight) {
- $onlySanshi.css('position','relative');
- }
-
- d.close();
-
- return {type: type,quanKeDoctor: quanKeDoctor};
- }).then(function(data) {
- // 签约类型
- var type = data.type,
- // 签约的慢病管理全科医生
- quanKeDoctor = data.quanKeDoctor,
- url = "select-doctor.html";
- if(type == 2) { // 仅有慢病管理签约医生
- url += "?existedSanShi=1&doctor="+quanKeDoctor.code+"&doctorName="+quanKeDoctor.name;
- }
- $('#sign_family_doctor_btn').click(function() {
- location.href = url
- });
-
- }).catch(function(e) {
- console && console.error(e);
- });
- }
- template.helper('getPhoto', function(str){
- return getImgUrl(str);
- })
|