LIPENGTAO1313 6 anos atrás
pai
commit
37e22a96d8
1 arquivos alterados com 4 adições e 3 exclusões
  1. 4 3
      e/d.html

+ 4 - 3
e/d.html

@ -77,9 +77,10 @@ $(document).ready(function() {
77 77
	
78 78
	var this_="../html/needShow.html?demanid="+demandId;
79 79
	wcFresh(this_);
80
	$("body").on("click",".attenSpan",function(){
80
	$(".attenSpan").on("click",function(event){
81 81
		isInstalled(this_,true);
82
		$(this).addClass("activeThis");
82
		$(this).addClass("activeThis");
83
		event.stopPropagation()
83 84
	})
84 85
	$('#personAL').on('click', function() {
85 86
		var id = this.getAttribute("data-id");
@ -110,7 +111,7 @@ $(document).ready(function() {
110 111
					
111 112
					var strCon="";
112 113
					if($da.city){ strCon+='<div class="showTit">所在城市:<span class="showCon">'+$da.city+'</span></div>' }
113
					if($da.duration!=0){ strCon+='<div class="showTit">期时长<span class="showCon">'+demandDuration[$da.duration]+'</span></div>' }
114
					if($da.duration!=0){ strCon+='<div class="showTit">计周期<span class="showCon">'+demandDuration[$da.duration]+'</span></div>' }
114 115
					if($da.cost!=0){ strCon+='<div class="showTit">费用预算:<span class="showCon">'+demandCost[$da.cost]+'</span></div>' }
115 116
					if($da.invalidDay){ strCon+='<div class="showTit">有效期至:<span class="showCon">'+TimeTr($da.invalidDay)+'</span></div>' }
116 117
					document.getElementById("demandInfo").innerHTML=strCon;