|
@@ -199,6 +199,7 @@ export const detailSearchFormSchema: FormSchema[] = [
|
|
fieldNames: { label: 'name', value: 'id' },
|
|
fieldNames: { label: 'name', value: 'id' },
|
|
},
|
|
},
|
|
colProps: { span: 8 },
|
|
colProps: { span: 8 },
|
|
|
|
+ ifShow: false,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
field: 'classId',
|
|
field: 'classId',
|
|
@@ -210,19 +211,7 @@ export const detailSearchFormSchema: FormSchema[] = [
|
|
params: { url: 'educational/class/option' },
|
|
params: { url: 'educational/class/option' },
|
|
},
|
|
},
|
|
colProps: { span: 8 },
|
|
colProps: { span: 8 },
|
|
- },
|
|
|
|
- {
|
|
|
|
- field: 'status',
|
|
|
|
- label: '是否评分',
|
|
|
|
- component: 'Select',
|
|
|
|
- componentProps: {
|
|
|
|
- options: [
|
|
|
|
- { label: '未评分', value: '0' },
|
|
|
|
- { label: '已评分', value: '1' },
|
|
|
|
- ],
|
|
|
|
- getPopupContainer: () => document.body,
|
|
|
|
- },
|
|
|
|
- colProps: { span: 8 },
|
|
|
|
|
|
+ ifShow: false,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
field: 'checkObject',
|
|
field: 'checkObject',
|
|
@@ -239,11 +228,24 @@ export const detailSearchFormSchema: FormSchema[] = [
|
|
colProps: { span: 8 },
|
|
colProps: { span: 8 },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- label: '姓名',
|
|
|
|
|
|
+ label: '名称',
|
|
field: 'name',
|
|
field: 'name',
|
|
component: 'Input',
|
|
component: 'Input',
|
|
colProps: { span: 8 },
|
|
colProps: { span: 8 },
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ field: 'status',
|
|
|
|
+ label: '是否评分',
|
|
|
|
+ component: 'Select',
|
|
|
|
+ componentProps: {
|
|
|
|
+ options: [
|
|
|
|
+ { label: '未评分', value: '0' },
|
|
|
|
+ { label: '已评分', value: '1' },
|
|
|
|
+ ],
|
|
|
|
+ getPopupContainer: () => document.body,
|
|
|
|
+ },
|
|
|
|
+ colProps: { span: 8 },
|
|
|
|
+ },
|
|
];
|
|
];
|
|
|
|
|
|
//问卷/评价结果详情查看表格字段
|
|
//问卷/评价结果详情查看表格字段
|
|
@@ -375,7 +377,7 @@ export const evaluateResultTableColumns: BasicColumn[] = [
|
|
{
|
|
{
|
|
title: '应打分人数',
|
|
title: '应打分人数',
|
|
dataIndex: 'planExecuterNum',
|
|
dataIndex: 'planExecuterNum',
|
|
- width: 80,
|
|
|
|
|
|
+ width: 100,
|
|
align: 'left',
|
|
align: 'left',
|
|
customCell: (record) => {
|
|
customCell: (record) => {
|
|
return { rowSpan: record.rowSpanTopic };
|
|
return { rowSpan: record.rowSpanTopic };
|
|
@@ -384,7 +386,7 @@ export const evaluateResultTableColumns: BasicColumn[] = [
|
|
{
|
|
{
|
|
title: '实际打分人数',
|
|
title: '实际打分人数',
|
|
dataIndex: 'actualExecuterNum',
|
|
dataIndex: 'actualExecuterNum',
|
|
- width: 80,
|
|
|
|
|
|
+ width: 110,
|
|
align: 'left',
|
|
align: 'left',
|
|
customCell: (record) => {
|
|
customCell: (record) => {
|
|
return { rowSpan: record.rowSpanTopic };
|
|
return { rowSpan: record.rowSpanTopic };
|