<!-- * @Author: gjn * @Date: 2023-12-15 16:29:39 * @Description:批量签审_站位长确认 --> <template> <div class="stationMasteConfirm"> <dee-as-com ref="applyTable" class="list-table" :basic-data=" { selectData,selectionRows }" :lay-config="{ typeName: 'ProdTask', layKey: 'batchSign_hourOtherConfirm'}" @selectionChange="selectionChange" /> </div> </template> <script> export default { name: 'StationMasteConfirm', components: {}, props: { selectData: { type: Object, default: () => {} } }, data() { return { selectionRows: [] } }, computed: {}, watch: {}, created() {}, mounted() { }, // 组件方法 methods: { selectionChange(val) { this.selectionRows = val } } } </script> <style lang='scss'> .stationMasteConfirm{ width: 100%; height: 100%; box-sizing: border-box; padding:0 4px; } </style>