代码拉取完成,页面将自动刷新
'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;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。