This commit is contained in:
闫晓茹 2023-05-06 16:49:56 +08:00
parent 542c5fccb9
commit 2043d8aa28

View File

@ -25,6 +25,21 @@
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="资讯分类类型" prop="informationCategoryType">
<el-select
v-model="queryParams.informationCategoryType"
placeholder="请选择"
style="width: 250px"
>
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-form-item>
<!-- <el-form-item label="资讯分类排序" prop="sort">
<el-input
v-model="queryParams.sort"
@ -125,7 +140,7 @@
{{
scope.row.informationCategoryType == "HEALTH_NOUS" ? "健康常识" : ""
}}
<!-- {{ scope.row.informationCategoryType == "OTHER" ? "其他" : "" }} -->
{{ scope.row.informationCategoryType == "NURSING_NEWS" ? "护理新闻" : "" }}
</template>
</el-table-column>