diff --git a/components/listBox.vue b/components/listBox.vue
index 5244c04..7a0a677 100644
--- a/components/listBox.vue
+++ b/components/listBox.vue
@@ -56,6 +56,7 @@ export default {
width: 140rpx;
flex-shrink: 0;
text-align: left;
+ padding-right: 20rpx;
}
.right{
flex-grow: 1;
diff --git a/manifest.json b/manifest.json
index 05f82bd..4a801f7 100644
--- a/manifest.json
+++ b/manifest.json
@@ -82,6 +82,9 @@
"treeShaking" : {
"enable" : true
}
+ },
+ "sdkConfigs" : {
+ "maps" : {}
}
}
}
diff --git a/pages.json b/pages.json
index ec04ad8..545089f 100644
--- a/pages.json
+++ b/pages.json
@@ -8,6 +8,12 @@
"enablePullDownRefresh": false
}
},
+ {
+ "path": "pages/index/index",
+ "style": {
+ "navigationBarTitleText": ""
+ }
+ },
{
"path" : "pages/prebook_list/prebook_list",
"style" :
@@ -35,12 +41,6 @@
},
{
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- {
"path" : "pages/modify_visitor/modify_visitor",
"style" :
{
diff --git a/pages/book_detail/book_detail.vue b/pages/book_detail/book_detail.vue
index 0a63c40..ae5c3a6 100644
--- a/pages/book_detail/book_detail.vue
+++ b/pages/book_detail/book_detail.vue
@@ -2,38 +2,46 @@
- {{item.custom}}
+
-
+
+
+
+ 就诊提醒
+
+
@@ -45,76 +53,90 @@
background: #F6F6F6;
overflow-y: auto;
box-sizing: border-box;
- .item-wrapper{
- .rightBox{
- .status{
- color: red;
- }
- }
- }
-
- .list-box{
+ .list-box,.bot-con{
width: calc(100% - 34rpx);
height: auto;
margin: 0 auto;
overflow: hidden;
border-radius: 0 0 8rpx 8rpx;
+ }
+
+ .list-box{
.item-wrapper{
- // .rightBox{
- // .status{
- // color: red;
- // display: flex;
- // justify-content: flex-end;
- // view{
- // display: flex;
- // border-radius: 6rpx;
- // font-size: 22rpx;
- // height: 32rpx;
- // line-height: 32rpx;
- // padding: 0 10rpx;
- // box-sizing: border-box;
- // min-width: 90rpx;
- // display: block;
- // text-align: center;
- // }
- // &.status_wait{
- // view{
- // background: #F8FFF7;
- // border: 1rpx solid #5BD07A;
- // color: #58CA7F;
- // }
- // }
- // &.status_out_num{
- // view{
- // background: #FFFAF7;
- // border: 1rpx solid #FE6710;
- // color: #FE6710;
- // }
- // }
- // &.status_down{
- // view{
- // background: #FCFCFC;
- // border: 1rpx solid #AEB0B8;
- // color: #B6B8BF;
- // }
- // }
- // &.status_expire{
- // view{
- // background: #FCFCFC;
- // border: 1rpx solid #AEB0B8;
- // color: #B6B8BF;
- // }
- // }
- // &.status_ing{
- // view{
- // border: 1rpx solid #5FA1CB;
- // background: #F7FCFF;
- // color: #5FA1CB;
- // }
- // }
- // }
- // }
-
+ .item-inner /deep/{
+ .status{
+ display: flex;
+ justify-content: flex-end;
+ .status_text{
+ display: flex;
+ border-radius: 6rpx;
+ font-size: 22rpx;
+ height: 32rpx;
+ line-height: 32rpx;
+ padding: 0 10rpx;
+ box-sizing: border-box;
+ min-width: 90rpx;
+ display: block;
+ text-align: center;
+ }
+ &.status_wait {
+ .status_text{
+ background: #F8FFF7;
+ border: 1rpx solid #5BD07A;
+ color: #58CA7F;
+ }
+ }
+ &.status_out_num{
+ .status_text{
+ background: #FFFAF7;
+ border: 1rpx solid #FE6710;
+ color: #FE6710;
+ }
+ }
+ &.status_down{
+ .status_text{
+ background: #FCFCFC;
+ border: 1rpx solid #AEB0B8;
+ color: #B6B8BF;
+ }
+ }
+ &.status_expire{
+ .status_text{
+ background: #FCFCFC;
+ border: 1rpx solid #AEB0B8;
+ color: #B6B8BF;
+ }
+ }
+ &.status_ing{
+ .status_text{
+ border: 1rpx solid #5FA1CB;
+ background: #F7FCFF;
+ color: #5FA1CB;
+ }
+ }
+ }
+
+ .queue-text{
+ height: 40rpx;
+ font-size: 28rpx;
+ color: #242833;
+ line-height: 40rpx;
+ .queue-num-txt{
+ height: 48rpx;
+ font-weight: 600;
+ font-size: 48rpx;
+ color: #39D067;
+ line-height: 48rpx;
+ margin: 0 8rpx;
+ }
+ }
+ .book-date{
+ height: 45rpx;
+ font-size: 32rpx;
+ color: #39D067;
+ line-height: 45rpx;
+ }
+ }
}
}
}