| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- <template>
- <view class="container">
- <uni-nav-bar dark :fixed="true" backgroundColor="black" statusBar="false" left-icon="left" left-text="返回"
- @clickLeft="toBack">
- <view class="nav-title">
- <text>{{title}}</text>
- </view>
- </uni-nav-bar>
- <view class="cell-box">
- <u-cell-group :border="false">
- <u-cell-item title="修改密码" :border-bottom="false" @click="$u.func.route('/pages/user/modify-password')">
- <image slot="icon" src="/static/images/user/c8.png" class="icon" mode=""></image>
- </u-cell-item>
- </u-cell-group>
- </view>
- <u-gap height="100"></u-gap>
- <view class="cell-box">
- <u-cell-group :border="false">
- <button type="primary" plain="true" @click="logout()">退出登录</button>
- </u-cell-group>
- </view>
- </view>
- </template>
- <script>
- import http from '@/http/api.js'
- export default {
- onLoad() {
-
- console.log(JSON.stringify(this.userInfo))
- const that = this;
- http.request({
- url: '/galaxy-system/dept/detail?id=' + this.userInfo.dept_id,
- method: 'GET'
- }).then(res => {
- console.log(JSON.stringify(res.data))
- that.deptName = res.data.deptName;
- }).catch(err => {
- console.log(err)
- })
- http.request({
- url: '/galaxy-system/role/select?roleId=' + this.userInfo.role_id,
- method: 'GET'
- }).then(res => {
- console.log(JSON.stringify(res.data))
- var name = "";
- res.data.forEach(info => {
- name += name.length > 0 ? ":" : "";
- name += info.roleName;
- })
- that.roleName = name;
- }).catch(err => {
- console.log(err)
- })
- },
- data() {
- return {
- title: '用户信息',
- roleName: '',
- deptName: '',
- downloadurl: '',
- };
- },
- methods: {
- toBack() {
- uni.navigateBack({
- delta: 1
- })
- },
- logout() {
- this.$u.func.logout();
-
- },
- checkVersion() {
- // #ifdef APP-PLUS
- let that = this;
- let postData = {};
- postData['appId'] = plus.runtime.appid;
- postData['version'] = plus.runtime.version;
- http.request({
- url: '/galaxy-business/version/check',
- method: 'GET',
- data: postData,
- }).then(res => {
- console.log(JSON.stringify(res))
- if (res.data != null) {
- if (res.data.updateStatus == 1) {
- that.downloadurl = res.data.apkUrl;
- uni.showModal({
- title: "版本检查",
- content: "有新的APP版本需要更新",
- success: (res) => {
- if (res.confirm) {
- that.updateApp();
- }
- },
- })
- } else {
- uni.showModal({
- title: "提示",
- content: "当前已是最新版本!",
- showCancel: false,
- success: (res) => {
- }
- })
- }
- }
- }).catch(err => {
- console.log(err)
- })
- // #endif
- },
- updateApp() {
- // #ifdef APP-PLUS
- let task = plus.downloader.createDownload(this.downloadurl, {},
- function(d, status) {
- //下载完成
- if (status == 200) {
- var path = plus.io.convertLocalFileSystemURL(d
- .filename);
- plus.runtime.install(path, {}, function() {
- plus.nativeUI.closeWaiting();
- uni.showModal({
- title: "更新提示",
- content: "安装已完成,APP需重新启动!",
- showCancel: false,
- success: (res) => {
- plus.runtime.restart();
- }
- })
- }, function(e) {
- uni.showModal({
- title: "更新提示",
- content: "版本更新失败[" + e.code + "]:" + e.message,
- mask: false,
- duration: 1500,
- })
- })
- } else {
- uni.showModal({
- title: "更新提示",
- content: "下载安装包文件失败!",
- mask: false,
- duration: 1500,
- })
- }
- }
- )
- task.addEventListener("statechanged", function(download, status) {
- switch (download.state) {
- case 1:
- loadingDig.setTitle("开始下载");
- break;
- case 2:
- loadingDig.setTitle("已连接");
- break;
- case 3:
- //if (undefined != task.downloadedSize && null != task.downloadedSize && parseFloat(task
- // .downloadedSize) > 0.0) {
- // let prg = parseInt((parseFloat(task
- // .downloadedSize) /
- // parseFloat(task.totalSize)
- // ) *
- // 100.0);
- // if (undefined != prg && null != prg && (prg >= 0.0 && prg <= 100.0)) {
- // loadingDig.setTitle("安装包下载 " + prg + "%");
- // }
- loadingDig.setTitle("安装包下载中...");
- break;
- case 4:
- plus.nativeUI.closeWaiting();
- break;
- }
- })
- task.start();
- var loadingDig = plus.nativeUI.showWaiting("开始下载安装包");
- // #endif
- }
- }
- };
- </script>
- <style lang="scss">
- .container {
- background-color: #f7f7f7;
- min-height: 100vh;
- overflow: hidden;
- }
- .head {
- position: relative;
- top: 0;
- left: 0;
- z-index: 1;
- // min-height: 582rpx;
- min-height: 400rpx;
- overflow: hidden;
- background: #3F9EFF;
- .set-icon {
- vertical-align: middle;
- width: 41rpx;
- height: auto;
- margin-right: 35rpx;
- }
- .head-bg {
- position: absolute;
- left: 0px;
- top: 0px;
- z-index: -1;
- width: 750rpx;
- height: 582rpx;
- background: #0bb9c8;
- }
- }
- .user-box {
- display: flex;
- justify-content: space-between;
- padding: 0 20rpx 0 64rpx;
- margin-top: 36rpx;
- .left {
- display: flex;
- flex-direction: column;
- align-items: center;
- .avatar {
- width: 128rpx;
- height: 128rpx;
- background: #ffffff;
- border-radius: 50%;
- }
- .user-name {
- margin-top: 20rpx;
- font-size: 36rpx;
- font-family: Source Han Sans CN;
- font-weight: 500;
- color: #ffffff;
- }
- .tag {
- margin-top: 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 5rpx 16rpx;
- border: 1px solid #f5f5f5;
- border-radius: 7rpx;
- font-size: 19rpx;
- font-family: Source Han Sans CN;
- font-weight: 300;
- color: #ffffff;
- }
- }
- .edit-btn {
- margin-top: 20rpx;
- margin-bottom: 10px;
- flex-shrink: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 165rpx;
- height: 54rpx;
- border: 2rpx solid #f5f5f5;
- border-radius: 11rpx;
- font-size: 27rpx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: #ffffff;
- }
- }
- .nav {
- display: flex;
- //border-top: 2rpx solid #7dcdd6;
- margin: 36rpx 38rpx 0;
- padding: 36rpx 0 42rpx;
- .nav-item {
- width: calc(100% / 4);
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- font-size: 25rpx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: #ffffff;
- &:not(:last-of-type) {
- position: relative;
- &::after {
- position: absolute;
- right: 0;
- top: 50%;
- transform: translateY(-50%);
- content: '';
- display: block;
- width: 2rpx;
- background-color: #3ac4d1;
- height: 30rpx;
- }
- }
- .icon {
- width: 48rpx;
- height: 48rpx;
- margin-bottom: 6rpx;
- }
- }
- }
- .cell-box {
- background: #ffffff;
- margin: 18rpx;
- .icon {
- width: 32rpx;
- height: 32rpx;
- margin-right: 22rpx;
- }
- }
- </style>
|