portal html css js resource

cmp-updateinfo.js 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. $(document).ready(function() {
  2. $(".onlogin .headnavbtn li").eq(0).addClass("navcurrent");
  3. var id = $.cookie('orgId');
  4. if(id == "" || id == null || id == "null"){
  5. location.href = "cmp-settled-log.html";
  6. }
  7. var fileId = null;
  8. var cacheImageKey = null;
  9. /*企业信息*/
  10. function companyInformation() {
  11. $.ajax({
  12. url: "/ajax/org/" + id,
  13. type: "GET",
  14. timeout: 10000,
  15. dataType: "json",
  16. beforeSend: function() {},
  17. success: function(data, textState) {
  18. if(data.success) {
  19. console.log(data);
  20. var $data = data.data;
  21. $(".h1Font").text($data.name);
  22. if($data.hasOrgLogo) {
  23. $("#oimg").attr("src", "/images/org/" + $data.id + ".jpg");
  24. }
  25. if($data.orgUrl) {
  26. $("#inteAddress").val($data.orgUrl);
  27. } else {
  28. $("#inteAddress").val("");
  29. }
  30. if($data.forShort) {
  31. $("#businessAbbreviation").val($data.forShort);
  32. } else {
  33. $("#businessAbbreviation").val("");
  34. }
  35. if($data.foundTime) {
  36. var oTime = timeGeshi($data.foundTime);
  37. $("#createTime").val(oTime);
  38. } else {
  39. $("#createTime").val("");
  40. }
  41. if($data.province) {
  42. $("#oprovince").text($data.province);
  43. } else {
  44. $("#oprovince").text("请选择企业总部所在省或直辖市");
  45. }
  46. if($data.city) {
  47. $("#ocity").text($data.city);
  48. } else {
  49. $("#ocity").text("请选择企业总部所在城市");
  50. }
  51. if($data.descp) {
  52. $("textarea").val($data.descp);
  53. }
  54. if($data.orgSize) {
  55. $("#qualificationList").find("li").removeClass("cmpBg listactive");
  56. switch($data.orgSize) {
  57. case '1':
  58. $("#qualificationList").find("li").eq(0).addClass("cmpBg listactive");
  59. break;
  60. case '2':
  61. $("#qualificationList").find("li").eq(1).addClass("cmpBg listactive")
  62. break;
  63. case '3':
  64. $("#qualificationList").find("li").eq(2).addClass("cmpBg listactive")
  65. break;
  66. case '4':
  67. $("#qualificationList").find("li").eq(3).addClass("cmpBg listactive")
  68. break;
  69. case '5':
  70. $("#qualificationList").find("li").eq(4).addClass("cmpBg listactive")
  71. break;
  72. case '6':
  73. $("#qualificationList").find("li").eq(5).addClass("cmpBg listactive")
  74. break;
  75. default:
  76. break;
  77. }
  78. }
  79. if($data.orgType) {
  80. $("#orgType").find("li").removeClass("cmpBg listactive");
  81. switch($data.orgType) {
  82. case '2':
  83. $("#orgType").find("li").eq(0).addClass("cmpBg listactive");
  84. break;
  85. case '3':
  86. $("#orgType").find("li").eq(1).addClass("cmpBg listactive")
  87. break;
  88. case '4':
  89. $("#orgType").find("li").eq(2).addClass("cmpBg listactive")
  90. break;
  91. case '5':
  92. $("#orgType").find("li").eq(3).addClass("cmpBg listactive")
  93. break;
  94. case '6':
  95. $("#orgType").find("li").eq(4).addClass("cmpBg listactive")
  96. break;
  97. case '7':
  98. $("#orgType").find("li").eq(5).addClass("cmpBg listactive")
  99. break;
  100. default:
  101. break;
  102. }
  103. }
  104. if($data.industry) {
  105. indu($data.industry, '#industryList')
  106. }
  107. if($data.subject) {
  108. indu($data.subject, '#subjectList')
  109. }
  110. if($data.qualification) {
  111. indu($data.qualification, '.editUlistC ')
  112. }
  113. //省份城市颜色
  114. if($("#oprovince").text()=="请选择企业总部所在省或直辖市"){
  115. $("#oprovince").removeClass("mr_select");
  116. }else{
  117. $("#oprovince").addClass("mr_select");
  118. }
  119. if($("#ocity").text()=="请选择企业总部所在城市"){
  120. $("#ocity").removeClass("mr_select");
  121. }else{
  122. $("#ocity").addClass("mr_select");
  123. }
  124. }
  125. },
  126. error: function(XMLHttpRequest, textStats, errorThrown) {
  127. $.MsgBox.Alert('提示', '服务器请求失败')
  128. }
  129. })
  130. }
  131. companyInformation()
  132. /*时间格式*/
  133. function timeGeshi(otm) {
  134. var otme = otm.substring(0, 4) + "-" + otm.substring(4, 6) + "-" + otm.substring(6, 8);
  135. return otme;
  136. }
  137. /*企业简称限制在300字内*/
  138. function limitFont(e) {
  139. var pastedText;
  140. if (window.clipboardData  &&  window.clipboardData.getData)  {  // IE
  141.             
  142. pastedText  = $("textarea").val() +  window.clipboardData.getData('Text');          
  143. else  {            
  144. pastedText  = $("textarea").val() +  e.originalEvent.clipboardData.getData('Text'); //e.clipboardData.getData('text/plain');
  145.           
  146. }
  147. $("textarea").val(pastedText.substring(0, 300));
  148. }
  149. $("textarea").bind({
  150. paste: function(e) {
  151. limitFont(e);
  152. setTimeout(function() {
  153. $(".limitNum").find("span").text(300 - $("textarea").val().length);
  154. }, 1);
  155. e.preventDefault();
  156. },
  157. cut: function(e) {
  158. setTimeout(function() {
  159. $(".limitNum").find("span").text(300 - $("textarea").val().length);
  160. }, 1);
  161. },
  162. keyup: function(e) {
  163. if($("textarea").val().length > 300) {
  164. $("textarea").val($("textarea").val().substring(0, 300));
  165. e.preventDefault();
  166. }
  167. setTimeout(function() {
  168. $(".limitNum").find("span").text(300 - $("textarea").val().length);
  169. }, 1);
  170. }
  171. });
  172. /*应用行业及领域及企业资质*/
  173. function indu(oString, oSelector) {
  174. var arr = oString.split(",");
  175. var oArr = new Array();
  176. var i;
  177. for(i in arr) {
  178. oArr.push('<li>' + arr[i] + '<img src="images/con_icon_delete.png" /></li>');
  179. }
  180. $(oSelector).html(oArr.join(""));
  181. }
  182. /*删除*/
  183. $("body").on("click", "li img", function() {
  184. $(this).parent().remove();
  185. })
  186. /*添加*/
  187. $("button:contains('添加')").click(function() {
  188. var oValue = $(this).parent().siblings(".col-w-10").children("input").val().trim();
  189. var oJudge = $(this).parent().siblings("ul").find("li");
  190. if(!oValue) {
  191. $.MsgBox.Alert('提示', '请先填写内容');
  192. return;
  193. }
  194. if(oValue.length > 10) {
  195. $.MsgBox.Alert('提示', '添加内容不能超过10个字');
  196. return;
  197. }
  198. for(var i = 0; i < oJudge.length; i++) {
  199. if(oValue == oJudge[i].innerText) {
  200. $.MsgBox.Alert('提示', '添加内容不能重复');
  201. return;
  202. }
  203. }
  204. $(this).parent().siblings("ul").append('<li>' + oValue + '<img src="images/con_icon_delete.png" /></li>');
  205. $(this).parent().siblings(".col-w-10").children("input").val("");
  206. })
  207. /*选择单一选项*/
  208. $("#orgType,#qualificationList").on("click", "li", function() {
  209. var oClassName = $(this).addClass("cmpBg listactive").siblings().removeClass("cmpBg listactive");
  210. })
  211. /*保存*/
  212. $("button:contains('保存')").click(function() {
  213. /*var oBusinessAbbreviation = $("#businessAbbreviation").val().trim();
  214. var oTextArea = $("textarea").val().trim();
  215. var oBusinessType = $("#orgType").find("li.cmpBg.listactive").length;
  216. var oBusinessDimensions = $("#qualificationList").find("li.cmpBg.listactive").length;
  217. var oIndustryNumber = $("#industryList").find("li").length;
  218. var oSubjectNumber = $("#subjectList").find("li").length;
  219. var oEditUlistCNumber = $(".editUlistC ").find("li").length;
  220. if(!oBusinessAbbreviation) {
  221. $.MsgBox.Alert('提示', '企业简称不能为空');
  222. return;
  223. }
  224. if(oBusinessAbbreviation.length > 10) {
  225. $.MsgBox.Alert('提示', '企业简称不能超过10个字');
  226. return;
  227. }
  228. if(!oTextArea) {
  229. $.MsgBox.Alert('提示', '企业简介不能为空');
  230. return;
  231. }
  232. if(oBusinessType == 0) {
  233. $.MsgBox.Alert('提示', '请选择企业类型');
  234. return;
  235. }
  236. if(oIndustryNumber == 0) {
  237. $.MsgBox.Alert('提示', '企业所属行业必填一项');
  238. return;
  239. }
  240. if(oSubjectNumber == 0) {
  241. $.MsgBox.Alert('提示', '企业所属领域必填一项');
  242. return;
  243. }
  244. if(oBusinessDimensions == 0) {
  245. $.MsgBox.Alert('提示', '请选择企业规模');
  246. return;
  247. }
  248. if(oEditUlistCNumber == 0) {
  249. $.MsgBox.Alert('提示', '企业资质必填一项');
  250. return;
  251. }*/
  252. var tex = $("#orgType").find("li.cmpBg.listactive").text();
  253. var oTextGui = $("#qualificationList").find("li.cmpBg.listactive").text();
  254. var $info = {};
  255. $info.id = id;
  256. if(cacheImageKey != null) {
  257. $info.fn = cacheImageKey;
  258. }
  259. $info.forShort = $("#businessAbbreviation").val();
  260. switch(tex) {
  261. case '上市企业':
  262. $info.orgType = 2;
  263. break;
  264. case '国有企业':
  265. $info.orgType = 3;
  266. break;
  267. case '合资企业':
  268. $info.orgType = 4;
  269. break;
  270. case '私人企业':
  271. $info.orgType = 5;
  272. break;
  273. case '外资企业':
  274. $info.orgType = 6;
  275. break;
  276. case '初创企业':
  277. $info.orgType = 7;
  278. break;
  279. default:
  280. break;
  281. }
  282. switch(oTextGui) {
  283. case '50人以内':
  284. $info.orgSize = 1;
  285. break;
  286. case '50-100人':
  287. $info.orgSize = 2;
  288. break;
  289. case '100-200人':
  290. $info.orgSize = 3;
  291. break;
  292. case '200-500人':
  293. $info.orgSize = 4;
  294. break;
  295. case '500-1000人':
  296. $info.orgSize = 5;
  297. break;
  298. case '1000人以上':
  299. $info.orgSize = 6;
  300. break;
  301. default:
  302. break;
  303. }
  304. if($("#inteAddress").val().trim()) {
  305. $info.orgUrl = $("#inteAddress").val();
  306. }
  307. if($("#oprovince").text() != "请选择企业总部所在省或直辖市") {
  308. $info.province = $("#oprovince").text();
  309. }
  310. if($("#ocity").text() != "请选择企业总部所在城市") {
  311. $info.city = $("#ocity").text();
  312. }
  313. if($("#createTime").val()) {
  314. $info.foundTime = st6($("#createTime").val());
  315. }
  316. $info.descp = $("textarea").val();
  317. $info.industry = oString("#industryList");
  318. $info.subject = oString("#subjectList");
  319. $info.qualification = oString(".editUlistC");
  320. $.ajax({
  321. url: "/ajax/org/update",
  322. type: "POST",
  323. data: $info,
  324. timeout: 10000,
  325. dataType: "json",
  326. beforeSend: function() {},
  327. success: function(data, textState) {
  328. if(data.success) {
  329. $.MsgBox.Alert('提示', '修改成功');
  330. $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain');
  331. setTimeout(function(){
  332. location.reload(false)
  333. },500);
  334. }
  335. },
  336. error: function(XMLHttpRequest, textStats, errorThrown) {
  337. $.MsgBox.Alert('提示', '服务器请求失败')
  338. }
  339. })
  340. })
  341. /*应用行业,学术领域,企业纸质生成字符串*/
  342. function oString(sele) {
  343. var len = $(sele).find("li");
  344. var arry = new Array();
  345. for(var i = 0; i < len.length; i++) {
  346. arry.push(len[i].innerText);
  347. }
  348. return arry.join(",");
  349. }
  350. /*时间转换成6位传给后台*/
  351. function st6(osr) {
  352. var tim = osr.substring(0, 4) + osr.substring(5, 7) + osr.substring(8, 10);
  353. return tim;
  354. }
  355. /*企业图片上传*/
  356. var uploader = WebUploader.create({
  357. auto: true,
  358. fileNumLimit: 1,
  359. swf: '../js/webuploader/Uploader.swf',
  360. server: '../ajax/cachedFileUpload',
  361. fileSingleSizeLimit: 5 * 1024 * 1024,
  362. pick: {
  363. id: "#filePicker",
  364. multiple: false
  365. },
  366. accept: {
  367. title: 'Images',
  368. extensions: 'jpg,jpeg,png',
  369. mimeTypes: 'image/gif,image/jpg,image/jpeg,image/bmp,image/png'
  370. }
  371. });
  372. // 当有文件添加进来的时候
  373. uploader.on('fileQueued', function(file) {
  374. fileId = file.id;
  375. var $li = $('<div id="' + file.id + '" class="file-item thumbnail">' + '<img>' + '</div>')
  376. $img = $li.find('img');
  377. var $list = $('#fileList');
  378. /*//判断上传文件格式
  379. var fileNameAll = file.name;
  380. var AllImgExt = ".jpg|.jpeg|.png|";
  381. var extName = fileNameAll.substring(fileNameAll.lastIndexOf(".")).toLowerCase(); //(把路径中的所有字母全部转换为小写)
  382. if(AllImgExt.indexOf(extName + "|") == -1) {
  383. var ErrMsg = "该文件类型不允许上传。请上传 " + AllImgExt + " 类型的文件,当前文件类型为" + extName;
  384. $.MsgBox.Alert('提示', ErrMsg);
  385. return false;
  386. }*/
  387. });
  388. uploader.onError = function( code ) {
  389. $.MsgBox.Alert('提示', '请上传jpg、jpeg、png格式的图片,大小不超过5M')
  390. };
  391. uploader.on('uploadSuccess', function(file, data) {
  392. uploader.removeFile(fileId);
  393. cacheImageKey = data.data[0].cacheKey;
  394. $("#oimg").attr("src", "/images/tmp/" + cacheImageKey);
  395. });
  396. /*取消*/
  397. $("#Ocancel").click(function() {
  398. location.href="cmp-workspaces.html"
  399. })
  400. /*选择省份*/
  401. $(document).on("click", "#Province li a", function() {
  402. var aVal = $(this).text();
  403. $(this).parent().parent().parent().find('.mr_show').text(aVal);
  404. $(this).parent().parent().parent().find('input[name=cho_Province]').val(aVal);
  405. if($("#oprovince").text()=="请选择企业总部所在省或直辖市"){
  406. $("#oprovince").removeClass("mr_select");
  407. $("#ocity").removeClass("mr_select");
  408. }else{
  409. $("#oprovince").addClass("mr_select");
  410. $("#ocity").removeClass("mr_select");
  411. }
  412. });
  413. /*选择城市填充js */
  414. $(document).on("click", "#City li a", function() {
  415. var aVal = $(this).text();
  416. $(this).parent().parent().parent().find('.mr_show').text(aVal);
  417. $(this).parent().parent().parent().find('input[name=cho_City]').val(aVal);
  418. if($("#ocity").text()=="请选择企业总部所在城市"){
  419. $("#ocity").removeClass("mr_select");
  420. }else{
  421. $("#ocity").addClass("mr_select");
  422. }
  423. });
  424. })