add-consult.js 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. var d = dialog({contentType:'load', skin:'bk-popup'});
  2. var request = GetRequest(),
  3. doctorCode = request["doctorCode"],
  4. doctorName = decodeURI(request["doctorName"]),
  5. jobName = decodeURI(request["jobName"]),
  6. patientInfo = window.localStorage.getItem(agentName1);
  7. var serverId = ""; //微信图片上传获取的图片id
  8. $(function(){
  9. if(patientInfo){
  10. patientInfo = JSON.parse(patientInfo);
  11. }
  12. $("#lbl_patient").text(patientInfo.name);
  13. var text = doctorName;
  14. if(jobName){
  15. text += "("+jobName+")"
  16. }
  17. $("#lbl_doctor").text(text);
  18. bindEvents();
  19. getWxSign();
  20. })
  21. function bindEvents(){
  22. //提交咨询
  23. $("#commit").click(function() {
  24. if($(this).hasClass("active")){
  25. var txtContent = $("#txtContent").val();
  26. if(txtContent){
  27. txtContent = utf16toEntities(txtContent.replace(/\s+/g,""));
  28. }
  29. var data = {
  30. type: 1,
  31. symptoms: txtContent || "",
  32. voice: ""
  33. };
  34. if (validate(data)) {
  35. //验证通过执行
  36. d.showModal();
  37. var images = getImages();
  38. if(images.length == 0){
  39. $("#commit").css("pointer-events","none");
  40. serverId = '';
  41. doSubmit(data);
  42. }
  43. else{
  44. uploadImage(data);
  45. }
  46. }
  47. }
  48. });
  49. }
  50. //验证信息
  51. function validate(data) {
  52. if (data.symptoms.length < 10) {
  53. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请至少用10个字描述您的症状'}).show();
  54. return false;
  55. }
  56. if (data.symptoms.length > 500) {
  57. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请在500字以内完成您的症状描述'}).show();
  58. return false;
  59. }
  60. // if(!$(".input-group-pack > input[type=checkbox]").attr("checked")){
  61. // dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请勾选"我已阅读咨询说明"'}).show();
  62. // return false;
  63. // }
  64. return true;
  65. }
  66. function chooseImage(){
  67. wx.chooseImage({
  68. count: 9-getImages().length,
  69. success: function (res) {
  70. for (var i in res.localIds) {
  71. appendFile(res.localIds[i]);
  72. }
  73. }
  74. });
  75. }
  76. function uploadImage(data){
  77. $("#commit").css("pointer-events","none");
  78. var images = getImages();
  79. if (images.length == 0) {
  80. return;
  81. }
  82. var i = 0, length = images.length;
  83. serverId = "";
  84. function upload() {
  85. wx.uploadImage({
  86. localId: images[i],
  87. isShowProgressTips: 0,
  88. success: function (res) {
  89. i++;
  90. if(serverId.length == 0){
  91. serverId = res.serverId;
  92. }
  93. else{
  94. serverId =serverId + "," + res.serverId;
  95. }
  96. if (i < length) {
  97. upload();
  98. }
  99. if(i == images.length){
  100. doSubmit(data);
  101. }
  102. },
  103. fail: function (res) {
  104. $("#commit").css("pointer-events","");
  105. alert(JSON.stringify(res));
  106. }
  107. });
  108. }
  109. upload();
  110. }
  111. // 添加文件
  112. function appendFile(p) {
  113. var amount = getImages().length;
  114. if (amount >= 8) {
  115. $("#add_img_li").hide();
  116. }
  117. if(amount < 9){
  118. var $li = $('<li>' + ' <img src="' + p + '" data-src="' + p + '" onclick="viewImg(this)">' + ' <a href="javascript:;" class="del-img" onclick="delImg(this)"><i class="iconfont icon-laji"></i></a>' + '</li>');
  119. var $add_img_li = $("#add_img_li");
  120. $add_img_li.before($li);
  121. $("#image_tips").text(getImages().length + "/9");
  122. }
  123. }
  124. //获取需要上传的图片
  125. function getImages() {
  126. var images = [];
  127. $("#img_ul").find("img").each(function() {
  128. var imgSrc = $(this).attr("data-src");
  129. images.push(imgSrc);
  130. });
  131. return images;
  132. }
  133. //查看图片
  134. function viewImg(dom) {
  135. var $img = $(dom);
  136. var thissrc = $img.attr("data-src");
  137. var mWid = $(window).width();
  138. var mHei = $(window).height();
  139. var nHtml = '<div class="delimgpop"><div class="del-img-box"><div class="del-img-con"><img class="del-pop-img" src="' + thissrc + '" style="max-width:' + mWid + 'px; max-height:' + mHei + 'px;"></div></div></div>';
  140. $("body").append(nHtml);
  141. $(".delimgpop").click(function() {
  142. $(this).remove()
  143. });
  144. };
  145. //删除图片
  146. function delImg(dom) {
  147. var $li = $(dom).parent();
  148. $li.remove();
  149. $("#image_tips").text(getImages().length + "/9");
  150. var amount = getImages().length;
  151. if(amount <= 8){
  152. $("#add_img_li").show();
  153. }
  154. return;
  155. }
  156. //微信sdk配置出错
  157. wx.error(function (res) {
  158. alert("wx.error:" + res.errMsg);
  159. });
  160. //提交咨询
  161. function doSubmit(data) {
  162. data.mediaIds = serverId;
  163. data.doctor = doctorCode;
  164. var url = 'patient/consult/add';//新增三师或家庭
  165. sendPost(url, data, 'json', 'post', submitFailed, submitSuccess);
  166. }
  167. function submitSuccess(res) {
  168. if (res.status == 200) {
  169. $("#commit").css("pointer-events","");
  170. d.close();
  171. //页面跳转到消息页面
  172. localStorage.setItem("signInfo_tab", 0);
  173. var direct_url = "../../qygl/html/sign_info.html?doctor="+doctorCode+"&consult="+res.data.consult;
  174. window.location.href = direct_url;
  175. } else {
  176. submitFailed(res);
  177. }
  178. }
  179. function submitFailed(res) {
  180. $("#commit").css("pointer-events","");
  181. d.close();
  182. if (res && res.msg) {
  183. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  184. } else {
  185. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'提交失败'}).show();
  186. }
  187. }
  188. function getWxSign(){
  189. //从后台那边获取签名等信息
  190. var params = {};
  191. params.pageUrl = window.location.href;
  192. $.ajax(server + "weixin/getSign", {
  193. data: params,
  194. dataType: "json",
  195. type: "post",
  196. success: function(res){
  197. if (res.status == 200) {
  198. var t = res.data.timestamp;
  199. var noncestr = res.data.noncestr;
  200. var signature = res.data.signature;
  201. wx.config({
  202. // debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  203. appId: appId, // 必填,公众号的唯一标识
  204. timestamp: t, // 必填,生成签名的时间戳
  205. nonceStr: noncestr, // 必填,生成签名的随机串
  206. signature: signature,// 必填,签名,见附录1
  207. jsApiList: [
  208. 'chooseImage',
  209. 'uploadImage'
  210. ] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  211. });
  212. }
  213. else{
  214. // dialog({
  215. // title:'提示',
  216. // skin:"ui-dialog ax-popup pror",
  217. // content:"获取微信签名失败",
  218. // ok: function (){}
  219. // }).showModal();
  220. }
  221. }
  222. });
  223. }