|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- <template>
- <view class="main">
- <u-navbar title="我的" :is-back="false" :background="{background: 'none'}" :border-bottom="false" title-color="#333"> </u-navbar>
- <view class="header">
- <view class="header-zuo">
- <u-avatar
- :src="photo?photo:'/static/images/avatar.png'"
- size="128"></u-avatar>
- </view>
- <view class="header-you">
- <view class="userName u-line-2">
- {{name}}
- </view>
- <view class="mobile">{{mobile}}</view>
- </view>
- </view>
- <view class="settingGroup">
- <!-- <navigator class="line" url="/pages/mine/messageList">
- <view class="title" style="width: 19%;">
- <image src="/static/images/studyhot.png" mode=""></image>
- 消息
- </view>
- <view class="right">
- <image src="/static/images/right-arrow.png" mode=""></image>
- </view>
- </navigator> -->
- <navigator class="line" url="/pages/mine/Myprofile">
- <view class="title">
- <image src="/static/images/setting.png" mode=""></image>
- 个人资料
- </view>
- <view class="right">
- <image src="/static/images/right-arrow.png" mode=""></image>
- </view>
- </navigator>
-
- <view class="line" @click="Changehepassword">
- <view class="title">
- <image src="/static/images/password.png" mode=""></image>
- 修改密码
- </view>
- <view class="right">
- <image src="/static/images/right-arrow.png" mode=""></image>
- </view>
- </view>
- <view class="line" @click="phone">
- <view class="title">
- <image src="/static/images/concat.png" mode=""></image>
- 联系客服
- </view>
- <view class="right">
- <image src="/static/images/right-arrow.png" mode=""></image>
- </view>
- </view>
- <!-- <view class="line" @click="help">
- <view class="title">
- <image src="/static/images/help-icon.png" mode=""></image>
- 帮助中心
- </view>
- <view class="right">
- <image src="/static/images/right-arrow.png" mode=""></image>
- </view>
- </view> -->
- <!-- <view class="line" @click="scan">
- <view class="title">
- <image src="/static/images/visitCode.png" mode=""></image>
- 访客登记码
- </view>
- <view class="right">
- <image src="/static/images/right-arrow.png" mode=""></image>
- </view>
- </view> -->
- <view class="loginout" @click="logout" style="border: none;">
- <view class="title">
- 退出登录
- </view>
- </view>
- </view>
-
- <!-- 底部导航栏 -->
- <!-- <u-tabbar :isBtnTop="false" :mid-button="true" activeColor="#1296db" inactiveColor="#999999" v-model="current" :list="tabbarList"></u-tabbar> -->
- </view>
- </template>
-
- <script>
- var app = getApp();
- var util = require("../../utils/util.js");
- var config = require("../../config");
- import tabbarList from '@/utils/tabbar.js'
- export default {
- data() {
- return {
- // tabbar配置项
- current: 0,
- tabbarList: tabbarList,
- //--- end --- tabbar配置项
- name: "",
- photo: "",
- mobile: "",
- };
- },
- onShow: function() {
- var userInfos = uni.getStorageSync('weapp_session_userInfo_data');
- this.name = userInfos.name,
- this.photo = userInfos.avatar,
- this.mobile = userInfos.username
- },
- methods: {
- //拨打电话
- phone() {
- wx.makePhoneCall({
- phoneNumber: '4008191707,8888' //仅为示例,并非真实的电话号码
- })
- },
- scan(){
- uni.navigateTo({
- url:"../mine/registerCode"
- })
- },
- help(){
- uni.navigateTo({
- url:"../mine/help/index"
- })
- },
- //修改密码
- Changehepassword() {
- uni.navigateTo({
- url: '/pages/mine/Changehepassword'
- });
- },
- //退出
- logout() {
- uni.showModal({
- title: '提示',
- content: '确定要退出?',
- cancelColor: "#999999",
- showCancel: true,
- success(res) {
- if (res.confirm) {
- uni.request({
- url: config.service.logout,
- header: {
- 'Authorization': 'Basic dGVzdDp0ZXN0',
- 'content-type': 'application/x-www-form-urlencoded'
- },
- method: "DELETE",
- success: function(result) {
- var data = result.data; //console.log("登录信息", data);
- if (data.data == true) {
- // app.Closewebsocke()
- uni.clearStorageSync(); //清除缓存
- uni.showToast({
- icon: "none",
- title: "退出成功"
- })
- uni.reLaunch({
- url: '/pages/login/index'
- });
- }
- },
- // 响应错误
- fail: function(loginResponseError) {
- util.showNone("网络异常,请重试");
- return false;
- }
- });
- }
- }
- });
- }
-
- }
- };
- </script>
- <style lang="scss" scoped>
- .main {
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-direction: column;
- background: url('https://static.quhouse.com/f5e2422890044cd1a620abd078e63442.png') no-repeat;
- background-size: 750rpx 540rpx;
- }
-
- .header {
- width: 670rpx;
- height: 248rpx;
- display: flex;
- align-items: center;
- background: url('https://static.quhouse.com/10fa8f6fe7fa4104a5c4149be4735311.png') no-repeat;
- background-size: 670rpx 248rpx;
- margin: 0 40rpx 60rpx;
- border-radius: 18rpx;
- box-shadow: 0 10rpx 20rpx #999;
- .header-zuo {
- width: 128rpx;
- height: 128rpx;
- margin-left: 40rpx;
- }
-
- .header-you {
- margin-left: 30rpx;
- .userName {
- margin-bottom: 20rpx;
- font-size: 36rpx;
- font-weight: 500;
- color: #fff;
- font-family: PingFangSC-Medium, PingFang SC;
- }
-
- .mobile {
- font-size: 30rpx;
- color: #fff;
- }
- }
- }
-
- .settingGroup {
- position: relative;
- margin-top: 30rpx;
- flex-grow: 1;
- display: flex;
- flex-direction: column;
- color: #333333;
- font-size: 30rpx;
- border-radius: 12rpx;
- background-color: #fff;
- .line {
- height: 44rpx;
- margin: 0 50rpx 60rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .title {
- display: flex;
- align-items: center;
- width: 300rpx;
- height:44rpx;
- line-height: 44rpx;
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- image{
- width: 36rpx;
- height: 36rpx;
- margin-right: 20rpx;
- }
- }
- .right{
- image{
- width: 12rpx;
- height: 28rpx;
- }
- }
- }
-
- .loginout {
- position: absolute;
- left: 40rpx;
- right: 40rpx;
- bottom: 50rpx;
- width: 670rpx;
- height: 92rpx;
- background: #F8F8F8;
- border-radius: 8rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- </style>
|