123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541 |
- import 'css/newMenu/public.css';
- import 'css/newMenu/header.css'
- import 'css/newMenu/special.css';
- import 'js/public.js';
- $(function(){
- var thePageNo = 1,
- thePageLength = 1,
- dataList = {},
- pageSize = 6;
- init();
- function init(){
- //写答案、写想法
- write();
- //收藏关注跳转
- jumpFollow();
- //分页
- pages();
- //点击切换数据
- tabData();
- //点击小分类
- allType();
- //初始调用
- proDate();
- };
- //点赞
- function fabulous(){
- $('.fabulous').on('click',function(e){
- e.preventDefault();
- e.stopPropagation();
- if($(this).hasClass('active')) return ;
- let nut = $(this).find('span').text(),
- _this= $(this),
- ids = $(this).parents('.guide').find('input').val();
- $(this).addClass('active');
- $.ajax({
- method:'get',
- url:globalConfig.context+'/portal/special/addStar',
- dataType:'json',
- data:{
- id:ids
- },
- success:function(data){
- if(data.error&&data.error.length){
- msg(data.error[0].message);
- return;
- }
- if(nut.indexOf('点赞')>-1){
- _this.find('span').text('1');
- _this.removeClass('active');
- return;
- };
- _this.find('span').text(parseInt(nut)+1);
- _this.removeClass('active');
- fabulousAnimate(_this);
- }
- })
- });
- };
- //切换种类
- function allType(){
- $('.proType li').click(function(){
- let index = $(this).attr('value');
- if(!index) return;
- $(this).addClass('active').siblings().removeClass('active');
- dataList.types = index;
- proDate();
- })
- };
- //随机颜色
- function randowColor(){
- return '#'+Math.floor(Math.random()*0xffffff).toString(16);
- };
- function fabulousAnimate(_this){
- _this.append('<i>+1</i>');
- let len = _this.find('i').length;
- for(let i =0;i<len;i++){
- _this.find('i').eq(i).css({
- position:'absolute',
- left:'20px',
- zIndex:20+i,
- top:(-15-i*8)+'px',
- color:randowColor(),
- });
- setTimeout(()=>{
- _this.find('i').eq(i).hide(150).remove();
- },(i+1)*500)
- }
- }
- //切换全部分类
- function tabData(){
- $('.spType li').click(function(){
- let index = $(this).index();
- $(this).addClass('active').siblings().removeClass('active');
- $('.proType li').eq(1).addClass('active').siblings().removeClass('active');
- dataList.types=1;
- dataList.name='';
- $('.search').val('');
- dataList.hot=index;
- if(index=='2'){
- $('.proType').hide();
- $('.spList ').hide();
- $('.adviserList').show();
- loadDate();
- $('.spType').css({
- "border-bottom":'none'
- });
- $('.specialLeft hr').hide();
- }else{
- $('.proType').show();
- $('.spList ').show();
- $('.adviserList').hide();
- dataList.types=0;
- proDate();
- $('.spType').css({
- "border-bottom":'1px solid #eeeeee'
- });
- $('.specialLeft hr').show();
-
- }
- })
- }
- //产品数据
- function proDate(pageNo) {
- $('.loading').show();
- $.ajax({
- method: "get",
- dataType: "json",
- url: globalConfig.context + "/portal/special/specialList",
- data: {
- pageNo: pageNo || 1,
- pageSize: pageSize,
- title: dataList.name,
- status:1,
- recommend:dataList.hot?'':'1',
- top:dataList.hot?'1':'',
- category:dataList.types!='0'?dataList.types:''
- },
- success: function (data) {
- var theArrs = [];
- if (data && data.error.length) {
- msg(data.error[0].message)
- };
- if (data.data && data.data.list.length) {
- let nub = data.data.list.length;
- for (let i = 0; i < nub; i++) {
- let thisdata = data.data.list[i];
- /* 关键字 */
- let keyword =(thisdata.keyword).split(',')||[],
- theKeyWord = '';
- keyword.length=3;
- keyword.map(item=>{
- theKeyWord+=`<span>#${item}#</span>`
- });
- theArrs.push(`
- <li>
- <div class="title">
- <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>
- </div>
- <p>${thisdata.summary&&thisdata.summary.length>170?thisdata.summary.substr(0,170)+'...':thisdata.summary}</p>
- <div class="guide">
- <div class="guideLeft">
- <span>阅读(<span>${thisdata.readNumber}</span>)</span>
- <div class="keyword">
- ${theKeyWord}
- </div>
- </div>
- <div class="guideRight">
- <span><img src="${globalConfig.portalHost}/img/newMenu/pj.png" alt="">${thisdata.commentNumber?thisdata.commentNumber:'评论'}</span>
- <span class="fabulous"><img src="${globalConfig.portalHost}/img/newMenu/dz.png" alt=""><span>${thisdata.starNumber?thisdata.starNumber:'点赞'}</span></span>
- <span class="fengX"><img src="${globalConfig.portalHost}/img/newMenu/fx.png" alt="">分享
- <div class="fxWrap">
- <span class="qqHy"><img src="${globalConfig.portalHost}/img/indedImg/qq_yes.png" alt=""></span>
- <span class="qqKj"><img src="${globalConfig.portalHost}/img/indedImg/kj_yes.png" alt=""></span>
- <span class="xlWb"><img src="${globalConfig.portalHost}/img/indedImg/xl_yes.png" alt=""></span>
- </div>
- </span>
- </div>
- <input type="hidden" value="${thisdata.id}">
- </div>
- </li>
- `);
- };
- };
- $('.loading').hide().stop(true, true);
- $('.spList ul').empty();
- $('.spList ul').append(theArrs.join(''));
- $('.pagination_box').show();
- if (data.data.list.length === 0) {
- $('.spList ul').html("<div class='list_none'></div>");
- $('.pagination_box').hide();
- };
- thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
- $('.totalCount').html(`共${data.data.totalCount}条数据 ${thePageLength}页`)
- var pageArr = [],
- firstNo = 1,
- endNo = 5;
- if (thePageNo > 3) {
- firstNo = thePageNo - 2;
- endNo = Math.min((Number(thePageNo) + 2), thePageLength);
- } else {
- endNo = Math.min(thePageLength, 5);
- };
- for (let i = firstNo; i <= endNo; i++) {
- if (i == thePageNo) {
- pageArr.push(
- '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
- );
- } else {
- pageArr.push(
- '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
- );
- }
- };
- $('.pageNumber').remove();
- $('.pagePre').after(pageArr.join(''));
- //点赞
- fabulous();
- //分享
- share();
- //初始处理
- initState();
- }
- });
- };
- //顾问数据
- function loadDate(pageNo) {
- $('.loading').show();
- pageSize=6;
- $.ajax({
- method: "get",
- dataType: "json",
- url: globalConfig.context + "/api/portal/identity/consultantList",
- data: {
- pageNo: pageNo || 1,
- pageSize: pageSize,
- name: dataList.name,
- },
- success: function (data) {
- var theArrs = [];
- if (data && data.error.length) {
- msg(data.error[0].message)
- };
- if (data.data && data.data.list.length) {
- let nub = data.data.list.length;
- for (let i = 0; i < nub; i++) {
- let thisdata = data.data.list[i],txtCont='';
- switch(thisdata.consultantType){
- case 0:
- txtCont='专利代理人';
- break;
- case 1:
- txtCont='专利顾问';
- break;
- case 2:
- txtCont='版权顾问';
- break;
- case 3:
- txtCont='商标顾问';
- break;
- default:
- txtCont="暂无";
- }
- theArrs.push(`
- <li>
- <div>
- <a href="${globalConfig.context}/portal/adviser/adviserDetail?id=${thisdata.uid}">
- ${thisdata.personPortraitUrl&&thisdata.personPortraitUrl!=null?'<img src="'+globalConfig.avatarHost+'/upload'+thisdata.personPortraitUrl+'"/>':''}
- <div class="txt" data-id=${thisdata.uid}>
- <div>
- <h4>${thisdata.username}<span>${txtCont}</span></h4>
- <p><span>好评率 ( ${thisdata.favorableRate} )</span><span class="nubCollect">${thisdata.countInterest}</span>${thisdata.interested?'<span class="heart active"></span>':'<span class="heart"></span>'}</p>
- </div>
- <p>${thisdata.introduction?thisdata.introduction:'暂无描述'}</p>
- <input type="hidden" value= ${thisdata.uid}/>
- </div>
- </a>
- </div>
- </li>
- `);
- };
- };
- $('.loading').hide().stop(true, true);
- $('.adviserList ul').empty();
- $('.adviserList ul').append(theArrs.join(''));
- $('.pagination_box').show();
- if (data.data.list.length === 0) {
- $('.adviserList ul').html("<div class='list_none'></div>");
- $('.pagination_box').hide();
- };
- thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
- $('.totalCount').html(`共${data.data.totalCount}条数据 ${thePageLength}页`)
- var pageArr = [],
- firstNo = 1,
- endNo = 5;
- if (thePageNo > 3) {
- firstNo = thePageNo - 2;
- endNo = Math.min((Number(thePageNo) + 2), thePageLength);
- } else {
- endNo = Math.min(thePageLength, 5);
- };
- for (let i = firstNo; i <= endNo; i++) {
- if (i == thePageNo) {
- pageArr.push(
- '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
- );
- } else {
- pageArr.push(
- '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
- );
- }
- };
- $('.pageNumber').remove();
- $('.pagePre').after(pageArr.join(''));
- colFun();
- }
- });
- }
- //f分页
- function pages() {
- $('.pagination').on('click', 'li', function (e) {
- e.preventDefault();
- if (this.className === 'pagePre') {
- if (thePageNo > 1) {
- thePageNo = 1;
- if(dataList.hot=='2'){
- loadDate(thePageNo);
- return ;
- }
- proDate(thePageNo)
- }
- } else if (this.className === 'pageNext') {
- if (thePageNo < thePageLength) {
- thePageNo = thePageLength;
- if(dataList.hot=='2'){
- loadDate(thePageNo);
- return ;
- }
- proDate(thePageNo)
- }
- } else {
- var nextPageNo = $(this).children()[0].text;
- if (thePageNo != nextPageNo) {
- $(this).siblings("li").removeClass("active");
- $(this).addClass("active");
- thePageNo = nextPageNo;
- if(dataList.hot=='2'){
- loadDate(thePageNo);
- return ;
- }
- proDate(thePageNo)
- };
- };
- });
- }
- //输入跳转
- inpFun();
- function inpFun() {
- $('.inp button').on('click', function () {
- let val = $(this).siblings().val();
- if (!isNaN(val) && val <= thePageLength && val > 0&&val%1=='0') {
- thePageNo = val;
- if(dataList.hot=='2'){
- loadDate(thePageNo);
- return ;
- }
- proDate(thePageNo)
- } else {
- msg('请输入正确页码')
- }
- })
- }
- //搜索
- search();
- function search() {
- $('.specialLeft .input-append .btn').click(function () {
- let val = $('.search').val();
- dataList.name = val;
- if($('.spType li').eq(2).hasClass('active')){
- loadDate();
- }else{
- proDate();
- }
- })
- }
- //关注
-
- function colFun(){
- $('.txt .heart').click(function (e) {
- e.preventDefault();
- e.stopPropagation();
- let loginTxt=$('.head_login')[0];
- if(loginTxt&&($(loginTxt).text())=='登录'){
- window.location.hash='jump'
- msg('请先登录!')
- return false;
- }else{
- if(window.adminData&&window.adminData.mobile){
- msg('账号不正确,请退出重新登入。')
- return;
- }
- }
- let nub=parseInt($(this).siblings('.nubCollect').text()),
- heart = $(this),
- id=$(this).parents('.txt').attr('data-id');
- if (heart.hasClass('active')) {
- $(this).removeClass('active')
- $(this).siblings('.nubCollect').text(nub-1);
- collectionApi(0,id,nub) //取消关注
- } else {
- $(this).addClass('active');
- $(this).siblings('.nubCollect').text(nub+1);
- collectionApi(1,id,nub) //关注
- }
- })
- }
- function collectionApi(index,ids,nub) {
- let url = index?'/api/user/portal/expertInterest':'/api/user/portal/expertCancelInterest';
- $.ajax({
- method: "post",
- dataType: "json",
- url: globalConfig.context + url,
- data: {
- id:ids
- },
- success: function (data) {
- if (data.error && data.error.length) {
- msg(data.error[0].message);
- }else{
- if(!index){
- $('#msg').val('取消关注')
- }else{
- $('#msg').val('关注成功,请至个人中心-我的关注查看.');
- }
- msg(index?'关注成功,请至个人中心-我的关注查看.':'取消关注');
- }
- }
- })
- };
- function jumpFollow(){
- $('.collection .myCollect').click(function(){
- let loginTxt=$('.head_login')[0];
- if(loginTxt&&($(loginTxt).text())=='登录'){
- $('.head_login').click();
- window.location.hash='jump';
- return false;
- }else{
- if(window.adminData&&window.adminData.mobile){
- msg('账号不正确,请退出重新登入。')
- return;
- }
- window.location.href= globalConfig.context+'/user/account/index.html#/collection';
- }
- });
- $('.collection .myFollow').click(function(){
- let loginTxt=$('.head_login')[0];
- if(loginTxt&&($(loginTxt).text())=='登录'){
- $('.head_login').click();
- window.location.hash='jump';
- return false;
- }else{
- if(window.adminData&&window.adminData.mobile){
- msg('账号不正确,请退出重新登入。')
- return;
- }
- window.location.href= globalConfig.context+'/user/account/index.html#/follow';
- }
- })
- };
- function write(){
- $(' .writeXF div').click(function(){
- msg('敬请期待!');
- })
- }
- function initState(){
- $('.fengX').hover(function(){
- $(this).find('.fxWrap').show(10).addClass('active');
- },function(){
- $(this).find('.fxWrap').hide(200).removeClass('active');
- });
- };
- function share(){
- //好友
- $('.qqHy').click(function(){
- let title = $(this).parents('li').find('h3 a').text(),
- id=$(this).parents('li').find('input').val(),
- img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png",
- url = window.location.origin+'/portal/special/specialDetail?id'+id;
- shareQQ_friend(title, url, img)
- })
- //qq
- $('.qqKj').click(function(){
- let title = $(this).parents('li').find('h3 a').text(),
- id=$(this).parents('li').find('input').val(),
- url = window.location.origin+'/portal/special/specialDetail?id'+id,
- img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
- shareToQq(title, url, img)
- });
- //微博
- $('.xlWb').click(function(){
- let title = $(this).parents('li').find('h3 a').text(),
- id=$(this).parents('li').find('input').val(),
- url = window.location.origin+'/portal/special/specialDetail?id'+id,
- img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
-
- shareToXl(title,url,img)
- });
- };
- //分享
- function shareToQq(title, url, picurl) {
- var shareqqzonestring = 'http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?summary=' + encodeURIComponent(title) + '&url=' +
- encodeURIComponent(url) + '&pics=' + encodeURIComponent(picurl)+'&title='+title;
- window.open(shareqqzonestring);
- }
- //微博
- function shareToXl(title,url,picurl){
- var sharesinastring='http://v.t.sina.com.cn/share/share.php?title='+title+'&url='+url+'&content=utf-8&sourceUrl='+url+'&pic='+picurl;
- window.open(sharesinastring);
- }
- //qq好友
- function shareQQ_friend(_title,_url,picurl){
- var _shareUrl = 'http://connect.qq.com/widget/shareqq/iframe_index.html?';
- _shareUrl += 'url=' + encodeURIComponent(_url); //分享的链接
- _shareUrl += '&title=' + encodeURIComponent(_title); //分享的标题
- _shareUrl+='&pics=' + encodeURIComponent(picurl)
- window.open(_shareUrl,'_blank','height=520, width=720');
- };
- //提示框渐隐函数
- function msg(txt) {
- if($('.smg').hasClass('active')){
- return ;
- }
- $('.smg').addClass('active');
- var lit = $('#msg').val(txt);
- setTimeout(function () {
- $('.smg').removeClass('active');
- $('#msg').val('');
- }, 2000)
- }
- })
|