|
|
@ -17,7 +17,7 @@ |
|
|
|
<!-- 列表 --> |
|
|
|
<ContentWrap> |
|
|
|
<Table |
|
|
|
ref="tableRef" :selection="true" |
|
|
|
ref="tableRef" :selection="true" |
|
|
|
:columns="tableColumns" |
|
|
|
:data="tableObject.tableList" |
|
|
|
:loading="tableObject.loading" |
|
|
@ -121,12 +121,15 @@ const { tableObject, tableMethods } = useTable({ |
|
|
|
// 获得表格的各种操作 |
|
|
|
const { getList, setSearchParams } = tableMethods |
|
|
|
|
|
|
|
const selectionRows = ref<any>([]) |
|
|
|
// 列表头部按钮 |
|
|
|
const HeadButttondata = [ |
|
|
|
defaultButtons.defaultAddBtn({hasPermi:'wms:supplyLabel:create'}), // 新增 |
|
|
|
defaultButtons.defaultImportBtn({hasPermi:'wms:supplyLabel:import'}), // 导入 |
|
|
|
defaultButtons.defaultExportBtn({hasPermi:'wms:supplyLabel:export'}), // 导出 |
|
|
|
defaultButtons.mainLisSelectiontPointBtn(null), // 批量标签打印 |
|
|
|
defaultButtons.mainLisSelectiontPointBtn({ |
|
|
|
disabled:computed(()=>chooseSelectionRows.value.length == 0) |
|
|
|
}), // 批量标签打印 |
|
|
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
|
|
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
|
|
|
defaultButtons.defaultSetBtn(null), // 设置 |
|
|
@ -227,8 +230,13 @@ const openForm = async(type: string, row?: any) => { |
|
|
|
const data = await LocationApi.getLocationPage(param) |
|
|
|
let locationCode = data.list[0].code; |
|
|
|
console.log('row',row); |
|
|
|
// row.locationCode = locationCode; |
|
|
|
basicFormRef.value.open(type, row) |
|
|
|
if (type == 'create') { |
|
|
|
nextTick(()=>{ |
|
|
|
basicFormRef.value.formRef.formModel.locationCode=locationCode |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// form表单提交 |
|
|
@ -366,11 +374,13 @@ const handleSelectionPoint = async ()=>{ |
|
|
|
// }) |
|
|
|
} |
|
|
|
|
|
|
|
const selectionRows = ref<any>([]) |
|
|
|
const tableRef = ref() |
|
|
|
const chooseSelectionRows = ref([]) |
|
|
|
|
|
|
|
const getSelectionRows = (currentPage,currentPageSelectionRows) => { |
|
|
|
console.log("getSelectionRows",currentPage,currentPageSelectionRows) |
|
|
|
console.log(selectionRows.value) |
|
|
|
chooseSelectionRows.value =currentPageSelectionRows |
|
|
|
const currentRows = selectionRows.value.find(item=>item.currentPage==currentPage) |
|
|
|
if(currentRows){ |
|
|
|
currentRows.selectionRows = currentPageSelectionRows |
|
|
|