lsc il y a 2 ans
Parent
commit
7f5d6e0a61

+ 31 - 31
src/components/pages/course.vue

@@ -511,38 +511,38 @@ export default {
     //     });
     // },
     deleteCourse(cid) {
-      const loading = this.openLoading(
-        document.querySelector(".student_table")
-      );
-      this.isLoading = true;
-      if (this.time()) {
-        this.$confirm("确定删除此项目吗?", "提示", {
-          confirmButtonText: "确定",
-          cancelButtonText: "取消",
-          type: "warning",
+      // if (this.time()) {
+      this.$confirm("确定删除此项目吗?", "提示", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      })
+        .then(() => {
+          const loading = this.openLoading(
+            document.querySelector(".student_table")
+          );
+          this.isLoading = true;
+          let params = {
+            cid: cid,
+          };
+          this.ajax
+            .get(this.$store.state.api + "deleteCourse", params)
+            .then((res) => {
+              loading.close();
+              this.isLoading = false;
+              this.$message.success("删除成功");
+              this.getCourse();
+            })
+            .catch((err) => {
+              console.error(err);
+            });
         })
-          .then(() => {
-            let params = {
-              cid: cid,
-            };
-            this.ajax
-              .get(this.$store.state.api + "deleteCourse", params)
-              .then((res) => {
-                loading.close();
-                this.isLoading = false;
-                this.$message.success("删除成功");
-                this.getCourse();
-              })
-              .catch((err) => {
-                console.error(err);
-              });
-          })
-          .catch(() => {
-            loading.close();
-            this.isLoading = false;
-            return;
-          });
-      }
+        .catch(() => {
+          loading.close();
+          this.isLoading = false;
+          return;
+        });
+      // }
     },
     selectType() {
       this.ajax

+ 32 - 33
src/components/pages/courseGM.vue

@@ -511,38 +511,38 @@ export default {
     //     });
     // },
     deleteCourse(cid) {
-      const loading = this.openLoading(
-        document.querySelector(".student_table")
-      );
-      this.isLoading = true;
-      if (this.time()) {
-        this.$confirm("确定删除此项目吗?", "提示", {
-          confirmButtonText: "确定",
-          cancelButtonText: "取消",
-          type: "warning",
+      // if (this.time()) {
+      this.$confirm("确定删除此项目吗?", "提示", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      })
+        .then(() => {
+          const loading = this.openLoading(
+            document.querySelector(".student_table")
+          );
+          this.isLoading = true;
+          let params = {
+            cid: cid,
+          };
+          this.ajax
+            .get(this.$store.state.api + "deleteCourse", params)
+            .then((res) => {
+              loading.close();
+              this.isLoading = false;
+              this.$message.success("删除成功");
+              this.getCourse();
+            })
+            .catch((err) => {
+              console.error(err);
+            });
         })
-          .then(() => {
-            let params = {
-              cid: cid,
-            };
-            this.ajax
-              .get(this.$store.state.api + "deleteCourse", params)
-              .then((res) => {
-                loading.close();
-                this.isLoading = false;
-                this.$message.success("删除成功");
-                this.getCourse();
-              })
-              .catch((err) => {
-                console.error(err);
-              });
-          })
-          .catch(() => {
-            loading.close();
-            this.isLoading = false;
-            return;
-          });
-      }
+        .catch(() => {
+          loading.close();
+          this.isLoading = false;
+          return;
+        });
+      // }
     },
     selectType() {
       this.ajax
@@ -1102,7 +1102,7 @@ export default {
 }
 
 .student_input.is-active >>> .el-input__inner,
-.student_input  >>> .el-input__inner:focus {
+.student_input >>> .el-input__inner:focus {
   border-color: #5c549f;
 }
 
@@ -1112,5 +1112,4 @@ export default {
 .all_choose >>> .el-select .el-input__inner:focus {
   border-color: #5c549f;
 }
-
 </style>

+ 32 - 10
src/components/pages/student.vue

@@ -14,7 +14,16 @@
       </div>
       <div class="student_head">
         <div class="head_left">
-          <el-input v-model="sPhoneUser" class="student_input" placeholder="请输入手机号或用户名"></el-input>
+          <el-input v-model="sPhoneUser" class="student_input" placeholder="请输入用户名"></el-input>
+          <el-select 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>
         </div>
         <div class="head_right">
@@ -63,7 +72,7 @@
                 </div>
                 <div
                   style="
-                    width: 50px;
+                    width: 150px;
                     text-align: left;
                     white-space: nowrap;
                     overflow: hidden;
@@ -78,12 +87,12 @@
               <div>{{scope.row.un ? scope.row.un : "" }}</div>
             </template>
           </el-table-column>
-          <el-table-column label="电话" min-width="15" align="center">
+          <!-- <el-table-column label="电话" min-width="15" align="center">
             <template slot-scope="scope">
               <div>{{scope.row.phonenumber ? scope.row.phonenumber : "" }}</div>
             </template>
-          </el-table-column>
-          <el-table-column prop="studentid" label="学号" min-width="10" align="center"></el-table-column>
+          </el-table-column> -->
+          <!-- <el-table-column prop="studentid" label="学号" min-width="10" align="center"></el-table-column> -->
           <!-- <el-table-column
             prop="school"
             label="学校"
@@ -91,14 +100,14 @@
             align="center"
           >
           </el-table-column>-->
-          <!-- <el-table-column
-            prop="classname"
+          <el-table-column
+            prop="classname2"
             label="班级"
             min-width="15"
             align="center"
           >
-          </el-table-column>-->
-          <el-table-column label="操作" min-width="20">
+          </el-table-column>
+          <el-table-column label="操作" width="200px">
             <template slot-scope="scope">
               <!-- <el-button
                 class="de_button"
@@ -208,7 +217,7 @@ export default {
       sPhoneUser: "",
       userid: this.$route.query.userid,
       oid: this.$route.query.oid,
-      cid: this.$route.query.cid,
+      cid: '',
       tx: require("../../assets/avatar.png"),
     };
   },
@@ -944,6 +953,7 @@ export default {
     this.page = 1;
     this.getStudent();
     this.getSchoolName();
+    this.getClass();
   },
 };
 </script>
@@ -1125,4 +1135,16 @@ export default {
   flex-wrap: nowrap;
   align-items: baseline;
 }
+
+.student_input.el-input{
+  width: auto; 
+}
+
+.student_input{
+  margin-right: 10px;
+}
+
+.student_input >>> .el-input__icon{
+  line-height: unset;
+}
 </style>

+ 29 - 8
src/components/pages/studentGM.vue

@@ -15,7 +15,16 @@
       </div>
       <div class="student_head">
         <div class="head_left">
-          <el-input v-model="sPhoneUser" class="student_input" placeholder="请输入手机号或用户名"></el-input>
+          <el-input v-model="sPhoneUser" class="student_input" placeholder="请输入用户名"></el-input>
+          <el-select v-model="cid" placeholder="请选择班级" class="student_input inputClass" @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>
         </div>
         <div class="head_right">
@@ -64,7 +73,7 @@
                 </div>
                 <div
                   style="
-                    width: 50px;
+                    width: 150px;
                     text-align: left;
                     white-space: nowrap;
                     overflow: hidden;
@@ -79,12 +88,12 @@
               <div>{{scope.row.un ? scope.row.un : "" }}</div>
             </template>
           </el-table-column>
-          <el-table-column label="电话" min-width="15" align="center">
+          <!-- <el-table-column label="电话" min-width="15" align="center">
             <template slot-scope="scope">
               <div>{{scope.row.phonenumber ? scope.row.phonenumber : "" }}</div>
             </template>
           </el-table-column>
-          <el-table-column prop="studentid" label="学号" min-width="10" align="center"></el-table-column>
+          <el-table-column prop="studentid" label="学号" min-width="10" align="center"></el-table-column> -->
           <!-- <el-table-column
             prop="school"
             label="学校"
@@ -92,14 +101,14 @@
             align="center"
           >
           </el-table-column>-->
-          <!-- <el-table-column
-            prop="classname"
+          <el-table-column
+            prop="classname2"
             label="班级"
             min-width="15"
             align="center"
           >
-          </el-table-column>-->
-          <el-table-column label="操作" min-width="20">
+          </el-table-column>
+          <el-table-column label="操作" width="220px">
             <template slot-scope="scope">
               <!-- <el-button
                 class="de_button"
@@ -945,6 +954,7 @@ export default {
     this.page = 1;
     this.getStudent();
     this.getSchoolName();
+    this.getClass();
   },
 };
 </script>
@@ -1162,4 +1172,15 @@ export default {
   border-color: #5c549f;
 }
 
+.student_input.el-input{
+  width: auto; 
+}
+
+.student_input{
+  margin-right: 10px;
+}
+
+.student_input >>> .el-input__icon{
+  line-height: unset;
+}
 </style>