|
@@ -13,6 +13,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
|
+import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
import com.ruoyi.common.core.page.PageDomain;
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
import com.ruoyi.common.core.page.TableSupport;
|
|
@@ -60,6 +61,16 @@ public class DemoTableController extends BaseController
|
|
|
users.add(new UserTableModel(26, "1000026", "测试26", "1", "15666666666", "ry@qq.com", 250.0, "1"));
|
|
|
}
|
|
|
|
|
|
+ private final static List<UserTableColumn> columns = new ArrayList<UserTableColumn>();
|
|
|
+ {
|
|
|
+ columns.add(new UserTableColumn("用户ID", "userId"));
|
|
|
+ columns.add(new UserTableColumn("用户编号", "userCode"));
|
|
|
+ columns.add(new UserTableColumn("用户姓名", "userName"));
|
|
|
+ columns.add(new UserTableColumn("用户手机", "userPhone"));
|
|
|
+ columns.add(new UserTableColumn("用户邮箱", "userEmail"));
|
|
|
+ columns.add(new UserTableColumn("用户状态", "status"));
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 搜索相关
|
|
|
*/
|
|
@@ -268,6 +279,15 @@ public class DemoTableController extends BaseController
|
|
|
return prefix + "/headerStyle";
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 表格动态列
|
|
|
+ */
|
|
|
+ @GetMapping("/dynamicColumns")
|
|
|
+ public String dynamicColumns()
|
|
|
+ {
|
|
|
+ return prefix + "/dynamicColumns";
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 表格其他操作
|
|
|
*/
|
|
@@ -277,6 +297,22 @@ public class DemoTableController extends BaseController
|
|
|
return prefix + "/other";
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 动态获取列
|
|
|
+ */
|
|
|
+ @PostMapping("/ajaxColumns")
|
|
|
+ @ResponseBody
|
|
|
+ public AjaxResult ajaxColumns(UserTableColumn userColumn)
|
|
|
+ {
|
|
|
+ List<UserTableColumn> columnList = new ArrayList<UserTableColumn>(Arrays.asList(new UserTableColumn[columns.size()]));
|
|
|
+ Collections.copy(columnList, columns);
|
|
|
+ if (userColumn != null && "userBalance".equals(userColumn.getField()))
|
|
|
+ {
|
|
|
+ columnList.add(new UserTableColumn("用户余额", "userBalance"));
|
|
|
+ }
|
|
|
+ return AjaxResult.success(columnList);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 查询数据
|
|
|
*/
|
|
@@ -318,6 +354,45 @@ public class DemoTableController extends BaseController
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+class UserTableColumn
|
|
|
+{
|
|
|
+ /** 表头 */
|
|
|
+ private String title;
|
|
|
+ /** 字段 */
|
|
|
+ private String field;
|
|
|
+
|
|
|
+ public UserTableColumn()
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public UserTableColumn(String title, String field)
|
|
|
+ {
|
|
|
+ this.title = title;
|
|
|
+ this.field = field;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTitle()
|
|
|
+ {
|
|
|
+ return title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTitle(String title)
|
|
|
+ {
|
|
|
+ this.title = title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getField()
|
|
|
+ {
|
|
|
+ return field;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setField(String field)
|
|
|
+ {
|
|
|
+ this.field = field;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
class UserTableModel
|
|
|
{
|
|
|
/** 用户ID */
|