Нет описания

common.js 8.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. var userid;
  2. function exit(){
  3. $.cookie('userid', null);
  4. $.cookie('userAuth', null);
  5. $.cookie('userEmail', null);
  6. $.cookie('userMobilePhone', null);
  7. $.cookie('userName', null);
  8. $.cookie('userType', null);
  9. location.href="index.html"
  10. }
  11. function valUser(){
  12. var userid = $.cookie('userid');
  13. var userAuth = $.cookie('userAuth');
  14. if(userid == undefined || userid.length==0 || userid == "null" || userAuth == false){
  15. location.href="login.html";
  16. }
  17. }
  18. function GetQueryString(name) {
  19. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  20. var r = window.location.search.substr(1).match(reg); //��ȡurl��"?"�����ַ�����ƥ��
  21. var context = "";
  22. if (r != null)
  23. context = r[2];
  24. reg = null;
  25. r = null;
  26. return context == null || context == "" || context == "undefined" ? "" : decodeURI(context);
  27. }
  28. /* function GetQueryString(name) {
  29. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  30. var r = window.location.search.substr(1).match(reg); //��ȡurl��"?"�����ַ�����ƥ��
  31. var context = "";
  32. if (r != null)
  33. context = r[2];
  34. reg = null;
  35. r = null;
  36. return context == null || context == "" || context == "undefined" ? "" : context;
  37. }*/
  38. function loginStatus(){
  39. userid = $.cookie('userid');
  40. if(userid && userid != "null" && userid!=null){
  41. $(".onlogin").show();
  42. $(".unlogin").hide();
  43. $(".portrait-p").attr("src","/images/head/"+userid+"_m.jpg");
  44. $(".portrait-p").load(function(){//判断图片是否加载,加载不成功默认有默认的图像
  45. })
  46. .error(function(){
  47. $(".portrait-p").attr("src","/images/default-photo.jpg");
  48. });
  49. }else{
  50. $(".onlogin").hide();
  51. $(".unlogin").show();
  52. }
  53. // if(userid && userid != "null" && userid!=null ){
  54. // $(".head-portrait").show();
  55. // $(".unlogin").hide();
  56. // }else{
  57. // $(".head-portrait").hide();
  58. // $(".unlogin").show();
  59. // }
  60. }
  61. //转换格式
  62. function changeTime(dealtime){
  63. var s = dealtime;
  64. //console.log(s);
  65. if(dealtime.length==8){
  66. var y = s.substr(0,4);
  67. var m = s.substr(4,2);
  68. var d = s.substr(6,2);
  69. var formatTime = y+"-"+m+"-"+d;
  70. return formatTime;
  71. }
  72. else
  73. {
  74. var y = s.substr(0,4);
  75. var m = s.substr(4,2);
  76. var d = s.substr(6,2);
  77. var h = s.substr(8,2);
  78. var minute = s.substr(10,2);
  79. var formatTime = y+"-"+m+"-"+d+" "+h+":"+minute;
  80. return formatTime;
  81. }
  82. }
  83. //******过滤特殊字符*******//
  84. function replaceStr(s)
  85. {
  86. var pattern = new RegExp("-");
  87. var rs = "";
  88. for (var i = 0; i < s.length; i++) {
  89. rs = rs+s.substr(i, 1).replace(pattern, '');
  90. }
  91. return rs;
  92. }
  93. //**********************//
  94. //根据内容的多少获取高度给父级设置高度
  95. function limitHeight(){
  96. var Length = $(".limitBox").length;
  97. for(var i=0; i<Length;i++){
  98. var limitheight = $(".limitwords").eq(i).height();
  99. console.log(limitheight);
  100. $(".limitBox").eq(i).css("height",limitheight);
  101. }
  102. }
  103. //根据用户输入的Email跳转到相应的电子邮箱首页
  104. var hash={
  105. 'qq.com': 'http://mail.qq.com',
  106. 'gmail.com': 'http://mail.google.com',
  107. 'sina.com': 'http://mail.sina.com.cn',
  108. '163.com': 'http://mail.163.com',
  109. '126.com': 'http://mail.126.com',
  110. 'yeah.net': 'http://www.yeah.net/',
  111. 'sohu.com': 'http://mail.sohu.com/',
  112. 'tom.com': 'http://mail.tom.com/',
  113. 'sogou.com': 'http://mail.sogou.com/',
  114. '139.com': 'http://mail.10086.cn/',
  115. 'hotmail.com': 'http://www.hotmail.com',
  116. 'live.com': 'http://login.live.com/',
  117. 'live.cn': 'http://login.live.cn/',
  118. 'live.com.cn': 'http://login.live.com.cn',
  119. '189.com': 'http://webmail16.189.cn/webmail/',
  120. 'yahoo.com.cn': 'http://mail.cn.yahoo.com/',
  121. 'yahoo.cn': 'http://mail.cn.yahoo.com/',
  122. 'eyou.com': 'http://www.eyou.com/',
  123. '21cn.com': 'http://mail.21cn.com/',
  124. '188.com': 'http://www.188.com/',
  125. 'foxmail.coom': 'http://www.foxmail.com'
  126. };
  127. //轮播滚动函数
  128. function Carousel(inde, num,show, childcount, obj, next, prev) {
  129. var tapnum=0; //按钮可点击次数
  130. if( childcount > num ){
  131. next.css("display","block");
  132. }
  133. next.click(function() {
  134. if (!obj.is(":animated")) {
  135. if (num < childcount) {
  136. tapnum++;
  137. prev.css("display","block");
  138. if(tapnum == childcount-show){
  139. next.css("display","none");
  140. }
  141. num++;
  142. obj.animate({
  143. left: "-=212px"
  144. }, 600);
  145. }
  146. }
  147. });
  148. prev.click(function() {
  149. if (!obj.is(":animated")) {
  150. if (num > inde) {
  151. tapnum--;
  152. next.css("display","block");
  153. if(tapnum == 0){
  154. prev.css("display","none");
  155. }
  156. num--;
  157. obj.animate({
  158. left: "+=212px"
  159. }, 600);
  160. }
  161. }
  162. });
  163. }
  164. //评价字数限制
  165. //字数限制函数
  166. function limitTextCountFn(TextAreaId,countContainerId,count){
  167. var curLength=$(TextAreaId).val().length;
  168. if(curLength > count){
  169. var num=$(TextAreaId).val().substr(0,count);
  170. $(TextAreaId).val(num);
  171. }
  172. else {
  173. $(countContainerId).text(count - $(TextAreaId).val().length);
  174. }
  175. };
  176. //咨询申请主题字数限制函数
  177. function titleLimitFontCountFn(){
  178. var curLength= $("#consultTitle").val().length;
  179. if(curLength>20){
  180. var num = $("#consultTitle").val().substr(0,20);
  181. $("#consultTitle").val(num);
  182. }
  183. };
  184. //模拟下拉菜单
  185. function selectThis(value){
  186. $("#div_select").text(value);
  187. $("#li_show").css("display","none");
  188. }
  189. function showmenu(){
  190. $("#li_show").css("display","block");
  191. }
  192. //咨询 专家信息接口函数
  193. function concultProInfo(professorId){
  194. $.ajax({
  195. url:"/ajax/professor/editBaseInfo/"+professorId,
  196. type:"get",
  197. data : {"id":professorId},
  198. contentType : "application/x-www-form-urlencoded",
  199. success:function(response){
  200. console.log(response);
  201. var myData = response["data"];
  202. $("#professorName").html(myData["name"]);
  203. $("#professorTitle").html(myData["title"]);
  204. $("#profDepartment").html(myData["department"]);
  205. $("#profOrganization").html(myData["orgName"]);
  206. $("#profAdress").html(myData["address"]);
  207. $("#byConsultConut").html(myData["consultCount"]);
  208. $("#sendConsultBtn").attr("proId",myData["id"]);
  209. //星级
  210. var startConut = myData["starLevel"];
  211. for(var i = 0; i < startConut; i ++){
  212. $("#starLevel .evastar2").eq(i).addClass("addStar");
  213. }
  214. //是否认证
  215. if(myData["authentication"] == true){
  216. $("#proModify").removeClass("displayNone");
  217. }
  218. //没有头像
  219. if(myData["hasHeadImage"] == 0){
  220. $("#prohead").attr("src","images/default-photo.jpg");
  221. }
  222. //有头像
  223. else {
  224. $("#prohead").attr("src","images/head/"+myData["id"]+"_m.jpg");
  225. }
  226. },
  227. error:function(error){
  228. $.MsgBox.Alert("message","请求数据失败");
  229. }
  230. });
  231. };
  232. //发送咨询
  233. function sendConsultHandler(professorId){
  234. var professorId = professorId;
  235. var consult_type = $(".clicknow").text();//咨询类型
  236. var consult_title = $("#consultTitle").val();//咨询主题
  237. var consult_content = $("#consultcontent").val();//咨询内容
  238. var consultStr = {
  239. "consultType":consult_type,
  240. "consultTitle":consult_title,
  241. "consultContant":consult_content,
  242. "professorId":professorId,
  243. "consultantId":userid
  244. };
  245. if(consult_type == '' || consult_title == '' || consult_content == ''){
  246. $.MsgBox.Alert("message","请填写完整");
  247. };
  248. if(consult_type == ''){
  249. $.MsgBox.Alert("消息","请选择联系目的");
  250. }
  251. if(consult_title == ''){
  252. $.MsgBox.Alert("消息","请填写咨询目的");
  253. }
  254. if(consult_content == ''){
  255. $.MsgBox.Alert("消息","请填写咨询内容");
  256. }
  257. if(userid && userid != null && userid != "null" && consult_type != '' &&
  258. consult_title != '' && consult_content != ''
  259. ){
  260. $.ajax({
  261. "url" :"/ajax/consult",
  262. "type" : "post",
  263. //传值:咨询类型、主题、内容、专家id、申请人id
  264. "data" : consultStr,
  265. "contentType" : "application/x-www-form-urlencoded",
  266. "dataType" : "json",
  267. "success" : function(response) {
  268. console.log(response);
  269. },
  270. "error":function (){
  271. $.MsgBox.Alert("消息","咨询申请失败");
  272. },
  273. "complete":function(){
  274. //$(".consultapply").remove();
  275. $(".blackcover").remove();
  276. $("body").css("position","static");
  277. $.MsgBox.Alert("消息","咨询申请成功");
  278. },
  279. });
  280. }
  281. };