parent
261684894a
commit
5977f069cc
@ -0,0 +1,57 @@
|
|||||||
|
<template>
|
||||||
|
<div class="serve-detail">
|
||||||
|
<xy-dialog :is-show.sync="isShow">
|
||||||
|
<template>
|
||||||
|
<div class="serve-detail__title">
|
||||||
|
服务时间
|
||||||
|
</div>
|
||||||
|
<div class="serve-detail__time-value">
|
||||||
|
12:00 ~ 16:00
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="serve-detail__title">
|
||||||
|
签到打卡
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="serve-detail__title">
|
||||||
|
过程打卡
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="serve-detail__title">
|
||||||
|
签退打卡
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template v-slot:footerContent>
|
||||||
|
<div></div>
|
||||||
|
</template>
|
||||||
|
</xy-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
isShow:false,
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.serve-detail{
|
||||||
|
|
||||||
|
&__title{
|
||||||
|
font-weight: 600;
|
||||||
|
|
||||||
|
padding: 10px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Loading…
Reference in new issue