You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
328 lines
9.0 KiB
328 lines
9.0 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<Search :schema="ContainerMain.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
<TableHead
|
|
:HeadButttondata="HeadButttondata"
|
|
@button-base-click="buttonBaseClick"
|
|
:routeName="routeName"
|
|
@updataTableColumns="updataTableColumns"
|
|
@searchFormClick="searchFormClick"
|
|
:allSchemas="ContainerMain.allSchemas"
|
|
/>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<Table
|
|
:columns="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 #number="{row}">
|
|
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)">
|
|
<span>{{ row.number }}</span>
|
|
</el-button>
|
|
</template>
|
|
<template #action="{ row }">
|
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" />
|
|
</template>
|
|
</Table>
|
|
</ContentWrap>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<BasicForm
|
|
ref="basicFormRef"
|
|
@success="formsSuccess"
|
|
:rules="ContainerMainRules"
|
|
:formAllSchemas="ContainerMain.allSchemas"
|
|
:apiUpdate="ContainerMainApi.updateContainerMain"
|
|
:apiCreate="ContainerMainApi.createContainerMain"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
:isBusiness="false"
|
|
/>
|
|
|
|
<!-- 详情 -->
|
|
<Detail
|
|
ref="detailRef"
|
|
:isBasic="false"
|
|
:allSchemas="ContainerMain.allSchemas"
|
|
:detailAllSchemas="ContainerDetail.allSchemas"
|
|
:detailAllSchemasRules="ContainerDetailRules"
|
|
:searchTableParams="searchTableParams"
|
|
:apiPage="ContainerDetailApi.getContainerDetailPage"
|
|
:apiCreate="ContainerDetailApi.createContainerDetail"
|
|
:apiUpdate="ContainerDetailApi.updateContainerDetail"
|
|
:apiDelete="ContainerDetailApi.deleteContainerDetail"
|
|
@searchTableSuccessDetail="searchTableSuccessDetail"
|
|
/>
|
|
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import download from '@/utils/download'
|
|
import { ContainerMain,ContainerMainRules,ContainerDetail,ContainerDetailRules } from './containerMain.data'
|
|
import * as ContainerMainApi from '@/api/wms/containerMain'
|
|
import * as ContainerDetailApi from '@/api/wms/containerDetail'
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
|
import TableHead from '@/components/TableHead/src/TableHead.vue'
|
|
import Detail from '@/components/Detail/src/Detail.vue'
|
|
|
|
defineOptions({ name: 'ContainerMain' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const route = useRoute() // 路由信息
|
|
const routeName = ref()
|
|
routeName.value = route.name
|
|
const tableColumns = ref(ContainerMain.allSchemas.tableColumns)
|
|
|
|
// 字段设置 更新主列表字段
|
|
const updataTableColumns = (val) => {
|
|
tableColumns.value = val
|
|
}
|
|
|
|
// 查询列表页面参数设置
|
|
const searchTableParams = ref([
|
|
//{
|
|
// formField: 'productItemCode',
|
|
// searchTableTitle: '物料信息',
|
|
// searchTableAllSchemas: Itembasic.allSchemas,
|
|
// searchTablePage: ItembasicApi.getItembasicPage
|
|
//}
|
|
])
|
|
|
|
const { tableObject, tableMethods } = useTable({
|
|
getListApi: ContainerMainApi.getContainerMainPage // 分页接口
|
|
})
|
|
|
|
// 获得表格的各种操作
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
const HeadButttondata = [
|
|
defaultButtons.defaultAddBtn({hasPermi:'wms:container-main:create'}), // 新增
|
|
defaultButtons.defaultImportBtn({hasPermi:'wms:container-main:import'}), // 导入
|
|
defaultButtons.defaultExportBtn({hasPermi:'wms:container-main:export'}), // 导出
|
|
defaultButtons.defaultFreshBtn(null), // 刷新
|
|
defaultButtons.defaultFilterBtn(null), // 筛选
|
|
defaultButtons.defaultSetBtn(null), // 设置
|
|
// {
|
|
// label: '自定义扩展按钮',
|
|
// name: 'zdy',
|
|
// hide: false,
|
|
// type: 'primary',
|
|
// icon: 'Select',
|
|
// color: ''
|
|
// },
|
|
]
|
|
|
|
// 头部按钮事件
|
|
const buttonBaseClick = (val, item) => {
|
|
if (val == 'add') { // 新增
|
|
openForm('create')
|
|
} else if (val == 'import') { // 导入
|
|
handleImport()
|
|
} else if (val == 'export') { // 导出
|
|
handleExport()
|
|
} else if (val == 'refresh') { // 刷新
|
|
if (tableObject.params.filters && tableObject.params.filters.length > 0 ) {
|
|
searchFormClick({
|
|
filters: tableObject.params.filters
|
|
})
|
|
} else {
|
|
getList()
|
|
}
|
|
} else if (val == 'filtrate') { // 筛选
|
|
} else { // 其他按钮
|
|
console.log('其他按钮', item)
|
|
}
|
|
}
|
|
|
|
// 列表-操作按钮
|
|
const butttondata = [
|
|
defaultButtons.mainListEditBtn({hasPermi:'wms:container-main:update'}), // 编辑
|
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:container-main:delete'}), // 删除
|
|
{
|
|
label: '维修',
|
|
name: 'repair',
|
|
hide: false,
|
|
type: 'primary',
|
|
color: '',
|
|
link: true, // 文本展现按钮
|
|
hasPermi: ''
|
|
},
|
|
{
|
|
label: '报废',
|
|
name: 'scrap',
|
|
hide: false,
|
|
type: 'danger',
|
|
color: '',
|
|
link: true, // 文本展现按钮
|
|
hasPermi: ''
|
|
}
|
|
]
|
|
|
|
// 列表-操作按钮事件
|
|
const buttonTableClick = async (val, row) => {
|
|
if (val == 'edit') { // 编辑
|
|
openForm('update', row)
|
|
} else if (val == 'delete') { // 删除
|
|
handleDelete(row.id)
|
|
} else if(val == 'repair'){ // 维修
|
|
repairSubmit(row.id)
|
|
} else if(val == 'scrap'){ // 报废
|
|
scrapSubmit(row.id)
|
|
}
|
|
}
|
|
|
|
/** 维修按钮操作 */
|
|
const repairSubmit = async (id: number) => {
|
|
try {
|
|
await message.confirm(t('common.confirmSubmit'))
|
|
tableObject.loading = true
|
|
await ContainerMainApi.repairSubmitContainerRequestMain(id)
|
|
message.success(t('common.submitSuccess'))
|
|
tableObject.loading = false
|
|
buttonBaseClick('refresh',null)
|
|
} catch {}
|
|
}
|
|
|
|
/** 报废按钮操作 */
|
|
const scrapSubmit = async (id: number) => {
|
|
try {
|
|
await message.confirm(t('common.confirmSubmit'))
|
|
tableObject.loading = true
|
|
await ContainerMainApi.scrapSubmitContainerRequestMain(id)
|
|
message.success(t('common.submitSuccess'))
|
|
tableObject.loading = false
|
|
buttonBaseClick('refresh',null)
|
|
} catch {}
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const basicFormRef = ref()
|
|
const openForm = (type: string, row?: any) => {
|
|
basicFormRef.value.open(type, row)
|
|
}
|
|
|
|
// 查询页面返回
|
|
const searchTableSuccess = (formField, searchField, val, formRef) => {
|
|
nextTick(() => {
|
|
const setV = {}
|
|
setV[formField] = val[0][searchField]
|
|
formRef.setValues(setV)
|
|
})
|
|
}
|
|
|
|
// 查询页面返回——详情
|
|
const searchTableSuccessDetail = (formField, searchField, val, formRef ) => {
|
|
nextTick(() => {
|
|
const setV = {}
|
|
if(formField == 'contentNumber'){
|
|
setV['contentNumber'] = val[0]['packingNumber']
|
|
setV['batch'] = val[0]['batch']
|
|
setV['inventoryStatus'] = val[0]['inventoryStatus']
|
|
setV['qty'] = val[0]['qty']
|
|
setV['uom'] = val[0]['uom']
|
|
setV['itemCode'] = val[0]['itemCode']
|
|
}else {
|
|
setV[formField] = val[0][searchField]
|
|
}
|
|
formRef.setValues(setV)
|
|
})
|
|
}
|
|
|
|
/** 详情操作 */
|
|
const detailRef = ref()
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => {
|
|
detailRef.value.openDetail(row, titleName, titleValue,"transactionContainerMain")
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
tableObject.loading = true
|
|
// 发起删除
|
|
await ContainerMainApi.deleteContainerMain(id)
|
|
message.success(t('common.delSuccess'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
buttonBaseClick('refresh',null)
|
|
} catch {}
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
exportLoading.value = true
|
|
const data = await ContainerMainApi.exportContainerMain(tableObject.params)
|
|
download.excel(data, '器具主.xls')
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
/** 导入 */
|
|
const importFormRef = ref()
|
|
const handleImport = () => {
|
|
importFormRef.value.open()
|
|
}
|
|
// 导入附件弹窗所需的参数
|
|
const importTemplateData = reactive({
|
|
templateUrl: '',
|
|
templateTitle: '器具主导入模版.xls'
|
|
})
|
|
// 导入成功之后
|
|
const importSuccess = () => {
|
|
getList()
|
|
}
|
|
|
|
// 筛选提交
|
|
const searchFormClick = (searchData) => {
|
|
tableObject.params = {
|
|
isSearch: true,
|
|
filters: searchData.filters
|
|
}
|
|
getList() // 刷新当前列表
|
|
}
|
|
|
|
// form表单提交
|
|
const formsSuccess = async (formType,data) => {
|
|
if (formType === 'create') {
|
|
await ContainerMainApi.createContainerMain(data)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await ContainerMainApi.updateContainerMain(data)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
basicFormRef.value.dialogVisible = false
|
|
if (formType === 'create') {
|
|
getList()
|
|
}else{
|
|
buttonBaseClick('refresh',null)
|
|
}
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
getList()
|
|
})
|
|
|
|
</script>
|
|
|