RuoYi
2021-09-02 a15bfdfb46cd949c20080ab82fa74ab57bd1955d
防止表格最后页最后项删除变成暂无数据
已修改13个文件
18 ■■■■ 文件已修改
ruoyi-common/src/main/java/com/ruoyi/common/core/page/PageDomain.java 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/monitor/job/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/monitor/job/log.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/monitor/logininfor/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/config/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/dict/data.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/dict/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/notice/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/post/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/role/authUser.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/role/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/user/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/tool/gen/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-common/src/main/java/com/ruoyi/common/core/page/PageDomain.java
@@ -22,7 +22,7 @@
    private String isAsc = "asc";
    /** 分页参数合理化 */
    private Boolean reasonable = false;
    private Boolean reasonable = true;
    public String getOrderBy()
    {
@@ -87,6 +87,10 @@
    public Boolean getReasonable()
    {
        if (StringUtils.isNull(reasonable))
        {
            return Boolean.TRUE;
        }
        return reasonable;
    }
ruoyi-ui/src/views/monitor/job/index.vue
@@ -320,7 +320,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        jobName: undefined,
        jobGroup: undefined,
        status: undefined
ruoyi-ui/src/views/monitor/job/log.vue
@@ -220,7 +220,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        jobName: undefined,
        jobGroup: undefined,
        status: undefined
ruoyi-ui/src/views/monitor/logininfor/index.vue
@@ -153,7 +153,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        ipaddr: undefined,
        userName: undefined,
        status: undefined
ruoyi-ui/src/views/system/config/index.vue
@@ -219,7 +219,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        configName: undefined,
        configKey: undefined,
        configType: undefined
ruoyi-ui/src/views/system/dict/data.vue
@@ -247,7 +247,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        dictName: undefined,
        dictType: undefined,
        status: undefined
ruoyi-ui/src/views/system/dict/index.vue
@@ -227,7 +227,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        dictName: undefined,
        dictType: undefined,
        status: undefined
ruoyi-ui/src/views/system/notice/index.vue
@@ -204,7 +204,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        noticeTitle: undefined,
        createBy: undefined,
        status: undefined
ruoyi-ui/src/views/system/post/index.vue
@@ -192,7 +192,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        postCode: undefined,
        postName: undefined,
        status: undefined
ruoyi-ui/src/views/system/role/authUser.vue
@@ -128,7 +128,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        roleId: undefined,
        userName: undefined,
        phonenumber: undefined
ruoyi-ui/src/views/system/role/index.vue
@@ -328,7 +328,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        roleName: undefined,
        roleKey: undefined,
        status: undefined
ruoyi-ui/src/views/system/user/index.vue
@@ -418,7 +418,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        userName: undefined,
        phonenumber: undefined,
        status: undefined,
ruoyi-ui/src/views/tool/gen/index.vue
@@ -219,7 +219,6 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        reasonable: true,
        tableName: undefined,
        tableComment: undefined
      },