No Description

upload.js 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. var typenum,authStatus;
  2. var userid = $.cookie("userid");
  3. var sett = GetQueryString("set");
  4. if(sett==3){
  5. $("#sfnav").addClass("bgcolor").siblings().removeClass("bgcolor");
  6. $("#sfbox").show().siblings().hide();
  7. }
  8. //角色切换
  9. $(".IdentityChoice").on("click",".boxnav li",function(){
  10. $(this).addClass("set").siblings().removeClass("set");
  11. })
  12. //初始化身份状态
  13. $.ajax("/ajax/professor/auth",{
  14. data:{"id":userid},
  15. type:"GET",
  16. dataType: 'json',
  17. async: false,
  18. success:function(data){
  19. var $info = data.data || {};
  20. if(data.success && data.data) {
  21. authStatus=$info.authStatus;
  22. console.log(authStatus)
  23. if($info.authStatus==0){
  24. $(".identProcess").text("暂时还未进行身份认证");
  25. $(".identBtn").text("现在去认证");
  26. }else if($info.authStatus==1){
  27. $(".identProcess").text("已经通过身份认证");
  28. $(".identBtn").text("重新认证");
  29. }else if($info.authStatus==2){
  30. $(".identProcess").text("身份待审核 ");
  31. $(".identts").text("(认证审核期间不能重复认证操作) ");
  32. $(".identBtn").hide();
  33. }else if($info.authStatus==3){
  34. $(".identProcess").text("身份审核中");
  35. $(".identts").text("(认证审核期间不能重复认证操作) ");
  36. $(".identBtn").hide();
  37. }else if($info.authStatus==4){
  38. $(".identProcess").text("身份认证通过,请重新认证");
  39. $(".identBtn").text("重新认证");
  40. }else if($info.authStatus==5){
  41. $(".identProcess").text("身份认证失败,请重新认证");
  42. $(".identBtn").text("重新认证");
  43. }
  44. typenum = $info.authentication;
  45. authStatus=$info.authStatus;
  46. }else{
  47. $.MsgBox.Alert("消息提醒","系统异常!");
  48. }
  49. },
  50. error:function(){
  51. $.MsgBox.Alert("消息提醒","系统异常!");
  52. }
  53. });
  54. $(".boxnav span").each(function () {
  55. var datanum =$(this).attr("data-num");
  56. if(datanum==typenum){
  57. $(this).parent().addClass("set");
  58. }
  59. });
  60. $(".identBtn").on("click",function(){
  61. if(authStatus==0 && authStatus==4 && authStatus==5){
  62. $(".IdentityUp").show();
  63. }else if(authStatus==1){
  64. $(".IdentityUp").show();
  65. }
  66. })
  67. //提交上传
  68. $('.subUp').on("click", function() {
  69. var imglen = $(".uploader-list .thumbnail").length;
  70. if(imglen == 0) {
  71. $.MsgBox.Alert("消息提醒","请上传能够证明您身份的相关证件");
  72. } else {
  73. typename(userid, typenum);
  74. }
  75. })
  76. //添加认证申请信息
  77. function typename(userid, usertype) {
  78. $.ajax("/ajax/authApply",{
  79. data:{"professorId":userid,"applyType":usertype},
  80. type:"post",
  81. dataType: 'json',
  82. async: false,
  83. success:function(data){
  84. if(data.success) {
  85. var authapplyid = data.data;
  86. $(".uploader-list img").each(function() {
  87. var str = $(this).attr("src");
  88. var base64 = str.replace("data:image/jpeg;base64,", "");
  89. //console.log(base64);
  90. typeimg(authapplyid, base64);
  91. });
  92. }else{
  93. $.MsgBox.Alert("消息提醒","系统异常!");
  94. }
  95. },
  96. error:function(){
  97. $.MsgBox.Alert("消息提醒","系统异常!");
  98. }
  99. });
  100. }
  101. //添加申请认证图片
  102. function typeimg(authapplyid, base64) {
  103. $.ajax("/ajax/authImage",{
  104. data:{"authApplyId":authapplyid,"base64":base64},
  105. type:"post",
  106. dataType: 'json',
  107. async: false,
  108. success:function(data){
  109. if(data.success) {
  110. $.MsgBox.Alert("消息提醒","认证图片上传成功");
  111. window.location.href="account-set.html?set=3";
  112. }
  113. },
  114. error:function(){
  115. $.MsgBox.Alert("消息提醒","系统异常!");
  116. }
  117. });
  118. }
  119. /*图片上传*/
  120. var uploader = WebUploader.create({
  121. auto: true,// 选完文件后,是否自动上传。
  122. swf: 'webuploader/Uploader.swf',// swf文件路径
  123. pick: '#filePicker', // 选择文件的按钮。可选。
  124. duplicate :true ,//允许图片重复上传
  125. // 只允许选择图片文件。
  126. accept: {
  127. title: 'Images',
  128. extensions: 'gif,jpg,jpeg,bmp,png',
  129. mimeTypes: 'image/*'
  130. }
  131. });
  132. // 当有文件添加进来的时候
  133. uploader.on( 'fileQueued', function( file ) {
  134. var $li = $(
  135. '<div id="' + file.id + '" class="file-item thumbnail">' +
  136. '<img>' +
  137. //'<div class="info">' + file.name + '</div>' +
  138. '</div>'
  139. ),
  140. $btns = $('<div class="file-panel">' +
  141. '<span class="cancel">删除</span>' +
  142. '</div>').appendTo( $li ),
  143. $img = $li.find('img');
  144. var $list = $("#fileList");
  145. $list.prepend( $li );
  146. // 创建缩略图
  147. // 如果为非图片文件,可以不用调用此方法。
  148. // thumbnailWidth x thumbnailHeight 为 100 x 100
  149. uploader.makeThumb( file, function( error, src ) {
  150. if ( error ) {
  151. $img.replaceWith('<span>不能预览</span>');
  152. return;
  153. }
  154. $img.attr( 'src', src );
  155. }, 1000, 1000 );
  156. $li.on( 'mouseenter', function() {
  157. $btns.stop().animate({height: 30});
  158. });
  159. $li.on( 'mouseleave', function() {
  160. $btns.stop().animate({height: 0});
  161. });
  162. });
  163. /*
  164. // 文件上传成功,给item添加成功class, 用样式标记上传成功。
  165. uploader.on( 'uploadSuccess', function( file ) {
  166. });*/
  167. $("#fileList").on("click",".cancel",function(){
  168. $(this).parent().parent().remove();
  169. })
  170. $(".webuploader-pick").css({"width":"100px","height":"100px"});
  171. /*图片上传结束*/