|
@@ -20,7 +20,7 @@ $("#infoTxt").bind("input propertychange",function(event){
|
|
|
|
|
|
$(".submit").on("click",function(){
|
|
|
const val = $('#infoTxt').val().trim()
|
|
|
- if(!val){
|
|
|
+ if(!val || $('.disabled')[0]){
|
|
|
return
|
|
|
}
|
|
|
let param = {
|
|
@@ -44,10 +44,11 @@ $(".submit").on("click",function(){
|
|
|
}else{
|
|
|
renderStandrandWord(standardList)
|
|
|
$(".emptyBox2").css("display","none")
|
|
|
+ $('#submit').removeClass('disabled')
|
|
|
}
|
|
|
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}else{
|
|
|
// getGraph(medicalTermDefaultMap[select_type],select_type)
|
|
|
$('#submit').removeClass('disabled')
|