25 changed files with 2685 additions and 508 deletions
@ -0,0 +1,59 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface AgvLocationrelationVO { |
||||
|
id: number |
||||
|
reqCode: string |
||||
|
positionCode: string |
||||
|
positionArea: string |
||||
|
wmsArea: string |
||||
|
wmsPosition: string |
||||
|
available: string |
||||
|
remark: string |
||||
|
} |
||||
|
|
||||
|
// 查询AGV库位转换列表
|
||||
|
export const getAgvLocationrelationPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/wms/agv-locationrelation/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/wms/agv-locationrelation/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询AGV库位转换详情
|
||||
|
export const getAgvLocationrelation = async (id: number) => { |
||||
|
return await request.get({ url: `/wms/agv-locationrelation/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增AGV库位转换
|
||||
|
export const createAgvLocationrelation = async (data: AgvLocationrelationVO) => { |
||||
|
return await request.post({ url: `/wms/agv-locationrelation/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改AGV库位转换
|
||||
|
export const updateAgvLocationrelation = async (data: AgvLocationrelationVO) => { |
||||
|
return await request.put({ url: `/wms/agv-locationrelation/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除AGV库位转换
|
||||
|
export const deleteAgvLocationrelation = async (id: number) => { |
||||
|
return await request.delete({ url: `/wms/agv-locationrelation/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出AGV库位转换 Excel
|
||||
|
export const exportAgvLocationrelation = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/wms/agv-locationrelation/export-excel-senior', data }) |
||||
|
} else { |
||||
|
return await request.download({ url: `/wms/agv-locationrelation/export-excel`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/wms/agv-locationrelation/get-import-template' }) |
||||
|
} |
@ -0,0 +1,65 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface MesBarCodeVO { |
||||
|
id: number |
||||
|
plat: number |
||||
|
counter: string |
||||
|
sign: string |
||||
|
option: string |
||||
|
lowerLim: string |
||||
|
upperLimit: string |
||||
|
itac: string |
||||
|
type: string |
||||
|
lengthBc: number |
||||
|
posMat: string |
||||
|
lengthMat: number |
||||
|
posRevlv: string |
||||
|
partNumber: string |
||||
|
packLabel: string |
||||
|
oesLabel: string |
||||
|
checkRvl: string |
||||
|
days: number |
||||
|
available: string |
||||
|
remark: string |
||||
|
} |
||||
|
|
||||
|
// 查询生产条码清单列表
|
||||
|
export const getMesBarCodePage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/wms/mes-bar-code/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/wms/mes-bar-code/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询生产条码清单详情
|
||||
|
export const getMesBarCode = async (id: number) => { |
||||
|
return await request.get({ url: `/wms/mes-bar-code/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增生产条码清单
|
||||
|
export const createMesBarCode = async (data: MesBarCodeVO) => { |
||||
|
return await request.post({ url: `/wms/mes-bar-code/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改生产条码清单
|
||||
|
export const updateMesBarCode = async (data: MesBarCodeVO) => { |
||||
|
return await request.put({ url: `/wms/mes-bar-code/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除生产条码清单
|
||||
|
export const deleteMesBarCode = async (id: number) => { |
||||
|
return await request.delete({ url: `/wms/mes-bar-code/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出生产条码清单 Excel
|
||||
|
export const exportMesBarCode = async (params) => { |
||||
|
return await request.download({ url: `/wms/mes-bar-code/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/wms/mes-bar-code/get-import-template' }) |
||||
|
} |
@ -0,0 +1,681 @@ |
|||||
|
<template> |
||||
|
<div> |
||||
|
<el-drawer |
||||
|
v-model="isShowDrawer" |
||||
|
title="详情" |
||||
|
direction="rtl" |
||||
|
size="80%" |
||||
|
v-loading="detailLoading" |
||||
|
> |
||||
|
<template #header> |
||||
|
<div class="font-size-18px"> |
||||
|
{{ titleValueRef }} <span class="ml-20px font-size-16px">{{ titleNameRef }}</span> |
||||
|
</div> |
||||
|
</template> |
||||
|
<ContentWrap v-if="!isBasic"> |
||||
|
<Descriptions |
||||
|
:data="detailData" |
||||
|
labelClassName="label-class-name" |
||||
|
label-align="left" |
||||
|
direction="vertical" |
||||
|
:column="8" |
||||
|
:schema="allSchemas.detailSchema" |
||||
|
:columns="2" |
||||
|
width="200px" |
||||
|
/> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<Tabs :tabsList="tabsList" :current="current" @change="change" /> |
||||
|
<div class="flex"> |
||||
|
<!-- 详情 --> |
||||
|
<ContentWrap class="w-[73%]"> |
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
v-if="!isBasic" |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
:masterId="masterParmas.masterId" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="detailAllSchemas" |
||||
|
/> |
||||
|
<!-- 默认单表展现 --> |
||||
|
<Descriptions |
||||
|
v-if="isBasic && !tabsExtend" |
||||
|
:data="detailData" |
||||
|
:schema="allSchemas.detailSchema" |
||||
|
:columns="2" |
||||
|
/> |
||||
|
<!-- 单表切换tabs 展现table --> |
||||
|
<Table |
||||
|
v-if="isBasic && tabsExtend" |
||||
|
:columns="detailAllSchemasRef.tableColumns" |
||||
|
:data="tableObjectRef.tableList" |
||||
|
:loading="tableObjectRef.loading" |
||||
|
:pagination="{ total: tableObjectRef.total }" |
||||
|
v-model:pageSize="tableObjectRef.pageSize" |
||||
|
v-model:currentPage="tableObjectRef.currentPage" |
||||
|
> |
||||
|
<!-- <template #action="{ row }"> |
||||
|
<ButtonBase |
||||
|
:Butttondata="buttondata" |
||||
|
@button-base-click="buttonTableClick($event, row)" |
||||
|
/> |
||||
|
</template> --> |
||||
|
</Table> |
||||
|
<Table |
||||
|
v-if="!isBasic && fromeWhere != 'countPlan'" |
||||
|
:columns="detailAllSchemasRef.tableColumns" |
||||
|
:data="tableObjectRef.tableList" |
||||
|
:loading="tableObjectRef.loading" |
||||
|
:pagination="{ total: tableObjectRef.total }" |
||||
|
v-model:pageSize="tableObjectRef.pageSize" |
||||
|
v-model:currentPage="tableObjectRef.currentPage" |
||||
|
> |
||||
|
<template #photos="{ row }"> |
||||
|
<div v-for="(item,index) in row.photos.split(',')" :key="index" style="color:#409eff ; cursor: pointer;" @click="openImage(item)">{{ item }}</div> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase |
||||
|
:Butttondata="buttondata" |
||||
|
@button-base-click="buttonTableClick($event, row)" |
||||
|
/> |
||||
|
</template> |
||||
|
</Table> |
||||
|
<DetailTable |
||||
|
v-if="!isBasic && fromeWhere == 'countPlan' && isShowDrawer" |
||||
|
:columns="detailAllSchemasRef.tableColumns" |
||||
|
:data="tableObjectRef.tableList" |
||||
|
:allList="allList" |
||||
|
:countScopeType="countScopeType" |
||||
|
:key="updateKey" |
||||
|
> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase |
||||
|
:Butttondata="buttondata" |
||||
|
@button-base-click="buttonTableClick($event, row)" |
||||
|
/> |
||||
|
</template> |
||||
|
</DetailTable> |
||||
|
</ContentWrap> |
||||
|
<ContentWrap class="w-[27%] ml-16px"> |
||||
|
<!-- 附件组件 --> |
||||
|
<Annex |
||||
|
:annexData="annexData" |
||||
|
@handleAnnexSuccess="handleAnnexSuccess" |
||||
|
@deleteAnnexSuccess="deleteAnnexSuccess" |
||||
|
:upData="remarksData.data" |
||||
|
/> |
||||
|
<!-- 备注组件 --> |
||||
|
<Remarks |
||||
|
:remarksData="remarksData" |
||||
|
class="mt-20px" |
||||
|
@remarksSubmitScuess="remarksSubmitScuess" |
||||
|
/> |
||||
|
<!-- 变更记录组件 --> |
||||
|
<ChangeRecord :changeRecordData="changeRecordData" class="mt-20px" /> |
||||
|
</ContentWrap> |
||||
|
</div> |
||||
|
</el-drawer> |
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="formRef" |
||||
|
@success="submitForm" |
||||
|
:rules="detailAllSchemasRules" |
||||
|
:formAllSchemas="detailAllSchemas" |
||||
|
:isBusiness="false" |
||||
|
:apiUpdate="apiUpdate" |
||||
|
:apiCreate="apiCreate" |
||||
|
:fromeWhere="fromeWhere" |
||||
|
:isDetail="true" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:detailData="detailData" |
||||
|
@submitForm="submitForm" |
||||
|
@selectChangeDetail="selectChangeDetail" |
||||
|
:formTypeDetail="formTypeDetail" |
||||
|
:countPlanAllList="countPlanAllList" |
||||
|
@onChange="detailBasicFormOnChange" |
||||
|
@onBlur="onBlur" |
||||
|
@formFormDateChange="formFormDateChange" |
||||
|
/> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script lang="ts" setup> |
||||
|
import Annex from '@/components/Annex/src/Annex.vue' |
||||
|
import Remarks from '@/components/Remarks/src/Remarks.vue' |
||||
|
import ChangeRecord from '@/components/ChangeRecord/src/ChangeRecord.vue' |
||||
|
import Tabs from '@/components/Tabs/src/Tabs.vue' |
||||
|
import * as RemarkApi from '@/api/wms/remark' |
||||
|
import * as FileApi from '@/api/wms/file' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import BasicForm from '@/components/BasicForm/src/BasicForm.vue' |
||||
|
import TableHead from './TableHead.vue' |
||||
|
import DetailTable from '@/components/DetailTable/src/DetailTable.vue' |
||||
|
|
||||
|
defineOptions({ name: 'Detail' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
routeName.value = routeName.value.substring(0, routeName.value.length - 4) + 'Detail' |
||||
|
const updateKey = ref(0) |
||||
|
const addRef = ref() |
||||
|
const props = defineProps({ |
||||
|
// 标签参数 |
||||
|
tabs: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 是否是基础数据 展现详情顶部表单 |
||||
|
isBasic: { |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: false |
||||
|
}, |
||||
|
// 表单,列表 相关信息 |
||||
|
allSchemas: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 明细列表相关信息 |
||||
|
detailAllSchemas: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 明细验证 |
||||
|
detailAllSchemasRules: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 子表新增API |
||||
|
apiCreate: { |
||||
|
type: Function, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
// 子表编辑API |
||||
|
apiUpdate: { |
||||
|
type: Function, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
// 子表分页列表API |
||||
|
apiPage: { |
||||
|
type: Function, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
// 子表删除API |
||||
|
apiDelete: { |
||||
|
type: Function, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
// 子表新增修改校验 |
||||
|
detailValidate: { |
||||
|
type: Function, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
// 来源 countPlan盘点计划进入 |
||||
|
fromeWhere: { |
||||
|
type: String, |
||||
|
required: false, |
||||
|
default: '' |
||||
|
}, |
||||
|
// 获取接口列表集合 |
||||
|
allList: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 盘点范围类型 |
||||
|
countScopeType: { |
||||
|
type: Array, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
//盘点详情子表新增的时候判断盘点范围值显示输入框还是下拉框 |
||||
|
formTypeDetail: { |
||||
|
type: String, |
||||
|
required: false, |
||||
|
default: 'InputString' |
||||
|
}, |
||||
|
//盘点详情子表新增的时候判断盘点范围值的下拉列表 |
||||
|
countPlanAllList: { |
||||
|
type: Array, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
// 详情列表扩展操作按钮 |
||||
|
buttondataTable: { |
||||
|
type: Array, |
||||
|
required: false, |
||||
|
default: ()=>{ |
||||
|
return [] |
||||
|
} |
||||
|
}, |
||||
|
// 针对基础数据tabs扩展 显示table列表 默认false |
||||
|
tabsExtend: { |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: false |
||||
|
}, |
||||
|
// tableObject 数据过滤条件 针对 详情扩展标签页 传入不同条件 |
||||
|
tableObjectExtend: { |
||||
|
type: Array, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
// 子列表 筛选 展示与隐藏 ,默认展示 |
||||
|
detailButtonIsShowFilter:{ |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: true |
||||
|
}, |
||||
|
// 子列表 新增 展示与隐藏 ,默认展示 |
||||
|
detailButtonIsShowAdd:{ |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: true |
||||
|
}, |
||||
|
// 子列表 编辑 展示与隐藏 ,默认展示 |
||||
|
detailButtonIsShowEdit:{ |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: true |
||||
|
}, |
||||
|
// 子列表 删除 展示与隐藏 ,默认展示 |
||||
|
detailButtonIsShowDelete:{ |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: true |
||||
|
} |
||||
|
}) |
||||
|
const isShowDrawer = ref(false) |
||||
|
const detailLoading = ref(false) |
||||
|
const tabsList = ref(JSON.parse(JSON.stringify(props.tabs ? props.tabs : ''))) |
||||
|
|
||||
|
if (props.isBasic == true) { |
||||
|
if (tabsList.value && tabsList.value.length > 0) { |
||||
|
tabsList.value.unshift({ |
||||
|
label: '详情', |
||||
|
prop: 'Detail' |
||||
|
}) |
||||
|
} |
||||
|
} else { |
||||
|
if (tabsList.value && tabsList.value.length > 0) { |
||||
|
} else { |
||||
|
tabsList.value = [ |
||||
|
{ |
||||
|
label: '明细', |
||||
|
prop: 'Detail' |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
} |
||||
|
if (tabsList.value) { |
||||
|
} |
||||
|
|
||||
|
// 附件默认数据 |
||||
|
const annexData = reactive({ |
||||
|
annexList: [] |
||||
|
}) |
||||
|
|
||||
|
// 备注数据 |
||||
|
const remarksData = reactive({ |
||||
|
remarksList: [], |
||||
|
data: {} |
||||
|
}) |
||||
|
|
||||
|
// 变更记录默认数据 |
||||
|
const changeRecordData = reactive({ |
||||
|
changeRecordList: [] |
||||
|
}) |
||||
|
const detailData = ref({}) //详情数据 |
||||
|
// 获取附件列表篇 |
||||
|
const getFileList = async () => { |
||||
|
detailLoading.value = true |
||||
|
try { |
||||
|
annexData.annexList = await FileApi.getFileList(remarksData.data) |
||||
|
} finally { |
||||
|
detailLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
/** 添加附件 */ |
||||
|
const handleAnnexSuccess = () => { |
||||
|
getFileList() |
||||
|
getChangeRecordList() |
||||
|
} |
||||
|
// 删除附件成功之后所走的方法 |
||||
|
const deleteAnnexSuccess = async () => { |
||||
|
getFileList() |
||||
|
getChangeRecordList() |
||||
|
} |
||||
|
|
||||
|
// Tabs当前选择 |
||||
|
const current = ref(0) |
||||
|
const change = (item, index) => { |
||||
|
current.value = index |
||||
|
emit('changeTabs', item) |
||||
|
} |
||||
|
|
||||
|
//主表所需的参数 |
||||
|
const masterParmas = ref({ |
||||
|
masterId: '', //主表id |
||||
|
number: '', //主表单据号 |
||||
|
status: '' //主表状态 用于控制子表新增编辑按钮显示情况 |
||||
|
}) |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = ref() |
||||
|
// 列表-操作按钮 |
||||
|
const buttondata = ref() |
||||
|
|
||||
|
/** 打开弹窗 */ |
||||
|
const formRef = ref() |
||||
|
const titleNameRef = ref() |
||||
|
const titleValueRef = ref() |
||||
|
const openDetail = async (row: any, titleName: any, titleValue: any, tableName: any) => { |
||||
|
titleNameRef.value = titleName |
||||
|
titleValueRef.value = titleValue |
||||
|
remarksData.data = { |
||||
|
tableId: row.id, |
||||
|
tableName: tableName |
||||
|
} |
||||
|
// 加载明细列表 |
||||
|
if (!props.isBasic) { |
||||
|
// 设置主表id |
||||
|
masterParmas.value.masterId = row.id |
||||
|
masterParmas.value.number = row.number |
||||
|
masterParmas.value.status = row.status |
||||
|
tableObjectRef.value.params = { |
||||
|
masterId: row.id |
||||
|
} |
||||
|
await getList() |
||||
|
} |
||||
|
isShowDrawer.value = true |
||||
|
if (row) { |
||||
|
detailLoading.value = true |
||||
|
try { |
||||
|
detailData.value = row |
||||
|
getRemarkList() |
||||
|
getFileList() |
||||
|
getChangeRecordList() |
||||
|
// 判断详情按钮是否显示 |
||||
|
let detailButtonFilter: any = [] |
||||
|
let detailButtonAdd: any = [] |
||||
|
if (props.detailButtonIsShowFilter) { |
||||
|
// 筛选 |
||||
|
detailButtonFilter = [ |
||||
|
defaultButtons.defaultFilterBtn(null) |
||||
|
] |
||||
|
} |
||||
|
if (props.detailButtonIsShowAdd) { |
||||
|
// 新增 |
||||
|
detailButtonAdd = [ |
||||
|
defaultButtons.defaultAddBtn({ |
||||
|
hide: isShowMainButton(row, ['1']) |
||||
|
}) |
||||
|
] |
||||
|
} |
||||
|
HeadButttondata.value = [...detailButtonFilter,...detailButtonAdd] |
||||
|
|
||||
|
|
||||
|
let detailButtonEdit: any = [] |
||||
|
let detailButtonDelete: any = [] |
||||
|
if (props.detailButtonIsShowEdit) { |
||||
|
// 编辑 |
||||
|
detailButtonEdit = [ |
||||
|
defaultButtons.mainListEditBtn({ |
||||
|
hide: isShowMainButton(row, ['1']) |
||||
|
}) |
||||
|
] |
||||
|
} |
||||
|
if (props.detailButtonIsShowDelete) { |
||||
|
// 删除 |
||||
|
detailButtonDelete = [ |
||||
|
defaultButtons.mainListDeleteBtn({ |
||||
|
hide: isShowMainButton(row, ['1']) |
||||
|
}) |
||||
|
] |
||||
|
} |
||||
|
buttondata.value = [...detailButtonEdit,...detailButtonDelete,...props.buttondataTable] |
||||
|
|
||||
|
} finally { |
||||
|
detailLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
defineExpose({ openDetail, formRef }) // 提供 open 方法,用于打开弹窗 |
||||
|
|
||||
|
// 获取备注列表 |
||||
|
const getRemarkList = async () => { |
||||
|
detailLoading.value = true |
||||
|
try { |
||||
|
remarksData.remarksList = await RemarkApi.getRemarkPage(remarksData.data) |
||||
|
} finally { |
||||
|
detailLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
// 备注提交成功之后 |
||||
|
const remarksSubmitScuess = async (remark) => { |
||||
|
detailLoading.value = false |
||||
|
getRemarkList() |
||||
|
getChangeRecordList() |
||||
|
} |
||||
|
// 获取变更记录 |
||||
|
const getChangeRecordList = async () => { |
||||
|
changeRecordData.changeRecordList = await RemarkApi.getChangeRecordPage(remarksData.data) |
||||
|
} |
||||
|
|
||||
|
const tableObjectRef = ref() |
||||
|
const tableMethodsRef = ref() |
||||
|
const detailAllSchemasRef = ref() |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: props.apiPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
tableObjectRef.value = tableObject |
||||
|
tableMethodsRef.value = tableMethods |
||||
|
detailAllSchemasRef.value = props.detailAllSchemas |
||||
|
|
||||
|
// 根据状态返回该按钮是否显示 |
||||
|
const isShowMainButton = (row, val) => { |
||||
|
if (val.indexOf(row.status) > -1) { |
||||
|
return false |
||||
|
} else { |
||||
|
return true |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList } = tableMethodsRef.value |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { |
||||
|
// 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'refresh') { |
||||
|
// 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { |
||||
|
// 筛选 |
||||
|
} else { |
||||
|
// 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
// const updataTableColumns = (val) => { |
||||
|
// detailAllSchemas.tableColumns.value = val |
||||
|
// } |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { |
||||
|
// 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { |
||||
|
// 删除 |
||||
|
handleDelete(row.id) |
||||
|
} else { |
||||
|
emit('tableFormButton',val, row) |
||||
|
} |
||||
|
} |
||||
|
/** 添加/修改操作 */ |
||||
|
const openForm = async (type: string, row?: number) => { |
||||
|
formRef.value.open(type, row, masterParmas.value) |
||||
|
emit('detailOpenForm', type, row) |
||||
|
} |
||||
|
// form 提交 |
||||
|
const submitForm = async (formType, data) => { |
||||
|
try { |
||||
|
// 子表新增编辑校验 如果业务需要子表提交校验 需在主页详情组件添加 detailValidate 参数及方法 |
||||
|
const rs = (await props.detailValidate) ? await props.detailValidate(data) : true |
||||
|
if (!rs) return |
||||
|
if (formType === 'create') { |
||||
|
await props.apiCreate(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await props.apiUpdate(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
formRef.value.dialogVisible = false |
||||
|
// 刷新当前列表 |
||||
|
await getList() |
||||
|
updateKey.value += 1 |
||||
|
} finally { |
||||
|
formRef.value.formLoading = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
emit('searchTableSuccessDetail', formField, searchField, val, formRef) |
||||
|
} |
||||
|
// 传递给父类 |
||||
|
const emit = defineEmits([ |
||||
|
'searchTableSuccessDetail', |
||||
|
'changeTabs', |
||||
|
'selectChangeDetail', |
||||
|
'detailOpenForm', |
||||
|
'tableFormButton', |
||||
|
'openImage', |
||||
|
'onBlur', |
||||
|
'detailBasicFormOnChange', |
||||
|
'formFormDateChange' |
||||
|
]) |
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
tableObject.loading = true |
||||
|
// 发起删除 |
||||
|
await props.apiDelete(id) |
||||
|
tableObject.loading = false |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
updateKey.value += 1 |
||||
|
} catch {} |
||||
|
} |
||||
|
// 筛选提交 |
||||
|
const searchFormClick = async (searchData) => { |
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: props.apiPage // 分页接口 |
||||
|
}) |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
? searchData.filters |
||||
|
: [{ column: 'masterId', action: '==', value: masterParmas.value.masterId }] |
||||
|
} |
||||
|
detailAllSchemasRef.value = props.detailAllSchemas |
||||
|
tableObjectRef.value = tableObject |
||||
|
tableMethodsRef.value = tableMethods |
||||
|
tableObjectRef.value.tableList = [] |
||||
|
const { getList } = tableMethods |
||||
|
await getList() |
||||
|
updateKey.value += 1 |
||||
|
// tableObjectRef.value.params = { |
||||
|
// isSearch: true, |
||||
|
// filters: searchData.filters |
||||
|
// ? searchData.filters |
||||
|
// : [{ column: 'masterId', action: '==', value: masterParmas.value.masterId }] |
||||
|
// } |
||||
|
// getList() // 刷新当前列表 |
||||
|
} |
||||
|
// 选择盘点类型的时候针对限值的操作 |
||||
|
const selectChangeDetail = (field, val) => { |
||||
|
emit('selectChangeDetail', field, val) |
||||
|
} |
||||
|
// 打开图片 |
||||
|
const openImage=(item)=>{ |
||||
|
emit('openImage', item) |
||||
|
} |
||||
|
/** |
||||
|
* 监听改变事件 |
||||
|
* @param field 当前操作字段 |
||||
|
* @param cur 改变后值 |
||||
|
*/ |
||||
|
const detailBasicFormOnChange = (field, cur) => { |
||||
|
emit('detailBasicFormOnChange', field, cur) |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 监听失焦事件 |
||||
|
* @param field 当前操作字段 |
||||
|
* @param e |
||||
|
*/ |
||||
|
const onBlur = (field, e) => { |
||||
|
emit('onBlur', field, e) |
||||
|
} |
||||
|
|
||||
|
// 日期改变事件 |
||||
|
const formFormDateChange = (field, val,row, index) => { |
||||
|
emit('formFormDateChange', field, val,row, index) |
||||
|
} |
||||
|
//监视属性 |
||||
|
watch( |
||||
|
() => props.apiPage, |
||||
|
() => { |
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: props.apiPage // 分页接口 |
||||
|
}) |
||||
|
tableObject.params.masterId = masterParmas.value.masterId |
||||
|
detailAllSchemasRef.value = props.detailAllSchemas |
||||
|
if (props.tableObjectExtend) { |
||||
|
props.tableObjectExtend.forEach(item => { |
||||
|
tableObject.params[item.key] = item.value |
||||
|
}) |
||||
|
} |
||||
|
tableObjectRef.value = tableObject |
||||
|
tableMethodsRef.value = tableMethods |
||||
|
const { getList } = tableMethods |
||||
|
getList() |
||||
|
} |
||||
|
) |
||||
|
</script> |
||||
|
<style lang="scss"> |
||||
|
.el-drawer__body { |
||||
|
background: #f5f5f5 !important; |
||||
|
} |
||||
|
|
||||
|
::v-deep(.label-class-name) { |
||||
|
color: #dedede; |
||||
|
} |
||||
|
</style> |
||||
|
<style scoped lang="scss"></style> |
@ -0,0 +1,160 @@ |
|||||
|
<template> |
||||
|
<div class="tableNavBtnsContent" ref="tableNavBtnsContent_Ref"> |
||||
|
<div class="searchBox"> |
||||
|
<div class="tableNavLeftBtns"> |
||||
|
<ButtonBase |
||||
|
:Butttondata="buttonsLeft" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
/> |
||||
|
</div> |
||||
|
<div class="tableNavRightBtns"> |
||||
|
<!-- 右侧按钮 --> |
||||
|
<ButtonBase :Butttondata="buttonsRight" @button-base-click="buttonBaseClick" @updata-table-columns="updataTableColumns" |
||||
|
:allSchemas="allSchemas" ref="rowDropRef"/> |
||||
|
</div> |
||||
|
</div> |
||||
|
<slot></slot> |
||||
|
</div> |
||||
|
<!-- 字段设置弹窗 --> |
||||
|
<!-- <rowDrop |
||||
|
ref="rowDropRef" |
||||
|
@updata-table-columns="updataTableColumns" |
||||
|
:allSchemas="allSchemas" |
||||
|
/> --> |
||||
|
<!-- 高级筛选 --> |
||||
|
<SearchHigh |
||||
|
ref="searchHigh_Ref" |
||||
|
class="searchHighClass" |
||||
|
:routeName="routeName" |
||||
|
:masterId="masterId" |
||||
|
:showPrimaryBaseButton="false" |
||||
|
@search-form-click="searchFormClick" |
||||
|
:isHighExcludePrimary="false" |
||||
|
:primarySearchCustomButton="[]" |
||||
|
:highSearchCustomButton="[]" |
||||
|
:allSchemas="allSchemas" |
||||
|
/> |
||||
|
</template> |
||||
|
<script setup> |
||||
|
import ButtonBase from '@/components/XButton/src/ButtonBase.vue' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import rowDrop from "@/components/rowDrop/index.vue" |
||||
|
|
||||
|
const props = defineProps({ |
||||
|
HeadButttondata: { |
||||
|
type: Array, |
||||
|
default: () => { |
||||
|
return [] |
||||
|
} |
||||
|
}, |
||||
|
// 主组件name值 |
||||
|
routeName: { |
||||
|
type: String, |
||||
|
default: '' |
||||
|
}, |
||||
|
// 从子表进行高级搜索 |
||||
|
masterId: { |
||||
|
type: String, |
||||
|
default: '' |
||||
|
}, |
||||
|
allSchemas: { |
||||
|
type: Object, |
||||
|
default: null |
||||
|
} |
||||
|
}) |
||||
|
const buttonsLeft = ref([]) |
||||
|
const buttonsRight = ref([]) |
||||
|
const tableNavBtnsContent_Ref = ref() |
||||
|
|
||||
|
// 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
emit('updataTableColumns', val) |
||||
|
} |
||||
|
|
||||
|
// const defaultButtons = inject('global').defaultButtons |
||||
|
// 创建左右按钮数据 |
||||
|
const buttonsLeftOrRight = () => { |
||||
|
buttonsRight.value = [] |
||||
|
buttonsLeft.value = [] |
||||
|
// 判断是否有筛选按钮(判断筛选按钮的逻辑位置,影响筛选按钮的位置) |
||||
|
// let _primarySearchOption = primarySearch[props.vueName] |
||||
|
// let _highSearchOption = highSearch[props.vueName] |
||||
|
// if(_primarySearchOption || _highSearchOption){ |
||||
|
// buttonsRight.value.push(defaultButtons.defaultFilterBtn()) |
||||
|
// } |
||||
|
// 父级传参处理左右 |
||||
|
props.HeadButttondata.forEach(item=>{ |
||||
|
if(item.float && item.float == 'right'){ |
||||
|
buttonsRight.value.push(item) |
||||
|
}else{ |
||||
|
buttonsLeft.value.push(item) |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
buttonsLeftOrRight() |
||||
|
|
||||
|
watch( |
||||
|
() => props.HeadButttondata, |
||||
|
() => { |
||||
|
buttonsLeftOrRight() |
||||
|
} |
||||
|
) |
||||
|
|
||||
|
|
||||
|
// 传递给父类 |
||||
|
const emit = defineEmits([ |
||||
|
'buttonBaseClick', |
||||
|
'updataTableColumns', |
||||
|
'searchFormClick' |
||||
|
]) |
||||
|
|
||||
|
// 设置显示隐藏变量 |
||||
|
const rowDropRef = ref() |
||||
|
|
||||
|
|
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
// 设置按钮 |
||||
|
if (val == 'set') { |
||||
|
rowDropRef.value.popoverVisible = !rowDropRef.value.popoverVisible |
||||
|
} else if (val == 'filtrate') { |
||||
|
searchHigh_Ref.value.popoverVisible = true |
||||
|
} else { |
||||
|
emit('buttonBaseClick', val, item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
const quicklySearchDom_Ref = ref() |
||||
|
|
||||
|
// 筛选组件 |
||||
|
const searchHigh_Ref = ref(false) |
||||
|
// 高级筛选所有的按钮事件 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
emit('searchFormClick', searchData) |
||||
|
searchHigh_Ref.value.popoverVisible = false |
||||
|
} |
||||
|
|
||||
|
defineExpose({ |
||||
|
tableNavBtnsContent_Ref, |
||||
|
quicklySearchDom_Ref |
||||
|
}) |
||||
|
|
||||
|
</script> |
||||
|
<style lang="scss" scoped> |
||||
|
.tableNavBtnsContent{ |
||||
|
padding-bottom: 10px; |
||||
|
.searchBox{ |
||||
|
display: flex; |
||||
|
justify-content: space-between; |
||||
|
} |
||||
|
.tableNavLeftBtns{ |
||||
|
display: flex; |
||||
|
|
||||
|
margin-left: -5px; |
||||
|
} |
||||
|
.tableNavRightBtns{ |
||||
|
display: flex; |
||||
|
margin-left: 10px; |
||||
|
margin-right: -5px; |
||||
|
} |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,151 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
import * as AreaApi from '@/api/wms/areabasic' |
||||
|
import { Area } from '@/views/wms/basicDataManage/factoryModeling/areabasic/areabasic.data' |
||||
|
import * as LocationApi from '@/api/wms/location' |
||||
|
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const AgvLocationrelationRules = reactive({ |
||||
|
positionCode: [ |
||||
|
{ required: true, message: '请填写AGV点位', trigger: 'change' } |
||||
|
], |
||||
|
positionArea: [ |
||||
|
{ required: true, message: '请填写AGV库区', trigger: 'change' } |
||||
|
], |
||||
|
wmsArea: [ |
||||
|
{ required: true, message: '请填写WMS库区', trigger: 'change' } |
||||
|
], |
||||
|
wmsPosition: [ |
||||
|
{ required: true, message: '请填写WMS库位', trigger: 'change' } |
||||
|
] |
||||
|
}) |
||||
|
|
||||
|
export const AgvLocationrelation = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'reqCode', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
isForm: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'AGV点位', |
||||
|
field: 'positionCode', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'AGV库区', |
||||
|
field: 'positionArea', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'WMS库区', |
||||
|
field: 'wmsArea', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择库区代码', // 输入框占位文本
|
||||
|
searchField: 'code', // 查询弹窗赋值字段
|
||||
|
searchTitle: '库区信息', // 查询弹窗标题
|
||||
|
searchAllSchemas: Area.allSchemas, // 查询弹窗所需类
|
||||
|
searchPage: AreaApi.getAreaPage, // 查询弹窗所需分页方法
|
||||
|
searchCondition: [{ |
||||
|
key: 'available', |
||||
|
value: 'TRUE', |
||||
|
isMainValue: false |
||||
|
}] |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: 'WMS库位', |
||||
|
field: 'wmsPosition', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
// labelMessage: '信息提示说明!!!',
|
||||
|
componentProps: { |
||||
|
isSearchList: true, // 开启查询弹窗
|
||||
|
searchListPlaceholder: '请选择库位代码', // 输入框占位文本
|
||||
|
searchField: 'code', // 查询弹窗赋值字段
|
||||
|
searchTitle: '库位信息', // 查询弹窗标题
|
||||
|
searchAllSchemas: Location.allSchemas, // 查询弹窗所需类
|
||||
|
searchPage: LocationApi.getLocationPage, // 查询弹窗所需分页方法
|
||||
|
searchCondition: [{ |
||||
|
key: 'available', |
||||
|
value: 'TRUE', |
||||
|
isMainValue: false |
||||
|
}, |
||||
|
{ |
||||
|
key: 'areaCode', |
||||
|
value: "wmsArea", |
||||
|
message: '请选择库区代码!', |
||||
|
isMainValue: true |
||||
|
}] |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
isSearch: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: 'TRUE', |
||||
|
componentProps: { |
||||
|
inactiveValue: 'FALSE', |
||||
|
activeValue: 'TRUE' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: true, |
||||
|
search: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
||||
|
type: 'daterange', |
||||
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
||||
|
} |
||||
|
}, |
||||
|
detail: { |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
||||
|
}, |
||||
|
isForm: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
isDetail: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
@ -0,0 +1,267 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="AgvLocationrelation.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="AgvLocationrelation.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 #reqCode="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.reqCode)"> |
||||
|
<span>{{ row.reqCode }}</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="AgvLocationrelationRules" |
||||
|
:formAllSchemas="AgvLocationrelation.allSchemas" |
||||
|
:apiUpdate="AgvLocationrelationApi.updateAgvLocationrelation" |
||||
|
:apiCreate="AgvLocationrelationApi.createAgvLocationrelation" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail |
||||
|
ref="detailRef" |
||||
|
:isBasic="true" |
||||
|
:allSchemas="AgvLocationrelation.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/wms/agv-locationrelation/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { AgvLocationrelation,AgvLocationrelationRules } from './agvLocationrelation.data' |
||||
|
import * as AgvLocationrelationApi from '@/api/wms/agvLocationrelation' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'AgvLocationrelation' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(AgvLocationrelation.allSchemas.tableColumns) |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: AgvLocationrelationApi.getAgvLocationrelationPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'wms:agv-locationrelation:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'wms:agv-locationrelation:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'wms:agv-locationrelation: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') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'wms:agv-locationrelation:update'}), // 编辑 |
||||
|
defaultButtons.mainListDeleteBtn({hasPermi:'wms:agv-locationrelation:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
if(type == "update"){ |
||||
|
AgvLocationrelation.allSchemas.formSchema.forEach((item) => { |
||||
|
if (item.field == 'positionCode') { |
||||
|
item.componentProps.disabled = true |
||||
|
} |
||||
|
if (item.field == 'positionArea') { |
||||
|
item.componentProps.disabled = true |
||||
|
} |
||||
|
}) |
||||
|
}else { |
||||
|
AgvLocationrelation.allSchemas.formSchema.forEach((item) => { |
||||
|
if (item.field == 'positionCode') { |
||||
|
item.componentProps.disabled = false |
||||
|
} |
||||
|
if (item.field == 'positionArea') { |
||||
|
item.componentProps.disabled = false |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const formsSuccess = async (formType,data) => { |
||||
|
var isHave =AgvLocationrelation.allSchemas.formSchema.some(function (item) { |
||||
|
return item.field === 'activeTime' || item.field === 'expireTime'; |
||||
|
}); |
||||
|
if(isHave){ |
||||
|
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
||||
|
message.error('失效时间要大于生效时间') |
||||
|
return; |
||||
|
} |
||||
|
} |
||||
|
if(data.activeTime==0)data.activeTime = null; |
||||
|
if(data.expireTime==0)data.expireTime = null; |
||||
|
if (formType === 'create') { |
||||
|
await AgvLocationrelationApi.createAgvLocationrelation(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await AgvLocationrelationApi.updateAgvLocationrelation(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicAgvLocationrelation') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await AgvLocationrelationApi.deleteAgvLocationrelation(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await AgvLocationrelationApi.exportAgvLocationrelation(tableObject.params) |
||||
|
download.excel(data, 'AGV库位转换.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: 'AGV库位转换导入模版.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await AgvLocationrelationApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,244 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="MesBarCode.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="MesBarCode.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 #code="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
||||
|
<span>{{ row.code }}</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="MesBarCodeRules" |
||||
|
:formAllSchemas="MesBarCode.allSchemas" |
||||
|
:apiUpdate="MesBarCodeApi.updateMesBarCode" |
||||
|
:apiCreate="MesBarCodeApi.createMesBarCode" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="MesBarCode.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/wms/mes-bar-code/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { MesBarCode,MesBarCodeRules } from './mesBarCode.data' |
||||
|
import * as MesBarCodeApi from '@/api/wms/mesBarCode' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
|
||||
|
defineOptions({ name: 'MesBarCode' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(MesBarCode.allSchemas.tableColumns) |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: MesBarCodeApi.getMesBarCodePage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'wms:mes-bar-code:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'wms:mes-bar-code:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'wms:mes-bar-code: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') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'wms:mesBarCode:update'}), // 编辑 |
||||
|
defaultButtons.mainListDeleteBtn({hasPermi:'wms:mesBarCode:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const formsSuccess = async (formType,data) => { |
||||
|
var isHave =MesBarCode.allSchemas.formSchema.some(function (item) { |
||||
|
return item.field === 'activeTime' || item.field === 'expireTime'; |
||||
|
}); |
||||
|
if(isHave){ |
||||
|
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
||||
|
message.error('失效时间要大于生效时间') |
||||
|
return; |
||||
|
} |
||||
|
} |
||||
|
if(data.activeTime==0)data.activeTime = null; |
||||
|
if(data.expireTime==0)data.expireTime = null; |
||||
|
if (formType === 'create') { |
||||
|
await MesBarCodeApi.createMesBarCode(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await MesBarCodeApi.updateMesBarCode(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicMesBarCode') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await MesBarCodeApi.deleteMesBarCode(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await MesBarCodeApi.exportMesBarCode(tableObject.params) |
||||
|
download.excel(data, '生产条码清单.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: '生产条码清单导入模版.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await MesBarCodeApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,174 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const MesBarCodeRules = reactive({ |
||||
|
available: [required], |
||||
|
}) |
||||
|
|
||||
|
export const MesBarCode = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Plnt', |
||||
|
field: 'plat', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Counter', |
||||
|
field: 'counter', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'SIGN', |
||||
|
field: 'sign', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Option', |
||||
|
field: 'option', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Lower Lim.', |
||||
|
field: 'lowerLim', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'UpperLimit', |
||||
|
field: 'upperLimit', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'ITAC', |
||||
|
field: 'itac', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Type', |
||||
|
field: 'type', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Length BC', |
||||
|
field: 'lengthBc', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Pos. mat', |
||||
|
field: 'posMat', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Length mat', |
||||
|
field: 'lengthMat', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Pos. revlv', |
||||
|
field: 'posRevlv', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Part number', |
||||
|
field: 'partNumber', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Pack Label', |
||||
|
field: 'packLabel', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'OES-Label', |
||||
|
field: 'oesLabel', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Check Rvl', |
||||
|
field: 'checkRvl', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: 'Days', |
||||
|
field: 'days', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: true, |
||||
|
search: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
||||
|
type: 'daterange', |
||||
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
||||
|
} |
||||
|
}, |
||||
|
isForm: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
Loading…
Reference in new issue