chore: 完善并规范 Bell 上游源码导入 (#62)

This commit is contained in:
QiuSW
2026-08-27 18:26:56 +08:00
parent f5a3dd796b
commit 91befd63a7
36 changed files with 127 additions and 72 deletions
-1
View File
@@ -9,4 +9,3 @@ export default {
name: 'App'
}
</script>
-1
View File
@@ -43,4 +43,3 @@ export function delSysApi(data) {
data: data
})
}
-1
View File
@@ -25,4 +25,3 @@ export function delSysLoginlog(data) {
data: data
})
}
-1
View File
@@ -25,4 +25,3 @@ export function delSysOperlog(data) {
data: data
})
}
-1
View File
@@ -43,4 +43,3 @@ export function delPost(postId) {
data: postId
})
}
-1
View File
@@ -132,4 +132,3 @@ export function getUserProfile() {
method: 'get'
})
}
-1
View File
@@ -59,4 +59,3 @@ export function startJob(jobId) {
method: 'get'
})
}
-1
View File
@@ -33,4 +33,3 @@ export function getInfo() {
method: 'get'
})
}
+2 -2
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="52px" height="45px" viewBox="0 0 52 45" version="1.1"
xmlns="http://www.w3.org/2000/svg"
<svg width="52px" height="45px" viewBox="0 0 52 45" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter x="-9.4%" y="-6.2%" width="118.8%" height="122.5%" filterUnits="objectBoundingBox" id="filter-1">

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

+2 -2
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="52px" height="45px" viewBox="0 0 52 45" version="1.1"
xmlns="http://www.w3.org/2000/svg"
<svg width="52px" height="45px" viewBox="0 0 52 45" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter x="-9.4%" y="-6.2%" width="118.8%" height="122.5%" filterUnits="objectBoundingBox" id="filter-1">

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

-1
View File
@@ -88,4 +88,3 @@ vueSticky.install = Vue => {
}
export default vueSticky
-1
View File
@@ -34,4 +34,3 @@ export default {
mutations,
actions
}
-1
View File
@@ -365,4 +365,3 @@ export function formatJson(filterVal, jsonData) {
}
}))
}
-1
View File
@@ -22,4 +22,3 @@ export default function openWindow(url, title, w, h) {
newWindow.focus()
}
}
@@ -311,4 +311,3 @@ export default {
}
}
</script>
@@ -0,0 +1,36 @@
<template>
<BasicLayout>
<template #wrapper>
<el-card class="box-card">
<div v-loading="loading" :style="'height:'+ height">
<iframe :src="src" frameborder="no" style="width: 100%;height: 100%" scrolling="auto" />
</div>
</el-card>
</template>
</BasicLayout>
</template>
<script>
export default {
components: {
},
data() {
return {
src: process.env.VUE_APP_BASE_API + '/form-generator/index.html',
height: document.documentElement.clientHeight - 94.5 + 'px;',
loading: true
}
},
mounted: function() {
setTimeout(() => {
this.loading = false
}, 230)
const that = this
window.onresize = function temp() {
that.height = document.documentElement.clientHeight - 94.5 + 'px;'
}
}
}
</script>