123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- <template>
- <view>
- <view class="userHead">
- <view class="userHead-img">
- <u-avatar src="../../assets/img/head.png" size="140"></u-avatar>
- </view>
- <view class="userHead-text">
- <h3>{{info.merchantAccountName}}</h3>
- <view class="userHead-text-position">
- <u-icon name="account-pin-box-fill" custom-prefix="custom-icon" color="#fff" size="32"></u-icon>
- <p>{{getPhone(info.phone)}}</p>
- </view>
- </view>
- </view>
- <view class="userData">
- <view class="userData-item">
- <view class="userData-data">{{home.deviceNumbers}}</view>
- <view class="userData-foot" @click="gotoUrl('pagesFinance/user/stationsList')" >我的设备<span style="color: #307af6; margin-left: 5px;">查看</span></view>
- </view>
- <u-line color="#d9e0ec" length="60" direction="col" margin="10px"/>
- <view class="userData-item">
- <view class="userData-name">银行账户</view>
- <view class="userData-foot" @click="showModel" >提现账户</view>
- </view>
- </view>
-
- <view class="userInfo">
- <view class="userInfo-head"><p>可提现金额</p></view>
- <view class="userInfo-main">
- <h2>{{home.accountBalance}}元</h2>
- <view class="userInfo-btn" v-if="info.status" @click="gotoUrl('pagesFinance/user/withdraw')">帐户提现</view>
- </view>
- <view class="userInfo-foot">
- <!-- <view class="userInfo-item">
- <p>今日收益</p>
- <h4>{{home.todayAmount}}</h4>
- </view> -->
- <view class="userInfo-item">
- <p>冻结金额(提现中)</p>
- <h4>{{home.waitingAmount}}元</h4>
- </view>
- <view class="userInfo-item">
- <p>已提现</p>
- <h4>{{home.withdrawnAmount}}元</h4>
- </view>
- </view>
- </view>
-
- <view class="userCell">
- <view class="userCell-item" @click="gotoUrl('pagesFinance/user/withdrawRecord')">
- <view class="userCell-title">
- <u-icon name="refund-fill" custom-prefix="custom-icon" color="#9EAAC6" size="36"></u-icon>
- <p>提现记录</p>
- </view>
- <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#B3B3B3" size="32"></u-icon>
- </view>
- <view class="userCell-item" @click="gotoUrl('pagesFinance/user/help')" >
- <view class="userCell-title">
- <u-icon name="question-fill" custom-prefix="custom-icon" color="#9EAAC6" size="36"></u-icon>
- <p>帮助中心</p>
- </view>
- <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#B3B3B3" size="32"></u-icon>
- </view>
- <view class="userCell-item" @click="phone()" >
- <view class="userCell-title">
- <u-icon name="customer-service-fill" custom-prefix="custom-icon" color="#9EAAC6" size="36"></u-icon>
- <p>联系客服</p>
- </view>
- <span>{{tel}}</span>
- </view>
- <!-- <view class="userCell-item" @click="gotoUrl('pagesFinance/user/about')">
- <view class="userCell-title">
- <u-icon name="information-fill" custom-prefix="custom-icon" color="#9EAAC6" size="36"></u-icon>
- <p>关于小鹏管家</p>
- </view>
- <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#B3B3B3" size="32"></u-icon>
- </view> -->
- <view class="userCell-item" @click="logout" >
- <view class="userCell-title">
- <u-icon name="logout-box-r-fill" custom-prefix="custom-icon" color="#9EAAC6" size="36"></u-icon>
- <p>帐号登出</p>
- </view>
- <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#B3B3B3" size="32"></u-icon>
- </view>
- </view>
-
- <Tabbar :current="2" ref="tabbarMain"></Tabbar>
- </view>
- </template>
- <script>
- import Tabbar from '@/components/TabbarFinance.vue'
- import * as API from '@/apis/finance.js'
- import {
- substrMb
- } from '@/utils'
-
- export default {
- data() {
- return {
-
- tel:'400-8899-619',
- role:{},
- info:{},
- home:{},
- current: 0,
- background:{
- background: 'none'
- },
- }
- },
- components: {
- Tabbar
-
- },
- onLoad() {
- this.info=this.carhelp.getPersonInfo("merchantUser")
-
-
-
- console.log(this.info)
- },
- onReady() {
- this.getHomePage()
- },
- onShow() {
- if(this.$refs.tabbarMain){
- this.$refs.tabbarMain.setcount(2);
- }
- this.getHomePage()
- },
- methods: {
- getPhone(phone){
- var backphone="";
- if(phone){
- backphone=substrMb(phone,0,3)+"****"+substrMb(phone,7,4)
- }
-
- return backphone;
- },
- showModel(){
- var bankCard="";
- if(this.home.bankCard){
- bankCard=substrMb(this.home.bankCard,0,4)+"****"+substrMb(this.home.bankCard,8,4)
- }
- var code=this.home.bank+":"+bankCard;
- if(this.home.bank==null&&this.home.bankCard==null){
- code="未绑定"
- }
- uni.showModal({
- showCancel:false,
- content:code,
-
- })
- },
- logoutApi(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- var data = {
-
- };
-
- API.logout(data).then((res) => {
- this.carhelp.setToken("","merchantUser");
- this.carhelp.set("merchantUser_token_tdate","")
- this.carhelp.setPersonInfo("","merchantUser");
- this.carhelp.setPersonInfoPlus("" ,"merchantUser" )
-
- uni.reLaunch({
- url:"/pagesFinance/login/index?phone="+this.info.phone
- })
-
- }).catch(error => {
- uni.showToast({
- title: error
- })
- })
- },
- logout(){
- uni.showModal({
- title: '提示',
- content: '确认是否退出?',
- success: res=> {
- if (res.confirm) {
- //付钱 改为组件
- this.logoutApi();
-
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- });
- },
- phone(){
- uni.makePhoneCall({
- phoneNumber:this.tel //仅为示例
- });
- },
- getHomePage(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- API.homePage().then((res) => {
- this.home = res.data
-
-
- uni.hideLoading()
-
- }).catch(error => {
- uni.showToast({
- title: error
- })
- })
- }
- }
- }
- </script>
- <style>
- page{
- background:url(../../assets/img/index_header_bg.png) no-repeat top center #f7f7f7;
- background-size: 100%;
- }
- </style>
- <style lang="scss" scoped>
- .userCell{
- background-color: #fff;
- border-radius: 8px;
- margin: 16px;
- .userCell-item{
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 16px;
- .userCell-title{
- display: flex;
- align-items: center;
- p{
- margin-left: 8px;
- }
- }
- span{
- color:#999;
- }
- }
- }
- .userInfo{
- background-color: #fff;
- margin: 16px;
- padding: 16px;
- border-radius: 8px;
- p{
- color:#637AA2;
- }
- .userInfo-main{
- display: flex;
- justify-content: space-between;
- margin-top: 4px;
- align-items: center;
- h2{
- font-size: 32px;
- }
- }
- .userInfo-btn{
- padding: 6px 10px;
- background-color: #FF8501;
- color:#fff;
- border-radius: 15px;
- }
- .userInfo-foot{
- display: flex;
- justify-content: space-between;
- margin-top: 12px;
- .userInfo-item{
- flex: 1;
- h4{
- font-size: 16px;
- margin-top: 4px;
- }
- }
- }
- }
- .userHead{
- display: flex;
- align-items: center;
- padding:40px 20px 0;
- .userHead-img{
- }
- .userHead-text{
- margin-left: 12px;
- h3{
- font-size: 24px;
- color:#fff;
- font-weight: normal;
- }
- .userHead-text-position{
- display: flex;
- align-items: center;
- margin-top: 5px;
- p{
- color:#fff;
- margin-left: 4px;
- }
- }
- }
- }
- .userData{
- background-color: #fff;
- margin: 16px;
- padding: 16px;
- border-radius: 8px;
- display: flex;
- }
- .userData-item{
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content:space-between;
- .userData-data{
- font-size: 24px;
- font-weight: bold;
- }
- .userData-name{
- font-size: 16px;
- }
- .userData-foot{
- margin-top: 4px;
- color:#637AA2;
- }
- }
-
- </style>
|