lsc il y a 1 an
Parent
commit
e7b5c006a6

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.2fd3839c8a3af6dd3bc891498dccad1d.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.1b8e037bd3fbbd358d74.js></script><script type=text/javascript src=./static/js/app.007b8b87ccbcdb73aa7f.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.9c24a3d317f7554832fcdb392c62bc8c.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.1b8e037bd3fbbd358d74.js></script><script type=text/javascript src=./static/js/app.5bf3ab57961301ce757c.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
dist/static/css/app.2fd3839c8a3af6dd3bc891498dccad1d.css


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
dist/static/css/app.2fd3839c8a3af6dd3bc891498dccad1d.css.map


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
dist/static/css/app.9c24a3d317f7554832fcdb392c62bc8c.css


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
dist/static/css/app.9c24a3d317f7554832fcdb392c62bc8c.css.map


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
dist/static/js/app.5bf3ab57961301ce757c.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
dist/static/js/app.5bf3ab57961301ce757c.js.map


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
dist/static/js/manifest.3512a67a6213c2df4180.js.map


+ 1 - 1
src/components/pages/addCourse.vue

@@ -11961,7 +11961,7 @@ ol {
 }
 
 .rightCardBox {
-  width: 99%;
+  width: 98%;
   margin: 10px auto 0;
 }
 

+ 118 - 19
src/components/pages/class.vue

@@ -7,18 +7,47 @@
               border-radius: 5px;
             ">
       <div class="pb_head top">
-        <span>班级管理</span>
-        <div class="student_button" style="border-radius: 4px;">
-          <el-button type="primary" class="bgColor" @click="dialogVisible = true">添加班级</el-button>
+        <div style="
+            display: flex;
+            align-items: center;
+        ">
+          <span class="subClick" @click="
+            goTo(
+              '/student?userid=' +
+              userid +
+              '&oid=' +
+              oid +
+              '&org=' +
+              org +
+              '&role=' +
+              role
+            )
+            ">学生管理</span>
+          <span class="sub_head">班级管理</span>
+          <span class="subClick" @click="
+            goTo(
+              '/grade?userid=' +
+              userid +
+              '&oid=' +
+              oid +
+              '&org=' +
+              org +
+              '&role=' +
+              role
+            )
+            ">年级管理</span>
+        </div>
+        <div style="border-radius: 4px;">
+          <el-button type="primary" class="bgColor student_button" @click="dialogVisible = true">添加班级</el-button>
         </div>
       </div>
       <div class="student_head">
         <div class="student_search">
           <span>
-            <el-input placeholder="请输入班级名称" v-model="sClassName" clearable>
+            <el-input placeholder="请输入班级名称" v-model="sClassName" clearable class="student_input">
             </el-input>
           </span>
-          <el-button type="primary" @click="searchClass">查询</el-button>
+          <el-button type="primary" @click="searchClass" class="student_button">查询</el-button>
         </div>
       </div>
     </div>
@@ -60,22 +89,21 @@
             ">
       <div class="pb_head top">
         <span>查看学生</span>
-        <div class="student_button" style="border-radius: 4px;">
-          <el-button type="primary" class="bgColor" @click="ctype = 1, getClass()">返回</el-button>
+        <div style="border-radius: 4px;">
+          <el-button type="primary" class="bgColor student_button" @click="ctype = 1, getClass()">返回</el-button>
         </div>
       </div>
       <div class="student_head">
         <div class="head_left">
           <el-input v-model="sPhoneUser" class="student_input" placeholder="请输入用户名"></el-input>
-          <el-select disabled v-model="cid" placeholder="请选择班级" class="student_input" @change="searchStudent"
-            style="margin:0 10px">
+          <el-select disabled v-model="cid" placeholder="请选择班级" class="student_input" @change="searchStudent">
             <el-option label="所有人" value=""></el-option>
             <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name" :value="item.id"></el-option>
           </el-select>
-          <el-button class="student_button" @click="searchStudent">查询</el-button>
+          <el-button type="primary" class="student_button" @click="searchStudent">查询</el-button>
         </div>
         <div class="head_right">
-          <el-button @click="addStudent">添加学生</el-button>
+          <el-button @click="addStudent" class="student_button">添加学生</el-button>
         </div>
       </div>
     </div>
@@ -239,7 +267,7 @@
       :before-close="handleClose" class="dialog_diy">
       <el-form>
         <el-form-item label="选择年级" :label-width="formLabelWidth">
-          <el-select v-model="gid" placeholder="请选择班级" class="student_input" style="margin:0 10px" clearable>
+          <el-select v-model="gid" placeholder="请选择班级" class="student_input" clearable>
             <el-option v-for="(item, index) in grade" :key="index" :label="item.name" :value="item.id"></el-option>
           </el-select>
         </el-form-item>
@@ -334,7 +362,9 @@ export default {
       page2: 1,
       total2: 0,
       userid: this.$route.query.userid,
+      org: this.$route.query.org,
       oid: this.$route.query.oid,
+      role: this.$route.query.role,
       cid: "",
       ctype: 1,
       sName: "",
@@ -400,6 +430,9 @@ export default {
     });
   },
   methods: {
+    goTo(path) {
+      this.$router.push(path);
+    },
     //获取班级列表
     selectGrage() {
       let params = {
@@ -999,15 +1032,17 @@ export default {
 .student_search {
   display: flex;
   width: 300px;
+  line-height: 40px;
+  align-items: center;
 }
 
 .student_search span {
-  margin: 0 10px 0 0;
+  /* margin: 0 10px 0 0; */
 }
 
 .student_button {
-  display: flex;
-  height: 40px;
+  /* display: flex; */
+  /* height: 40px; */
 }
 
 .student_button .el-button--primary {
@@ -1024,7 +1059,7 @@ export default {
 }
 
 .student_table {
-  margin: 20px 0;
+  /* margin: 20px 0; */
 }
 
 .el-table>>>.even_row {
@@ -1055,21 +1090,23 @@ export default {
 .head_left {
   display: flex;
   align-items: center;
+  line-height: 40px;
 }
 
 .head_right {
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
-  align-items: baseline;
+  align-items: center;
+  line-height: 40px;
 }
 
-.student_input>>>.el-input__inner {
+/* .student_input>>>.el-input__inner {
   width: 190px;
   font-size: 13px;
   padding: 0 10px;
 }
-
+ */
 .student_button {
   color: #fff;
   background: #2268bc;
@@ -1293,4 +1330,66 @@ export default {
   text-overflow: ellipsis;
   white-space: nowrap;
 }
+.student_input>>>.el-input__inner {
+  height: 30px;
+  width: 190px;
+  font-size: 13px;
+  padding: 0 10px;
+}
+.student_input.el-input {
+  width: auto;
+}
+
+.student_input {
+  margin-right: 10px;
+}
+
+.student_input>>>.el-input__icon {
+  line-height: unset;
+}
+
+
+.student_button {
+  color: #fff;
+  background: #2268bc;
+  width: 60px;
+  height: 30px;
+  padding: 0 !important;
+  font-size: 12px;
+  line-height: 30px;
+}
+.sub_head {
+  position: relative;
+}
+
+.sub_head::after {
+  content: "";
+  width: 100%;
+  background: #5a9cea;
+  height: 2px;
+  position: absolute;
+  left: 0;
+  bottom: -10px;
+}
+
+.subClick {
+  /* font-size: 16px; */
+  font-size: 26px;
+  cursor: pointer;
+  /* margin-left: 17.5px; */
+  /* color: #ab582f; */
+  /* color: #409eff; */
+  color: #999;
+}
+
+.subClick:hover {
+  color: #000;
+}
+
+.sub_head + .subClick,
+.subClick + .subClick,
+.subClick + .sub_head{
+  margin-left: 17.5px;
+}
+
 </style>

+ 117 - 13
src/components/pages/grade/index.vue

@@ -11,11 +11,40 @@
       "
     >
       <div class="pb_head top">
-        <span>年级管理</span>
-        <div class="student_button" style="border-radius: 4px">
+        <div style="
+            display: flex;
+            align-items: center;
+        ">
+          <span class="subClick" @click="
+            goTo(
+              '/student?userid=' +
+              userid +
+              '&oid=' +
+              oid +
+              '&org=' +
+              org +
+              '&role=' +
+              role
+            )
+            ">学生管理</span>
+          <span class="subClick" @click="
+            goTo(
+              '/class?userid=' +
+              userid +
+              '&oid=' +
+              oid +
+              '&org=' +
+              org +
+              '&role=' +
+              role
+            )
+            ">班级管理</span>
+          <span class="sub_head">年级管理</span>
+        </div>
+        <div style="border-radius: 4px">
           <el-button
             type="primary"
-            class="bgColor"
+            class="bgColor student_button"
             @click="dialogVisible = true"
             >添加年级</el-button
           >
@@ -24,14 +53,14 @@
       <div class="student_head">
         <div class="student_search">
           <span>
-            <el-input
+            <el-input class="student_input"
               placeholder="请输入年级名称"
               v-model="sClassName"
               clearable
             >
             </el-input>
           </span>
-          <el-button type="primary" @click="searchClass">查询</el-button>
+          <el-button class="student_button" type="primary" @click="searchClass">查询</el-button>
         </div>
       </div>
     </div>
@@ -125,9 +154,9 @@
         <div class="student_search">
           <span>
             <el-input
+              class="student_input"
               v-model="sPhoneUser"
               placeholder="请输入班级"
-              style="margin: 0 10px 0 0"
             ></el-input>
           </span>
           <el-button class="student_button" @click="searchStudent"
@@ -502,7 +531,9 @@ export default {
       page2: 1,
       total2: 0,
       userid: this.$route.query.userid,
+      org: this.$route.query.org,
       oid: this.$route.query.oid,
+      role: this.$route.query.role,
       cid: "",
       ctype: 1,
       sName: "",
@@ -564,6 +595,9 @@ export default {
     });
   },
   methods: {
+    goTo(path) {
+      this.$router.push(path);
+    },
     tableRowClassName({ row, rowIndex }) {
       if ((rowIndex + 1) % 2 === 0) {
         return "even_row";
@@ -1117,16 +1151,18 @@ export default {
 
 .student_search {
   display: flex;
+  align-items: center;
   width: 300px;
+  line-height: 40px;
 }
 
 .student_search span {
-  margin: 0 10px 0 0;
+  /* margin: 0 10px 0 0; */
 }
 
 .student_button {
-  display: flex;
-  height: 40px;
+  /* display: flex; */
+  /* height: 40px; */
 }
 
 .student_button .el-button--primary {
@@ -1143,7 +1179,7 @@ export default {
 }
 
 .student_table {
-  margin: 20px 0;
+  /* margin: 20px 0; */
 }
 
 .el-table >>> .even_row {
@@ -1174,20 +1210,22 @@ export default {
 .head_left {
   display: flex;
   align-items: center;
+  line-height: 40px;
 }
 
 .head_right {
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
-  align-items: baseline;
+  align-items: center;
+  line-height: 40px;
 }
 
-.student_input >>> .el-input__inner {
+/* .student_input >>> .el-input__inner {
   width: 190px;
   font-size: 13px;
   padding: 0 10px;
-}
+} */
 
 .student_button {
   color: #fff;
@@ -1415,5 +1453,71 @@ export default {
   text-overflow: ellipsis;
   white-space: nowrap;
 }
+
+
+.student_input>>>.el-input__inner {
+  height: 30px;
+  width: 190px;
+  font-size: 13px;
+  padding: 0 10px;
+}
+
+.student_input.el-input {
+  width: auto;
+}
+
+.student_input {
+  margin-right: 10px;
+}
+
+.student_input>>>.el-input__icon {
+  line-height: unset;
+}
+
+
+.student_button {
+  color: #fff;
+  background: #2268bc;
+  width: 60px;
+  height: 30px;
+  padding: 0 !important;
+  font-size: 12px;
+  line-height: 30px;
+}
+.sub_head {
+  position: relative;
+}
+
+.sub_head::after {
+  content: "";
+  width: 100%;
+  background: #5a9cea;
+  height: 2px;
+  position: absolute;
+  left: 0;
+  bottom: -10px;
+}
+
+.subClick {
+  /* font-size: 16px; */
+  font-size: 26px;
+  cursor: pointer;
+  /* margin-left: 17.5px; */
+  /* color: #ab582f; */
+  /* color: #409eff; */
+  color: #999;
+}
+
+.subClick:hover {
+  color: #000;
+}
+
+
+.sub_head + .subClick,
+.subClick + .subClick,
+.subClick + .sub_head{
+  margin-left: 17.5px;
+}
+
 </style>
   

+ 71 - 4
src/components/pages/student.vue

@@ -7,7 +7,36 @@
         border-radius: 5px;
       ">
       <div class="pb_head">
-        <span>学生管理</span>
+        <div style="
+            display: flex;
+            align-items: center;
+        ">
+          <span class="sub_head">学生管理</span>
+          <span class="subClick" @click="
+            goTo(
+              '/class?userid=' +
+              userid +
+              '&oid=' +
+              oid +
+              '&org=' +
+              org +
+              '&role=' +
+              role
+            )
+            ">班级管理</span>
+          <span class="subClick" @click="
+            goTo(
+              '/grade?userid=' +
+              userid +
+              '&oid=' +
+              oid +
+              '&org=' +
+              org +
+              '&role=' +
+              role
+            )
+            ">年级管理</span>
+        </div>
       </div>
       <div class="student_head">
         <div class="head_left">
@@ -16,10 +45,10 @@
             <el-option label="所有人" value=""></el-option>
             <el-option v-for="(item, index) in classJuri" :key="index" :label="item.name" :value="item.id"></el-option>
           </el-select>
-          <el-button class="student_button" @click="searchStudent">查询</el-button>
+          <el-button class="student_button" @click="searchStudent" type="primary">查询</el-button>
         </div>
         <div class="head_right">
-          <el-button @click="addStudent">添加学生</el-button>
+          <el-button @click="addStudent" type="primary" class="student_button">添加学生</el-button>
           <el-upload v-show="role == 1" class="upload-demo newCss" :http-request="handleChange" :on-remove="handleRemove"
             action="#" :file-list="fileListUpload" accept=".xlsx">
             <el-button size="primary" type="primary">批量添加</el-button>
@@ -260,6 +289,9 @@ export default {
     });
   },
   methods: {
+    goTo(path) {
+      this.$router.push(path);
+    },
     getUser() {
       let params = {
         userid: this.userid
@@ -1129,13 +1161,14 @@ export default {
 .head_left {
   display: flex;
   align-items: center;
+  line-height: 40px;
 }
 
 .head_right {
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
-  align-items: baseline;
+  align-items: center;
 }
 
 .student_input>>>.el-input__inner {
@@ -1329,4 +1362,38 @@ export default {
   display: flex;
   align-items: center;
 }
+
+.sub_head {
+  position: relative;
+}
+
+.sub_head::after {
+  content: "";
+  width: 100%;
+  background: #5a9cea;
+  height: 2px;
+  position: absolute;
+  left: 0;
+  bottom: -10px;
+}
+
+.subClick {
+  /* font-size: 16px; */
+  font-size: 26px;
+  cursor: pointer;
+  /* margin-left: 17.5px; */
+  /* color: #ab582f; */
+  /* color: #409eff; */
+  color: #999;
+}
+
+.subClick:hover {
+  color: #000;
+}
+
+.sub_head + .subClick,
+.subClick + .subClick,
+.subClick + .sub_head{
+  margin-left: 17.5px;
+}
 </style>

Certains fichiers n'ont pas été affichés car il y a eu trop de fichiers modifiés dans ce diff