Blame view

src/views/workflow/components/dialog/dblist.vue 692 Bytes
1 2 3
<!--
 * @Description: 
 * @Autor: renchao
4
 * @LastEditTime: 2023-10-10 14:34:11
5 6 7 8 9 10
-->
<template>
  <div class='dblistDialog'>
    <el-table
      v-if="formData.result"
      :data="formData.result"
11
      height="180">
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
      <el-table-column
        prop="ywh"
        label="业务号">
      </el-table-column>
      <el-table-column
        prop="msg"
        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";
35 36 37
  .dblistDialog {
    padding-bottom: 20px;
  }
38
</style>