<!-- * @Description: * @Autor: renchao * @LastEditTime: 2023-07-12 09:55:38 --> <template> <div class='ywdialog'> <el-table v-if="formData.result" :data="formData.result" height="200"> <el-table-column prop="bdcdyh" label="不动产单元号"> </el-table-column> <el-table-column prop="verifyErrorMessage" label="状态"> </el-table-column> </el-table> </div> </template> <script> export default { props: { formData: { type: Object, default: {} } } } </script> <style scoped lang='scss'> @import "~@/styles/public.scss"; </style>