|
|
@ -32,7 +32,7 @@ |
|
|
|
width="50" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-checkbox v-model="scope.row.MonFront" /> |
|
|
|
<el-checkbox v-model="scope.row.monFront" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
@ -43,7 +43,7 @@ |
|
|
|
width="50" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-checkbox v-model="scope.row.WedTime" /> |
|
|
|
<el-checkbox v-model="scope.row.monAfter" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
@ -61,7 +61,7 @@ |
|
|
|
width="50" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<input class="checkTime" type="checkbox" :ischecked="scope.row.TuesTime"> |
|
|
|
<el-checkbox v-model="scope.row.tuesFront" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
@ -72,7 +72,7 @@ |
|
|
|
width="50" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<input class="checkTime" type="checkbox" :ischecked="scope.row.TuesTime"> |
|
|
|
<el-checkbox v-model="scope.row.tuesAfter" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
@ -90,7 +90,7 @@ |
|
|
|
width="50" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-checkbox v-model="scope.row.WedTime" /> |
|
|
|
<el-checkbox v-model="scope.row.webFront" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
@ -101,12 +101,9 @@ |
|
|
|
width="50" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<input class="checkTime" type="checkbox" :ischecked="scope.row.WedTime"> |
|
|
|
<el-checkbox v-model="scope.row.webAfter" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<input class="checkTime" type="checkbox" :ischecked="scope.row.WedTime"> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
:resizable="false" |
|
|
@ -120,17 +117,22 @@ |
|
|
|
align="center" |
|
|
|
label-class-name="checkFont" |
|
|
|
width="50" |
|
|
|
/> |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-checkbox v-model="scope.row.thurFront" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
:resizable="false" |
|
|
|
label="下午" |
|
|
|
align="center" |
|
|
|
label-class-name="checkFont" |
|
|
|
width="50" |
|
|
|
/> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<input class="checkTime" type="checkbox" :ischecked="scope.row.ThurTime"> |
|
|
|
</template> |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-checkbox v-model="scope.row.thurAfter" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
:resizable="false" |
|
|
@ -144,14 +146,22 @@ |
|
|
|
align="center" |
|
|
|
label-class-name="checkFont" |
|
|
|
width="50" |
|
|
|
/> |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-checkbox v-model="scope.row.friFront" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
:resizable="false" |
|
|
|
label="下午" |
|
|
|
align="center" |
|
|
|
label-class-name="checkFont" |
|
|
|
width="50" |
|
|
|
/> |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-checkbox v-model="scope.row.friAfter" /> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<input class="checkTime" type="checkbox" :ischecked="scope.row.FriTime"> |
|
|
|
</template> |
|
|
@ -286,10 +296,16 @@ export default { |
|
|
|
tableData: [ |
|
|
|
{ |
|
|
|
projectName: '视诱发电位', |
|
|
|
MonTime: false, |
|
|
|
MonFront: false, |
|
|
|
TuesTime: false, |
|
|
|
WedTime: false, |
|
|
|
monFront: false, |
|
|
|
monAfter: false, |
|
|
|
tuesFront: false, |
|
|
|
tuesAfter: false, |
|
|
|
webFront: false, |
|
|
|
webAfter: false, |
|
|
|
thurFront: false, |
|
|
|
thurAfter: false, |
|
|
|
friFront: false, |
|
|
|
friAfter: false, |
|
|
|
ThurTime: false, |
|
|
|
FriTime: false, |
|
|
|
SatTime: false, |
|
|
|