ywdialog.vue 774 Bytes
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-08-17 15:20:29
-->
<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";
</style>