Index: ssts-web/src/main/webapp/disinfectsystem/packing/packingView.jsp =================================================================== diff -u -r27971 -r28517 --- ssts-web/src/main/webapp/disinfectsystem/packing/packingView.jsp (.../packingView.jsp) (revision 27971) +++ ssts-web/src/main/webapp/disinfectsystem/packing/packingView.jsp (.../packingView.jsp) (revision 28517) @@ -137,6 +137,14 @@ align-items: center; justify-content: center; } + +.x4-grid-cell-inner img { + min-width: 16px; +} + +.x4-grid-cell-inner input { + min-width: 13px; +} Index: ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js =================================================================== diff -u -r28510 -r28517 --- ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js (.../packingView.js) (revision 28510) +++ ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js (.../packingView.js) (revision 28517) @@ -857,12 +857,12 @@ var columns = [ { header: '物品名称', - width : 160, + width : 200, sortable: true, xtype : 'treecolumn', dataIndex: 'tousseName', renderer: function(v,p,record,rowIndex, columnIndex, store,view){ - p.style='word-wrap: break-word !important;white-space:normal'; + p.style='word-wrap: break-word !important;white-space:normal;display:flex;'; var tousseName = record.get('tousseName'); var showName = tousseName; if(record.get('taskType') == taskType_application || record.get('taskType') == taskType_returnGoods @@ -992,7 +992,7 @@ sortable: true, dataIndex: 'basketName', renderer:function (value, metaData, record, rowIdx, colIdx, store){ - metaData.style='word-wrap: break-word !important;white-space:normal'; + metaData.style='word-wrap: break-word !important;white-space:normal;display:flex;'; metaData.tdAttr = 'data-qtip="' + Ext4.String.htmlEncode(value) + '"'; //在tips中展示列的全部内容. return value; }