优化
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user