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.
35 lines
447 B
35 lines
447 B
<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>
|
|
|