Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. <div id="to-top" class="to-top" title="返回顶部">
  2. <img src="https://oss.zc10000.com/static/images/totop.png" alt="">
  3. </div>
  4. </body>
  5. <script>
  6. //加载模块
  7. layui.use(function(){ //亦可加载特定模块:layui.use(['layer', 'laydate', function(){
  8. //得到各种内置组件
  9. var layer = layui.layer //弹层
  10. ,laypage = layui.laypage //分页
  11. ,laydate = layui.laydate //日期
  12. ,table = layui.table //表格
  13. ,carousel = layui.carousel //轮播
  14. ,upload = layui.upload //上传
  15. ,element = layui.element //元素操作
  16. ,slider = layui.slider //滑块
  17. ,dropdown = layui.dropdown //下拉菜单
  18. ,$ = layui.$;
  19. carousel.render({
  20. elem: '#banner'
  21. ,arrow: 'always'
  22. });
  23. //回到顶部
  24. $(document).on('scroll', function() {
  25. var $pageScrollTop = $(this).scrollTop()
  26. if ($pageScrollTop > 200) {
  27. $('#to-top').show()
  28. } else {
  29. $('#to-top').hide()
  30. }
  31. })
  32. $('#to-top').on('click', function() {
  33. $('html, body').stop().animate({
  34. scrollTop: 0
  35. })
  36. });
  37. //自定义按钮打开客服
  38. //使用模拟点击
  39. $(".open_shangqiao").click(function(event) {
  40. if ($('#aff-im-root .embed-icon-default').length > 0) {
  41. $('#aff-im-root .embed-icon-default').click();
  42. }
  43. });
  44. //提示暂未开放
  45. $('.no_open').click(function(event) {
  46. layer.msg("该功能暂未开放");
  47. });
  48. //产品详情页 锚文本 导航
  49. $(document).ready(function() {
  50. $("#div1Link1").click(function() {
  51. $("html, body").animate({
  52. scrollTop: $("#divcon1").offset().top }, {duration: 500,easing: "swing"});
  53. return false;
  54. });
  55. $("#div1Link2").click(function() {
  56. $("html, body").animate({
  57. scrollTop: $("#divcon2").offset().top }, {duration: 500,easing: "swing"});
  58. return false;
  59. });
  60. $("#div1Link3").click(function() {
  61. $("html, body").animate({
  62. scrollTop: $("#divcon3").offset().top }, {duration: 500,easing: "swing"});
  63. return false;
  64. });
  65. $("#div1Link4").click(function() {
  66. $("html, body").animate({
  67. scrollTop: $("#divcon4").offset().top }, {duration: 500,easing: "swing"});
  68. return false;
  69. });
  70. $("#div1Link5").click(function() {
  71. $("html, body").animate({
  72. scrollTop: $("#divcon5").offset().top }, {duration: 500,easing: "swing"});
  73. return false;
  74. });
  75. });
  76. //省站和城市站 tab切换
  77. $('.list-s-11-content .top .tab-a').on('click',function (){
  78. var index = $(this).index();
  79. console.log(index);
  80. if(index === 2){
  81. var ins = 2;
  82. }
  83. if(index === 3){
  84. var ins = 1;
  85. }
  86. if(index === 4){
  87. var ins = 0;
  88. }
  89. $('.list-s-11-content .center .box_1').hide();
  90. $('.list-s-11-content .center .box_1:eq('+ins+')').show();
  91. $('.list-s-11-content .bottom .box-bot-1').hide();
  92. $('.list-s-11-content .bottom .box-bot-1:eq('+ins+')').show();
  93. $('.list-s-11-content .top a').removeClass('tab-a-active');
  94. $(this).addClass('tab-a-active');
  95. });
  96. //下载文件函数
  97. function downFile(title,url){
  98. const filePath = url;
  99. const fileExt = filePath.substr(filePath.lastIndexOf('.') + 1);
  100. var title = title + '.' + fileExt;
  101. // 【步骤1】创建一个文件,该文件支持写入操作
  102. const fileStream = streamSaver.createWriteStream(title);
  103. // 这里传入的是下载后的文件名,这个名字可以自定义
  104. // 【步骤2】使用 fetch 方法访问文件的url,将内容一点点的放到 StreamSaver 创建的文件里
  105. fetch(url).then(res => {
  106. const readableStream = res.body
  107. if (window.WritableStream && readableStream.pipeTo) {
  108. return readableStream.pipeTo(fileStream)
  109. .then(() => console.log('完成写入'))
  110. }
  111. // 【步骤3】监听文件内容是否读取完整,读取完就执行“保存并关闭文件”的操作。
  112. window.writer = fileStream.getWriter()
  113. const reader = res.body.getReader()
  114. const pump = () => reader.read()
  115. .then(res => res.done
  116. ? writer.close()
  117. : writer.write(res.value).then(pump)
  118. )
  119. pump()
  120. });
  121. }
  122. //点击下载文档
  123. $('#down_btn').click(function (){
  124. layer.msg('正在处理');
  125. var aid = $(this).attr('aid');
  126. var title = $(this).attr('title');
  127. $.ajax({
  128. type: "POST",
  129. url: '/api/Ajax/get_user_download',
  130. data: {del_id:0,_ajax:1,aid:aid},
  131. dataType: 'json',
  132. success: function (data) {
  133. layer.closeAll();
  134. if(parseInt(data.code) == 1){
  135. layer.msg(data.msg, {icon: 1});
  136. //window.location.reload();
  137. //window.location.href = data.data.down;
  138. /*启动下载*/
  139. downFile(title,data.data.down);
  140. }else{
  141. //layer.alert(data.msg, {icon: 5});
  142. layer.confirm(data.msg, {icon: 3}, function(){
  143. if(data.url != ''){
  144. window.open('https://www.zc10000.com/?m=user&c=Users&a=login', '_blank');
  145. }else{
  146. layer.closeAll();
  147. }
  148. }, function(){
  149. //layer.msg('点击取消的回调');
  150. });
  151. }
  152. },
  153. error:function(e){
  154. layer.closeAll();
  155. layer.alert(e.responseText, {icon: 5});
  156. }
  157. });
  158. return false;
  159. });
  160. //文档点赞
  161. $('#like_btn').click(function (){
  162. layer.msg('正在处理');
  163. var aid = $(this).attr('aid');
  164. var title = $(this).attr('title');
  165. $.ajax({
  166. type: "POST",
  167. url: '/api/Ajax/get_user_like',
  168. data: {del_id:0,_ajax:1,aid:aid},
  169. dataType: 'json',
  170. success: function (data) {
  171. layer.closeAll();
  172. if(parseInt(data.code) == 1){
  173. layer.msg(data.msg, {icon: 1});
  174. //window.location.reload();
  175. //window.location.href = data.data.down;
  176. /*增加点赞数*/
  177. //data.data.likecount
  178. $("#likecount").html(data.data.likecount);
  179. //复选框
  180. if(data.data.type == 1 || data.data.type == '1'){
  181. console.log('1111');
  182. //勾选
  183. $('.btn-e').addClass('btn-e-active');
  184. }else{
  185. $('.btn-e').removeClass('btn-e-active');
  186. }
  187. }else{
  188. //layer.alert(data.msg, {icon: 5});
  189. layer.confirm(data.msg, {icon: 3}, function(){
  190. if(data.url != ''){
  191. window.open('https://www.zc10000.com/?m=user&c=Users&a=login', '_blank');
  192. }else{
  193. layer.closeAll();
  194. }
  195. }, function(){
  196. //layer.msg('点击取消的回调');
  197. });
  198. }
  199. },
  200. error:function(e){
  201. layer.closeAll();
  202. layer.alert(e.responseText, {icon: 5});
  203. }
  204. });
  205. return false;
  206. });
  207. //文档收藏
  208. $('#collect_btn').click(function (){
  209. layer.msg('正在处理');
  210. var aid = $(this).attr('aid');
  211. var title = $(this).attr('title');
  212. $.ajax({
  213. type: "POST",
  214. url: '/api/Ajax/get_user_collect',
  215. data: {del_id:0,_ajax:1,aid:aid},
  216. dataType: 'json',
  217. success: function (data) {
  218. layer.closeAll();
  219. if(parseInt(data.code) == 1){
  220. layer.msg(data.msg, {icon: 1});
  221. //window.location.reload();
  222. //window.location.href = data.data.down;
  223. /*增加点赞数*/
  224. //data.data.likecount
  225. $("#collection").html(data.data.collection);
  226. //复选框
  227. if(data.data.type == 1 || data.data.type == '1'){
  228. console.log('1111');
  229. //勾选
  230. $('.btn-d').addClass('btn-e-active');
  231. }else{
  232. $('.btn-d').removeClass('btn-e-active');
  233. }
  234. }else{
  235. //layer.alert(data.msg, {icon: 5});
  236. layer.confirm(data.msg, {icon: 3}, function(){
  237. if(data.url != ''){
  238. window.open('https://www.zc10000.com/?m=user&c=Users&a=login', '_blank');
  239. }else{
  240. layer.closeAll();
  241. }
  242. }, function(){
  243. //layer.msg('点击取消的回调');
  244. });
  245. }
  246. },
  247. error:function(e){
  248. layer.closeAll();
  249. layer.alert(e.responseText, {icon: 5});
  250. }
  251. });
  252. return false;
  253. });
  254. //点击分享
  255. $('#share_btn').on('click',function (){
  256. $('#share-box').toggle();
  257. if ($(this).hasClass('btn-e-active')) {
  258. // 存在class
  259. $('.btn-c').removeClass('btn-e-active');
  260. } else {
  261. // 不存在class
  262. $('.btn-c').addClass('btn-e-active');
  263. }
  264. });
  265. });
  266. </script>
  267. </html>