同步国家卫健委风险地区数据

This commit is contained in:
aixianling
2022-09-23 18:20:29 +08:00
parent 2ca0518c98
commit 4daab388ab
3 changed files with 168 additions and 93 deletions

View File

@@ -23,6 +23,7 @@
"dayjs": "^1.8.35",
"dvcp-ui": "^1.42.2",
"echarts": "^5.1.2",
"hash.js": "^1.1.7",
"mp4box": "^0.4.1",
"print-js": "^1.0.63",
"serialize-javascript": "^6.0.0",

View File

@@ -1,7 +1,11 @@
<template>
<ai-list class="notice">
<template slot="title">
<ai-title title="风险区域配置" isShowBottomBorder></ai-title>
<ai-title title="风险区域配置" isShowBottomBorder>
<template #rightBtn>
<el-button type="primary" @click="handleSyncData">同步卫健委数据</el-button>
</template>
</ai-title>
</template>
<template slot="content">
<ai-search-bar class="search-bar">
@@ -51,6 +55,8 @@
<script>
import {mapState} from 'vuex'
import {getRiskArea} from "../riskareaCrawler";
export default {
name: 'List',
@@ -100,7 +106,7 @@
methods: {
getList() {
this.instance.post(`/app/appepidemicdangerousarea/list`, null, {
this.instance.post(`/app/appepidemicpreventionriskarea/list`, null, {
params: {
...this.search
}
@@ -114,7 +120,7 @@
remove(id) {
this.$confirm('确定删除该数据?').then(() => {
this.instance.post(`/app/appepidemicdangerousarea/delete?ids=${id}`).then(res => {
this.instance.post(`/app/appepidemicpreventionriskarea/delete?ids=${id}`).then(res => {
if (res.code == 0) {
this.$message.success('删除成功!')
this.getList()
@@ -130,6 +136,14 @@
id: id || ''
}
})
},
handleSyncData() {
getRiskArea(this.instance).then(res => {
if (res?.code == 0) {
this.getList()
this.$message.success("同步完毕!")
}
})
}
}
}

View File

@@ -0,0 +1,60 @@
import hash from "hash.js"
const nonceHeader = "123456789abcdefg"
let http = {}, riskareaList = []
const getSHA256 = key => hash.sha256().update(key).digest("hex")
const getData = (timestampHeader) => {
return http.post("/app/appepidemicpreventionriskarea/apiForwardPost", {
appId: "NcApplication",
key: "3C502C97ABDA40D0A60FBEE50FAAD1DA",
nonceHeader,
paasHeader: "zdww",
signatureHeader: getSHA256(`${timestampHeader}23y0ufFl5YxIyGrI8hWRUZmKkvtSjLQA${nonceHeader}${timestampHeader}`).toUpperCase(),
timestampHeader
}, {
withoutToken: true,
headers: {
Referer: "http://bmfw.www.gov.cn/yqfxdjcx/risk.html",
"x-wif-nonce": "QkjjtiLM2dCratiA",
"x-wif-paasid": "smt-application",
"x-wif-signature": getSHA256(`${timestampHeader}fTN2pfuisxTavbTuYVSsNJHetwq5bJvCQkjjtiLM2dCratiA${timestampHeader}`).toUpperCase(),
"x-wif-timestamp": timestampHeader
},
params: {
url: "http://bmfw.www.gov.cn/bjww/interface/interfaceJson"
}
}).then(res => {
if (res?.data?.data) {
const {highlist, lowlist, middlelist} = res.data.data
return Promise.all([
handleData(highlist, 2),
handleData(middlelist, 1),
// handleData(lowlist, 0)
])
}
})
}
const transName2Code = area_name => http.post("/app/appepidemicpreventionriskarea/transformationAreaName", null, {
params: {area_name}
}).then(res => {
if (res?.data) {
return res.data
}
})
const handleData = (list, riskLevel) => {
return Promise.all(list.map(e => {
const {province, city, county: district, area_name} = e
return transName2Code(area_name).then(areaId => e?.communitys?.map(address => riskareaList.push({
province, city, district, address, areaId,
level: riskLevel,
createUserName: "国家卫健委"
})
))
}))
}
export const getRiskArea = ins => {
http = ins
const timestamp = Math.round(new Date().getTime() / 1000).toString()
riskareaList = []
return getData(timestamp).then(() => http.post("/app/appepidemicpreventionriskarea/batchInsert", riskareaList))
}