| | |
| | | <el-button :icon="RefreshRight" @click="resetSearch">重置</el-button> |
| | | </div> |
| | | <div class="search_actions"> |
| | | <el-button type="danger" :disabled="!selectedRows?.length" @click="batchDelete">批量删除</el-button> |
| | | <el-button type="primary" :icon="Plus" @click="openSubmitDialog">提交审批</el-button> |
| | | </div> |
| | | </div> |
| | |
| | | :column="tableColumn" |
| | | :tableData="tableData" |
| | | :page="page" |
| | | :isSelection="false" |
| | | :isSelection="true" |
| | | :tableLoading="tableLoading" |
| | | :total="page.total" |
| | | @pagination="pagination" |
| | | @selection-change="(rows) => selectedRows = rows" |
| | | > |
| | | <template #approveType="{ row }"> |
| | | <span class="approve-type-cell" :style="approvalTypeStyle(row.approvalType)"> |
| | |
| | | submitApprove, |
| | | openDetail, |
| | | openApprove, |
| | | selectedRows, |
| | | batchDelete, |
| | | } = al; |
| | | |
| | | const { flowUserOptions, loadFlowUsers } = useFlowUserOptions(); |