| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="stat_single m-t20 m-lr30">
- <view class="page-box-bg-fff row-justify-sb center p-lr30 m-t20 r-30 p-tb25">
- <view class="row-c">
- <image class="wh-80 m-r16" src="/static/img/task/task-all.png" mode=""></image>
- <view class="row-c p-tb20">
- <text class="size-40 sys-weight-600 text-color-E83">78459.80</text>
- <text class="size-24 text-color-666 m-l10">万</text>
- </view>
- </view>
- <text class="num r-10 size-24 text-color-666">放款50笔</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'head_filter',
- props: {
- is_fixed: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- current: 0,
- tabsList: [{
- name: '汇总',
- dot_color: 'red',
- disabled: false
- }, {
- name: '银行',
- dot_color: 'yellow',
- disabled: false
- }],
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .tabs {
- // width: calc(100% - 60rpx);
- }
- </style>
|