|
|
@@ -66,13 +66,13 @@
|
|
66
|
66
|
<div class="seach-box fr">
|
|
67
|
67
|
<ul>
|
|
68
|
68
|
<li>任务列表:
|
|
69
|
|
- <select name="" id="cljg" class="x-color select"></select>
|
|
|
69
|
+ <select id="cljg" class="x-color select"></select>
|
|
70
|
70
|
</li>
|
|
71
|
71
|
<li>问题列表:
|
|
72
|
|
- <select name="" id="Wt" class="x-color select"></select>
|
|
|
72
|
+ <select id="Wt" class="x-color select"></select>
|
|
73
|
73
|
</li>
|
|
74
|
74
|
<li>乡镇:
|
|
75
|
|
- <select name="" id="country" class="x-color select">
|
|
|
75
|
+ <select id="country" class="x-color select">
|
|
76
|
76
|
<option value="">--全部--</option>
|
|
77
|
77
|
</select>
|
|
78
|
78
|
</li>
|
|
|
@@ -182,7 +182,7 @@
|
|
182
|
182
|
var Count = data.data;
|
|
183
|
183
|
// $("<option value=''>--全部--</option>").appendTo($("#Wt"));
|
|
184
|
184
|
for(var i = 0; i < Count.length; i++) {
|
|
185
|
|
- $("<option value='" + Count[i].F_CategoryId + "'>" + Count[i].F_Title + "</option>").appendTo($("#Wt"));
|
|
|
185
|
+ $("<option value='" + Count[i].F_QuestionId + "'>" + Count[i].F_Title + "</option>").appendTo($("#Wt"));
|
|
186
|
186
|
}
|
|
187
|
187
|
} else {
|
|
188
|
188
|
$("<option value=''>--暂无数据--</option>").appendTo($("#Wt"));
|