Blame view

node_modules/mpvue-zanui/src/pages/zan_icon/index.vue 2.7 KB
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  <template>
    <div class="container">
  
      <div class="doc-title zan-hairline--bottom">ICON</div>
  
      <div class="zan-panel">
        <div v-for="icon in icons" :key="icon" class="icon-wrap">
          <div class="zan-icon" :class="'zan-icon-' + icon"  style="color: #ff4343;"></div>
          <div class="icon-classname">zan-icon-{{ icon }}</div>
        </div>
      </div>
    </div>
  
  
  </template>
  
  <script>
    export default {
      data () {
        return {
          icons: [
            'close',
            'location',
            'clock',
            'gold-coin',
            'chat',
            'exchange',
            'upgrade',
            'edit',
            'contact',
            'passed',
            'points',
            'delete',
            'records',
            'logistics',
            'check',
            'checked',
            'gift',
            'like-o',
            'like',
            'qr',
            'qr-invalid',
            'shop',
            'photograph',
            'add',
            'add2',
            'add-o',
            'photo',
            'cart',
            'arrow',
            'search',
            'clear',
            'success',
            'fail',
            'wechat',
            'alipay',
            'password-view',
            'wap-nav',
            'password-not-view',
            'wap-home',
            'ecard-pay',
            'balance-pay',
            'peer-pay',
            'credit-pay',
            'debit-pay',
            'other-pay',
            'shopping-cart',
            'browsing-history',
            'goods-collect',
            'shop-collect',
            'receive-gift',
            'send-gift',
            'setting',
            'coupon',
            'free-postage',
            'discount',
            'birthday-privilege',
            'member-day-privilege',
            'balance-details',
            'cash-back-record',
            'points-mall',
            'exchange-record',
            'pending-payment',
            'pending-orders',
            'pending-deliver',
            'pending-evaluate',
            'cash-on-deliver',
            'gift-card-pay',
            'underway',
            'point-gift',
            'after-sale',
            'edit-data',
            'question',
            'description',
            'card',
            'gift-card',
            'completed',
            'value-card',
            'certificate',
            'tosend',
            'sign',
            'home',
            'phone',
            'play',
            'pause',
            'stop',
            'hot',
            'new',
            'new-arrival',
            'hot-sale'
          ]
        }
      },
      methods: {
      }
    }
  </script>
  <style  scoped>
    .icon-wrap {
      width: 33.33333%;
      height: 100px;
      float: left;
      text-align: center;
    }
    .icon-classname {
      color: #999;
      font-size: 10px;
    }
    .zan-icon {
      font-size: 24px;
      margin: 20px;
    }
  </style>