This commit is contained in:
server
2025-09-15 17:00:22 +08:00
parent c2c6769f21
commit fbc87a40c6
24 changed files with 646 additions and 86 deletions
File diff suppressed because one or more lines are too long
@@ -228,3 +228,15 @@ const commonUtil = {
}
}
}
function GetQueryString(name) {
return new URLSearchParams(window.location.search).get(name)
}
function loc() {
return location.href.replace(location.search, "").replace(location.hash, "")
}
function clone(obj) {
return JSON.parse(JSON.stringify(obj))
}
@@ -18,7 +18,7 @@
<div :class="{ card_scroll: edit_scroll }">
<slot name="edit"></slot>
</div>
<div style="border-top: 1px solid #ebeef5; padding-top: 10px">
<div style="border-top: 1px solid #ebeef5; padding-top: 10px" v-if="$slots['edit-footer']">
<slot name="edit-footer"></slot>
</div>
</el-card>