mui.ready(function() { var oconsultTitle = document.getElementById("consultTitle");//咨询标题 var ochatName = document.getElementById("chatName");//与。。聊天 var oconfirmBtn = document.getElementById("confirmBtn");//我的需求,确认完成按钮 var oassessBtn = document.getElementById("assessBtn");//我的需求,去评价按钮 var oassessed = document.getElementById("assessed");//我的需求,已评价(评价星级和评价内容) var omy_starContainer = document.getElementById("my_starContainer");//我的需求,星级容器 var othat_weiassess = document.getElementById("that_weiassess");//收到咨询,未评价状态 var owaying = document.getElementById("waying");//收到咨询,进行中状态 var othat_assessed = document.getElementById("that_assessed");//收到咨询,对方已评价 var oconstarContainer = document.getElementById("consult_starContainer");//收到咨询星级容器 var omsg_list = document.getElementById("msg-list"); var omsg_text = document.getElementById("msg-text"); var omsg_type = document.getElementById("msg-type"); var ochatFooter = document.getElementById("chatFooter"); function getHeadInfo(manFlag,consultId){ var myData; if(manFlag == 'myNeed'){//我的需求 //我的需求 mui.ajax(baseUrl+'/ajax/consult/qacon',{ data:{"consultId":consultId,"readStatus":"1"}, dataType:'json',//服务器返回json格式数据 type:'get',//HTTP请求类型 success:function(data){ myData = data.data; ochatName.innerHTML = myData["professor"]["name"]; var consultTitle = '关于'+myData["consultTitle"]+"的咨询"; oconsultTitle.innerHTML = consultTitle; //我的需求进行中 if(myData["consultStatus"] == 0){ oconfirmBtn.style.display = 'block';//我的需求,进行中 ochatFooter.style.display = 'block'; }else { if(myData["assessStatus"] == 0){ oassessBtn.style.display = 'block';//我的需求,未评价 }else { oassessed.style.display = 'block';//我的需求,已评价 //评价星级 console.log("我的需求已评价") var starCount = myData["assessStar"]; for(var i=0;i') }); ui.boxMsgText.value = ''; mui.trigger(ui.boxMsgText, 'input', null); //发送消息向后台传数据 } else if (ui.btnMsgType.classList.contains('mui-icon-mic')) {//说话 ui.btnMsgType.classList.add('mui-icon-compose'); ui.btnMsgType.classList.remove('mui-icon-mic'); ui.boxMsgText.style.display = 'none'; ui.boxMsgSound.style.display = 'block'; ui.boxMsgText.blur(); document.body.focus(); } else if (ui.btnMsgType.classList.contains('mui-icon-compose')) {//编辑 ui.btnMsgType.classList.add('mui-icon-mic'); ui.btnMsgType.classList.remove('mui-icon-compose'); ui.boxMsgSound.style.display = 'none'; ui.boxMsgText.style.display = 'block'; //-- //showKeyboard(); ui.boxMsgText.focus(); setTimeout(function() { ui.boxMsgText.focus(); }, 150); } }, false); ui.footerLeft.addEventListener('tap', function(event) { var btnArray = [{ title: "拍照" }, { title: "从相册选择" }]; plus.nativeUI.actionSheet({ title: "选择照片", cancel: "取消", buttons: btnArray }, function(e) { var index = e.index; switch (index) { case 0: break; case 1: var cmr = plus.camera.getCamera(); cmr.captureImage(function(path) { send({ sender: 'self', type: 'image', content: "file://" + plus.io.convertLocalFileSystemURL(path) }); }, function(err) {}); break; case 2: plus.gallery.pick(function(path) { send({ sender: 'self', type: 'image', content: path }); }, function(err) {}, null); break; } }); }, false); var setSoundAlertVisable=function(show){ if(show){ ui.boxSoundAlert.style.display = 'block'; ui.boxSoundAlert.style.opacity = 1; }else{ ui.boxSoundAlert.style.opacity = 0; //fadeOut完成再真正隐藏 setTimeout(function(){ ui.boxSoundAlert.style.display = 'none'; },200); } }; var recordCancel = false; var recorder = null; var audio_tips = document.getElementById("audio_tips"); var startTimestamp = null; var stopTimestamp = null; var stopTimer = null; ui.boxMsgSound.addEventListener('hold', function(event) { recordCancel = false; if(stopTimer)clearTimeout(stopTimer); audio_tips.innerHTML = "手指上划,取消发送"; ui.boxSoundAlert.classList.remove('rprogress-sigh'); setSoundAlertVisable(true); recorder = plus.audio.getRecorder(); if (recorder == null) { plus.nativeUI.toast("不能获取录音对象"); return; } startTimestamp = (new Date()).getTime(); recorder.record({ filename: "_doc/audio/" }, function(path) { if (recordCancel) return; send({ sender: 'self', type: 'sound', content: path }); }, function(e) { plus.nativeUI.toast("录音时出现异常: " + e.message); }); }, false); ui.body.addEventListener('drag', function(event) { //console.log('drag'); if (Math.abs(event.detail.deltaY) > 50) { if (!recordCancel) { recordCancel = true; if (!audio_tips.classList.contains("cancel")) { audio_tips.classList.add("cancel"); } audio_tips.innerHTML = "松开手指,取消发送"; } } else { if (recordCancel) { recordCancel = false; if (audio_tips.classList.contains("cancel")) { audio_tips.classList.remove("cancel"); } audio_tips.innerHTML = "手指上划,取消发送"; } } }, false); ui.boxMsgSound.addEventListener('release', function(event) { //console.log('release'); if (audio_tips.classList.contains("cancel")) { audio_tips.classList.remove("cancel"); audio_tips.innerHTML = "手指上划,取消发送"; } // stopTimestamp = (new Date()).getTime(); if (stopTimestamp - startTimestamp < MIN_SOUND_TIME) { audio_tips.innerHTML = "录音时间太短"; ui.boxSoundAlert.classList.add('rprogress-sigh'); recordCancel = true; stopTimer=setTimeout(function(){ setSoundAlertVisable(false); },800); }else{ setSoundAlertVisable(false); } recorder.stop(); }, false); ui.boxMsgSound.addEventListener("touchstart", function(e) { //console.log("start...."); e.preventDefault(); }); ui.boxMsgText.addEventListener('input', function(event) { ui.btnMsgType.classList[ui.boxMsgText.value == '' ? 'remove' : 'add']('mui-icon-paperplane'); ui.btnMsgType.setAttribute("for", ui.boxMsgText.value == '' ? '' : 'msg-text'); ui.h.innerText = ui.boxMsgText.value.replace(new RegExp('\n', 'gm'), '\n-') || '-'; ui.footer.style.height = (ui.h.offsetHeight + footerPadding) + 'px'; ui.content.style.paddingBottom = ui.footer.style.height; }); ui.boxMsgText.addEventListener('tap', function(event) { ui.boxMsgText.focus(); setTimeout(function() { ui.boxMsgText.focus(); }, 0); }, false); }); // }(mui, document)); })