This commit is contained in:
曹辉 2023-03-06 11:24:38 +08:00
parent 51cf9b0235
commit bc8a335e09
3 changed files with 97 additions and 12 deletions

View File

@ -9,7 +9,14 @@
"navigationBarTitleText": "", "navigationBarTitleText": "",
"navigationStyle": "custom" "navigationStyle": "custom"
} }
},{ }, {
"path": "pages/orderDetails/orderDetails",
"style": {
"navigationBarTitleText": "订单详情",
"navigationBarBackgroundColor": "#ffffff",
"enablePullDownRefresh": false
}
}, {
"path": "pages/integral/integral", "path": "pages/integral/integral",
"style": { "style": {
"navigationBarTitleText": "积分", "navigationBarTitleText": "积分",
@ -131,14 +138,6 @@
"enablePullDownRefresh": true //true "enablePullDownRefresh": true //true
} }
}, },
{
"path": "pages/orderDetails/orderDetails",
"style": {
"navigationBarTitleText": "订单详情",
"navigationBarBackgroundColor": "#ffffff",
"enablePullDownRefresh": false
}
},
{ {
"path": "pages/payorderDetails/payorderDetails", "path": "pages/payorderDetails/payorderDetails",
"style": { "style": {
@ -346,6 +345,16 @@
"navigationBarBackgroundColor": "#ffffff" "navigationBarBackgroundColor": "#ffffff"
} }
} }
,{
"path" : "pages/Healthrecords/Healthrecords",
"style" :
{
"navigationBarTitleText": "健康档案",
"navigationBarBackgroundColor": "#ffffff",
"enablePullDownRefresh": false
}
}
], ],
"globalStyle": { "globalStyle": {
"navigationBarTextStyle": "black", "navigationBarTextStyle": "black",

View File

@ -0,0 +1,70 @@
<template>
<view class="app">
<view class="concent">
<view class="background">
<image src="/static/logo.png" mode=""></image>
<view>
<view class="detailed">
敬请期待
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
.app {
padding-top: 10rpx;
.concent {
width: 701rpx;
height: 600rpx;
background: #4C7BC9;
box-shadow: 0px 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
border-radius: 20rpx;
margin: 5% auto 20px;
.background {
position: relative;
width: 657rpx;
height: 560rpx;
background: #FFFFFF;
border-radius: 25rpx;
background-color: white;
margin: 0 auto;
top: 50%;
transform: translateY(-50%);
image {
width: 178rpx;
height: 200rpx;
background: #FFFFFF;
border-radius: 25px;
margin-left: 68%;
margin-top: 5%;
}
}
}
}
.detailed {
width: 657rpx;
padding: 0 42rpx;
line-height: 56rpx;
}
.detailed view {
text-indent: 2em;
}
</style>

View File

@ -35,7 +35,7 @@
</view> </view>
</view> </view>
<view class="userinfo"> <view class="userinfo">
<view class="item"> <view class="item" @tap='goHealthrecords'>
<image src="../../static/jkda.png" mode=""></image> <image src="../../static/jkda.png" mode=""></image>
<view class="text"> <view class="text">
健康档案 健康档案
@ -356,6 +356,12 @@
this.gologin(); this.gologin();
} }
}, },
//
goHealthrecords() {
uni.navigateTo({
url: '/pages/Healthrecords/Healthrecords'
})
},
}, },
} }
</script> </script>