| | |
| | | <a-col :xl="6" :lg="7" :md="8" :sm="24"> |
| | | <a-form-item label="维修班组"> |
| | | <a-tree-select v-model="queryParam.repairDepartOrgCode" style="width: 100%" |
| | | :tree-data="repairDepartTreeData" |
| | | show-search :tree-data="repairDepartTreeData" treeNodeFilterProp="title" |
| | | :replaceFields="{key:'orgCode',value:'orgCode'}" searchPlaceholder="请输入关键字搜索" |
| | | :dropdown-style="{ maxHeight: '400px', overflow: 'auto' }" placeholder="请选择维修班组" |
| | | allow-clear tree-default-expand-all> |
| | | </a-tree-select> |
| | |
| | | style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 |
| | | <a style="margin-left: 24px" @click="onSelectChange([])">清空</a> |
| | | </div> |
| | | <a-table |
| | | ref="table" |
| | | size="middle" |
| | | bordered |
| | | rowKey="id" |
| | | :columns="columns" |
| | | :dataSource="dataSource" |
| | | :pagination="ipagination" |
| | | :loading="loading" |
| | | :scroll="{ x: 'max-content' }" |
| | | :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
| | | @change="handleTableChange" |
| | | > |
| | | <a-table ref="table" size="middle" bordered rowKey="id" :columns="columns" :dataSource="dataSource" |
| | | :pagination="ipagination" :loading="loading" :scroll="{ x: 'max-content' }" |
| | | :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" @change="handleTableChange"> |
| | | <!--统一编码--> |
| | | <template slot="equipmentCode" slot-scope="text"> |
| | | <template slot="equipmentCode" slot-scope="text,record"> |
| | | <a href="#" @click="handleDetail(record)" style="display: inline-block;height: 100%">{{text}}</a> |
| | | </template> |
| | | |
| | |
| | | <a-switch checked-children="是" un-checked-children="否" :checked="Boolean(+text)" disabled/> |
| | | </template> |
| | | |
| | | <!--操作系统--> |
| | | <!--灭火器--> |
| | | <template slot="fireExtinguisher" slot-scope="text"> |
| | | <a-switch checked-children="是" un-checked-children="否" :checked="Boolean(+text)" disabled/> |
| | | </template> |
| | | |
| | | <!--真空热处理炉--> |
| | | <template slot="trueHeatTreatment" slot-scope="text"> |
| | | <a-switch checked-children="是" un-checked-children="否" :checked="Boolean(+text)" disabled/> |
| | | </template> |
| | | |
| | |
| | | <a @click.stop="handleEdit(record)">编辑</a> |
| | | |
| | | <a-divider type="vertical"/> |
| | | |
| | | <a-dropdown> |
| | | <a class="ant-dropdown-link">更多 <a-icon type="down"/></a> |
| | | <a-menu slot="overlay"> |
| | |
| | | </a-table> |
| | | </div> |
| | | <!-- table区域-end --> |
| | | |
| | | <!--<a-tabs v-model="activeTabKey" @change="handleTabChange">--> |
| | | <!--<a-tab-pane tab="设备文档" :key="1">--> |
| | | <!--<eam-equipment-attachment-list ref="tabPaneTableListRef1"/>--> |
| | | <!--</a-tab-pane>--> |
| | | <!--<a-tab-pane tab="点检工单" :key="2">--> |
| | | <!--<eam-inspection-order-list ref="tabPaneTableListRef2" :isDisplayOperation="false"/>--> |
| | | <!--</a-tab-pane>--> |
| | | <!--<a-tab-pane tab="二保工单" :key="3">--> |
| | | <!--<eam-second-maintenance-order-list ref="tabPaneTableListRef3" :isDisplayOperation="false"/>--> |
| | | <!--</a-tab-pane>--> |
| | | <!--<a-tab-pane tab="三保工单" :key="4">--> |
| | | <!--<eam-third-maintenance-order-list ref="tabPaneTableListRef4" :isDisplayOperation="false"/>--> |
| | | <!--</a-tab-pane>--> |
| | | <!--<a-tab-pane tab="维修工单" :key="5">--> |
| | | <!--<eam-repair-order-list ref="tabPaneTableListRef5" :isDisplayOperation="false"/>--> |
| | | <!--</a-tab-pane>--> |
| | | <!--<a-tab-pane tab="保养标准" :key="6">--> |
| | | <!--<eam-maintenance-standard-list ref="tabPaneTableListRef6" :isDisplayOperation="false"/>--> |
| | | <!--</a-tab-pane>--> |
| | | <!--<a-tab-pane tab="工艺参数" :key="7" v-if="isOpenProcess">--> |
| | | <!--<eam-equipment-process-list ref="tabPaneTableListRef7" :isDisplayOperation="false"/>--> |
| | | <!--</a-tab-pane>--> |
| | | <!--<a-tab-pane tab="设备精度" :key="8" v-if="isOpenPrecision">--> |
| | | <!--<eam-equipment-precision-list ref="tabPaneTableListRef8" :isDisplayOperation="false"/>--> |
| | | <!--</a-tab-pane>--> |
| | | <!--</a-tabs>--> |
| | | |
| | | <!-- 表单区域 --> |
| | | <eamEquipment-modal ref="modalForm" @ok="modalFormOk" :productionTreeData="productionTreeData"/> |
| | | <eamEquipment-modal ref="modalForm" @ok="modalFormOk" :productionTreeData="productionTreeData" |
| | | :repairDepartTreeData="repairDepartTreeData"/> |
| | | <!--履历弹窗--> |
| | | <resume-drawer ref="resumeDrawerRef" :currentTableRowRecord="currentTableRowRecord"/> |
| | | </a-card> |
| | |
| | | import EamEquipmentModal from './modules/EamEquipmentModal.vue' |
| | | import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
| | | import { getAction, templateXlsDownload } from '@api/manage' |
| | | import { getSystemConfigValue } from '@api/api' |
| | | import ResumeDrawer from '@views/eam/equipment/modules/ResumeDrawer.vue' |
| | | import EamMaintenanceStandardList from '@views/eam/base/EamMaintenanceStandardList.vue' |
| | | import EamRepairOrderList from '../repair/EamRepairOrderList' |
| | | import EamInspectionOrderList from '../maintenance/EamInspectionOrderList' |
| | | import EamEquipmentAttachmentList from '@views/eam/equipment/EamEquipmentAttachmentList.vue' |
| | | import EamEquipmentProcessList from '@views/eam/equipment/modules/EamEquipmentProcessList.vue' |
| | | import EamEquipmentPrecisionList from '@views/eam/equipment/modules/EamEquipmentPrecisionList.vue' |
| | | import EamSecondMaintenanceOrderList from '@views/eam/maintenance/EamSecondMaintenanceOrderList.vue' |
| | | import EamThirdMaintenanceOrderList from '@views/eam/maintenance/EamThirdMaintenanceOrderList.vue' |
| | | |
| | | export default { |
| | | name: 'EquipmentLedger', |
| | | mixins: [JeecgListMixin], |
| | | components: { |
| | | EamInspectionOrderList, |
| | | EamRepairOrderList, |
| | | EamMaintenanceStandardList, |
| | | ResumeDrawer, |
| | | EamEquipmentModal, |
| | | EamEquipmentAttachmentList, |
| | | EamEquipmentProcessList, |
| | | EamEquipmentPrecisionList, |
| | | EamSecondMaintenanceOrderList, |
| | | EamThirdMaintenanceOrderList |
| | | EamEquipmentModal |
| | | }, |
| | | data() { |
| | | return { |
| | |
| | | align: 'center', |
| | | dataIndex: 'equipmentCode', |
| | | scopedSlots: { customRender: 'equipmentCode' }, |
| | | ellipsis: true, |
| | | fixed: 'left', |
| | | sorter: true |
| | | fixed: 'left' |
| | | }, |
| | | { |
| | | title: '设备名称', |
| | | align: 'center', |
| | | dataIndex: 'equipmentName', |
| | | ellipsis: true, |
| | | fixed: 'left' |
| | | }, |
| | | { |
| | | title: '型号', |
| | | align: 'center', |
| | | dataIndex: 'equipmentModel', |
| | | fixed: 'left' |
| | | }, |
| | | { |
| | |
| | | { |
| | | title: '维修班组', |
| | | align: 'center', |
| | | dataIndex: 'repairDepartOrgCode' |
| | | dataIndex: 'repairDepartOrgCode_dictText' |
| | | }, |
| | | { |
| | | title: '安全配置', |
| | |
| | | { |
| | | title: '冷却系统', |
| | | align: 'center', |
| | | dataIndex: 'coolSystem' |
| | | dataIndex: 'coolSystem_dictText' |
| | | }, |
| | | { |
| | | title: '灭火器', |
| | |
| | | title: '系统', |
| | | align: 'center', |
| | | dataIndex: 'system' |
| | | }, |
| | | { |
| | | title: '真空热处理炉', |
| | | align: 'center', |
| | | dataIndex: 'trueHeatTreatment', |
| | | scopedSlots: { customRender: 'trueHeatTreatment' } |
| | | }, |
| | | { |
| | | title: '设备端口', |
| | |
| | | title: '资产制造商', |
| | | align: 'center', |
| | | dataIndex: 'manufacturingEnterprise', |
| | | scopedSlots: { customRender: 'manufacturingEnterprise' }, |
| | | ellipsis: true |
| | | scopedSlots: { customRender: 'manufacturingEnterprise' } |
| | | }, |
| | | { |
| | | title: '资产来源国家', |
| | | align: 'center', |
| | | dataIndex: 'originCountry' |
| | | }, |
| | | { |
| | | title: '型号', |
| | | align: 'center', |
| | | dataIndex: 'equipmentModel' |
| | | }, |
| | | { |
| | | title: '设备规格', |
| | |
| | | dataIndex: 'nextThirdMaintenance' |
| | | }, |
| | | { |
| | | title: '三保周期', |
| | | title: '三保周期(年)', |
| | | align: 'center', |
| | | dataIndex: 'thirdMaintenancePeriod' |
| | | }, |
| | |
| | | dataIndex: 'nextTechnologyCheck' |
| | | }, |
| | | { |
| | | title: '技术鉴定周期', |
| | | title: '技术鉴定周期(年)', |
| | | align: 'center', |
| | | dataIndex: 'technologyCheckPeriod' |
| | | }, |
| | |
| | | exportXlsUrl: 'eam/equipment/exportXls', |
| | | importExcelUrl: 'eam/equipment/importExcel', |
| | | getProductionTreeList: '/eam/BaseFactory/queryTreeList', |
| | | templateXlsDownloadUrl: '导入模板/设备台账导入模板_v1.1.xlsx' |
| | | repairDepartTreeList: '/eam/eamBaseRepairDepart/queryTreeList', |
| | | templateXlsDownloadUrl: '导入模板/设备台账导入模板.xls' |
| | | }, |
| | | currentTableRowRecord: {}, |
| | | productionTreeData: [], |
| | |
| | | }, |
| | | created() { |
| | | this.getProductionTreeDataByApi() |
| | | this.getRepairDepartTreeDataByApi() |
| | | }, |
| | | methods: { |
| | | // 获取使用部门树 |
| | |
| | | }) |
| | | }, |
| | | |
| | | // 获取使用部门树 |
| | | getProductionTreeDataByApi() { |
| | | getAction(this.url.getProductionTreeList) |
| | | // 获取维修班组树 |
| | | getRepairDepartTreeDataByApi() { |
| | | getAction(this.url.repairDepartTreeList) |
| | | .then(res => { |
| | | if (res.success) { |
| | | this.productionTreeData = res.result |
| | | this.repairDepartTreeData = res.result |
| | | } else { |
| | | this.$notification.warning({ |
| | | message: '消息', |
| | |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | | <style scoped> |
| | | @import '~@assets/less/common.less'; |
| | | </style> |
| | | </script> |