|
@@ -130,7 +130,7 @@
|
|
|
</template>
|
|
|
</HcCard>
|
|
|
</div>
|
|
|
- <!--跨目录移动-->
|
|
|
+ <!--跨目录移动-->
|
|
|
<HcDialog :show="movesModal" title="跨目录移动" widths="990px" isTable @close="movesModalClose" @save="movesModalSave" :loading="movesModalLoading">
|
|
|
<div class="hc-moves-transfer-box">
|
|
|
<div class="hc-moves-transfer-panel">
|
|
@@ -167,7 +167,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</HcDialog>
|
|
|
- <!--调整排序-->
|
|
|
+ <!--调整排序-->
|
|
|
<HcDialog :show="sortModal" title="调整排序" widths="980px" isTable isRowFooter @close="sortModalClose">
|
|
|
<el-alert title="可拖动排序,也可在后面点击图标,切换排序" type="error" :closable="false"/>
|
|
|
<div class="hc-table-h">
|
|
@@ -348,8 +348,8 @@ const getTableData = async () => {
|
|
|
})
|
|
|
tableLoading.value = false
|
|
|
if (!error && code === 200) {
|
|
|
- tableData.value = getArrValue(data['records'])
|
|
|
- searchForm.value.total = data['total'] || 0
|
|
|
+ tableData.value = getArrValue(data?.records)
|
|
|
+ searchForm.value.total = data?.total || 0
|
|
|
} else {
|
|
|
tableData.value = []
|
|
|
searchForm.value.total = 0
|
|
@@ -400,9 +400,9 @@ const intableSelection = (rows) => {
|
|
|
//删除
|
|
|
const delModalClick = () => {
|
|
|
|
|
|
- let ids=''
|
|
|
- const rows = tableCheckedKeys.value;
|
|
|
- ids= rowsToId(rows)
|
|
|
+ let ids = ''
|
|
|
+ const rows = intableCheckedKeys.value;
|
|
|
+ ids = rowsToId(rows)
|
|
|
window?.$messageBox?.alert('请谨慎考虑是否要批量删除卷内文件?', '删除文件', {
|
|
|
showCancelButton: true,
|
|
|
confirmButtonText: '确认删除',
|