fix 修复 全局替换样式重复问题

This commit is contained in:
疯狂的狮子Li
2024-04-18 17:06:30 +08:00
parent 7386e69033
commit 03c736af82
10 changed files with 18 additions and 18 deletions

View File

@ -5,13 +5,13 @@
<el-card shadow="hover">
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width="68px">
<el-form-item label="配置key" prop="configKey">
<el-input v-model="queryParams.configKey" placeholder="配置key" clearable style="width: 240px" style="width: 200px" @keyup.enter="handleQuery" />
<el-input v-model="queryParams.configKey" placeholder="配置key" clearable style="width: 240px" @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="桶名称" prop="bucketName">
<el-input v-model="queryParams.bucketName" placeholder="请输入桶名称" clearable style="width: 240px" style="width: 200px" @keyup.enter="handleQuery" />
<el-input v-model="queryParams.bucketName" placeholder="请输入桶名称" clearable style="width: 240px" @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="是否默认" prop="status">
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable style="width: 240px" style="width: 200px">
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable style="width: 240px">
<el-option key="0" label="是" value="0" />
<el-option key="1" label="否" value="1" />
</el-select>

View File

@ -25,7 +25,7 @@
></el-date-picker>
</el-form-item>
<el-form-item label="服务商" prop="service">
<el-input v-model="queryParams.service" placeholder="请输入服务商" clearable style="width: 240px" style="width: 200px" @keyup.enter="handleQuery" />
<el-input v-model="queryParams.service" placeholder="请输入服务商" clearable style="width: 240px" @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item>
<el-button type="primary" icon="search" @click="handleQuery">搜索</el-button>