This commit is contained in:
2021-11-14 16:28:03 +08:00
parent 8617de5c38
commit 3a20686bfb
10 changed files with 301 additions and 286 deletions

View File

@@ -142,6 +142,11 @@ body {
}
.el-input {
&.is-disabled .el-input__inner {
background-color: #FFF;
color: #888;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
-webkit-appearance: none;

View File

@@ -10,11 +10,7 @@ class Utils {
* @param {string} [value] 新的标题
*/
changeTitle(value) {
if (value) {
document.title = config.siteName + ' - ' + value;
} else {
document.title = config.siteName;
}
document.title = (value ? (value + ' - ') : '') + config.siteName;
}
/**