|
|
|
|
@ -128,6 +128,20 @@
|
|
|
|
|
</el-time-select>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="show_start_time" label="实际开始时间">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-time-select
|
|
|
|
|
style="width:100%"
|
|
|
|
|
v-model="scope.row.show_start_time"
|
|
|
|
|
:picker-options="{
|
|
|
|
|
start: '00:00',
|
|
|
|
|
step: '00:15',
|
|
|
|
|
end: '24:00'
|
|
|
|
|
}"
|
|
|
|
|
placeholder="选择开始时间">
|
|
|
|
|
</el-time-select>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="end_time" label="结束时间">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-time-select
|
|
|
|
|
@ -143,6 +157,21 @@
|
|
|
|
|
</el-time-select>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="show_end_time" label="实际结束时间">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-time-select
|
|
|
|
|
style="width:100%"
|
|
|
|
|
v-model="scope.row.show_end_time"
|
|
|
|
|
:picker-options="{
|
|
|
|
|
start: '00:00',
|
|
|
|
|
step: '00:15',
|
|
|
|
|
end: '24:00',
|
|
|
|
|
minTime: scope.row.start_time
|
|
|
|
|
}"
|
|
|
|
|
placeholder="选择结束时间">
|
|
|
|
|
</el-time-select>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="total" label="可预约人数">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input v-model="scope.row.total" placeholder="请填写可预约人数" autocomplete="off"></el-input>
|
|
|
|
|
@ -233,7 +262,9 @@
|
|
|
|
|
team_min_count: "",
|
|
|
|
|
rules_list:[{
|
|
|
|
|
start_time:"",
|
|
|
|
|
show_start_time:"",
|
|
|
|
|
end_time:"",
|
|
|
|
|
show_end_time:"",
|
|
|
|
|
total:""
|
|
|
|
|
}]
|
|
|
|
|
},
|
|
|
|
|
@ -400,6 +431,8 @@
|
|
|
|
|
this.form.rules_list.push({
|
|
|
|
|
start_time: "",
|
|
|
|
|
end_time:"",
|
|
|
|
|
show_start_time: "",
|
|
|
|
|
show_end_time:"",
|
|
|
|
|
total:""
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|