소스 검색

音频最大播放次数限制

Michael Wang 4 년 전
부모
커밋
76e2f0954b
2개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/features/examwork/CourseManagement/CoursePaperDialog.vue
  2. 1 0
      src/features/examwork/CourseManagement/PaperImportDialog.vue

+ 1 - 0
src/features/examwork/CourseManagement/CoursePaperDialog.vue

@@ -57,6 +57,7 @@
             <span slot-scope="scope">
               <el-input-number
                 :min="1"
+                :max="1000"
                 v-model.trim="scope.row.audioPlayCount"
               ></el-input-number>
             </span>

+ 1 - 0
src/features/examwork/CourseManagement/PaperImportDialog.vue

@@ -28,6 +28,7 @@
         <el-form-item label="音频播放次数">
           <el-input-number
             :min="1"
+            :max="1000"
             v-model.trim="form.audioPlayCount"
           ></el-input-number>
         </el-form-item>