You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
819 B
44 lines
819 B
<template>
|
|
<view class="message-info">
|
|
<view>
|
|
<uni-nav-bar left-icon="back" @clickLeft="back" statusBar fixed title="">
|
|
<view class="message-info-title">消息通知</view>
|
|
<view slot="left"></view>
|
|
<view slot="right" class="message-info-right-title">一键全读</view>
|
|
</uni-nav-bar>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { back, go2 } from '@/utils/hook.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods:{
|
|
back
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.message-info{
|
|
.message-info-title {
|
|
width: 100%;
|
|
font-size: 36rpx;
|
|
color: #000000;
|
|
letter-spacing: 0;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
}
|
|
.message-info-right-title{
|
|
font-size: 28rpx;
|
|
color: #007AFF;
|
|
text-align: right;
|
|
line-height: 40rpx;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
</style>
|