<!-- * @Description: * @Autor: renchao * @LastEditTime: 2023-09-22 09:30:34 --> <template> <div class='ywdialog'> <el-table v-if="formData.result && formData.result.length>0" :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> <el-link type="primary" :underline="false" v-else>{{formData.message}}</el-link> </div> </template> <script> export default { props: { formData: { type: Object, default: {} } } } </script> <style scoped lang='scss'> @import "~@/styles/public.scss"; .ywdialog { min-width: 230px; padding-bottom: 20px; } </style>