Browse Source

预约详情页面

master
kuaileWu 1 year ago
parent
commit
bb52849e8d
  1. 8
      pages.json
  2. 31
      pages/book_detail/book_detail.vue
  3. 3
      pages/prebook_list/prebook_list.vue

8
pages.json

@ -1,6 +1,14 @@
{ {
"pages": [ "pages": [
{ {
"path" : "pages/book_detail/book_detail",
"style" :
{
"navigationBarTitleText": "预约详情",
"enablePullDownRefresh": false
}
},
{
"path" : "pages/prebook_list/prebook_list", "path" : "pages/prebook_list/prebook_list",
"style" : "style" :
{ {

31
pages/book_detail/book_detail.vue

@ -0,0 +1,31 @@
<template>
<view class="book-page btPadding">
<view class="page-box"></view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.book-page{
height: 100vh;
width: 100%;
background: #F6F6F6;
overflow-y: auto;
box-sizing: border-box;
.page-box{
width: calc(100% - 34rpx);
}
}
</style>

3
pages/prebook_list/prebook_list.vue

@ -39,7 +39,7 @@
export default { export default {
data() { data() {
return { return {
data:['status_wait', 'status_out_num', 'status_down', 'status_expire', 'status_ing'], data:['status_wait', 'status_out_num', 'status_down', 'status_expire', 'status_ing', 'status_down', 'status_expire', 'status_ing'],
userSelectIndex:0 userSelectIndex:0
} }
}, },
@ -92,6 +92,7 @@
border-radius: 8rpx; border-radius: 8rpx;
margin: 36rpx auto 0; margin: 36rpx auto 0;
overflow: hidden; overflow: hidden;
box-sizing: border-box;
.item{ .item{
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;

Loading…
Cancel
Save