mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-05-15 03:37:55 +00:00
增加系统信息轮询
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
/* eslint-disable */
|
||||
export const toUpperCase = (str) => {
|
||||
if (str[0]) {
|
||||
return str.replace(str[0], str[0].toUpperCase())
|
||||
@@ -8,13 +9,13 @@ export const toUpperCase = (str) => {
|
||||
|
||||
// 驼峰转换下划线
|
||||
export const toSQLLine = (str) => {
|
||||
if (str=="ID") return "ID"
|
||||
return str.replace(/([A-Z])/g,"_$1").toLowerCase();
|
||||
}
|
||||
if (str == "ID") return "ID"
|
||||
return str.replace(/([A-Z])/g, "_$1").toLowerCase();
|
||||
}
|
||||
|
||||
// 下划线转换驼峰
|
||||
export const toHump = (name) => {
|
||||
return name.replace(/\_(\w)/g, function(all, letter){
|
||||
// 下划线转换驼峰
|
||||
export const toHump = (name) => {
|
||||
return name.replace(/\_(\w)/g, function(all, letter) {
|
||||
return letter.toUpperCase();
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user