fix:修改审核管理模块四个页面序号显示ID问题

This commit is contained in:
wyx
2022-12-06 21:49:14 +08:00
parent 1d16211424
commit a7dd165d76
4 changed files with 27 additions and 10 deletions

View File

@@ -261,9 +261,9 @@ export default {
}
let data = table;
let array = [];
data.map((item) => {
data.map((item, n) => {
let obj = {
number: item.offcourseId,
number: n+1,
name: item.name || "- ",
type: item.type == 1 ? "线上" : "线下",
content: item.categoryId,