|
@@ -2376,16 +2376,26 @@
|
|
|
</div>
|
|
|
<div class="psBox">
|
|
|
<div>
|
|
|
- <span>项目式学习</span
|
|
|
+ <span>总分</span
|
|
|
><el-input-number
|
|
|
class="number"
|
|
|
v-model="scoreDetail[0].scoreAll.first"
|
|
|
+ @change="setScore"
|
|
|
:controls="false"
|
|
|
:min="0"
|
|
|
:max="100"
|
|
|
></el-input-number>
|
|
|
</div>
|
|
|
- <div>
|
|
|
+ <div style="display:block;">
|
|
|
+ <span>评审说明:</span
|
|
|
+ ><textarea
|
|
|
+ :rows="20"
|
|
|
+ class="tAreaCss"
|
|
|
+ placeholder="请输入评语。"
|
|
|
+ v-model="scoreDetail[0].scoreAll.content"
|
|
|
+ ></textarea>
|
|
|
+ </div>
|
|
|
+ <!-- <div>
|
|
|
<span>项目成果</span
|
|
|
><el-input-number
|
|
|
class="number"
|
|
@@ -2415,15 +2425,15 @@
|
|
|
3
|
|
|
)
|
|
|
}}</span>
|
|
|
- </div>
|
|
|
- <div style="border-top: 1px solid #eee; padding-top: 10px">
|
|
|
+ </div> -->
|
|
|
+ <!-- <div style="border-top: 1px solid #eee; padding-top: 10px">
|
|
|
<span>总分</span
|
|
|
><span class="number" style="font-size: 35px; color: #4b79ce">{{
|
|
|
scoreDetail[0].scoreAll.first +
|
|
|
scoreDetail[0].scoreAll.second +
|
|
|
scoreDetail[0].scoreAll.third
|
|
|
}}</span>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
<div class="addScore" @click="addScore">评分</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -2723,6 +2733,11 @@ export default {
|
|
|
// this.goTo("/anliList");
|
|
|
// }
|
|
|
// },
|
|
|
+ setScore() {
|
|
|
+ this.scoreDetail[0].scoreAll.second = this.scoreDetail[0].scoreAll.first;
|
|
|
+ this.scoreDetail[0].scoreAll.third = this.scoreDetail[0].scoreAll.first;
|
|
|
+ this.$forceUpdate();
|
|
|
+ },
|
|
|
isNumber(e, t) {
|
|
|
if (e.includes(".")) {
|
|
|
this.$message.error("暂时不支持小数点评分");
|
|
@@ -2802,13 +2817,14 @@ export default {
|
|
|
if (this.scoreDetail[0].scoreAll.first == "") {
|
|
|
this.$message.error("请将信息填写完整");
|
|
|
return;
|
|
|
- } else if (this.scoreDetail[0].scoreAll.second == "") {
|
|
|
- this.$message.error("请将信息填写完整");
|
|
|
- return;
|
|
|
- } else if (this.scoreDetail[0].scoreAll.third == "") {
|
|
|
- this.$message.error("请将信息填写完整");
|
|
|
- return;
|
|
|
}
|
|
|
+ // else if (this.scoreDetail[0].scoreAll.second == "") {
|
|
|
+ // this.$message.error("请将信息填写完整");
|
|
|
+ // return;
|
|
|
+ // } else if (this.scoreDetail[0].scoreAll.third == "") {
|
|
|
+ // this.$message.error("请将信息填写完整");
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
let params = [
|
|
|
{
|
|
|
rid: this.aid,
|
|
@@ -5009,6 +5025,7 @@ ol {
|
|
|
text-indent: 10px;
|
|
|
border: 1px solid #e6e6e8;
|
|
|
background: #fafafa;
|
|
|
+ margin-top: 10px;
|
|
|
}
|
|
|
.tAreaCss:focus-visible {
|
|
|
outline: none !important;
|