1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-31 22:18:07 +08:00

style: 取消空格

This commit is contained in:
zhengkunwang223 2022-12-23 14:56:07 +08:00 committed by zhengkunwang223
parent bbf0349ae7
commit 25604d4dda

View File

@ -111,7 +111,7 @@
<el-input v-model="website.alias" :placeholder="$t('website.aliasHelper')"></el-input>
<div>
<span class="input-help">
{{ $t('website.staticPath') + staticPath + '/' + website.alias }}
<span>{{ $t('website.staticPath') + staticPath + website.alias }}</span>
<span v-if="website.type === 'static' && website.alias != ''">{{ '/index' }}</span>
</span>
</div>
@ -248,7 +248,7 @@ const acceptParams = async (installPath: string) => {
websiteForm.value.resetFields();
}
console.log(installPath);
staticPath.value = installPath + '/www/sites';
staticPath.value = installPath + '/www/sites/';
await ListGroups().then((res) => {
groups.value = res.data;