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.
 
 
 
 
 

45 lines
1012 B

<template>
<div>
<sign-pad />
<pagination />
<province-city />
<input-map />
<phone-verification />
<el-button @click="test">测试</el-button>
<!-- <handle-process />-->
</div>
</template>
<script>
import SignPad from '../components/form/SignPad'
import pagination from '../components/form/pagination'
import ProvinceCity from '@/components/form/ProvinceCity'
import InputMap from '@/components/form/InputMap/index'
import PhoneVerification from '@/components/form/PhoneVerification/index'
// import HandleProcess from '@/components/HandleProcess'
export default {
name: 'App',
components: {
// HandleProcess,
ProvinceCity,
PhoneVerification,
SignPad,
pagination,
InputMap
},
data() {
return {}
},
mounted() {
},
methods: {
test() {
this.$process({
message: '处理中'
})
}
}
}
</script>