疯狂的狮子li
2020-04-29 42008124b68bfd7f2e2003c07bc0bdd5311f95b6
Merge remote-tracking branch 'origin/master'

# Conflicts:
# ruoyi-ui/src/assets/styles/ruoyi.scss
# ruoyi-ui/src/views/tool/gen/index.vue
已修改20个文件
已删除3个文件
382 ■■■■ 文件已修改
ruoyi-ui/src/api/login.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/assets/styles/ruoyi.scss 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/components/RuoYi/Git/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/layout/components/Navbar.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/utils/index.js 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/utils/permission.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/utils/ruoyi.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/cstest/cstest/index.vue 299 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/login/auth-redirect.vue 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/login/components/SocialSignin.vue 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/monitor/job/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/config/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/dept/index.vue 18 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/dict/data.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/dict/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/menu/index.vue 16 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/notice/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/post/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/role/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/user/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/system/user/profile/userAvatar.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/tool/gen/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi/src/main/resources/vm/java/domain.java.vm 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/api/login.js
@@ -37,4 +37,4 @@
    url: '/captchaImage',
    method: 'get'
  })
}
}
ruoyi-ui/src/assets/styles/ruoyi.scss
@@ -138,7 +138,7 @@
    padding-left: 15px;
    margin-bottom: 10px;
}
/* text color */
.text-navy {
    color: #1ab394;
@@ -194,4 +194,4 @@
    opacity: .8;
    color: #fff!important;
    background: #42b983!important;
}
}
ruoyi-ui/src/components/RuoYi/Git/index.vue
@@ -18,4 +18,4 @@
    }
  }
}
</script>
</script>
ruoyi-ui/src/layout/components/Navbar.vue
@@ -7,7 +7,7 @@
    <div class="right-menu">
      <template v-if="device!=='mobile'">
        <search id="header-search" class="right-menu-item" />
        <el-tooltip content="婧愮爜鍦板潃" effect="dark" placement="bottom">
          <ruo-yi-git id="ruoyi-git" class="right-menu-item hover-effect" />
        </el-tooltip>
ruoyi-ui/src/utils/index.js
@@ -3,12 +3,12 @@
 */
export function formatDate(cellValue) {
  if (cellValue == null || cellValue == "") return "";
  var date = new Date(cellValue)
  var date = new Date(cellValue)
  var year = date.getFullYear()
  var month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1
  var day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate()
  var hours = date.getHours() < 10 ? '0' + date.getHours() : date.getHours()
  var minutes = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()
  var day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate()
  var hours = date.getHours() < 10 ? '0' + date.getHours() : date.getHours()
  var minutes = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()
  var seconds = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds()
  return year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds
}
@@ -326,7 +326,7 @@
    ? val => map[val.toLowerCase()]
    : val => map[val]
}
export const exportDefault = 'export default '
export const beautifierConf = {
@@ -383,3 +383,4 @@
export function isNumberStr(str) {
  return /^[+-]?(0|([1-9]\d*))(\.\d+)?$/g.test(str)
}
ruoyi-ui/src/utils/permission.js
@@ -46,4 +46,4 @@
    console.error(`need roles! Like checkRole="['admin','editor']"`)
    return false
  }
}
}
ruoyi-ui/src/utils/ruoyi.js
@@ -131,3 +131,4 @@
    });
    return treeData != '' ? treeData : data;
  }
ruoyi-ui/src/views/cstest/cstest/index.vue
文件已删除
ruoyi-ui/src/views/login/auth-redirect.vue
ruoyi-ui/src/views/login/components/SocialSignin.vue
ruoyi-ui/src/views/monitor/job/index.vue
@@ -485,4 +485,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/system/config/index.vue
@@ -343,4 +343,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/system/dept/index.vue
@@ -56,17 +56,17 @@
      </el-table-column>
      <el-table-column label="鎿嶄綔" align="center" class-name="small-padding fixed-width">
        <template slot-scope="scope">
          <el-button
            size="mini"
            type="text"
            icon="el-icon-edit"
          <el-button
            size="mini"
            type="text"
            icon="el-icon-edit"
            @click="handleUpdate(scope.row)"
            v-hasPermi="['system:dept:edit']"
          >淇敼</el-button>
          <el-button
            size="mini"
            type="text"
            icon="el-icon-plus"
          <el-button
            size="mini"
            type="text"
            icon="el-icon-plus"
            @click="handleAdd(scope.row)"
            v-hasPermi="['system:dept:add']"
          >鏂板</el-button>
@@ -316,4 +316,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/system/dict/data.vue
@@ -352,4 +352,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/system/dict/index.vue
@@ -347,4 +347,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/system/menu/index.vue
@@ -49,16 +49,16 @@
      </el-table-column>
      <el-table-column label="鎿嶄綔" align="center" class-name="small-padding fixed-width">
        <template slot-scope="scope">
          <el-button size="mini"
            type="text"
            icon="el-icon-edit"
          <el-button size="mini"
            type="text"
            icon="el-icon-edit"
            @click="handleUpdate(scope.row)"
            v-hasPermi="['system:menu:edit']"
          >淇敼</el-button>
          <el-button
            size="mini"
            type="text"
            icon="el-icon-plus"
          <el-button
            size="mini"
            type="text"
            icon="el-icon-plus"
            @click="handleAdd(scope.row)"
            v-hasPermi="['system:menu:add']"
          >鏂板</el-button>
@@ -373,4 +373,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/system/notice/index.vue
@@ -342,4 +342,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/system/post/index.vue
@@ -107,7 +107,7 @@
        </template>
      </el-table-column>
    </el-table>
    <pagination
      v-show="total>0"
      :total="total"
@@ -324,4 +324,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/system/role/index.vue
@@ -545,4 +545,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/system/user/index.vue
@@ -662,4 +662,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/system/user/profile/userAvatar.vue
@@ -135,4 +135,4 @@
    }
  }
};
</script>
</script>
ruoyi-ui/src/views/tool/gen/index.vue
@@ -288,4 +288,4 @@
    }
  }
};
</script>
</script>
ruoyi/src/main/resources/vm/java/domain.java.vm
@@ -17,9 +17,6 @@
#elseif($table.tree)
import com.ruoyi.framework.web.domain.TreeEntity;
#end
#foreach ($import in $importList)
import ${import};
#end
/**
 * ${functionName}瀵硅薄 ${tableName}