Commit 0f42d16cf9e7a90d23a88848155a89e4ec2847ca

Authored by 徐烜
1 parent 256b1475

update

src/main/resources/static/pages/scheduleApp/module/basicInfo/busInfoManage/list.html
1 <!-- ui-route busInfoManage.list --> 1 <!-- ui-route busInfoManage.list -->
2 <div ng-controller="BusInfoManageListCtrl as ctrl"> 2 <div ng-controller="BusInfoManageListCtrl as ctrl">
3 - <table class="table table-striped table-bordered table-hover table-checkable order-column">  
4 - <thead>  
5 - <tr role="row" class="heading">  
6 - <th>  
7 - <input type="checkbox" class="group-checkable"/>  
8 - </th>  
9 - <th width="50">序号</th>  
10 - <th>车辆编号</th>  
11 - <th>内部编号</th>  
12 - <th>设备编号</th>  
13 - <th>车牌号</th>  
14 - <th>所在公司</th>  
15 - <th>所在分公司</th>  
16 - <th>是否电车</th>  
17 - <th width="14%">操作</th>  
18 - </tr>  
19 - <tr role="row" class="filter">  
20 - <td></td>  
21 - <td></td>  
22 - <td>  
23 - <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().carCode_like"/>  
24 - </td>  
25 - <td>  
26 - <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().insideCode_like"/>  
27 - </td>  
28 - <td>  
29 - <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().equipmentCode_like"/>  
30 - </td>  
31 - <td>  
32 - <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().carPlate_like"/>  
33 - </td>  
34 - <td>  
35 - <div style="width: 150px">  
36 - <sa-Select model="ctrl.searchCondition()"  
37 - dicgroup="gsType"  
38 - placeholder="请选择..."  
39 - name="gs"  
40 - codename="businessCode_eq">  
41 - </sa-Select>  
42 - </div>  
43 - </td>  
44 - <td style="width: 100px"> 3 + <div style="width: 100%; height: 100%; overflow: auto">
  4 + <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column">
  5 + <thead>
  6 + <tr role="row" class="heading">
  7 + <th class="mixTd" width="50">序号</th>
  8 + <th class="mixTd">车辆编号</th>
  9 + <th class="mixTd">内部编号</th>
  10 + <th class="mixTd">设备编号</th>
  11 + <th class="mixTd">车牌号</th>
  12 + <th class="mixTd" width="150px">所在公司</th>
  13 + <th class="mixTd">所在分公司</th>
  14 + <th class="mixTd" width="80px">是否电车</th>
  15 + <th class="mixTd" width="150px">操作</th>
  16 + </tr>
  17 + <tr role="row" class="filter">
  18 + <td></td>
  19 + <td>
  20 + <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().carCode_like"/>
  21 + </td>
  22 + <td>
  23 + <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().insideCode_like"/>
  24 + </td>
  25 + <td>
  26 + <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().equipmentCode_like"/>
  27 + </td>
  28 + <td>
  29 + <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().carPlate_like"/>
  30 + </td>
  31 + <td>
  32 + <div>
  33 + <sa-Select model="ctrl.searchCondition()"
  34 + dicgroup="gsType"
  35 + placeholder="请选择..."
  36 + name="gs"
  37 + codename="businessCode_eq">
  38 + </sa-Select>
  39 + </div>
  40 + </td>
  41 + <td style="width: 100px">
45 42
46 - </td>  
47 - <td style="width: 80px"> 43 + </td>
  44 + <td style="width: 80px">
48 45
49 - </td>  
50 - <td>  
51 - <button class="btn btn-sm green btn-outline filter-submit margin-bottom"  
52 - ng-click="ctrl.pageChanaged()">  
53 - <i class="fa fa-search"></i> 搜索</button> 46 + </td>
  47 + <td>
  48 + <button class="btn btn-sm green btn-outline filter-submit margin-bottom"
  49 + ng-click="ctrl.pageChanaged()">
  50 + <i class="fa fa-search"></i> 搜索</button>
54 51
55 - <button class="btn btn-sm red btn-outline filter-cancel"  
56 - ng-click="ctrl.resetSearchCondition()">  
57 - <i class="fa fa-times"></i> 重置</button>  
58 - </td> 52 + <button class="btn btn-sm red btn-outline filter-cancel"
  53 + ng-click="ctrl.resetSearchCondition()">
  54 + <i class="fa fa-times"></i> 重置</button>
  55 + </td>
59 56
60 - </tr>  
61 - </thead>  
62 - <tbody>  
63 - <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX">  
64 - <td>  
65 - <input type="checkbox"/>  
66 - </td>  
67 - <td>  
68 - <span ng-bind="$index + 1"></span>  
69 - </td>  
70 - <td>  
71 - <span ng-bind="info.carCode"></span>  
72 - </td>  
73 - <td>  
74 - <span ng-bind="info.insideCode"></span>  
75 - </td>  
76 - <td>  
77 - <span ng-bind="info.equipmentCode"></span>  
78 - </td>  
79 - <td>  
80 - <span ng-bind="info.carPlate"></span>  
81 - </td>  
82 - <td>  
83 - <span ng-bind="info.company"></span>  
84 - </td>  
85 - <td>  
86 - <span ng-bind="info.brancheCompany"></span>  
87 - </td>  
88 - <td>  
89 - <span ng-bind="info.sfdc | dict:'truefalseType':'未知' "></span>  
90 - </td>  
91 - <td>  
92 - <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>-->  
93 - <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>-->  
94 - <a ui-sref="busInfoManage_detail({id: info.id})" class="btn default blue-stripe btn-sm"> 详细 </a>  
95 - <a ui-sref="busInfoManage_edit({id: info.id})" class="btn default blue-stripe btn-sm"> 修改 </a>  
96 - </td>  
97 - </tr>  
98 - </tbody> 57 + </tr>
  58 + </thead>
  59 + <tbody>
  60 + <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX">
  61 + <td class="mixTd">
  62 + <span ng-bind="$index + 1"></span>
  63 + </td>
  64 + <td class="mixTd">
  65 + <span ng-bind="info.carCode"></span>
  66 + </td>
  67 + <td class="mixTd">
  68 + <span ng-bind="info.insideCode"></span>
  69 + </td>
  70 + <td class="mixTd">
  71 + <span ng-bind="info.equipmentCode"></span>
  72 + </td>
  73 + <td class="mixTd">
  74 + <span ng-bind="info.carPlate"></span>
  75 + </td>
  76 + <td class="mixTd">
  77 + <span ng-bind="info.company"></span>
  78 + </td>
  79 + <td class="mixTd">
  80 + <span ng-bind="info.brancheCompany"></span>
  81 + </td>
  82 + <td class="mixTd">
  83 + <span ng-bind="info.sfdc | dict:'truefalseType':'未知' "></span>
  84 + </td>
  85 + <td class="mixTd">
  86 + <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>-->
  87 + <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>-->
  88 + <a ui-sref="busInfoManage_detail({id: info.id})" class="btn default blue-stripe btn-sm"> 详细 </a>
  89 + <a ui-sref="busInfoManage_edit({id: info.id})" class="btn default blue-stripe btn-sm"> 修改 </a>
  90 + </td>
  91 + </tr>
  92 + </tbody>
99 93
100 - </table> 94 + </table>
  95 + </div>
101 96
102 <div style="text-align: right;"> 97 <div style="text-align: right;">
103 <uib-pagination total-items="ctrl.pageInfo.totalItems" 98 <uib-pagination total-items="ctrl.pageInfo.totalItems"
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/list.html
1 <!-- ui-route employeeInfoManage.list --> 1 <!-- ui-route employeeInfoManage.list -->
2 <div ng-controller="EmployeeInfoManageListCtrl as ctrl"> 2 <div ng-controller="EmployeeInfoManageListCtrl as ctrl">
3 <div style="width: 100%; height: 100%; overflow: auto"> 3 <div style="width: 100%; height: 100%; overflow: auto">
4 - <table style="2000px:" class="table table-striped table-bordered table-hover table-checkable order-column"> 4 + <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column">
5 <thead> 5 <thead>
6 <tr role="row" class="heading"> 6 <tr role="row" class="heading">
7 - <th>  
8 - <input type="checkbox" class="group-checkable"/>  
9 - </th>  
10 - <th>序号</th>  
11 - <th>姓名</th>  
12 - <th>工号</th>  
13 - <th>性别</th>  
14 - <th>所在公司</th>  
15 - <th>分公司</th>  
16 - <th>工种</th>  
17 - <th>操作</th> 7 + <th class="mixTd" width="50px">序号</th>
  8 + <th class="mixTd" width="80px">姓名</th>
  9 + <th class="mixTd" width="80px">工号</th>
  10 + <th class="mixTd" width="50px">性别</th>
  11 + <th class="mixTd" width="150px">所在公司</th>
  12 + <th class="mixTd">分公司</th>
  13 + <th class="mixTd" width="150px">工种</th>
  14 + <th class="mixTd" width="150px">操作</th>
18 </tr> 15 </tr>
19 <tr role="row" class="filter"> 16 <tr role="row" class="filter">
20 - <td></td>  
21 <td> 17 <td>
22 - <input type="text" class="form-control input-sm" ng-model="ctrl.searchCondition().personnelCode_like"/>  
23 </td> 18 </td>
24 <td> 19 <td>
25 <input type="text" class="form-control input-sm" ng-model="ctrl.searchCondition().personnelName_like"/> 20 <input type="text" class="form-control input-sm" ng-model="ctrl.searchCondition().personnelName_like"/>
@@ -28,17 +23,9 @@ @@ -28,17 +23,9 @@
28 <input type="text" class="form-control input-sm" ng-model="ctrl.searchCondition().jobCode_like"/> 23 <input type="text" class="form-control input-sm" ng-model="ctrl.searchCondition().jobCode_like"/>
29 </td> 24 </td>
30 <td> 25 <td>
31 - <div style="width: 150px">  
32 - <sa-Select model="ctrl.searchCondition()"  
33 - dicgroup="sexType"  
34 - placeholder="请选择..."  
35 - name="personnelType"  
36 - codename="personnelType_eq">  
37 - </sa-Select>  
38 - </div>  
39 </td> 26 </td>
40 <td> 27 <td>
41 - <div style="width: 150px"> 28 + <div>
42 <sa-Select model="ctrl.searchCondition()" 29 <sa-Select model="ctrl.searchCondition()"
43 dicgroup="gsType" 30 dicgroup="gsType"
44 placeholder="请选择..." 31 placeholder="请选择..."
@@ -51,7 +38,7 @@ @@ -51,7 +38,7 @@
51 38
52 </td> 39 </td>
53 <td> 40 <td>
54 - <div style="width: 180px"> 41 + <div>
55 <sa-Select model="ctrl.searchCondition()" 42 <sa-Select model="ctrl.searchCondition()"
56 dicgroup="gzType" 43 dicgroup="gzType"
57 placeholder="请选择..." 44 placeholder="请选择..."
@@ -61,7 +48,7 @@ @@ -61,7 +48,7 @@
61 </div> 48 </div>
62 </td> 49 </td>
63 <td> 50 <td>
64 - <div style="width: 150px"> 51 + <div>
65 <button class="btn btn-sm green btn-outline filter-submit margin-bottom" 52 <button class="btn btn-sm green btn-outline filter-submit margin-bottom"
66 ng-click="ctrl.pageChanaged()"> 53 ng-click="ctrl.pageChanaged()">
67 <i class="fa fa-search"></i> 搜索</button> 54 <i class="fa fa-search"></i> 搜索</button>
@@ -77,28 +64,25 @@ @@ -77,28 +64,25 @@
77 </thead> 64 </thead>
78 <tbody> 65 <tbody>
79 <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX"> 66 <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX">
80 - <td>  
81 - <input type="checkbox"/>  
82 - </td>  
83 - <td> 67 + <td class="mixTd">
84 <span ng-bind="$index + 1"></span> 68 <span ng-bind="$index + 1"></span>
85 </td> 69 </td>
86 - <td> 70 + <td class="mixTd">
87 <span ng-bind="info.personnelName"></span> 71 <span ng-bind="info.personnelName"></span>
88 </td> 72 </td>
89 - <td> 73 + <td class="mixTd">
90 <span ng-bind="info.jobCode"></span> 74 <span ng-bind="info.jobCode"></span>
91 </td> 75 </td>
92 - <td> 76 + <td class="mixTd">
93 <span ng-bind="info.personnelType | dict:'sexType':'未知'"></span> 77 <span ng-bind="info.personnelType | dict:'sexType':'未知'"></span>
94 </td> 78 </td>
95 - <td> 79 + <td class="mixTd">
96 <span ng-bind="info.company"></span> 80 <span ng-bind="info.company"></span>
97 </td> 81 </td>
98 - <td> 82 + <td class="mixTd">
99 <span ng-bind="info.brancheCompany"></span> 83 <span ng-bind="info.brancheCompany"></span>
100 </td> 84 </td>
101 - <td> 85 + <td class="mixTd">
102 <span ng-bind="info.posts | dict:'gzType':'未知'"></span> 86 <span ng-bind="info.posts | dict:'gzType':'未知'"></span>
103 </td> 87 </td>
104 <td> 88 <td>
src/main/resources/static/pages/scheduleApp/module/core/busConfig/list.html
1 <!-- ui-route employeeInfoManage.list --> 1 <!-- ui-route employeeInfoManage.list -->
2 <div ng-controller="BusConfigListCtrl as ctrl"> 2 <div ng-controller="BusConfigListCtrl as ctrl">
3 - <table class="table table-striped table-bordered table-hover table-checkable order-column">  
4 - <thead>  
5 - <tr role="row" class="heading">  
6 - <th>  
7 - <input type="checkbox" class="group-checkable"/>  
8 - </th>  
9 - <th>序号</th>  
10 - <th>线路</th>  
11 - <th>内部编号</th>  
12 - <th>启用日期</th>  
13 - <th>终止日期</th>  
14 - <th>停车点</th>  
15 - <th width="14%">操作</th>  
16 - </tr>  
17 - <tr role="row" class="filter">  
18 - <td></td>  
19 - <td></td>  
20 - <td>  
21 - <div style="width: 150px">  
22 - <sa-Select2 model="ctrl.searchCondition()"  
23 - type="xl"  
24 - modelcolname1="xl.lineCode_eq"  
25 - datacolname1="lineCode"  
26 - showcolname="name"  
27 - placeholder="请输拼音...">  
28 - </sa-Select2>  
29 - </div>  
30 - </td>  
31 - <td></td>  
32 - <td></td>  
33 - <td></td>  
34 - <td>  
35 - <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().tcd_like"/>  
36 - </td>  
37 - <td>  
38 - <button class="btn btn-sm green btn-outline filter-submit margin-bottom"  
39 - ng-click="ctrl.pageChanaged()">  
40 - <i class="fa fa-search"></i> 搜索</button> 3 + <div style="width: 100%; height: 100%; overflow: auto">
  4 + <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column">
  5 + <thead>
  6 + <tr role="row" class="heading">
  7 + <th class="mixTd" width="50px">序号</th>
  8 + <th class="mixTd" width="150px">线路</th>
  9 + <th class="mixTd" width="80px">内部编号</th>
  10 + <th class="mixTd">启用日期</th>
  11 + <th class="mixTd">终止日期</th>
  12 + <th class="mixTd">停车点</th>
  13 + <th class="mixTd" width="150px">操作</th>
  14 + </tr>
  15 + <tr role="row" class="filter">
  16 + <td></td>
  17 + <td>
  18 + <div>
  19 + <sa-Select2 model="ctrl.searchCondition()"
  20 + type="xl"
  21 + modelcolname1="xl.lineCode_eq"
  22 + datacolname1="lineCode"
  23 + showcolname="name"
  24 + placeholder="请输拼音...">
  25 + </sa-Select2>
  26 + </div>
  27 + </td>
  28 + <td></td>
  29 + <td></td>
  30 + <td></td>
  31 + <td>
  32 + <input type="text" class="form-control form-filter input-sm" ng-model="ctrl.searchCondition().tcd_like"/>
  33 + </td>
  34 + <td>
  35 + <button class="btn btn-sm green btn-outline filter-submit margin-bottom"
  36 + ng-click="ctrl.pageChanaged()">
  37 + <i class="fa fa-search"></i> 搜索</button>
41 38
42 - <button class="btn btn-sm red btn-outline filter-cancel"  
43 - ng-click="ctrl.resetSearchCondition()">  
44 - <i class="fa fa-times"></i> 重置</button>  
45 - </td> 39 + <button class="btn btn-sm red btn-outline filter-cancel"
  40 + ng-click="ctrl.resetSearchCondition()">
  41 + <i class="fa fa-times"></i> 重置</button>
  42 + </td>
46 43
47 - </tr> 44 + </tr>
48 45
49 - </thead>  
50 - <tbody>  
51 - <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX">  
52 - <td>  
53 - <input type="checkbox"/>  
54 - </td>  
55 - <td>  
56 - <span ng-bind="$index + 1"></span>  
57 - </td>  
58 - <td>  
59 - <span ng-bind="info.xl.name"></span>  
60 - </td>  
61 - <td>  
62 - <span ng-bind="info.cl.insideCode"></span>  
63 - </td>  
64 - <td>  
65 - <span ng-bind="info.qyrq | date: 'yyyy-MM-dd HH:mm:ss'"></span>  
66 - </td>  
67 - <td>  
68 - <span ng-bind="info.zzrq | date: 'yyyy-MM-dd HH:mm:ss'"></span>  
69 - </td>  
70 - <td>  
71 - <span ng-bind="info.tcd"></span>  
72 - </td>  
73 - <td>  
74 - <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>-->  
75 - <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>-->  
76 - <a ui-sref="busConfig_detail({id: info.id})" class="btn default blue-stripe btn-sm"> 详细 </a>  
77 - <a ui-sref="busConfig_edit({id: info.id})" class="btn default blue-stripe btn-sm"> 修改 </a>  
78 - </td>  
79 - </tr>  
80 - </tbody>  
81 - </table> 46 + </thead>
  47 + <tbody>
  48 + <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX">
  49 + <td class="mixTd">
  50 + <span ng-bind="$index + 1"></span>
  51 + </td>
  52 + <td class="mixTd">
  53 + <span ng-bind="info.xl.name"></span>
  54 + </td>
  55 + <td class="mixTd">
  56 + <span ng-bind="info.cl.insideCode"></span>
  57 + </td>
  58 + <td class="mixTd">
  59 + <span ng-bind="info.qyrq | date: 'yyyy-MM-dd HH:mm:ss'"></span>
  60 + </td>
  61 + <td class="mixTd">
  62 + <span ng-bind="info.zzrq | date: 'yyyy-MM-dd HH:mm:ss'"></span>
  63 + </td>
  64 + <td class="mixTd">
  65 + <span ng-bind="info.tcd"></span>
  66 + </td>
  67 + <td class="mixTd">
  68 + <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>-->
  69 + <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>-->
  70 + <a ui-sref="busConfig_detail({id: info.id})" class="btn default blue-stripe btn-sm"> 详细 </a>
  71 + <a ui-sref="busConfig_edit({id: info.id})" class="btn default blue-stripe btn-sm"> 修改 </a>
  72 + </td>
  73 + </tr>
  74 + </tbody>
  75 + </table>
  76 + </div>
82 77
83 <div style="text-align: right;"> 78 <div style="text-align: right;">
84 <uib-pagination total-items="ctrl.pageInfo.totalItems" 79 <uib-pagination total-items="ctrl.pageInfo.totalItems"
src/main/resources/static/pages/scheduleApp/module/core/employeeConfig/list.html
1 <!-- ui-route employeeInfoManage.list --> 1 <!-- ui-route employeeInfoManage.list -->
2 <div ng-controller="EmployeeConfigListCtrl as ctrl"> 2 <div ng-controller="EmployeeConfigListCtrl as ctrl">
3 - <table class="table table-striped table-bordered table-hover table-checkable order-column">  
4 - <thead>  
5 - <tr role="row" class="heading">  
6 - <th>  
7 - <input type="checkbox" class="group-checkable"/>  
8 - </th>  
9 - <th>序号</th>  
10 - <th>线路</th>  
11 - <th>搭班编码</th>  
12 - <th>驾驶员工号</th>  
13 - <th>驾驶员</th>  
14 - <th>售票员工号</th>  
15 - <th>售票员</th>  
16 - <th width="14%">操作</th>  
17 - </tr>  
18 - <tr role="row" class="filter">  
19 - <td></td>  
20 - <td></td>  
21 - <td>  
22 - <div style="width: 150px">  
23 - <sa-Select2 model="ctrl.searchCondition()"  
24 - type="xl"  
25 - modelcolname1="xl.lineCode_eq"  
26 - datacolname1="lineCode"  
27 - showcolname="name"  
28 - placeholder="请输拼音...">  
29 - </sa-Select2>  
30 - </div>  
31 - </td>  
32 - <td></td>  
33 - <td></td>  
34 - <td>  
35 - <div style="width: 180px">  
36 - <sa-Select2 model="ctrl.searchCondition()"  
37 - type="ry"  
38 - modelcolname1="jsy.id_eq"  
39 - datacolname1="id"  
40 - showcolname="personnelName"  
41 - placeholder="请输拼音...">  
42 - </sa-Select2>  
43 - </div>  
44 - </td>  
45 - <td></td>  
46 - <td></td>  
47 - <td>  
48 - <button class="btn btn-sm green btn-outline filter-submit margin-bottom"  
49 - ng-click="ctrl.pageChanaged()">  
50 - <i class="fa fa-search"></i> 搜索</button> 3 + <div style="width: 100%; height: 100%; overflow: auto">
  4 + <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column">
  5 + <thead>
  6 + <tr role="row" class="heading">
  7 + <th class="mixTd" width="50px">序号</th>
  8 + <th class="mixTd" width="150px">线路</th>
  9 + <th class="mixTd" width="80px">搭班编码</th>
  10 + <th class="mixTd">驾驶员工号</th>
  11 + <th class="mixTd" width="150px">驾驶员</th>
  12 + <th class="mixTd">售票员工号</th>
  13 + <th class="mixTd">售票员</th>
  14 + <th class="mixTd" width="150px">操作</th>
  15 + </tr>
  16 + <tr role="row" class="filter">
  17 + <td></td>
  18 + <td>
  19 + <div>
  20 + <sa-Select2 model="ctrl.searchCondition()"
  21 + type="xl"
  22 + modelcolname1="xl.lineCode_eq"
  23 + datacolname1="lineCode"
  24 + showcolname="name"
  25 + placeholder="请输拼音...">
  26 + </sa-Select2>
  27 + </div>
  28 + </td>
  29 + <td></td>
  30 + <td></td>
  31 + <td>
  32 + <div>
  33 + <sa-Select2 model="ctrl.searchCondition()"
  34 + type="ry"
  35 + modelcolname1="jsy.id_eq"
  36 + datacolname1="id"
  37 + showcolname="personnelName"
  38 + placeholder="请输拼音...">
  39 + </sa-Select2>
  40 + </div>
  41 + </td>
  42 + <td></td>
  43 + <td></td>
  44 + <td>
  45 + <button class="btn btn-sm green btn-outline filter-submit margin-bottom"
  46 + ng-click="ctrl.pageChanaged()">
  47 + <i class="fa fa-search"></i> 搜索</button>
51 48
52 - <button class="btn btn-sm red btn-outline filter-cancel"  
53 - ng-click="ctrl.resetSearchCondition()">  
54 - <i class="fa fa-times"></i> 重置</button>  
55 - </td> 49 + <button class="btn btn-sm red btn-outline filter-cancel"
  50 + ng-click="ctrl.resetSearchCondition()">
  51 + <i class="fa fa-times"></i> 重置</button>
  52 + </td>
56 53
57 - </tr> 54 + </tr>
58 55
59 - </thead>  
60 - <tbody>  
61 - <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX">  
62 - <td>  
63 - <input type="checkbox"/>  
64 - </td>  
65 - <td>  
66 - <span ng-bind="$index + 1"></span>  
67 - </td>  
68 - <td>  
69 - <span ng-bind="info.xl.name"></span>  
70 - </td>  
71 - <td>  
72 - <span ng-bind="info.dbbm"></span>  
73 - </td>  
74 - <td>  
75 - <span ng-bind="info.jsy.jobCode"></span>  
76 - </td>  
77 - <td>  
78 - <span ng-bind="info.jsy.personnelName"></span>  
79 - </td>  
80 - <td>  
81 - <span ng-bind="info.spy.jobCode"></span>  
82 - </td>  
83 - <td>  
84 - <span ng-bind="info.spy.personnelName"></span>  
85 - </td>  
86 - <td>  
87 - <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>-->  
88 - <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>-->  
89 - <a ui-sref="employeeConfig_detail({id: info.id})" class="btn default blue-stripe btn-sm"> 详细 </a>  
90 - <a ui-sref="employeeConfig_edit({id: info.id})" class="btn default blue-stripe btn-sm"> 修改 </a>  
91 - </td>  
92 - </tr>  
93 - </tbody>  
94 - </table> 56 + </thead>
  57 + <tbody>
  58 + <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX">
  59 + <td class="mixTd">
  60 + <span ng-bind="$index + 1"></span>
  61 + </td>
  62 + <td class="mixTd">
  63 + <span ng-bind="info.xl.name"></span>
  64 + </td>
  65 + <td class="mixTd">
  66 + <span ng-bind="info.dbbm"></span>
  67 + </td>
  68 + <td class="mixTd">
  69 + <span ng-bind="info.jsy.jobCode"></span>
  70 + </td>
  71 + <td class="mixTd">
  72 + <span ng-bind="info.jsy.personnelName"></span>
  73 + </td>
  74 + <td class="mixTd">
  75 + <span ng-bind="info.spy.jobCode"></span>
  76 + </td>
  77 + <td class="mixTd">
  78 + <span ng-bind="info.spy.personnelName"></span>
  79 + </td>
  80 + <td class="mixTd">
  81 + <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>-->
  82 + <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>-->
  83 + <a ui-sref="employeeConfig_detail({id: info.id})" class="btn default blue-stripe btn-sm"> 详细 </a>
  84 + <a ui-sref="employeeConfig_edit({id: info.id})" class="btn default blue-stripe btn-sm"> 修改 </a>
  85 + </td>
  86 + </tr>
  87 + </tbody>
  88 + </table>
  89 + </div>
95 90
96 <div style="text-align: right;"> 91 <div style="text-align: right;">
97 <uib-pagination total-items="ctrl.pageInfo.totalItems" 92 <uib-pagination total-items="ctrl.pageInfo.totalItems"
src/main/resources/static/pages/scheduleApp/module/core/guideboardManage/list.html
1 <!-- ui-route employeeInfoManage.list --> 1 <!-- ui-route employeeInfoManage.list -->
2 <div ng-controller="GuideboardManageListCtrl as ctrl"> 2 <div ng-controller="GuideboardManageListCtrl as ctrl">
3 - <table class="table table-striped table-bordered table-hover table-checkable order-column">  
4 - <thead>  
5 - <tr role="row" class="heading">  
6 - <th>  
7 - <input type="checkbox" class="group-checkable"/>  
8 - </th>  
9 - <th>序号</th>  
10 - <th>线路</th>  
11 - <th>路牌编号</th>  
12 - <th>路牌名称</th>  
13 - <th>路牌类型</th>  
14 - <th width="14%">操作</th>  
15 - </tr>  
16 - <tr role="row" class="filter">  
17 - <td></td>  
18 - <td></td>  
19 - <td>  
20 - <div style="width: 150px">  
21 - <sa-Select2 model="ctrl.searchCondition()"  
22 - type="xl"  
23 - modelcolname1="xl.lineCode_eq"  
24 - datacolname1="lineCode"  
25 - showcolname="name"  
26 - placeholder="请输拼音...">  
27 - </sa-Select2>  
28 - </div>  
29 - </td>  
30 - <td></td>  
31 - <td></td>  
32 - <td></td>  
33 - <td>  
34 - <button class="btn btn-sm green btn-outline filter-submit margin-bottom"  
35 - ng-click="ctrl.pageChanaged()">  
36 - <i class="fa fa-search"></i> 搜索</button> 3 + <div style="width: 100%; height: 100%; overflow: auto">
  4 + <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column">
  5 + <thead>
  6 + <tr role="row" class="heading">
  7 + <th class="mixTd" width="50px">序号</th>
  8 + <th class="mixTd" width="150px">线路</th>
  9 + <th class="mixTd">路牌编号</th>
  10 + <th class="mixTd">路牌名称</th>
  11 + <th class="mixTd">路牌类型</th>
  12 + <th class="mixTd" width="150px">操作</th>
  13 + </tr>
  14 + <tr role="row" class="filter">
  15 + <td></td>
  16 + <td>
  17 + <div>
  18 + <sa-Select2 model="ctrl.searchCondition()"
  19 + type="xl"
  20 + modelcolname1="xl.lineCode_eq"
  21 + datacolname1="lineCode"
  22 + showcolname="name"
  23 + placeholder="请输拼音...">
  24 + </sa-Select2>
  25 + </div>
  26 + </td>
  27 + <td></td>
  28 + <td></td>
  29 + <td></td>
  30 + <td>
  31 + <button class="btn btn-sm green btn-outline filter-submit margin-bottom"
  32 + ng-click="ctrl.pageChanaged()">
  33 + <i class="fa fa-search"></i> 搜索</button>
37 34
38 - <button class="btn btn-sm red btn-outline filter-cancel"  
39 - ng-click="ctrl.resetSearchCondition()">  
40 - <i class="fa fa-times"></i> 重置</button>  
41 - </td>  
42 - </tr>  
43 - </thead>  
44 - <tbody>  
45 - <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX">  
46 - <td>  
47 - <input type="checkbox"/>  
48 - </td>  
49 - <td>  
50 - <span ng-bind="$index + 1"></span>  
51 - </td>  
52 - <td>  
53 - <span ng-bind="info.xl.name"></span>  
54 - </td>  
55 - <td>  
56 - <span ng-bind="info.lpNo"></span>  
57 - </td>  
58 - <td>  
59 - <span ng-bind="info.lpName"></span>  
60 - </td>  
61 - <td>  
62 - <span ng-bind="info.lpType"></span>  
63 - </td>  
64 - <td>  
65 - <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>-->  
66 - <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>-->  
67 - <a ui-sref="guideboardManage_detail({id : info.id})" class="btn default blue-stripe btn-sm"> 详细 </a>  
68 - <!--<a ui-sref="#" class="btn default blue-stripe btn-sm"> 修改 </a>-->  
69 - </td>  
70 - </tr>  
71 - </tbody>  
72 - </table> 35 + <button class="btn btn-sm red btn-outline filter-cancel"
  36 + ng-click="ctrl.resetSearchCondition()">
  37 + <i class="fa fa-times"></i> 重置</button>
  38 + </td>
  39 + </tr>
  40 + </thead>
  41 + <tbody>
  42 + <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX">
  43 + <td class="mixTd">
  44 + <span ng-bind="$index + 1"></span>
  45 + </td>
  46 + <td class="mixTd">
  47 + <span ng-bind="info.xl.name"></span>
  48 + </td>
  49 + <td class="mixTd">
  50 + <span ng-bind="info.lpNo"></span>
  51 + </td>
  52 + <td class="mixTd">
  53 + <span ng-bind="info.lpName"></span>
  54 + </td>
  55 + <td class="mixTd">
  56 + <span ng-bind="info.lpType"></span>
  57 + </td>
  58 + <td class="mixTd">
  59 + <!--<a href="details.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 详细 </a>-->
  60 + <!--<a href="edit.html?lineId={{obj.id}}" class="btn default blue-stripe btn-sm"> 修改 </a>-->
  61 + <a ui-sref="guideboardManage_detail({id : info.id})" class="btn default blue-stripe btn-sm"> 详细 </a>
  62 + <!--<a ui-sref="#" class="btn default blue-stripe btn-sm"> 修改 </a>-->
  63 + </td>
  64 + </tr>
  65 + </tbody>
  66 + </table>
  67 + </div>
73 68
74 <div style="text-align: right;"> 69 <div style="text-align: right;">
75 <uib-pagination total-items="ctrl.pageInfo.totalItems" 70 <uib-pagination total-items="ctrl.pageInfo.totalItems"
src/main/resources/static/pages/scheduleApp/module/main.css
@@ -27,4 +27,13 @@ form input.ng-valid.ng-dirty.ng-valid-required { @@ -27,4 +27,13 @@ form input.ng-valid.ng-dirty.ng-valid-required {
27 width: 80%; 27 width: 80%;
28 height: 80%; 28 height: 80%;
29 margin-left: -10%; 29 margin-left: -10%;
  30 +}
  31 +
  32 +.mixTd {
  33 + white-space: nowrap;
  34 + overflow: hidden;
  35 + text-overflow: ellipsis;
  36 +}
  37 +.fixTable {
  38 + table-layout: fixed;
30 } 39 }
31 \ No newline at end of file 40 \ No newline at end of file