123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- <template>
- <view class="mine">
- <view class="index-bg"></view>
- <view class="mine-tips" v-if="userinfo.certification_type != 0">
- <u-notice-bar mode="horizontal" bg-color="rgba(0,0,0,0)" :list="[`${userinfo.certification_type == 1 ? config.intermediary_explain : config.people_explain}`]" padding="0" :volume-icon="false" color="#fff" font-size="22"></u-notice-bar>
- </view>
- <view class="user-box u-flex">
- <image v-if="userinfo.headimg" :src="userinfo.headimg" class="user-head" mode=""></image>
- <image v-else src="../../static/images/head.png" class="user-head" mode=""></image>
- <view class="user-center u-flex-1 u-flex-col u-col-top">
- <text class="text1" v-if="userinfo.name">{{userinfo.name}}</text>
- <button open-type="getPhoneNumber" class="text1" @getphonenumber="login" v-else>点击进行登录</button>
- <text class="text2" v-if="userinfo.certification_type == 0">未认证</text>
- <text class="text2" v-if="userinfo.certification_type == 1">中介经纪人</text>
- <text class="text2" v-if="userinfo.certification_type == 2">全民经纪人</text>
- </view>
- <u-icon name="edit-pen-fill" color="#fff" @click="toinfo" size="36"></u-icon>
- </view>
- <view class="yongjin-box">
- <view class="price u-flex u-row-center">
- <image src="../../static/images/qianbao.png" class="img" mode=""></image>
- <view class="text u-flex-col">
- <text>{{userinfo.balance || '0.00'}}</text>
- <text>佣金总额(元)</text>
- </view>
- </view>
- <view class="mingxi" @click="toyongjin">
- 佣金明细
- </view>
- </view>
- <view class="tabs-box u-flex">
- <view class="tabs-item u-flex-col u-col-center" @click="tourl(1)" v-if="(userinfo.certification_type == 1 || userinfo.certification_type == 0) && config.intermediary_show == 1">
- <image src="../../static/images/mine-tabs1.png" mode=""></image>
- <text>中介经纪人</text>
- </view>
- <view class="tabs-item u-flex-col u-col-center" @click="tourl(2)" v-if="(userinfo.certification_type == 2 || userinfo.certification_type == 0) && config.people_show == 1">
- <image src="../../static/images/mine-tabs2.png" mode=""></image>
- <text>全民经纪人</text>
- </view>
- <view class="tabs-item u-flex-col u-col-center" @click="tobaobei">
- <image src="../../static/images/mine-tabs3.png" mode=""></image>
- <text>我的报备</text>
- </view>
- <view class="tabs-item1 u-flex-col u-col-center" @click="toyouhui">
- <div></div>
- <!-- <image src="../../static/images/bianji.png" mode=""></image> -->
- <text>优惠券</text>
- </view>
- </view>
- <view class="setting-box u-flex u-row-between" @click="tosetting">
- <text>系统设置</text>
- <u-icon name="arrow-right"></u-icon>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState
- } from "vuex"
- export default {
- data() {
- return {
- userinfo: {
- certification_type: 0
- }
- }
- },
- onLoad() {
- },
- computed: {
- ...mapState(['config'])
- },
- onShow() {
- if (uni.getStorageSync("token")) {
- this.getuser()
- } else {
- this.userinfo = {
- certification_type: 0
- }
- }
- },
- methods: {
- tourl(type) {
- if (this.$islogin()) return
- uni.navigateTo({
- url: "/pages/index/broker?type=" + type
- })
- },
- login(e) {
- if (e.detail.code) {
- var phoneCode = e.detail.code
- uni.login({
- success: (code) => {
- this.$u.post('/api/Login/login', {
- code: code.code
- }).then(res => {
- if (res.code == 1) {
- uni.setStorageSync("token", res.data.token)
- if (!res.data.phone || 1) {
- this.$u.post('/api/Member/bind_Phone', {
- code: phoneCode
- }).then(res => {
- if (res.code == 1) {
- this.$u.toast("登录成功")
- this.$u.post('/api/Member/member_info').then(res => {
- uni.setStorageSync("hx_username", res.data.hx_username)
- this.$WebIM.conn.open({
- user: res.data.hx_username,
- pwd: "999999",
- }).then(() => {
- console.log("login success");
- }).catch((reason) => {
- console.log("login fail", reason);
- });
- })
- this.getuser()
- } else {
- this.$u.toast(res.msg)
- }
- })
- } else {
- this.$u.toast("登录成功")
- this.getuser()
- }
- } else {
- this.$u.toast(res.msg)
- }
- })
- }
- })
- }
- },
- getuser() {
- this.$u.post('/api/Member/member_info').then(res => {
- uni.setStorageSync("name", res.data.name)
- uni.setStorageSync("headimg", res.data.headimg)
- this.userinfo = res.data
- })
- },
- tosetting() {
- if (this.$islogin()) return
- uni.navigateTo({
- url: "./setting"
- })
- },
- toyouhui() {
- if (this.$islogin()) return
- uni.navigateTo({
- url: "./youhui"
- })
- },
- tobaobei() {
- if (this.$islogin()) return
- uni.navigateTo({
- url: "./baobei-list"
- })
- },
- toyongjin() {
- if (this.$islogin()) return
- uni.navigateTo({
- url: "./yongjin"
- })
- },
- toinfo() {
- if (this.$islogin()) return
- uni.navigateTo({
- url: "./userinfo"
- })
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #F6F6F6;
- }
- .mine {
- position: relative;
- z-index: 1;
- .setting-box {
- width: 702rpx;
- height: 82rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin: 0 auto;
- padding: 0 24rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #333333;
- }
- .tabs-box {
- width: 702rpx;
- height: 218rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin: 20rpx auto;
- .tabs-item {
- width: 25%;
- image {
- width: 84rpx;
- height: 84rpx;
- margin-bottom: 20rpx;
- border-radius: 20rpx;
- }
- text {
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #131415;
- }
- }
- .tabs-item1 {
- width: 25%;
-
- div{
- width: 84rpx;
- height: 84rpx;
- background: url(../../static/images/youhui.png) no-repeat;
- background-size: cover;
- margin-bottom: 20rpx;
- border-radius: 20rpx;
- }
- text {
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #131415;
- }
- }
- }
- .yongjin-box {
- width: 702rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin: 0 auto;
- padding: 0 50rpx;
- .mingxi {
- line-height: 82rpx;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- .price {
- height: 226rpx;
- border-bottom: 2rpx solid rgba(245, 245, 245, 1);
- .img {
- width: 94rpx;
- height: 94rpx;
- margin-right: 34rpx;
- }
- .text {
- text:first-child {
- font-size: 48rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- text:last-child {
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- }
- }
- }
- }
- .user-box {
- padding: 48rpx 24rpx 82rpx 24rpx;
- .user-center {
- margin: 0 32rpx;
- .text1 {
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- margin: 0 0 20rpx 0;
- padding: 0;
- border: none;
- background-color: rgba(0, 0, 0, 0);
- line-height: 1.5;
- text-align: left;
- }
- .text1::after {
- margin: 0;
- padding: 0;
- border: none;
- }
- .text2 {
- padding: 0 20rpx;
- min-width: 102rpx;
- line-height: 40rpx;
- border-radius: 24rpx;
- border: 2rpx solid #FFFFFF;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- }
- }
- .user-head {
- width: 120rpx;
- height: 120rpx;
- border-radius: 100rpx;
- }
- }
- .mine-tips {
- width: 750rpx;
- line-height: 56rpx;
- background: rgba(255, 255, 255, 0.1);
- padding: 0 24rpx;
- font-size: 22rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- }
- .index-bg {
- width: 750rpx;
- height: 556rpx;
- background: linear-gradient(180deg, #1E7DFF 0%, #F6F6F6 100%);
- position: absolute;
- top: 1;
- left: 0;
- z-index: -1;
- }
- }
- </style>
|