|
@@ -72,12 +72,13 @@
|
|
|
size="small"
|
|
|
@click="lookWork(scope.row.id, scope.row.userid)"
|
|
|
>查看作业</el-button>
|
|
|
- <el-button
|
|
|
+ <el-button type="primary" size="small" @click="lookData(scope.row.userid)">生成报告</el-button>
|
|
|
+ <!-- <el-button
|
|
|
class="de_button"
|
|
|
type="primary"
|
|
|
size="small"
|
|
|
@click="deleteWork(scope.row.id)"
|
|
|
- >删除</el-button>
|
|
|
+ >删除</el-button>-->
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -87,78 +88,114 @@
|
|
|
:before-close="handleClose"
|
|
|
class="add_work"
|
|
|
>
|
|
|
- <div class="zyBox" v-for="(item,index) in worksDetail" :key="index">
|
|
|
- <div class="left">
|
|
|
- <div class="courseTitle">
|
|
|
- {{
|
|
|
- '第'+(item.stage+1)+'阶段'+item.chapterTitle
|
|
|
- }}
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="bigImg" v-if="item.tType == 0">
|
|
|
- <video-player
|
|
|
- class="video-player vjs-custom-skin"
|
|
|
- ref="videoPlayer"
|
|
|
- :playsinline="true"
|
|
|
- :options="item.playerO"
|
|
|
- @play="onPlayerPlay($event)"
|
|
|
- style="width: 100%; height: 100%"
|
|
|
- ></video-player>
|
|
|
- </div>
|
|
|
- <div class="bigImg" v-else>
|
|
|
- <img
|
|
|
- :src="
|
|
|
- item.thumbnail.length > 0 ? item.thumbnail[1][0].url
|
|
|
- : ''
|
|
|
- "
|
|
|
- alt
|
|
|
- />
|
|
|
- </div>
|
|
|
- <div class="thumbnail">
|
|
|
- <div
|
|
|
- style="background: #a3d4ff"
|
|
|
- v-if="item.upVedio.length"
|
|
|
- :class="item.tType == 0 ? 'isClick' : ''"
|
|
|
- >
|
|
|
- <img src="../../assets/icon/spIcon.png" alt @click="item.tType = 0" />
|
|
|
+ <div class="zyBoxC" v-for="(item,index) in worksDetail" :key="index">
|
|
|
+ <div class="courseTitle">
|
|
|
+ {{
|
|
|
+ '第'+(item.stage+1)+'阶段'+item.chapterTitle
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
+ <div class="zyBox">
|
|
|
+ <div class="left">
|
|
|
+ <div class="bigImg" v-if="item.tType == 0">
|
|
|
+ <video-player
|
|
|
+ class="video-player vjs-custom-skin"
|
|
|
+ ref="videoPlayer"
|
|
|
+ :playsinline="true"
|
|
|
+ :options="item.playerO"
|
|
|
+ @play="onPlayerPlay($event)"
|
|
|
+ style="width: 100%; height: 100%"
|
|
|
+ ></video-player>
|
|
|
</div>
|
|
|
- <div :class="item.tType == 1 ? 'isClick' : ''">
|
|
|
+ <div class="bigImg" v-else>
|
|
|
<img
|
|
|
:src="
|
|
|
item.thumbnail.length > 0 ? item.thumbnail[1][0].url
|
|
|
: ''
|
|
|
"
|
|
|
alt
|
|
|
- @click="item.tType = 1"
|
|
|
/>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- <div style="margin: 5px 10px">{{ sInfo.course }}</div>
|
|
|
- <div class="student_Answer">
|
|
|
- <div class="toux">
|
|
|
- <img :src="sInfo.tx != null ? sInfo.tx : tx" alt />
|
|
|
+ <div class="thumbnail">
|
|
|
+ <div
|
|
|
+ style="background: #a3d4ff"
|
|
|
+ v-if="item.upVedio.length"
|
|
|
+ :class="item.tType == 0 ? 'isClick' : ''"
|
|
|
+ >
|
|
|
+ <img src="../../assets/icon/spIcon.png" alt @click="item.tType = 0" />
|
|
|
+ </div>
|
|
|
+ <div :class="item.tType == 1 ? 'isClick' : ''">
|
|
|
+ <img
|
|
|
+ :src="
|
|
|
+ item.thumbnail.length > 0 ? item.thumbnail[1][0].url
|
|
|
+ : ''
|
|
|
+ "
|
|
|
+ alt
|
|
|
+ @click="item.tType = 1"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <div class="nav">
|
|
|
- <div class="studentName">{{ sInfo.sName }}</div>
|
|
|
- <div class="studentAnswer">
|
|
|
- {{
|
|
|
- item.content != ""
|
|
|
- ? item.content
|
|
|
- : "暂无内容"
|
|
|
- }}
|
|
|
- <!-- 雨荒深院菊,霜倒半池莲.唐杜甫《宿赞公房》 -->
|
|
|
+ <div style="margin: 5px 10px">{{ sInfo.course }}</div>
|
|
|
+ <div class="student_Answer">
|
|
|
+ <div class="toux">
|
|
|
+ <img :src="sInfo.tx != null ? sInfo.tx : tx" alt />
|
|
|
+ </div>
|
|
|
+ <div class="nav">
|
|
|
+ <div class="studentName">{{ sInfo.sName }}</div>
|
|
|
+ <div class="studentAnswer">
|
|
|
+ {{
|
|
|
+ item.content != ""
|
|
|
+ ? item.content
|
|
|
+ : "暂无内容"
|
|
|
+ }}
|
|
|
+ <!-- 雨荒深院菊,霜倒半池莲.唐杜甫《宿赞公房》 -->
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- <div class="right">
|
|
|
- <div class="comment">
|
|
|
- <div class="comment_title">
|
|
|
- 评论
|
|
|
- <span>({{ commentCount }})</span>
|
|
|
+ <div style="width: 290px;margin-right: 10px;">
|
|
|
+ <div class="sd_score" style="box-sizing: border-box; width: 100%; box-shadow: none">
|
|
|
+ <div class="score_box">
|
|
|
+ <span>意识能力</span>
|
|
|
+ <el-rate v-model="item.rate.ca"></el-rate>
|
|
|
+ </div>
|
|
|
+ <div class="score_box">
|
|
|
+ <span>科学探究能力</span>
|
|
|
+ <el-rate v-model="item.rate.sia"></el-rate>
|
|
|
+ </div>
|
|
|
+ <div class="score_box">
|
|
|
+ <span>实践创新能力</span>
|
|
|
+ <el-rate v-model="item.rate.eta"></el-rate>
|
|
|
+ </div>
|
|
|
+ <div class="score_box">
|
|
|
+ <span>学习反思能力</span>
|
|
|
+ <el-rate v-model="item.rate.pia"></el-rate>
|
|
|
+ </div>
|
|
|
+ <div class="score_box">
|
|
|
+ <span>工程思维能力</span>
|
|
|
+ <el-rate v-model="item.rate.lra"></el-rate>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <div class="other_Answer">暂无学生评论</div>
|
|
|
- <!-- <div class="other_Answer">
|
|
|
+ <div class="data_body">
|
|
|
+ <div class="title">
|
|
|
+ <span>量规评分</span>
|
|
|
+ </div>
|
|
|
+ <div style="width: 100%">
|
|
|
+ <!-- <img src="../../assets/dataimage/1.png" style="width:90%" /> -->
|
|
|
+ <div
|
|
|
+ class="echart charts_canvas"
|
|
|
+ style="width: 100%; height: 100%; margin: 0 0 0 1rem"
|
|
|
+ ></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="right">
|
|
|
+ <div class="comment">
|
|
|
+ <div class="comment_title">
|
|
|
+ 评论
|
|
|
+ <span>({{ commentCount }})</span>
|
|
|
+ </div>
|
|
|
+ <div class="other_Answer">暂无学生评论</div>
|
|
|
+ <!-- <div class="other_Answer">
|
|
|
<div class="toux">
|
|
|
<img src="../../assets/portal.png" alt="" />
|
|
|
</div>
|
|
@@ -169,11 +206,11 @@
|
|
|
</div>
|
|
|
<div class="otherAnswer">{{ this.commentAnswer }}</div>
|
|
|
</div>
|
|
|
- </div>-->
|
|
|
- </div>
|
|
|
- <div
|
|
|
- class="lastTop"
|
|
|
- style="
|
|
|
+ </div>-->
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="lastTop"
|
|
|
+ style="
|
|
|
width: 100%;
|
|
|
padding: 5px 0px 0px;
|
|
|
box-sizing: border-box;
|
|
@@ -181,58 +218,23 @@
|
|
|
margin-top: 10px;
|
|
|
box-shadow: none;
|
|
|
"
|
|
|
- >
|
|
|
- <div class="moreSay">更多评价</div>
|
|
|
- <div class="more_say_input">
|
|
|
- <el-input
|
|
|
- type="textarea"
|
|
|
- placeholder="还有要说的吗..."
|
|
|
- :rows="8"
|
|
|
- resize="none"
|
|
|
- v-model="item.rate.content"
|
|
|
- style="background: #fafafa"
|
|
|
- ></el-input>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div style="width: 290px">
|
|
|
- <div class="sd_score" style="box-sizing: border-box; width: 100%; box-shadow: none">
|
|
|
- <div class="score_box">
|
|
|
- <span>意识能力</span>
|
|
|
- <el-rate v-model="item.rate.ca"></el-rate>
|
|
|
- </div>
|
|
|
- <div class="score_box">
|
|
|
- <span>科学探究能力</span>
|
|
|
- <el-rate v-model="item.rate.sia"></el-rate>
|
|
|
- </div>
|
|
|
- <div class="score_box">
|
|
|
- <span>实践创新能力</span>
|
|
|
- <el-rate v-model="item.rate.eta"></el-rate>
|
|
|
- </div>
|
|
|
- <div class="score_box">
|
|
|
- <span>学习反思能力</span>
|
|
|
- <el-rate v-model="item.rate.pia"></el-rate>
|
|
|
- </div>
|
|
|
- <div class="score_box">
|
|
|
- <span>工程思维能力</span>
|
|
|
- <el-rate v-model="item.rate.lra"></el-rate>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="data_body">
|
|
|
- <div class="title">
|
|
|
- <span>量规评分</span>
|
|
|
- </div>
|
|
|
- <div style="width: 100%">
|
|
|
- <!-- <img src="../../assets/dataimage/1.png" style="width:90%" /> -->
|
|
|
- <div
|
|
|
- class="echart charts_canvas"
|
|
|
- style="width: 100%; height: 100%; margin: 0 0 0 1rem"
|
|
|
- ></div>
|
|
|
+ >
|
|
|
+ <div class="moreSay">更多评价</div>
|
|
|
+ <div class="more_say_input">
|
|
|
+ <el-input
|
|
|
+ type="textarea"
|
|
|
+ placeholder="还有要说的吗..."
|
|
|
+ :rows="8"
|
|
|
+ resize="none"
|
|
|
+ v-model="item.rate.content"
|
|
|
+ style="background: #fafafa"
|
|
|
+ ></el-input>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <!-- <div class="rbButtom" @click="giveScore">评分</div> -->
|
|
|
+ <div class="rbButtom" @click="updateWorks(item.id,item.rate,index)">评分</div>
|
|
|
</div>
|
|
|
- <!-- <div class="rbButtom" @click="giveScore">评分</div> -->
|
|
|
- <div class="rbButtom" @click="updateWorks(item.id,item.rate,index)">评分</div>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
<el-dialog
|
|
@@ -337,11 +339,32 @@
|
|
|
<el-dialog :visible.sync="pictureDialog" size="tiny">
|
|
|
<img width="100%" :src="dialogImageUrl" alt />
|
|
|
</el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ title="项目评分"
|
|
|
+ :visible.sync="dataVisible"
|
|
|
+ :append-to-body="true"
|
|
|
+ width="1100px"
|
|
|
+ :before-close="handleClose"
|
|
|
+ class="dialog_diy"
|
|
|
+ >
|
|
|
+ <div>
|
|
|
+ <div class="a_addBox">
|
|
|
+ <StudentData :studentInfo="studentInfo"></StudentData>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="dataVisible = false">关 闭</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import StudentData from "./components/studentData";
|
|
|
export default {
|
|
|
+ components: {
|
|
|
+ StudentData,
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
tableHeight: "500px",
|
|
@@ -356,6 +379,8 @@ export default {
|
|
|
dialogVisible1: false,
|
|
|
dialogVisible2: false,
|
|
|
dialogVisible3: false,
|
|
|
+ dataVisible: false,
|
|
|
+ studentInfo: {},
|
|
|
courseByUser: "诗词中的植物",
|
|
|
userName: "林点",
|
|
|
answerName: "宿赞公房",
|
|
@@ -488,6 +513,21 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
methods: {
|
|
|
+ lookData(uid) {
|
|
|
+ let params = {
|
|
|
+ uid: uid,
|
|
|
+ cid: this.id,
|
|
|
+ };
|
|
|
+ this.ajax
|
|
|
+ .get(this.$store.state.api + "selectWorksDetail", params)
|
|
|
+ .then((res) => {
|
|
|
+ this.studentInfo = res.data[0][0];
|
|
|
+ this.dataVisible = true;
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ console.error(err);
|
|
|
+ });
|
|
|
+ },
|
|
|
tableRowClassName({ row, rowIndex }) {
|
|
|
if ((rowIndex + 1) % 2 === 0) {
|
|
|
return "even_row";
|
|
@@ -849,8 +889,8 @@ export default {
|
|
|
width: 1080px;
|
|
|
}
|
|
|
.add_work >>> .el-dialog__body {
|
|
|
- background: #ededed;
|
|
|
- height: 575px;
|
|
|
+ background: #fff;
|
|
|
+ height: 660px;
|
|
|
overflow: auto;
|
|
|
}
|
|
|
.header-title {
|
|
@@ -977,7 +1017,7 @@ export default {
|
|
|
height: 75%;
|
|
|
max-height: 330px; */
|
|
|
overflow: auto;
|
|
|
- height: 330px;
|
|
|
+ height: 290px;
|
|
|
background: #fff;
|
|
|
border-radius: 5px;
|
|
|
padding: 10px;
|
|
@@ -1166,7 +1206,7 @@ export default {
|
|
|
min-width: 230px;
|
|
|
min-height: 370px; */
|
|
|
width: 25%;
|
|
|
- margin-right: 10px;
|
|
|
+ /* margin-right: 10px; */
|
|
|
background: none;
|
|
|
padding: 0;
|
|
|
}
|
|
@@ -1174,6 +1214,8 @@ export default {
|
|
|
.courseTitle {
|
|
|
font-size: 19px;
|
|
|
font-weight: 600;
|
|
|
+ width: 93%;
|
|
|
+ margin-bottom: 20px;
|
|
|
}
|
|
|
|
|
|
.bigImg {
|
|
@@ -1206,14 +1248,24 @@ export default {
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
|
|
|
+.zyBoxC {
|
|
|
+ background: #ededed;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ padding: 20px 0px;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+
|
|
|
.zyBox {
|
|
|
display: flex;
|
|
|
- width: 100%;
|
|
|
+ /* width: 100%; */
|
|
|
position: relative;
|
|
|
min-width: 585px;
|
|
|
min-height: 425px;
|
|
|
}
|
|
|
-.zyBox + .zyBox {
|
|
|
+
|
|
|
+.zyBoxC + .zyBoxC {
|
|
|
margin-top: 10px;
|
|
|
}
|
|
|
.rbButtom {
|
|
@@ -1242,7 +1294,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.data_body {
|
|
|
- height: 292px;
|
|
|
+ height: 340px;
|
|
|
display: flex;
|
|
|
position: relative;
|
|
|
border-radius: 5px;
|
|
@@ -1258,4 +1310,22 @@ export default {
|
|
|
top: 10px;
|
|
|
left: 10px;
|
|
|
}
|
|
|
+
|
|
|
+.dialog_diy >>> .el-dialog__header {
|
|
|
+ padding: 9px 20px 10px;
|
|
|
+ background: #32455b !important;
|
|
|
+}
|
|
|
+.dialog_diy >>> .el-dialog__title {
|
|
|
+ color: #fff;
|
|
|
+ font-size: 15px;
|
|
|
+}
|
|
|
+.dialog_diy >>> .el-dialog__headerbtn {
|
|
|
+ top: 14px;
|
|
|
+}
|
|
|
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
</style>
|