|
@@ -121,24 +121,28 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="开始时间" align="center">
|
|
<el-table-column label="开始时间" align="center">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-time-select
|
|
|
|
|
|
+ <el-time-picker
|
|
v-model="scope.row.performTimeStart"
|
|
v-model="scope.row.performTimeStart"
|
|
style="width: 100%"
|
|
style="width: 100%"
|
|
|
|
+ value-format="HH:mm"
|
|
|
|
+ format="HH:mm"
|
|
@change="changValue(scope.row, 'start', scope.$index)"
|
|
@change="changValue(scope.row, 'start', scope.$index)"
|
|
- :picker-options="{ start: '08:00', step: '00:15', end: '23:30'}"
|
|
|
|
|
|
+ :picker-options="{ selectableRange: '00:00:00 - 23:59:59'}"
|
|
placeholder="选择时间">
|
|
placeholder="选择时间">
|
|
- </el-time-select>
|
|
|
|
|
|
+ </el-time-picker>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="结束时间" align="center">
|
|
<el-table-column label="结束时间" align="center">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-time-select
|
|
|
|
|
|
+ <el-time-picker
|
|
v-model="scope.row.performTimeEnd"
|
|
v-model="scope.row.performTimeEnd"
|
|
style="width: 100%"
|
|
style="width: 100%"
|
|
|
|
+ value-format="HH:mm"
|
|
|
|
+ format="HH:mm"
|
|
@change="changValue(scope.row, 'end', scope.$index)"
|
|
@change="changValue(scope.row, 'end', scope.$index)"
|
|
- :picker-options="{ start: '08:00', step: '00:15', end: '23:30'}"
|
|
|
|
|
|
+ :picker-options="{ selectableRange: '00:00:00 - 23:59:59'}"
|
|
placeholder="选择时间">
|
|
placeholder="选择时间">
|
|
- </el-time-select>
|
|
|
|
|
|
+ </el-time-picker>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|