From 95688fbabcde0e4fd8dbb622cc1b890aee1cc8ca Mon Sep 17 00:00:00 2001 From: wjt <1797368093@qq.com> Date: 星期六, 22 六月 2024 19:39:26 +0800 Subject: [PATCH] Merge branch 'master' of http://218.28.192.34:9999/r/sqys/sqys_xcx --- qiye/my/my.vue | 35 +++++++++++++++++++++++++++-------- 1 files changed, 27 insertions(+), 8 deletions(-) diff --git a/qiye/my/my.vue b/qiye/my/my.vue index 79abcff..f5cf9eb 100644 --- a/qiye/my/my.vue +++ b/qiye/my/my.vue @@ -8,26 +8,26 @@ <image src="/static/policy/header.png" mode="widthFix"></image> <view class="user-info"> <view class="user-name"> - <view class="inckname">鍒樺皬闆�</view> + <view class="inckname">{{msg.companyUser}}</view> </view> <view class="dept-name"> - 鐜繚灞�--绗竴閮ㄩ棬 + {{msg.companyName}} </view> </view> </view> <view class="show-phone-number"> <text class="label">鑱旂郴鐢佃瘽</text> - <text>168****4164</text> + <text>{{msg.companyPhone}}</text> </view> <view class="wbox"> - <view class="item"> + <view class="item" @click="tousu()"> <view class="set-flex"> <image src="/static/qiye/q06.png" mode="widthFix"></image> <text class="change">鎶曡瘔璁板綍</text> </view> <u-icon name="arrow-right"></u-icon> </view> - <view class="item"> + <view class="item" @click="goChangePhone()"> <view class="set-flex"> <image src="/static/policy/phone.png" mode="widthFix"></image> <text class="change">淇敼鎵嬫満鍙�</text> @@ -50,7 +50,7 @@ </view> --> - <view class="logout"> + <view class="logout" @click="logout()"> 閫�鍑虹櫥褰� </view> <tabsCom :activeNumber.sync="activeNumber"></tabsCom> @@ -68,15 +68,34 @@ data() { return { activeNumber: 2, - + msg:uni.getStorageSync("qiyedata"), src: '/static/policy/header.png' } }, methods: { goChangePhone() { uni.navigateTo({ - url: '/policy/changePhone/changePhone' + url: '/policy/changePhone/changePhone?code=02' }) + }, + tousu(){ + uni.navigateTo({ + url: '/qiye/complaint/complaint' + }) + }, + logout(){ + uni.showModal({ + title: '鎻愮ず', + content: '纭閫�鍑虹櫥褰曪紵', + success: res => { + if(res.confirm) { + uni.clearStorageSync() + uni.redirectTo({ + url: '/pages/index/index' + }) + } + } + }) } } } -- Gitblit v1.9.1