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.

34 lines
480 B

<template>
<view class="mall_search_page">
<view class="page_content">
<jc-keyboard-index :newEnergy="newEnergy" @getLisence="getLisence"></jc-keyboard-index>
</view>
</view>
</template>
<script>
export default {
data(){
return {
//true为新能源 false为燃油车牌
newEnergy:false,
}
},
onShow(){
},
onReady(){
},
methods:{
getLisence(e){
console.log(e);
}
}
}
</script>
<style scoped>
</style>