diff --git a/public/react/src/modules/courses/graduation/topics/GraduateTopicNew.js b/public/react/src/modules/courses/graduation/topics/GraduateTopicNew.js
index 94c238a5e..3845721be 100644
--- a/public/react/src/modules/courses/graduation/topics/GraduateTopicNew.js
+++ b/public/react/src/modules/courses/graduation/topics/GraduateTopicNew.js
@@ -12,6 +12,8 @@ import "../../common/formCommon.css"
import '../style.css'
import '../../css/Courses.css'
import { WordsBtn, City } from 'educoder'
+
+import {Link} from 'react-router-dom'
// import City from './City'
// import './board.css'
@@ -20,6 +22,7 @@ import { WordsBtn, City } from 'educoder'
const confirm = Modal.confirm;
const $ = window.$
const { Option } = Select;
+const NAME_COUNT=60;
// 新建毕设选题
// https://lanhuapp.com/web/#/item/project/board/detail?pid=a3bcd4b1-99ce-4e43-8ead-5b8b0a410807&project_id=a3bcd4b1-99ce-4e43-8ead-5b8b0a410807&image_id=c6d9b36f-7701-4035-afdb-62404681108c
class GraduateTopicNew extends Component{
@@ -38,7 +41,7 @@ class GraduateTopicNew extends Component{
topic_source:[],
topic_type:[],
attachments:undefined,
- addonAfter:60,
+ addonAfter:0,
left_banner_id:undefined,
course_name:undefined
}
@@ -99,7 +102,7 @@ class GraduateTopicNew extends Component{
topic_source:result.data.topic_source,
topic_type:result.data.topic_type,
attachments:result.data.attachments,
- addonAfter:20-parseInt(result.data.selected_data.name.length)
+ addonAfter:parseInt(result.data.selected_data.name.length)
})
this.props.form.setFieldsValue({
tea_id:result.data.selected_data.tea_id,
@@ -257,9 +260,9 @@ class GraduateTopicNew extends Component{
// 附件相关 ------------ END
changeTopicName=(e)=>{
- let num= 60 - parseInt(e.target.value.length);
+ // let num= 60 - parseInt(e.target.value.length);
this.setState({
- addonAfter:num < 0 ? 0 : num
+ addonAfter:e.target.value.length
})
}
render() {
@@ -331,7 +334,7 @@ class GraduateTopicNew extends Component{
From 2d76ddbad8389a12b834b891649d5810b704e0ff Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=9E=97?= <904079904@qq.com>
Date: Fri, 23 Aug 2019 15:52:42 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/templates/shared/main.css | 3 +++
public/react/src/modules/courses/gradinforms/Eduinforms.js | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/app/templates/shared/main.css b/app/templates/shared/main.css
index 81b80cdf8..c77818f16 100644
--- a/app/templates/shared/main.css
+++ b/app/templates/shared/main.css
@@ -779,4 +779,7 @@ html>body #ajax-indicator { position: fixed; }
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
+}
+.yslminHeigth{
+ min-height: 400px;
}
\ No newline at end of file
diff --git a/public/react/src/modules/courses/gradinforms/Eduinforms.js b/public/react/src/modules/courses/gradinforms/Eduinforms.js
index 777f04bc6..a50bc0369 100644
--- a/public/react/src/modules/courses/gradinforms/Eduinforms.js
+++ b/public/react/src/modules/courses/gradinforms/Eduinforms.js
@@ -149,7 +149,7 @@ class Eduinforms extends Component{