fix: type
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
zzc
2026-06-15 23:44:29 +08:00
parent 97f2e6a17c
commit 0ef2b697a3
3 changed files with 26 additions and 5 deletions

View File

@@ -1,7 +1,10 @@
<template>
<div class="topic-category-container">
<vab-query-form>
<vab-query-form-right-panel :span="24">
<vab-query-form-left-panel :span="12">
<el-button icon="el-icon-plus" type="primary" @click="handleAdd">创建类别</el-button>
</vab-query-form-left-panel>
<vab-query-form-right-panel :span="12">
<el-form :inline="true" :model="queryForm" @submit.native.prevent>
<el-form-item>
<el-input v-model.trim="queryForm.keyword" clearable placeholder="请输入分类名称" />
@@ -75,6 +78,9 @@
},
methods: {
formatTime,
handleAdd() {
this.$refs['edit'].showEdit()
},
handleSizeChange(val) {
this.queryForm.pageSize = val
this.fetchData()