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
496 B

<template>
<view class="page-prebook">
<view class="title">
<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>
</style>