portal html css js resource

postDemand.js 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. $(document).ready(function() {
  2. loginStatus(); //判断个人是否登录
  3. valUser();
  4. var userid = $.cookie("userid");
  5. var orgId = "";
  6. /*$("body").on("click", function(event) {
  7. var event = event ? event : window.event;
  8. var obj = event.srcElement ? event.srcElement : event.target;
  9. if($('.boxHid').css("display") === "none") {
  10. if($(obj).hasClass("howbtn")) {} else {
  11. return;
  12. }
  13. }
  14. if($(obj).hasClass("closeFeed")) {} else {
  15. if($(obj).parents(".boxHid").hasClass("boxHid")) {
  16. return;
  17. }
  18. }
  19. $('.boxHid').toggle();
  20. event.stopPropagation();
  21. })*/
  22. $(".btnModel,.closeFeed").click(function(){
  23. $('.boxHid').toggle();
  24. })
  25. var a = new Date();
  26. var c = a.getFullYear() + "-" + (Number(a.getMonth()) + 1) + "-" + (Number(a.getDate()) + 1);
  27. $('.dateBtn').datetimepicker({
  28. language: 'ch',
  29. weekStart: 0,
  30. todayBtn: false,
  31. autoclose: 1,
  32. todayHighlight: 1,
  33. startView: 2,
  34. minView: 2,
  35. forceParse: 0,
  36. startDate: c,
  37. });
  38. /*需求主题*/
  39. $("#demandTitle").bind({
  40. focus: function() {
  41. $(this).siblings().find("span").show();
  42. },
  43. blur: function() {
  44. $(this).siblings().find("span").hide();
  45. }
  46. })
  47. /*需求内容*/
  48. $("#remarkContent").bind({
  49. focus: function() {
  50. $(this).parent().siblings().find(".frmconmsg").show();
  51. },
  52. blur: function() {
  53. $(this).parent().siblings().find(".frmconmsg").hide();
  54. },
  55. input: function() {
  56. $(".msgconNum").find("em").text($(this).val().length);
  57. }
  58. })
  59. /*联系电话*/
  60. $("#phone").bind({
  61. focus: function() {
  62. $(this).siblings().find("span").show();
  63. },
  64. blur: function() {
  65. $(this).siblings().find("span").hide();
  66. }
  67. })
  68. function test() {
  69. if($("#demandTitle").val().trim() == "") {
  70. $.MsgBox.Alert('提示', '请填写需求主题');
  71. return;
  72. } else if($("#demandTitle").val().length > 50) {
  73. $.MsgBox.Alert('提示', '需求主题不得超过50个字');
  74. return;
  75. }
  76. if($("#remarkContent").val().trim() == "") {
  77. $.MsgBox.Alert('提示', '请填写需求内容');
  78. return;
  79. } else if($("#remarkContent").val().length > 1000) {
  80. $.MsgBox.Alert('提示', '需求内容不得超过1000个字');
  81. return;
  82. }
  83. if($("#oprovince").text() == "请选择省/直辖市") {
  84. $.MsgBox.Alert('提示', '请选择省/直辖市');
  85. return;
  86. }
  87. if($("#ocity").text() == "请选择城市") {
  88. $.MsgBox.Alert('提示', '请选择城市');
  89. return;
  90. }
  91. if($("#createTime").val() == "") {
  92. $.MsgBox.Alert('提示', '请选择需求有效期');
  93. return;
  94. }
  95. if($("#org").val().trim() == "") {
  96. $.MsgBox.Alert('提示', '您所在的企业名称');
  97. return;
  98. } else if($("#org").val().length > 50) {
  99. $.MsgBox.Alert('提示', '您所在的企业名称不得超过50个字');
  100. return;
  101. }
  102. if($("#phone").val().trim() == "") {
  103. $.MsgBox.Alert('提示', '请填写联系电话');
  104. return;
  105. } else if($("#phone").val().length > 50) {
  106. $.MsgBox.Alert('提示', '联系电话不得超过50个字');
  107. return;
  108. }
  109. return 1;
  110. }
  111. $(".posted").click(function() {
  112. if(test()) {
  113. $.MsgBox.Confirm("提示", "确认发布需求?", pDemand);
  114. }
  115. event.stopPropagation();
  116. });
  117. /*时间转换成6位传给后台*/
  118. function st6(osr) {
  119. var tim = osr.substring(0, 4) + osr.substring(5, 7) + osr.substring(8, 10);
  120. return tim;
  121. }
  122. function pDemand() {
  123. $.ajax({
  124. "url": "/ajax/demand",
  125. "type": "POST",
  126. "data": {
  127. "title": $("#demandTitle").val(),
  128. "descp": $("#remarkContent").val(),
  129. "province": $("#oprovince").text(),
  130. "city": $("#ocity").text(),
  131. "cost": $("#spendCost").val(),
  132. "duration": $("#budget").val(),
  133. "invalidDay": st6($("#createTime").val()),
  134. "contactNum": $("#phone").val(),
  135. "creator": userid,
  136. 'orgName': $("#org").val(),
  137. 'source': 'ekexiuWeb'
  138. },
  139. "contentType": "application/x-www-form-urlencoded",
  140. "traditional": true,
  141. "dataType": "json",
  142. "success": function(data) {
  143. if(data.success) {
  144. location.href = "myDemand.html";
  145. }
  146. },
  147. "error": function() {
  148. $.MsgBox.Alert('提示', '服务器连接超时');
  149. }
  150. });
  151. }
  152. personMess()
  153. function personMess() {
  154. $.ajax({
  155. "url": "/ajax/professor/editInfo/" + userid,
  156. "type": "GET",
  157. "traditional": true,
  158. "dataType": "json",
  159. "success": function(data) {
  160. if(data.success) {
  161. var $data = data.data;
  162. $("#proName").text($data.name);
  163. if($data.province) {
  164. $("#oprovince").text($data.province)
  165. }
  166. if($data.address) {
  167. $("#ocity").text($data.address)
  168. }
  169. //省份城市颜色
  170. if($("#oprovince").text() == "请选择省/直辖市") {
  171. $("#oprovince").removeClass("mr_select");
  172. } else {
  173. $("#oprovince").addClass("mr_select");
  174. }
  175. if($("#ocity").text() == "请选择城市") {
  176. $("#ocity").removeClass("mr_select");
  177. } else {
  178. $("#ocity").addClass("mr_select");
  179. }
  180. $("#spendCost").css("color", "#999");
  181. $("#budget").css("color", "#999");
  182. if($data.phone) {
  183. $('#phone').val($data.phone)
  184. } else {
  185. if($.cookie('userMobilePhone')) {
  186. $("#phone").val($.cookie('userMobilePhone'));
  187. } else {
  188. $("#phone").val('');
  189. }
  190. }
  191. if($data.orgName) {
  192. $('#org').val($data.orgName);
  193. }
  194. }
  195. },
  196. "error": function() {
  197. $.MsgBox.Alert('提示', '服务器连接超时');
  198. }
  199. });
  200. }
  201. })