123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <template>
- <view>
- <view class="background">
- <!-- 个人信息 -->
- <!-- <view class="person-infos" @click="gotoUrl('/pages/mine/personInfos')"> -->
- <view class="person-infos">
- <view class="photo">
- <!-- <u-avatar class="avatar"
- src="@/assets/img/photo@x1.png" size="112">
- </u-avatar> -->
- <image class="img" src="@/assets/img/默认头像.png" mode=""></image>
- </view>
- <view class="else">
- <view class="name">
- {{personInfo.name}}
- </view>
- <!-- <view class="company">
- {{companyInfo.fullName}}
- </view> -->
- </view>
- </view>
- <!-- 地址 -->
- <view class="address-box">
- <view class="address">
- <view class="address-title">
- {{companyInfo.fullName}}
- </view>
- <view class="address-value">
- <u-icon name="map" v-if="companyInfo.address"></u-icon>{{companyInfo.address}}
- </view>
- </view>
- <view class="image">
- <image class="img" src="@/assets/img/mineBackground.svg" mode=""></image>
- </view>
- </view>
- </view>
- <!-- 功能 -->
- <view class="function-group">
- <view class="function-item" @click="gotoUrl('/pages/mine/filialeList')" v-if="false">
- <view class="icon">
- <image class="img" src="@/assets/img/riLine-function-line.svg" mode=""></image>
- </view>
- <view class="name">
- 设备列表
- </view>
- <view class="arrow">
- <u-icon name="arrow-right" color="#b2b2b2"></u-icon>
- </view>
- </view>
- <view class="function-item" @click="gotoUrl('/pages/mine/message')" v-if="false">
- <view class="icon">
- <image class="img" src="@/assets/img/riLine-message-2-line.svg" mode=""></image>
- </view>
- <view class="name">
- 我的消息
- </view>
- <view class="arrow">
- <u-icon name="arrow-right" color="#b2b2b2"></u-icon>
- </view>
- </view>
- <view class="function-item" @click="gotoUrl('/pages/mine/feedbackRecord')" v-if="false">
- <view class="icon">
- <image class="img" src="@/assets/img/riLine-feedback-line.svg" mode=""></image>
- </view>
- <view class="name">
- 意见反馈
- </view>
- <view class="arrow">
- <u-icon name="arrow-right" color="#b2b2b2"></u-icon>
- </view>
- </view>
- <view class="function-item" @click="gotoUrl('/pages/mine/contactService')">
- <view class="icon">
- <image class="img" src="@/assets/img/riLine-customer-service-2-line.svg" mode=""></image>
- </view>
- <view class="name">
- 客服热线
- </view>
- <view class="arrow">
- <u-icon name="arrow-right" color="#b2b2b2"></u-icon>
- </view>
- </view>
- </view>
- <view class="function-group">
- <view class="function-item" @click="gotoUrl('/pages/mine/setting')">
- <view class="icon">
- <image class="img" src="@/assets/img/riLine-settings-2-line.svg" mode=""></image>
- </view>
- <view class="name">
- 设置
- </view>
- <view class="arrow">
- <u-icon name="arrow-right" color="#b2b2b2"></u-icon>
- </view>
- </view>
- </view>
- <energyCenterTabbar :current="2"></energyCenterTabbar>
- </view>
- </template>
- <script>
- import energyCenterTabbar from '@/components/energyCenterTabbar.vue'
- import * as API from '@/apis/pagejs/index.js'
- export default {
- components: {
- energyCenterTabbar
- },
- data() {
- return {
- personInfo: {},
- companyInfo: {}
- }
- },
- onLoad() {
- this.getfindByOpenId();
- },
- onShow() {
-
- },
- methods: {
- getfindByOpenId() {
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- API.findByOpenId({
- openId: this.carhelp.getOpenId()
- }).then((response) => {
- uni.hideLoading();
- this.personInfo = response.data.regUser;
- this.companyInfo = response.data.companyInfo;
-
- this.$forceUpdate()
- }).catch(error => {
- uni.showToast({
- title: error,
- icon: "none"
- })
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .background {
- background: linear-gradient(180deg, rgba(194, 219, 255, 1) 53%, rgba(180, 211, 255, 0) 100%);
- padding: 72rpx 32rpx;
- // 个人信息
- .person-infos {
- display: flex;
- align-items: center;
- .photo {
- width: 112rpx;
- height: 112rpx;
- border-radius: 50px;
- .img {
- width: 100%;
- height: 100%;
- }
- }
- .else {
- margin-left: 24rpx;
- .name {
- color: rgb(16, 16, 16);
- font-size: 36rpx;
- }
- .company {
- color: rgba(16, 16, 16, 1);
- }
- }
- }
- // 地址
- .address-box {
- border-radius: 8px;
- background: linear-gradient(90deg, rgba(49, 110, 207, 1) 2%, rgba(20, 73, 159, 1) 100%);
- color: #fff;
- padding: 40rpx 32rpx;
- margin-top: 40rpx;
- display: flex;
- align-items: center;
- position: relative;
- .address {
- .address-title {
- font-size: 40rpx;
- }
- .address-value {
- font-size: 24rpx;
- margin-top: 8rpx;
- }
- }
- .image {
- width: 174rpx;
- height: 174rpx;
- position: absolute;
- right: 0;
- top: 20rpx;
- .img {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- // 功能
- .function-group {
- border-radius: 8px;
- background-color: #fff;
- margin: 0 32rpx 24rpx;
- .function-item {
- display: flex;
- align-items: center;
- padding: 26rpx 26rpx 26rpx 0;
- margin-left: 26rpx;
- border-bottom: 1px solid rgba(221, 221, 221, 1);
- .icon {
- width: 40rpx;
- height: 40rpx;
- .img {
- width: 100%;
- height: 100%;
- }
- }
- .name {
- color: rgba(51, 51, 51, 1);
- font-size: 30rpx;
- margin-left: 26rpx;
- }
- .arrow {
- margin-left: auto;
- }
- }
- }
- </style>
|