1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-14 01:34:47 +08:00

fix: 面板设置样式调整 (#2700)

This commit is contained in:
ssongliu 2023-10-27 11:54:11 +08:00 committed by GitHub
parent 6c957d157b
commit de2cac5ebc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

View File

@ -371,7 +371,7 @@ const message = {
portHelper: portHelper:
'This port is the exposed port of the container. You need to save the modification separately and restart the container!', 'This port is the exposed port of the container. You need to save the modification separately and restart the container!',
loadFromRemote: 'load from Server', loadFromRemote: 'Load from server',
loadFromRemoteHelper: loadFromRemoteHelper:
'This action will synchronize the database info on the server to 1Panel, do you want to continue?', 'This action will synchronize the database info on the server to 1Panel, do you want to continue?',
passwordHelper: 'Unable to retrieve, please modify', passwordHelper: 'Unable to retrieve, please modify',
@ -1129,7 +1129,7 @@ const message = {
path: 'Path', path: 'Path',
safe: 'Security', safe: 'Security',
bindInfo: 'BindInfo', bindInfo: 'Bind Info',
bindAll: 'Listen All', bindAll: 'Listen All',
bindInfoHelper: bindInfoHelper:
'Changing the service listening address or protocol may result in service unavailability. Do you want to continue?', 'Changing the service listening address or protocol may result in service unavailability. Do you want to continue?',

View File

@ -102,6 +102,15 @@
</template> </template>
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item :label="$t('setting.syncTime')">
<el-input disabled v-model="form.localTime">
<template #append>
<el-button v-show="!show" @click="onChangeNtp" icon="Setting">
{{ $t('commons.button.set') }}
</el-button>
</template>
</el-input>
</el-form-item>
<el-form-item :label="$t('setting.systemIP')" prop="systemIP"> <el-form-item :label="$t('setting.systemIP')" prop="systemIP">
<el-input disabled v-if="form.systemIP" v-model="form.systemIP"> <el-input disabled v-if="form.systemIP" v-model="form.systemIP">
<template #append> <template #append>
@ -118,15 +127,6 @@
</template> </template>
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item :label="$t('setting.syncTime')">
<el-input disabled v-model="form.localTime">
<template #append>
<el-button v-show="!show" @click="onChangeNtp" icon="Setting">
{{ $t('commons.button.set') }}
</el-button>
</template>
</el-input>
</el-form-item>
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>