| | |
| | | :class="'at-col-' + valueFlex[index] + ' ' + (!!item.onClick?'on-clickable':'')" |
| | | @tap="evt => item.onClick && item.onClick(item)" |
| | | > |
| | | <view class="c-numerical-value"> |
| | | <text :class="item.textType?('m-text-'+item.textType):''"> |
| | | {{item.integer}} |
| | | <text class="c-numerical-more">»</text> |
| | | </text> |
| | | <view |
| | | class="c-numerical-value" |
| | | :class="item.textType?('m-text-'+item.textType):''" |
| | | > |
| | | <text class="c-numerical-interger">{{item.integer}}</text> |
| | | <text |
| | | class="c-numerical-decimal" |
| | | :class="item.integer.length>6?'small':''" |
| | | :class="item.integer.length>4?'small':''" |
| | | v-if="item.decimal.length>0" |
| | | >.{{item.decimal}}</text> |
| | | <text class="c-numerical-more">»</text> |
| | | </view> |
| | | <view class="c-numerical-title">{{item.title}}</view> |
| | | </view> |