hm-uniapp-balance-card

毫末uni-app毫末余额卡片组件。支持H5/小程序(微信、支付宝、头条、百度、QQ)/App;组件可自适应各种屏幕大小的手机。

Usage no npm install needed!

<script type="module">
  import hmUniappBalanceCard from 'https://cdn.skypack.dev/hm-uniapp-balance-card';
</script>

README

官网: https://haomo-tech.com

作者: 毫末科技

邮箱: hxg@haomo-studio.com

预览

预览图片

在线效果预览

更多毫末科技的uni-app跨端模板,请见毫末科技uni-app跨端模板

技术支持

毫末科技将长期迭代本组件。需要技术支持,请进钉钉群(群号30423559):

概述

毫末uni-app毫末余额卡片组件。支持H5/小程序(微信、支付宝、头条、百度、QQ)/App;组件可自适应各种屏幕大小的手机。

使用

请使用HBuilderX导入组件。

在script中引用:

import HmBalanceCard from '@/components/hm-balance-card/index.vue'
export default {
    components: { HmBalanceCard }
}

在template中使用:

<template>
  <div class="test-component">
    <hm-balance-card :options="options"></hm-balance-card>
  </div>
</template>
<script>
import HmBalanceCard from '@/components/hm-components/hm-balance-card/index.vue'

export default {
  components: { HmBalanceCard },
  data() {
    return {
      options: {
          layer:
            '/static/hm-balance-card/images/img_25821_0_0.png',
          info: '信用卡余额',
          zhanghaoguanli:
            '/static/hm-balance-card/images/img_25821_0_2.png',
          bd: '¥12929.05',
          main: '5326 5149 4497 1577',
          date: '日期',
          word: '12/24',
          cvv: 'CVV',
          num: '235',
          largeIcon:
            '/static/hm-balance-card/images/img_25821_0_1.png'
        }
    };
  },
  methods: {
    onClick: function(e) {
      console.log('onClick');
    }
  }
};
</script>
<style>
</style>

属性说明

属性名 类型 默认值 说明
options Object - 卡片属性

options对象各个属性说明如下:

属性名 类型 默认值 说明
layer String - 图片
info String - 卡类型
zhanghaoguanli String - 状态图片
bd String - 余额
main String - 卡号
word String - 日期

事件说明

事件称名 事件说明 返回参数
@click 点击 Card 触发事件 -

更新日志

0.0.1(2020-03-28)

  • 完成第一个版本