Commit 6e54e49d authored by 郭铭瑶's avatar 郭铭瑶 🤘

接口联调

parent e67a2edc
import ajax from '@/server/ajax'
import api from '@/server/api'
import common from '@/util/common.js'
export default {
getCheckCommunityList({commit}, params = {}){// 获取检查小区的列表
ajax.post({
url: api.POST_CHECKCOMMUNITY_LIST,
params: {
pageSize: 10000,
someday: '20200317',
...params
},
}).then(res => {
let list = common.confirm(res, 'data.content', [])
if (params.isPublish && params.isPublish == 1) {
commit('SET_SENDCHECKED',list.length) // 传了1 已开单小区
} else {
commit('SET_CHECKCOMMUNITYLIST',list) // 没传ispublish 已检查小区总数
commit('SET_ALLCHECKED',list.length)
}
})
},
getCheckedPeopleList({commit}, params = {}){ // 获取检查人员的列表
ajax.post({
url: api.POST_CHECKPEOPLE_LIST,
params: {
pageSize:10000,
startDate:'2020-03-17 00:00:00',
endDate:'2020-03-18 23:19:54',
...params,
},
}).then(res => {
let list = common.confirm(res, 'data.content', [])
commit('SET_CHECKPEOPLELIST',list)
})
}
}
......@@ -48,8 +48,7 @@
<script>
export default {
name: 'Supervision'
name: 'Supervision',
}
</script>
<style lang="stylus">
......
......@@ -42,6 +42,8 @@ import Repair from '@/views/components/repair.vue'
import Discovery from '@/views/components/discovery.vue'
import Supervision from '@/views/components/supervision.vue'
import Handle from '@/views/components/handle.vue'
import {mapActions} from 'vuex'
export default {
name: 'Main',
components: {
......@@ -52,10 +54,10 @@ export default {
Supervision,
Handle,
},
data(){
return{
isPublish:'1',
}
created(){
this.getCheckCommunityList({isPublish: 1, someday: '20200316'})
this.getCheckCommunityList()
this.getCheckedPeopleList()
},
methods: {
handleSelect(data) {
......@@ -64,64 +66,10 @@ export default {
clickCommunity(data){
console.log(data)
},
getCheckCommunityList(){ // 获取检查小区的列表
let searchParams ={}
if (this.isPublish == 1 ) {
searchParams = {
isPublish: 1
}
this.isPublish = 0
}
this.$ajax.post({
url: this.$api.POST_CHECKCOMMUNITY_LIST,
params:Object.assign({},searchParams,{
pageSize:100000,
someday:'20200317',
// taskId:''
// pageNo:1,
})
}).then(res => {
if (res.code== '200') {
let list = this.$com.confirm(res, 'data.content', [])
if (!!searchParams.isPublish) {
this.$store.commit('SET_SENDCHECKED',list.length) // 传了1 已开单小区
} else {
this.$store.commit('SET_CHECKCOMMUNITYLIST',list) // 没传ispublish 已检查小区总数
this.$store.commit('SET_ALLCHECKED',list.length)
}
}else{
this.$Message.error('未获取到检查小区列表数据')
}
})
},
getCheckedPeopleList(){ // 获取检查人员的列表
let searchParams = {}
this.$ajax.post({
url: this.$api.POST_CHECKPEOPLE_LIST,
params:Object.assign({},searchParams,{
startDate:'2020-03-17 00:00:00',
endDate:'2020-03-18 23:19:54',
pageSize:10000,
// pageNumber:1,
// taskId:'',
})
}).then(res => {
if (res.code== '200') {
let list = this.$com.confirm(res, 'data.content', [])
this.$store.commit('SET_CHECKPEOPLELIST',list)
}else{
this.$Message.error('未获取到检查人员列表数据')
}
})
}
...mapActions([
'getCheckCommunityList',
'getCheckedPeopleList'
])
},
created(){
this.getCheckCommunityList()
this.getCheckCommunityList()
this.getCheckedPeopleList()
}
}
</script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment