index.vue 1.18 KB
<!--
 * @Author: gjn
 * @Date: 2023-08-04 10:29:39
 * @Description:批量签审_验收入库确认
-->
<template>
  <div class="warehouseConfirm">
    <dee-as-com
      ref="applyTable"
      class="list-table"
      :basic-data=" { selectData,selectionRows }"
      :lay-config="{ typeName: 'InStorageRequestItem', layKey: 'batchSign_warehouseConfirm'}"
      @selectionChange="selectionChange"
    />
    <!-- :result-data="resultData"
      dis-business -->
  </div>

</template>

<script>
export default {
  name: 'WarehouseConfirm',
  components: {},
  props: {
    selectData: {
      type: Object,
      default: () => {}
    }
  },
  data() {
    return {
      selectionRows: [],
      resultData: []
    }
  },
  computed: {},
  watch: {},
  created() {
  },
  mounted() {
    // this.$bus.$on('refreshBatchSignDetails', () => {
    //   this.$nextTick(() => {
    // this.$refs.applyTable && this.$refs.applyTable.$refs.asCom.getData()
    // })
    // })
  },
  // 组件方法
  methods: {
    selectionChange(val) {
      this.selectionRows = val
    }
  }
}
</script>

<style  lang='scss'>
.warehouseConfirm{
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding:0 .25rem;

}
</style>