| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <template>
- <view class="total-page page_env page-box">
- <Nav :title="'贷后管理'" :genre="1" :back="false" :fixedHeight="108"></Nav>
- <view class="task-tabs" :style="{top:`${$tools.topHeight()}px`}">
- <Search :placeholder="'贷款人姓名或电话'"></Search>
- <view class="page-box-bg-fff m-lr20 r-20">
- <z-tabs ref="tabs" :list="tabsList" :active-style="{color:'#10B261',fontWeight:'bold',fontSize:'30rpx'}"
- :bar-style="{background:'#10B261'}" :inactive-style="{fontWeight:'bold',fontSize:'28rpx'}"
- :current="current" :bar-animate-mode="'worm'" @change="tabsChange" />
- </view>
- </view>
- <EnScroll ref="scroll" :navHeight="110" is_tabHeight @onRefresh="onRefresh" @onScrollBottom="onScrollBottom">
- <TaskItem :type="3" is_bottom></TaskItem>
- </EnScroll>
- <Tab :tab-index="2"></Tab>
- </view>
- </template>
- <script>
- // 任务列表
- import TaskItem from "@/common/task/task-item.vue";
- export default {
- components: {
- TaskItem
- },
- data() {
- return {
- current: 0,
- tabsList: [{
- name: '全部',
- disabled: false
- }, {
- name: '已完成(6)',
- dot_color: 'red',
- is_dot: true,
- disabled: false
- }, {
- name: '未完成(6)',
- dot_color: '#000',
- is_dot: true,
- disabled: false
- }],
- }
- },
- watch: {
- },
- methods: {
- tabsChange(index) {
- this.current = index;
- },
- // 下拉刷新
- onRefresh() {
- uni.showLoading({
- title: '数据加载中'
- })
- setTimeout(() => {
- uni.showToast({
- title: '加载完成',
- icon: 'none'
- })
- this.$refs.scroll.onEndPulling()
- }, 1000)
- console.log("下拉刷新");
- },
- // 滚动到底部
- onScrollBottom() {
- uni.showLoading({
- title: '数据加载中'
- })
- setTimeout(() => {
- uni.showToast({
- title: '加载完成',
- icon: 'none'
- })
- }, 1000)
- console.log("到底部了");
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- // .page-box{
- // height: 100vh;
- // background-image: url("https://wealfavor-1257406827.cos.ap-beijing.myqcloud.com/new-xcx/index/index-bg.png?imageMogr2/quality/20");
- // background-repeat: no-repeat;
- // background-size: 100% auto;
- // display: flex;
- // flex-direction: column;
- // .top-data{
- // flex: 1;
- // overflow: hidden;
- // .top-row{
- // height: 680rpx;
- // }
- // }
- // .bottom-data{
- // }
- // }
- </style>
|