|
@@ -0,0 +1,447 @@
|
|
|
+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(){
|
|
|
+ //初始处理
|
|
|
+ initState();
|
|
|
+ //分享
|
|
|
+ share();
|
|
|
+ //写答案、写想法
|
|
|
+ write();
|
|
|
+ //收藏关注跳转
|
|
|
+ jumpFollow();
|
|
|
+ //关注顾问
|
|
|
+ pages();
|
|
|
+ //点击切换数据
|
|
|
+ tabData();
|
|
|
+ //点击小分类
|
|
|
+ allType();
|
|
|
+ //点赞
|
|
|
+ fabulous();
|
|
|
+ };
|
|
|
+ function fabulous(){
|
|
|
+ $('.fabulous').click(function(){
|
|
|
+ let nut = $(this).find('i').text();
|
|
|
+ $(this).find('i').text(parseInt(nut)+1);
|
|
|
+ let ids = $(this).parents('.guide').find('input').val();
|
|
|
+ $.ajax({
|
|
|
+ method:'get',
|
|
|
+ url:globalConfig.context+'xsxsx',
|
|
|
+ dataType:'json',
|
|
|
+ data:{
|
|
|
+ id:ids
|
|
|
+ },
|
|
|
+ success:function(data){
|
|
|
+ if(data.error&&data.error.length){
|
|
|
+ msg(data.error[0].message);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ });
|
|
|
+ };
|
|
|
+ function allType(){
|
|
|
+ $('.proType li').click(function(){
|
|
|
+ let index = $(this).index();
|
|
|
+ if(index){
|
|
|
+ $(this).addClass('active').siblings().removeClass('active');
|
|
|
+ dataList.types = index;
|
|
|
+ proDate();
|
|
|
+ }
|
|
|
+ })
|
|
|
+ };
|
|
|
+ function tabData(){
|
|
|
+ $('.spType li').click(function(){
|
|
|
+ let index = $(this).index();
|
|
|
+ $(this).addClass('active').siblings().removeClass('active');
|
|
|
+ dataList.type=index+1;
|
|
|
+ if(index=='2'){
|
|
|
+ $('.proType').hide();
|
|
|
+ $('.spList ').empty();
|
|
|
+ $('.adviserList').show();
|
|
|
+ loadDate();
|
|
|
+ }else{
|
|
|
+ $('.proType').show();
|
|
|
+ $('.adviserList').hide();
|
|
|
+ proDate();
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ //产品数据
|
|
|
+ function proDate(pageNo) {
|
|
|
+ $('.loading').show();
|
|
|
+ $.ajax({
|
|
|
+ method: "get",
|
|
|
+ dataType: "json",
|
|
|
+ url: globalConfig.context + "/api/portal/identity/consultantList",
|
|
|
+ data: {
|
|
|
+ pageNo: pageNo || 1,
|
|
|
+ pageSize: pageSize,
|
|
|
+ name: dataList.name,
|
|
|
+ type:dataList.type||'0',
|
|
|
+ types:dataList.types||'1',
|
|
|
+ },
|
|
|
+ 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];
|
|
|
+ theArrs.push(`
|
|
|
+ <li>
|
|
|
+ <div class="title">
|
|
|
+ <h3><a href="${globalConfig.context}/portal/adviser/adviserDetail?id=${thisdata.id}">${thisdata.title}</a></h3><span>阅读(${thisdata.nub})</span>
|
|
|
+ </div>
|
|
|
+ <p>${thisdata.pro}</p>
|
|
|
+ <div class="guide">
|
|
|
+ <span><img src="${globalConfig.portalHost}/img/newMenu/pj.png" alt="">${thisdata.ping?thisdata.ping:'评论'}</span>
|
|
|
+ <span class="fabulous"><img src="${globalConfig.portalHost}/img/newMenu/dz.png" alt=""><i>${thisdata.zang?thisdata.zang:'点赞'}</i></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>
|
|
|
+ <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(''));
|
|
|
+ }
|
|
|
+ });
|
|
|
+ };
|
|
|
+ //顾问数据
|
|
|
+ function loadDate(pageNo) {
|
|
|
+ $('.loading').show();
|
|
|
+ $.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>
|
|
|
+ </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(''));
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ //f分页
|
|
|
+ function pages() {
|
|
|
+ $('.pagination').on('click', 'li', function (e) {
|
|
|
+ e.preventDefault();
|
|
|
+ if (this.className === 'pagePre') {
|
|
|
+ if (thePageNo > 1) {
|
|
|
+ thePageNo = 1;
|
|
|
+ loadDate(thePageNo);
|
|
|
+ }
|
|
|
+ } else if (this.className === 'pageNext') {
|
|
|
+ if (thePageNo < thePageLength) {
|
|
|
+ thePageNo = thePageLength;
|
|
|
+ loadDate(thePageNo);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ var nextPageNo = $(this).children()[0].text;
|
|
|
+ if (thePageNo != nextPageNo) {
|
|
|
+ $(this).siblings("li").removeClass("active");
|
|
|
+ $(this).addClass("active");
|
|
|
+ thePageNo = nextPageNo;
|
|
|
+ loadDate(thePageNo);
|
|
|
+ };
|
|
|
+ };
|
|
|
+ });
|
|
|
+ }
|
|
|
+ //输入跳转
|
|
|
+ inpFun();
|
|
|
+ function inpFun() {
|
|
|
+ $('.inp button').on('click', function () {
|
|
|
+ let val = $(this).siblings().val();
|
|
|
+ if (!isNaN(val) && val <= thePageLength && val > 0) {
|
|
|
+ thePageNo = val;
|
|
|
+ loadDate(parseInt(thePageNo));
|
|
|
+ } else {
|
|
|
+ msg('请输入正确页码')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ //搜索
|
|
|
+ search();
|
|
|
+ function search() {
|
|
|
+ $('.specialLeft .btn').click(function () {
|
|
|
+ let val = $('.search').val();
|
|
|
+ dataList.name = val;
|
|
|
+ if($('.spType li').eq(2).hasClass('active')){
|
|
|
+ loadDate();
|
|
|
+ }else{
|
|
|
+ proDate();
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ //关注
|
|
|
+ colFun();
|
|
|
+ function colFun(){
|
|
|
+ $('.txt .heart').click(function (e) {
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ e.preventDefault();
|
|
|
+ e.stopPropagation();
|
|
|
+ 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(){
|
|
|
+ //好友
|
|
|
+ document.querySelector('.qqHy').onclick=function(){
|
|
|
+ let title = $(this).parents('li').find('h3').text(),
|
|
|
+ img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
|
|
|
+ shareQQ_friend(title, window.location.href, img)
|
|
|
+ };
|
|
|
+ //qq
|
|
|
+ document.querySelector('.qqKj').onclick=function(){
|
|
|
+ let title = $(this).parents('li').find('h3').text(),
|
|
|
+ img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
|
|
|
+ shareToQq(title, window.location.href, img)
|
|
|
+ };
|
|
|
+ //微博
|
|
|
+ document.querySelector('.xlWb').onclick=function(){
|
|
|
+ let title = $(this).parents('li').find('h3').text(),
|
|
|
+ img="//ss.jishutao.com/portal/1.2.4/img/Logo111.png";
|
|
|
+ shareToXl(title,window.location.href,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)
|
|
|
+ }
|
|
|
+})
|