浏览代码

02/07 12:34

验证vip
261568008@qq.com 5 年之前
父节点
当前提交
b65f1bfb0d

文件差异内容过多而无法显示
+ 0 - 0
dist/index.html


+ 1 - 1
dist/static/css/chunk-f983483e.8fbfd999.css → dist/static/css/chunk-5a507c07.9a6d3a81.css

@@ -1 +1 @@
-.m-core[data-v-e1d9e7ba]{margin-top:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:distribute;justify-content:space-around}.m-core .el-input[data-v-e1d9e7ba]{width:180px}.m-core h4[data-v-e1d9e7ba]{font-size:16px;background-color:#ccc;color:#fff;text-align:center;width:100%;height:40px;line-height:40px;margin-bottom:20px}.m-core .center[data-v-e1d9e7ba],.m-core .right[data-v-e1d9e7ba],.m-core .vipLeft[data-v-e1d9e7ba]{width:400px}.planList[data-v-e1d9e7ba]{padding:0 25px}.planList .planTop[data-v-e1d9e7ba]{height:40px;line-height:40px;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:justify;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid #ccc;margin-top:20px}.planList .planTop>p[data-v-e1d9e7ba]{font-size:14px}.planList .planCore .row[data-v-e1d9e7ba]{width:100%;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:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:40px;line-height:40px;font-size:14px;text-align:center}.planList .planCore .row div[data-v-e1d9e7ba]{width:87px}.okBtn[data-v-e1d9e7ba]{width:120px;height:40px;line-height:40px;text-align:center;color:#fff;border-radius:4px;margin-right:20px;cursor:pointer;background-color:#f97215;float:right}
+.m-core[data-v-7ff1fac4]{margin-top:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:distribute;justify-content:space-around}.m-core .el-input[data-v-7ff1fac4]{width:180px}.m-core h4[data-v-7ff1fac4]{font-size:16px;background-color:#ccc;color:#fff;text-align:center;width:100%;height:40px;line-height:40px;margin-bottom:20px}.m-core .center[data-v-7ff1fac4],.m-core .right[data-v-7ff1fac4],.m-core .vipLeft[data-v-7ff1fac4]{width:400px}.planList[data-v-7ff1fac4]{padding:0 25px}.planList .planTop[data-v-7ff1fac4]{height:40px;line-height:40px;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:justify;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid #ccc;margin-top:20px}.planList .planTop>p[data-v-7ff1fac4]{font-size:14px}.planList .planCore .row[data-v-7ff1fac4]{width:100%;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:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:40px;line-height:40px;font-size:14px;text-align:center}.planList .planCore .row div[data-v-7ff1fac4]{width:87px}.okBtn[data-v-7ff1fac4]{width:120px;height:40px;line-height:40px;text-align:center;color:#fff;border-radius:4px;margin-right:20px;cursor:pointer;background-color:#f97215;float:right}

文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/app.27000640.js


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/chunk-5a507c07.5dc54222.js


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/chunk-f983483e.a8125e7b.js


+ 18 - 14
src/views/buildVip/index.vue

@@ -356,7 +356,9 @@ export default {
         courseStartOnline: "",
         courseStartOffline: "",
         courseEnd: "",
-        section: ""
+        section: "",
+        courseStart:'',
+        courseEnd:''
       },
       classTimeList: [],
       centerForm: {
@@ -409,16 +411,7 @@ export default {
       scetionList: [],
       isGiveClass: false,
       activeStartTime: null,
-      courseOption: {
-        disabledDate: time => {
-          let startTime = this.leftForm.courseStart;
-          if (startTime) {
-            let date = new Date(startTime.replace(/-/, "/"));
-            return time.getTime() < date.getTime();
-          }
-          return;
-        }
-      },
+      courseOption: null,
       pickerOptions: null,
       pickerOptions1: null,
       leftFormRules: {
@@ -553,8 +546,19 @@ export default {
       });
       this.pickerOptions = this.beginDate();
       this.pickerOptions1 = this.processDate();
-  
-      
+      this.courseOption = this.coursesDate();
+    },
+    coursesDate(){
+      let self = this;
+      return {
+         disabledDate: time => {
+          if (self.leftForm.courseStart) {
+            let date = new Date(self.leftForm.courseStart.replace(/-/, "/"));
+            return time.getTime() < date.getTime();
+          }
+          return;
+        }
+      }
     },
     beginDate() {
       let self = this;
@@ -1165,7 +1169,7 @@ export default {
       });
     },
     setCourse() {
-      //
+
       if (
         this.hotType == "GIVE_CLASS" &&
         this.isGiveClass &&

部分文件因为文件数量过多而无法显示