|
|
@@ -17,39 +17,17 @@
|
|
|
<el-row>
|
|
|
<el-col :span="16">
|
|
|
<el-form-item label="课程暂停时长" required>
|
|
|
- <el-row :gutter="10">
|
|
|
- <el-col :span="7">
|
|
|
- <el-input-number
|
|
|
- v-model="formData.ccHours"
|
|
|
- :min="0"
|
|
|
- :step="1"
|
|
|
- step-strictly
|
|
|
- placeholder="时"
|
|
|
- />
|
|
|
- </el-col>
|
|
|
- <el-col :span="1" class="flex items-center justify-center">:</el-col>
|
|
|
- <el-col :span="7">
|
|
|
- <el-input-number
|
|
|
- v-model="formData.ccMinutes"
|
|
|
- :min="0"
|
|
|
- :max="59"
|
|
|
- :step="1"
|
|
|
- step-strictly
|
|
|
- placeholder="分"
|
|
|
- />
|
|
|
- </el-col>
|
|
|
- <el-col :span="1" class="flex items-center justify-center">:</el-col>
|
|
|
- <el-col :span="7">
|
|
|
- <el-input-number
|
|
|
- v-model="formData.ccSeconds"
|
|
|
- :min="0"
|
|
|
- :max="59"
|
|
|
- :step="1"
|
|
|
- step-strictly
|
|
|
- placeholder="秒"
|
|
|
- />
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
+ <div style="display: flex; align-items: center; gap: 10px;">
|
|
|
+ <el-input-number v-model="formData.ccHours" :min="0" :step="1" step-strictly :precision="0" style="width: 140px;">
|
|
|
+ <template #suffix><span>时</span></template>
|
|
|
+ </el-input-number>
|
|
|
+ <el-input-number v-model="formData.ccMinutes" :min="0" :max="59" :step="1" step-strictly :precision="0" style="width: 140px;">
|
|
|
+ <template #suffix><span>分</span></template>
|
|
|
+ </el-input-number>
|
|
|
+ <el-input-number v-model="formData.ccSeconds" :min="0" :max="59" :step="1" step-strictly :precision="0" style="width: 140px;">
|
|
|
+ <template #suffix><span>秒</span></template>
|
|
|
+ </el-input-number>
|
|
|
+ </div>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|