You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
798 B

<template>
<div>
5 years ago
<map-chart />
</div>
</template>
<script>
// 引入组件
// import Verify from '@/components/verifition/Verify'
5 years ago
import MapChart from '@/components/echarts/MapChart'
export default {
name: 'App',
components: {
5 years ago
MapChart
},
data() {
return {
radio: 3
}
},
5 years ago
mounted() {
5 years ago
},
methods: {
success(params) {
5 years ago
// eslint-disable-next-line no-debugger
debugger
// params 返回的二次验证参数, 和登录参数一起回传给登录接口,方便后台进行二次验证
console.log(params)
},
useVerify() {
this.$refs.verify.show()
}
}
}
</script>
<style scoped>
.el-radio {
display: block;
}
</style>