portal html css js resource

cmp-setAuth.js 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. //企业认证
  2. $(function() {
  3. var orgid = $.cookie('orgId');
  4. if(orgid == "" || orgid == null || orgid == "null"){
  5. location.href = "cmp-settled-log.html";
  6. }
  7. var auth = GetQueryString("auth");
  8. var temp = [];
  9. /*查询企业认证状态*/
  10. authStatus();
  11. $("#authsubmet").on("click", function() {
  12. var fileoneVal = $("#fileone1").attr("data-id");
  13. var filetwoVal = $("#fileone2").attr("data-id");
  14. if(fileoneVal == "") {
  15. $.MsgBox.Alert('提示', '请上传《企业法人营业执照》');
  16. } else if(filetwoVal == "") {
  17. $.MsgBox.Alert('提示', '请上传加盖公章的《入驻科袖授权证明》');
  18. } else {
  19. temp.push(fileoneVal);
  20. temp.push(filetwoVal);
  21. authsubmetFun(temp);
  22. }
  23. })
  24. function authStatus() {
  25. $.ajax("/ajax/org/authStatus", {
  26. data: {
  27. "id": orgid
  28. },
  29. type: "GET",
  30. dataType: 'json',
  31. async: false,
  32. success: function($data) {
  33. console.log($data)
  34. if($data.success) {
  35. if($data.data == -1) { //认证失败
  36. $(".authsb").removeClass("displayNone");
  37. $("#authsb").on("click", function() {
  38. $(this).parents(".authsb").addClass("displayNone");
  39. $(".authup").removeClass("displayNone");
  40. })
  41. } else if($data.data == 0) { //未认证
  42. if(auth==1){
  43. $(".authup").removeClass("displayNone");
  44. }else{
  45. $(".authks").removeClass("displayNone");
  46. $("#authks").on("click", function() {
  47. $(this).parents(".authks").addClass("displayNone");
  48. $(".authup").removeClass("displayNone");
  49. })
  50. }
  51. } else if($data.data == 1) { //待认证
  52. $(".authtj").removeClass("displayNone");
  53. } else if($data.data == 2) { //认证中
  54. $(".authz").removeClass("displayNone");
  55. } else if($data.data == 3) { //已认证
  56. $(".authok").removeClass("displayNone");
  57. } else {
  58. $.MsgBox.Alert('提示', '不存在该企业或该企业认证状态为空');
  59. }
  60. }
  61. },
  62. error: function() {
  63. $.MsgBox.Alert('提示', '服务器请求失败');
  64. },
  65. });
  66. }
  67. function authsubmetFun(temp) {
  68. console.log(temp)
  69. console.log(orgid)
  70. $.ajax("/ajax/authApply/org", {
  71. data: {
  72. "professorId": orgid,
  73. "fns": temp
  74. },
  75. type: "POST",
  76. dataType: 'json',
  77. async: false,
  78. traditional: true, //传数组必须加这个
  79. success: function($data) {
  80. console.log($data)
  81. if($data.success) {
  82. //location.reload(true);
  83. location.href = "cmp-setAuth.html";
  84. }
  85. },
  86. error: function() {
  87. $.MsgBox.Alert('提示', '服务器请求失败');
  88. },
  89. });
  90. }
  91. })