31 changed files with 2834 additions and 701 deletions
@ -1,54 +0,0 @@ |
|||||
import request from '@/config/axios' |
|
||||
|
|
||||
export interface PartternTypeVO { |
|
||||
deleteTime: Date |
|
||||
id: number |
|
||||
status: string |
|
||||
concurrencyStamp: number |
|
||||
remark: string |
|
||||
deleter: string |
|
||||
siteId: number |
|
||||
code: string |
|
||||
name: string |
|
||||
} |
|
||||
|
|
||||
// 查询模具类型列表
|
|
||||
export const getPartternTypePage = async (params) => { |
|
||||
if (params.isSearch) { |
|
||||
delete params.isSearch |
|
||||
const data = {...params} |
|
||||
return await request.post({ url: '/mes/parttern-type/senior', data }) |
|
||||
} else { |
|
||||
return await request.get({ url: `/mes/parttern-type/page`, params }) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 查询模具类型详情
|
|
||||
export const getPartternType = async (id: number) => { |
|
||||
return await request.get({ url: `/mes/parttern-type/get?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 新增模具类型
|
|
||||
export const createPartternType = async (data: PartternTypeVO) => { |
|
||||
return await request.post({ url: `/mes/parttern-type/create`, data }) |
|
||||
} |
|
||||
|
|
||||
// 修改模具类型
|
|
||||
export const updatePartternType = async (data: PartternTypeVO) => { |
|
||||
return await request.put({ url: `/mes/parttern-type/update`, data }) |
|
||||
} |
|
||||
|
|
||||
// 删除模具类型
|
|
||||
export const deletePartternType = async (id: number) => { |
|
||||
return await request.delete({ url: `/mes/parttern-type/delete?id=` + id }) |
|
||||
} |
|
||||
|
|
||||
// 导出模具类型 Excel
|
|
||||
export const exportPartternType = async (params) => { |
|
||||
return await request.download({ url: `/mes/parttern-type/export-excel`, params }) |
|
||||
} |
|
||||
|
|
||||
// 下载用户导入模板
|
|
||||
export const importTemplate = () => { |
|
||||
return request.download({ url: '/mes/parttern-type/get-import-template' }) |
|
||||
} |
|
@ -0,0 +1,66 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface PatternVO { |
||||
|
deleteTime: Date |
||||
|
id: number |
||||
|
status: string |
||||
|
concurrencyStamp: number |
||||
|
remark: string |
||||
|
deleter: string |
||||
|
siteId: number |
||||
|
code: string |
||||
|
name: string |
||||
|
partternName: string |
||||
|
productCode: string |
||||
|
dateUseStart: Date |
||||
|
dateUseStop: Date |
||||
|
partternFrom: string |
||||
|
partternGo: string |
||||
|
initCout: number |
||||
|
effectStart: Date |
||||
|
effectEnd: Date |
||||
|
factoryCode: string |
||||
|
factoryName: string |
||||
|
factoryType: string |
||||
|
} |
||||
|
|
||||
|
// 查询模具基本信息列表
|
||||
|
export const getPatternPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/mes/pattern/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/mes/pattern/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询模具基本信息详情
|
||||
|
export const getPattern = async (id: number) => { |
||||
|
return await request.get({ url: `/mes/pattern/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增模具基本信息
|
||||
|
export const createPattern = async (data: PatternVO) => { |
||||
|
return await request.post({ url: `/mes/pattern/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改模具基本信息
|
||||
|
export const updatePattern = async (data: PatternVO) => { |
||||
|
return await request.put({ url: `/mes/pattern/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除模具基本信息
|
||||
|
export const deletePattern = async (id: number) => { |
||||
|
return await request.delete({ url: `/mes/pattern/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出模具基本信息 Excel
|
||||
|
export const exportPattern = async (params) => { |
||||
|
return await request.download({ url: `/mes/pattern/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/mes/pattern/get-import-template' }) |
||||
|
} |
@ -0,0 +1,54 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface PatternTypeVO { |
||||
|
deleteTime: Date |
||||
|
id: number |
||||
|
status: string |
||||
|
concurrencyStamp: number |
||||
|
remark: string |
||||
|
deleter: string |
||||
|
siteId: number |
||||
|
code: string |
||||
|
name: string |
||||
|
} |
||||
|
|
||||
|
// 查询模具类型列表
|
||||
|
export const getPatternTypePage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/mes/pattern-type/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/mes/pattern-type/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询模具类型详情
|
||||
|
export const getPatternType = async (id: number) => { |
||||
|
return await request.get({ url: `/mes/pattern-type/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增模具类型
|
||||
|
export const createPatternType = async (data: PatternTypeVO) => { |
||||
|
return await request.post({ url: `/mes/pattern-type/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改模具类型
|
||||
|
export const updatePatternType = async (data: PatternTypeVO) => { |
||||
|
return await request.put({ url: `/mes/pattern-type/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除模具类型
|
||||
|
export const deletePatternType = async (id: number) => { |
||||
|
return await request.delete({ url: `/mes/pattern-type/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出模具类型 Excel
|
||||
|
export const exportPatternType = async (params) => { |
||||
|
return await request.download({ url: `/mes/pattern-type/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/mes/pattern-type/get-import-template' }) |
||||
|
} |
@ -0,0 +1,696 @@ |
|||||
|
<template> |
||||
|
<Dialog |
||||
|
:title="dialogTitle" |
||||
|
v-model="dialogVisible" |
||||
|
:width="dialogWidth" |
||||
|
:close-on-click-modal="false" |
||||
|
:vLoading="formLoading" |
||||
|
> |
||||
|
|
||||
|
<div |
||||
|
style="max-height: 60vh;overflow-y: auto;"> |
||||
|
<Form |
||||
|
ref="formRef" |
||||
|
:rules="rules" |
||||
|
:schema="formSchema" |
||||
|
:is-col="true" |
||||
|
@opensearchTable="opensearchTable" |
||||
|
@onChange="onChange" |
||||
|
@onBlur="onBlur" |
||||
|
> |
||||
|
<template #crontab="formSchema" v-if="fromeWhere == 'countPlan'"> |
||||
|
<crontab v-model="formSchema.crontab" /> |
||||
|
</template> |
||||
|
<template #type="formSchema" v-if="fromeWhere == 'countPlan'"> |
||||
|
<el-select |
||||
|
v-model="formSchema.type" |
||||
|
placeholder="选择盘点类型" |
||||
|
@change="selectChange('type', $event)" |
||||
|
v-if="!isDetail" |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="dict in getStrDictOptions(DICT_TYPE.COUNT_TYPE)" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
<el-select |
||||
|
v-model="formSchema.type" |
||||
|
placeholder="选择盘点范围类型" |
||||
|
@change="selectChangeDetail('type', $event,formSchema)" |
||||
|
v-if="isDetail" |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="dict in getStrDictOptions(DICT_TYPE.COUNT_SCOPE_TYPE)" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</template> |
||||
|
<template #value="formSchema" v-if="fromeWhere == 'countPlan'"> |
||||
|
<el-select |
||||
|
v-model="formSchema.value" |
||||
|
placeholder="选择盘点范围值" |
||||
|
v-if="isDetail&& formTypeDetail =='Select'" |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="dict in countPlanAllList" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
<el-input v-model="formSchema.value" v-if="isDetail && formTypeDetail =='InputString'"/> |
||||
|
</template> |
||||
|
</Form> |
||||
|
<div class="table" v-if="isBusiness && formType == 'create' && fromeWhere != 'countPlan'"> |
||||
|
<TableForm |
||||
|
ref="tableFormRef" |
||||
|
class="w-[100%]" |
||||
|
:tableFields="tableAllSchemas.tableFormColumns" |
||||
|
:tableData="tableData" |
||||
|
:tableFormRules="tableFormRules" |
||||
|
:isShowButton="isShowButton" |
||||
|
:isShowReduceButton="isShowReduceButton" |
||||
|
@handleAddTable="handleAddTable" |
||||
|
@handleDeleteTable="handleDeleteTable" |
||||
|
@tableSelectionChange="tableSelectionChange" |
||||
|
@extendedButtonsClick="extendedButtonsClick" |
||||
|
@formSelectChange="formSelectChange" |
||||
|
@formSelectvVisibleChange="formSelectvVisibleChange" |
||||
|
@tableSortChange="tableSortChange" |
||||
|
@selectCallback="selectCallback" |
||||
|
@handleTableSelect="handleTableSelect" |
||||
|
@inpuFocus="inpuFocus" |
||||
|
@buttonOperationClick="buttonOperationClick" |
||||
|
@inputStringBlur="inputStringBlur" |
||||
|
@inputNumberChange="inputNumberChange" |
||||
|
@tableFormSelectOnBlur="tableFormSelectOnBlur" |
||||
|
@formFormDateChange="formFormDateChange" |
||||
|
/> |
||||
|
</div> |
||||
|
<div v-if="isBusiness && formType == 'create' && fromeWhere == 'countPlan'"> |
||||
|
<TableFormCountPlan |
||||
|
:tableFields="tableAllSchemas.tableFormColumns" |
||||
|
:tableData="tableData" |
||||
|
:countScopeType="countScopeType" |
||||
|
:tableFormRules="tableFormRules" |
||||
|
ref="tableFormRef" |
||||
|
@tableFormChange="tableFormChange" |
||||
|
@handleAddTable="handleAddTable" |
||||
|
@handleDeleteTable="handleDeleteTable" |
||||
|
/> |
||||
|
</div> |
||||
|
</div> |
||||
|
<template #footer> |
||||
|
<ButtonBase :Butttondata="Butttondata" @button-base-click="buttonBaseClick" /> |
||||
|
</template> |
||||
|
|
||||
|
</Dialog> |
||||
|
<SearchTable ref="searchTableRef" @searchTableSuccess="searchTableSuccess" /> |
||||
|
</template> |
||||
|
<script setup lang="ts"> |
||||
|
import { SearchTable } from '@/components/SearchTable' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import ButtonBase from '@/components/XButton/src/ButtonBase.vue' |
||||
|
import TableForm from '@/components/TableForm/src/TableForm.vue' |
||||
|
import TableFormCountPlan from '@/components/TableFormCountPlan/src/TableFormCountPlan.vue' |
||||
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict' |
||||
|
|
||||
|
const props = defineProps({ |
||||
|
// 显示窗口宽度设置 |
||||
|
basicFormWidth: { |
||||
|
type: String, |
||||
|
default: '' |
||||
|
}, |
||||
|
// 是否显示TableForm 新增/删除按钮 |
||||
|
isShowButton: { |
||||
|
type: Boolean, |
||||
|
default: true |
||||
|
}, |
||||
|
// 是否显示tableForm 删除按钮 |
||||
|
isShowReduceButton: { |
||||
|
type: Boolean, |
||||
|
default: true |
||||
|
}, |
||||
|
// 校验rules |
||||
|
rules: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 表单,列表 相关信息 |
||||
|
formAllSchemas: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 列表 相关信息 |
||||
|
tableAllSchemas: { |
||||
|
type: Array, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 列表数据 |
||||
|
tableData: { |
||||
|
type: Array, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
tableFormRules: { |
||||
|
type: Array, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 查询参数 |
||||
|
// searchTableParams: { |
||||
|
// type: Array, |
||||
|
// required: false, |
||||
|
// default: null |
||||
|
// }, |
||||
|
// API——Vo |
||||
|
apiVo: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// API——创建 |
||||
|
apiCreate: { |
||||
|
type: Function, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// API——编辑 |
||||
|
apiUpdate: { |
||||
|
type: Function, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 是否是业务表单(区分是不显示tableForm) |
||||
|
isBusiness: { |
||||
|
type: Boolean, |
||||
|
required: true, |
||||
|
default: true |
||||
|
}, |
||||
|
// 表单form |
||||
|
form: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 详情数据 |
||||
|
detailData: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// // 主表参数 |
||||
|
// masterParmas: { |
||||
|
// type: Object, |
||||
|
// required: false, |
||||
|
// default: null |
||||
|
// }, |
||||
|
// 来源 countPlan盘点计划进入 |
||||
|
fromeWhere: { |
||||
|
type: String, |
||||
|
required: false, |
||||
|
default: '' |
||||
|
}, |
||||
|
// 盘点范围类型 |
||||
|
countScopeType: { |
||||
|
type: Array, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
// 是否从详情进入 |
||||
|
isDetail: { |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: false |
||||
|
}, |
||||
|
//盘点详情子表新增的时候判断盘点范围值显示输入框还是下拉框 |
||||
|
formTypeDetail: { |
||||
|
type: String, |
||||
|
required: false, |
||||
|
default: 'InputString' |
||||
|
}, |
||||
|
//盘点详情子表新增的时候判断盘点范围值的下拉列表 |
||||
|
countPlanAllList: { |
||||
|
type: Array, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
// 窗体底部按钮 显示or隐藏:保存,关闭 |
||||
|
isShowFooterButtton: { |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: true |
||||
|
}, |
||||
|
// 明细数据长度校验 |
||||
|
tableFormDataLength: { |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: true |
||||
|
}, |
||||
|
// 底部按钮集合 |
||||
|
footButttondata: { |
||||
|
type: Array, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
//是否直接展示搜索表单 |
||||
|
isOpenSearchTable:{ |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: false |
||||
|
}, |
||||
|
myFuncTypeSign:{ |
||||
|
type: String, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
}) |
||||
|
|
||||
|
const { t } = useI18n() // 国际化 |
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const dialogWidth = ref() |
||||
|
if (props.basicFormWidth) { |
||||
|
dialogWidth.value = props.basicFormWidth + '%' |
||||
|
} else { |
||||
|
dialogWidth.value = props.isBusiness ? '60%' : '40%' |
||||
|
} |
||||
|
|
||||
|
const dialogVisible = ref(false) // 弹窗的是否展示 |
||||
|
const dialogTitle = ref('') // 弹窗的标题 |
||||
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用 |
||||
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改 |
||||
|
|
||||
|
const formRef = ref() // 表单 Ref |
||||
|
const formSchema = ref(props.formAllSchemas?.formSchema) |
||||
|
const tableAllSchemas = ref(props.tableAllSchemas) |
||||
|
const tableFormRules = ref(props.tableFormRules) |
||||
|
|
||||
|
// 列表-按钮 |
||||
|
// const buttondata = [ |
||||
|
// defaultButtons.mainListEditBtn(null), // 编辑 |
||||
|
// defaultButtons.mainListDeleteBtn(null) |
||||
|
// ] |
||||
|
// // 列表-操作按钮事件 |
||||
|
// const buttonTableClick = async (val, row) => { |
||||
|
// if (val == 'edit') { |
||||
|
|
||||
|
// } else if (val == 'delete') { |
||||
|
|
||||
|
// } else { |
||||
|
// } |
||||
|
// } |
||||
|
|
||||
|
/** 弹层操作 */ |
||||
|
// formField form表单中的字段 |
||||
|
// searchField 查询列表中的字段 |
||||
|
// type 发起事件位置 type=tableForm 是明细中发起的 否则 为主表发起的 |
||||
|
// searchCondition 查询条件 |
||||
|
const searchTableRef = ref() |
||||
|
const opensearchTable = ( |
||||
|
formField, |
||||
|
searchField, |
||||
|
searchTitle, |
||||
|
searchAllSchemas, |
||||
|
searchPage, |
||||
|
searchCondition, |
||||
|
multiple, |
||||
|
type, |
||||
|
row |
||||
|
) => { |
||||
|
const _searchCondition = {} |
||||
|
// 判断查询条件中,是否存在指向主表的数据 |
||||
|
if (searchCondition && searchCondition.length > 0) { |
||||
|
// 转换筛选条件所需 |
||||
|
let filters: any[] = [] |
||||
|
for (var i=0; i< searchCondition.length; i++ ) { |
||||
|
// searchCondition.forEach((item) => { |
||||
|
// 查询条件为主表某字段,需要赋值主表数据,数据来源是详情的,赋值需要从row中获取 |
||||
|
if (searchCondition[i].isMainValue) { |
||||
|
_searchCondition[searchCondition[i].key] = formRef.value.formModel[searchCondition[i].value] |
||||
|
? formRef.value.formModel[searchCondition[i].value] |
||||
|
: props.detailData |
||||
|
? props.detailData[searchCondition[i].value] |
||||
|
: row |
||||
|
? row[searchCondition[i].value] |
||||
|
: '' |
||||
|
// 是否含有空参数情况 |
||||
|
let isNull = false |
||||
|
if (_searchCondition[searchCondition[i].key] == '' || _searchCondition[searchCondition[i].key] == undefined) { |
||||
|
isNull = true |
||||
|
} |
||||
|
if (isNull) { |
||||
|
message.warning(searchCondition[i].message?searchCondition[i].message:'前置条件未选择!') |
||||
|
return |
||||
|
} |
||||
|
} else { |
||||
|
// 扩展 转换为筛选条件进行查询 |
||||
|
if (searchCondition[i].isSearch) { |
||||
|
filters.push({ |
||||
|
action: searchCondition[i].action, |
||||
|
column: searchCondition[i].key, |
||||
|
value: searchCondition[i].value |
||||
|
}) |
||||
|
} else { |
||||
|
_searchCondition[searchCondition[i].key] = searchCondition[i].value |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
if (filters.length > 0) { |
||||
|
_searchCondition.isSearch = true |
||||
|
_searchCondition.filters = filters |
||||
|
} |
||||
|
} |
||||
|
const _searchTableTitle = searchTitle |
||||
|
const _searchTableAllSchemas = searchAllSchemas |
||||
|
const _searchTablePage = searchPage |
||||
|
searchTableRef.value.open( |
||||
|
_searchTableTitle, |
||||
|
_searchTableAllSchemas, |
||||
|
_searchTablePage, |
||||
|
formField, |
||||
|
searchField, |
||||
|
multiple, |
||||
|
type, |
||||
|
row, |
||||
|
_searchCondition |
||||
|
) |
||||
|
} |
||||
|
// 弹层确定返回所选数据 |
||||
|
// val : 弹层列表row 数据 |
||||
|
const searchTableSuccess = (formField, searchField, val, type, row) => { |
||||
|
emit('searchTableSuccess', formField, searchField, val, formRef.value, type, row) |
||||
|
} |
||||
|
|
||||
|
/** 打开弹窗 */ |
||||
|
const open = async (type: string, row?: any, masterParmas?: any, titleName?: any) => { |
||||
|
dialogVisible.value = true |
||||
|
if (titleName) { |
||||
|
dialogTitle.value = t('action.' + titleName) |
||||
|
} else { |
||||
|
dialogTitle.value = t('action.' + type) |
||||
|
} |
||||
|
formType.value = type |
||||
|
resetForm() |
||||
|
// 修改时,设置数据 |
||||
|
// 如果是从主表的详情页面进图添加子表,需要添加masterId,code参数 |
||||
|
if (masterParmas) { |
||||
|
if (!row) { |
||||
|
if(props.myFuncTypeSign=='InspectionStage'){ |
||||
|
row = { |
||||
|
masterId: masterParmas.masterId, |
||||
|
code: masterParmas.code, |
||||
|
dynamicModifyCode: masterParmas.code, |
||||
|
} |
||||
|
}else{ |
||||
|
row = { |
||||
|
masterId: masterParmas.masterId, |
||||
|
code: masterParmas.code, |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
if (row?.id || row?.masterId) { |
||||
|
formLoading.value = true |
||||
|
try { |
||||
|
nextTick(() => { |
||||
|
formRef.value.setValues(row) |
||||
|
}) |
||||
|
} finally { |
||||
|
formLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
defineExpose({ open, formRef, opensearchTable, dialogVisible, formLoading }) // 提供 open 方法,用于打开弹窗 |
||||
|
|
||||
|
/** 弹窗按钮 */ |
||||
|
let Butttondata:any = [] |
||||
|
if (props.isShowFooterButtton) { |
||||
|
Butttondata = [ |
||||
|
defaultButtons.formSaveBtn(null), // 保存 |
||||
|
defaultButtons.formCloseBtn(null) // 关闭 |
||||
|
] |
||||
|
} |
||||
|
if (props.footButttondata) { |
||||
|
Butttondata = props.footButttondata |
||||
|
} |
||||
|
|
||||
|
/** 按钮事件 */ |
||||
|
const buttonBaseClick = (val) => { |
||||
|
// 扩展 按钮事件回调 |
||||
|
if (props.footButttondata) { |
||||
|
emit('footButtonClick',val) |
||||
|
} |
||||
|
// 保存 |
||||
|
else if (val == 'save') { |
||||
|
submitForm() |
||||
|
} |
||||
|
// 关闭 |
||||
|
else if (val == 'close') { |
||||
|
dialogVisible.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 提交表单 */ |
||||
|
// const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调 |
||||
|
|
||||
|
const tableFormRef = ref() |
||||
|
const submitForm = async () => { |
||||
|
const elForm = unref(formRef)?.getElFormRef() |
||||
|
// 校验表单 |
||||
|
if (!elForm) return |
||||
|
const valid = await elForm.validate() |
||||
|
if (!valid) return |
||||
|
// 针对主子表 明细校验 |
||||
|
if (props.isBusiness) { |
||||
|
formLoading.value = true |
||||
|
if (formType.value == 'create') { |
||||
|
const validateForm = await tableFormRef.value.validateForm() |
||||
|
if (!validateForm && props.tableFormDataLength) { |
||||
|
if (props.tableData.length == 0) { |
||||
|
message.warning('请填写明细信息!') |
||||
|
formLoading.value = false |
||||
|
return |
||||
|
} |
||||
|
formLoading.value = false |
||||
|
return |
||||
|
} |
||||
|
// 主子表——提交请求 |
||||
|
try { |
||||
|
const data = unref(formRef)?.formModel |
||||
|
emit('submitForm', formType.value, data) |
||||
|
} finally { |
||||
|
} |
||||
|
} else { |
||||
|
// 编辑 |
||||
|
try { |
||||
|
const data = unref(formRef)?.formModel |
||||
|
emit('submitForm', formType.value, data) |
||||
|
} finally { |
||||
|
} |
||||
|
} |
||||
|
} else { |
||||
|
// 基础数据单表——提交请求 |
||||
|
formLoading.value = true |
||||
|
try { |
||||
|
const data = unref(formRef)?.formModel |
||||
|
emit('success', formType.value, data) |
||||
|
} finally { |
||||
|
formLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 重置表单 */ |
||||
|
const resetForm = () => { |
||||
|
unref(formRef)?.resetFields() |
||||
|
} |
||||
|
|
||||
|
// 传递给父类 |
||||
|
const emit = defineEmits([ |
||||
|
'success', |
||||
|
'tableSelectionChange', |
||||
|
'tableFormSelectOnBlur', |
||||
|
'extendedButtonsClick', |
||||
|
'formSelectChange', |
||||
|
'formSelectvVisibleChange', |
||||
|
'tableSortChange', |
||||
|
'selectCallback', |
||||
|
'handleTableSelect', |
||||
|
'handleDeleteTable', |
||||
|
'handleAddTable', |
||||
|
'inpuFocus', |
||||
|
'searchTableSuccess', |
||||
|
'opensearchTable', |
||||
|
'submitForm', |
||||
|
'selectChange', |
||||
|
'selectChangeDetail', |
||||
|
'tableFormChange', |
||||
|
'buttonOperationClick', |
||||
|
'inputStringBlur', |
||||
|
'onChange', |
||||
|
'onBlur', |
||||
|
'inputNumberChange', |
||||
|
'formFormDateChange', |
||||
|
'footButtonClick' |
||||
|
]) |
||||
|
//普通下拉改变事件 |
||||
|
const formSelectChange = (field, val, row) => { |
||||
|
emit('formSelectChange', field, val, row) |
||||
|
} |
||||
|
// 日期改变事件 |
||||
|
const formFormDateChange = (field, val,row, index) => { |
||||
|
emit('formFormDateChange', field, val,row, index) |
||||
|
} |
||||
|
const formSelectvVisibleChange = (field, val, row) => { |
||||
|
emit('formSelectvVisibleChange', field, val, row) |
||||
|
} |
||||
|
// 点击selection框 |
||||
|
const tableSelectionChange = (val) => { |
||||
|
emit('tableSelectionChange', val) |
||||
|
} |
||||
|
// tableform select bulr |
||||
|
const tableFormSelectOnBlur = (field, val, row, index) => { |
||||
|
emit('tableFormSelectOnBlur', field, val, row, index) |
||||
|
} |
||||
|
// 列表排序 |
||||
|
const tableSortChange = (column, prop, order) => { |
||||
|
emit('tableSortChange', column, prop, order) |
||||
|
} |
||||
|
|
||||
|
// 数字输入-改变事件 |
||||
|
const inputNumberChange = (field, index, row, val) => { |
||||
|
emit('inputNumberChange', field, index, row, val) |
||||
|
} |
||||
|
//下拉框回显方法 |
||||
|
// const showSelect = (val, statusID) => { |
||||
|
// return getDictForStatusID(val, statusID) |
||||
|
// } |
||||
|
|
||||
|
// 行点击 |
||||
|
const handleTableSelect = (row, column, event) => { |
||||
|
emit('handleTableSelect', row, column, event) |
||||
|
} |
||||
|
|
||||
|
// 删除数据 |
||||
|
const handleDeleteTable = (row, index) => { |
||||
|
emit('handleDeleteTable', row, index,formRef.value) |
||||
|
} |
||||
|
// 添加数据 |
||||
|
const handleAddTable = () => { |
||||
|
if(props.isOpenSearchTable){ |
||||
|
const tableFormKeys = {} |
||||
|
tableAllSchemas.value.tableFormColumns.forEach(item => { |
||||
|
tableFormKeys[item.field] = item.default ? item.default : '' |
||||
|
}) |
||||
|
inpuFocus(tableAllSchemas.value.tableFormColumns[0],tableFormKeys,0) |
||||
|
}else{ |
||||
|
emit('handleAddTable') |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
// 输入框聚焦 |
||||
|
const inpuFocus = (headerItem, row, index) => { |
||||
|
opensearchTable( |
||||
|
headerItem.field, |
||||
|
headerItem.tableForm.searchField, |
||||
|
headerItem.tableForm.searchTitle, |
||||
|
headerItem.tableForm.searchAllSchemas, |
||||
|
headerItem.tableForm.searchPage, |
||||
|
headerItem.tableForm.searchCondition, |
||||
|
headerItem.tableForm.multiple, |
||||
|
'tableForm', |
||||
|
row |
||||
|
) |
||||
|
} |
||||
|
/** |
||||
|
* 监听改变事件 |
||||
|
* @param field 当前操作字段 |
||||
|
* @param cur 改变后值 |
||||
|
*/ |
||||
|
const onChange = (field, cur) => { |
||||
|
emit('onChange', field, cur) |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 监听失焦事件 |
||||
|
* @param field 当前操作字段 |
||||
|
* @param e |
||||
|
*/ |
||||
|
const onBlur = (field, e) => { |
||||
|
emit('onBlur', field, e) |
||||
|
} |
||||
|
|
||||
|
// 修改盘点类型 |
||||
|
const selectChange = (field, val) => { |
||||
|
emit('selectChange', field, val) |
||||
|
} |
||||
|
// 修改盘点范围类型 |
||||
|
const selectChangeDetail = (field, val,formSchema) => { |
||||
|
formSchema.value = '' |
||||
|
emit('selectChangeDetail', field, val) |
||||
|
} |
||||
|
|
||||
|
|
||||
|
const tableFormChange = (field, val, row) => { |
||||
|
emit('tableFormChange', field, val, row) |
||||
|
} |
||||
|
|
||||
|
const buttonOperationClick = (row, label, index)=> { |
||||
|
emit("buttonOperationClick", row, label, index); |
||||
|
} |
||||
|
|
||||
|
const inputStringBlur = (headerItem, row, index)=> { |
||||
|
emit("inputStringBlur", headerItem, row, index); |
||||
|
} |
||||
|
|
||||
|
</script> |
||||
|
<style lang="scss" scoped> |
||||
|
.table { |
||||
|
border: 1px solid #dedede; |
||||
|
border-radius: 8px; |
||||
|
padding: 10px; |
||||
|
width: calc(100% - 32px); |
||||
|
display: flex; |
||||
|
} |
||||
|
::v-deep(.el-table__body) { |
||||
|
padding: 10px 0px; |
||||
|
} |
||||
|
::v-deep(.el-table--default .el-table__cell) { |
||||
|
padding: 2px 0px; |
||||
|
border: none; |
||||
|
} |
||||
|
|
||||
|
::v-deep(.el-table td.el-table__cell .el-form-item__content) { |
||||
|
display: flex !important; |
||||
|
align-items: center !important; |
||||
|
justify-content: center !important; |
||||
|
} |
||||
|
::v-deep(.el-table td.el-table__cell div) { |
||||
|
overflow: visible; |
||||
|
} |
||||
|
|
||||
|
::v-deep(.el-icon) { |
||||
|
display: block; |
||||
|
}button |
||||
|
.button { |
||||
|
> div { |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
justify-content: center; |
||||
|
cursor: pointer; |
||||
|
|
||||
|
> div { |
||||
|
margin-left: 6px; |
||||
|
text-decoration: underline; |
||||
|
color: #409eff; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,846 @@ |
|||||
|
<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 ref="tabRef" :tabsList="tabsList" :current="current" @change="change" /> |
||||
|
<div class="flex"> |
||||
|
<!-- 详情 --> |
||||
|
<ContentWrap class="w-[100%]" v-show="tabsList[current].label!='附件'&&tabsList[current].label!='备注'&&tabsList[current].label!='变更记录'"> <!-- 列表头部 --> |
||||
|
<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-[100%]" v-show="tabsList[current].label=='附件'||tabsList[current].label=='备注'||tabsList[current].label=='变更记录'" :style="{height:remarkHeight+'px'}"> |
||||
|
<!-- 附件组件 --> |
||||
|
<ElScrollbar ref="scrollbar" :style="{height:(remarkHeight-40)+'px'}"> |
||||
|
<Annex v-show="tabsList[current].label=='附件'" |
||||
|
:annexData="annexData" |
||||
|
@handleAnnexSuccess="handleAnnexSuccess" |
||||
|
@deleteAnnexSuccess="deleteAnnexSuccess" |
||||
|
:upData="remarksData.data" |
||||
|
/> |
||||
|
<!-- 备注组件 --> |
||||
|
<Remarks v-show="tabsList[current].label=='备注'" |
||||
|
:remarksData="remarksData" |
||||
|
class="mt-20px" |
||||
|
@remarksSubmitScuess="remarksSubmitScuess" |
||||
|
/> |
||||
|
<!-- 变更记录组件 --> |
||||
|
<ChangeRecord v-show="tabsList[current].label=='变更记录'" :changeRecordData="changeRecordData" class="mt-20px" /> |
||||
|
</ElScrollbar> |
||||
|
</ContentWrap> |
||||
|
</div> |
||||
|
</el-drawer> |
||||
|
<!-- 表格弹窗 --> |
||||
|
<SearchTable ref="searchTableRef" @search-table-success="searchTableSuccess1" /> |
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicFormQmsCode |
||||
|
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" |
||||
|
:myFuncTypeSign="myFuncTypeSign" |
||||
|
/> |
||||
|
</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 BasicFormQmsCode from '@/components/BasicForm/src/BasicFormQmsCode.vue' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import DetailTable from '@/components/DetailTable/src/DetailTable.vue' |
||||
|
import { SearchTable } from '@/components/SearchTable' |
||||
|
|
||||
|
defineOptions({ name: 'DetailQmsCode' }) |
||||
|
|
||||
|
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 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 |
||||
|
}, |
||||
|
//是否直接展示搜索表单 |
||||
|
isOpenSearchTable:{ |
||||
|
type: Boolean, |
||||
|
required: false, |
||||
|
default: false |
||||
|
}, |
||||
|
//个性化功能标志 |
||||
|
myFuncTypeSign:{ |
||||
|
type: String, |
||||
|
required: false, |
||||
|
default: null |
||||
|
}, |
||||
|
}) |
||||
|
const isShowDrawer = ref(false) |
||||
|
const detailLoading = ref(false) |
||||
|
const myFuncTypeSign = props.myFuncTypeSign |
||||
|
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' |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
const otherList = [] |
||||
|
|
||||
|
tabsList.value = [...tabsList?.value,...otherList] |
||||
|
|
||||
|
if (!tabsList.value || tabsList.value && tabsList.value.length == otherList.length) { |
||||
|
tabsList.value.unshift({ |
||||
|
label: '明细', |
||||
|
prop: 'Detail' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// Tabs |
||||
|
const tabRef = ref() |
||||
|
//滚动条 |
||||
|
const scrollbar = ref() |
||||
|
//附件 备注 变更记录 高度计算 |
||||
|
const remarkHeight = computed(() => { |
||||
|
const tab = unref(tabRef) |
||||
|
const tabTop = tab?.$el.getBoundingClientRect().top |
||||
|
const tabHeight = tab?.$el.getBoundingClientRect().height |
||||
|
console.log('tabTop',tabTop) |
||||
|
const height = window.innerHeight - (tabTop) - (tabHeight) - 60 |
||||
|
return height |
||||
|
}) |
||||
|
|
||||
|
|
||||
|
// 附件默认数据 |
||||
|
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) |
||||
|
if(otherList.find(other=>other.label==item.label)){ |
||||
|
// 附件/备注/变更记录 -- 点击回到顶部 |
||||
|
scrollbar.value.scrollTo({ top: 0}); |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
//主表所需的参数 |
||||
|
const masterParmas = ref({ |
||||
|
masterId: '', //主表id |
||||
|
code: '', //主表单据号 |
||||
|
status: '', //主表状态 用于控制子表新增编辑按钮显示情况 |
||||
|
}) |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = ref() |
||||
|
// 列表-操作按钮 |
||||
|
const buttondata = ref() |
||||
|
|
||||
|
/** 表格弹窗 */ |
||||
|
const initModel = (schema: FormSchema[], formModel: Recordable) => { |
||||
|
const model: Recordable = { ...formModel } |
||||
|
schema.map((v) => { |
||||
|
// 如果是hidden,就删除对应的值 |
||||
|
if (v.hidden) { |
||||
|
delete model[v.field] |
||||
|
} else if (v.component && v.component !== 'Divider') { |
||||
|
const hasField = Reflect.has(model, v.field) |
||||
|
// 如果先前已经有值存在,则不进行重新赋值,而是采用现有的值 |
||||
|
model[v.field] = hasField ? model[v.field] : v.value !== void 0 ? v.value : '' |
||||
|
} |
||||
|
}) |
||||
|
return model |
||||
|
} |
||||
|
const searchTableRef = ref() |
||||
|
// 如果需要直接打开表格数据表单数据 |
||||
|
const searchTableFormModel = ref<Recordable>({}) |
||||
|
if(props.isOpenSearchTable){ |
||||
|
searchTableFormModel.value = initModel(props.detailAllSchemas.formSchema, unref(searchTableFormModel)) |
||||
|
} |
||||
|
const searchTableFormType = ref('') // 表单的类型:create - 新增;update - 修改 |
||||
|
|
||||
|
/** 打开弹窗 */ |
||||
|
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 |
||||
|
// 加载明细列表 |
||||
|
if (!props.isBasic) { |
||||
|
// 设置主表id |
||||
|
masterParmas.value.masterId = row.id |
||||
|
masterParmas.value.code = row.code |
||||
|
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] |
||||
|
|
||||
|
// 针对特殊处理 当业务是任务的 只显示筛选 正常情况下应在业务页面设置 后期再作优化 |
||||
|
if (routeName.value.indexOf('Job') > -1) { |
||||
|
HeadButttondata.value = [ |
||||
|
defaultButtons.defaultFilterBtn(null) // 筛选 |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
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 |
||||
|
// } |
||||
|
return false |
||||
|
} |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList } = tableMethodsRef.value |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { |
||||
|
// 新增 |
||||
|
if(props.isOpenSearchTable){ |
||||
|
searchTableFormType.value = 'create' |
||||
|
// 如果需要直接打开表格数据 |
||||
|
searchTableFormModel.value = Object.assign(unref(searchTableFormModel), { |
||||
|
masterId: masterParmas.value.masterId, |
||||
|
code: masterParmas.value.code |
||||
|
}) |
||||
|
const item = props.detailAllSchemas.formSchema[0] |
||||
|
opensearchTable( |
||||
|
item.field, item?.componentProps?.searchField, |
||||
|
item?.componentProps?.searchTitle, |
||||
|
item?.componentProps?.searchAllSchemas, |
||||
|
item?.componentProps?.searchPage, |
||||
|
item?.componentProps?.searchCondition, |
||||
|
item?.componentProps?.multiple, |
||||
|
undefined,undefined |
||||
|
) |
||||
|
}else{ |
||||
|
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) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 直接打开表格数据 --> 对应:isOpenSearchTable === true |
||||
|
const opensearchTable = ( |
||||
|
formField, |
||||
|
searchField, |
||||
|
searchTitle, |
||||
|
searchAllSchemas, |
||||
|
searchPage, |
||||
|
searchCondition, |
||||
|
multiple, |
||||
|
type, |
||||
|
row |
||||
|
) => { |
||||
|
const _searchCondition = {} |
||||
|
// 判断查询条件中,是否存在指向主表的数据 |
||||
|
if (searchCondition && searchCondition.length > 0) { |
||||
|
// 转换筛选条件所需 |
||||
|
for (var i=0; i< searchCondition.length; i++ ) { |
||||
|
// 查询条件为主表某字段,需要赋值主表数据,数据来源是详情的,赋值需要从row中获取 |
||||
|
if (searchCondition[i].isMainValue) { |
||||
|
_searchCondition[searchCondition[i].key] = detailData |
||||
|
? detailData.value[searchCondition[i].value] |
||||
|
: '' |
||||
|
}else{ |
||||
|
_searchCondition[searchCondition[i].key] = searchCondition[i].value |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
console.log(searchCondition) |
||||
|
console.log(_searchCondition) |
||||
|
searchTableRef.value.open( |
||||
|
searchTitle, |
||||
|
searchAllSchemas, |
||||
|
searchPage, |
||||
|
formField, |
||||
|
searchField, |
||||
|
multiple, |
||||
|
type, |
||||
|
row, |
||||
|
_searchCondition |
||||
|
) |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
// const updataTableColumns = (val) => { |
||||
|
// detailAllSchemas.tableColumns.value = val |
||||
|
// } |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { |
||||
|
// 编辑 |
||||
|
if(props.isOpenSearchTable){ |
||||
|
searchTableFormType.value = 'update' |
||||
|
if (row?.id || row?.masterId) { |
||||
|
searchTableFormModel.value = Object.assign(unref(searchTableFormModel), row) |
||||
|
} |
||||
|
const item = props.detailAllSchemas.formSchema[0] |
||||
|
opensearchTable( |
||||
|
item.field, item?.componentProps?.searchField, |
||||
|
item?.componentProps?.searchTitle, |
||||
|
item?.componentProps?.searchAllSchemas, |
||||
|
item?.componentProps?.searchPage, |
||||
|
item?.componentProps?.searchCondition, |
||||
|
item?.componentProps?.multiple, |
||||
|
undefined,undefined |
||||
|
) |
||||
|
}else{ |
||||
|
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, masterParmas.value) |
||||
|
} |
||||
|
// 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 searchTableSuccess1 = (formField, searchField, val, formRef) => { |
||||
|
searchTableFormModel.value[formField] = val.map(item=>item[searchField]).join(',') |
||||
|
console.log('searchTableSuccess1',searchTableFormModel) |
||||
|
submitForm(searchTableFormType.value,searchTableFormModel.value) |
||||
|
emit('searchTableSuccessDetail', formField, searchField, val, formRef) |
||||
|
} |
||||
|
// 查询页面返回 |
||||
|
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,244 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="Pattern.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="Pattern.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="PatternRules" |
||||
|
:formAllSchemas="Pattern.allSchemas" |
||||
|
:apiUpdate="PatternApi.updatePattern" |
||||
|
:apiCreate="PatternApi.createPattern" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="Pattern.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/mes/pattern/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { Pattern,PatternRules } from './pattern.data' |
||||
|
import * as PatternApi from '@/api/mes/pattern' |
||||
|
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: 'Pattern' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(Pattern.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: PatternApi.getPatternPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'mes:pattern:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'mes:pattern:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'mes:pattern: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:'mes:pattern:update'}), // 编辑 |
||||
|
defaultButtons.mainListDeleteBtn({hasPermi:'mes:pattern: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 =Pattern.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 PatternApi.createPattern(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await PatternApi.updatePattern(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, 'basicPattern') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await PatternApi.deletePattern(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 PatternApi.exportPattern(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 PatternApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,217 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const PatternRules = reactive({ |
||||
|
concurrencyStamp: [required], |
||||
|
}) |
||||
|
|
||||
|
export const Pattern = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '删除时间', |
||||
|
field: 'deleteTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
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')] |
||||
|
} |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
type: 'datetime', |
||||
|
valueFormat: 'x' |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '主键', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
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: 'deleter', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '位置ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false, |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '模具编码', |
||||
|
field: 'code', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '模具名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '模具类型', |
||||
|
field: 'partternName', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '产品编码', |
||||
|
field: 'productCode', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '启用时间', |
||||
|
field: 'dateUseStart', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '停用时间', |
||||
|
field: 'dateUseStop', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '模具来源', |
||||
|
field: 'partternFrom', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '模具去向', |
||||
|
field: 'partternGo', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '模具初始数量', |
||||
|
field: 'initCout', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '有效期开始时间', |
||||
|
field: 'effectStart', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '有效期结束时间', |
||||
|
field: 'effectEnd', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '所属单位编码', |
||||
|
field: 'factoryCode', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '所属单位名称', |
||||
|
field: 'factoryName', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '所属单位类别', |
||||
|
field: 'factoryType', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '状态', |
||||
|
field: 'status', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.QUALIFY_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isForm: true, |
||||
|
isSearch: true, |
||||
|
isTable: true, |
||||
|
form: { |
||||
|
component: 'Switch', |
||||
|
value: '2', |
||||
|
componentProps: { |
||||
|
inactiveValue: '2', |
||||
|
activeValue: '1' |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
isDetail:false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
isTable: false |
||||
|
} |
||||
|
])) |
Loading…
Reference in new issue