Blame view

src/views/components/ywdialog.vue 774 Bytes
renchao@pashanhoo.com committed
1
<!--
2 3
 * @Description: 
 * @Autor: renchao
4
 * @LastEditTime: 2023-08-17 15:20:29
renchao@pashanhoo.com committed
5 6 7 8
-->
<template>
  <div class='ywdialog'>
    <el-table
9
      v-if="formData.result && formData.result.length>0"
renchao@pashanhoo.com committed
10 11 12 13 14 15 16 17 18 19 20
      :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>
21
    <el-link type="primary" :underline="false" v-else>{{formData.message}}</el-link>
renchao@pashanhoo.com committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
  </div>
</template>
<script>
  export default {
    props: {
      formData: {
        type: Object,
        default: {}
      }
    }
  }
</script>
<style scoped lang='scss'>
  @import "~@/styles/public.scss";
</style>