Commit a0da10ee by zhujian

'fix'

parent 2db1a120
...@@ -344,7 +344,10 @@ function AddExam(props: any) { ...@@ -344,7 +344,10 @@ function AddExam(props: any) {
{` 时长不能超过1440分钟(24小时)`}</span> {` 时长不能超过1440分钟(24小时)`}</span>
</Form.Item> </Form.Item>
<Form.Item label="考试说明" > <Form.Item label="考试说明"
validateStatus={(check && (desclen>1000)) ? 'error' : ''}
help={check && (desclen>1000) && '最多只能输入1000个字'}
>
{ {
(getData || (props.type !== 'edit')) && <GraphicsEditor (getData || (props.type !== 'edit')) && <GraphicsEditor
maxLimit={1000} maxLimit={1000}
......
...@@ -238,8 +238,13 @@ function ExaminationManager(props: any) { ...@@ -238,8 +238,13 @@ function ExaminationManager(props: any) {
} }
function getList() { function getList() {
const _query ={...query};
// if(_query.examCreator){
// _query.examCreator =parseInt(_query.examCreator)
// }
Service.Hades("public/hades/queryExamPageList", { Service.Hades("public/hades/queryExamPageList", {
...query, userId: User.getStoreUserId(), ..._query, userId: User.getStoreUserId(),
tenantId: User.getStoreId(), tenantId: User.getStoreId(),
source: 0 source: 0
}).then((res) => { }).then((res) => {
......
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