optimize LeftMenus

This commit is contained in:
unitwk 2023-08-27 11:27:44 +08:00
parent b4dd21e861
commit 6993b321e2
2 changed files with 19 additions and 17 deletions

View File

@ -26,7 +26,10 @@ defineProps<{
.btn {
display: flex;
text-align: center;
padding: 8px 12px;
display: flex;
align-items: center;
height: 40px;
padding: 0px 12px;
min-width: 40px;
cursor: pointer;
border-radius: 6px;

View File

@ -134,22 +134,6 @@ onMounted(async () => {
/>
</a-form-item>
<a-form-item>
<a-typography-title :level="5">{{ t("面板绑定IP") }}</a-typography-title>
<a-typography-paragraph type="secondary">
{{
t(
"适用于主机上拥有多张网卡多个IP地址的情况如果您只有一个公网IP那么请不要配置此项。"
)
}}
</a-typography-paragraph>
<a-input
v-model:value="formData.httpIp"
style="max-width: 320px"
:placeholder="t('请输入内容')"
/>
</a-form-item>
<a-form-item>
<a-typography-title :level="5">{{ t("预设资源下载点") }}</a-typography-title>
<a-typography-paragraph type="secondary">
@ -161,6 +145,21 @@ onMounted(async () => {
</a-typography-paragraph>
<a-input
v-model:value="formData.quickInstallAddr"
:placeholder="t('请输入内容')"
/>
</a-form-item>
<a-form-item>
<a-typography-title :level="5">{{ t("面板绑定IP") }}</a-typography-title>
<a-typography-paragraph type="secondary">
{{
t(
"适用于主机上拥有多张网卡多个IP地址的情况如果您只有一个公网IP那么请不要配置此项。"
)
}}
</a-typography-paragraph>
<a-input
v-model:value="formData.httpIp"
style="max-width: 320px"
:placeholder="t('请输入内容')"
/>