103 lines
2.4 KiB
Vue
103 lines
2.4 KiB
Vue
<template>
|
|
<view :loading="loading">
|
|
<view class="mine">
|
|
<view class="mine-nav" style="margin-top:20rpx;">
|
|
<view class="mine-nav-label">终端消息</view>
|
|
<switch color="#376cf3" />
|
|
</view>
|
|
<view class="mine-nav" style="border-bottom: none; ">
|
|
<view class="mine-nav-label">系统消息</view>
|
|
<switch color="#376cf3" />
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
loading: false
|
|
}
|
|
},
|
|
methods: {
|
|
init () {
|
|
},
|
|
jump (type) {
|
|
switch (type) {
|
|
case 'changePwd':
|
|
uni.navigateTo({
|
|
url: `/pages/user/changePwd`
|
|
})
|
|
break;
|
|
case 'changePhone':
|
|
uni.navigateTo({
|
|
url: `/pages/user/changePhone`
|
|
})
|
|
break;
|
|
default:
|
|
uni.navigateTo({
|
|
url: `/pages/mine/${type}`
|
|
})
|
|
break;
|
|
}
|
|
}
|
|
},
|
|
onLoad () {
|
|
this.init()
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.mine {
|
|
.mine-header {
|
|
padding: 200rpx 34rpx 34rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
background: $uni-theme-white;
|
|
margin-bottom: 20rpx;
|
|
box-shadow: 0 4rpx 8rpx #e7e7e74c;
|
|
|
|
.mine-header-head {
|
|
margin-right: 30rpx;
|
|
height: 128rpx;
|
|
width: 128rpx;
|
|
border-radius: $uni-theme-radius;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mine-header-name {
|
|
margin-right: 30rpx;
|
|
flex: 1;
|
|
font-size: 36rpx;
|
|
color: #111;
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
|
|
.mine-nav {
|
|
padding: 34rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
background: $uni-theme-white;
|
|
border-bottom: 1rpx solid #e8e8e8;
|
|
|
|
&-icon {
|
|
margin-right: 30rpx;
|
|
height: 44rpx;
|
|
width: 44rpx;
|
|
border-radius: $uni-theme-radius;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&-label {
|
|
margin-right: 30rpx;
|
|
flex: 1;
|
|
font-size: 28rpx;
|
|
color: #111;
|
|
}
|
|
}
|
|
}
|
|
</style> |