소스 검색

Merge branch 'fix_pay' into iteration_201218

wolyshaw 4 년 전
부모
커밋
89eb4ba5f5

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


+ 1 - 0
dist/static/css/chunk-1851af68.78d605d4.css

@@ -0,0 +1 @@
+.number-input[data-v-5d883a23]{width:100%}.number-input[data-v-3c7aa9aa] .el-input__inner,.number-input[data-v-5d883a23] .el-input__inner{text-align:left}

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/chunk-2d571ec4.77ed8155.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/chunk-4e8940b6.cb6216b5.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/chunk-a5b3d4fa.fcba304f.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.ce94407b.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/chunk-1851af68.a479c13f.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/chunk-2d571ec4.7340c808.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/chunk-4e8940b6.c6b64f4d.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/chunk-a5b3d4fa.cddb742b.js


+ 0 - 1
src/views/resetTeaming/modals/extra-class.vue

@@ -113,7 +113,6 @@
               :precision="2"
               :min="0"
               @change="change"
-              :disabled="!isUserType"
               placeholder="请输入现价"
             />
           </el-form-item>

+ 1 - 1
src/views/resetTeaming/modals/payment-cycle.vue

@@ -18,7 +18,7 @@
         :precision="2"
         :min="0"
         @change="paymentAmountChange"
-        :disabled="(isUserType || (isCommon && isUserType)) && isDisabled"
+        :disabled="isDisabled"
         placeholder="请输入缴费金额"
       />
     </el-form-item>

+ 6 - 15
src/views/resetTeaming/modals/user-pay-form.vue

@@ -378,21 +378,12 @@ export default {
         }
       }
       if (this.cycles && this.cycles.length) {
-        if (this.paymentAmountDisabled) {
-          this.cycles = this.cycles.map((item, index) => {
-            return {
-              ...item,
-              paymentAmount: (index === 0 ? first / 100 : (other / 100))
-            }
-          })
-        } else {
-          this.cycles = this.cycles.map((item, index) => {
-            return {
-              ...item,
-              paymentAmount: (index === 0 && !item.changeed ? money : item.paymentAmount)
-            }
-          })
-        }
+        this.cycles = this.cycles.map((item, index) => {
+          return {
+            ...item,
+            paymentAmount: (index === 0 ? first / 100 : (other / 100))
+          }
+        })
       }
       // if (!money) {
         // this.$set(this.cycle, "paymentAmount", undefined);

+ 1 - 0
src/views/teamDetail/components/modals/classroom-setting-item.vue

@@ -65,6 +65,7 @@
         <template slot-scope="scope">
           <el-form-item
             :prop="'classs.' + type + '.cycle.' + scope.$index + '.time'"
+            :rules="[{ required: true, message: '请选择课程时长' }]"
             inline-message>
             <el-select v-model.trim="scope.row.time"
               style="width:100%!important"

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.