Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

common.js 7.7KB

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