123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <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="timeDropdownFilter">
- <text>{{pageQuery.startTime && pageQuery.endTime ? pageQuery.startTime + '-' + pageQuery.endTime : '时间筛选' }}</text>
- <text>▼</text>
- </view>
- <view class=" dis a-c " @click="statusFilterShow=true">
- <text>321321</text>
- <text>▼</text>
- </view>
- </view>
- <view class="performance dis a-c j-c ">
- 共有 5笔订单,保费5元,佣金5元
- </view>
- </u-sticky>
- <view class="content">
- <view class="item">
- </view>
- </view>
- <u-loadmore v-if="userlist.length!=0" :status="status" />
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- referrerInfo: {}, //个人信息
- userlist: [],
- pageQuery: {
- id: "",
- endTime: "",
- startTime: "",
- pageNum: 1,
- pageSize: 10,
- },
- status: 'loadmore',
- totalPages: 0,
- parentStatus: "",
- }
- },
- 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.id = options.id;
- this.querydata();
- },
- methods: {
- back() {
- uni.navigateBack({
- delta: 1, // 返回的页面数,如果是1表示返回上一页
- success: function() {}
- });
- },
- async querydata() {
- },
- }
- }
- </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;
- }
- </style>
|