batchDel.vue 726 Bytes
<!--
  功能:申请单元列表批量删除
  作者:calliope
-->
<template>
  <div class='batchDel'>
    <lb-table :column="columns" :data="dataList" :heightNum="500" :pagination="false">
    </lb-table>
  </div>
</template>
<script>

export default {
  components: {},
  props: {
    formData: {
      type: Object,
      default: {}
    }
  },
  data () {
    return {
      columns: [
        {
          type: 'selection',
          label: '全选'
        },
        {
          label: '序号',
          type: 'index',
          width: '50',
        },
        {
          prop: "status",
          label: "状态",
        },
      ],
      dataList: []
    }
  }
}
</script>
<style scoped lang='scss'>

</style>