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 9.7KB

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