| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 | 
							- // TODO 临时构造plus对象,使得能够在浏览器中进行调试
 
- var plus = null;
 
- 	// 登录者相关信息(包括userAgent)
 
- var loginerInfo = null,
 
- 	// 基础环境信息(包括当前webview)
 
- 	baseEnv = null;
 
- 	
 
- 	// 搜索框
 
- var $searchbar = $('.searchbar'),
 
- 	// 搜索输入框
 
- 	$searchbarInput = $('.searchbar input'),
 
- 	// 搜索取消按钮
 
- 	$searchCancelBtn = $('.searchbar-cancel'),
 
- 	// 搜索框下面悬浮的搜索提示
 
- 	$searchSuggest = $('#search_suggest_text'),
 
- 	// 搜索结果展示容器
 
- 	$searchtResult = $('#search_result'),
 
- 	// 搜索无结果时显示
 
- 	$noResultWrap = $('#no_result_wrap'),
 
- 	$endList = $('#end_list'),
 
- 	QueryParams = GetRequest(),
 
- 	keyword = null;
 
- 	activeType = null;
 
- 	
 
- 	// 分页查询最后一条记录Id
 
- var lastId = 0,
 
- 	// iscroll 滚动条实例
 
- 	iscroller;
 
- 	
 
- // 获取登录相关信息
 
- var getLoginerInfo = function() {
 
- 		// 登录的相关信息
 
- 	var userAgent = plus && JSON.parse(plus.storage.getItem("userAgent"))
 
- 	return {
 
- 		userAgent: userAgent
 
- 	}
 
- },
 
- // 获取基础环境信息
 
- getBaseEnvPromise = function () {
 
- 	
 
- 	var env = {
 
- 		webview: plus&&plus.webview.currentWebview()
 
- 	};
 
- 	return Promise.resolve().then(function(res) {
 
- 		return env;
 
- 	});
 
- },
 
- // $el: $('.c-content-warp')
 
- getRowProps = function ($el) {
 
- 	var $textEllipsis = $el.find('.j-text-ellipsis'),
 
- 		$text = $textEllipsis.eq(0),
 
- 		$chart = $text.text('a'),
 
- 		enWidth = $chart.width(),
 
- 		$chart = $text.text('中'),
 
- 		zhWidth = $chart.width(),
 
- 		lineHeight = parseFloat($chart.css("lineHeight"), 10),
 
- 		rowHeight = $chart.height();
 
- 	$chart.text('');
 
- 	return {
 
- 		chartWidth: {
 
- 			zh: zhWidth,
 
- 			en: enWidth
 
- 		},
 
- 		rowHeight: Math.max(rowHeight, lineHeight),
 
- 		rowWidth: $el.width()
 
- 	};
 
- },
 
- replaceAll = function (text, arr) {
 
- 	var html = text;
 
- 	if(!arr || !arr.length) return html;
 
- 	_.each(arr,function(kw) {
 
- 		var reg = new RegExp(kw+"(?!>)","gi");
 
- 		html = html.replace(reg,'<em>'+kw+'</em>');
 
- 	});
 
- 	return html;
 
- },
 
- highlineKeyword = function ($el,searchText) {
 
- 	var props = getRowProps($el),
 
- 		chartWidth = props.chartWidth,
 
- 		rowHeight = props.rowHeight,
 
- 		rowWidth = props.rowWidth,
 
- 		// 每行显示字符数(以中文字符为标准计算)
 
- 		chartNum = Math.floor(rowWidth / chartWidth.zh),
 
- 		// 排除“咨询问题:”字符及前后“...”所占宽度
 
- 		exceptNum = 7,
 
- 		// 行数
 
- 		rowNum = 2,
 
- 		// 预计显示总字符数
 
- 		expectedNum = chartNum * rowNum - exceptNum,
 
- 		$target = $el.find('.j-text-ellipsis'),
 
- 		// 目标文本
 
- 		text = $target.attr('data-text').trim(),
 
- 		length = text.length,
 
- 		// 关键字数组
 
- 		kws = searchText&&searchText.trim().replace(/\s+/g," ").split(" ");
 
- 	var fidx = 0,preFidx,diff = 0;
 
- 	$target.html(replaceAll(text, kws));
 
- 	if(Math.floor($target.height() / rowHeight) <= rowNum) {
 
- 		return ;
 
- 	}
 
- 	if(text.length > expectedNum) {
 
- 		fidx = text.indexOf(kws[0])+kws[0].length-1;
 
- 		diff = fidx - expectedNum + 1;
 
- 		preFidx =  fidx;
 
- 		diff = (diff<0)?0:diff;
 
- 		var preChar = (diff>0)?"...":"";
 
- 		$target.html(preChar+replaceAll(text.slice(diff,preFidx+1), kws)+"...");
 
- 		while((Math.floor($target.height() / rowHeight) <= rowNum) && (preFidx < length)) {
 
- 			preFidx++;
 
- 			$target.html(preChar+replaceAll(text.slice(diff,preFidx+1), kws)+"...");
 
- 		}
 
- 		if(preFidx == length && (Math.floor($target.height() / rowHeight) <= rowNum)) {
 
- 			diff = diff>0?(diff - 1):0;
 
- 			$target.html(preChar+replaceAll(text.slice(diff,preFidx), kws));
 
- 		} else if((Math.floor($target.height() / rowHeight) > rowNum)) {
 
- 			$target.html(preChar+replaceAll(text.slice(diff,preFidx), kws)+"...");
 
- 		}
 
- 	}
 
- },
 
- ellipsisText = function ($elements, searchText) {
 
- 	//$el.ellipsis({ row: 2});
 
- 	_.each($elements,function(el) {
 
- 		highlineKeyword($(el),searchText)
 
- 	});
 
- },
 
- // 初始化“已结束”视图列表
 
- initEndViewList = function(data,keyword, isAppend) {
 
- 	var html = template("zixun_li_tmpl", {list: data.list});
 
- 	if(isAppend === true) {
 
- 		$endList.append(html);
 
- 	} else {
 
- 		$endList.html(html);
 
- 	}
 
- 	
 
- 	ellipsisText($endList.find('.c-content-warp'),keyword);
 
- },
 
- // 分页查询医生列表
 
- searchByPaging = function () {
 
- 	var kw = $searchbarInput.val();
 
- 	// TODO 示例示例搜索参数
 
- 	// id: 上次搜索结果列表最后一条记录id,type:7(咨询我的-结束的),type:12(我咨询的-结束的),query:搜素关键字,pageSize:每页条数
 
- 	var type = 7;//type:7(咨询我的-结束的)
 
- 	if(activeType=="2"){//type:12(我咨询的-结束的)
 
- 		type = 12;
 
- 	}
 
- 	var url = "doctor/consult/list",
 
- 	params = { id:0, title: kw,pagesize:15,type:type };
 
- 	getReqPromise(url,params).then(function(res){
 
- 		// TODO 为了测试先注释
 
- 		var data = res;
 
-  		lastId = getLastId(data);
 
- 		if(!iscroller) {
 
- 			iscroller = initScroller($searchtResult,url,
 
- 			function() { // 传递分页参数
 
- 				return $.extend({},params,{id:lastId});
 
- 			},function(data) {
 
- 				// TODO 示例数据
 
- 				lastId = getLastId(data) || lastId;				
 
- 				var kw = $searchbarInput.val();
 
- 				initEndViewList(data,kw,true);
 
- 				iscroller.refresh();
 
- 			});
 
- 		} 
 
- 		
 
- 		// TODO 示例数据data
 
- 		if(!data.list || !data.list.length) {
 
- 			$searchtResult.hide();
 
- 			$noResultWrap.show();
 
- 		} else {
 
- 			$noResultWrap.hide();
 
- 			// TODO 示例数据data
 
- 			initEndViewList(data,kw);
 
- 		}
 
- 		
 
- 		iscroller.refresh();
 
- 	}).catch(function(e) {
 
- 		console && console.error(e)
 
- 	});
 
- },
 
- // 滚动条分页实例初始化
 
- initScroller = function($el,url,getData,pullUpAction) {
 
- 	var scroller = $el.initScroll({pullDown: false,pullUpAction: function() {
 
- 		var data = getData();
 
- 		
 
- 		getReqPromise(url,params).then(function(data) {
 
- 			if(pullUpAction && $.isFunction(pullUpAction)) {
 
- 				pullUpAction(data);
 
- 				updatePullUpText(scroller,data.list);
 
- 			}
 
- 		})
 
- 	}});
 
- 	
 
- 	return scroller;
 
- },
 
- // 获取分页搜索返回的最后一条记录的id
 
- getLastId = function(data) {
 
- 	var lastObj = data.list && data.list.length && data.list[data.list.length-1];
 
- 	// 最后一条记录
 
- 	if(lastObj) {
 
- 		return lastObj.id;
 
- 	} else {
 
- 		return null
 
- 	}
 
- },
 
- // 更新分页上拉加载的提示文本
 
- updatePullUpText= function(scroller,list) {
 
- 	var $wrap = $(scroller.wrapper),
 
- 		$pullupLabel = $wrap.find('.pullUpLabel');
 
- 	if(!list || !list.length) {
 
- 		$pullupLabel.text('没有更多');
 
- 	} else {
 
- 		$pullupLabel.text('上拉加载更多');
 
- 	}
 
- 	scroller.on('refresh',function() {
 
- 		if(!list || !list.length) {
 
- 			$pullupLabel.text('没有更多');
 
- 		} else {
 
- 			$pullupLabel.text('上拉加载更多');
 
- 		}
 
- 	});
 
- },
 
- // 绑定页面事件
 
- bindEvents = function () {
 
- 	$searchbar.bind("click",function(){
 
- 		var oldback  = mui.back;
 
- 		mui.back=function(){
 
- 			var wobj = plus.webview.getWebviewById("sousuozixun");//获取前一个页面ID
 
- 			if(wobj) {
 
- 				mui.fire(wobj, "focusAction");
 
- 			}
 
- 			plus.webview.currentWebview().close();
 
- 			oldback();
 
- 		}
 
- 		mui.back();
 
- 	});
 
- 	$endList.on('click','li',function() {
 
- 		var $this = $(this),
 
- 			consult = $this.attr('data-consult'),
 
- 			code = $this.attr('data-code'),
 
- 			name = $this.attr('data-name'),
 
- 			photo = $this.attr('data-photo'),
 
- 			sex = $this.attr('data-sex'),
 
- 			patient = $this.attr('data-patient'),
 
- 			// (咨询状态(0进行中,1已完成,-1患者取消)
 
- 			status = $this.attr('data-status');
 
- 		if(status == "1") {
 
- 			// flagZx 是为了跳转至咨询详情页面控制聊天对话框的显示
 
- 			plus.storage.setItem("flagZx","4");
 
- 		} else {
 
- 			plus.storage.setItem("flagZx","");
 
- 		}
 
- 		
 
- 		openWebview("mingyizixunxiangqing.html",{consult: consult, patient: patient,name: name});
 
- 	});
 
- };
 
- // 页面业务处理流程开始
 
- new Promise(function(resolve, reject) {
 
- 	// TODO 临时放开
 
- //	resolve(true);
 
- 	mui.plusReady(function() {
 
- 		// plus已经准备好,可以往下执行
 
- 		resolve(true);
 
- 	});
 
- }).then(function() {
 
- 	
 
- 	// 获取基础环境信息
 
- 	return getBaseEnvPromise().then(function(env) {
 
- 		baseEnv = env;
 
- 	}).then(function() {
 
- 		// 获取登录医生信息
 
- 		loginerInfo = getLoginerInfo();
 
- 		$searchbar.searchBar();
 
- 		self = plus.webview.currentWebview();
 
- 		keyword = self.kw;
 
- 		activeType = self.activeType;
 
- 		if(keyword) {
 
- 			$searchbarInput.val(keyword);
 
- 			searchByPaging();
 
- 			$searchtResult.show();
 
- 		} else {
 
- 			$searchtResult.hide();
 
- 		}
 
- 		// 绑定页面事件
 
- 		bindEvents();
 
- 	})
 
- }).catch(function(e) {
 
- 	plus.nativeUI.closeWaiting();
 
- 	console && console.error(e);
 
- });
 
 
  |