|
|
@@ -23,7 +23,7 @@ $(function() {
|
|
|
// 检索
|
|
|
getFsWorkInfo();
|
|
|
});
|
|
|
- });
|
|
|
+ },false);
|
|
|
|
|
|
// 当前月份初始化
|
|
|
// $("#sel_month").val(getM()-1);
|
|
|
@@ -38,21 +38,21 @@ $(function() {
|
|
|
// 收费站中心选择
|
|
|
$("#fs_station").change(function() {
|
|
|
var fee_station_id = GV(this);
|
|
|
- if (fee_station_id == '') {
|
|
|
- $("#fs_employee").html('');
|
|
|
- } else {
|
|
|
+ // if (fee_station_id == '') {
|
|
|
+ // $("#fs_employee").html('');
|
|
|
+ // } else {
|
|
|
getFsEmployee(fee_station_id, function(obj) {
|
|
|
$("#fs_employee").html(obj);
|
|
|
});
|
|
|
- }
|
|
|
+ // }
|
|
|
})
|
|
|
|
|
|
// 导管中心选择
|
|
|
$("#center_manage").change(function() {
|
|
|
var center_manage_id = GV(this);
|
|
|
- if (center_manage_id == '') {
|
|
|
- $("#fs_station,#fs_employee").html('');
|
|
|
- } else {
|
|
|
+ // if (center_manage_id == '') {
|
|
|
+ // $("#fs_station,#fs_employee").html('');
|
|
|
+ // } else {
|
|
|
getFsStationList(center_manage_id, function(obj) {
|
|
|
$("#fs_station").html(obj);
|
|
|
var dept;
|
|
|
@@ -61,7 +61,7 @@ $(function() {
|
|
|
}
|
|
|
$("#fs_station").val(dept);
|
|
|
});
|
|
|
- }
|
|
|
+ // }
|
|
|
})
|
|
|
|
|
|
// 查询
|