|
@@ -52,7 +52,17 @@ $('.select').click(function(e){
|
|
|
$('.selectList .selectItem').click(function(){
|
|
|
select_type_noSearch = $(this).attr('data-id')
|
|
|
const txt = $(this).text()
|
|
|
+ const oldTxt = $(".selectedName").html()
|
|
|
$(".selectedName").html(txt)
|
|
|
+ if(txt == '疾病'){
|
|
|
+ $("#searchInp").attr("placeholder","请输入疾病名称")
|
|
|
+ }else if(txt == '药品'){
|
|
|
+ $("#searchInp").attr("placeholder","请输入药品名称")
|
|
|
+ }
|
|
|
+ if(txt != oldTxt){
|
|
|
+ $('#searchInp').val("")
|
|
|
+ }
|
|
|
+
|
|
|
})
|
|
|
|
|
|
//搜索节点名
|