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.
87 lines
1.9 KiB
87 lines
1.9 KiB
<template>
|
|
<view>
|
|
<image style="width: 100%; height: 247rpx;" src="@/static/bg (2).png"></image>
|
|
<view class="custom-navigation-bar">
|
|
<view class="left-button" @click="handleBack">
|
|
<uni-icons type="left" color="#fff" size="30"></uni-icons>
|
|
</view>
|
|
<view class="title">
|
|
{{ title }}
|
|
</view>
|
|
</view>
|
|
<view class="box">
|
|
<view class="">
|
|
消息通知标题
|
|
</view>
|
|
<view class="shijiam">
|
|
2024-03-27
|
|
</view>
|
|
<view class="">
|
|
尊敬的参赛选手您好! 这边看到您注册了账号,但是还没有进行报名成功,请尽快报名缴费。 参赛信息如有不清楚的地方可以咨询小程序客
|
|
尊敬的参赛选手您好! 这边看到您注册了账号,但是还没有进行报名成功,请尽快报名缴费。 参赛信息如有不清楚的地方可以咨询小程序客
|
|
尊敬的参赛选手您好! 这边看到您注册了账号,但是还没有进行报名成功,请尽快报名缴费。 参赛信息如有不清楚的地方可以咨询小程序客
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
title: '消息详情'
|
|
}
|
|
},
|
|
methods: {
|
|
handleBack() {
|
|
uni.navigateBack()
|
|
},
|
|
toPage() {
|
|
console.log(1111232)
|
|
uni.navigateTo({
|
|
url: "/pages/user/index"
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.box{
|
|
width: 702rpx;
|
|
background: #fff;
|
|
margin: 0 auto;
|
|
line-height: 40rpx;
|
|
margin-top: 20rpx;
|
|
padding: 20rpx;
|
|
.shijiam{
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 24rpx;
|
|
color: #999999;
|
|
}
|
|
}
|
|
.custom-navigation-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 220rpx;
|
|
/* #ifdef MP-WEIXIN */
|
|
margin-top: -230rpx;
|
|
/* #endif */
|
|
}
|
|
|
|
.left-button,
|
|
.right-button {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.title {
|
|
flex: 1;
|
|
// text-align: center;
|
|
color: #fff;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
}
|
|
</style> |