|
@@ -45,18 +45,44 @@ var consultClick = function () {
|
|
|
};
|
|
|
|
|
|
$(function () {
|
|
|
- //$('#consultBtn').click(function () {
|
|
|
- // if (userData && userData.mobile) {
|
|
|
- // if (userData.lvl > 0) {
|
|
|
- // consultClick()
|
|
|
- // } else {
|
|
|
- // message('请先进行实名认证,通过以后才能申请高级会员!');
|
|
|
- // setTimeout("window.location.href = globalConfig.context + '/user/account/index.html#normal'", 3000);
|
|
|
- // }
|
|
|
- // } else {
|
|
|
- // $('.login').fadeIn(800)
|
|
|
- // }
|
|
|
- //});
|
|
|
+ //收藏
|
|
|
+ $('.collection p').eq(0).click(function () {
|
|
|
+ let heart = $('.heart');
|
|
|
+ if (heart.hasClass('active')) {
|
|
|
+ collectionApi(0) //取消收藏
|
|
|
+ } else {
|
|
|
+ collectionApi(1) //收藏
|
|
|
+ }
|
|
|
+ })
|
|
|
+ let hash = window.location.search,
|
|
|
+ hashArr =hash.split('&'),
|
|
|
+ idArr = hashArr[0].split('='),
|
|
|
+ ids =idArr[1];
|
|
|
+ function collectionApi(index) {
|
|
|
+ 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').val(data.error[0].message);
|
|
|
+ msg();
|
|
|
+ }else{
|
|
|
+ if(!index){
|
|
|
+ $('.heart').removeClass('active');
|
|
|
+ }else{
|
|
|
+ $('.heart').addClass('active');
|
|
|
+ }
|
|
|
+ $('#msg').val(index?'收藏成功,请至个人中心查看.':'撤销收藏');
|
|
|
+ msg();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
$('#submitOrder').click(function () {
|
|
|
addConsultorder()
|
|
|
});
|
|
@@ -95,67 +121,15 @@ $(function () {
|
|
|
$(this).removeClass("active").attr("val","").parent().animate({"height":45},500);
|
|
|
}
|
|
|
});
|
|
|
- //点击收藏
|
|
|
-// var isIntereste=$("#isInterester").attr("isInterester");
|
|
|
-// if(isIntereste==0){
|
|
|
-// $(".loves>span:nth-child(3)").removeClass("box_love").addClass("bj_love");
|
|
|
-// }else if(isIntereste==1){
|
|
|
-// $(".loves>span:nth-child(3)").removeClass("bj_love").addClass("box_love");
|
|
|
-// }
|
|
|
-// var t=0;
|
|
|
-// $('.box_dianji').click(function(){
|
|
|
-// console.log(11);
|
|
|
-// var theId=$("#demand_id").attr("val");
|
|
|
-// var islogin=$("#isLogin").attr("islogin");
|
|
|
-// if(islogin=="true"){
|
|
|
-// $(".head_login").click();
|
|
|
-// }
|
|
|
-// if($('.loves>span:nth-child(3)').hasClass('box_love')&&islogin=="false"){
|
|
|
-// console.log(12);
|
|
|
-// t=$('.dem_number').text();
|
|
|
-// $('.dem_number').text(parseInt(t)+1);
|
|
|
-// $('.loves>span:nth-child(3)').addClass('bj_love').removeClass('box_love');
|
|
|
-// $.ajax({
|
|
|
-// method: "post",
|
|
|
-// dataType: "json",
|
|
|
-// url: globalConfig.context + "/api/user/interest/interestUser",
|
|
|
-// data: {
|
|
|
-// id:theId
|
|
|
-// },
|
|
|
-// success: function (data) {
|
|
|
-//
|
|
|
-// }
|
|
|
-// });
|
|
|
-// return false;
|
|
|
-// }
|
|
|
-// if($('.loves>span:nth-child(3)').hasClass('bj_love')&&islogin=="false"){
|
|
|
-// console.log(13);
|
|
|
-// t=$('.dem_number').text();
|
|
|
-// $('.dem_number').text(parseInt(t)-1)
|
|
|
-// $('.loves>span:nth-child(3)').addClass('box_love').removeClass('bj_love')
|
|
|
-// $.ajax({
|
|
|
-// method: "post",
|
|
|
-// dataType: "json",
|
|
|
-// url: globalConfig.context + "/api/user/interest/cancelInterest",
|
|
|
-// data: {
|
|
|
-// id:theId
|
|
|
-// },
|
|
|
-// success: function (data) {
|
|
|
-//
|
|
|
-// }
|
|
|
-// });
|
|
|
-// }
|
|
|
-// })
|
|
|
- //提示框渐隐函数
|
|
|
- function msg(txt) {
|
|
|
- if($('.smg').hasClass('active')){
|
|
|
- return ;
|
|
|
- }
|
|
|
- $('.smg').addClass('active');
|
|
|
- var lit = $('#msg').val(txt);
|
|
|
- setTimeout(function () {
|
|
|
- $('.smg').removeClass('active')
|
|
|
- $('#msg').val('');
|
|
|
- }, 2000)
|
|
|
+ //提示框渐隐函数
|
|
|
+ function msg() {
|
|
|
+ if($('.smg').hasClass('active')){
|
|
|
+ return ;
|
|
|
}
|
|
|
+ $('.smg').addClass('active')
|
|
|
+ setTimeout(function () {
|
|
|
+ $('.smg').removeClass('active')
|
|
|
+ $('#msg').val('');
|
|
|
+ }, 2000)
|
|
|
+}
|
|
|
})
|