123456789101112131415161718192021 |
- import React from 'react';
- import { View, Image } from '@tarojs/components';
- import smallbell from '@/assets/icons/smallbell.png';
- import Taro from '@tarojs/taro';
- import style from './notice.module.less';
-
- export default (props) => {
-
- const onClick = () => {
- Taro.navigateTo({
- url: `/pages/my/edit/index`
- })
- }
-
- return (
- <View className="wrapper-middle-box" onClick={onClick}>
- <Image className="wrapper-middle-img" src={smallbell} />
- <View className="wrapper-middle-text3">消息通知</View>
- </View>
- )
- }
|