123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- import '../../css/bootstrap.less';
- import 'bootstrap/dist/js/bootstrap.js';
- import '../../css/public.css';
- import '../../css/main_banner.css';
- import '../../js/public.js';
- import '../../js/main_banner.js';
- import '../../css/technologyTrading/achievementDetail.css';
- (function(){
- $(".small_img img").hover(function(e){
- var smallsrc=$(this).attr("src");
- $(".big_img img").attr("src",smallsrc);
- })
- $(".fine").on('click', 'div.pointer', function () {
- var theId = $(this).children("p.demandId").html();
- var thetype=$(this).children("p.demandTyp").html();
- window.open(globalConfig.context + '/portal/technologyTrading/achievementDetail?id=' + theId+'&type='+thetype );
- });
- $(".main_introduce ul").on("click","li",function(){
- var theId = $(this).children("div").children("p.likeId").html();
- var thetype=$(this).children("div").children("p.likeType").html();
- window.open(globalConfig.context + '/portal/technologyTrading/achievementDetail?id=' + theId+'&type='+thetype );
- });
- $(".detail_btn_").click(function(){
- var isLogin=$("#isLogin").attr("islogin");
- if(isLogin=="false"){
- var theId = $("#Id_").attr('val');
- var thetype=$("#ownerType_").attr('typ');
- window.open(globalConfig.context + '/portal/technologyTrading/achievementOrder?id=' + theId+'&type='+thetype );
- }else{
- $(".head_login").click();
- }
- });
- //点击感兴趣
- var t=0;
- $('.basic .loves').click(function(){
- var theId=$("#demand_id").attr("val");
- var islogin=$("#isLogin").attr("islogin");
- if(islogin=="true"){
- $(".head_login").click();
- }
- if($(this).find('span:first-child').hasClass('box_love')&&islogin=="false"){
- t=$('.dem_number').text();
- $('.dem_number').text(parseInt(t)+1);
- $(this).find('span:first-child').addClass('bj_love').removeClass('box_love');
- $.ajax({
- method: "post",
- dataType: "json",
- url: globalConfig.context + "/api/user/portal/demandInterest",
- data: {
- id:theId
- },
- success: function (data) {
- }
- });
- return false;
- }
- if($(this).find('span:first-child').hasClass('bj_love')&&islogin=="false"){
- t=$('.dem_number').text();
- $('.dem_number').text(parseInt(t)-1)
- $(this).find('span:first-child').addClass('box_love').removeClass('bj_love')
- $.ajax({
- method: "post",
- dataType: "json",
- url: globalConfig.context + "/api/user/portal/demandCancelInterest",
- data: {
- id:theId
- },
- success: function (data) {
- }
- });
- }
- })
- $("#purchase").click(function(){
- var isLogin=$("#isLogin").attr("islogin");
- var theId = $("#Id_").attr('val');
- var thetype=$("#ownerType_").attr('typ');
- if(isLogin=="false"){
- window.open(globalConfig.context + '/portal/technologyTrading/achievementOrder?id=' + theId+'&type='+thetype );
- }else{
- $(".head_login").click();
- }
- });
- })();
|