Browse Source

request 更改

master
parent
commit
985897adbd
  1. 20
      pages/index.vue
  2. 7
      sub/enterprise/edit.vue
  3. 1
      sub/task/enforce.vue
  4. 8
      sub/task/locate.vue
  5. 21
      utils/request.js

20
pages/index.vue

@ -25,6 +25,10 @@
:scroll-y="true"
:style="{ maxHeight: `${viewHeigth}px` }"
class="view"
:refresher-enabled="true"
@refresherrefresh="refresherrefresh"
:refresher-triggered="refresherTriggered"
@refresherpulling="refresherpulling"
>
<view class="box row-1">
<view class="wd-flex" style="justify-content: space-around">
@ -205,6 +209,7 @@ export default {
type: 2
}
],
refresherTriggered: false,
list: [],
color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653']
}
@ -222,6 +227,9 @@ export default {
this.getPageHeight()
})
},
onShow() {
this.init()
},
methods: {
getPageHeight() {
const query = uni.createSelectorQuery().in(this)
@ -362,6 +370,18 @@ export default {
changeTab(type) {
this.queryParams.type = type
this.getList()
},
refresherpulling() {
const that = this
if (!this.refresherTriggered) {
this.refresherTriggered = true
setTimeout(() => {
that.refresherTriggered = false
}, 1000)
}
},
refresherrefresh() {
this.init()
}
}
}

7
sub/enterprise/edit.vue

@ -1,5 +1,5 @@
<template>
<view>
<view class="view-container">
<view class="container">
<uni-steps :options="step.options" :active="step.active"></uni-steps>
<scroll-view
@ -598,7 +598,11 @@ export default {
</script>
<style lang="scss" scoped>
.view-container {
height: 100vh;
}
.container {
height: 100%;
background-color: #fff;
padding: 10px;
overflow: hidden;
@ -606,7 +610,6 @@ export default {
flex-flow: column nowrap;
height: 100%;
.info-container {
max-height: 75vh;
padding: 0 10px;
margin-top: 10px;
}

1
sub/task/enforce.vue

@ -140,6 +140,7 @@ export default {
}
})
).then(res => {
//
this.form.photo = res
})
},

8
sub/task/locate.vue

@ -74,7 +74,7 @@
</view>
<cs-bottom-wrapper v-if="!isLocate">
<view class="operation" v-if="">
<view class="operation" v-if="distance < 30">
<button
class="btn green"
v-if="distance < radius"
@ -179,8 +179,8 @@ export default {
const arr = i.split('=')
obj[arr[0]] = arr[1]
})
this.inspectionsId = obj.inspectionsId
this.enterpriseId = obj.enterpriseId
this.inspectionsId = obj.aId
this.enterpriseId = obj.bId
} else {
this.inspectionsId = res.inspectionsId
this.enterpriseId = res.enterpriseId
@ -227,7 +227,7 @@ export default {
methods: {
async init() {
const res = await getMiniappCode({
scene: `inspectionsId=${this.inspectionsId}&enterpriseId=${this.enterpriseId}`,
scene: `aId=${this.inspectionsId}&bId=${this.enterpriseId}`,
path: 'sub/task/locate',
checkPath: false,
envVersion: 'develop',

21
utils/request.js

@ -47,14 +47,19 @@ const request = config => {
const code = res.data.code || 200
const msg = errorCode[code] || res.data.msg || errorCode['default']
if (code === 401) {
showConfirm('登录状态已过期,您可以继续留在该页面,或者重新登录?').then(res => {
if (res.confirm) {
store.dispatch('LogOut').then(res => {
uni.reLaunch({
url: '/pages/login'
})
})
}
// showConfirm('登录状态已过期,您可以继续留在该页面,或者重新登录?').then(res => {
// if (res.confirm) {
// store.dispatch('LogOut').then(res => {
// uni.reLaunch({
// url: '/pages/login'
// })
// })
// }
// })
store.dispatch('LogOut').then(res => {
uni.reLaunch({
url: '/pages/login'
})
})
reject('无效的会话,或者会话已过期,请重新登录。')
} else if (code === 500) {

Loading…
Cancel
Save