mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
|
|
Tea.context(function () {
|
||
|
|
// 打印缩进
|
||
|
|
this.indent = function (index) {
|
||
|
|
let indent = ""
|
||
|
|
for (let i = 0; i < index; i++) {
|
||
|
|
indent += " "
|
||
|
|
}
|
||
|
|
return indent
|
||
|
|
}
|
||
|
|
})
|