portal html css js resource

resourceList.js 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. $(document).ready(function(){
  2. loginStatus(); //判断个人是否登录
  3. var userid = $.cookie("userid");
  4. var resourceId;
  5. /*资源列表查询*/
  6. function getRecourceMe(n,isbind) {
  7. var resourceNameVa=$("#resouceName").val();
  8. var $info={};
  9. $info.professorId=userid;
  10. $info.pageSize=3;
  11. if(resourceNameVa !="") {
  12. $info.key=resourceNameVa;
  13. }
  14. $info.pageNo=n;
  15. $.ajax({
  16. "url": "/ajax/resource/pqSelf",
  17. "type": "GET",
  18. "success": function(data) {
  19. console.log(data)
  20. if(data.success) {
  21. $("#resourceList").html("");
  22. if(data.data.data.length==0) {
  23. $("#resourceList").html("暂无数据").css("text-align","center");
  24. return;
  25. }else{
  26. $("#resourceList").css("text-align","");
  27. }
  28. resourceHtml(data.data.data);
  29. if(isbind == true) {
  30. $(".tcdPageCode").createPage({
  31. pageCount: Math.ceil(data.data.total / data.data.pageSize),
  32. current: data.data.pageNo,
  33. backFn: function(p) {
  34. getRecourceMe(p,false);
  35. }
  36. });
  37. }
  38. }
  39. },
  40. "data": $info,
  41. dataType: "json",
  42. 'error': function() {
  43. $.MsgBox.Alert('提示', '服务器连接超时!');
  44. }
  45. });
  46. }
  47. getRecourceMe(1,true);
  48. function resourceHtml($data) {
  49. for(var i=0;i<$data.length;i++) {
  50. var imgSrc="../images/default-resource.jpg";
  51. var oTime,pageview="",draftLable="",oHtml,oLi='';
  52. if($data[i].images.length) {
  53. imgSrc="/data/resource/"+$data[i].images[0].imageSrc
  54. }
  55. console.log($data[i].status)
  56. if($data[i].status==0) {
  57. oTime="修改于 "+timeTran($data[i].modifyTime);
  58. draftLable='<span class="draftLable">草稿</span>';
  59. oHtml="resourceIssue.html";
  60. oLi="class='draftList'"
  61. }else{
  62. oTime="发布于 "+timeTran($data[i].publishTime);
  63. pageview='<li><span>阅读量 '+$data[i].pageViews+'</span></li>';
  64. oHtml="resourceShow.html"
  65. }
  66. var oStr='<li '+oLi+'>'+
  67. '<a href="'+oHtml+'?resourceId='+$data[i].resourceId+'" target="_blank">'+
  68. '<div class="madiaHead resouseHead" style="background-image: url('+imgSrc+');"></div>' +
  69. '<div class="madiaInfo">'+
  70. '<p class="h1Font ellipsisSty">'+$data[i].resourceName+'</p>'+
  71. '<ul class="h2Font clearfix">'+
  72. '<li><span>'+oTime+'</span></li>'+pageview+
  73. '</ul>'+draftLable+
  74. '</div>'+
  75. '</a>'+
  76. '<ul class="madiaEdit">'+
  77. '<li><span class="deteleThis2" data-id="'+$data[i].resourceId+'"></span></li>'+
  78. '<li><span class="editThis" data-id="'+$data[i].resourceId+'"></span></li>'+
  79. '</ul>'+
  80. '</li>'
  81. $("#resourceList").append(oStr);
  82. }
  83. }
  84. /*时间格式转换*/
  85. function timeTran(otm) {
  86. var month, day, hour, minu;
  87. var monFirst = otm.substring(4, 5);
  88. var dayFirst = otm.substring(6, 7);
  89. if(monFirst == "0") {
  90. month = otm.substring(5, 6)
  91. } else {
  92. month = otm.substring(4, 6)
  93. }
  94. if(dayFirst == "0") {
  95. day = otm.substring(7, 8);
  96. } else {
  97. day = otm.substring(6, 8);
  98. }
  99. hour = otm.substring(8, 10);
  100. minu = otm.substring(10, 12);
  101. return month + "月" + day + "日 " + hour + ":" + minu;
  102. }
  103. /*点击修改跳转修改页面*/
  104. $("#resourceList").on("click",".editThis",function(){
  105. location.href="resourceIssue.html?resourceId="+$(this).attr("data-id")
  106. })
  107. /*点击删除跳转修改页面*/
  108. $("#resourceList").on("click",".deteleThis2",function(){
  109. resourceId=$(this).attr("data-id");
  110. $.MsgBox.Confirm("提示", "确认删除该资源?",deleResource);
  111. })
  112. /*删除函数*/
  113. function deleResource() {
  114. $.ajax({
  115. "url": "/ajax/resource/delete",
  116. "type": "POST",
  117. "success": function(data) {
  118. if(data.success) {
  119. getRecourceMe(1,false);
  120. }
  121. },
  122. "data": {"resourceId":resourceId},
  123. "beforeSend": function() { /*console.log(this.data)*/ },
  124. "contentType": "application/x-www-form-urlencoded",
  125. dataType: "json"
  126. });
  127. }
  128. /*输入资源名称限制字数*/
  129. $("#resouceName").bind({
  130. keyup: function() {
  131. if($(this).val().length > 30) {
  132. $(this).val($(this).val().substr(0, 30));
  133. }
  134. }
  135. });
  136. /*点击搜索*/
  137. $(".searchSpan").click(function(){
  138. $(".tcdPageCode").remove();
  139. $(".aboutRes").append('<div class="tcdPageCode"></div>');
  140. getRecourceMe(1,true);
  141. })
  142. })