0.0.1 • Published 5 years ago
hm-uniapp-head-portrait-card v0.0.1
作者: 毫末科技
邮箱: hxg@haomo-studio.com
预览
更多毫末科技的uni-app跨端模板,请见毫末科技uni-app跨端模板
技术支持
毫末科技将长期迭代本组件。需要技术支持,请进钉钉群(群号30423559):
概述
毫末uni-app毫末头像卡片组件。支持H5/小程序(微信、支付宝、头条、百度、QQ)/App;组件可自适应各种屏幕大小的手机。
使用
请使用HBuilderX导入组件。
在script中引用:
import HmHeadPortraitCard from '@/components/hm-head-portrait-card/index.vue'
export default {
components: { HmHeadPortraitCard }
}
在template中使用:
<template>
<div class="test-component">
<hm-head-portrait-card :options="options"></hm-head-portrait-card>
</div>
</template>
<script>
import HmHeadPortraitCard from '@/components/hm-components/hm-head-portrait-card/index.vue'
export default {
components: { HmHeadPortraitCard },
data() {
return {
options: {
actionBg:
'/static/hm-head-portrait-card/images/img_25814_0_0.png',
avator:
'/static/hm-head-portrait-card/images/img_25814_0_1.png',
name: '@李莉儿',
info: '旅行社代理人',
num: '1570',
num2: '2570',
num3: '230',
fans: '粉丝',
article: '文章',
attention: '关注'
}
};
},
methods: {
onClick: function(e) {
console.log('onClick');
}
}
};
</script>
<style>
</style>
属性说明
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
options | Object | - | 卡片属性 |
options对象各个属性说明如下:
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
actionBg | String | - | 头像背景图片 |
avator | String | - | 头像图片 |
name | String | - | 姓名 |
info | String | - | 个人介绍 |
article | String | - | 个人能力 |
num | String | - | 数量 |
事件说明
事件称名 | 事件说明 | 返回参数 |
---|---|---|
@click | 点击 Card 触发事件 | - |
更新日志
0.0.1(2020-03-07)
- 完成第一个版本
0.0.1
5 years ago