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="公告标题" prop="noticeTitle">
<el-input v-model="queryParams.noticeTitle" placeholder="请输入公告标题" clearable style="width: 240px" style="width: 200px" @keyup.enter="handleQuery" />
<el-input v-model="queryParams.noticeTitle" placeholder="请输入公告标题" clearable style="width: 240px" @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="操作人员" prop="createByName">
<el-input v-model="queryParams.createByName" placeholder="请输入操作人员" clearable style="width: 240px" style="width: 200px" @keyup.enter="handleQuery" />
<el-input v-model="queryParams.createByName" placeholder="请输入操作人员" clearable style="width: 240px" @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="类型" prop="noticeType">
<el-select v-model="queryParams.noticeType" placeholder="公告类型" clearable style="width: 240px" style="width: 200px">
<el-select v-model="queryParams.noticeType" placeholder="公告类型" clearable style="width: 240px">
<el-option v-for="dict in sys_notice_type" :key="dict.value" :label="dict.label" :value="dict.value" />
</el-select>
</el-form-item>