11wqe1 8 months ago
parent
commit
e7ee528fdc

+ 14 - 1
src/components/pages/components/studentReport.vue

@@ -2,7 +2,10 @@
   <div style="width: 100%; height: 100%">
     <div class="sr_head">
       学生成长报告
-      <el-button type="primary" size="small" @click="downloadFile('https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/student01-%E5%AD%A6%E7%94%9F%E6%88%90%E9%95%BF%E6%8A%A5%E5%91%8A1719315423787.pdf');">导出报告</el-button>
+      <div class="sr_headBtnS">
+        <el-button type="primary" size="small" @click="downloadFile('https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/student01-%E5%AD%A6%E7%94%9F%E6%88%90%E9%95%BF%E6%8A%A5%E5%91%8A1719315423787.pdf');">导出报告</el-button>
+        <el-button style="margin-left: 10px;" @click="pageBack" type="primary" size="small">返回</el-button>
+      </div>
       
     </div>
     <div class="sr_body">
@@ -79,6 +82,9 @@ export default {
     },
   },
   methods: {
+    pageBack(){
+      this.$emit('cancelR');
+    },
     downloadFile(url){
       var credentials = {
         accessKeyId: "AKIATLPEDU37QV5CHLMH",
@@ -137,6 +143,13 @@ export default {
   font-weight: bolder;
   text-align: center;
   margin-bottom: 15px;
+  position: relative;
+}
+.sr_headBtnS{
+  position: absolute;
+  right: 0;
+  bottom: 0;
+  display: flex;
 }
 .sr_body {
   width: 100%;

+ 13 - 1
src/components/pages/components/workData.vue

@@ -158,6 +158,13 @@
             ></div>
           </div>
           <div style="width: 100%">
+            <div style="display: flex;align-items: center;padding-bottom: 15px;font-size: 14px;color: rgba(0, 0, 0, 0.4);">
+              <span @click="pageBack" style="height: 100%;cursor: pointer;">评价管理</span>
+              <span style="margin: 0 5px;">
+                <i class="el-icon-arrow-right"></i>
+              </span>
+              <div style="font-weight: 600;color: rgba(0, 0, 0, 0.9);">查看作业</div>
+            </div>
             <div style="width:94%;margin: 0 auto;font-size: 26px;">{{ dataJson.title }}</div>
             <WorksDetail2 :cid="cid" :uid="uid" :ooid="ooid"></WorksDetail2>
             <!-- <el-table
@@ -198,7 +205,7 @@ import ScoreData from "./data/scoreData";
 import WorksDetail2 from "./worksDetail2";
 
 export default {
-  props: ["dataJson", "cid", "uid", "ooid"],
+  props: ["dataJson", "cid", "uid", "ooid","dialogVisible"],
   components: {
     WorkData,
     ProblelmData,
@@ -540,6 +547,11 @@ export default {
         return "";
       }
     },
+    pageBack(){
+      console.log('666');
+      
+      this.$emit("update:dialogVisible", false);
+    },
     getData() {
       let params = {
         cid: this.courseId,

+ 7 - 7
src/components/pages/components/worksDetail2.vue

@@ -173,7 +173,7 @@
             prop="time"
             label="时间"
             width="100px"
-            align="center"
+            align="center" 
           ></el-table-column>
           <el-table-column align="center" label="操作" width="260px">
             <template slot-scope="scope">
@@ -183,7 +183,7 @@
                 @click="
                   lookWork(scope.row.id, scope.row.userid, 0, scope.$index)
                 "
-                >查看&改</el-button
+                >查看&改</el-button
               >
               <!-- <el-button
                 type="primary"
@@ -1908,7 +1908,7 @@ export default {
         // if (leftHeight < pageHeight) {
         pdf.addImage(pageData, 'JPEG', 10, 0, imgWidth-20, imgHeight-20 );
        
-        pdf.save( this.allWorks.course+'-'+ this.allWorks.sName+'.pdf')
+        pdf.save( this.allWorks.course+'-'+ this.allWorks.sName+'学生作业集.pdf')
         this.worksLoading = false
     })
     .catch((err) => {
@@ -4537,19 +4537,19 @@ export default {
 }
 
 .redioStyle5 >>> .el-radio__label {
-  font-size: 18px;
+  font-size: 14px;
   color: #06a7ff !important;
 }
 .redioStyle2 >>> .el-radio__label {
-  font-size: 18px;
+  font-size: 14px;
 }
 
 .redioStyle3 >>> .el-checkbox__label {
-  font-size: 18px;
+  font-size: 14px;
   color: #06a7ff !important;
 }
 .redioStyle4 >>> .el-checkbox__label {
-  font-size: 18px;
+  font-size: 14px;
 }
 
 .task_title {

+ 10 - 6
src/components/pages/works.vue

@@ -237,6 +237,7 @@
       :uid="userid"
       :cid="dataJson.courseId"
       :ooid="oid"
+      :dialogVisible.sync="dialogVisible"
       v-if="dialogVisible"
       class="workdates"
     ></WorkDate>
@@ -320,8 +321,9 @@
               prop="sName"
               label="姓名"
               min-width="20"
+              align="center"
             ></el-table-column>
-            <el-table-column label="操作" min-width="20">
+            <el-table-column align="center" label="操作" min-width="20">
               <template slot-scope="scope">
                 <el-button
                   type="primary"
@@ -351,12 +353,13 @@
       <studentReport
         :checkCourse="checkCourse"
         :checkStudent="checkStudent"
+        @cancelR="cancelR"
         :oid="oid"
       ></studentReport>
     </div>
-    <div class="cancelbox" v-if="reportVisible">
+    <!-- <div class="cancelbox" v-if="reportVisible">
       <el-button @click="cancelR" type="primary" size="small">返回</el-button>
-    </div>
+    </div> -->
   </div>
 </template>
 
@@ -776,12 +779,13 @@ export default {
 .cancelbox {
   position: absolute;
   z-index: 2;
-  left: 50%;
-  width: 95%;
+  /* left: 50%; */
+  right: 0;
+  /* width: 95%; */
   transform: translateX(-50%);
   display: flex;
   justify-content: flex-end;
-  padding: 0 90px 0px 0px;
+  /* padding: 0 90px 0px 0px; */
   box-sizing: border-box;
 }