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.
|
|
|
<template>
|
|
|
|
<view class="page-prebook">
|
|
|
|
<view class="title flex">
|
|
|
|
<img :src="cssUrl+'ten.svg'">
|
|
|
|
广安门中医医院西单门诊部 针灸科
|
|
|
|
</view>
|
|
|
|
<book/>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Book from '@/components/bookBox.vue';
|
|
|
|
export default {
|
|
|
|
onLoad(op) {
|
|
|
|
uni.setNavigationBarTitle({
|
|
|
|
title:'李静医生预约就诊'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
cssUrl:this.cssUrl
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components:{
|
|
|
|
Book
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.page-prebook{
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
overflow-y: auto;
|
|
|
|
background: #F8F8F8;
|
|
|
|
.title{
|
|
|
|
margin-top: 24rpx;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 41rpx;
|
|
|
|
line-height: 36rpx;
|
|
|
|
font-size: 30rpx;
|
|
|
|
color: #949699;
|
|
|
|
img{
|
|
|
|
width: 26rpx;
|
|
|
|
height: 26rpx;
|
|
|
|
margin-right: 15rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|