1 Star 0 Fork 0

毫末科技/hm-taro-users-card

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.jsx 1014 Bytes
一键复制 编辑 原始数据 按行查看 历史
taoning 提交于 2020-03-13 17:43 . init
'use strict';
import Taro, { Component } from '@tarojs/taro';
import { View, Text, Image } from '@tarojs/components';
import styles from './style.js';
import usersDetailImage from './images/img_24405_0_0.png'
class HmUsersCard extends Component {
constructor(props) {
super(props);
let defaultState = {
count: '14.059',
users: '用户数量',
usersDetailImage
};
this.state = Object.assign(defaultState, JSON.parse(JSON.stringify(props)));
}
render() {
return (
<View style={styles.hmUsersCard}>
<View style={styles.container}>
<View style={styles.usersDetail}>
<View style={styles.usersDetailWrap}>
<Text style={styles.count}>{this.state.count}</Text>
<Text style={styles.users}>{this.state.users}</Text>
</View>
</View>
<Image style={styles.usersDetailImage} src={this.state.usersDetailImage} />
</View>
</View>
);
}
}
export default HmUsersCard;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/haomo/hm-taro-users-card.git
[email protected]:haomo/hm-taro-users-card.git
haomo
hm-taro-users-card
hm-taro-users-card
master

搜索帮助