缺陷管理BUG修复

This commit is contained in:
liangdaliang
2025-04-23 14:52:05 +08:00
parent 56ffeb2f05
commit 5ae19a8847
5 changed files with 114 additions and 4 deletions

View File

@@ -68,13 +68,13 @@
<el-table-column prop="outline" label="概要" align="center"/>
<el-table-column prop="status" label="状态" align="center">
<template #default="{ row }">
<dict-tag :options="dict.type.status" :value="row.status"/>
<dict-tag :options="dict.type.bug_status" :value="row.status"/>
</template>
</el-table-column>
<el-table-column prop="manager" label="经办人" align="center"/>
<el-table-column prop="level" label="严重程度" align="center">
<template slot-scope="scope">
<el-tag :type="severityColor[scope.row.level]">{{ scope.row.level }}</el-tag>
<template #default="{ row }">
<dict-tag :options="dict.type.severity_level" :value="row.level"/>
</template>
</el-table-column>
<el-table-column prop="createTime" label="创建时间" align="center"/>
@@ -390,6 +390,7 @@ export default {
this.activeNames = val ? ['1'] : [];
},
handleAdvancedSearch() {
this.handleQuery();
// 高级筛选条件搜索
this.queryParams.pageNum = 1
this.getList()