Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

common.js 7.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. var currentUrl = window.location.href;
  66. var r_url = '&referurl=' + encodeURIComponent(currentUrl); //{$web_domain}{$web_url}
  67. //window.location.href = 'https://www.zc10000.com/?m=user&c=Users&a=login'+r_url;
  68. window.open('https://www.zc10000.com/?m=user&c=Users&a=login'+r_url,'_blank');
  69. }else{
  70. layer.closeAll();
  71. }
  72. }, function(){
  73. //layer.msg('点击取消的回调');
  74. });
  75. }
  76. },
  77. error:function(e){
  78. layer.closeAll();
  79. layer.alert(e.responseText, {icon: 5});
  80. }
  81. });
  82. return false;
  83. });
  84. //文档点赞
  85. $('#like_btn').click(function (){
  86. layer.msg('正在处理');
  87. var aid = $(this).attr('aid');
  88. var title = $(this).attr('title');
  89. $.ajax({
  90. type: "POST",
  91. url: '/api/Ajax/get_user_like',
  92. data: {del_id:0,_ajax:1,aid:aid},
  93. dataType: 'json',
  94. success: function (data) {
  95. layer.closeAll();
  96. if(parseInt(data.code) == 1){
  97. layer.msg(data.msg, {icon: 1,title:false});
  98. //window.location.reload();
  99. //window.location.href = data.data.down;
  100. /*增加点赞数*/
  101. //data.data.likecount
  102. $("#likecount").html(data.data.likecount);
  103. //复选框
  104. if(data.data.type == 1 || data.data.type == '1'){
  105. console.log('1111');
  106. //勾选
  107. $('.btn-e').addClass('btn-e-active');
  108. }else{
  109. $('.btn-e').removeClass('btn-e-active');
  110. }
  111. }else{
  112. //layer.alert(data.msg, {icon: 5});
  113. layer.confirm(data.msg, {icon: 3}, function(){
  114. if(data.url != ''){
  115. window.open('https://www.zc10000.com/?m=user&c=Users&a=login', '_blank');
  116. }else{
  117. layer.closeAll();
  118. }
  119. }, function(){
  120. //layer.msg('点击取消的回调');
  121. });
  122. }
  123. },
  124. error:function(e){
  125. layer.closeAll();
  126. layer.alert(e.responseText, {icon: 5});
  127. }
  128. });
  129. return false;
  130. });
  131. //文档收藏
  132. $('#collect_btn').click(function (){
  133. layer.msg('正在处理');
  134. var aid = $(this).attr('aid');
  135. var title = $(this).attr('title');
  136. $.ajax({
  137. type: "POST",
  138. url: '/api/Ajax/get_user_collect',
  139. data: {del_id:0,_ajax:1,aid:aid},
  140. dataType: 'json',
  141. success: function (data) {
  142. layer.closeAll();
  143. if(parseInt(data.code) == 1){
  144. layer.msg(data.msg, {icon: 1,title:false});
  145. //window.location.reload();
  146. //window.location.href = data.data.down;
  147. /*增加点赞数*/
  148. //data.data.likecount
  149. $("#collection").html(data.data.collection);
  150. //复选框
  151. if(data.data.type == 1 || data.data.type == '1'){
  152. console.log('1111');
  153. //勾选
  154. $('.btn-d').addClass('btn-e-active');
  155. }else{
  156. $('.btn-d').removeClass('btn-e-active');
  157. }
  158. }else{
  159. //layer.alert(data.msg, {icon: 5});
  160. layer.confirm(data.msg, {icon: 3}, function(){
  161. if(data.url != ''){
  162. window.open('https://www.zc10000.com/?m=user&c=Users&a=login', '_blank');
  163. }else{
  164. layer.closeAll();
  165. }
  166. }, function(){
  167. //layer.msg('点击取消的回调');
  168. });
  169. }
  170. },
  171. error:function(e){
  172. layer.closeAll();
  173. layer.alert(e.responseText, {icon: 5});
  174. }
  175. });
  176. return false;
  177. });
  178. //点击分享
  179. $('#share_btn').on('click',function (){
  180. $('#share-box').toggle();
  181. if ($(this).hasClass('btn-e-active')) {
  182. // 存在class
  183. $('.btn-c').removeClass('btn-e-active');
  184. } else {
  185. // 不存在class
  186. $('.btn-c').addClass('btn-e-active');
  187. }
  188. });
  189. });