123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <template>
- <view class="page">
- <view class="top">消息通知</view>
- <view class="box">
- <view class="item u-flex u-row-between" @click="totongzhi(1)">
- <view class="u-flex">
- <image style="width: 56rpx;height: 56rpx;" src="" mode=""></image>
- <text class="font">订单转换通知</text>
- </view>
- <view class="u-flex">
- <u-badge :count='1' :offset='[48,40]' :absolute='true' type="error"></u-badge>
- <u-icon name="arrow-right"></u-icon>
- </view>
- </view>
- <view class="item u-flex u-row-between" @click="totongzhi(2)">
- <view class="u-flex">
- <image style="width: 56rpx;height: 56rpx;" src="" mode=""></image>
- <text class="font">直播预告通知</text>
- </view>
- <view class="u-flex">
- <u-badge :count='1' :offset='[48,40]' :absolute='true' type="error"></u-badge>
- <u-icon name="arrow-right"></u-icon>
- </view>
- </view>
- <view class="item u-flex u-row-between" @click="totongzhi(3)">
- <view class="u-flex">
- <image style="width: 56rpx;height: 56rpx;" src="" mode=""></image>
- <text class="font">等级通知</text>
- </view>
- <view class="u-flex">
- <u-badge :count='1' :offset='[48,40]' :absolute='true' type="error"></u-badge>
- <u-icon name="arrow-right"></u-icon>
- </view>
- </view>
- <view class="item u-flex u-row-between" style="border: 1rpx solid rgba(0, 0, 0, 0);" @click="totongzhi(4)">
- <view class="u-flex">
- <image style="width: 56rpx;height: 56rpx;" src="" mode=""></image>
- <text class="font">积分通知</text>
- </view>
- <view class="u-flex">
- <u-badge :count='1' :offset='[48,40]' :absolute='true' type="error"></u-badge>
- <u-icon name="arrow-right"></u-icon>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- methods:{
- totongzhi(){
- uni.navigateTo({
- url:'/pageA/tongzhi'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .font {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 600;
- line-height: 24rpx;
- color: #323337;
- margin-left: 22rpx;
- }
- .item {
- height: 132rpx;
- position: relative;
- border-bottom: 1px solid #C7C7C7;
- }
- .box {
- width: 702rpx;
- // height: 498rpx;
- background: rgba(255, 255, 255, 1);
- border-radius: 14rpx;
- padding: 0 16rpx 0 26rpx;
- }
- .page {
- width: 750rpx;
- height: 100vh;
- background: rgba(246, 245, 250, 1);
- padding: 0 24rpx;
- border: 1rpx solid rgba(0, 0, 0, 0);
- }
- .top {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 24rpx;
- color: #808080;
- margin: 22rpx 0;
- }
- </style>
|