index.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <view
  3. :class="'custom-class ' + classPrefix + ' ' + (isImageName ? 'van-icon--image' : classPrefix + '-' + name)"
  4. :style="'color: ' + color + ';font-size: ' + utils.addUnit(size) + ';' + customStyle"
  5. @tap="onClick"
  6. >
  7. <van-info v-if="info !== null || dot" :dot="dot" :info="info" custom-class="van-icon__info" />
  8. <image v-if="isImageName" :src="name" mode="aspectFit" class="van-icon__image" />
  9. </view>
  10. </template>
  11. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  12. <script>
  13. 'use strict';
  14. Object.defineProperty(exports, '__esModule', {
  15. value: true
  16. });
  17. var component_1 = require('../common/component');
  18. component_1.VantComponent({
  19. props: {
  20. dot: Boolean,
  21. info: null,
  22. size: null,
  23. color: String,
  24. customStyle: String,
  25. classPrefix: {
  26. type: String,
  27. value: 'van-icon'
  28. },
  29. name: {
  30. type: String,
  31. observer: function (val) {
  32. this.setData({
  33. isImageName: val.indexOf('/') !== -1
  34. });
  35. }
  36. }
  37. },
  38. methods: {
  39. onClick: function () {
  40. this.$emit('click');
  41. }
  42. }
  43. });
  44. </script>
  45. <style>
  46. @import './index.css';
  47. </style>