dengzhiguo 7 years ago
parent
commit
135ac8aa09
1 changed files with 10 additions and 1 deletions
  1. 10 1
      src/js/technologyTrading/achievementDetail.js

+ 10 - 1
src/js/technologyTrading/achievementDetail.js

@@ -73,5 +73,14 @@ import '../../css/technologyTrading/achievementDetail.css';
             });
     	}    	   	
     })
-
+	$("#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();
+        }
+    });
 })();