暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

common.js 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. //加载模块
  2. layui.use(function(){ //亦可加载特定模块:layui.use(['layer', 'laydate', function(){
  3. //得到各种内置组件
  4. var layer = layui.layer //弹层
  5. ,laypage = layui.laypage //分页
  6. ,laydate = layui.laydate //日期
  7. ,table = layui.table //表格
  8. ,carousel = layui.carousel //轮播
  9. ,upload = layui.upload //上传
  10. ,element = layui.element //元素操作
  11. ,slider = layui.slider //滑块
  12. ,dropdown = layui.dropdown //下拉菜单
  13. ,$ = layui.$;
  14. //下载文件函数
  15. function downFile(title,url){
  16. const filePath = url;
  17. const fileExt = filePath.substr(filePath.lastIndexOf('.') + 1);
  18. var title = title + '.' + fileExt;
  19. // 【步骤1】创建一个文件,该文件支持写入操作
  20. const fileStream = streamSaver.createWriteStream(title);
  21. // 这里传入的是下载后的文件名,这个名字可以自定义
  22. // 【步骤2】使用 fetch 方法访问文件的url,将内容一点点的放到 StreamSaver 创建的文件里
  23. fetch(url).then(res => {
  24. const readableStream = res.body
  25. if (window.WritableStream && readableStream.pipeTo) {
  26. return readableStream.pipeTo(fileStream)
  27. .then(() => console.log('完成写入'))
  28. }
  29. // 【步骤3】监听文件内容是否读取完整,读取完就执行“保存并关闭文件”的操作。
  30. window.writer = fileStream.getWriter()
  31. const reader = res.body.getReader()
  32. const pump = () => reader.read()
  33. .then(res => res.done
  34. ? writer.close()
  35. : writer.write(res.value).then(pump)
  36. )
  37. pump()
  38. });
  39. }
  40. //点击下载文档
  41. $('#down_btn').click(function (){
  42. layer.msg('正在处理');
  43. var aid = $(this).attr('aid');
  44. var title = $(this).attr('title');
  45. $.ajax({
  46. type: "POST",
  47. url: '/api/Ajax/get_user_download',
  48. data: {del_id:0,_ajax:1,aid:aid},
  49. dataType: 'json',
  50. success: function (data) {
  51. layer.closeAll();
  52. if(parseInt(data.code) == 1){
  53. layer.msg(data.msg, {icon: 1});
  54. //window.location.reload();
  55. //window.location.href = data.data.down;
  56. /*启动下载*/
  57. //downFile(title,data.data.down);
  58. //window.location.href = data.data.down;
  59. window.open(data.data.down,"_blank");
  60. }else{
  61. //layer.alert(data.msg, {icon: 5});
  62. layer.confirm(data.msg, {icon: 3,title:false}, function(){
  63. if(data.url != ''){
  64. window.open('https://www.zc10000.com/?m=user&c=Users&a=login', '_blank');
  65. }else{
  66. layer.closeAll();
  67. }
  68. }, function(){
  69. //layer.msg('点击取消的回调');
  70. });
  71. }
  72. },
  73. error:function(e){
  74. layer.closeAll();
  75. layer.alert(e.responseText, {icon: 5});
  76. }
  77. });
  78. return false;
  79. });
  80. //文档点赞
  81. $('#like_btn').click(function (){
  82. layer.msg('正在处理');
  83. var aid = $(this).attr('aid');
  84. var title = $(this).attr('title');
  85. $.ajax({
  86. type: "POST",
  87. url: '/api/Ajax/get_user_like',
  88. data: {del_id:0,_ajax:1,aid:aid},
  89. dataType: 'json',
  90. success: function (data) {
  91. layer.closeAll();
  92. if(parseInt(data.code) == 1){
  93. layer.msg(data.msg, {icon: 1,title:false});
  94. //window.location.reload();
  95. //window.location.href = data.data.down;
  96. /*增加点赞数*/
  97. //data.data.likecount
  98. $("#likecount").html(data.data.likecount);
  99. //复选框
  100. if(data.data.type == 1 || data.data.type == '1'){
  101. console.log('1111');
  102. //勾选
  103. $('.btn-e').addClass('btn-e-active');
  104. }else{
  105. $('.btn-e').removeClass('btn-e-active');
  106. }
  107. }else{
  108. //layer.alert(data.msg, {icon: 5});
  109. layer.confirm(data.msg, {icon: 3}, function(){
  110. if(data.url != ''){
  111. window.open('https://www.zc10000.com/?m=user&c=Users&a=login', '_blank');
  112. }else{
  113. layer.closeAll();
  114. }
  115. }, function(){
  116. //layer.msg('点击取消的回调');
  117. });
  118. }
  119. },
  120. error:function(e){
  121. layer.closeAll();
  122. layer.alert(e.responseText, {icon: 5});
  123. }
  124. });
  125. return false;
  126. });
  127. //文档收藏
  128. $('#collect_btn').click(function (){
  129. layer.msg('正在处理');
  130. var aid = $(this).attr('aid');
  131. var title = $(this).attr('title');
  132. $.ajax({
  133. type: "POST",
  134. url: '/api/Ajax/get_user_collect',
  135. data: {del_id:0,_ajax:1,aid:aid},
  136. dataType: 'json',
  137. success: function (data) {
  138. layer.closeAll();
  139. if(parseInt(data.code) == 1){
  140. layer.msg(data.msg, {icon: 1,title:false});
  141. //window.location.reload();
  142. //window.location.href = data.data.down;
  143. /*增加点赞数*/
  144. //data.data.likecount
  145. $("#collection").html(data.data.collection);
  146. //复选框
  147. if(data.data.type == 1 || data.data.type == '1'){
  148. console.log('1111');
  149. //勾选
  150. $('.btn-d').addClass('btn-e-active');
  151. }else{
  152. $('.btn-d').removeClass('btn-e-active');
  153. }
  154. }else{
  155. //layer.alert(data.msg, {icon: 5});
  156. layer.confirm(data.msg, {icon: 3}, function(){
  157. if(data.url != ''){
  158. window.open('https://www.zc10000.com/?m=user&c=Users&a=login', '_blank');
  159. }else{
  160. layer.closeAll();
  161. }
  162. }, function(){
  163. //layer.msg('点击取消的回调');
  164. });
  165. }
  166. },
  167. error:function(e){
  168. layer.closeAll();
  169. layer.alert(e.responseText, {icon: 5});
  170. }
  171. });
  172. return false;
  173. });
  174. //点击分享
  175. $('#share_btn').on('click',function (){
  176. $('#share-box').toggle();
  177. if ($(this).hasClass('btn-e-active')) {
  178. // 存在class
  179. $('.btn-c').removeClass('btn-e-active');
  180. } else {
  181. // 不存在class
  182. $('.btn-c').addClass('btn-e-active');
  183. }
  184. });
  185. });