| | |
| | | </avue-form> |
| | | <avue-crud :option="boxTableOption" :data="boxTableData" @selection-change="boxSelectionChange"> |
| | | <template #menu-left> |
| | | <el-button type="danger" plain icon="Delete" :disabled="boxSelectionList.length !== 1" |
| | | <el-button type="danger" plain icon="Delete" :disabled="!(boxSelectionList.length === 1 && boxSelectionList[0]?.status === 0)" |
| | | @click="handleBatchBoxDel"> |
| | | 作废 |
| | | </el-button> |
| | |
| | | label: '状态', |
| | | display: true, |
| | | type: 'select', dicUrl: '/system/dict/data/type/sys_cancel_word', dataType: 'string', |
| | | |
| | | }, |
| | | } |
| | | }) |
| | |
| | | }; |
| | | |
| | | const boxSelectionChange = (selection: any[]) => { |
| | | console.log(selection); |
| | | |
| | | boxSelectionList.value = selection; |
| | | } |
| | | /** |