public.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. window.onload=function(){
  2. //导航
  3. if($('.carousel-inner div').length<=1){
  4. $('#myCarousel').removeClass('slide');
  5. }
  6. //百度统计图片处理
  7. navTop()
  8. //导航
  9. function navTop() {
  10. $(window).scroll(function(){
  11. var scrolltop=$(document).scrollTop();
  12. if(scrolltop>0){
  13. $('.topNav').addClass('navFix')
  14. }else{
  15. $('.topNav').removeClass('navFix');
  16. }
  17. });
  18. }
  19. $(".index_blur").html("×");
  20. $(".pub_fix").after("<div class='right_cebian'>侧边导航</div>");
  21. $(".index_blur").click(function(){
  22. $(".pub_fix").animate({right:"-70px"},"fast",function(){
  23. $(".right_cebian").show("fast");
  24. });
  25. });
  26. $(".right_cebian").click(function(){
  27. $(".right_cebian").hide("fast");
  28. $(".pub_fix").animate({right:"20px"},"fast",function(){
  29. });
  30. });
  31. //二级导航
  32. $('.nav ul li').mouseenter(function(){
  33. $(this).find('.subnavigation').slideDown(100);
  34. });
  35. $('.nav ul li').mouseleave(function(){
  36. $(this).find('.subnavigation').slideUp(100);
  37. $('.nav ul li').stop(false,true);
  38. });
  39. //挂件
  40. $(window).scroll(function(){
  41. // 滚动条距离顶部的距离 大于 200px时
  42. if($(window).scrollTop() >= 200){
  43. $('.pub_fix ul li:eq(0)').addClass('active'); // 开始淡入
  44. } else{
  45. $('.pub_fix ul li:eq(0)').removeClass('active'); // 如果小于等于 200 淡出
  46. }
  47. });
  48. $('.pendent_box').click(function(e){
  49. e.preventDefault();
  50. $("body,html").animate({scrollTop:0},500)
  51. });
  52. //登陆页面
  53. var hht=$(window).height();
  54. $('.login').height(hht);
  55. //点击x
  56. $('.log_del').click(function(){
  57. $('#Lo_user').val('');
  58. $('#Lo_user').focus();
  59. $('#Lo_user').css({color:'#333333'});
  60. })
  61. // 登陆事件
  62. $('.head_login').click(function(e){
  63. e.preventDefault();
  64. $('.login').fadeIn(800)
  65. $('#form_register').fadeOut(800)
  66. })
  67. $('.login_close').click(function(){
  68. let urlHref = window.location.href;
  69. if(urlHref.indexOf('signIn')>-1){
  70. $('.login').fadeOut(800)
  71. $('#form_register').fadeIn(800)
  72. $('.zhuce_input input').val('');
  73. $('#protocol').prop('checked', false)
  74. $('#protocol').parent().addClass('cheackeds_no').removeClass('cheackeds');
  75. $('.sub').attr('disabled', true);
  76. $('.sub').css({
  77. background: '#CCCCCC',
  78. border: 'none'
  79. });
  80. $('.Tips').removeClass('active');
  81. $('#photo').val('获取验证码')
  82. }else{
  83. $('.login').fadeOut(800)
  84. $('#form_register').fadeIn(800)
  85. $('.login_right>div').removeClass('active')
  86. }
  87. })
  88. //登录调用;
  89. function loginBegin(type){
  90. let hrefs=window.location.href,jump=window.location.hash,jumpState=false,
  91. urls = hrefs.split('/').pop();
  92. if(urls=='evaluate'||urls=='shopList'||jump=='#jump'){
  93. jumpState=true;
  94. }
  95. $('.loading').show();
  96. let txt = "登录中,请稍后...",htmls=[],
  97. txtArr = txt.split('');
  98. txtArr.map(item=>{
  99. htmls.push(`
  100. <span>${item}</span>
  101. `)
  102. });
  103. $('.loading div p').html(htmls);
  104. $.ajax({
  105. method: "POST",
  106. dataType: "json",
  107. url: globalConfig.context + "/signin",
  108. data: {
  109. "mobile": $('#Lo_user').val(),
  110. "password": $('#Lo_pass').val(),
  111. 'type':type
  112. },
  113. success: function (rest) {
  114. $('.loading').hide();
  115. if (rest.error && rest.error.length) {
  116. msg(rest.error[0].message);
  117. } else {
  118. var data = rest.data;
  119. if (data && data.requestURI) {
  120. var path = globalConfig.context + data.requestURI;
  121. if (data.queryString) {
  122. path += '?' + data.queryString;
  123. }
  124. if (window.location.hash) {
  125. path += window.location.hash;
  126. }
  127. window.location.href = path;
  128. } else {
  129. if(!jumpState){
  130. msg('登录成功,2秒后跳转个人中心');
  131. setTimeout(()=>{
  132. window.location.href = globalConfig.context + "/user/account/index.html";
  133. },2000)
  134. }else{
  135. msg('登录成功');
  136. setTimeout(()=>{
  137. window.location.reload();
  138. },1000)
  139. }
  140. }
  141. }
  142. }
  143. })
  144. }
  145. //登录框获得焦点样式处理演示
  146. loginStyle();
  147. function loginStyle(){
  148. $('.loginSelect label').eq(0).addClass('active');
  149. $('.login_uesr input,.login_pass input').focus(function(){
  150. $(this).parent().addClass('active')
  151. })
  152. $('.login_uesr input,.login_pass input').blur(function(){
  153. $(this).parent().removeClass('active')
  154. })
  155. }
  156. $('#form_login').submit(function(e){
  157. e.preventDefault();
  158. var Suser=$('#Lo_user').val();
  159. var Spass=$('#Lo_pass').val();
  160. if(Suser==''||Spass==''){
  161. msg('请填写用户名/密码.');
  162. return false;
  163. }else{
  164. ininUserType(Suser,Spass)
  165. }
  166. })
  167. function ininUserType(user,pass){
  168. $.ajax({
  169. method:'get',
  170. dataType:'json',
  171. url:globalConfig.context+'/open/loginCheck',
  172. data:{
  173. "mobile":user,
  174. "password":pass,
  175. },
  176. success:function(data){
  177. if (data.error && data.error.length) {
  178. msg(data.error[0].message);
  179. return;
  180. }
  181. if(data.data.type!=null){
  182. loginBegin(data.data.type);
  183. }else{
  184. $('.login_right>div').addClass('active')
  185. modelLogin(data.data.id);
  186. }
  187. }
  188. })
  189. }
  190. function modelLogin(ids){
  191. /* 此处做类型选择处理 */
  192. $('.loginSelect label').eq(0).find('input').prop('checked',true);
  193. $('.loginSelect label').eq(0).addClass('active').siblings().removeClass('active');
  194. $('.loginSelect label').click(function(){
  195. let check = $(this).find('input').prop('checked');
  196. if(check){
  197. $(this).addClass('active').parent().siblings().find('label').removeClass('active');
  198. return;
  199. }else{
  200. $(this).removeClass('active').parent().siblings().find('label').addClass('active');
  201. }
  202. })
  203. $('.typeQren').click(function(e){
  204. e.preventDefault();
  205. let typeMode = $('.loginSelect label input:checked').val();
  206. $.ajax({
  207. method:'post',
  208. dataType:'json',
  209. url: globalConfig.context+'/open/updateUser',
  210. data:{
  211. type:typeMode,
  212. id:ids
  213. },
  214. success:function(data){
  215. if(data.error&&data.error.length){
  216. msg(data.error[0].message);
  217. return;
  218. }
  219. loginBegin(typeMode);
  220. }
  221. })
  222. })
  223. }
  224. //提示框渐隐函数
  225. function msg(mess) {
  226. if($('.smg').hasClass('active')){
  227. return ;
  228. }
  229. $('.smg').addClass('active');
  230. $('#msg').val(mess);
  231. setTimeout(function () {
  232. $('.smg').removeClass('active')
  233. $('#msg').val('');
  234. }, 2000)
  235. }
  236. //点击登录界面的忘记密码 ,将会弹出忘记密码界面
  237. $('.login_check .forgetPass').click(function(e){
  238. e.preventDefault();
  239. $('#forget_user').val('');
  240. $('#forget_phone').val('');
  241. $('#photo_n').val('');
  242. $('.login').fadeOut(800);
  243. $('#form_register').fadeOut(800);
  244. $("#forget").fadeIn(800);
  245. });
  246. //点击忘记密码右上角的×,将会关闭界面并清空里面的内容
  247. $('#forget .login_close').click(function(){
  248. $('#forget').fadeOut(800);
  249. $('#form_register').fadeIn(800);
  250. $("#forget_phone").val("");
  251. $("#forget_yanzheng").val("");
  252. $("#photo_n").val("");
  253. });
  254. //点击取消,相当于点击×
  255. $("#forget .fastener_right").click(function(){
  256. $('#forget .login_close').click();
  257. });
  258. //点击重置密码右上角的×,将会关闭界面并清空里面的内容
  259. $('#new_password .login_close').click(function(){
  260. $('#new_password').fadeOut(800)
  261. $('#form_register').fadeIn(800)
  262. });
  263. //点击取消,相当于点击×
  264. $("#new_password .fastener_right").click(function(){
  265. $('#new_password .login_close').click();
  266. });
  267. let use_forget,phone_forget;
  268. //点击忘记密码里面的确认,则发送一个请求,并跳转到重置密码界面
  269. $('#forget_form').submit(function(e){
  270. e.preventDefault();
  271. use_forget = $('#forget_user').val();
  272. phone_forget=$("#forget_phone").val();
  273. var phone_n_forget=$("#photo_n").val();
  274. var type=$(".login_pa>#customerTy").val();
  275. if(!(phone_forget).trim()){
  276. msg('亲,请填写正确的手机号码')
  277. return;
  278. };
  279. if(!(phone_n_forget).trim()){
  280. msg('亲,请填写手机验证码')
  281. return;
  282. };
  283. $.ajax({
  284. type: "POST",
  285. dataType: "json",
  286. url: globalConfig.context + "/open/checkMNCode",
  287. data: {
  288. 'mobile':phone_forget,
  289. 'mobileCode': phone_n_forget,
  290. 'type':type
  291. },
  292. success: function (rest) {
  293. if (rest.error && rest.error.length) {
  294. msg(rest.error[0].message);
  295. } else {
  296. $('#forget').fadeOut(800);
  297. $('#form_register').fadeOut(800);
  298. $("#new_password").fadeIn(800);
  299. $(".password_top>h4").attr("val",rest.data);
  300. $('#new_pass').val();
  301. $('#new_pass_again').val();
  302. }
  303. }
  304. })
  305. });
  306. //点击重置密码里面的确认,则发送一个请求,并关闭重置密码界面
  307. $('#new_password_form').submit(function(e){
  308. e.preventDefault();
  309. var pass_pattern=/^[a-zA-Z0-9]{6,12}$/;
  310. var new_pass=$("#new_pass").val();
  311. var new_pass_again=$("#new_pass_again").val();
  312. var reset_code=$(".password_top>h4").attr("val");
  313. var type=$(".login_pa>#customerTy").val();
  314. if(!new_pass||!new_pass_again){
  315. msg('亲,新旧密码必填!')
  316. return;
  317. }
  318. if(new_pass!==new_pass_again){
  319. msg('亲,两次密码不一致')
  320. return;
  321. }
  322. if(!pass_pattern.test(new_pass)){
  323. msg('亲,密码格式不正确')
  324. return ;
  325. }
  326. $.ajax({
  327. type: "post",
  328. dataType: "json",
  329. url: globalConfig.context + "/open/resetPassword",
  330. data: {
  331. 'type':type,
  332. "newPwd": new_pass,
  333. 'mobile':phone_forget,
  334. 'resetCode':reset_code
  335. },
  336. success: function (rest) {
  337. if (rest.error && rest.error.length) {
  338. msg(rest.error[0].message);
  339. } else {
  340. $('.login').fadeIn(800);
  341. $('#form_register').fadeOut(800);
  342. $("#new_password").fadeOut(800);
  343. msg('修改成功!');
  344. }
  345. }
  346. })
  347. });
  348. //手机号码的验证
  349. function photoyanzheng(){
  350. var pho_pattern=/^1[3|4|5|7|8][0-9]{9}$/;
  351. $("#forget_phone").keyup(function(){
  352. var phol= $(this).val();
  353. if(pho_pattern.test(phol)){
  354. $('#photo_m').attr('disabled', false);
  355. $("#photo_m").css("color","#F18101");
  356. }else if(!pho_pattern.test(phol)){
  357. $('#photo_m').attr('disabled', true);
  358. $("#photo_m").css("color","#ccc");
  359. }
  360. });
  361. $('#forget_phone').blur(function () {
  362. var pho= $(this).val();
  363. if (pho==''||!pho_pattern.test(pho)) {
  364. $(this).val('');
  365. $(this).attr('placeholder', '请输入正确的号码')
  366. } else{
  367. $('#photo_m').attr('disabled', false);
  368. $("#photo_m").css("color","#F18101");
  369. }
  370. })
  371. }
  372. photoyanzheng();
  373. //点击刷新图片验证码
  374. $('.yanzhengma_cont_').click(function () {
  375. $('.yanzhengma_cont_ img').attr('src', (globalConfig.context + "/open/getVCode?t=" + Math.random()))
  376. });
  377. var tt = 30;
  378. $('#photo_m').click(function () {
  379. //手机验证功能
  380. var ophoto = $('#forget_phone').val();
  381. var types = $('#forget_checks').prop("checked") ? '0' : '1';
  382. var phott = $('#forget_yanzheng').val();
  383. //验证码倒计时
  384. $('#photo_m').attr('disabled', true);
  385. $(this).attr('disabled', true);
  386. var timer = setInterval(function () {
  387. tt -= 1;
  388. $('#photo_m').attr('disabled', true);
  389. $(this).val("发送"+'('+tt+'s'+')');
  390. $(this).css({color:'#cccccc'})
  391. if (tt == 0) {
  392. clearInterval(timer);
  393. $('#photo_m').attr('disabled', false);
  394. $(this).attr('disabled', false);
  395. tt=30;
  396. $(this).css({color:'rgb(241, 129, 1)'})
  397. $(this).val('重新发送');
  398. }
  399. }.bind(this), 1000);
  400. $.ajax({
  401. type: "GET",
  402. url: globalConfig.context + "/open/getMCode",
  403. data: {
  404. "mobile": ophoto,
  405. "sign": false,
  406. "verificationCode": phott
  407. },
  408. success: function (data) {
  409. if (data.error && data.error.length) {
  410. msg(data.error[0].message);
  411. } else {
  412. msg('发送成功');
  413. }
  414. return true;
  415. }
  416. });
  417. });
  418. //loading
  419. loading();
  420. function loading(){
  421. clearInterval(setTime)
  422. let txt = "努力加载中...",htmls=[],i=0,
  423. txtArr = txt.split('');
  424. let ps = document.createElement('p');
  425. txtArr.map(item=>{
  426. htmls.push(`
  427. <span>${item}</span>
  428. `)
  429. });
  430. ps.innerHTML=htmls.join('');
  431. $('.loading div').html(ps);
  432. function active(){
  433. i++;
  434. if(i>txtArr.length){
  435. i=0;
  436. };
  437. $('.loading p span').eq(i).addClass('active').siblings().removeClass('active');
  438. }
  439. var setTime =setInterval(()=>{active()},100);
  440. }
  441. //网站导航
  442. $('.navigationList').mouseenter(function(){
  443. $('.navWrapper').slideDown(100)
  444. })
  445. $('.navWrapper').mouseleave(function(){
  446. $('.navWrapper').slideUp(100)
  447. $('.navWrapper').stop(false,true);
  448. })
  449. /* 购物车部分 */
  450. //获取购物车商品位置
  451. tint();
  452. function tint(){
  453. if($('a').hasClass('shopCar')){
  454. let shopH = $('.shopCar').offset().top,
  455. shopCH = $('.shopIcon').offset().top,
  456. shopL = $('.shopCar').offset().left,
  457. shopC = $('.shopIcon').offset().left;
  458. $('.shopIcon .tint').css({'top':(shopH-shopCH)+'px','left':-(shopC-shopL)+'px'})
  459. }
  460. }
  461. //购物车
  462. {
  463. //数量
  464. $('#number').keyup(function(){
  465. if($(this).val()>99){
  466. $(this).val('99');
  467. }
  468. if($(this).val()<1){
  469. $(this).val('1');
  470. }
  471. })
  472. //购物动作
  473. $('.shopCar').click(function(){
  474. if( $('.shopIcon .tint').hasClass('active')){
  475. return false;
  476. }else{
  477. btnFn();
  478. getLoc();
  479. $('.shopIcon .tint').addClass('active');
  480. setTimeout(()=>{
  481. $('.shopIcon .tint').removeClass('active')
  482. },800)
  483. }
  484. })
  485. //本地存储
  486. var shopList = [],
  487. preShop,
  488. state = false;
  489. init();
  490. function init() {
  491. getLoc();
  492. }
  493. //初始判断是否有存储
  494. function getLoc(){
  495. let oldlist = localStorage.getItem('shopList');
  496. if(oldlist){
  497. preShop = JSON.parse(oldlist);
  498. shopList=preShop.data;
  499. let nubTotal =0;
  500. shopList.map(item=>{
  501. nubTotal+=parseInt(item.number)
  502. })
  503. $('.numberTotal').text(nubTotal)
  504. };
  505. };
  506. //点击加入商品
  507. var hash = window.location.search,ids='',idList=[];
  508. if(hash.indexOf('&')){
  509. idList=hash.split('&');
  510. ids=idList[0].split('=')[1];
  511. }else{
  512. ids= hash.split('=')[1];
  513. }
  514. function btnFn() {
  515. //每次点击时获取上次存储的数据累加
  516. getLoc();
  517. state = true;
  518. var name = escape($('.cname').text()), //中文进行编译
  519. id=ids,
  520. companyName=$('.companyName').text(),
  521. type=$('.cname').attr('data'),
  522. img = $('.serviceDetailsImg>img').attr('src'),
  523. number = parseInt($('#number').val()),
  524. type=$('.orderType').attr('type'),
  525. price = $('.price').text();
  526. // 商品信息对象
  527. let pro = new Object();
  528. pro.id = id;
  529. pro.type=type;
  530. pro.name = name;
  531. pro.img = img;
  532. pro.companyName=companyName;
  533. pro.number = number;
  534. pro.price = price;
  535. //初始加入
  536. if(shopList.length < 1) {
  537. shopList.push(pro);
  538. local(shopList)
  539. return;
  540. };
  541. //判断是否重复加入
  542. shopList.map((item, index) => {
  543. if(item.id === ids) {
  544. shopList[index].number = parseInt(shopList[index].number) + parseInt(number);
  545. state = false;
  546. }
  547. });
  548. if(state) {
  549. shopList.push(pro);
  550. };
  551. local(shopList);
  552. };
  553. function local (shopList){
  554. let data=new Object();
  555. data.data=shopList;
  556. let setData = JSON.stringify(data);
  557. //本地存储
  558. localStorage.setItem('shopList',setData);
  559. };
  560. //title处理
  561. titleLen();
  562. function titleLen(){
  563. $('.RecommendTitle h2,.patentTitle h2').mouseenter(function(){
  564. let h2Len = $(this).text(),
  565. lenW = (h2Len.length)*30;
  566. $(this).siblings().css({
  567. width:lenW+'px',
  568. transition: 'all .5s ease-in-out'
  569. })
  570. })
  571. $('.RecommendTitle h2,.patentTitle h2').mouseout(function(){
  572. let h2Len = $(this).text(),
  573. lenW = (h2Len.length)*30;
  574. $(this).siblings().css({
  575. width:'54px'
  576. })
  577. })
  578. }
  579. }
  580. //banner 箭头高度处理
  581. function bannerFun(){
  582. let imgH = $('.carousel-inner div').eq(0).find('img').innerHeight();
  583. $('.carousel-control').css({'height':(imgH)+'px','line-height':(imgH)+'px'})
  584. }
  585. //bannerFun();
  586. };