lsc há 1 ano atrás
pai
commit
5c36cf959b

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.399c2a832f399f0c4474f4b2dab3d027.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.b99f0ffaf6e2bdd0ae12.js></script><script type=text/javascript src=./static/js/app.d54f1c36e4eb5501add9.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.67267fa7963e432a5d809696a1eff14c.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.b99f0ffaf6e2bdd0ae12.js></script><script type=text/javascript src=./static/js/app.9ec65298e8fb3e21be39.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/css/app.67267fa7963e432a5d809696a1eff14c.css


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/css/app.67267fa7963e432a5d809696a1eff14c.css.map


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/app.9ec65298e8fb3e21be39.js


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/app.9ec65298e8fb3e21be39.js.map


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/manifest.3512a67a6213c2df4180.js.map


+ 1 - 0
src/components/pages/dataBoardNew/course/chartList/cateRank.vue

@@ -24,6 +24,7 @@ export default {
             option: {
                 tooltip: {
                     position: 'top',
+                    confine: true,
                     formatter: function (params) {
                         // console.log(params);
                         return params.marker + params.name + ' ' + params.data[2];//params.seriesName + '<br>' + params.

+ 1 - 0
src/components/pages/dataBoardNew/project/chartList/cateRank.vue

@@ -26,6 +26,7 @@ export default {
             option: {
                 tooltip: {
                     position: 'top',
+                    confine: true,
                     formatter: function (params) {
                         // console.log(params);
                         return params.marker + params.name + ' ' + params.data[2];//params.seriesName + '<br>' + params.

+ 1 - 1
src/components/pages/dataBoardNew/school/teacherInfo/index.vue

@@ -24,7 +24,7 @@ export default {
             option: {
                 tooltip: {
                     position: 'top',
-                    // confine: true,
+                    confine: true,
                     formatter: function (params) {
                         // console.log(params);
                         return params.marker + params.name + ' ' + params.data[2];//params.seriesName + '<br>' + params.

+ 1 - 0
src/components/pages/dataBoardNew/teacher/chartList/teaData.vue

@@ -27,6 +27,7 @@ export default {
             option: {
                 tooltip: {
                     position: 'top',
+                    confine: true,
                     formatter: function (params) {
                         return params.marker + params.name + ' ' + params.data[2];//params.seriesName + '<br>' + params.
 

+ 36 - 1
src/components/pages/test/check/check.vue

@@ -20,6 +20,25 @@
                 >评测管理</el-breadcrumb-item
               >
               <el-breadcrumb-item
+                v-if="type == 3"
+                :to="{
+                  path:
+                    '/checkToTest2?uid=' +
+                    userid2 +
+                    '&userid=' +
+                    userid +
+                    '&oid=' +
+                    oid +
+                    '&org=' +
+                    org +
+                    '&role=' +
+                    role,
+                }"
+              >
+                查看评测
+              </el-breadcrumb-item>
+              <el-breadcrumb-item
+                v-else
                 :to="{
                   path:
                     '/checkToTest?cid=' +
@@ -71,6 +90,7 @@ export default {
       org: this.$route.query.org,
       role: this.$route.query.role,
       cid: this.$route.query.cid,
+      type: this.$route.query.type,
       steps: 1,
       title: "",
       brief: "",
@@ -85,7 +105,21 @@ export default {
   },
   methods: {
     retrunCourse() {
-      this.goTo(
+      if(this.type == 3){
+        this.goTo(
+        "/checkToTest2?uid=" +
+          this.userid2 +
+          "&userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&role=" +
+          this.role
+      );
+      }else{
+        this.goTo(
         "/checkToTest?cid=" +
           this.cid +
           "&userid=" +
@@ -97,6 +131,7 @@ export default {
           "&role=" +
           this.role
       );
+      }
     },
     goTo(path) {
       this.$router.push(path);

+ 275 - 0
src/components/pages/test/check/index2.vue

@@ -0,0 +1,275 @@
+<template>
+  <div class="pb_content" style="background: #fff" v-loading="loading">
+    <div class="pb_content_body" style="position: relative; margin: 0">
+      <div class="right">
+        <div class="courseTop">
+          <div class="stepsNav">
+            <el-breadcrumb separator-class="el-icon-arrow-right">
+              <el-breadcrumb-item
+                :to="{
+                  path:
+                    '/test?userid=' +
+                    userid +
+                    '&oid=' +
+                    oid +
+                    '&org=' +
+                    org +
+                    '&role=' +
+                    role,
+                }"
+                >评测管理</el-breadcrumb-item
+              >
+              <el-breadcrumb-item>
+                <span style="color: rgb(15, 126, 255)">查看评测</span>
+              </el-breadcrumb-item>
+            </el-breadcrumb>
+          </div>
+          <div class="r_pub_button_retrun" @click="retrunCourse">返回</div>
+        </div>
+        <div class="step_box" ref="stepBox">
+          <div class="pb_content_body">
+            <div class="student_table">
+              <el-table
+                ref="table"
+                :data="tableData"
+                border
+                :height="tableHeight"
+                :fit="true"
+                v-loading="isLoading"
+                style="width: 100%"
+                :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
+                :row-class-name="tableRowClassName"
+              >
+                <el-table-column
+                  prop="username"
+                  label="提交人"
+                  min-width="15"
+                  align="center"
+                >
+                </el-table-column>
+                <el-table-column
+                  prop="title"
+                  label="表单名称"
+                  min-width="15"
+                  align="center"
+                >
+                </el-table-column>
+                <el-table-column
+                  prop="time"
+                  label="提交时间"
+                  min-width="15"
+                  align="center"
+                >
+                </el-table-column>
+                <el-table-column
+                  prop="time"
+                  label="是否批改"
+                  min-width="15"
+                  align="center"
+                >
+                  <template slot-scope="scope">
+                    <div>{{ scope.row.type == 3 ? '是' : '否' }}</div>
+                  </template>
+                </el-table-column>
+                <el-table-column label="操作" width="200px">
+                  <template slot-scope="scope">
+                    <el-button
+                      @click="getTest(scope.row)"
+                      type="primary"
+                      size="small"
+                      >查看</el-button
+                    >
+                  </template>
+                </el-table-column>
+              </el-table>
+            </div>
+            <div class="student_page">
+              <el-pagination
+                background
+                layout="prev, pager, next"
+                :page-size="pageSize"
+                :total="total"
+                @current-change="handleCurrentChange"
+              >
+              </el-pagination>
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+  components: {},
+  data() {
+    return {
+      userid: this.$route.query.userid,
+      oid: this.$route.query.oid,
+      org: this.$route.query.org,
+      role: this.$route.query.role,
+      cid: this.$route.query.cid,
+      uid: this.$route.query.uid,
+      title: "",
+      testType: [],
+      see: false,
+      cJson: [],
+      loading: false,
+      look: "",
+      tableHeight: 500,
+      isLoading: false,
+      pageSize: 10,
+      total: 0,
+      page: 1,
+      tableData: [],
+    };
+  },
+  watch: {},
+  methods: {
+    retrunCourse() {
+      this.goTo(
+        "/test?userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&role=" +
+          this.role
+      );
+    },
+    goTo(path) {
+      this.$router.push(path);
+    },
+    tableRowClassName({ row, rowIndex }) {
+      if ((rowIndex + 1) % 2 === 0) {
+        return "even_row";
+      } else {
+        return "";
+      }
+    },
+    changeHeight() {
+      this.tableHeight = this.$refs.stepBox.offsetHeight - 100;
+      if (this.tableHeight <= 530) {
+        this.tableHeight = 530;
+      }
+      // 监听窗口大小变化
+      let self = this;
+      window.onresize = function () {
+        self.tableHeight = this.$refs.stepBox.offsetHeight - 100;
+        if (self.tableHeight <= 530) {
+          self.tableHeight = 530;
+        }
+      };
+      // this.$refs.table.$el.offsetTop:表格距离浏览器的高度 //200表示你想要调整的表格距离底部的高度(你可以自己随意调整),因为我们一般都有放分页组件的,所以需要给它留一个高度
+    },
+    handleCurrentChange(val) {
+      this.page = val;
+      this.getData();
+    },
+    getTest(row) {
+      this.$router.push(
+        "/checkTest2?cid=" +
+        row.courseid +
+          "&userid=" +
+          this.userid +
+          "&userid2=" +
+          row.userid +
+          "&tid=" +
+          row.id +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&type=3" +
+          "&role=" +
+          this.role
+      );
+    },
+    getData() {
+      this.isLoading = true;
+      let params = {
+        cid: this.uid,
+        page: this.page,
+        pageSize: this.pageSize,
+      };
+      this.ajax
+        .get(this.$store.state.api + "getTestWorksPage2", params)
+        .then((res) => {
+          this.isLoading = false;
+          this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
+          this.tableData = res.data[0];
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
+  },
+  mounted() {
+    this.$nextTick(function () {
+      this.page = 1;
+      this.changeHeight();
+      this.getData();
+    });
+  },
+};
+</script>
+
+<style scoped>
+.pb_content {
+  height: 100% !important;
+  /* margin: 0 20px 0 20px; */
+}
+
+.pb_content_body {
+  width: 100% !important;
+  height: 100%;
+}
+
+.right {
+  height: 100%;
+  width: 100%;
+  display: flex;
+  overflow: hidden;
+  flex-direction: column;
+}
+
+.basic_box {
+  margin: 0 auto;
+  position: relative;
+  padding: 0 20px 0 20px;
+}
+
+.courseTop {
+  display: flex;
+  flex-direction: row;
+  justify-content: space-between;
+  align-items: center;
+  width: calc(100% - 40px);
+  margin: 0 auto;
+  padding: 10px 0;
+}
+
+.stepsNav {
+  display: flex;
+  flex-direction: row;
+  justify-content: flex-start;
+  align-items: center;
+}
+
+.step_box {
+  width: calc(100% - 40px);
+  margin: 0 auto;
+  height: calc(100% - 38px);
+  overflow: auto;
+}
+
+.el-table >>> .even_row {
+  background-color: #f1f1f1 !important;
+}
+
+.student_page {
+  margin-top: 10px;
+}
+</style>

+ 160 - 17
src/components/pages/test/index.vue

@@ -78,8 +78,8 @@
             </div>
             <div class="search_nav">
                 <div class="right">
-                    <span :class="{ active: stype == 1 }">按问卷查看</span>
-                    <!-- <span :class="{active: stype == 2}">按人员查看</span> -->
+                    <span :class="{ active: stype == 1 }" @click="checkDataType(1)">按问卷查看</span>
+                    <span :class="{active: stype == 2}" @click="checkDataType(2)">按人员查看</span>
                 </div>
                 <div class="left">
                     <span class="list" :class="{ active: stype2 == 1 }" @click="checkStype2(1)"></span>
@@ -89,13 +89,13 @@
             <div style="width: calc(100% - 20px);margin: 0 auto;">
                 <div class="student_head">
                     <div class="choose">
-                        <div class="student_search" v-if="typeArray.length">
+                        <div class="student_search" v-if="typeArray.length && stype == 1">
                             <el-select v-model="typeCheck" placeholder="请选择类型" clearable @change="search">
                                 <el-option v-for="(item, index) in typeArray" :key="index" :label="item.name"
                                     :value="item.id"></el-option>
                             </el-select>
                         </div>
-                        <div class="student_search" style="width:100px">
+                        <div class="student_search" style="width:100px" v-if="stype == 1">
                             <!-- <span></span> -->
                             <el-select v-model="groupA" @change="search">
                                 <el-option value="0" label="我的"></el-option>
@@ -121,7 +121,7 @@
                 </div>
             </div>
             <div class="pb_content_body" style="height: 100%;width: 100%;">
-                <div class="student_table" v-loading="isLoading" v-if="stype2 == 1">
+                <div class="student_table" v-loading="isLoading" v-if="stype == 1 && stype2 == 1">
                     <div class="course_box">
                         <div class="test_box" v-for="(item, index) in course" :key="index">
                             <div class="test_top">
@@ -197,9 +197,9 @@
                         <div class="course_empty" v-if="course.length == 0">暂无数据</div>
                     </div>
                 </div>
-                <el-table ref="table" :data="course" border v-loading="isLoading"
+                <el-table ref="table" :data="course" border v-loading="isLoading" :key="1"
                     :header-cell-style="{ color: '#00000066', fontSize: '16px', fontWeight: 'unset' }"
-                    :row-class-name="tableRowClassName2" v-if="stype2 == 2" class="tableClass">
+                    :row-class-name="tableRowClassName2" v-if="stype == 1 && stype2 == 2" class="tableClass">
                     <el-table-column label="序号" width="100px" align="center">
                         <template slot-scope="scope">
                             {{ scope.$index + 1 }}
@@ -240,11 +240,71 @@
                         </template>
                     </el-table-column>
                 </el-table>
+                <div class="student_table" v-loading="isLoading" v-if="stype == 2 && stype2 == 1">
+                    <div class="course_box">
+                        <div class="test_box" v-for="(item, index) in course2" :key="index">
+                            <div class="test_top">
+                                <div class="test_top_img"></div>
+                                <div class="test_top_title">
+                                    <span>{{ item.name }}</span>
+                                    <!-- <span>创建人:{{ item.uname }}</span> -->
+                                    <span>提交数量:{{ item.worksCount }}</span>
+                                </div>
+                            </div>
+                            <div class="test_time">
+                                <span><span>已完成表单</span></span><span>{{ item.testCount }}</span>
+                            </div>
+                            <div class="test_time">
+                                <span><span>教研室</span></span><el-tooltip :content="item.className ? item.className : '无'" placement="top" effect="dark">
+                                    <!-- content to trigger tooltip here -->
+                                    <span>{{ item.className ? item.className : '无' }}</span>
+                                </el-tooltip>
+                            </div>
+                            <!-- <div class="test_btn">
+                                <div class="test_o_btn">
+                                    <el-tooltip content="查看" placement="top" effect="dark">
+                                        <span class="check" @click="checkToTest2(item.userid)"></span>
+                                    </el-tooltip>
+                                </div>
+                            </div> -->
+                        </div>
+                        <div class="course_empty" v-if="stype == 1 && course.length == 0">暂无数据</div>
+                        <div class="course_empty" v-if="stype == 2 && course2.length == 0">暂无数据</div>
+                    </div>
+                </div>
+                <el-table ref="table" :data="course2" border v-loading="isLoading" :key="2"
+                    :header-cell-style="{ color: '#00000066', fontSize: '16px', fontWeight: 'unset' }"
+                    :row-class-name="tableRowClassName2" v-if="stype == 2 && stype2 == 2" class="tableClass">
+                    <el-table-column label="序号" width="100px" align="center">
+                        <template slot-scope="scope">
+                            {{ scope.$index + 1 }}
+                        </template>
+                    </el-table-column>
+                    <el-table-column prop="name" label="教师姓名" min-width="80" align="center">
+                    </el-table-column>
+                    <el-table-column label="教研室" min-width="80" align="center">
+                        <template slot-scope="scope">
+                            {{ scope.row.className ? scope.row.className : '无' }}
+                        </template>
+                    </el-table-column>
+                    <el-table-column prop="worksCount" label="已提交数量" min-width="80" align="center">
+                    </el-table-column>
+                    <el-table-column prop="testCount" label="已完成表单" min-width="80" align="center">
+                    </el-table-column>
+                    <!-- <el-table-column label="操作" width="350px">
+                        <template slot-scope="scope">
+                            <el-button @click="checkToTest2(scope.row.userid)" type="text" size="small">详情</el-button>
+                        </template>
+                    </el-table-column> -->
+                </el-table>
             </div>
             <div class="student_page">
                 <el-pagination background layout="prev, pager, next" :page-size="pageSize" :total="total"
-                    v-if="page && course.length" style="padding: 0 0 20px 0;"
+                    v-if="stype == 1 && page && course.length" style="padding: 0 0 20px 0;"
                     @current-change="handleCurrentChange"></el-pagination>
+                <el-pagination background layout="prev, pager, next" :page-size="pageSize2" :total="total2"
+                    v-if="stype == 2 && page2 && course2.length" style="padding: 0 0 20px 0;"
+                    @current-change="handleCurrentChange2"></el-pagination>
             </div>
         </div>
         <el-dialog :visible.sync="dialogVisible1" size="tiny">
@@ -370,9 +430,17 @@ export default {
             stype2: 1,
             scid:{},
             dialogVisibleShare:false,
+            page2: 1,
+            total2: 0,
+            pageSize2: 20,
+            course2: [],
+            
         };
     },
     methods: {
+        random(){
+            return Math.random().toString(36).substr(2);
+        },
         tableRowClassName2({ row, rowIndex }) {
             if ((rowIndex + 1) % 2 === 0) {
                 return "rowClass";
@@ -467,6 +535,21 @@ export default {
                 this.role
             );
         },
+        checkToTest2(uid){
+            this.$router.push(
+                "/checkToTest2?uid=" +
+                uid +
+                "&userid=" +
+                this.userid +
+                "&oid=" +
+                this.oid +
+                "&org=" +
+                this.org +
+                "&type=2" +
+                "&role=" +
+                this.role
+            );
+        },
         tableRowClassName({ row, rowIndex }) {
             if ((rowIndex + 1) % 2 === 0) {
                 return "even_row";
@@ -522,6 +605,10 @@ export default {
             this.page = val;
             this.getCourse();
         },
+        handleCurrentChange2(val){
+            this.page2 = val
+            this.getCourse2();
+        },
         init() { },
         handleClose(done) {
             done();
@@ -562,8 +649,13 @@ export default {
             }
         },
         searchCourse() {
-            this.page = 1;
-            this.getCourse();
+            if(this.stype == 1){
+                this.page = 1
+                this.getCourse(); 
+            }else if(this.stype == 2){
+                this.page2 = 1
+                this.getCourse2(); 
+            }
         },
         clear() {
             if (this.CourseType.length) {
@@ -572,8 +664,13 @@ export default {
                 }
             }
             this.typeCheck = ''
-            this.page = 1
-            this.getCourse();
+            if(this.stype == 1){
+                this.page = 1
+                this.getCourse(); 
+            }else if(this.stype == 2){
+                this.page2 = 1
+                this.getCourse2(); 
+            }
         },
         getCourse() {
             var typeE = [];
@@ -634,6 +731,27 @@ export default {
                     console.error(err);
                 });
         },
+        getCourse2(){
+            this.isLoading = true;
+            let params = {
+                oid: this.oid,
+                org: this.org,
+                type: this.typeCheck,
+                cn: this.courseName,
+                page: this.page2,
+                pageSize: this.pageSize2,
+            };
+            this.ajax
+                .get(this.$store.state.api + "selectTesttCourse2", params)
+                .then((res) => {
+                    this.isLoading = false;
+                    this.total2 = res.data[0].length > 0 ? res.data[0][0].num : 0;
+                    this.course2 = res.data[0];
+                })
+                .catch((err) => {
+                    console.error(err);
+                });
+        },
         getTypeName() {
             this.$forceUpdate();
             this.page = 1;
@@ -865,9 +983,26 @@ export default {
                 this.stype2 = type
             }
         },
+        checkDataType(type) {
+            if (this.stype != type) {
+                this.stype = type
+                if(type == 1){
+                    this.page = 1
+                    this.getCourse()
+                }else{
+                    this.page2 = 1
+                    this.getCourse2()
+                }
+            }
+        },
         search() {
-            this.page = 1;
-            this.getCourse();
+            if(this.stype == 1){
+                this.page = 1
+                this.getCourse(); 
+            }else if(this.stype == 2){
+                this.page2 = 1
+                this.getCourse2(); 
+            }
         },
         checkProblem(res) {
             this.problemCourse = res;
@@ -898,7 +1033,11 @@ export default {
     activated() {
         console.log(1);
         this.selectAllType();
-        this.getCourse();
+        if(this.stype == 1){
+            this.getCourse(); 
+        }else if(this.stype == 2){
+            this.getCourse2(); 
+        }
         this.selectTestType();
     },
     mounted() {
@@ -908,7 +1047,11 @@ export default {
         }
         this.page = 1;
         this.selectAllType();
-        this.getCourse();
+        if(this.stype == 1){
+            this.getCourse(); 
+        }else if(this.stype == 2){
+            this.getCourse2(); 
+        }
         this.selectTestType();
     },
 };
@@ -1548,7 +1691,7 @@ export default {
 }
 
 .test_box>.test_time>span:nth-child(1) {
-    width: 70px;
+    width: 85px;
     display: flex;
 }
 

+ 8 - 0
src/router/index.js

@@ -111,6 +111,7 @@ import testPerson from '@/components/pages/testPerson/index'
 import doTest from '@/components/pages/testStudent/view/preview'
 import checkTest from '@/components/pages/testStudent/view/check'
 import checkToTest from '@/components/pages/test/check'
+import checkToTest2 from '@/components/pages/test/check/index2.vue'
 import checkTest2 from '@/components/pages/test/check/check.vue'
 import courseIndex from '@/components/pages/course/index'
 
@@ -914,6 +915,13 @@ export default new Router({
                 requireAuth: '' // 是否需要判断是否登录,这里是需要判断
             }
         },
+        {
+            path: '/checkToTest2',
+            component: checkToTest2,
+            meta: {
+                requireAuth: '' // 是否需要判断是否登录,这里是需要判断
+            }
+        },
         {
             path: '/addTest',
             component: addTest,

Alguns ficheiros não foram mostrados porque muitos ficheiros mudaram neste diff