Przeglądaj źródła

1219 12:02

修复0节课提交bug
mo 5 lat temu
rodzic
commit
cbaaf23c0f

Plik diff jest za duży
+ 0 - 0
dist/index.html


+ 1 - 0
dist/static/css/chunk-23e964b8.a404003b.css

@@ -0,0 +1 @@
+.floor[data-v-c03af63e]{padding-right:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;width:100%;height:48px;line-height:48px;background:#edeef0;font-size:14px;color:#444;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;z-index:1}.floor .remove[data-v-c03af63e]{background:#f85043;margin-left:164px}.floor .add[data-v-c03af63e],.floor .remove[data-v-c03af63e]{width:98px;height:32px;border-radius:3px;color:#fff;line-height:32px;text-align:center;cursor:pointer}.floor .add[data-v-c03af63e]{background:#14928a;margin-left:20px}.studentMask[data-v-c03af63e]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.studentMask .left[data-v-c03af63e]{width:200px;margin-right:20px}.studentMask .left .wrap[data-v-c03af63e]{margin-bottom:20px}.studentMask .left h4[data-v-c03af63e]{font-size:16px;color:#444;line-height:38px}.studentMask .left .chioseStudentList[data-v-c03af63e]{height:500px;overflow-y:auto;border:1px solid #ccc}.studentMask .left .chioseStudentList .studentItem[data-v-c03af63e]{padding-left:10px;line-height:25px}.studentMask .right[data-v-c03af63e]{width:calc(100% - 200px)}.studentMask .right .tableList[data-v-c03af63e]{max-height:500px;overflow-y:auto}.resetClassForm[data-v-c03af63e] .el-date-editor.el-input,.resetClassForm[data-v-c03af63e] .el-date-editor.el-input__inner{width:180px!important}[data-v-c03af63e] .el-date-editor.el-input,[data-v-c03af63e] .el-date-editor.el-input__inner{width:100px!important}

+ 0 - 1
dist/static/css/chunk-2424cbf9.ae621084.css

@@ -1 +0,0 @@
-.floor[data-v-75cd6042]{padding-right:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;width:100%;height:48px;line-height:48px;background:#edeef0;font-size:14px;color:#444;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;z-index:1}.floor .remove[data-v-75cd6042]{background:#f85043;margin-left:164px}.floor .add[data-v-75cd6042],.floor .remove[data-v-75cd6042]{width:98px;height:32px;border-radius:3px;color:#fff;line-height:32px;text-align:center;cursor:pointer}.floor .add[data-v-75cd6042]{background:#14928a;margin-left:20px}.studentMask[data-v-75cd6042]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.studentMask .left[data-v-75cd6042]{width:200px;margin-right:20px}.studentMask .left .wrap[data-v-75cd6042]{margin-bottom:20px}.studentMask .left h4[data-v-75cd6042]{font-size:16px;color:#444;line-height:38px}.studentMask .left .chioseStudentList[data-v-75cd6042]{height:500px;overflow-y:auto;border:1px solid #ccc}.studentMask .left .chioseStudentList .studentItem[data-v-75cd6042]{padding-left:10px;line-height:25px}.studentMask .right[data-v-75cd6042]{width:calc(100% - 200px)}.studentMask .right .tableList[data-v-75cd6042]{max-height:500px;overflow-y:auto}.resetClassForm[data-v-75cd6042] .el-date-editor.el-input,.resetClassForm[data-v-75cd6042] .el-date-editor.el-input__inner{width:180px!important}[data-v-75cd6042] .el-date-editor.el-input,[data-v-75cd6042] .el-date-editor.el-input__inner{width:100px!important}

Plik diff jest za duży
+ 0 - 0
dist/static/js/app.56ffdd13.js


Plik diff jest za duży
+ 0 - 0
dist/static/js/chunk-017d1ea2.01250a17.js


Plik diff jest za duży
+ 0 - 0
dist/static/js/chunk-23e964b8.dfcde4a4.js


Plik diff jest za duży
+ 0 - 0
dist/static/js/chunk-2424cbf9.1fb8927e.js


+ 1 - 1
src/views/teamDetail/components/courseList.vue

@@ -9,7 +9,7 @@
                    clearable
                    filterable
                    placeholder="课程类型">
-          <el-option label="基础技能"
+          <el-option label="基础技能"
                      value="HIGH"></el-option>
           <el-option label="综合课"
                      value="COMPREHENSIVE"></el-option>

+ 5 - 0
src/views/teamDetail/components/resetClass.vue

@@ -1146,6 +1146,7 @@ export default {
       } else {
         this.isTemporary = false;
       }
+
       this.$refs['teacherForm'].validate(item => {
         if (item) {
           let week = this.weekList;
@@ -1164,6 +1165,10 @@ export default {
           let startDate = this.teacherForm.courseTime;
           let courseType = this.teacherForm.courseType;
           let courseTimes = this.teacherForm.courseNum
+          if (courseTimes <= 0) {
+            this.$message.error('请至少排一节课')
+            return
+          }
           let students = this.activeListStudent.map(item => {
             return item.userId;
           })

+ 2 - 2
vue.config.js

@@ -17,9 +17,9 @@ const name = defaultSettings.title || '管乐迷后台管理系统' // page titl
 // http://47.99.212.176:8000 
 // //  https://online.dayaedu.com
 // let target = 'https://online.dayaedu.com' //线上
-let target = 'http://testadm.dayaedu.com/' //勇哥迁库
+// let target = 'http://testadm.dayaedu.com/' //勇哥迁库
 // let target = 'http://192.168.3.27:8000' // 箭河
-// let target = 'http://192.168.3.28:8000' //邹璇
+let target = 'http://192.168.3.28:8000' //邹璇
 // let target = 'http://192.168.3.8:18000' //勇哥
 // let target = 'http://47.99.212.176:8000' // 测试服
 // let target = 'http://192.168.3.48:8080' // 乔

Niektóre pliki nie zostały wyświetlone z powodu dużej ilości zmienionych plików