|
|
|
@ -109,13 +109,14 @@
|
|
|
|
|
@click="handleBatchRecover" |
|
|
|
|
>恢 复</el-button |
|
|
|
|
> |
|
|
|
|
<!-- 导出 --> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
icon="Download" |
|
|
|
|
v-if="permissionObj.WaybillOrderList_export" |
|
|
|
|
@click="handleExport" |
|
|
|
|
>导 出</el-button |
|
|
|
|
> |
|
|
|
|
>导 出 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__right"> |
|
|
|
@ -127,6 +128,7 @@
|
|
|
|
|
|
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<tablecmt |
|
|
|
|
ref="tableNodeRef" |
|
|
|
|
:columnList="details.columnList" |
|
|
|
|
:tableData="data" |
|
|
|
|
:loading="loadingObj.list" |
|
|
|
@ -416,6 +418,8 @@ const details = reactive<any>({
|
|
|
|
|
warehouseOption: [], |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const tableNodeRef = ref(); |
|
|
|
|
|
|
|
|
|
const { search, query, shortcuts, data, loadingObj, selectionList, drawerShow, page, popUpShow } = |
|
|
|
|
toRefs(details); |
|
|
|
|
|
|
|
|
@ -455,14 +459,6 @@ const permissionObj = reactive({
|
|
|
|
|
}), |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
onMounted(() => { |
|
|
|
|
const timer = setTimeout(() => { |
|
|
|
|
details.listNode = document.querySelector('.maboxhi'); |
|
|
|
|
details.listNode.style.transition = 'all .5s ease-out'; |
|
|
|
|
clearTimeout(timer); |
|
|
|
|
}, 100); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
/** 请求页面数据 */ |
|
|
|
|
const onLoad = async (page?: any, params = {}) => { |
|
|
|
|
try { |
|
|
|
@ -559,10 +555,10 @@ const showdrawer = (_flag?: boolean) => {
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 是否开启搜索区 */ |
|
|
|
|
const searchHide = () => { |
|
|
|
|
const searchHide = async () => { |
|
|
|
|
details.search = !details.search; |
|
|
|
|
|
|
|
|
|
setNodeHeight(details.listNode, '', true); |
|
|
|
|
await nextTick(); |
|
|
|
|
setNodeHeight(tableNodeRef.value.$el, '', true); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
@ -982,6 +978,8 @@ const handleExport = () => {
|
|
|
|
|
|
|
|
|
|
delete submitData.createTime; |
|
|
|
|
delete submitData.documentMakingTime; |
|
|
|
|
if (details.selectionList.length > 0) |
|
|
|
|
submitData.ids = details.selectionList.map(val => val.id).join(','); |
|
|
|
|
|
|
|
|
|
const res = await postExport(submitData); |
|
|
|
|
|
|
|
|
|