|
@@ -150,7 +150,7 @@ export const formSchema: FormSchema[] = [
|
|
|
export const textbookColumns: BasicColumn[] = [
|
|
|
{
|
|
|
title: '课程名称',
|
|
|
- dataIndex: 'courseSubjectIdCn',
|
|
|
+ dataIndex: 'courseName',
|
|
|
width: 100,
|
|
|
},
|
|
|
{
|
|
@@ -172,6 +172,9 @@ export const textbookColumns: BasicColumn[] = [
|
|
|
{
|
|
|
title: '使用类型',
|
|
|
dataIndex: 'useType',
|
|
|
+ customRender: ({ record }) => {
|
|
|
+ return record.useType ? record.useType + '学期' : '';
|
|
|
+ },
|
|
|
width: 100,
|
|
|
},
|
|
|
{
|
|
@@ -257,7 +260,7 @@ export const ClassColumns: BasicColumn[] = [
|
|
|
width: 150,
|
|
|
},
|
|
|
{
|
|
|
- title: '征订数量',
|
|
|
+ title: '班级人数',
|
|
|
dataIndex: 'totalStudent',
|
|
|
width: 100,
|
|
|
},
|