You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
626 lines
18 KiB
626 lines
18 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<Search :schema="EquipmentRepairJobMain.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
<TableHead
|
|
:HeadButttondata="HeadButttondata"
|
|
@button-base-click="buttonBaseClick"
|
|
:routeName="routeName"
|
|
@updataTableColumns="updataTableColumns"
|
|
@searchFormClick="searchFormClick"
|
|
:allSchemas="EquipmentRepairJobMain.allSchemas"
|
|
/>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<Table
|
|
:columns="tableColumns"
|
|
:data="tableObject.tableList"
|
|
:loading="tableObject.loading"
|
|
:pagination="{
|
|
total: tableObject.total
|
|
}"
|
|
v-model:pageSize="tableObject.pageSize"
|
|
v-model:currentPage="tableObject.currentPage"
|
|
v-model:sort="tableObject.sort"
|
|
>
|
|
<template #number="{row}">
|
|
<el-button type="primary" link @click="openDetail(row, '代码', row.number)">
|
|
<span>{{ row.number }}</span>
|
|
</el-button>
|
|
</template>
|
|
<template #action="{ row }">
|
|
<ButtonBase :Butttondata="butttondata(row)" @button-base-click="buttonTableClick($event,row)" />
|
|
</template>
|
|
</Table>
|
|
</ContentWrap>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<BasicForm
|
|
ref="basicFormRef"
|
|
@success="formsSuccess"
|
|
:rules="EquipmentRepairJobMainRules"
|
|
:formAllSchemas="EquipmentRepairJobMain.allSchemas"
|
|
:apiUpdate="EquipmentRepairJobMainApi.updateEquipmentRepairJobMain"
|
|
:apiCreate="EquipmentRepairJobMainApi.createEquipmentRepairJobMain"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
:isBusiness="false"
|
|
@onChange="onChange"
|
|
/>
|
|
|
|
<FinishForm1 ref="finishForm1Ref" @success="getData1" @close="getClosed1"/>
|
|
<FinishForm2 ref="finishForm2Ref" @success="getData2" @close="getClosed2"/>
|
|
<FinishForm3 ref="finishForm3Ref" @success="getData3" @close="getClosed3"/>
|
|
<TransferForm ref="transferForm" @success="getData4" @close="getClosed4"/>
|
|
|
|
<!-- 详情 -->
|
|
<Detail ref="detailRef"
|
|
:isBasic="false"
|
|
:allSchemas="EquipmentRepairJobMain.allSchemas"
|
|
:detailAllSchemas="EquipmentRepairJobDetail.allSchemas"
|
|
:detailAllSchemasRules="EquipmentRepairJobDetailRules"
|
|
:apiPage="EquipmentRepairJobDetailApi.getEquipmentRepairJobDetailPage"
|
|
:apiCreate="EquipmentRepairJobDetailApi.createEquipmentRepairJobDetail"
|
|
:apiUpdate="EquipmentRepairJobDetailApi.updateEquipmentRepairJobDetail"
|
|
:apiDelete="EquipmentRepairJobDetailApi.deleteEquipmentRepairJobDetail"
|
|
:detailButtonIsShowAdd=statusBtn
|
|
:detailButtonIsShowEdit=statusBtn
|
|
:detailButtonIsShowDelete=statusBtn
|
|
@handleMainFefresh="handleMainFefresh"
|
|
@searchTableSuccessDetail="searchTableSuccessDetail"
|
|
:key="count"
|
|
/>
|
|
|
|
<!-- 导入 -->
|
|
<ImportForm ref="importFormRef" url="/eam/equipment-repair-job-main/import" :importTemplateData="importTemplateData" @success="importSuccess" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import download from '@/utils/download'
|
|
import { EquipmentRepairJobMain,EquipmentRepairJobMainRules,EquipmentRepairJobDetail,EquipmentRepairJobDetailRules } from './equipmentRepairJobMain.data'
|
|
import * as EquipmentRepairJobMainApi from '@/api/eam/equipmentRepairJobMain'
|
|
import * as EquipmentRepairJobDetailApi from '@/api/eam/equipmentRepairJobDetail'
|
|
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 '@/views/eam/equipmentRepairJobMain/EquipmentRepairJobDetail.vue'
|
|
import FinishForm1 from '@/views/eam/equipmentRepairJobMain/finishForm1.vue'
|
|
import FinishForm2 from '@/views/eam/equipmentRepairJobMain/finishForm2.vue'
|
|
import FinishForm3 from '@/views/eam/equipmentRepairJobMain/finishForm3.vue'
|
|
import TransferForm from '@/views/eam/equipmentRepairJobMain/transferForm.vue'
|
|
import {EquipmentAccounts} from "@/views/eam/equipmentAccounts/equipmentAccounts.data";
|
|
import * as EquipmentItemApi from "@/api/eam/equipmentAccounts";
|
|
import {ToolAccounts} from "@/views/eam/toolAccounts/toolAccounts.data";
|
|
import * as ToolItemApi from "@/api/eam/toolAccounts";
|
|
import {mainListCancelBtn} from "@/utils/disposition/defaultButtons";
|
|
|
|
defineOptions({ name: 'EquipmentRepairJobMain' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const route = useRoute() // 路由信息
|
|
const routeName = ref()
|
|
routeName.value = route.name
|
|
const tableColumns = ref(EquipmentRepairJobMain.allSchemas.tableColumns)
|
|
const statusBtn = ref(false);
|
|
|
|
// 查询页面返回
|
|
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: EquipmentRepairJobMainApi.getEquipmentRepairJobMainPage // 分页接口
|
|
})
|
|
|
|
// 获得表格的各种操作
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
const HeadButttondata = [
|
|
defaultButtons.defaultAddBtn({hasPermi:'eam:equipmentRepairJobMain:create'}), // 新增
|
|
//defaultButtons.defaultImportBtn({hasPermi:'eam:equipmentRepairJobMain:import'}), // 导入
|
|
defaultButtons.defaultExportBtn({hasPermi:'eam:equipmentRepairJobMain: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 isShowStatusButton = (row,val) => {
|
|
if (val.indexOf(row.status) > -1) {
|
|
return false
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
|
|
//true 是隐藏
|
|
const isShowBaoXiuButton = (row) => {
|
|
if(row.sources =='0' && row.status == '7'){
|
|
return false
|
|
}else{
|
|
return true
|
|
}
|
|
}
|
|
|
|
|
|
// 列表-操作按钮
|
|
const butttondata = (row) => {
|
|
return[
|
|
//defaultButtons.mainListEditBtn({hide: isShowStatusButton(row,['3','4']),hasPermi:'eam:equipmentRepairJobMain:update'}), // 编辑
|
|
defaultButtons.mainListReceiveOrderBtn({hide: isShowStatusButton(row,['3']),hasPermi:'eam:equipmentRepairJobMain:update'}), // 接单
|
|
defaultButtons.mainListExecuteBtn({hide: isShowStatusButton(row,['4']),hasPermi:'eam:equipmentRepairJobMain:update'}), // 执行
|
|
defaultButtons.mainListTransferBtn({hide: isShowStatusButton(row,['4']),hasPermi:'eam:equipmentRepairJobMain:update'}), // 转办
|
|
defaultButtons.mainListFinishBtn({hide: isShowStatusButton(row,['5']),hasPermi:'eam:equipmentRepairJobMain:update'}), //完成
|
|
defaultButtons.mainListCancelBtn({hide: isShowStatusButton(row,['5']),hasPermi:'eam:equipmentRepairJobMain:update'}), //作废
|
|
defaultButtons.mainListValidateRepairBtn({hide: isShowStatusButton(row,['6']),hasPermi:'eam:equipmentRepairJobMain:update'}), // 维修验证
|
|
defaultButtons.mainListValidateReportBtn({hide: isShowBaoXiuButton(row),hasPermi:'eam:equipmentRepairJobMain:update'}), // 报修验证
|
|
]
|
|
}
|
|
|
|
// 列表-操作按钮事件
|
|
const buttonTableClick = async (val, row) => {
|
|
if (val == 'edit') { // 编辑
|
|
openForm('update', row)
|
|
} else if (val == 'delete') { // 删除
|
|
handleDelete(row.id)
|
|
} else if (val == 'receive') { // 接单
|
|
handleReceive(row.id)
|
|
} else if (val == 'execute') { // 执行
|
|
handleExecute(row.id)
|
|
} else if (val == 'finish') { // 完成
|
|
handleFinish(row)
|
|
} else if (val == 'cancel') { // 作废
|
|
handleCancel(row.id)
|
|
} else if (val == 'validate_repair') { // 维修验证
|
|
handleValidateRepair(row)
|
|
} else if (val == 'validate_report') { // 报修验证
|
|
handleValidateReport(row)
|
|
} else if (val == 'transfer') { // 转办
|
|
handleTransferReport(row)
|
|
}
|
|
|
|
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const basicFormRef = ref()
|
|
const openForm = (type: string, row?: any) => {
|
|
if(type == "create"){
|
|
EquipmentRepairJobMain.allSchemas.formSchema.forEach((item) => {
|
|
if(item.field == 'sources'){
|
|
item.value = '1'
|
|
item.componentProps.disabled = true
|
|
}
|
|
if(item.field == 'status'){
|
|
item.value = '3'
|
|
item.componentProps.disabled = true
|
|
}
|
|
})
|
|
}else{
|
|
EquipmentRepairJobMain.allSchemas.formSchema.forEach((item) => {
|
|
if(item.field == 'sources'){
|
|
item.componentProps.disabled = true
|
|
}
|
|
if(item.field == 'status'){
|
|
item.componentProps.disabled = true
|
|
}
|
|
})
|
|
}
|
|
basicFormRef.value.open(type, row)
|
|
}
|
|
|
|
// form表单提交
|
|
const formsSuccess = async (formType,data) => {
|
|
var isHave =EquipmentRepairJobMain.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 EquipmentRepairJobMainApi.createEquipmentRepairJobMain(data)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await EquipmentRepairJobMainApi.updateEquipmentRepairJobMain(data)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
basicFormRef.value.dialogVisible = false
|
|
getList()
|
|
}
|
|
|
|
/** 详情操作 */
|
|
const detailRef = ref()
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => {
|
|
if('5' === row.status){
|
|
statusBtn.value=true
|
|
}else {
|
|
statusBtn.value=false
|
|
}
|
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicEquipmentRepairJobMain')
|
|
}
|
|
|
|
/** 页面操作 */
|
|
let count = ref(0)
|
|
const handleMainFefresh = async()=>{
|
|
count.value++
|
|
getList()
|
|
}
|
|
|
|
// 子页面查询字典页面返回
|
|
const searchTableSuccessDetail = (formField, searchField, val, formRef ) => {
|
|
nextTick(() => {
|
|
const setV = {}
|
|
let result = '';
|
|
for (var i = 0; i < val.length; i++) {
|
|
result += val[i].code + ',';
|
|
}
|
|
if(result.endsWith(',')){
|
|
result = result.substring(0,result.length -1)
|
|
}
|
|
setV[formField] = result;
|
|
formRef.setValues(setV)
|
|
})
|
|
}
|
|
|
|
/** 转办按钮操作 */
|
|
const transferForm = ref()
|
|
const handleTransferReport = async (row) => {
|
|
await message.delConfirm('是否转办所选中工单?');
|
|
transferForm.value.open('update', row);
|
|
|
|
}
|
|
|
|
|
|
/** 报修验证按钮操作 */
|
|
const finishForm3Ref = ref()
|
|
const handleValidateReport = async (row) => {
|
|
await message.delConfirm('是否验证所选中工单?');
|
|
message.confirmPassword(t('')).then(async () => {
|
|
|
|
finishForm3Ref.value.open('update', row);
|
|
}).catch (async (action: Action) => {
|
|
if(action === 'cancel'){
|
|
const params = ref({id: '', number:''})
|
|
params.value.id = row.id
|
|
params.value.number = row.number
|
|
//生成新工单
|
|
await EquipmentRepairJobMainApi.createEquipmentRepairNewOrder(params.value)
|
|
message.success(t('工单已结束'))
|
|
// 刷新列表
|
|
await getList()
|
|
}
|
|
})
|
|
|
|
}
|
|
|
|
/** 维修验证按钮操作 */
|
|
const finishForm1Ref = ref()
|
|
const handleValidateRepair = async (row) => {
|
|
await message.delConfirm('是否验证所选中工单?');
|
|
message.confirmPassword(t('')).then(async () => {
|
|
// 二次确认
|
|
//打开提交表单
|
|
finishForm1Ref.value.open('update', row);
|
|
}).catch (async (action: Action) => {
|
|
if(action === 'cancel'){
|
|
const params = ref({id: '', status:''})
|
|
params.value.id = row.id
|
|
params.value.status = '5'
|
|
await EquipmentRepairJobMainApi.backEquipmentRepairOrder(params.value)
|
|
message.success(t('工单已打回'))
|
|
// 刷新列表
|
|
await getList()
|
|
}
|
|
})
|
|
|
|
}
|
|
|
|
/** 完成按钮操作 */
|
|
const finishForm2Ref = ref()
|
|
const handleFinish = async (row) => {
|
|
// 二次确认
|
|
await message.delConfirm('是否完成所选中工单?');
|
|
|
|
//打开提交表单
|
|
finishForm2Ref.value.open('update', row);
|
|
}
|
|
|
|
/** 接单按钮操作 */
|
|
const handleReceive = async (id: number) => {
|
|
try {
|
|
// 中止的二次确认
|
|
await message.delConfirm('是否接单?');
|
|
const params = ref({
|
|
id: '',
|
|
status:'',
|
|
})
|
|
params.value.id = id
|
|
params.value.status = '4'
|
|
// 发起删除
|
|
await EquipmentRepairJobMainApi.updateEquipmentRepairOrder(params.value)
|
|
message.success(t('接单成功'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
|
|
/** 作废按钮操作 */
|
|
const handleCancel = async (id: number) => {
|
|
try {
|
|
// 二次确认
|
|
await message.delConfirm('是否作废所选中任务?');
|
|
const params = ref({
|
|
id: '',
|
|
status:'',
|
|
})
|
|
params.value.id = id
|
|
params.value.status = '9'
|
|
// 发起
|
|
await EquipmentRepairJobMainApi.updateEquipmentRepairOrder(params.value)
|
|
message.success(t('执行成功'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
|
|
/** 执行按钮操作 */
|
|
const handleExecute = async (id: number) => {
|
|
try {
|
|
// 二次确认
|
|
await message.delConfirm('是否执行所选中任务?');
|
|
const params = ref({
|
|
id: '',
|
|
status:'',
|
|
})
|
|
params.value.id = id
|
|
params.value.status = '5'
|
|
// 发起
|
|
await EquipmentRepairJobMainApi.updateEquipmentRepairOrder(params.value)
|
|
message.success(t('执行成功'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
// 发起删除
|
|
await EquipmentRepairJobMainApi.deleteEquipmentRepairJobMain(id)
|
|
message.success(t('common.delSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
|
|
//finishForm1 关闭按钮回传
|
|
const getClosed1=(val)=> {
|
|
nextTick?.(() => {
|
|
console.log(val)
|
|
getList()
|
|
})
|
|
}
|
|
|
|
//finishForm1 提交按钮回传
|
|
const getData1=(val1,val2)=> {
|
|
nextTick?.(async () => {
|
|
try {
|
|
// const params = ref({
|
|
// id: '',
|
|
// status:'',
|
|
// })
|
|
// params.value.id = val1
|
|
// if(val2 == '1'){
|
|
// params.value.status = '8'
|
|
// }
|
|
// if(val2 == '0'){
|
|
// params.value.status = '7'
|
|
// }
|
|
// await EquipmentRepairJobMainApi.updateEquipmentRepairOrder(params.value)
|
|
message.success(t('工单已流转'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
|
|
}
|
|
)
|
|
}
|
|
|
|
|
|
|
|
//finishForm2 关闭按钮回传
|
|
const getClosed2=(val)=> {
|
|
nextTick?.(() => {
|
|
getList()
|
|
})
|
|
}
|
|
|
|
//finishForm2 提交按钮回传
|
|
const getData2=(val)=> {
|
|
nextTick?.(async () => {
|
|
message.success(t('工单已完成'))
|
|
// 刷新列表
|
|
await getList()
|
|
})
|
|
}
|
|
|
|
|
|
|
|
//finishForm3 关闭按钮回传
|
|
const getClosed3=(val)=> {
|
|
nextTick?.(() => {
|
|
console.log(val)
|
|
getList()
|
|
})
|
|
}
|
|
|
|
//finishForm3 提交按钮回传
|
|
const getData3=(val)=> {
|
|
nextTick?.(async () => {
|
|
//console.log(val)
|
|
// const params = ref({
|
|
// id: '',
|
|
// status:'',
|
|
// })
|
|
// params.value.id = val
|
|
// params.value.status = '7'
|
|
// await EquipmentRepairJobMainApi.updateEquipmentRepairOrder(params.value)
|
|
message.success(t('工单已流转'))
|
|
// 刷新列表
|
|
await getList()
|
|
}
|
|
)
|
|
}
|
|
|
|
|
|
//finishForm4 关闭按钮回传
|
|
const getClosed4=(val)=> {
|
|
nextTick?.(() => {
|
|
console.log(val)
|
|
getList()
|
|
})
|
|
}
|
|
|
|
//finishForm4 提交按钮回传
|
|
const getData4=(val)=> {
|
|
nextTick?.(async () => {
|
|
console.log(val)
|
|
try {
|
|
const params = ref({
|
|
id: '',
|
|
status:'',
|
|
})
|
|
params.value.id = val
|
|
params.value.status = '3'
|
|
await EquipmentRepairJobMainApi.updateEquipmentRepairOrder(params.value)
|
|
message.success(t('工单已流转'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
|
|
}
|
|
)
|
|
}
|
|
|
|
const onChange = (field, item) => {
|
|
//设备
|
|
if(field == 'type' && item == 'DEVICE'){
|
|
EquipmentRepairJobMain.allSchemas.formSchema.forEach((items) => {
|
|
if (items.field == 'equipmentCode') {
|
|
basicFormRef.value.formRef.setValues({
|
|
equipmentCode:''
|
|
})
|
|
items.componentProps.searchAllSchemas = EquipmentAccounts.allSchemas
|
|
items.componentProps.searchPage = EquipmentItemApi.getEquipmentAccountsPage
|
|
}
|
|
})
|
|
}
|
|
//工装
|
|
if(field == 'type' && item == 'EQUIPMENT'){
|
|
EquipmentRepairJobMain.allSchemas.formSchema.forEach((items) => {
|
|
if (items.field == 'equipmentCode') {
|
|
basicFormRef.value.formRef.setValues({
|
|
equipmentCode:''
|
|
})
|
|
items.componentProps.searchAllSchemas = ToolAccounts.allSchemas
|
|
items.componentProps.searchPage = ToolItemApi.getToolAccountsPage
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
exportLoading.value = true
|
|
const data = await EquipmentRepairJobMainApi.exportEquipmentRepairJobMain(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 EquipmentRepairJobMainApi.importTemplate()
|
|
})
|
|
|
|
</script>
|
|
|