Commit 8e951492 by chengming

测试问卷修改

parent 883f1a63
...@@ -90,6 +90,11 @@ class Check extends Component { ...@@ -90,6 +90,11 @@ class Check extends Component {
title: "答题用时(分)", title: "答题用时(分)",
dataIndex: "duration", dataIndex: "duration",
key: "duration", key: "duration",
render: text => (
<div>
<p>{(text / 60).toFixed(2)}</p>
</div>
),
}, },
{ {
title: "操作", title: "操作",
......
...@@ -187,9 +187,9 @@ class ExamCheck extends Component { ...@@ -187,9 +187,9 @@ class ExamCheck extends Component {
let reg = /[@#\$%\^&\*{}|\\]+/g.test(examKeyword); let reg = /[@#\$%\^&\*{}|\\]+/g.test(examKeyword);
if (!reg) { if (!reg) {
getExamList({ getExamList({
examKeyword: examKeyword, name: examKeyword,
pageindex: 1, pageNo: 1,
pagesize: pagesize, pageSize: pagesize,
}); });
this.setState({ this.setState({
page: 1, page: 1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment