123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570 |
- <template>
- <view>
- <!-- 公共组件-每个页面必须引入 -->
- <public-module></public-module>
- <!-- 头部信息Start -->
- <view class="headers " :style="headerStyle">
- <view class="dis a-c j-c">
- <text>我的</text>
- <image @click="tool" src="/static/image/my/Frame.png" mode="">
- </image>
- </view>
- </view>
- <view class="Personnel" :style="{ 'background-image': 'url(' + backImage + ')' }">
- <!-- <view class="Personnel-title">
- 职位/职级
- </view> -->
- <view class="dis a-c Personnel-info" >
- <view class="Personnel-img">
- <image :src="avatar" class="avatar" mode=""></image>
- <image :src="backLogo" mode=""></image>
- </view>
- <view class="full-name" >
- <text>{{userInfo.sysUser.userName}}</text>
- <!-- <text >司龄 1年</text> -->
- </view>
- <text style="line-height: 17px;">{{userInfo.sysUser.deptName}}</text>
- <view class=" dis j-s digit">
- <view class=" dis a-c">
- <image src="/static/icon/电话.png" mode=""></image>
- <text>{{userInfo.sysUser.mobile}}</text>
- </view>
- <view v-if="userInfo.sysUser.weChat" class=" dis" style="padding-left: 20%;">
- <image src="/static/icon/微信.png" mode=""></image>
- <text>{{userInfo.sysUser.weChat}}</text>
- </view>
- </view>
- </view>
- <view class="withdrawal-box">
- <view class="dis a-c j-c withdrawal-title">
- <text >可提现总金额</text>
- <text @tap="accountTool('/pages/wallet/bankCard')">银行卡</text>
- </view>
- <view class="dis a-s j-c withdrawal-sum">
- <text>¥</text>
- <text>{{getApplication.cashFee || 0}} </text>
- </view>
- <view class="withdrawal-income dis">
- <view style="border-right: 1px solid #C5E7FF;">
- <text @click="incomeClick">佣金总收入金额
- <image style="display: inline-block; width: 9px;height:9px;vertical-align: -1px;" src="/static/icon/向右.png" mode=""></image>
- </text>
- <text>¥{{getApplication.extractFee || 0}} </text>
- </view>
- <view>
- <text>已经提现金额</text>
- <text>¥{{getApplication.historyFee || 0}}</text>
- </view>
- </view>
- <view class="withdrawal-fun" @click="toWithdraw">提现</view>
- </view>
- </view>
- <view class=" dis a-c j-s" style="margin: 0px 16px;">
- <view class="withdrawal-record">
- <i></i>
- <text>提现记录</text>
- </view>
- <view class="search" @click="searchPopup">
- <text>自定义时间<i></i></text>
- </view>
- </view>
- <view class="withdrawal-flow" >
- <!-- <view style="border-bottom: 1px solid #EEEEEE;padding: 15px 0;
- margin: 0 15px;" v-for="val in withdrawalData" :key="val"> -->
- <view class="withdrawal-card" v-for="val in withdrawalData" :key="val" @click="viewWithdrawal(val)">
- <view class="dis j-s" >
- <view>
- <view style="line-height: 18px;" >提现</view>
- <text style="font-size: 10px;color: #999999;">{{val.createTime}}</text>
- </view>
- <view class="dis a-c">
- <view style="text-align: right;">
- <view style="line-height: 18px;">-{{val.cashFee}}</view>
- <text class="withdrawal-status" v-if="val.status=='0'" style="background: #EAF0FF;color: #2D6DFF;">提现中</text>
- <text class="withdrawal-status" v-if="val.status=='1'" style="background: #E3FBE7;color: #18B63B;">已提现</text>
- <text class="withdrawal-status" v-if="val.status=='2'" style="background: #FFECEC ;color: #F74141;">提现失败</text>
- </view>
- <image src="/static/icon/you.png" mode=""></image>
- </view>
- </view>
- </view>
- </view>
- <my-date-picker ref="datePicker" @confirmPickDate="confirmPickDate" />
-
- </view>
- </template>
- <script>
- import myDatePicker from '../components/date-picker.vue';
- import {
- mapState,
- mapMutations
- } from "vuex"
- export default {
- components: {
- myDatePicker
- },
- data() {
- return {
- info: ["", ""],
- current: 0,
- mode: 'default',
- headerStyle: {
- backgroundColor: '',
- backgroundImage: '',
- backgroundSize: '',
- backgroundPosition: '',
- boxShadow: ''
- // 其他样式属性...
- },
- showBackground: false,
- prevScrollTop: 0,
- avatar: "/static/image/my/无性别.png",
- getApplication:{},
- withdrawalData:[],
- backImage:'',
- backLogo:'',
-
- }
- },
- computed: {
- ...mapState(['userInfo', "userCheckInfo", ]),
- },
-
- async onShow() {
- console.log(this.userInfo,222222)
- this.backImage= this.userInfo.sysUser.sysPartnerConfig.image
- this.backLogo=this.userInfo.sysUser.sysPartnerConfig.logo
- let res = await this.$http.get('/APPPartner/getFee');
- if (res.code == 200) {
- this.getApplication = res.data;
- }
- if (this.userInfo.sysUser.sex=='F') {
- this.avatar = "/static/image/my/女.png"
- }
- if (this.userInfo.sysUser.sex=='M') {
- this.avatar = "/static/image/my/男.png"
- }
-
- this.WithdrawalqueryData()
- // if (this.userInfo.sysUser.headSculpture) {
- // this.avatar = this.$base.baseUrl + this.userInfo.sysUser.headSculpture;
- // } else {
- // this.avatar = "/static/image/my/avatar1.png"
- // }
- },
-
- onPageScroll(e) {
- this.handleScroll(e);
- },
- mounted() {
- uni.pageScrollTo({
- scrollTop: 0,
- duration: 0
- });
- uni.$on('scroll', this.handleScroll);
- },
- destroyed() {
- uni.$off('scroll', this.handleScroll);
- },
- methods: {
- ...mapMutations(['setUserModules', 'setOrderType', 'setOrderStage']),
- searchPopup() {
- this.$refs.datePicker.open()
- },
- confirmPickDate(dateStr,dateStr1){
- if(dateStr){
- dateStr+=' 00:00:01'
- }
- if(dateStr1){
- dateStr1+=' 23:59:59'
- }
- this.WithdrawalqueryData(dateStr ,dateStr1)
- },
- viewWithdrawal(item){
- uni.navigateTo({
- url: "/pages/my/withdrawalDetail?key="+encodeURIComponent(JSON.stringify(item))
- })
- },
- async toWithdraw() {
- let res = await this.$http.post('/userBank/getUserBankList', {
- auditStatus: "1",
- delFlag: '0'
- });
- if (res.data.length) {
- this.navigate({
- url: `/pages/wallet/withdraw?amount=${this.getApplication.cashFee}`,
- }, "navigateTo", true)
- } else {
- uni.showToast({
- title: '暂无审核通过的银行卡,不可提现',
- duration: 3000,
- icon: "none"
- });
-
- }
- },
- async accountTool(path) {
-
- if (path) {
- if (path == '/pages/wallet/bankCard') {
- let res = await this.$http.post('/userBank/getUserBankList', {
- auditStatus: '',
- });
- if (!res.data.length) {
- this.navigate({
- url: '/pages/wallet/bindBank',
- complete: () => {
- setTimeout(() => {
- uni.showToast({
- title: '请先绑定银行卡',
- duration: 3000,
- icon: "none"
- });
- }, 500);
-
- }
- }, "navigateTo", true)
- } else {
- this.navigate({
- url: path,
- }, "navigateTo", true)
- }
- } else {
- this.navigate({
- url: path,
- }, "navigateTo", true)
- }
- } else {
- uni.showToast({
- title: '功能待开发...',
- icon: "none"
- });
- }
- },
- async WithdrawalqueryData(beginTime,endTime) {
- let params = {
- "endTime": endTime || '',
- "beginTime": beginTime || '',
- }
- let res = await this.$http.post('/sysAgencyFeeApproval/queryOperateInfo', params);
- if (res.code == '200') {
- this.withdrawalData=res.data
- }
- },
- handleScroll(e) {
- const scrollTop = e.scrollTop;
- if (scrollTop > this.prevScrollTop) {
- // 向下滚动
- this.showBackground = true; // 显示背景图
- } else if (scrollTop < 50) {
- // 在顶部附近,隐藏背景图
- this.showBackground = false;
- } else {
- // 向上滚动
- this.showBackground = true; // 显示背景图
- }
- this.headerStyle.backgroundColor = this.showBackground ? '#fff' : 'transparent';
- this.headerStyle.backgroundImage = this.showBackground ? 'url("/static/image/my/背景.png")' : '';
- this.headerStyle.backgroundSize = this.showBackground ? 'cover' : '';
- // this.headerStyle.backgroundPosition = this.showBackground ? 'center' : '';
- this.prevScrollTop = scrollTop;
- },
- tool() {
- uni.navigateTo({
- url: "/pages/set/set"
- })
- },
- incomeClick() {
- uni.navigateTo({
- url: "/pages/my/commission"
- })
- },
- // 去账单明细
- toBillDetails(type) {
- this.navigate({
- url: `/pages/wallet/billDetails${type}`,
- }, "navigateTo", true)
- },
- // 去账单明细
- toWallet(type) {
- this.navigate({
- url: "/pages/wallet/wallet"
- }, "navigateTo", true)
- },
- //跳转个人信息页面
- openDetail() {
- this.navigate({
- url: "/pages/user/userInfo"
- }, "navigateTo", false)
- },
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .headers {
- position: fixed;
- top: 0;
- left: 0;
- height: auto;
- width: 100%;
- z-index: 999999;
- padding: 16px;
- padding-top: 40px;
- >view {
- width: 100%;
- height: 100%;
- position: relative;
- }
- text {
- font-size: 18px;
- font-weight: 700;
- color: #333333;
- }
- image {
- position: absolute;
- right: 0;
- width: 20px;
- height: 20px;
- }
- }
- .Personnel {
- height: auto;
- width: 100%;
- background: #F7F7F7;
- background-size: 100% 100%;
- padding: 90px 16px 8px 16px;
- position: relative;
-
- }
- .Personnel-title{
- position: absolute;
- right: 0;
- top: 135px;
- background: linear-gradient( 132deg, #2DD9FF 0%, #2D6DFF 100%);
- border-radius: 16px 0px 0px 16px;
- color: #fff;
- padding: 2px 6px 2px 10px;
- }
- .Personnel-img{
- position: relative;
- .avatar {
- width: 60px;
- height: 60px;
- border-radius: 50%;
- }
- image:last-child{
- display:inline-block;
- width: 30px;
- height: 30px;
- position: absolute;
- bottom: -5px;
- right: -8px;
- }
- }
- /* 我的钱包Start */
- .my-wallet {
- .wallet-body {
- width: 100%;
- height: auto;
- padding: 8px 16px;
- background: #FFFFFF;
- box-shadow: 0px 4px 10px 0px #DAE3F4;
- border-radius: 6px;
- margin-top: 10px;
- .route {
- text {
- font-size: 12px;
- color: #333;
- font-weight: 400;
- }
- image {
- width: 45px;
- height: 40px;
- }
- }
- .money {
- padding: 8px 0;
- background-color: #F9F8FD;
- border-radius: 4px;
- margin-top: 8px;
- text {
- font-size: 12px;
- color: #333;
- font-weight: 400;
- }
- }
- }
- }
- .Personnel-info{
- flex-direction: column;
- font-size: 14px;
- color: #152F63;
-
- }
- .full-name{
- margin-top: 8px;
- // margin-left: 12%;
- color: #152F63;
- text:first-child{
- font-weight: 700;
- font-size: 18px;
- line-height: 22px;
- }
- // text:last-child{
- // margin-left: 10px;
- // font-weight: 400;
- // font-size: 10px;
- // line-height: 12px;
- // }
- }
- .digit{
- margin-top: 8px;
- view{
- // width: 110px;
- }
-
- image{
- width: 20px;
- height: 20px;
- display: inline-block;
- }
- }
- .withdrawal-box{
- margin-top: 13px;
- background: #FFFFFF;
- border-radius: 5px 5px 5px 5px;
- padding: 18px 16px;
- .withdrawal-title {
- width: 100%;
- height: 100%;
- position: relative;
- text:first-child {
- font-weight: 400;
- font-size: 12px;
- color: #999999;
- }
- text:last-child {
- position: absolute;
- right: 0;
- font-size: 10px;
- color: #2D6DFF;
- line-height: 12px;
- }
- }
-
- .withdrawal-sum{
- color: #333333 ;
- font-weight: bold;
- line-height: 32px;
- text:first-child {
- font-size: 17px;
- line-height: 38px;
- }
- text:last-child {
- font-size: 26px;
- }
- }
- .withdrawal-income{
- margin: 10px 0;
- background: rgba(240,248,255,0.5);
- border-radius: 2px 2px 2px 2px;
- padding: 10px;
- view{
- width: 50%;
- text-align: center;
- text:first-child{
- font-weight: 400;
- font-size: 10px;
- color: #666666;
- display: block;
-
- }
- text:last-child{
- margin-top: 3px;
- font-weight: 700;
- font-size: 17px;
- color: #333333;
- line-height: 20px;
- display: block;
- }
- }
-
- }
- .withdrawal-fun{
- background: linear-gradient( 132deg, #2DD9FF 0%, #2D6DFF 100%);
- border-radius: 5px 5px 5px 5px;
- color: #fff;
- font-size: 16px;
- text-align: center;
- line-height: 42px;
- }
- }
- .withdrawal-record{
-
- font-weight: 700;
- font-size: 16px;
- color: #333333;
- i{
- display: inline-block;
- margin-right: 5px;
- width: 2px;
- height: 20px;
- background: linear-gradient( 132deg, #2DD9FF 0%, #2D6DFF 100%);
- }
- }
- .withdrawal-flow{
- margin: 8px 16px;
- overflow: hidden;
- background: #FFFFFF;
- border-radius: 5px 5px 5px 5px;
- font-size: 16px;
- color: #333333;
- .withdrawal-card{
- border-bottom: 1px solid #EEEEEE;
- padding: 15px 0;
- margin: 0 15px;
- image{
- display: inline-block;
- width: 11px;
- height: 11px;
- margin-left: 5px;
- }
- .withdrawal-status{
- padding:2px 5px;
- font-size: 10px;
- border-radius: 1px 1px 1px 1px;
- }
- }
- }
- .search{
- text{
- font-size: 14px;
- color: #666666;
- }
- 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;
- }
- }
- </style>
|