|
@@ -250,7 +250,14 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
- <div style="color: #cd0808; width: 97%; margin: 10px auto">
|
|
|
+ <div
|
|
|
+ style="
|
|
|
+ color: #cd0808;
|
|
|
+ width: 97%;
|
|
|
+ margin: 10px auto;
|
|
|
+ font-size: 14px;
|
|
|
+ "
|
|
|
+ >
|
|
|
*作者不超过6人;默认第一位为主要负责人,联系电话必填,其余人员可以选填
|
|
|
</div>
|
|
|
</div>
|
|
@@ -266,7 +273,8 @@
|
|
|
v-model="raceDetail.courseText"
|
|
|
@input="updateTitle"
|
|
|
maxlength="200"
|
|
|
- placeholder="200字以内,介绍项目背景,描述生活中的现象,引出要解决的核心问题,概述解决问题的思路及预期成果等"
|
|
|
+ placeholder="200字以内,介绍项目背景,描述生活中的现象,引出要解决的核心问题,概述解决问题的思路及预期成果等。"
|
|
|
+ style="font-size: 14px"
|
|
|
></textarea>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -388,7 +396,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-dialog
|
|
|
- title="添加项目成员"
|
|
|
+ :title="isAddOrUp == true ? '修改项目成员' : '添加项目成员'"
|
|
|
:visible.sync="dialogVisibleMember"
|
|
|
:append-to-body="true"
|
|
|
width="700px"
|
|
@@ -572,7 +580,7 @@ export default {
|
|
|
sysPicVisible: false,
|
|
|
isSysPic: false,
|
|
|
sysPic: [],
|
|
|
- upIndex: 0,
|
|
|
+ upIndex: -1,
|
|
|
sName: "",
|
|
|
sSubject: "",
|
|
|
sSchool: "",
|
|
@@ -888,14 +896,6 @@ export default {
|
|
|
},
|
|
|
isAddPPTeacher() {
|
|
|
if (this.raceDetail.tableData.length == 0) {
|
|
|
- if (this.sPhone == "") {
|
|
|
- this.$message.error("手机号不能为空");
|
|
|
- return;
|
|
|
- } else if (!/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)) {
|
|
|
- this.$message.error("手机号格式不正确");
|
|
|
- return;
|
|
|
- }
|
|
|
- } else {
|
|
|
if (this.sName === "") {
|
|
|
this.$message.error("姓名不能为空");
|
|
|
return;
|
|
@@ -904,11 +904,16 @@ export default {
|
|
|
return;
|
|
|
} else if (this.sSchool === "") {
|
|
|
this.$message.error("学校不能为空");
|
|
|
- } else if (this.sPhone != "") {
|
|
|
- if (!/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)) {
|
|
|
- this.$message.error("手机号格式不正确");
|
|
|
- return;
|
|
|
- }
|
|
|
+ return;
|
|
|
+ } else if (this.sPhone == "") {
|
|
|
+ this.$message.error("手机号不能为空");
|
|
|
+ return;
|
|
|
+ } else if (!/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)) {
|
|
|
+ this.$message.error("手机号格式不正确");
|
|
|
+ return;
|
|
|
+ } else if (this.sEmail == "") {
|
|
|
+ this.$message.error("邮箱不能为空");
|
|
|
+ return;
|
|
|
} else if (this.sEmail != "") {
|
|
|
if (
|
|
|
!/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/.test(
|
|
@@ -919,8 +924,63 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
|
+ } else if (this.raceDetail.tableData.length > 0) {
|
|
|
+ if (this.upIndex == 0) {
|
|
|
+ if (this.sName === "") {
|
|
|
+ this.$message.error("姓名不能为空");
|
|
|
+ return;
|
|
|
+ } else if (this.sSubject === "") {
|
|
|
+ this.$message.error("学科不能为空");
|
|
|
+ return;
|
|
|
+ } else if (this.sSchool === "") {
|
|
|
+ this.$message.error("学校不能为空");
|
|
|
+ return;
|
|
|
+ } else if (this.sPhone == "") {
|
|
|
+ this.$message.error("手机号不能为空");
|
|
|
+ return;
|
|
|
+ } else if (!/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)) {
|
|
|
+ this.$message.error("手机号格式不正确");
|
|
|
+ return;
|
|
|
+ } else if (this.sEmail == "") {
|
|
|
+ this.$message.error("邮箱不能为空");
|
|
|
+ return;
|
|
|
+ } else if (this.sEmail != "") {
|
|
|
+ if (
|
|
|
+ !/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/.test(
|
|
|
+ this.sEmail
|
|
|
+ )
|
|
|
+ ) {
|
|
|
+ this.$message.error("邮箱格式不正确");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if (this.sName === "") {
|
|
|
+ this.$message.error("姓名不能为空");
|
|
|
+ return;
|
|
|
+ } else if (this.sSubject === "") {
|
|
|
+ this.$message.error("学科不能为空");
|
|
|
+ return;
|
|
|
+ } else if (this.sSchool === "") {
|
|
|
+ this.$message.error("学校不能为空");
|
|
|
+ return;
|
|
|
+ } else if (this.sPhone != "") {
|
|
|
+ if (!/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)) {
|
|
|
+ this.$message.error("手机号格式不正确");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ } else if (this.sEmail != "") {
|
|
|
+ if (
|
|
|
+ !/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/.test(
|
|
|
+ this.sEmail
|
|
|
+ )
|
|
|
+ ) {
|
|
|
+ this.$message.error("邮箱格式不正确");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
if (this.isAddOrUp == true) {
|
|
|
this.raceDetail.tableData[this.upIndex].sn = this.sName;
|
|
|
this.raceDetail.tableData[this.upIndex].su = this.sSubject;
|
|
@@ -941,6 +1001,8 @@ export default {
|
|
|
this.sSchool = "";
|
|
|
this.sEmail = "";
|
|
|
this.sPhone = "";
|
|
|
+ this.isAddOrUp = false;
|
|
|
+ this.upIndex = -1;
|
|
|
this.dialogVisibleMember = false;
|
|
|
this.$emit("updateTitle", this.raceDetail);
|
|
|
},
|
|
@@ -1078,6 +1140,7 @@ export default {
|
|
|
overflow: auto;
|
|
|
min-width: 260px;
|
|
|
flex-direction: column;
|
|
|
+ font-size: 14px;
|
|
|
}
|
|
|
.steps {
|
|
|
display: flex;
|
|
@@ -1308,8 +1371,10 @@ export default {
|
|
|
width: 97%;
|
|
|
margin: 10px auto;
|
|
|
}
|
|
|
+
|
|
|
.tAreaCss {
|
|
|
resize: none;
|
|
|
+ font-size: 14px;
|
|
|
}
|
|
|
.addNewPP >>> .el-dialog__body {
|
|
|
padding: 5px 20px;
|
|
@@ -1551,6 +1616,7 @@ export default {
|
|
|
.raTable >>> .el-table,
|
|
|
.raTable >>> .el-table__body-wrapper {
|
|
|
height: auto !important;
|
|
|
+ font-size: 16px !important;
|
|
|
}
|
|
|
.add_chapters_box {
|
|
|
text-align: left;
|
|
@@ -1788,8 +1854,8 @@ export default {
|
|
|
}
|
|
|
.lxr {
|
|
|
color: #fff;
|
|
|
- background: center center #4A54FF;
|
|
|
- background-image: linear-gradient(315deg,#6772FF 0, #00f9e5 100%);
|
|
|
+ background: center center #4a54ff;
|
|
|
+ background-image: linear-gradient(315deg, #6772ff 0, #00f9e5 100%);
|
|
|
background-size: 104% 104%;
|
|
|
min-width: 50px;
|
|
|
}
|