Browse Source

编辑用户信息

master
parent
commit
6afaaae3bc
  1. 9
      .gitignore
  2. 48
      App.vue
  3. 12
      api/system/dict.js
  4. 50
      api/system/user.js
  5. 3
      main.js
  6. 2
      manifest.json
  7. 118
      pages/login.vue
  8. 47
      permission.js
  9. 18
      store/modules/user.js
  10. 268
      sub/owner/edit.vue
  11. 111
      uni_modules/s-components/s-header/index.vue
  12. 8
      utils/dict.js
  13. 2
      utils/request.js
  14. 80
      utils/ruoyi.js
  15. 136
      utils/upload.js

9
.gitignore vendored

@ -1,17 +1,8 @@
######################################################################
# Build Tools
/unpackage/*
/node_modules/*
######################################################################
# Development Tools
/.idea/*
/.vscode/*
/.hbuilderx/*
package-lock.json
yarn.lock
/unpackage/

48
App.vue

@ -4,30 +4,30 @@ import store from '@/store'
import { getAccessToken } from '@/utils/auth'
export default {
onLaunch: function () {
this.initApp()
},
methods: {
//
async initApp() {
await uni.hideTabBar()
uni.hideTabBar({
animation: false
})
//
this.initConfig()
//
// this.checkLogin()
},
initConfig() {
this.globalData.config = config
},
checkLogin() {
if (!getAccessToken()) {
this.$tab.reLaunch('/pages/login')
}
}
}
onLaunch: function () {
this.initApp()
},
methods: {
//
async initApp() {
await uni.hideTabBar()
uni.hideTabBar({
animation: false
})
//
this.initConfig()
//
this.checkLogin()
},
initConfig() {
this.globalData.config = config
},
checkLogin() {
if (!getAccessToken()) {
this.$tab.reLaunch('/pages/login')
}
}
}
}
</script>

12
api/system/dict.js

@ -0,0 +1,12 @@
import request from '@/utils/request'
/**
* 获取字典
*/
export function getDictBatchByType(params) {
return request({
url: `/system/dict-data/lists_dict_type`,
method: 'GET',
params
})
}

50
api/system/user.js

@ -3,40 +3,40 @@ import request from '@/utils/request'
// 用户密码重置
export function updateUserPwd(oldPassword, newPassword) {
const data = {
oldPassword,
newPassword
}
return request({
url: '/system/user/profile/update-password',
method: 'PUT',
params: data
})
const data = {
oldPassword,
newPassword
}
return request({
url: '/system/user/profile/update-password',
method: 'PUT',
params: data
})
}
// 查询用户个人信息
export function getUserProfile() {
return request({
url: '/system/user/profile/get',
method: 'GET'
})
return request({
url: '/system/user/profile/get',
method: 'GET'
})
}
// 修改用户个人信息
export function updateUserProfile(data) {
return request({
url: '/system/user/profile/update',
method: 'PUT',
data: data
})
return request({
url: '/system/user/profile/update',
method: 'PUT',
data: data
})
}
// 用户头像上传
export function uploadAvatar(data) {
return upload({
url: '/system/user/profile/update-avatar',
method: 'PUT',
name: data.name,
filePath: data.filePath
})
}
return upload({
url: '/admin-api/system/user/profile/update-avatar',
method: 'PUT',
name: data.name,
filePath: data.filePath
})
}

3
main.js

@ -3,7 +3,7 @@ import App from './App'
import store from './store' // store
import plugins from './plugins' // plugins
import './permission' // permission
import * as dict from '@/utils/dict.js'
// 引入uView
import uView from '@/uni_modules/uview-ui'
@ -14,6 +14,7 @@ Vue.config.productionTip = false
// 挂载vuex
Vue.prototype.$store = store
Vue.prototype.$dict = dict
App.mpType = 'app'

2
manifest.json

@ -3,7 +3,7 @@
"appid": "__UNI__25A9D80",
"description": "",
"versionName": "1.0.0",
"versionCode": "100",
"versionCode": 1,
"transformPx": false,
"app-plus": {
"usingComponents": true,

118
pages/login.vue

@ -1,60 +1,82 @@
<template>
<view class="container">
<u--image src="/static/favicon.png" width="180px" height="80px" mode="aspectFit" :fade="true" duration="450"></u--image>
<text class="title">智慧生态</text>
</view>
<view class="container">
<u--image
src="/static/favicon.png"
width="180px"
height="80px"
mode="aspectFit"
:fade="true"
duration="450"
></u--image>
<text class="title">智慧生态</text>
</view>
</template>
<script>
export default {
name: 'Login',
data() {
return {}
},
onLoad() {
this.init()
},
methods: {
init() {
uni.login({
success: (res) => {
//
this.$store
.dispatch('Login', {
type: 34,
code: res.code,
state: 'default'
})
.then((res) => {
console.log('store.login', res)
})
}
})
}
}
name: 'Login',
data() {
return {}
},
onLoad() {
this.init()
},
methods: {
init() {
uni.login({
success: res => {
//
this.$store
.dispatch('Login', {
type: 34,
code: res.code,
state: 'default'
})
.then(() => {
this.loginSuccess()
})
}
})
},
loginSuccess() {
this.$store.dispatch('GetInfo').then(res => {
const { data } = res
const { user } = data
if (user.mobile) {
uni.switchTab({
url: '/pages/index'
})
} else {
uni.navigateTo({
url: '/sub/owner/edit'
})
}
})
}
}
}
</script>
<style lang="scss" scoped>
.container {
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
flex-flow: column nowrap;
gap: 20px;
background: linear-gradient(180deg, #02815b 0%, #114636 100%);
.icon {
width: 40vw;
filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.12));
}
.title {
color: #fff;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.12);
font-size: 30px;
font-weight: 400;
letter-spacing: 2px;
}
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
flex-flow: column nowrap;
gap: 20px;
background: linear-gradient(180deg, #02815b 0%, #114636 100%);
.icon {
width: 40vw;
filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.12));
}
.title {
color: #fff;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.12);
font-size: 30px;
font-weight: 400;
letter-spacing: 2px;
}
}
</style>

47
permission.js

@ -22,27 +22,28 @@ function checkWhite(url) {
// 页面跳转验证拦截器
let list = ["navigateTo", "redirectTo", "reLaunch", "switchTab"]
list.forEach(item => {
// uni.addInterceptor(item, {
// invoke(to) {
// if (getAccessToken()) {
// if (to.path === loginPage) {
// uni.reLaunch({
// url: "/"
// })
// }
// return true
// } else {
// if (checkWhite(to.url)) {
// return true
// }
// uni.reLaunch({
// url: loginPage
// })
// return false
// }
// },
// fail(err) {
// console.log(err)
// }
// })
uni.addInterceptor(item, {
invoke(to) {
console.log('addInterceptor', to);
if (getAccessToken()) {
if (to.path === loginPage) {
uni.reLaunch({
url: "/"
})
}
return true
} else {
if (checkWhite(to.url)) {
return true
}
uni.reLaunch({
url: loginPage
})
return false
}
},
fail(err) {
console.log(err)
}
})
})

18
store/modules/user.js

@ -26,10 +26,6 @@ const user = {
SET_ID: (state, id) => {
state.id = id
},
SET_NAME: (state, name) => {
state.name = name
storage.set(constant.name, name)
},
SET_AVATAR: (state, avatar) => {
state.avatar = avatar
storage.set(constant.avatar, avatar)
@ -51,10 +47,11 @@ const user = {
}, userInfo) {
return new Promise((resolve, reject) => {
login(userInfo).then(res => {
console.log('Login', res);
res = res.data;
const {
data
} = res
// 设置 token
setToken(res)
setToken(data)
resolve()
}).catch(error => {
reject(error)
@ -69,19 +66,16 @@ const user = {
}) {
return new Promise((resolve, reject) => {
getInfo().then(res => {
res = res.data; // 读取 data 数据
const user = res.user
const user = res.data.user
const avatar = (user == null || user.avatar === "" || user.avatar == null) ? require(
"@/static/images/avatar.jpg") : user.avatar
const nickname = (user == null || user.nickname === "" || user.nickname == null) ? "" : user
.nickname
if (res.roles && res.roles.length > 0) {
commit('SET_ROLES', res.roles)
commit('SET_PERMISSIONS', res.permissions)
} else {
commit('SET_ROLES', ['ROLE_DEFAULT'])
}
commit('SET_NAME', nickname)
commit('SET_ID', res.data.user.id)
commit('SET_AVATAR', avatar)
resolve(res)
}).catch(error => {

268
sub/owner/edit.vue

@ -1,87 +1,205 @@
<template>
<cs-page title="编辑个人信息">
<view class="container">
<!-- 我的头像 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center">
<text class="wd-font-800">我的头像</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<u-avatar src="/static/images/avatar.jpg"></u-avatar>
<u-icon name="arrow-right"></u-icon>
</view>
</view>
<!-- 真实姓名 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center">
<text class="wd-font-800">真实姓名</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<input class="wd-text-right" type="text" placeholder-class="txt" placeholder="请输入" v-model="form.realName" />
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view>
</view>
<!-- 用户性别 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center">
<text class="wd-font-800">用户性别</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view>
</view>
<!-- 手机号码 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center">
<text class="wd-font-800">手机号码</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<input class="wd-text-right" type="number" placeholder-class="txt" placeholder="请输入" v-model="form.mobile" />
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view>
</view>
<!-- 所属部门 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center">
<text class="wd-font-800">所属部门</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view>
</view>
<button class="button">提交</button>
</view>
</cs-page>
<cs-page isCustom>
<template #header>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<u-icon name="arrow-left" v-if="form.mobile"></u-icon>
<text class="wd-font-800 wd-text-16">编辑个人信息</text>
</view>
</template>
<view class="container">
<!-- 我的头像 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center">
<text class="wd-font-800">我的头像</text>
<button
class="wd-flex wd-flex-row wd-items-center avatarBtn"
style="gap: 8px"
type="balanced"
open-type="chooseAvatar"
@chooseavatar="chooseAvatar"
>
<u-avatar :src="form.avatar"></u-avatar>
<u-icon name="arrow-right"></u-icon>
</button>
</view>
<!-- 真实姓名 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center">
<text class="wd-font-800">姓名</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<input
class="wd-text-right"
type="text"
placeholder-class="txt"
placeholder="请输入姓名"
v-model="form.realName"
/>
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view>
</view>
<!-- 用户性别 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center">
<text class="wd-font-800">性别</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<input
class="wd-text-right"
type="number"
placeholder-class="txt"
placeholder="请选择性别"
v-model="form.sex"
disabled
@click="showPicker()"
/>
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view>
</view>
<!-- 手机号码 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center">
<text class="wd-font-800">手机号码</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<input
class="wd-text-right"
type="number"
placeholder-class="txt"
placeholder="请输入手机号码"
v-model="form.mobile"
/>
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view>
</view>
<!-- 所属部门 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center">
<text class="wd-font-800">部门</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<input
class="wd-text-right"
type="number"
placeholder-class="txt"
placeholder="请选择部门"
v-model="form.dept"
disabled
@click="showPicker()"
/>
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view>
</view>
<!-- 身份 -->
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center" @click="showPicker()">
<text class="wd-font-800">角色</text>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<text v-if="form.userType">{{ $dict.echoDicValue(dictMap.wx_user_type, form.userType) }}</text>
<text class="placeholder" v-else>请选择角色</text>
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon>
</view>
</view>
<button class="button">提交</button>
</view>
<u-picker
:show="picker.show"
:columns="picker.columns"
@cancel="closePicker"
closeOnClickOverlay
@close="closePicker"
></u-picker>
</cs-page>
</template>
<script>
import { getUserProfile, uploadAvatar } from '@/api/system/user.js'
import { getDictBatchByType } from '@/api/system/dict.js'
export default {
data() {
return {
form: {
avatar: undefined,
realName: undefined,
mobile: undefined,
department: undefined
}
}
}
data() {
return {
dictMap: {},
form: {
avatar: undefined,
realName: undefined,
mobile: undefined,
department: undefined,
sex: undefined
},
picker: {
show: false,
colums: []
}
}
},
onLoad() {
this.getDict()
},
onShow() {
// this.init()
},
methods: {
showPicker() {
this.picker.show = true
},
closePicker() {
this.picker = {
show: false,
colums: []
}
},
init() {
getUserProfile().then(res => {
this.form = res.data
})
},
getDict() {
getDictBatchByType({ type: ['system_user_sex', 'wx_user_type'].join(',') }).then(res => {
this.dictMap = res.data
})
},
chooseAvatar(e) {
const data = {
name: 'avatarFile',
filePath: e.detail.avatarUrl
}
uploadAvatar(data).then(res => {
this.init()
})
}
}
}
</script>
<style lang="scss" scoped>
.container {
height: 100%;
padding: 10px;
position: relative;
.section {
border-radius: $cs-border-radius;
background: #fff;
box-shadow: 0 0 4px 2px $cs-shadow-color;
margin-bottom: $cs-gap;
padding: 24px;
}
.button {
background-color: $uni-color-primary;
color: #fff;
border-radius: 30px;
position: fixed;
bottom: 30px;
right: 10px;
left: 10px;
height: 40px;
line-height: 40px;
box-sizing: border-box;
}
height: 100%;
padding: 10px;
position: relative;
.section {
border-radius: $cs-border-radius;
background: #fff;
box-shadow: 0 0 4px 2px $cs-shadow-color;
margin-bottom: $cs-gap;
padding: 24px;
}
.button {
background-color: $uni-color-primary;
color: #fff;
border-radius: 30px;
position: fixed;
bottom: 30px;
right: 10px;
left: 10px;
height: 40px;
line-height: 40px;
box-sizing: border-box;
}
.placeholder {
color: $uni-text-color-grey;
}
button {
padding-left: 0;
padding-right: 0;
}
.avatarBtn {
background-color: #fff;
flex: 1;
justify-content: flex-end;
&::after {
content: '';
display: none;
}
}
}
</style>

111
uni_modules/s-components/s-header/index.vue

@ -1,67 +1,68 @@
<template>
<view class="container">
<view class="fit-content"></view>
<view class="operation" v-if="isCustom">
<slot></slot>
</view>
<view class="" v-else>
<view class="operation" v-if="isTab">
<text class="title">{{ title }}</text>
</view>
<view class="operation wd-flex wd-flex-row wd-items-center" style="gap: 10px" v-else @tap="goback()">
<view class="icon-box">
<u-icon name="arrow-left" size="12"></u-icon>
</view>
<text class="title wd-text-16">{{ title }}</text>
</view>
</view>
</view>
<view class="container">
<view class="fit-content"></view>
<view class="operation" v-if="isCustom">
<slot></slot>
</view>
<view v-else>
<view class="operation" v-if="isTab">
<text class="title">{{ title }}</text>
</view>
<view class="operation wd-flex wd-flex-row wd-items-center" style="gap: 10px" v-else @tap="goback()">
<view class="icon-box">
<u-icon name="arrow-left" size="12"></u-icon>
</view>
<text class="title wd-text-16">{{ title }}</text>
</view>
</view>
</view>
</template>
<script>
export default {
name: 's-header',
data() {
return {}
},
props: {
title: String,
isTab: {
type: Boolean,
default: false
},
isCustom: {
type: Boolean,
default: false
}
},
methods: {
goback() {
uni.switchTab({
url: '/pages/owner'
})
}
}
name: 's-header',
data() {
return {}
},
props: {
title: String,
isTab: {
type: Boolean,
default: false
},
isCustom: {
type: Boolean,
default: false
}
},
methods: {
goback() {
uni.switchTab({
url: '/pages/owner'
})
}
}
}
</script>
<style lang="scss" scoped>
.container {
background-color: #fff;
box-shadow: 0 1px 2px 1px $cs-shadow-color;
.fit-content {
height: 8vh;
}
.operation {
padding: 5px 10px;
.title {
color: #000;
}
.icon-box {
padding: 5px;
border-radius: 50%;
box-shadow: 0 0 4px 2px $cs-shadow-color;
}
}
background-color: #fff;
box-shadow: 0 1px 2px 1px $cs-shadow-color;
.fit-content {
height: 6vh;
}
.operation {
padding: 5px 10px;
padding-bottom: 15px;
.title {
color: #000;
}
.icon-box {
padding: 5px;
border-radius: 50%;
box-shadow: 0 0 4px 2px $cs-shadow-color;
}
}
}
</style>

8
utils/dict.js

@ -0,0 +1,8 @@
/**
* 回显字典值
* @param {Object} dict
* @param {Object} value
*/
export function echoDicValue(dict, value) {
return dict.find(d => d.value == value.toString()).label || ''
}

2
utils/request.js

@ -63,8 +63,6 @@ const request = config => {
} else if (code !== 200) {
toast(msg)
reject(code)
} else {
toast(msg)
}
resolve(res.data)
})

80
utils/ruoyi.js

@ -5,43 +5,43 @@
// 日期格式化
export function parseTime(time, pattern) {
if (arguments.length === 0 || !time) {
return null
}
const format = pattern || '{y}-{m}-{d} {h}:{i}:{s}'
let date
if (typeof time === 'object') {
date = time
} else {
if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
time = parseInt(time)
} else if (typeof time === 'string') {
time = time.replace(new RegExp(/-/gm), '/').replace('T', ' ').replace(new RegExp(/\.[\d]{3}/gm),'');
}
if ((typeof time === 'number') && (time.toString().length === 10)) {
time = time * 1000
}
date = new Date(time)
}
const formatObj = {
y: date.getFullYear(),
m: date.getMonth() + 1,
d: date.getDate(),
h: date.getHours(),
i: date.getMinutes(),
s: date.getSeconds(),
a: date.getDay()
}
const time_str = format.replace(/{(y|m|d|h|i|s|a)+}/g, (result, key) => {
let value = formatObj[key]
// Note: getDay() returns 0 on Sunday
if (key === 'a') {
return ['日', '一', '二', '三', '四', '五', '六'][value]
}
if (result.length > 0 && value < 10) {
value = '0' + value
}
return value || 0
})
return time_str
}
if (arguments.length === 0 || !time) {
return null
}
const format = pattern || '{y}-{m}-{d} {h}:{i}:{s}'
let date
if (typeof time === 'object') {
date = time
} else {
if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
time = parseInt(time)
} else if (typeof time === 'string') {
time = time.replace(new RegExp(/-/gm), '/').replace('T', ' ').replace(new RegExp(/\.[\d]{3}/gm), '');
}
if ((typeof time === 'number') && (time.toString().length === 10)) {
time = time * 1000
}
date = new Date(time)
}
const formatObj = {
y: date.getFullYear(),
m: date.getMonth() + 1,
d: date.getDate(),
h: date.getHours(),
i: date.getMinutes(),
s: date.getSeconds(),
a: date.getDay()
}
const time_str = format.replace(/{(y|m|d|h|i|s|a)+}/g, (result, key) => {
let value = formatObj[key]
// Note: getDay() returns 0 on Sunday
if (key === 'a') {
return ['日', '一', '二', '三', '四', '五', '六'][value]
}
if (result.length > 0 && value < 10) {
value = '0' + value
}
return value || 0
})
return time_str
}

136
utils/upload.js

@ -1,73 +1,83 @@
import store from '@/store'
import config from '@/config'
import { getAccessToken } from '@/utils/auth'
import {
getAccessToken
} from '@/utils/auth'
import errorCode from '@/utils/errorCode'
import { toast, showConfirm, tansParams } from '@/utils/common'
import {
toast,
showConfirm,
tansParams
} from '@/utils/common'
let timeout = 10000
const baseUrl = config.baseUrl
const upload = config => {
// 是否需要设置 token
const isToken = (config.headers || {}).isToken === false
config.header = config.header || {}
if (getAccessToken() && !isToken) {
config.header['Authorization'] = 'Bearer ' + getAccessToken()
}
// get请求映射params参数
if (config.params) {
let url = config.url + '?' + tansParams(config.params)
url = url.slice(0, -1)
config.url = url
}
// 设置租户 TODO 芋艿:强制 1 先
config.header['tenant-id'] = '1';
return new Promise((resolve, reject) => {
uni.uploadFile({
timeout: config.timeout || timeout,
url: baseUrl + config.url,
filePath: config.filePath,
name: config.name || 'file',
header: config.header,
formData: config.formData,
method: config.method || 'post',
success: (res) => {
let result = JSON.parse(res.data)
const code = result.code || 200
const msg = errorCode[code] || result.msg || errorCode['default']
if (code === 200) {
resolve(result)
} else if (code == 401) {
showConfirm("登录状态已过期,您可以继续留在该页面,或者重新登录?").then(res => {
if (res.confirm) {
store.dispatch('LogOut').then(res => {
uni.reLaunch({ url: '/pages/login/login' })
})
}
})
reject('无效的会话,或者会话已过期,请重新登录。')
} else if (code === 500) {
toast(msg)
reject('500')
} else if (code !== 200) {
toast(msg)
reject(code)
}
},
fail: (error) => {
let { message } = error
if (message == 'Network Error') {
message = '后端接口连接异常'
} else if (message.includes('timeout')) {
message = '系统接口请求超时'
} else if (message.includes('Request failed with status code')) {
message = '系统接口' + message.substr(message.length - 3) + '异常'
}
toast(message)
reject(error)
}
})
})
// 是否需要设置 token
const isToken = (config.headers || {}).isToken === false
config.header = config.header || {}
if (getAccessToken() && !isToken) {
config.header['Authorization'] = 'Bearer ' + getAccessToken()
}
// get请求映射params参数
if (config.params) {
let url = config.url + '?' + tansParams(config.params)
url = url.slice(0, -1)
config.url = url
}
// 设置租户 TODO 芋艿:强制 1 先
config.header['tenant-id'] = '1';
return new Promise((resolve, reject) => {
uni.uploadFile({
timeout: config.timeout || timeout,
url: baseUrl + config.url,
filePath: config.filePath,
name: config.name || 'file',
header: config.header,
formData: config.formData,
method: config.method || 'post',
success: (res) => {
let result = JSON.parse(res.data)
const code = result.code || 200
const msg = errorCode[code] || result.msg || errorCode['default']
if (code === 200) {
resolve(result)
} else if (code == 401) {
showConfirm("登录状态已过期,您可以继续留在该页面,或者重新登录?").then(res => {
if (res.confirm) {
store.dispatch('LogOut').then(res => {
uni.reLaunch({
url: '/pages/login/login'
})
})
}
})
reject('无效的会话,或者会话已过期,请重新登录。')
} else if (code === 500) {
toast(msg)
reject('500')
} else if (code !== 200) {
toast(msg)
reject(code)
}
},
fail: (error) => {
let {
message
} = error
if (message == 'Network Error') {
message = '后端接口连接异常'
} else if (message.includes('timeout')) {
message = '系统接口请求超时'
} else if (message.includes('Request failed with status code')) {
message = '系统接口' + message.substr(message.length - 3) + '异常'
}
toast(message)
reject(error)
}
})
})
}
export default upload
export default upload
Loading…
Cancel
Save