lsc 1 year ago
parent
commit
63010d7952

+ 1 - 1
dist/index.html

@@ -18,7 +18,7 @@
       border-radius: 10px;
       -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
       background-color: rgba(0, 0, 0, 0.1);
-    }</style><link href=./static/css/app.af1e135e374b9fcc430f1b1909541e65.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.8d7171b1fe858bda1433.js></script><script type=text/javascript src=./static/js/app.9d9a92bfbd550c54bd9f.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.24ae5202980f90d94b39fdb948ec8725.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.8d7171b1fe858bda1433.js></script><script type=text/javascript src=./static/js/app.a5df8ca96b6b3e9ec9b7.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.24ae5202980f90d94b39fdb948ec8725.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.24ae5202980f90d94b39fdb948ec8725.css.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.af1e135e374b9fcc430f1b1909541e65.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.af1e135e374b9fcc430f1b1909541e65.css.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.9d9a92bfbd550c54bd9f.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.a5df8ca96b6b3e9ec9b7.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.a5df8ca96b6b3e9ec9b7.js.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/manifest.3ad1d5771e9b13dbdad2.js.map


+ 41 - 4
src/components/index.vue

@@ -50,7 +50,23 @@
         <div>
           <div class="main_box">
             <div style="display:flex;flex-wrap:wrap" v-if="!typeCheck">
-              <div class="box_course" v-for="(item, index) in zoneClass" :key="index">
+              <div class="box_course" v-for="(item, index) in zoneClass" :key="index"  @click="
+                  goTo(
+                    '/courseDetail?courseId=' +
+                    item.courseId +
+                    '&userid=' +
+                    userid +
+                    '&oid=' +
+                    oid +
+                    '&org=' +
+                    org +
+                    '&cid=' +
+                    classId +
+                    '&tType=' +
+                    tType +
+                    '&screenType=' +
+                    screenType
+                  )">
                 <div class="wheel">
                   <img :src="
                     item.cover
@@ -102,7 +118,26 @@
               <div class="FirstTypeBox" v-for="(type, tindex) in CourseType2" :key="tindex">
                 <div class="title">{{ type.name }}</div>
                 <div style="display: flex;flex-flow: wrap;margin-top: 20px;">
-                  <div class="box_course" v-for="(item, index) in type.course" :key="tindex + '-' + index">
+                  <div class="box_course" v-for="(item, index) in type.course" :key="tindex + '-' + index" @click="
+                    goTo(
+                      '/courseDetailS?courseId=' +
+                      item.courseId +
+                      '&userid=' +
+                      userid +
+                      '&oid=' +
+                      oid +
+                      '&org=' +
+                      org +
+                      '&cid=' +
+                      classId +
+                      '&tType=' +
+                      tType +
+                      '&role=' +
+                      role +
+                      '&screenType=' +
+                      screenType
+                    )
+                  ">
                     <div class="wheel">
                       <img :src="
                         item.cover
@@ -770,18 +805,19 @@ export default {
   /* margin: 0px 1% 20px; */
   margin: 0 15px 20px 0;
   width: 300px;
-  height: 260px;
+  /* height: 260px; */
   /*border: 1px solid #cecece; */
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%),
     0px 2px 1px -1px rgb(0 0 0 / 12%);
   justify-content: space-between;
+  cursor: pointer;
 }
 
 .middle_white {
   font-size: 14px;
-  margin: 5px 10px;
+  margin: 5px 10px 10px;
 }
 
 .people {
@@ -802,6 +838,7 @@ export default {
   line-height: 40px;
   font-size: 13px;
   cursor: pointer;
+  display: none;
 }
 
 .now_study:hover {

+ 44 - 4
src/components/studentIndex.vue

@@ -50,7 +50,26 @@
         <div>
           <div class="main_box" v-loading="loading">
             <div style="display:flex;flex-wrap:wrap" v-if="!typeCheck">
-              <div class="box_course" v-for="(item, index) in zoneClass" :key="index">
+              <div class="box_course" v-for="(item, index) in zoneClass" :key="index" @click="
+                    goTo(
+                      '/courseDetailS?courseId=' +
+                      item.courseId +
+                      '&userid=' +
+                      userid +
+                      '&oid=' +
+                      oid +
+                      '&org=' +
+                      org +
+                      '&cid=' +
+                      classId +
+                      '&tType=' +
+                      tType +
+                      '&role=' +
+                      role +
+                      '&screenType=' +
+                      screenType
+                    )
+                  ">
                 <div class="wheel">
                   <img :src="
                     item.cover
@@ -107,7 +126,26 @@
               <div class="FirstTypeBox" v-for="(type, tindex) in CourseType2" :key="tindex">
                 <div class="title">{{ type.name }}</div>
                 <div style="display: flex;flex-flow: wrap;margin-top: 20px;">
-                  <div class="box_course" v-for="(item, index) in type.course" :key="tindex + '-' + index">
+                  <div class="box_course" v-for="(item, index) in type.course" :key="tindex + '-' + index" @click="
+                    goTo(
+                      '/courseDetailS?courseId=' +
+                      item.courseId +
+                      '&userid=' +
+                      userid +
+                      '&oid=' +
+                      oid +
+                      '&org=' +
+                      org +
+                      '&cid=' +
+                      classId +
+                      '&tType=' +
+                      tType +
+                      '&role=' +
+                      role +
+                      '&screenType=' +
+                      screenType
+                    )
+                  ">
                     <div class="wheel">
                       <img :src="
                         item.cover
@@ -876,18 +914,19 @@ export default {
   /* margin: 0px 1% 20px; */
   margin: 0 15px 20px 0;
   width: 300px;
-  height: 260px;
+  /* height: 260px; */
   /*border: 1px solid #cecece; */
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%),
     0px 2px 1px -1px rgb(0 0 0 / 12%);
   justify-content: space-between;
+  cursor: pointer;
 }
 
 .middle_white {
   font-size: 14px;
-  margin: 5px 10px;
+  margin: 5px 10px 10px;
 }
 
 .people {
@@ -907,6 +946,7 @@ export default {
   line-height: 40px;
   font-size: 13px;
   cursor: pointer;
+  display: none;
 }
 
 .now_study:hover {

+ 44 - 4
src/components/studio/index.vue

@@ -50,7 +50,26 @@
         <div>
           <div class="main_box" v-loading="loading">
             <div style="display:flex;flex-wrap:wrap" v-if="!typeCheck">
-              <div class="box_course" v-for="(item, index) in zoneClass" :key="index">
+              <div class="box_course" v-for="(item, index) in zoneClass" :key="index" @click="
+                    goTo(
+                      '/courseDetailS?courseId=' +
+                      item.courseId +
+                      '&userid=' +
+                      userid +
+                      '&oid=' +
+                      oid +
+                      '&org=' +
+                      org +
+                      '&cid=' +
+                      classId +
+                      '&tType=' +
+                      tType +
+                      '&role=' +
+                      role +
+                      '&screenType=' +
+                      screenType
+                    )
+                  ">
                 <div class="wheel">
                   <img :src="
                     item.cover
@@ -104,7 +123,26 @@
               <div class="FirstTypeBox" v-for="(type, tindex) in CourseType2" :key="tindex">
                 <div class="title">{{ type.name }}</div>
                 <div style="display: flex;flex-flow: wrap;margin-top: 20px;">
-                  <div class="box_course" v-for="(item, index) in type.course" :key="tindex + '-' + index">
+                  <div class="box_course" v-for="(item, index) in type.course" :key="tindex + '-' + index" @click="
+                    goTo(
+                      '/courseDetailS?courseId=' +
+                      item.courseId +
+                      '&userid=' +
+                      userid +
+                      '&oid=' +
+                      oid +
+                      '&org=' +
+                      org +
+                      '&cid=' +
+                      classId +
+                      '&tType=' +
+                      tType +
+                      '&role=' +
+                      role +
+                      '&screenType=' +
+                      screenType
+                    )
+                  ">
                     <div class="wheel">
                       <img :src="
                         item.cover
@@ -686,18 +724,19 @@ export default {
   /* margin: 0px 1% 20px; */
   margin: 0 15px 20px 0;
   width: 300px;
-  height: 260px;
+  /* height: 260px; */
   /*border: 1px solid #cecece; */
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%),
     0px 2px 1px -1px rgb(0 0 0 / 12%);
   justify-content: space-between;
+  cursor: pointer;
 }
 
 .middle_white {
   font-size: 14px;
-  margin: 5px 10px;
+  margin: 5px 10px 10px;
 }
 
 .people {
@@ -718,6 +757,7 @@ export default {
   line-height: 40px;
   font-size: 13px;
   cursor: pointer;
+  display: none;
 }
 
 .now_study:hover {

+ 1 - 1
src/components/studyStudent.vue

@@ -8569,7 +8569,7 @@ export default {
                     uid: file.uid,
                     fileType: _ftype,
                     username:
-                      _this.plworkFile.length + 1 > 10
+                      _this.plworkFile.length > 10
                         ? _this.plworkFile.length + 1
                         : "0" + (_this.plworkFile.length + 1),
                   });

Some files were not shown because too many files changed in this diff