Commit cc62ade9 authored by zhengke's avatar zhengke

修改

parent 5f2091a6
...@@ -18,9 +18,11 @@ ...@@ -18,9 +18,11 @@
<q-btn color="accent" size="sm" icon="add" label="新增排班计划" @click="EditSchedu(null)" /> <q-btn color="accent" size="sm" icon="add" label="新增排班计划" @click="EditSchedu(null)" />
</div> </div>
</template> </template>
<template v-slot:body="props"> <!-- <template v-slot:body="props">
<q-tr :props="props">
</template> <template></template>
</q-tr>
</template> -->
<template v-slot:bottom> <template v-slot:bottom>
<q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="pageCount" <q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="pageCount"
:input="true" @input="changePage" /> :input="true" @input="changePage" />
...@@ -28,7 +30,7 @@ ...@@ -28,7 +30,7 @@
<template v-slot:body-cell-optioned="props"> <template v-slot:body-cell-optioned="props">
<q-td :props="props"> <q-td :props="props">
<q-btn flat size="xs" icon="edit" style="font-weight:400;" color="edit" class="q-mr-xs" label="修改" <q-btn flat size="xs" icon="edit" style="font-weight:400;" color="edit" class="q-mr-xs" label="修改"
 @click=""   />  @click="EditSchedu(props.row)"   />
<q-btn flat size="xs" icon="delete" style="font-weight:400;" color="negative" class="q-mr-xs" label="删除" <q-btn flat size="xs" icon="delete" style="font-weight:400;" color="negative" class="q-mr-xs" label="删除"
 @click="" />  @click="" />
<q-btn flat size="xs" icon="iconfont icon-View" style="font-weight:400;" class="q-mr-xs" label="查看"  @click=""   /> <q-btn flat size="xs" icon="iconfont icon-View" style="font-weight:400;" class="q-mr-xs" label="查看"  @click=""   />
...@@ -71,30 +73,34 @@ ...@@ -71,30 +73,34 @@
name: 'ShiftName', name: 'ShiftName',
label: '班次', label: '班次',
align: 'left', align: 'left',
field: 'ShiftName' field: 'ShiftName',
field: row => row.PlanDetails
}, },
{ {
name: 'StartTime', name: 'StartTime',
label: '值班时间', label: '值班时间',
align: 'left', align: 'left',
field: 'StartTime' field: 'StartTime',
field: row => row.PlanDetails
}, },
{ {
name: 'DutyManName', name: 'DutyManName',
label: '值班人员', label: '值班人员',
align: 'left', align: 'left',
field: 'DutyManName' field: 'DutyManName',
field: row => row.PlanDetails
}, },
{ {
name: 'StartTime', name: 'Id',
label: '状态', label: '状态',
align: 'left', align: 'left',
field: 'StartTime' field: 'Id',
field: row => row.PlanDetails
}, },
{ {
name: 'optioned', name: 'optioned',
label: '操作', label: '操作',
field: 'RoomId' field: 'optioned'
} }
], ],
dataList: [], dataList: [],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment