|
@@ -343,10 +343,11 @@
|
|
|
</el-form-item>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
- <el-col :span="14">
|
|
|
+ <el-col :span="12">
|
|
|
<el-form-item label="每日场次数量">
|
|
|
<el-input-number
|
|
|
v-model="addStageForm.num2"
|
|
|
+ style="width: 170px !important"
|
|
|
:controls="false"
|
|
|
:min="1"
|
|
|
:max="20"
|
|
@@ -367,16 +368,25 @@
|
|
|
v-for="(item, index) in addStageForm.addTimeRangeArr2"
|
|
|
:key="'tr2' + index"
|
|
|
>
|
|
|
- <el-col :span="22">
|
|
|
+ <el-col :span="20">
|
|
|
<el-form-item :label="index + 1 + '.'">
|
|
|
<el-time-picker
|
|
|
- :key="'picker' + index"
|
|
|
- is-range
|
|
|
- v-model="item.timeRange"
|
|
|
- range-separator="至"
|
|
|
- start-placeholder="开始时间"
|
|
|
- end-placeholder="结束时间"
|
|
|
- placeholder="选择时间范围"
|
|
|
+ :key="'picker0' + index"
|
|
|
+ v-model="item.timeRange[0]"
|
|
|
+ placeholder="选择开始时间"
|
|
|
+ style="width: 170px !important"
|
|
|
+ value-format="HH:mm:ss"
|
|
|
+ format="HH:mm:ss"
|
|
|
+ :picker-options="{
|
|
|
+ selectableRange: '00:00:00 - 23:59:59'
|
|
|
+ }"
|
|
|
+ ></el-time-picker>
|
|
|
+ <span class="mx-3">至</span>
|
|
|
+ <el-time-picker
|
|
|
+ :key="'picker1' + index"
|
|
|
+ v-model="item.timeRange[1]"
|
|
|
+ placeholder="选择结束时间"
|
|
|
+ style="width: 170px !important"
|
|
|
value-format="HH:mm:ss"
|
|
|
format="HH:mm:ss"
|
|
|
:picker-options="{
|