special.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. import 'css/newMenu/public.css';
  2. import 'css/newMenu/header.css'
  3. import 'css/newMenu/special.css';
  4. import 'js/public.js';
  5. $(function(){
  6. var thePageNo = 1,
  7. thePageLength = 1,
  8. dataList = {},
  9. pageSize = 6;
  10. init();
  11. function init(){
  12. //写答案、写想法
  13. write();
  14. //收藏关注跳转
  15. jumpFollow();
  16. //分页
  17. pages();
  18. //点击切换数据
  19. tabData();
  20. //点击小分类
  21. allType();
  22. //初始调用
  23. proDate();
  24. };
  25. //点赞
  26. function fabulous(){
  27. $('.fabulous').on('click',function(e){
  28. e.preventDefault();
  29. e.stopPropagation();
  30. if($(this).hasClass('active')) return ;
  31. let nut = $(this).find('span').text(),
  32. _this= $(this),
  33. ids = $(this).parents('.guide').find('input').val();
  34. $(this).addClass('active');
  35. $.ajax({
  36. method:'get',
  37. url:globalConfig.context+'/portal/special/addStar',
  38. dataType:'json',
  39. data:{
  40. id:ids
  41. },
  42. success:function(data){
  43. if(data.error&&data.error.length){
  44. msg(data.error[0].message);
  45. return;
  46. }
  47. if(nut.indexOf('点赞')>-1){
  48. _this.find('span').text('1');
  49. _this.removeClass('active');
  50. return;
  51. };
  52. _this.find('span').text(parseInt(nut)+1);
  53. _this.removeClass('active');
  54. fabulousAnimate(_this);
  55. }
  56. })
  57. });
  58. };
  59. //切换种类
  60. function allType(){
  61. $('.proType li').click(function(){
  62. let index = $(this).attr('value');
  63. if(!index) return;
  64. $(this).addClass('active').siblings().removeClass('active');
  65. dataList.types = index;
  66. proDate();
  67. })
  68. };
  69. //随机颜色
  70. function randowColor(){
  71. return '#'+Math.floor(Math.random()*0xffffff).toString(16);
  72. };
  73. function fabulousAnimate(_this){
  74. _this.append('<i>+1</i>');
  75. let len = _this.find('i').length;
  76. for(let i =0;i<len;i++){
  77. _this.find('i').eq(i).css({
  78. position:'absolute',
  79. left:'20px',
  80. zIndex:20+i,
  81. top:(-15-i*8)+'px',
  82. color:randowColor(),
  83. });
  84. setTimeout(()=>{
  85. _this.find('i').eq(i).hide(150).remove();
  86. },(i+1)*500)
  87. }
  88. }
  89. //切换全部分类
  90. function tabData(){
  91. $('.spType li').click(function(){
  92. let index = $(this).index();
  93. $(this).addClass('active').siblings().removeClass('active');
  94. $('.proType li').eq(1).addClass('active').siblings().removeClass('active');
  95. dataList.types=1;
  96. dataList.name='';
  97. $('.search').val('');
  98. dataList.hot=index;
  99. if(index=='2'){
  100. $('.proType').hide();
  101. $('.spList ').hide();
  102. $('.adviserList').show();
  103. loadDate();
  104. $('.spType').css({
  105. "border-bottom":'none'
  106. });
  107. $('.specialLeft hr').hide();
  108. }else{
  109. $('.proType').show();
  110. $('.spList ').show();
  111. $('.adviserList').hide();
  112. dataList.types=0;
  113. proDate();
  114. $('.spType').css({
  115. "border-bottom":'1px solid #eeeeee'
  116. });
  117. $('.specialLeft hr').show();
  118. }
  119. })
  120. }
  121. //产品数据
  122. function proDate(pageNo) {
  123. $('.loading').show();
  124. $.ajax({
  125. method: "get",
  126. dataType: "json",
  127. url: globalConfig.context + "/portal/special/specialList",
  128. data: {
  129. pageNo: pageNo || 1,
  130. pageSize: pageSize,
  131. title: dataList.name,
  132. status:1,
  133. recommend:dataList.hot?'':'1',
  134. top:dataList.hot?'1':'',
  135. category:dataList.types!='0'?dataList.types:''
  136. },
  137. success: function (data) {
  138. var theArrs = [];
  139. if (data && data.error.length) {
  140. msg(data.error[0].message)
  141. };
  142. if (data.data && data.data.list.length) {
  143. let nub = data.data.list.length;
  144. for (let i = 0; i < nub; i++) {
  145. let thisdata = data.data.list[i];
  146. /* 关键字 */
  147. let keyword =(thisdata.keyword).split(',')||[],
  148. theKeyWord = '';
  149. keyword.length=3;
  150. keyword.map(item=>{
  151. theKeyWord+=`<span>#${item}#</span>`
  152. });
  153. theArrs.push(`
  154. <li>
  155. <div class="title">
  156. <h3><a href="${globalConfig.context}/portal/special/specialDetail?id=${thisdata.id}">${thisdata.title}</a><time>${thisdata.releaseTime?((new Date(thisdata.releaseTime)).toLocaleString()).split(' ')[0]:''}</time></h3>
  157. </div>
  158. <p>${thisdata.summary&&thisdata.summary.length>170?thisdata.summary.substr(0,170)+'...':thisdata.summary}</p>
  159. <div class="guide">
  160. <div class="guideLeft">
  161. <span>阅读(<span>${thisdata.readNumber}</span>)</span>
  162. <div class="keyword">
  163. ${theKeyWord}
  164. </div>
  165. </div>
  166. <div class="guideRight">
  167. <span><img src="${globalConfig.portalHost}/img/newMenu/pj.png" alt="">${thisdata.commentNumber?thisdata.commentNumber:'评论'}</span>
  168. <span class="fabulous"><img src="${globalConfig.portalHost}/img/newMenu/dz.png" alt=""><span>${thisdata.starNumber?thisdata.starNumber:'点赞'}</span></span>
  169. <span class="fengX"><img src="${globalConfig.portalHost}/img/newMenu/fx.png" alt="">分享
  170. <div class="fxWrap">
  171. <span class="qqHy"><img src="${globalConfig.portalHost}/img/indedImg/qq_yes.png" alt=""></span>
  172. <span class="qqKj"><img src="${globalConfig.portalHost}/img/indedImg/kj_yes.png" alt=""></span>
  173. <span class="xlWb"><img src="${globalConfig.portalHost}/img/indedImg/xl_yes.png" alt=""></span>
  174. </div>
  175. </span>
  176. </div>
  177. <input type="hidden" value="${thisdata.id}">
  178. </div>
  179. </li>
  180. `);
  181. };
  182. };
  183. $('.loading').hide().stop(true, true);
  184. $('.spList ul').empty();
  185. $('.spList ul').append(theArrs.join(''));
  186. $('.pagination_box').show();
  187. if (data.data.list.length === 0) {
  188. $('.spList ul').html("<div class='list_none'></div>");
  189. $('.pagination_box').hide();
  190. };
  191. thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
  192. $('.totalCount').html(`共${data.data.totalCount}条数据 ${thePageLength}页`)
  193. var pageArr = [],
  194. firstNo = 1,
  195. endNo = 5;
  196. if (thePageNo > 3) {
  197. firstNo = thePageNo - 2;
  198. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  199. } else {
  200. endNo = Math.min(thePageLength, 5);
  201. };
  202. for (let i = firstNo; i <= endNo; i++) {
  203. if (i == thePageNo) {
  204. pageArr.push(
  205. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  206. );
  207. } else {
  208. pageArr.push(
  209. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  210. );
  211. }
  212. };
  213. $('.pageNumber').remove();
  214. $('.pagePre').after(pageArr.join(''));
  215. //点赞
  216. fabulous();
  217. //分享
  218. share();
  219. //初始处理
  220. initState();
  221. }
  222. });
  223. };
  224. //顾问数据
  225. function loadDate(pageNo) {
  226. $('.loading').show();
  227. pageSize=6;
  228. $.ajax({
  229. method: "get",
  230. dataType: "json",
  231. url: globalConfig.context + "/api/portal/identity/consultantList",
  232. data: {
  233. pageNo: pageNo || 1,
  234. pageSize: pageSize,
  235. name: dataList.name,
  236. },
  237. success: function (data) {
  238. var theArrs = [];
  239. if (data && data.error.length) {
  240. msg(data.error[0].message)
  241. };
  242. if (data.data && data.data.list.length) {
  243. let nub = data.data.list.length;
  244. for (let i = 0; i < nub; i++) {
  245. let thisdata = data.data.list[i],txtCont='';
  246. switch(thisdata.consultantType){
  247. case 0:
  248. txtCont='专利代理人';
  249. break;
  250. case 1:
  251. txtCont='专利顾问';
  252. break;
  253. case 2:
  254. txtCont='版权顾问';
  255. break;
  256. case 3:
  257. txtCont='商标顾问';
  258. break;
  259. default:
  260. txtCont="暂无";
  261. }
  262. theArrs.push(`
  263. <li>
  264. <div>
  265. <a href="${globalConfig.context}/portal/adviser/adviserDetail?id=${thisdata.uid}">
  266. ${thisdata.personPortraitUrl&&thisdata.personPortraitUrl!=null?'<img src="'+globalConfig.avatarHost+'/upload'+thisdata.personPortraitUrl+'"/>':''}
  267. <div class="txt" data-id=${thisdata.uid}>
  268. <div>
  269. <h4>${thisdata.username}<span>${txtCont}</span></h4>
  270. <p><span>好评率 ( ${thisdata.favorableRate} )</span><span class="nubCollect">${thisdata.countInterest}</span>${thisdata.interested?'<span class="heart active"></span>':'<span class="heart"></span>'}</p>
  271. </div>
  272. <p>${thisdata.introduction?thisdata.introduction:'暂无描述'}</p>
  273. <input type="hidden" value= ${thisdata.uid}/>
  274. </div>
  275. </a>
  276. </div>
  277. </li>
  278. `);
  279. };
  280. };
  281. $('.loading').hide().stop(true, true);
  282. $('.adviserList ul').empty();
  283. $('.adviserList ul').append(theArrs.join(''));
  284. $('.pagination_box').show();
  285. if (data.data.list.length === 0) {
  286. $('.adviserList ul').html("<div class='list_none'></div>");
  287. $('.pagination_box').hide();
  288. };
  289. thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
  290. $('.totalCount').html(`共${data.data.totalCount}条数据 ${thePageLength}页`)
  291. var pageArr = [],
  292. firstNo = 1,
  293. endNo = 5;
  294. if (thePageNo > 3) {
  295. firstNo = thePageNo - 2;
  296. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  297. } else {
  298. endNo = Math.min(thePageLength, 5);
  299. };
  300. for (let i = firstNo; i <= endNo; i++) {
  301. if (i == thePageNo) {
  302. pageArr.push(
  303. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  304. );
  305. } else {
  306. pageArr.push(
  307. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  308. );
  309. }
  310. };
  311. $('.pageNumber').remove();
  312. $('.pagePre').after(pageArr.join(''));
  313. colFun();
  314. }
  315. });
  316. }
  317. //f分页
  318. function pages() {
  319. $('.pagination').on('click', 'li', function (e) {
  320. e.preventDefault();
  321. if (this.className === 'pagePre') {
  322. if (thePageNo > 1) {
  323. thePageNo = 1;
  324. if(dataList.hot=='2'){
  325. loadDate(thePageNo);
  326. return ;
  327. }
  328. proDate(thePageNo)
  329. }
  330. } else if (this.className === 'pageNext') {
  331. if (thePageNo < thePageLength) {
  332. thePageNo = thePageLength;
  333. if(dataList.hot=='2'){
  334. loadDate(thePageNo);
  335. return ;
  336. }
  337. proDate(thePageNo)
  338. }
  339. } else {
  340. var nextPageNo = $(this).children()[0].text;
  341. if (thePageNo != nextPageNo) {
  342. $(this).siblings("li").removeClass("active");
  343. $(this).addClass("active");
  344. thePageNo = nextPageNo;
  345. if(dataList.hot=='2'){
  346. loadDate(thePageNo);
  347. return ;
  348. }
  349. proDate(thePageNo)
  350. };
  351. };
  352. });
  353. }
  354. //输入跳转
  355. inpFun();
  356. function inpFun() {
  357. $('.inp button').on('click', function () {
  358. let val = $(this).siblings().val();
  359. if (!isNaN(val) && val <= thePageLength && val > 0&&val%1=='0') {
  360. thePageNo = val;
  361. if(dataList.hot=='2'){
  362. loadDate(thePageNo);
  363. return ;
  364. }
  365. proDate(thePageNo)
  366. } else {
  367. msg('请输入正确页码')
  368. }
  369. })
  370. }
  371. //搜索
  372. search();
  373. function search() {
  374. $('.specialLeft .input-append .btn').click(function () {
  375. let val = $('.search').val();
  376. dataList.name = val;
  377. if($('.spType li').eq(2).hasClass('active')){
  378. loadDate();
  379. }else{
  380. proDate();
  381. }
  382. })
  383. }
  384. //关注
  385. function colFun(){
  386. $('.txt .heart').click(function (e) {
  387. e.preventDefault();
  388. e.stopPropagation();
  389. let loginTxt=$('.head_login')[0];
  390. if(loginTxt&&($(loginTxt).text())=='登录'){
  391. window.location.hash='jump'
  392. msg('请先登录!')
  393. return false;
  394. }else{
  395. if(window.adminData&&window.adminData.mobile){
  396. msg('账号不正确,请退出重新登入。')
  397. return;
  398. }
  399. }
  400. let nub=parseInt($(this).siblings('.nubCollect').text()),
  401. heart = $(this),
  402. id=$(this).parents('.txt').attr('data-id');
  403. if (heart.hasClass('active')) {
  404. $(this).removeClass('active')
  405. $(this).siblings('.nubCollect').text(nub-1);
  406. collectionApi(0,id,nub) //取消关注
  407. } else {
  408. $(this).addClass('active');
  409. $(this).siblings('.nubCollect').text(nub+1);
  410. collectionApi(1,id,nub) //关注
  411. }
  412. })
  413. }
  414. function collectionApi(index,ids,nub) {
  415. let url = index?'/api/user/portal/expertInterest':'/api/user/portal/expertCancelInterest';
  416. $.ajax({
  417. method: "post",
  418. dataType: "json",
  419. url: globalConfig.context + url,
  420. data: {
  421. id:ids
  422. },
  423. success: function (data) {
  424. if (data.error && data.error.length) {
  425. msg(data.error[0].message);
  426. }else{
  427. if(!index){
  428. $('#msg').val('取消关注')
  429. }else{
  430. $('#msg').val('关注成功,请至个人中心-我的关注查看.');
  431. }
  432. msg(index?'关注成功,请至个人中心-我的关注查看.':'取消关注');
  433. }
  434. }
  435. })
  436. };
  437. function jumpFollow(){
  438. $('.collection .myCollect').click(function(){
  439. let loginTxt=$('.head_login')[0];
  440. if(loginTxt&&($(loginTxt).text())=='登录'){
  441. $('.head_login').click();
  442. window.location.hash='jump';
  443. return false;
  444. }else{
  445. if(window.adminData&&window.adminData.mobile){
  446. msg('账号不正确,请退出重新登入。')
  447. return;
  448. }
  449. window.location.href= globalConfig.context+'/user/account/index.html#/collection';
  450. }
  451. });
  452. $('.collection .myFollow').click(function(){
  453. let loginTxt=$('.head_login')[0];
  454. if(loginTxt&&($(loginTxt).text())=='登录'){
  455. $('.head_login').click();
  456. window.location.hash='jump';
  457. return false;
  458. }else{
  459. if(window.adminData&&window.adminData.mobile){
  460. msg('账号不正确,请退出重新登入。')
  461. return;
  462. }
  463. window.location.href= globalConfig.context+'/user/account/index.html#/follow';
  464. }
  465. })
  466. };
  467. function write(){
  468. $(' .writeXF div').click(function(){
  469. msg('敬请期待!');
  470. })
  471. }
  472. function initState(){
  473. $('.fengX').hover(function(){
  474. $(this).find('.fxWrap').show(10).addClass('active');
  475. },function(){
  476. $(this).find('.fxWrap').hide(200).removeClass('active');
  477. });
  478. };
  479. function share(){
  480. //好友
  481. $('.qqHy').click(function(){
  482. let title = $(this).parents('li').find('h3 a').text(),
  483. id=$(this).parents('li').find('input').val(),
  484. img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png",
  485. url = window.location.origin+'/portal/special/specialDetail?id'+id;
  486. shareQQ_friend(title, url, img)
  487. })
  488. //qq
  489. $('.qqKj').click(function(){
  490. let title = $(this).parents('li').find('h3 a').text(),
  491. id=$(this).parents('li').find('input').val(),
  492. url = window.location.origin+'/portal/special/specialDetail?id'+id,
  493. img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
  494. shareToQq(title, url, img)
  495. });
  496. //微博
  497. $('.xlWb').click(function(){
  498. let title = $(this).parents('li').find('h3 a').text(),
  499. id=$(this).parents('li').find('input').val(),
  500. url = window.location.origin+'/portal/special/specialDetail?id'+id,
  501. img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
  502. shareToXl(title,url,img)
  503. });
  504. };
  505. //分享
  506. function shareToQq(title, url, picurl) {
  507. var shareqqzonestring = 'http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?summary=' + encodeURIComponent(title) + '&url=' +
  508. encodeURIComponent(url) + '&pics=' + encodeURIComponent(picurl)+'&title='+title;
  509. window.open(shareqqzonestring);
  510. }
  511. //微博
  512. function shareToXl(title,url,picurl){
  513. var sharesinastring='http://v.t.sina.com.cn/share/share.php?title='+title+'&url='+url+'&content=utf-8&sourceUrl='+url+'&pic='+picurl;
  514. window.open(sharesinastring);
  515. }
  516. //qq好友
  517. function shareQQ_friend(_title,_url,picurl){
  518. var _shareUrl = 'http://connect.qq.com/widget/shareqq/iframe_index.html?';
  519. _shareUrl += 'url=' + encodeURIComponent(_url); //分享的链接
  520. _shareUrl += '&title=' + encodeURIComponent(_title); //分享的标题
  521. _shareUrl+='&pics=' + encodeURIComponent(picurl)
  522. window.open(_shareUrl,'_blank','height=520, width=720');
  523. };
  524. //提示框渐隐函数
  525. function msg(txt) {
  526. if($('.smg').hasClass('active')){
  527. return ;
  528. }
  529. $('.smg').addClass('active');
  530. var lit = $('#msg').val(txt);
  531. setTimeout(function () {
  532. $('.smg').removeClass('active');
  533. $('#msg').val('');
  534. }, 2000)
  535. }
  536. })