style: 日志导出文件管理选择控件样式调整

This commit is contained in:
TsMask
2024-11-05 17:41:51 +08:00
parent 886ea37702
commit 6583bc9972

View File

@@ -277,34 +277,27 @@ onMounted(() => {
<!-- 插槽-卡片左侧侧 --> <!-- 插槽-卡片左侧侧 -->
<template #title> <template #title>
<a-form :model="queryParams" name="queryParams" layout="horizontal"> <a-form :model="queryParams" name="queryParams" layout="horizontal">
<a-row> <a-row :gutter="16" align="middle">
<a-col :lg="8" :md="12" :xs="24"> <a-col>
<a-form-item <span>{{ t('views.logManage.exportFile.fileName') }}:</span>&nbsp;
:label="t('views.logManage.exportFile.fileName')"
name="fileName"
style="margin-bottom: 0"
>
<a-select <a-select
v-model:value="logSelect" v-model:value="logSelect"
:options="fileList" :options="fileList"
@change="fnNeChange" @change="fnNeChange"
:allow-clear="false" :allow-clear="false"
style="width: 200px"
/> />
</a-form-item>
</a-col> </a-col>
<a-col :lg="16" :md="18" :xs="24" v-if="queryParams.path"> <template v-if="queryParams.path">
<a-form-item <span>{{ t('views.logManage.neFile.nePath') }}:</span>&nbsp;
:label="t('views.logManage.neFile.nePath')" <a-col>
name="configName"
style="margin-bottom: 0"
>
<a-breadcrumb> <a-breadcrumb>
<a-breadcrumb-item> <a-breadcrumb-item>
{{ queryParams.path }} {{ queryParams.path }}
</a-breadcrumb-item> </a-breadcrumb-item>
</a-breadcrumb> </a-breadcrumb>
</a-form-item>
</a-col> </a-col>
</template>
</a-row> </a-row>
</a-form> </a-form>
</template> </template>