|
|
|
<template>
|
|
|
|
<ContentWrap>
|
|
|
|
<!-- 搜索工作栏 -->
|
|
|
|
<Search :schema="PurchaseclaimRequestMain.allSchemas.searchSchema" @search="setSearchParams"
|
|
|
|
@reset="setSearchParams" />
|
|
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
|
|
<TableHead :HeadButttondata="HeadButttondata" @button-base-click="buttonBaseClick" :tableColumns="PurchaseclaimRequestMain.allSchemas.tableColumns"/>
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
<ContentWrap>
|
|
|
|
<Table :columns="PurchaseclaimRequestMain.allSchemas.tableColumns" :data="tableObject.tableList"
|
|
|
|
:loading="tableObject.loading" :pagination="{
|
|
|
|
total: tableObject.total
|
|
|
|
}" v-model:pageSize="tableObject.pageSize" v-model:currentPage="tableObject.currentPage"
|
|
|
|
v-model:sort="tableObject.sort">
|
|
|
|
<template #itemCode="{ row }">
|
|
|
|
<el-button type="primary" link @click="openDetail(row, '物料代码', row.itemCode)">
|
|
|
|
<span>{{ row.itemCode }}</span>
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
<template #action="{ row }">
|
|
|
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event, row)" />
|
|
|
|
</template>
|
|
|
|
</Table>
|
|
|
|
</ContentWrap>
|
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
|
|
<BasicForm
|
|
|
|
ref="formRef"
|
|
|
|
@success="getList"
|
|
|
|
:rules="PurchaseclaimRequestMainRules"
|
|
|
|
:formAllSchemas="PurchaseclaimRequestMain.allSchemas"
|
|
|
|
:apiUpdate="PurchaseclaimRequestMain.updateItempackaging"
|
|
|
|
:apiCreate="PurchaseclaimRequestMain.createItempackaging"
|
|
|
|
:isBusiness="false"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict'
|
|
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
|
|
import download from '@/utils/download'
|
|
|
|
import * as PurchaseclaimRequestMainApi from '@/api/wms/purchaseclaimRequestMain'
|
|
|
|
import PurchaseclaimRequestMainForm from './PurchaseclaimRequestMainForm.vue'
|
|
|
|
import { PurchaseclaimRequestMain, PurchaseclaimRequestMainRules } from '@/utils/disposition/tableColumns'
|
|
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
|
|
|
|
|
|
|
defineOptions({ name: 'PurchaseclaimRequestMain' })
|
|
|
|
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
|
|
|
const queryParams = reactive({
|
|
|
|
pageNo: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
asnNumber: null,
|
|
|
|
ppNumber: null,
|
|
|
|
supplierCode: null,
|
|
|
|
number: null,
|
|
|
|
businessType: null,
|
|
|
|
remark: null,
|
|
|
|
createTime: [],
|
|
|
|
creator: null,
|
|
|
|
requestTime: [],
|
|
|
|
dueTime: [],
|
|
|
|
departmentCode: null,
|
|
|
|
status: null,
|
|
|
|
updateTime: [],
|
|
|
|
updater: null,
|
|
|
|
autoCommit: null,
|
|
|
|
autoAgree: null,
|
|
|
|
autoExecute: null,
|
|
|
|
directCreateRecord: null
|
|
|
|
})
|
|
|
|
const queryFormRef = ref() // 搜索的表单
|
|
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
|
|
|
|
|
|
/** 查询列表 */
|
|
|
|
// const getList = async () => {
|
|
|
|
// loading.value = true
|
|
|
|
// try {
|
|
|
|
// const data = await PurchaseclaimRequestMainApi.getPurchaseclaimRequestMainPage(queryParams)
|
|
|
|
// list.value = data.list
|
|
|
|
// total.value = data.total
|
|
|
|
// } finally {
|
|
|
|
// loading.value = false
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
const { tableObject, tableMethods } = useTable({
|
|
|
|
getListApi: PurchaseclaimRequestMainApi.getPurchaseclaimRequestMainPage // 分页接口
|
|
|
|
})
|
|
|
|
|
|
|
|
// 获得表格的各种操作
|
|
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
|
|
const HeadButttondata = [
|
|
|
|
defaultButtons.defaultAddBtn({ hasPermi: 'wms:itempackaging:create' }), // 新增
|
|
|
|
defaultButtons.defaultImportBtn({ hasPermi: 'wms:itempackaging:import' }), // 导入
|
|
|
|
defaultButtons.defaultExportBtn({ hasPermi: 'wms:itempackaging:export' }), // 导出
|
|
|
|
// defaultButtons.defaultFilterBtn(), // 筛选
|
|
|
|
defaultButtons.defaultFreshBtn(null), // 刷新
|
|
|
|
defaultButtons.defaultSetBtn(null), // 设置
|
|
|
|
// {
|
|
|
|
// label: '自定义扩展按钮',
|
|
|
|
// name: 'zdy',
|
|
|
|
// hide: false,
|
|
|
|
// type: 'primary',
|
|
|
|
// icon: 'Select',
|
|
|
|
// color: ''
|
|
|
|
// },
|
|
|
|
]
|
|
|
|
|
|
|
|
// 头部按钮事件
|
|
|
|
const buttonBaseClick = (val, item) => {
|
|
|
|
console.log(104, val)
|
|
|
|
if (val == 'add') { // 新增
|
|
|
|
openForm('create')
|
|
|
|
} else if (val == 'import') { // 导入
|
|
|
|
handleImport()
|
|
|
|
} else if (val == 'export') { // 导出
|
|
|
|
handleExport()
|
|
|
|
} else if (val == 'refresh') { // 刷新
|
|
|
|
getList()
|
|
|
|
} else if (val == 'filtrate') { // 筛选
|
|
|
|
} else { // 其他按钮
|
|
|
|
console.log('其他按钮', item)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 列表-操作按钮
|
|
|
|
const butttondata = [
|
|
|
|
defaultButtons.mainListEditBtn({ hasPermi: 'wms:itempackaging:update' }), // 编辑
|
|
|
|
defaultButtons.mainListDeleteBtn({ hasPermi: 'wms:itempackaging:delete' }), // 删除
|
|
|
|
]
|
|
|
|
|
|
|
|
// 列表-操作按钮事件
|
|
|
|
const buttonTableClick = async (val, row) => {
|
|
|
|
if (val == 'edit') { // 编辑
|
|
|
|
// const res = await ItempackagingApi.getItempackaging(row.id)
|
|
|
|
openForm('update', row)
|
|
|
|
} else if (val == 'delete') { // 删除
|
|
|
|
handleDelete(row.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
const handleQuery = () => {
|
|
|
|
queryParams.pageNo = 1
|
|
|
|
getList()
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
const resetQuery = () => {
|
|
|
|
queryFormRef.value.resetFields()
|
|
|
|
handleQuery()
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 添加/修改操作 */
|
|
|
|
const formRef = ref()
|
|
|
|
const openForm = (type: string, id?: number) => {
|
|
|
|
formRef.value.open(type, id)
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
const handleDelete = async (id: number) => {
|
|
|
|
try {
|
|
|
|
// 删除的二次确认
|
|
|
|
await message.delConfirm()
|
|
|
|
// 发起删除
|
|
|
|
await PurchaseclaimRequestMainApi.deletePurchaseclaimRequestMain(id)
|
|
|
|
message.success(t('common.delSuccess'))
|
|
|
|
// 刷新列表
|
|
|
|
await getList()
|
|
|
|
} catch { }
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
const handleExport = async () => {
|
|
|
|
try {
|
|
|
|
// 导出的二次确认
|
|
|
|
await message.exportConfirm()
|
|
|
|
// 发起导出
|
|
|
|
exportLoading.value = true
|
|
|
|
const data = await PurchaseclaimRequestMainApi.exportPurchaseclaimRequestMain(queryParams)
|
|
|
|
download.excel(data, '采购索赔申请主.xls')
|
|
|
|
} catch {
|
|
|
|
} finally {
|
|
|
|
exportLoading.value = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 初始化 **/
|
|
|
|
onMounted(() => {
|
|
|
|
getList()
|
|
|
|
})
|
|
|
|
</script>
|