소스 검색

05/28 18:52

11
mo 5 년 전
부모
커밋
c20abd3a48

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


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


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


+ 8 - 0
src/views/resetTeaming/components/studentPayBase.vue

@@ -216,6 +216,10 @@ export default {
     },
     resetPays () {
       this.isSigan = false
+      if (this.activeChiose.length <= 0) {
+        this.$message.error('请至少勾选一名学生')
+        return
+      }
       this.resetPayVisible = true
 
     },
@@ -240,6 +244,10 @@ export default {
         }).join(',')
       }
       obj.courseFee = this.resetPayForm.momey;
+      if (!obj.courseFee || obj.courseFee < 0) {
+        this.$message.error('请输入正确的金额')
+        return
+      }
       resetMusicGroupStudentFee(obj).then(res => {
         if (res.code == 200) {
           this.$message.success('修改成功')

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