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" :scroll-y="true"
:style="{ maxHeight: `${viewHeigth}px` }" :style="{ maxHeight: `${viewHeigth}px` }"
class="view" class="view"
:refresher-enabled="true"
@refresherrefresh="refresherrefresh"
:refresher-triggered="refresherTriggered"
@refresherpulling="refresherpulling"
> >
<view class="box row-1"> <view class="box row-1">
<view class="wd-flex" style="justify-content: space-around"> <view class="wd-flex" style="justify-content: space-around">
@ -205,6 +209,7 @@ export default {
type: 2 type: 2
} }
], ],
refresherTriggered: false,
list: [], list: [],
color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653'] color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653']
} }
@ -222,6 +227,9 @@ export default {
this.getPageHeight() this.getPageHeight()
}) })
}, },
onShow() {
this.init()
},
methods: { methods: {
getPageHeight() { getPageHeight() {
const query = uni.createSelectorQuery().in(this) const query = uni.createSelectorQuery().in(this)
@ -362,6 +370,18 @@ export default {
changeTab(type) { changeTab(type) {
this.queryParams.type = type this.queryParams.type = type
this.getList() 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> <template>
<view> <view class="view-container">
<view class="container"> <view class="container">
<uni-steps :options="step.options" :active="step.active"></uni-steps> <uni-steps :options="step.options" :active="step.active"></uni-steps>
<scroll-view <scroll-view
@ -598,7 +598,11 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.view-container {
height: 100vh;
}
.container { .container {
height: 100%;
background-color: #fff; background-color: #fff;
padding: 10px; padding: 10px;
overflow: hidden; overflow: hidden;
@ -606,7 +610,6 @@ export default {
flex-flow: column nowrap; flex-flow: column nowrap;
height: 100%; height: 100%;
.info-container { .info-container {
max-height: 75vh;
padding: 0 10px; padding: 0 10px;
margin-top: 10px; margin-top: 10px;
} }

1
sub/task/enforce.vue

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

8
sub/task/locate.vue

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

21
utils/request.js

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

Loading…
Cancel
Save