修改
This commit is contained in:
parent
14274bf574
commit
0c59e5b30e
10
pages.json
10
pages.json
@ -179,7 +179,7 @@
|
|||||||
"navigationBarTitleText": "选择退款类型",
|
"navigationBarTitleText": "选择退款类型",
|
||||||
"enablePullDownRefresh": false
|
"enablePullDownRefresh": false
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
"path": "pages/homepage/homepage",
|
"path": "pages/homepage/homepage",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "泉医到家",
|
"navigationBarTitleText": "泉医到家",
|
||||||
@ -192,12 +192,6 @@
|
|||||||
"navigationBarTitleText": "疾病类型选择",
|
"navigationBarTitleText": "疾病类型选择",
|
||||||
"enablePullDownRefresh": false
|
"enablePullDownRefresh": false
|
||||||
}
|
}
|
||||||
}, {
|
|
||||||
"path": "pages/doctorslist/doctorslist",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "预约医生",
|
|
||||||
"enablePullDownRefresh": false
|
|
||||||
}
|
|
||||||
}, {
|
}, {
|
||||||
"path": "pages/ProductList/ProductList", //商品列表
|
"path": "pages/ProductList/ProductList", //商品列表
|
||||||
"style": {
|
"style": {
|
||||||
@ -237,8 +231,6 @@
|
|||||||
"navigationBarTitleText": "分类",
|
"navigationBarTitleText": "分类",
|
||||||
"enablePullDownRefresh": false,
|
"enablePullDownRefresh": false,
|
||||||
"disableScroll": true
|
"disableScroll": true
|
||||||
// "onReachBottomDistance": 50 //距离底部多远时触发 单位为px
|
|
||||||
// "enablePullDownRefresh": true //设置参数为true
|
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
"path": "pages/Healthknowledge/Healthknowledge",
|
"path": "pages/Healthknowledge/Healthknowledge",
|
||||||
|
|||||||
@ -1,60 +0,0 @@
|
|||||||
.app {
|
|
||||||
.visual {
|
|
||||||
text-align: center;
|
|
||||||
width: 94%;
|
|
||||||
margin: 0 auto;
|
|
||||||
background-color: #F4F5F7;
|
|
||||||
padding-top: 20rpx;
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
.list {
|
|
||||||
width: 72%;
|
|
||||||
background: #FFFFFF;
|
|
||||||
box-shadow: 0px 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
|
||||||
border-radius: 0px 20rpx 20rpx 0px;
|
|
||||||
padding-bottom: 100rpx;
|
|
||||||
|
|
||||||
.information {
|
|
||||||
width: 90%;
|
|
||||||
position: relative;
|
|
||||||
margin: 37rpx auto 0;
|
|
||||||
padding-bottom: 60rpx;
|
|
||||||
border-bottom: 1rpx solid #D8D4D4;
|
|
||||||
|
|
||||||
.name {
|
|
||||||
font-size: 36rpx;
|
|
||||||
position: absolute;
|
|
||||||
left: 45%;
|
|
||||||
top: 10%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image {
|
|
||||||
width: 135rpx;
|
|
||||||
height: 138rpx;
|
|
||||||
background: #BFBFBF;
|
|
||||||
border-radius: 25rpx;
|
|
||||||
margin-left: 6%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.department {
|
|
||||||
width: 28%;
|
|
||||||
|
|
||||||
.item {
|
|
||||||
line-height: 100rpx;
|
|
||||||
width: 100%;
|
|
||||||
height: 100rpx;
|
|
||||||
background: #ffffff;
|
|
||||||
box-shadow: 0px 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
|
||||||
border-radius: 20rpx 0px 0px 20rpx;
|
|
||||||
margin-bottom: 6rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.departmentitem {
|
|
||||||
background: #4C7BC9;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,70 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view class="app">
|
|
||||||
<view class="visual">
|
|
||||||
<view class="department">
|
|
||||||
<view class="item" v-for="(item,index) in departmentlist" :key="index"
|
|
||||||
:class="aindex == index ?'departmentitem':''">
|
|
||||||
{{item.name}}
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="list">
|
|
||||||
<view class="information">
|
|
||||||
<view class="image">
|
|
||||||
</view>
|
|
||||||
<view class="name">
|
|
||||||
某某某
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
<view class="information">
|
|
||||||
<view class="image">
|
|
||||||
</view>
|
|
||||||
<view class="name">
|
|
||||||
某某某
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
aindex: 1,
|
|
||||||
departmentlist: [{
|
|
||||||
name: '内科',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '外科',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '皮肤科',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
},
|
|
||||||
//1.分享给朋友
|
|
||||||
onShareAppMessage(res) {
|
|
||||||
let pages = getCurrentPages();
|
|
||||||
let url = pages[pages.length - 1].$page.fullPath
|
|
||||||
return {
|
|
||||||
title: '泉医到家',
|
|
||||||
path: url,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
//2.分享到朋友圈
|
|
||||||
onShareTimeline(res) {
|
|
||||||
let pages = getCurrentPages();
|
|
||||||
let url = pages[pages.length - 1].$page.fullPath
|
|
||||||
return {
|
|
||||||
title: '泉医到家',
|
|
||||||
path: url,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
@import "./doctorslist.scss";
|
|
||||||
</style>
|
|
||||||
Loading…
Reference in New Issue
Block a user