错误码模块完成

This commit is contained in:
YunaiV
2021-04-22 00:49:20 +08:00
parent fbf45cd6fe
commit 49a386d7be
6 changed files with 261 additions and 25 deletions

View File

@ -43,8 +43,8 @@
<!-- 列表 -->
<el-table v-loading="loading" :data="list">
<el-table-column label="错误码编号" align="center" prop="id" />
<el-table-column label="错误码类型" align="center" prop="type" width="80">
<el-table-column label="编号" align="center" prop="id" />
<el-table-column label="类型" align="center" prop="type" width="80">
<template slot-scope="scope">
<span>{{ getDictDataLabel(DICT_TYPE.SYS_ERROR_CODE_TYPE, scope.row.type) }}</span>
</template>