Created
January 22, 2019 03:48
-
-
Save ak4bento/c7c0f1f7ba9e4414d43957e4bc52fbe5 to your computer and use it in GitHub Desktop.
working hours
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<el-table-column min-width="150px" label="Sunday" prop="sunday" align="center" > | |
<template slot-scope="scope"> | |
<span v-if="scope.row.working_hours[0] != null"> | |
<span v-for="(item, index) in scope.row.working_hours" v-if="item.working_hours_day == 1" :key="index" > | |
<!-- <span v-if="item.working_hours_day == 1"> --> | |
<el-button style="background: #FBFBFB"> | |
{{ item.shift_start_time }} - {{ item.shift_end_time }} <br> | |
</el-button> <br> | |
<!-- </span> --> | |
</span> | |
</span> | |
<span v-else> | |
<el-button icon="el-icon-plus" style="border: none; background: none" /> | |
</span> | |
</template> | |
</el-table-column> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment