From c542b7ac32793d0338c64e26614902cd2840e8e1 Mon Sep 17 00:00:00 2001 From: 也曾为你、像超人 <1553592282@qq.com> Date: 星期六, 01 十月 2022 07:06:10 +0800 Subject: [PATCH] 解决导出时包含空子列表数据异常的问题 --- ruoyi-ui/src/views/system/post/index.vue | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ruoyi-ui/src/views/system/post/index.vue b/ruoyi-ui/src/views/system/post/index.vue index 02698da..444bf63 100644 --- a/ruoyi-ui/src/views/system/post/index.vue +++ b/ruoyi-ui/src/views/system/post/index.vue @@ -1,12 +1,11 @@ <template> <div class="app-container"> - <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px"> + <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> <el-form-item label="岗位编码" prop="postCode"> <el-input v-model="queryParams.postCode" placeholder="请输入岗位编码" clearable - size="small" @keyup.enter.native="handleQuery" /> </el-form-item> @@ -15,12 +14,11 @@ v-model="queryParams.postName" placeholder="请输入岗位名称" clearable - size="small" @keyup.enter.native="handleQuery" /> </el-form-item> <el-form-item label="状态" prop="status"> - <el-select v-model="queryParams.status" placeholder="岗位状态" clearable size="small"> + <el-select v-model="queryParams.status" placeholder="岗位状态" clearable> <el-option v-for="dict in dict.type.sys_normal_disable" :key="dict.value" -- Gitblit v1.9.2