You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
447 B
36 lines
447 B
1 year ago
|
<template>
|
||
|
<view class="book-com">
|
||
|
<view class="date-wraper">
|
||
|
<view class="date">
|
||
|
<view class="top">
|
||
|
<view>01</view>
|
||
|
<view>周一</view>
|
||
|
</view>
|
||
|
<view class="bot">
|
||
|
全天出诊
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "bookBox",
|
||
|
props: {
|
||
|
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
|
||
|
</style>
|