mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-05-16 04:07:55 +00:00
添加首字母小写方法 增加自动填充按键
This commit is contained in:
@@ -7,6 +7,14 @@ export const toUpperCase = (str) => {
|
||||
}
|
||||
}
|
||||
|
||||
export const toLowerCase = (str) => {
|
||||
if (str[0]) {
|
||||
return str.replace(str[0], str[0].toLowerCase())
|
||||
} else {
|
||||
return ""
|
||||
}
|
||||
}
|
||||
|
||||
// 驼峰转换下划线
|
||||
export const toSQLLine = (str) => {
|
||||
if (str == "ID") return "ID"
|
||||
|
||||
Reference in New Issue
Block a user