123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499 |
- <template>
- <view class="">
- <!-- 全局 loding -->
- <public-module></public-module>
- <!-- 头部 -->
- <view class="headers dis a-c j-start">
- <u-icon name="arrow-left" color="#333" size="38" @tap="back"></u-icon>
- <text style="margin: auto;">我的收益</text>
- </view>
- <view class="homeBackground"></view>
- <!-- 业绩 -->
- <view class="filterTime dis j-end a-c ">
- <view class=" dis a-c " @click="timeDropdownFilter">
- <text>时间筛选</text>
- <text>▼</text>
- </view>
- </view>
- <view class="performance dis a-c j-c ">
- 共有 {{totalCount.numberOrders}}笔订单,保费{{totalCount.totalPremium}}元,佣金{{totalCount.commission}}元
- </view>
- <view class="body p-2" style="padding-top: 340rpx;">
- <view class="card mb-2" v-for="(item,index) in incomeList" :key="index"
- @click="earningsDetail(item.ordersNo)">
- <view class="card-title dis a-c j-s mb-2">
- <view class="dis a-c ">
- <view class="avatar">
- <image src="/static/image/my/wuxingb.png" mode=""></image>
- </view>
- <text class="name ml-1">{{item.carId}}</text>
- </view>
- <text>{{item.issuanceTime}} 出单</text>
- </view>
- <view class="card-data dis a-c j-s ">
- <view class="view dis f-c a-c ">
- <text>{{item.agent}}</text>
- <text>代理人</text>
- </view>
- <view class="view dis f-c a-c ">
- <text>{{item.premium}}</text>
- <text>保费</text>
- </view>
- <view class="view dis f-c a-c ">
- <text>{{item.commission}}</text>
- <text>我的佣金</text>
- </view>
- </view>
- </view>
- </view>
- <u-popup v-model="ShowModal" mode="bottom" border-radius="15">
- <view class="popup-code">
- <text @click="ShowModalCodeFun(level)">合伙人</text>
- <text @click="ShowModalCodeworkFun">工作室</text>
- </view>
- </u-popup>
- <u-popup v-model="ShowModalCode" mode="bottom" border-radius="15">
- <view class="ShowModalCode-style ">
- <text>{{chineseNumbers[relativeLeavl]}}级合伙人招募码</text>
- <view class=" ShowModalCode-con">
- <view>扫码加入</view>
- <image :src="partnerImg" mode="widthFix" lazy-load style="width: 150px;"></image>
- </view>
- </view>
- </u-popup>
- <u-popup mode="center" ref="alertDialog" type="dialog">
- <uni-popup-dialog type="warn" cancelText="取消" confirmText="确定" title=" " :content="dialogContent"
- @confirm="dialogConfirm" @close="dialogClose"></uni-popup-dialog>
- </u-popup>
- <my-date-picker ref="datePicker" @confirmPickDate="confirmPickDate" />
- </view>
- </template>
- <script>
- import myDatePicker from '../components/date-picker.vue';
- import seach from '../components/seach.vue';
- import QR from "@/common/wxqrcode.js"
- import {
- mapState,
- mapMutations
- } from "vuex"
- export default {
- components: {
- myDatePicker,
- seach
- },
- computed: {
- ...mapState(['userInfo', "userCheckInfo", ]),
- },
- data() {
- return {
- totalCount: {}, //统计
- incomeList: [], //列表
- //tab选项
- list: [{
- name: '我是创始人'
- }, {
- name: '我是管理人'
- },
- {
- name: '我是合伙人'
- },
- {
- name: '我是工作室'
- }
- ],
- current: 0,
- dialogContent: '',
- ShowalertDialog: false,
- relativeLeavl: null,
- ShowModal: false,
- ShowModalCode: false,
- ShowModalCode1: false,
- ShowModalCodebusiness: false,
- chineseNumbers: ['零', '一', '二', '三', '四', '五', '六', '七', '八', '九'],
- teamTabIndex: 0,
- directLsit: [{
- partnerNumber: 1
- },
- {
- partnerNumber: 2
- }
- ],
- source: 0,
- totalPages: 0,
- totalSize: 0,
- status: 'loadmore',
- pageRequest: { //查询的默认条件
- pageNum: 1,
- pageSize: 20,
- userName: ''
- },
- partnerImg: '',
- workImg: '',
- directLsitOne: {},
- directLsitTwo: {},
- directLsitThree: {},
- directLsitFour: {},
- userLevel: "",
- deptSource: 1,
- startTime: "", //时间筛选 开始
- endTime: "", //时间筛选 结束
- }
- },
- async onLoad(params) {
- this.queryData()
- this.userLevel = this.userInfo.sysUser.level
- },
- methods: {
- //下拉筛选
- timeDropdownFilter() {
- this.$refs.datePicker.open()
- },
- //日期选择事件
- confirmPickDate(startdate, enddate) {
- this.startTime = startdate;
- this.endTime = enddate;
- this.queryData();
- },
- change(index) {
- this.current = index;
- },
- dialogClose() {
- this.$refs.alertDialog.close()
- },
- styleChange(e) {
- this.deptSource = e.detail.value
- },
- dialogConfirm() {
- this.ShowModalCode = true
- this.$refs.alertDialog.close()
- this.partnerImg = QR.createQrCodeImg(this.$base.h5BaseUrl + "/#/pages/index/applypartner?level=" + this
- .level + '&userId=' + this.userInfo.sysUser.userId, {
- size: parseInt(200) //二维码大小
- })
- },
- ShowModalCodeFun(level, relativeLeavl) {
- // 绝对等级:level 相对等级:relativeLeavl
- this.level = level
- this.relativeLeavl = relativeLeavl
- // this.ShowalertDialog=true
- this.dialogContent = `是否招募${this.chineseNumbers[relativeLeavl]}级合伙人?`
- this.$refs.alertDialog.open()
- },
- ShowModalCodeSumbit() {
- this.ShowModalCode1 = true
- this.workImg = QR.createQrCodeImg(this.$base.h5BaseUrl + "/#/pages/index/applystudio?deptSource=" + this
- .deptSource + '&userId=' + this.userInfo.sysUser.userId, {
- size: parseInt(200) //二维码大小
- })
- },
- ShowModalCodeworkFun() {
- this.ShowModalCodebusiness = true
- this.deptSource = 1
- },
- // partnersAndStudios(level){
- // this.level=level
- // this.ShowModal = true
- // },
- // recruitment(level) {
- // this.level = level
- // this.ShowModalCodeFun(level)
- // },
- back() {
- uni.navigateBack({
- delta: 1, // 返回的页面数,如果是1表示返回上一页
- success: function() {}
- });
- },
- backHome() {
- uni.switchTab({
- url: "/pages/index/index"
- })
- },
- earningsDetail(ordersNo) {
- uni.navigateTo({
- url: "/pages/my/commissionDetail?ordersNo=" + ordersNo,
- })
- },
- closeInstitution(item, level) {
- if (item.leaderIds.length > 0) {
- item.level = level
- uni.navigateTo({
- url: "/pages/institutional/institutionalTeam?key=" + encodeURIComponent(JSON.stringify(
- item))
- })
- }
- },
- // onReachBottom() {
- // if (this.pageRequest.pageNum >= this.totalPages) return;
- // this.status = 'loading';
- // this.pageRequest.pageNum = ++this.pageRequest.pageNum;
- // setTimeout(async () => {
- // let res = await this.$http.post('/sysPartner/querySysPartnerAPPPage', {
- // ...this.pageRequest,
- // source:this.source
- // });
- // if (res.code == '200') {
- // this.totalSize = res.data.totalSize;
- // this.directLsit = [...this.directLsit, ...res.data.content];
- // }
- // if (this.pageRequest.pageNum >= this.totalPages) this.status = 'nomore';
- // else this.status = 'loading';
- // }, 1000)
- // },
- async queryData(data) {
- let res = await this.$http.get('/newAppPartner/myPerformance?grade=' + this.userInfo.sysUser.grade +
- '&startTime=' + this.startTime + '&endTime=' + this.endTime);
- if (res.code == '200') {
- this.totalCount = res.data.total; //个人收益统计
- this.incomeList = res.data.data; //收益列表
- }
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .headers {
- position: fixed;
- top: 0;
- left: 0;
- height: auto;
- width: 100%;
- z-index: 999999;
- padding: 30rpx;
- padding-top: 50px;
- text {
- font-size: 36rpx;
- font-weight: bold;
- color: #000;
- }
- .headers-activeTab {
- width: 80%;
- }
- .right {
- position: absolute;
- right: 30rpx;
- image {
- width: 28rpx;
- height: 28rpx;
- margin-right: 4rpx;
- }
- text {
- font-weight: 400;
- color: #000;
- font-size: 24rpx;
- }
- }
- }
- //头部背景
- .homeBackground {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 999;
- width: 100%;
- height: 176rpx;
- background: linear-gradient(180deg, #D1EFFE 0%, #FFFFFF 100%);
- border-bottom: 1rpx solid #f2f2f2;
- }
- //时间筛选
- .filterTime {
- position: fixed;
- top: 176rpx;
- left: 0;
- width: 100%;
- z-index: 999;
- background: #fff;
- border-radius: 0rpx 0rpx 0rpx 0rpx;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- text:first-child {
- font-size: 26 rpx;
- color: #333;
- }
- text:last-child {
- font-size: 19rpx;
- color: #666;
- margin-left: 4rpx;
- }
- }
- //业绩
- .performance {
- position: fixed;
- top: 266rpx;
- left: 0;
- z-index: 999;
- width: 100%;
- height: 60rpx;
- background: #EBF4FF;
- border-radius: 0rpx 0rpx 0rpx 0rpx;
- font-size: 30rpx;
- color: #2B67EF;
- }
- .partner-head {
- background: #FFFFFF;
- color: #333333;
- font-size: 14px;
- i {
- margin-left: 2px;
- display: inline-block;
- width: 0;
- height: 0;
- border: 4px solid;
- border-color: #666666;
- border-bottom: 4px solid transparent;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
- }
- }
- .sum-insurance {
- padding: 10px 0;
- view {
- text-align: center;
- width: 33.33%;
- border-right: 1px solid #EEEEEE;
- text {
- display: block;
- }
- text:first-child {
- font-weight: 600;
- font-size: 18px;
- color: #333333;
- }
- text:last-child {
- font-size: 10px;
- color: #999999;
- }
- }
- }
- //列表数据
- .card {
- background: #FFFFFF;
- border-radius: 10rpx;
- background-image: url("/static/card.png");
- background-size: 100% 100%;
- border-top: 1px solid;
- border-image: linear-gradient(270deg, rgba(45, 109, 255, 0), rgba(45, 109, 255, 1), rgba(45, 109, 255, 0)) 1 1;
- padding: 20rpx 30rpx 30rpx;
- .card-title {
- .avatar {
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- image {
- width: 100%;
- height: 100%;
- }
- }
- >text {
- font-size: 24rpx;
- color: #666;
- }
- .name {
- font-size: 30rpx;
- color: #333;
- font-weight: bold;
- }
- }
- .card-data {
- .view {
- width: 33.33%;
- text:first-child {
- font-size: 30rpx;
- color: #333;
- font-weight: bold;
- }
- text:last-child {
- font-size: 24rpx;
- color: #999;
- }
- }
- .view:nth-child(2) {
- border-left: 1rpx solid #eee;
- border-right: 1rpx solid #eee;
- }
- }
- }
- .popup-code {
- text {
- display: block;
- border-bottom: 1px solid #EEEEEE;
- height: 50px;
- line-height: 50px;
- text-align: center;
- font-size: 16px;
- color: #666666;
- }
- }
- .ShowModalCode-style {
- text:first-of-type {
- display: block;
- font-weight: 600;
- font-size: 16px;
- color: #333333;
- border: 1px solid #EEEEEE;
- padding: 15px;
- text-align: center;
- }
- }
- .popup-code {
- text {
- display: block;
- border-bottom: 1px solid #EEEEEE;
- height: 50px;
- line-height: 50px;
- text-align: center;
- font-size: 16px;
- color: #666666;
- }
- }
- .ShowModalCode-con {
- padding: 30px;
- text-align: center;
- image {
- margin: 0 auto;
- margin-top: 15px;
- }
- }
- </style>
|