短信推送功能完善
This commit is contained in:
parent
3e0fb624ab
commit
ae21e9e3be
|
|
@ -13,7 +13,7 @@
|
|||
"type" : "uniCloud"
|
||||
},
|
||||
{
|
||||
"playground" : "standard",
|
||||
"playground" : "custom",
|
||||
"type" : "uni-app:app-android"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -796,6 +796,12 @@
|
|||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/workPlan/my/index",
|
||||
"style": {
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
|
|
|
|||
|
|
@ -0,0 +1,60 @@
|
|||
<template>
|
||||
<view>
|
||||
<u-navbar
|
||||
class="u-navbar"
|
||||
title="我的"
|
||||
placeholder
|
||||
@leftClick="leftClick"
|
||||
leftIconColor="#fff"
|
||||
bgColor="#00337A"
|
||||
:titleStyle="{ color: '#FFF', fontSize: '32rpx' }"
|
||||
/>
|
||||
|
||||
<view class="header-user">
|
||||
<view>庄周晓梦</view>
|
||||
<view>15723623967</view>
|
||||
</view>
|
||||
|
||||
<view class="message-push">
|
||||
<uni-icons type="email" size="30" style="color: #9da7b0; margin-right: 36rpx"></uni-icons>
|
||||
短信推送
|
||||
</view>
|
||||
|
||||
<m-tabbar fixed fill :current="2" :tabbar="tabbar"></m-tabbar>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import TabbarConfig from '../util/tabbar'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
tabbar: TabbarConfig
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.header-user {
|
||||
padding: 60rpx 0 18rpx 60rpx;
|
||||
background-color: #f2f6f9;
|
||||
color: #003778;
|
||||
|
||||
view {
|
||||
padding: 8rpx 0;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.message-push {
|
||||
margin-top: 24rpx;
|
||||
padding-left: 60rpx;
|
||||
padding: 30rpx 0 30rpx 60rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
background-color: #f2f6f9;
|
||||
color: #9da7b0;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
</style>
|
||||
|
|
@ -16,6 +16,12 @@ export default {
|
|||
iconPath: '/static/realName/work.png',
|
||||
selectedIconPath: '/static/realName/workSelected.png',
|
||||
text: '工作台'
|
||||
},
|
||||
{
|
||||
pagePath: 'pages/workPlan/my/index',
|
||||
iconPath: '/static/realName/my.png',
|
||||
selectedIconPath: '/static/realName/mySelected.png',
|
||||
text: '我的'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue