diff --git a/ruoyi-admin/src/main/resources/templates/warehouse/storageOrder/storageOrder.html b/ruoyi-admin/src/main/resources/templates/warehouse/storageOrder/storageOrder.html index 72299ab3..7206cc20 100644 --- a/ruoyi-admin/src/main/resources/templates/warehouse/storageOrder/storageOrder.html +++ b/ruoyi-admin/src/main/resources/templates/warehouse/storageOrder/storageOrder.html @@ -60,7 +60,7 @@
@@ -111,13 +111,15 @@ createUrl: prefix + "/add", updateUrl: prefix + "/edit/{id}", exportUrl: prefix + "/export", - fixedColumns:true, - fixedRightNumber:1, modalName: "仓库入库单", detailView: true, + fixedColumns: true, // 启用冻结列 + fixedRightNumber: 1, // 冻结右列个数 + sortable:true, onExpandRow : function(index, row, $detail) { initChildTable(index, row, $detail); }, + columns: [{ checkbox: true }, @@ -238,6 +240,7 @@ { title: '录入时间', field: 'createTime', + sortable:true }, { title: '更新人', @@ -342,7 +345,8 @@ actions.push('详情 '); } - return actions.join(''); + var actionLinks = actions.join(''); + return $.table.dropdownToggle(actionLinks); } }] };