|
@@ -236,8 +236,7 @@ app.controller('incidentListCtrl', ["$scope", "$http", "i18nService", "$rootScop
|
236
|
236
|
{
|
237
|
237
|
name: 'requester.account',
|
238
|
238
|
displayName: '学工号',
|
239
|
|
- width: '6%',
|
240
|
|
- minWidth: '90',
|
|
239
|
+ width: '120',
|
241
|
240
|
enableSorting: false,
|
242
|
241
|
cellTemplate: '<div>' +
|
243
|
242
|
'<div class="ui-grid-cell-contents" >{{row.entity.requester.account}}</div>' +
|
|
@@ -246,7 +245,7 @@ app.controller('incidentListCtrl', ["$scope", "$http", "i18nService", "$rootScop
|
246
|
245
|
{
|
247
|
246
|
name: 'contactsInformation',
|
248
|
247
|
displayName: '联系电话',
|
249
|
|
- width: '105',
|
|
248
|
+ width: '120',
|
250
|
249
|
cellTemplate: '<div>' +
|
251
|
250
|
'<div class="ui-grid-cell-contents">{{row.entity.contactsInformation}}</div>' +
|
252
|
251
|
'</div>'
|
|
@@ -254,7 +253,7 @@ app.controller('incidentListCtrl', ["$scope", "$http", "i18nService", "$rootScop
|
254
|
253
|
{
|
255
|
254
|
name: 'category',
|
256
|
255
|
displayName: '事件分类',
|
257
|
|
- width: '10%',
|
|
256
|
+ width: '300',
|
258
|
257
|
enableSorting: false,
|
259
|
258
|
cellTemplate: '<div>' +
|
260
|
259
|
'<div class="ui-grid-cell-contents">{{row.entity.category.category}}</div>' +
|
|
@@ -262,7 +261,7 @@ app.controller('incidentListCtrl', ["$scope", "$http", "i18nService", "$rootScop
|
262
|
261
|
},
|
263
|
262
|
{
|
264
|
263
|
name: 'houseNumber',
|
265
|
|
- displayName: '区域地点',
|
|
264
|
+ displayName: '校区区域地点',
|
266
|
265
|
width: '14%',
|
267
|
266
|
enableFiltering: false,
|
268
|
267
|
cellTemplate: '<div><div class="ui-grid-cell-contents">{{grid.appScope.areaplace(row.entity)}}</div></div>'
|
|
@@ -1070,6 +1069,7 @@ app.controller('incidentListCtrl', ["$scope", "$http", "i18nService", "$rootScop
|
1070
|
1069
|
// if (data.area && data.place) {
|
1071
|
1070
|
// if (data.houseNumber) {
|
1072
|
1071
|
var str = ' ';
|
|
1072
|
+ str += ' ' + (data.branch ? data.branch.hosName : ' ');
|
1073
|
1073
|
str += ' ' + (data.place ? (data.place.area ? data.place.area.area : ' ') : ' ');
|
1074
|
1074
|
str += ' ' + (data.place ? (data.place.place ? data.place.place : ' ') : ' ');
|
1075
|
1075
|
str += ' ' + (data.houseNumber ? data.houseNumber : ' ');
|