16 lines
378 B
Vue
16 lines
378 B
Vue
<script setup>
|
|
import VehiclePlateList from '@/ui/vehicle/VehiclePlateList.vue'
|
|
|
|
defineProps({
|
|
data: Object,
|
|
params: Object,
|
|
apiId: { type: String, default: '' },
|
|
index: { type: Number, default: 0 },
|
|
notifyRiskStatus: { type: Function, default: () => {} },
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<VehiclePlateList v-bind="$props" title="名下车辆车牌查询 A" />
|
|
</template>
|