| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <template>
- <view class="">
- <public-module></public-module>
- <u-sticky h5-nav-height="0">
- <view class="headers dis a-c j-start">
- <u-icon name="arrow-left" color="#333" size="38" @click="back"></u-icon>
- <text style="margin: auto;">转入记录</text>
- </view>
- <view class="filterTime dis j-s a-c ">
- <view class=" dis a-c " @click="searchPopup">
- <text>{{pageQuery.startTime && pageQuery.endTime ? pageQuery.startTime + '-' + pageQuery.endTime : '时间筛选' }}</text>
- <text>▼</text>
- </view>
- <view class=" dis a-c " @click="statusFilterShow=true">
- <text>{{pageQuery.gradeName || "全部"}}</text>
- <text>▼</text>
- </view>
- </view>
- <view class="performance dis a-c j-c ">
- 共有 {{total.size}}条转入记录,累计转入{{total.totalAmount}}元
- </view>
- </u-sticky>
- <view class="content">
- <view class="item" v-for="(item, index) in transferRecords" @click="toReacors(item.id)" :key="index">
- <view class="info">
- <view class="name">{{ gradeText(item.grade) }}</view>
- <view class="time">{{ item.createTime }}</view>
- </view>
- <view class="amount">{{ item.amount }}</view>
- </view>
- </view>
- <!-- 筛选组件 -->
- <uni-Popup :show="statusFilterShow" @close='statusFilterShow=false' headerTitle="筛选状态" :statusList="tablist"
- contentType="status" @statusConfirm="statusFilterConfirm">
- </uni-Popup>
- <u-loadmore v-if="userlist.length!=0" :status="status" />
- <my-date-picker ref="datePicker" @confirmPickDate="confirmPickDate" />
- </view>
- </template>
- <script>
- import myDatePicker from '../components/todaydate-picker.vue';
- export default {
- components: {
- myDatePicker
- },
- data() {
- return {
- tablist: [],
- total: {},
- referrerInfo: {}, //个人信息
- userlist: [],
- pageQuery: {
- endTime: "",
- startTime: "",
- grade: "",
- gradeName: "",
- appStatus: '',
- pageNum: 1,
- pageSize: 10,
- },
- status: 'loadmore',
- totalPages: 0,
- parentStatus: "",
- transferRecords: [],
- statusFilterShow: false,
- quickOptions: [{
- label: "全部",
- value: null,
- },
- {
- label: "正常",
- value: "0",
- },
- {
- label: "已冻结",
- value: "1",
- },
- {
- label: "已失效",
- value: "2",
- }
- ],
- }
- },
- onReachBottom() {
- // if (this.pageQuery.pageNum >= this.totalPages) return;
- // this.status = 'loading';
- // this.pageQuery.pageNum = ++this.pageQuery.pageNum;
- // setTimeout(async () => {
- // let res = await this.$http.post('/newAppPartner/selectByIdList', this.pageQuery);
- // if (res.code == '200') {
- // this.userlist = [...this.userlist, ...res.data.list.records];
- // }
- // if (this.pageQuery.pageNum >= this.totalPages) this.status = 'nomore';
- // else this.status = 'loading';
- // }, 1000)
- },
- onLoad(options) {
- this.pageQuery.grade = options.grade;
- this.querydata();
- this.GradeListMap();
- },
- computed: {
- },
- methods: {
- async GradeListMap() {
- let res = await this.$http.get('/partner/getUserGradeListMap');
- if (res.code == 200) {
- this.tablist = res.data;
- this.tablist.map(val => {
- val.label = val.gradeName;
- return val;
- })
- console.log(this.tablist);
- }
- },
- gradeText(grade) {
- const gradeMap = {
- 1: '创始人',
- 2: '管理人',
- 3: '合伙人',
- 4: '工作室'
- }
- return gradeMap[grade] || ''
- },
- back() {
- uni.navigateBack({
- delta: 1, // 返回的页面数,如果是1表示返回上一页
- success: function() {}
- });
- },
- async querydata() {
- let res = await this.$http.post('/partnerExtractHistory/query', {
- ...this.pageQuery,
- })
- if (res.code == 200) {
- this.transferRecords = res.data.page.records;
- this.total = res.data.total;
- }
- },
- toReacors(id) {
- uni.navigateTo({
- url: "/pages/institutional/accountFreezeRecord?id=" + id + '&&grade=' + this.$route.query
- .grade + '&&type=2'
- })
- },
- //激活时间选择组件
- searchPopup() {
- this.$refs.datePicker.open()
- },
- //日期选择回调
- confirmPickDate(startdate, enddate) {
- this.pageQuery.startTime = startdate;
- this.pageQuery.endTime = enddate;
- },
- statusFilterConfirm(item) {
- console.log(item);
- this.pageQuery.grade = item.grade;
- this.pageQuery.gradeName = item.gradeName;
- this.querydata();
- this.statusFilterShow = false;
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .headers {
- width: 100%;
- z-index: 999999;
- padding: 30rpx;
- padding-top: 50px;
- background: linear-gradient(180deg, #D1EFFE 0%, #FFFFFF 100%);
- border-bottom: 1rpx solid #f2f2f2;
- text {
- font-size: 36rpx;
- font-weight: bold;
- color: #000;
- }
- .right {
- position: absolute;
- right: 30rpx;
- image {
- width: 28rpx;
- height: 28rpx;
- margin-right: 4rpx;
- }
- text {
- font-weight: 400;
- color: #000;
- font-size: 24rpx;
- }
- }
- }
- //业绩
- .performance {
- width: 100%;
- height: 60rpx;
- background: #EBF4FF;
- border-radius: 0rpx 0rpx 0rpx 0rpx;
- font-size: 30rpx;
- color: #2B67EF;
- }
- //时间筛选
- .filterTime {
- width: 100%;
- background: #fff;
- border-radius: 0rpx 0rpx 0rpx 0rpx;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- text:first-child {
- font-size: 26rpx;
- color: #333;
- }
- text:last-child {
- font-size: 19rpx;
- color: #666;
- margin-left: 4rpx;
- }
- }
- .content {
- margin: 20rpx 30rpx;
- box-sizing: border-box;
- background-color: #FFFFFF;
- border-radius: 10rpx 10rpx 10rpx 10rpx;
- padding: 30rpx;
- box-sizing: border-box;
- .item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 24rpx 0 30rpx;
- border-bottom: 1rpx solid #eee;
- .info {
- .name {
- font-size: 30rpx;
- color: #333;
- }
- .time {
- font-size: 20rpx;
- color: #999;
- }
- }
- .amount {
- font-size: 30rpx;
- color: #333;
- font-weight: 500;
- }
- }
- }
- </style>
|