2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 11:27:17 +08:00

feat: 组件支持固定

This commit is contained in:
耗子
2024-10-19 20:47:33 +08:00
parent c75cfe9eb6
commit 7f301cec58
34 changed files with 979 additions and 11 deletions

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'app-index'
})
import VersionModal from '@/views/app/VersionModal.vue'
import { NButton, NDataTable, NPopconfirm, NSwitch } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-fail2ban-index'
})
import { NButton, NDataTable, NInput, NPopconfirm, NSwitch } from 'naive-ui'
import fail2ban from '@/api/apps/fail2ban'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-frp-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NPopconfirm } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-gitea-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NPopconfirm } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-mysql-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NInput, NPopconfirm } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-nginx-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NPopconfirm } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-php81-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NPopconfirm } from 'naive-ui'
@@ -6,9 +10,8 @@ import php from '@/api/apps/php'
import systemctl from '@/api/panel/systemctl'
import { renderIcon } from '@/utils'
const route = useRoute()
const currentTab = ref('status')
const version = Number(route.meta.php)
const version = Number(81)
const status = ref(false)
const isEnabled = ref(false)
const config = ref('')

View File

@@ -11,13 +11,12 @@ export default {
{
name: 'apps-php81-index',
path: '',
component: () => import('../php/IndexView.vue'),
component: () => import('./IndexView.vue'),
meta: {
title: 'PHP 8.1',
icon: 'logos:php',
role: ['admin'],
requireAuth: true,
php: 81
requireAuth: true
}
}
]

View File

@@ -0,0 +1,428 @@
<script setup lang="ts">
defineOptions({
name: 'apps-php82-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NPopconfirm } from 'naive-ui'
import php from '@/api/apps/php'
import systemctl from '@/api/panel/systemctl'
import { renderIcon } from '@/utils'
const currentTab = ref('status')
const version = Number(82)
const status = ref(false)
const isEnabled = ref(false)
const config = ref('')
const fpmConfig = ref('')
const errorLog = ref('')
const slowLog = ref('')
const statusType = computed(() => {
return status.value ? 'success' : 'error'
})
const statusStr = computed(() => {
return status.value ? '正常运行中' : '已停止运行'
})
const extensionColumns: any = [
{
title: '拓展名',
key: 'name',
minWidth: 250,
resizable: true,
ellipsis: { tooltip: true }
},
{
title: '描述',
key: 'description',
resizable: true,
minWidth: 250,
ellipsis: { tooltip: true }
},
{
title: '操作',
key: 'actions',
width: 240,
align: 'center',
hideInExcel: true,
render(row: any) {
return [
!row.installed
? h(
NButton,
{
size: 'small',
type: 'primary',
secondary: true,
onClick: () => handleInstallExtension(row.slug)
},
{
default: () => '安装',
icon: renderIcon('material-symbols:download-rounded', { size: 14 })
}
)
: null,
row.installed
? h(
NPopconfirm,
{
onPositiveClick: () => handleUninstallExtension(row.slug)
},
{
default: () => {
return '确定卸载' + row.name + '吗?'
},
trigger: () => {
return h(
NButton,
{
size: 'small',
type: 'error'
},
{
default: () => '删除',
icon: renderIcon('material-symbols:delete-outline', { size: 14 })
}
)
}
}
)
: null
]
}
}
]
const loadColumns: any = [
{
title: '属性',
key: 'name',
minWidth: 200,
resizable: true,
ellipsis: { tooltip: true }
},
{
title: '当前值',
key: 'value',
minWidth: 200,
ellipsis: { tooltip: true }
}
]
const extensions = ref<any[]>([])
const load = ref<any[]>([])
const getLoad = async () => {
const { data } = await php.load(version)
return data
}
const getExtensions = async () => {
const { data } = await php.extensions(version)
return data
}
const getStatus = async () => {
await systemctl.status(`php-fpm-${version}`).then((res: any) => {
status.value = res.data
})
}
const getIsEnabled = async () => {
await systemctl.isEnabled(`php-fpm-${version}`).then((res: any) => {
isEnabled.value = res.data
})
}
const getErrorLog = async () => {
php.errorLog(version).then((res: any) => {
errorLog.value = res.data
})
}
const getSlowLog = async () => {
php.slowLog(version).then((res: any) => {
slowLog.value = res.data
})
}
const getConfig = async () => {
php.config(version).then((res: any) => {
config.value = res.data
})
}
const getFPMConfig = async () => {
php.fpmConfig(version).then((res: any) => {
fpmConfig.value = res.data
})
}
const handleSaveConfig = async () => {
await php.saveConfig(version, config.value)
window.$message.success('保存成功')
await getErrorLog()
}
const handleSaveFPMConfig = async () => {
await php.saveFPMConfig(version, fpmConfig.value)
window.$message.success('保存成功')
await getFPMConfig()
}
const handleClearErrorLog = async () => {
await php.clearErrorLog(version)
await getErrorLog()
window.$message.success('清空成功')
}
const handleClearSlowLog = async () => {
await php.clearSlowLog(version)
await getSlowLog()
window.$message.success('清空成功')
}
const handleIsEnabled = async () => {
if (isEnabled.value) {
await systemctl.enable(`php-fpm-${version}`)
window.$message.success('开启自启动成功')
} else {
await systemctl.disable(`php-fpm-${version}`)
window.$message.success('禁用自启动成功')
}
await getIsEnabled()
}
const handleStart = async () => {
await systemctl.start(`php-fpm-${version}`)
window.$message.success('启动成功')
await getStatus()
await getErrorLog()
}
const handleStop = async () => {
await systemctl.stop(`php-fpm-${version}`)
window.$message.success('停止成功')
await getStatus()
await getErrorLog()
}
const handleRestart = async () => {
await systemctl.restart(`php-fpm-${version}`)
window.$message.success('重启成功')
await getStatus()
await getErrorLog()
}
const handleReload = async () => {
await systemctl.reload(`php-fpm-${version}`)
window.$message.success('重载成功')
await getStatus()
await getErrorLog()
}
const handleInstallExtension = async (slug: string) => {
await php.installExtension(version, slug).then(() => {
window.$message.success('任务已提交,请稍后查看任务进度')
})
}
const handleUninstallExtension = async (name: string) => {
await php.uninstallExtension(version, name).then(() => {
window.$message.success('任务已提交,请稍后查看任务进度')
})
}
onMounted(() => {
getStatus()
getIsEnabled()
getExtensions().then((res) => {
extensions.value = res
})
getLoad().then((res) => {
load.value = res
})
getErrorLog()
getSlowLog()
getConfig()
getFPMConfig()
})
</script>
<template>
<common-page show-footer>
<template #action>
<n-button
v-if="currentTab == 'config'"
class="ml-16"
type="primary"
@click="handleSaveConfig"
>
<TheIcon :size="18" icon="material-symbols:save-outline" />
保存
</n-button>
<n-button
v-if="currentTab == 'fpm-config'"
class="ml-16"
type="primary"
@click="handleSaveFPMConfig"
>
<TheIcon :size="18" icon="material-symbols:save-outline" />
保存
</n-button>
<n-button
v-if="currentTab == 'error-log'"
class="ml-16"
type="primary"
@click="handleClearErrorLog"
>
<TheIcon :size="18" icon="material-symbols:delete-outline" />
清空错误日志
</n-button>
<n-button
v-if="currentTab == 'slow-log'"
class="ml-16"
type="primary"
@click="handleClearSlowLog"
>
<TheIcon :size="18" icon="material-symbols:delete-outline" />
清空慢日志
</n-button>
</template>
<n-tabs v-model:value="currentTab" type="line" animated>
<n-tab-pane name="status" tab="运行状态">
<n-space vertical>
<n-card title="运行状态" rounded-10>
<template #header-extra>
<n-switch v-model:value="isEnabled" @update:value="handleIsEnabled">
<template #checked> 自启动开 </template>
<template #unchecked> 自启动关 </template>
</n-switch>
</template>
<n-space vertical>
<n-alert :type="statusType">
{{ statusStr }}
</n-alert>
<n-space>
<n-button type="success" @click="handleStart">
<TheIcon :size="24" icon="material-symbols:play-arrow-outline-rounded" />
启动
</n-button>
<n-popconfirm @positive-click="handleStop">
<template #trigger>
<n-button type="error">
<TheIcon :size="24" icon="material-symbols:stop-outline-rounded" />
停止
</n-button>
</template>
停止 PHP {{ version }} 会导致使用 PHP {{ version }} 的网站无法访问确定要停止吗
</n-popconfirm>
<n-button type="warning" @click="handleRestart">
<TheIcon :size="18" icon="material-symbols:replay-rounded" />
重启
</n-button>
<n-button type="primary" @click="handleReload">
<TheIcon :size="20" icon="material-symbols:refresh-rounded" />
重载
</n-button>
</n-space>
</n-space>
</n-card>
</n-space>
</n-tab-pane>
<n-tab-pane name="extensions" tab="拓展管理">
<n-card title="拓展列表" :segmented="true" rounded-10>
<n-data-table
striped
remote
:scroll-x="1000"
:loading="false"
:columns="extensionColumns"
:data="extensions"
:row-key="(row: any) => row.slug"
/>
</n-card>
</n-tab-pane>
<n-tab-pane name="config" tab="主配置">
<n-space vertical>
<n-alert type="warning">
此处修改的是 PHP {{ version }} 主配置文件,如果您不了解各参数的含义,请不要随意修改!
</n-alert>
<Editor
v-model:value="config"
language="ini"
theme="vs-dark"
height="60vh"
mt-8
:options="{
automaticLayout: true,
formatOnType: true,
formatOnPaste: true
}"
/>
</n-space>
</n-tab-pane>
<n-tab-pane name="fpm-config" tab="FPM 配置">
<n-space vertical>
<n-alert type="warning">
此处修改的是 PHP {{ version }} FPM 配置文件,如果您不了解各参数的含义,请不要随意修改!
</n-alert>
<Editor
v-model:value="fpmConfig"
language="ini"
theme="vs-dark"
height="60vh"
mt-8
:options="{
automaticLayout: true,
formatOnType: true,
formatOnPaste: true
}"
/>
</n-space>
</n-tab-pane>
<n-tab-pane name="load" tab="负载状态">
<n-data-table
striped
remote
:scroll-x="400"
:loading="false"
:columns="loadColumns"
:data="load"
/>
</n-tab-pane>
<n-tab-pane name="error-log" tab="错误日志">
<Editor
v-model:value="errorLog"
language="ini"
theme="vs-dark"
height="60vh"
mt-8
:options="{
automaticLayout: true,
formatOnType: true,
formatOnPaste: true,
readOnly: true
}"
/>
</n-tab-pane>
<n-tab-pane name="slow-log" tab="慢日志">
<Editor
v-model:value="slowLog"
language="ini"
theme="vs-dark"
height="60vh"
mt-8
:options="{
automaticLayout: true,
formatOnType: true,
formatOnPaste: true,
readOnly: true
}"
/>
</n-tab-pane>
</n-tabs>
</common-page>
</template>

View File

@@ -11,13 +11,12 @@ export default {
{
name: 'apps-php82-index',
path: '',
component: () => import('../php/IndexView.vue'),
component: () => import('./IndexView.vue'),
meta: {
title: 'PHP 8.2',
icon: 'logos:php',
role: ['admin'],
requireAuth: true,
php: 82
requireAuth: true
}
}
]

View File

@@ -0,0 +1,428 @@
<script setup lang="ts">
defineOptions({
name: 'apps-php83-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NPopconfirm } from 'naive-ui'
import php from '@/api/apps/php'
import systemctl from '@/api/panel/systemctl'
import { renderIcon } from '@/utils'
const currentTab = ref('status')
const version = Number(83)
const status = ref(false)
const isEnabled = ref(false)
const config = ref('')
const fpmConfig = ref('')
const errorLog = ref('')
const slowLog = ref('')
const statusType = computed(() => {
return status.value ? 'success' : 'error'
})
const statusStr = computed(() => {
return status.value ? '正常运行中' : '已停止运行'
})
const extensionColumns: any = [
{
title: '拓展名',
key: 'name',
minWidth: 250,
resizable: true,
ellipsis: { tooltip: true }
},
{
title: '描述',
key: 'description',
resizable: true,
minWidth: 250,
ellipsis: { tooltip: true }
},
{
title: '操作',
key: 'actions',
width: 240,
align: 'center',
hideInExcel: true,
render(row: any) {
return [
!row.installed
? h(
NButton,
{
size: 'small',
type: 'primary',
secondary: true,
onClick: () => handleInstallExtension(row.slug)
},
{
default: () => '安装',
icon: renderIcon('material-symbols:download-rounded', { size: 14 })
}
)
: null,
row.installed
? h(
NPopconfirm,
{
onPositiveClick: () => handleUninstallExtension(row.slug)
},
{
default: () => {
return '确定卸载' + row.name + '吗?'
},
trigger: () => {
return h(
NButton,
{
size: 'small',
type: 'error'
},
{
default: () => '删除',
icon: renderIcon('material-symbols:delete-outline', { size: 14 })
}
)
}
}
)
: null
]
}
}
]
const loadColumns: any = [
{
title: '属性',
key: 'name',
minWidth: 200,
resizable: true,
ellipsis: { tooltip: true }
},
{
title: '当前值',
key: 'value',
minWidth: 200,
ellipsis: { tooltip: true }
}
]
const extensions = ref<any[]>([])
const load = ref<any[]>([])
const getLoad = async () => {
const { data } = await php.load(version)
return data
}
const getExtensions = async () => {
const { data } = await php.extensions(version)
return data
}
const getStatus = async () => {
await systemctl.status(`php-fpm-${version}`).then((res: any) => {
status.value = res.data
})
}
const getIsEnabled = async () => {
await systemctl.isEnabled(`php-fpm-${version}`).then((res: any) => {
isEnabled.value = res.data
})
}
const getErrorLog = async () => {
php.errorLog(version).then((res: any) => {
errorLog.value = res.data
})
}
const getSlowLog = async () => {
php.slowLog(version).then((res: any) => {
slowLog.value = res.data
})
}
const getConfig = async () => {
php.config(version).then((res: any) => {
config.value = res.data
})
}
const getFPMConfig = async () => {
php.fpmConfig(version).then((res: any) => {
fpmConfig.value = res.data
})
}
const handleSaveConfig = async () => {
await php.saveConfig(version, config.value)
window.$message.success('保存成功')
await getErrorLog()
}
const handleSaveFPMConfig = async () => {
await php.saveFPMConfig(version, fpmConfig.value)
window.$message.success('保存成功')
await getFPMConfig()
}
const handleClearErrorLog = async () => {
await php.clearErrorLog(version)
await getErrorLog()
window.$message.success('清空成功')
}
const handleClearSlowLog = async () => {
await php.clearSlowLog(version)
await getSlowLog()
window.$message.success('清空成功')
}
const handleIsEnabled = async () => {
if (isEnabled.value) {
await systemctl.enable(`php-fpm-${version}`)
window.$message.success('开启自启动成功')
} else {
await systemctl.disable(`php-fpm-${version}`)
window.$message.success('禁用自启动成功')
}
await getIsEnabled()
}
const handleStart = async () => {
await systemctl.start(`php-fpm-${version}`)
window.$message.success('启动成功')
await getStatus()
await getErrorLog()
}
const handleStop = async () => {
await systemctl.stop(`php-fpm-${version}`)
window.$message.success('停止成功')
await getStatus()
await getErrorLog()
}
const handleRestart = async () => {
await systemctl.restart(`php-fpm-${version}`)
window.$message.success('重启成功')
await getStatus()
await getErrorLog()
}
const handleReload = async () => {
await systemctl.reload(`php-fpm-${version}`)
window.$message.success('重载成功')
await getStatus()
await getErrorLog()
}
const handleInstallExtension = async (slug: string) => {
await php.installExtension(version, slug).then(() => {
window.$message.success('任务已提交,请稍后查看任务进度')
})
}
const handleUninstallExtension = async (name: string) => {
await php.uninstallExtension(version, name).then(() => {
window.$message.success('任务已提交,请稍后查看任务进度')
})
}
onMounted(() => {
getStatus()
getIsEnabled()
getExtensions().then((res) => {
extensions.value = res
})
getLoad().then((res) => {
load.value = res
})
getErrorLog()
getSlowLog()
getConfig()
getFPMConfig()
})
</script>
<template>
<common-page show-footer>
<template #action>
<n-button
v-if="currentTab == 'config'"
class="ml-16"
type="primary"
@click="handleSaveConfig"
>
<TheIcon :size="18" icon="material-symbols:save-outline" />
保存
</n-button>
<n-button
v-if="currentTab == 'fpm-config'"
class="ml-16"
type="primary"
@click="handleSaveFPMConfig"
>
<TheIcon :size="18" icon="material-symbols:save-outline" />
保存
</n-button>
<n-button
v-if="currentTab == 'error-log'"
class="ml-16"
type="primary"
@click="handleClearErrorLog"
>
<TheIcon :size="18" icon="material-symbols:delete-outline" />
清空错误日志
</n-button>
<n-button
v-if="currentTab == 'slow-log'"
class="ml-16"
type="primary"
@click="handleClearSlowLog"
>
<TheIcon :size="18" icon="material-symbols:delete-outline" />
清空慢日志
</n-button>
</template>
<n-tabs v-model:value="currentTab" type="line" animated>
<n-tab-pane name="status" tab="运行状态">
<n-space vertical>
<n-card title="运行状态" rounded-10>
<template #header-extra>
<n-switch v-model:value="isEnabled" @update:value="handleIsEnabled">
<template #checked> 自启动开 </template>
<template #unchecked> 自启动关 </template>
</n-switch>
</template>
<n-space vertical>
<n-alert :type="statusType">
{{ statusStr }}
</n-alert>
<n-space>
<n-button type="success" @click="handleStart">
<TheIcon :size="24" icon="material-symbols:play-arrow-outline-rounded" />
启动
</n-button>
<n-popconfirm @positive-click="handleStop">
<template #trigger>
<n-button type="error">
<TheIcon :size="24" icon="material-symbols:stop-outline-rounded" />
停止
</n-button>
</template>
停止 PHP {{ version }} 会导致使用 PHP {{ version }} 的网站无法访问确定要停止吗
</n-popconfirm>
<n-button type="warning" @click="handleRestart">
<TheIcon :size="18" icon="material-symbols:replay-rounded" />
重启
</n-button>
<n-button type="primary" @click="handleReload">
<TheIcon :size="20" icon="material-symbols:refresh-rounded" />
重载
</n-button>
</n-space>
</n-space>
</n-card>
</n-space>
</n-tab-pane>
<n-tab-pane name="extensions" tab="拓展管理">
<n-card title="拓展列表" :segmented="true" rounded-10>
<n-data-table
striped
remote
:scroll-x="1000"
:loading="false"
:columns="extensionColumns"
:data="extensions"
:row-key="(row: any) => row.slug"
/>
</n-card>
</n-tab-pane>
<n-tab-pane name="config" tab="主配置">
<n-space vertical>
<n-alert type="warning">
此处修改的是 PHP {{ version }} 主配置文件,如果您不了解各参数的含义,请不要随意修改!
</n-alert>
<Editor
v-model:value="config"
language="ini"
theme="vs-dark"
height="60vh"
mt-8
:options="{
automaticLayout: true,
formatOnType: true,
formatOnPaste: true
}"
/>
</n-space>
</n-tab-pane>
<n-tab-pane name="fpm-config" tab="FPM 配置">
<n-space vertical>
<n-alert type="warning">
此处修改的是 PHP {{ version }} FPM 配置文件,如果您不了解各参数的含义,请不要随意修改!
</n-alert>
<Editor
v-model:value="fpmConfig"
language="ini"
theme="vs-dark"
height="60vh"
mt-8
:options="{
automaticLayout: true,
formatOnType: true,
formatOnPaste: true
}"
/>
</n-space>
</n-tab-pane>
<n-tab-pane name="load" tab="负载状态">
<n-data-table
striped
remote
:scroll-x="400"
:loading="false"
:columns="loadColumns"
:data="load"
/>
</n-tab-pane>
<n-tab-pane name="error-log" tab="错误日志">
<Editor
v-model:value="errorLog"
language="ini"
theme="vs-dark"
height="60vh"
mt-8
:options="{
automaticLayout: true,
formatOnType: true,
formatOnPaste: true,
readOnly: true
}"
/>
</n-tab-pane>
<n-tab-pane name="slow-log" tab="慢日志">
<Editor
v-model:value="slowLog"
language="ini"
theme="vs-dark"
height="60vh"
mt-8
:options="{
automaticLayout: true,
formatOnType: true,
formatOnPaste: true,
readOnly: true
}"
/>
</n-tab-pane>
</n-tabs>
</common-page>
</template>

View File

@@ -11,13 +11,12 @@ export default {
{
name: 'apps-php83-index',
path: '',
component: () => import('../php/IndexView.vue'),
component: () => import('./IndexView.vue'),
meta: {
title: 'PHP 8.3',
icon: 'logos:php',
role: ['admin'],
requireAuth: true,
php: 83
requireAuth: true
}
}
]

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-phpmyadmin-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-podman-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NPopconfirm } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-postgresql-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NPopconfirm } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-pureftpd-index'
})
import { NButton, NDataTable, NInput, NPopconfirm } from 'naive-ui'
import pureftpd from '@/api/apps/pureftpd'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-redis-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NPopconfirm } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-rsync-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NInput, NPopconfirm } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-s3fs-index'
})
import { NButton, NDataTable, NInput, NPopconfirm } from 'naive-ui'
import s3fs from '@/api/apps/s3fs'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-supervisor-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NInput, NPopconfirm } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'apps-toolbox-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { DateTime } from 'luxon'
import { NButton } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'backup-index'
})
import backup from '@/api/panel/backup'
import ListView from '@/views/backup/ListView.vue'
import { NButton, NInput } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'cert-index'
})
import AccountView from '@/views/cert/AccountView.vue'
import CertView from '@/views/cert/CertView.vue'
import DnsView from '@/views/cert/DnsView.vue'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'container-index'
})
import ContainerView from '@/views/container/ContainerView.vue'
import ImageView from '@/views/container/ImageView.vue'
import NetworkView from '@/views/container/NetworkView.vue'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'cron-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NInput, NPopconfirm, NSwitch } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'file-index'
})
import CompressModal from '@/views/file/CompressModal.vue'
import ListTable from '@/views/file/ListTable.vue'
import PathInput from '@/views/file/PathInput.vue'

View File

@@ -1,4 +1,8 @@
<script lang="ts" setup>
defineOptions({
name: 'home-index'
})
import { LineChart } from 'echarts/charts'
import {
DataZoomComponent,

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'home-update'
})
import { MdPreview } from 'md-editor-v3'
import 'md-editor-v3/lib/style.css'
import type { MessageReactive } from 'naive-ui'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'monitor-index'
})
import { LineChart } from 'echarts/charts'
import {
DataZoomComponent,

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'safe-index'
})
import ForwardView from '@/views/safe/ForwardView.vue'
import IpRuleView from '@/views/safe/IpRuleView.vue'
import RuleView from '@/views/safe/RuleView.vue'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'setting-index'
})
import SettingBase from '@/views/setting/SettingBase.vue'
import SettingHttps from '@/views/setting/SettingHttps.vue'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'ssh-index'
})
import { FitAddon } from '@xterm/addon-fit'
import { Terminal } from '@xterm/xterm'
import '@xterm/xterm/css/xterm.css'

View File

@@ -1,4 +1,8 @@
<script setup lang="ts">
defineOptions({
name: 'task-index'
})
import Editor from '@guolao/vue-monaco-editor'
import { NButton, NDataTable, NPopconfirm } from 'naive-ui'
import { useI18n } from 'vue-i18n'

View File

@@ -1,4 +1,8 @@
<script lang="ts" setup>
defineOptions({
name: 'website-index'
})
import Editor from '@guolao/vue-monaco-editor'
import {
NButton,