12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211 |
- <template>
- <ContentWrap v-loading="formLoading">
- <el-form
- ref="formRef"
- :model="formData"
- :rules="formRules"
- v-loading="formLoading"
- style="margin-right: 4em; margin-left: 0.5em; margin-top: 1em"
- label-width="130px"
- >
- <div class="base-expandable-content">
- <el-row>
- <el-col :span="12">
- <el-form-item :label="t('main.planName')" prop="name">
- <el-input type="text" v-model="formData.name" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item :label="t('main.planCode')" prop="serialNumber">
- <el-input type="text" v-model="formData.serialNumber" disabled/>
- </el-form-item>
- </el-col>
- <el-col :span="24">
- <el-form-item :label="t('iotMaintain.remark')" prop="remark">
- <el-input v-model="formData.remark" type="textarea" :placeholder="t('iotMaintain.remarkHolder')" />
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </el-form>
- </ContentWrap>
- <ContentWrap>
- <ContentWrap>
- <!-- 搜索工作栏 -->
- <el-form
- class="-mb-15px"
- :model="queryParams"
- ref="queryFormRef"
- :inline="true"
- label-width="68px"
- >
- <el-form-item>
- <el-button @click="openForm" type="warning">
- <Icon icon="ep:plus" class="mr-5px" /> {{ t('operationFill.add') }}</el-button>
- </el-form-item>
- </el-form>
- </ContentWrap>
- <!-- 列表 -->
- <ContentWrap>
- <el-table v-loading="loading" :data="pagedList" :stripe="true" :show-overflow-tooltip="true" :cell-class-name="cellClassName">
- <!-- 添加序号列 -->
- <el-table-column
- type="index"
- :label="t('iotDevice.serial')"
- width="70"
- align="center"
- />
- <el-table-column label="设备id" align="center" prop="deviceId" v-if="false"/>
- <el-table-column :label="t('iotMaintain.deviceCode')" align="center" prop="deviceCode" />
- <el-table-column :label="t('iotMaintain.deviceName')" align="center" prop="deviceName" />
- <el-table-column :label="t('operationFillForm.sumTime')" align="center" prop="totalRunTime" :formatter="erpPriceTableColumnFormatter">
- <template #default="{ row }">
- {{ row.totalRunTime ?? row.tempTotalRunTime }}
- </template>
- </el-table-column>
- <el-table-column :label="t('operationFillForm.sumKil')" align="center" prop="totalMileage" :formatter="erpPriceTableColumnFormatter">
- <template #default="{ row }">
- {{ row.totalMileage ?? row.tempTotalMileage }}
- </template>
- </el-table-column>
- <el-table-column label="tempTotalRunTime" align="center" prop="tempTotalRunTime" :formatter="erpPriceTableColumnFormatter" v-if="false"/>
- <el-table-column label="tempTotalMileage" align="center" prop="tempTotalMileage" :formatter="erpPriceTableColumnFormatter" v-if="false"/>
- <el-table-column :label="t('bomList.bomNode')" align="center" prop="name" />
- <el-table-column :label="t('main.mileage')" key="mileageRule" width="80">
- <template #default="scope">
- <el-switch
- v-model="scope.row.mileageRule"
- :active-value="0"
- :inactive-value="1"
- @change="handleRuleChange(scope.row, 'mileage')"
- />
- </template>
- </el-table-column>
- <el-table-column :label="t('main.runTime')" key="runningTimeRule" width="90">
- <template #default="scope">
- <el-switch
- v-model="scope.row.runningTimeRule"
- :active-value="0"
- :inactive-value="1"
- @change="handleRuleChange(scope.row, 'runningTime')"
- />
- </template>
- </el-table-column>
- <el-table-column :label="t('main.date')" key="naturalDateRule" width="80">
- <template #default="scope">
- <el-switch
- v-model="scope.row.naturalDateRule"
- :active-value="0"
- :inactive-value="1"
- />
- </template>
- </el-table-column>
- <el-table-column :label="t('operationFill.operation')" align="center" min-width="120px">
- <template #default="scope">
- <div style="display: flex; justify-content: center; align-items: center; width: 100%">
- <div>
- <Icon style="vertical-align: middle; color: #ea3434" icon="ep:zoom-out" />
- <el-button
- style="vertical-align: middle"
- link
- type="danger"
- @click="handleDelete(scope.row.deviceId+'-'+scope.row.bomNodeId)"
- >
- {{t('modelTemplate.delete')}}
- </el-button>
- </div>
- <!-- 新增配置按钮 -->
- <div style="margin-left: 12px">
- <el-button
- link
- type="primary"
- @click="openConfigDialog(scope.row)"
- >
- {{t('modelTemplate.update')}}
- </el-button>
- </div>
- </div>
- </template>
- </el-table-column>
- </el-table>
- <!-- 添加分页组件 -->
- <el-pagination
- :key="`pagination-${list.length}-${currentPage}`"
- style="margin-top: 20px; justify-content: flex-end"
- :total="list.length"
- v-model:current-page="currentPage"
- v-model:page-size="pageSize"
- :page-sizes="[10, 20, 50, 100]"
- layout="total, sizes, prev, pager, next, jumper"
- @current-change="handlePageChange"
- @size-change="handleSizeChange"
- />
- </ContentWrap>
- </ContentWrap>
- <ContentWrap>
- <el-form>
- <el-form-item style="float: right">
- <el-button @click="submitForm" type="primary" :disabled="formLoading">{{t('iotMaintain.save')}}</el-button>
- <el-button @click="close">{{t('iotMaintain.cancel')}}</el-button>
- </el-form-item>
- </el-form>
- </ContentWrap>
- <MainPlanDeviceList ref="deviceFormRef" @choose="deviceChoose" />
- <!-- 新增配置对话框 -->
- <el-dialog
- v-model="configDialog.visible"
- :title="`设备 ${configDialog.current?.deviceCode+'-'+configDialog.current?.name} 保养配置`"
- width="600px"
- :close-on-click-modal="false"
- >
- <!-- 使用header插槽自定义标题 -->
- <template #header>
- <span>设备 <strong>{{ configDialog.current?.deviceCode }}-{{ configDialog.current?.name }}</strong> 保养项配置</span>
- </template>
- <el-form :model="configDialog.form" label-width="200px" :rules="configFormRules" ref="configFormRef">
- <div class="form-group">
- <div class="group-title">{{ t('mainPlan.basicMaintenanceRecords') }}</div>
- <!-- 里程配置 -->
- <el-form-item
- v-if="configDialog.current?.mileageRule === 0"
- :label="t('mainPlan.lastMaintenanceMileage')"
- prop="lastRunningKilometers"
- >
- <el-input-number
- v-model="configDialog.form.lastRunningKilometers"
- :precision="2"
- :min="0"
- controls-position="right"
- :controls="false"
- style="width: 80%"
- />
- </el-form-item>
- <!-- 运行时间配置 -->
- <el-form-item
- v-if="configDialog.current?.runningTimeRule === 0"
- :label="t('mainPlan.lastMaintenanceOperationTime')"
- prop="lastRunningTime"
- >
- <el-input-number
- v-model="configDialog.form.lastRunningTime"
- :precision="1"
- :min="0"
- controls-position="right"
- :controls="false"
- style="width: 80%"
- />
- </el-form-item>
- <!-- 自然日期配置 -->
- <el-form-item
- v-if="configDialog.current?.naturalDateRule === 0"
- :label="t('mainPlan.lastMaintenanceNaturalDate')"
- prop="lastNaturalDate"
- >
- <el-date-picker
- v-model="configDialog.form.lastNaturalDate"
- type="date"
- placeholder="选择日期"
- format="YYYY-MM-DD"
- value-format="YYYY-MM-DD"
- style="width: 80%"
- />
- </el-form-item>
- </div>
- <div class="form-group" v-if="configDialog.current?.mileageRule === 0">
- <div class="group-title">{{ t('mainPlan.operatingMileageRuleConfiguration') }}</div>
- <!-- 保养规则周期值 + 提前量 -->
- <el-form-item
- v-if="configDialog.current?.mileageRule === 0"
- :label="t('mainPlan.operatingMileageCycle')"
- prop="nextRunningKilometers"
- >
- <el-input-number
- v-model="configDialog.form.nextRunningKilometers"
- :precision="2"
- :min="0"
- controls-position="right"
- :controls="false"
- style="width: 80%"
- />
- </el-form-item>
- <el-form-item
- v-if="configDialog.current?.mileageRule === 0"
- :label="t('mainPlan.OperatingMileageCycle_lead')"
- prop="kiloCycleLead"
- >
- <el-input-number
- v-model="configDialog.form.kiloCycleLead"
- :precision="2"
- :min="0"
- controls-position="right"
- :controls="false"
- style="width: 80%"
- />
- </el-form-item>
- </div>
- <div class="form-group" v-if="configDialog.current?.runningTimeRule === 0">
- <div class="group-title">{{ t('mainPlan.RunTimeRuleConfiguration') }}</div>
- <el-form-item
- v-if="configDialog.current?.runningTimeRule === 0"
- :label="t('mainPlan.RunTimeCycle')"
- prop="nextRunningTime"
- >
- <el-input-number
- v-model="configDialog.form.nextRunningTime"
- :precision="1"
- :min="0"
- controls-position="right"
- :controls="false"
- style="width: 80%"
- />
- </el-form-item>
- <el-form-item
- v-if="configDialog.current?.runningTimeRule === 0"
- :label="t('mainPlan.RunTimeCycle_Lead')"
- prop="timePeriodLead"
- >
- <el-input-number
- v-model="configDialog.form.timePeriodLead"
- :precision="1"
- :min="0"
- controls-position="right"
- :controls="false"
- style="width: 80%"
- />
- </el-form-item>
- </div>
- <div class="form-group" v-if="configDialog.current?.naturalDateRule === 0">
- <div class="group-title">{{ t('mainPlan.NaturalDayRuleConfig') }}</div>
- <el-form-item
- v-if="configDialog.current?.naturalDateRule === 0"
- :label="t('mainPlan.NaturalDailyCycle') "
- prop="nextNaturalDate"
- >
- <el-input-number
- v-model="configDialog.form.nextNaturalDate"
- :min="0"
- controls-position="right"
- :controls="false"
- style="width: 80%"
- />
- </el-form-item>
- <el-form-item
- v-if="configDialog.current?.naturalDateRule === 0"
- :label="t('mainPlan.NaturalDailyCycle_Lead') "
- prop="naturalDatePeriodLead"
- >
- <el-input-number
- v-model="configDialog.form.naturalDatePeriodLead"
- :min="0"
- controls-position="right"
- :controls="false"
- style="width: 80%"
- />
- </el-form-item>
- </div>
- <!-- 运行记录模板中 多个 累计运行时长 累计运行里程 属性匹配-->
- <div class="form-group"
- v-if="(configDialog.current?.runningTimeRule === 0 || configDialog.current?.mileageRule === 0)
- && (configDialog.current?.timeAccumulatedAttrs?.length || configDialog.current?.mileageAccumulatedAttrs?.length)
- && !configDialog.current.totalRunTime && !configDialog.current.totalMileage" >
- <div class="group-title">{{ t('mainPlan.accumulatedParams') }}</div>
- <!-- 累计运行时长 -->
- <el-form-item
- v-if="configDialog.current?.runningTimeRule === 0
- && configDialog.current?.timeAccumulatedAttrs?.length && !configDialog.current.totalRunTime"
- :label="t('mainPlan.accumulatedRunTime')"
- prop="accumulatedTimeOption"
- :rules="[{
- required: configDialog.current?.runningTimeRule === 0 && configDialog.current?.timeAccumulatedAttrs?.length,
- message: '请选择累计运行时长',
- trigger: 'change'
- }]"
- >
- <el-select
- v-model="configDialog.form.accumulatedTimeOption"
- placeholder="请选择累计运行时长"
- style="width: 80%"
- clearable
- @change="handleAccumulatedTimeChange"
- >
- <el-option
- v-for="(item, index) in configDialog.current.timeAccumulatedAttrs"
- :key="`time-${item.pointName}-${index}`"
- :label="item.pointName"
- :value="item.pointName"
- />
- </el-select>
- </el-form-item>
- <!-- 累计运行公里数 -->
- <el-form-item
- v-if="configDialog.current?.mileageRule === 0
- && configDialog.current?.mileageAccumulatedAttrs?.length && !configDialog.current.totalMileage"
- :label="t('mainPlan.accumulatedMileage')"
- prop="accumulatedMileageOption"
- :rules="[{
- required: configDialog.current?.mileageRule === 0 && configDialog.current?.mileageAccumulatedAttrs?.length,
- message: '请选择累计运行公里数',
- trigger: 'change'
- }]"
- >
- <el-select
- v-model="configDialog.form.accumulatedMileageOption"
- placeholder="请选择累计运行公里数"
- style="width: 80%"
- clearable
- @change="handleAccumulatedMileageChange"
- >
- <el-option
- v-for="(item, index) in configDialog.current.mileageAccumulatedAttrs"
- :key="`mileage-${item.pointName}-${index}`"
- :label="item.pointName"
- :value="item.pointName"
- />
- </el-select>
- </el-form-item>
- </div>
- </el-form>
- <template #footer>
- <el-button @click="configDialog.visible = false">{{ t('common.cancel') }}</el-button>
- <el-button type="primary" @click="saveConfig">{{ t('common.save') }}</el-button>
- </template>
- </el-dialog>
- </template>
- <script setup lang="ts">
- import { IotDeviceApi, IotDeviceVO } from '@/api/pms/device'
- import * as UserApi from '@/api/system/user'
- import { useUserStore } from '@/store/modules/user'
- import { ref, computed, nextTick } from 'vue'
- import { IotMaintenanceBomApi, IotMaintenanceBomVO } from '@/api/pms/iotmaintenancebom'
- import { IotMaintenancePlanApi, IotMaintenancePlanVO } from '@/api/pms/maintenance'
- import { useTagsViewStore } from '@/store/modules/tagsView'
- import {CACHE_KEY, useCache} from "@/hooks/web/useCache";
- import MainPlanDeviceList from "@/views/pms/maintenance/MainPlanDeviceList.vue";
- import * as DeptApi from "@/api/system/dept";
- import {erpPriceTableColumnFormatter} from "@/utils";
- import dayjs from 'dayjs'
- /** 保养计划 表单 */
- defineOptions({ name: 'IotAddMainPlan' })
- const { t } = useI18n() // 国际化
- const message = useMessage() // 消息弹窗
- const { delView } = useTagsViewStore() // 视图操作
- const { currentRoute, push } = useRouter()
- const deptUsers = ref<UserApi.UserVO[]>([]) // 用户列表
- const dept = ref() // 当前登录人所属部门对象
- const configFormRef = ref() // 配置弹出框对象
- const dialogTitle = ref('') // 弹窗的标题
- const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
- const formType = ref('') // 表单的类型:create - 新增;update - 修改
- const deviceLabel = ref('') // 表单的类型:create - 新增;update - 修改
- const list = ref<IotMaintenanceBomVO[]>([]) // 设备bom关联列表的数据
- const deviceIds = ref<number[]>([]) // 已经选择的设备id数组
- // 分页相关变量
- const currentPage = ref(1)
- const pageSize = ref(10)
- // 计算分页后的数据
- const pagedList = computed(() => {
- const start = (currentPage.value - 1) * pageSize.value;
- const end = Math.min(start + pageSize.value, list.value.length);
- return list.value.slice(start, end);
- });
- // 处理页码变化
- const handlePageChange = (page: number) => {
- currentPage.value = page
- }
- // 处理每页数量变化
- const handleSizeChange = (size: number) => {
- pageSize.value = size
- // currentPage.value = 1 // 重置到第一页
- // 添加以下两行防止页码越界
- const maxPage = Math.ceil(list.value.length / size);
- if (currentPage.value > maxPage) currentPage.value = maxPage;
- }
- const { params, name } = useRoute() // 查询参数
- const id = params.id
- const formData = ref({
- id: undefined,
- deptId: undefined,
- name: '',
- serialNumber: undefined,
- responsiblePerson: undefined,
- remark: undefined,
- failureName: undefined,
- status: undefined,
- devicePersons: '',
- })
- const formRules = reactive({
- name: [{ required: true, message: '计划名称不能为空', trigger: 'blur' }],
- responsiblePerson: [{ required: true, message: '责任人不能为空', trigger: 'blur' }],
- })
- const formRef = ref() // 表单 Ref
- // 新增配置相关状态
- const configDialog = reactive({
- visible: false,
- current: null as IotMaintenanceBomVO | null,
- form: {
- lastRunningKilometers: 0,
- lastRunningTime: 0,
- lastNaturalDate: '',
- // 保养规则 周期
- nextRunningKilometers: 0,
- nextRunningTime: 0,
- nextNaturalDate: 0,
- // 提前量
- kiloCycleLead: 0,
- timePeriodLead: 0,
- naturalDatePeriodLead: 0,
- // 多个累计时长 累计里程 匹配
- accumulatedTimeOption: null, // 累计运行时长选项
- accumulatedMileageOption: null, // 累计运行公里数选项
- }
- })
- // 单元格类名回调方法
- const cellClassName = ({ row, column }) => {
- // 只对序号列进行处理
- if (column.type === 'index') {
- // 检查该行所有启用的规则是否都已配置完整
- if (checkRowFilled(row)) {
- return 'all-filled'; // 返回自定义类名
- }
- }
- return '';
- };
- // 检查行数据是否完整填写
- const checkRowFilled = (row: IotMaintenanceBomVO) => {
- // 检查是否启用了至少一个规则
- const hasRuleEnabled =
- row.mileageRule === 0 ||
- row.runningTimeRule === 0 ||
- row.naturalDateRule === 0;
- if (!hasRuleEnabled) {
- return false; // 没有任何规则启用,不显示背景色
- }
- // 检查里程规则
- const mileageFilled = row.mileageRule !== 0
- ? true // 规则未启用,视为已"填写"
- : (row.lastRunningKilometers > 0 &&
- row.nextRunningKilometers > 0 &&
- row.kiloCycleLead > 0 &&
- // 检查累计里程参数是否已选择(当条件满足时)
- (!(row.mileageAccumulatedAttrs?.length && !row.totalMileage) ||
- (row.mileageAccumulatedAttrs?.length && !row.totalMileage && row.type)));
- // 检查运行时间规则
- const runningTimeFilled = row.runningTimeRule !== 0
- ? true
- : (row.lastRunningTime > 0 &&
- row.nextRunningTime > 0 &&
- row.timePeriodLead > 0 &&
- // 检查累计时间参数是否已选择(当条件满足时)
- (!(row.timeAccumulatedAttrs?.length && !row.totalRunTime) ||
- (row.timeAccumulatedAttrs?.length && !row.totalRunTime && row.code)));
- // 检查自然日期规则
- const naturalDateFilled = row.naturalDateRule !== 0
- ? true
- : (row.lastNaturalDate &&
- row.nextNaturalDate > 0 &&
- row.naturalDatePeriodLead > 0);
- return mileageFilled && runningTimeFilled && naturalDateFilled;
- };
- // 打开配置对话框
- const openConfigDialog = (row: IotMaintenanceBomVO) => {
- // 新增规则校验:至少一个规则开启
- if (row.mileageRule !== 0 && row.runningTimeRule !== 0 && row.naturalDateRule !== 0) {
- message.error('请先设置保养规则')
- return
- }
- configDialog.current = row
- // 处理日期初始化(核心修改)
- let initialDate = ''
- if (row.lastNaturalDate) {
- // 如果已有值:时间戳 -> 日期字符串
- initialDate = dayjs(row.lastNaturalDate).format('YYYY-MM-DD')
- } else {
- // 如果无值:设置默认值避免1970问题
- initialDate = ''
- }
- configDialog.form = {
- lastRunningKilometers: row.lastRunningKilometers || 0,
- lastRunningTime: row.lastRunningTime || 0,
- // 时间戳 -> Date对象(用于日期选择器)
- lastNaturalDate: row.lastNaturalDate
- ? dayjs(row.lastNaturalDate).format('YYYY-MM-DD')
- : null,
- // 保养规则 周期值
- nextRunningKilometers: row.nextRunningKilometers || 0,
- nextRunningTime: row.nextRunningTime || 0,
- nextNaturalDate: row.nextNaturalDate || 0,
- // 提前量
- kiloCycleLead: row.kiloCycleLead || 0,
- timePeriodLead: row.timePeriodLead || 0,
- naturalDatePeriodLead: row.naturalDatePeriodLead || 0,
- // 多个累计时长 累计里程 匹配
- accumulatedTimeOption: null, // 累计运行时长选项
- accumulatedMileageOption: null, // 累计运行公里数选项
- }
- // 初始化累计参数选择
- configDialog.form.accumulatedTimeOption = row.isRuntimeFromTemp
- ? row.code
- : null;
- configDialog.form.accumulatedMileageOption = row.isMileageFromTemp
- ? row.type
- : null;
- configDialog.visible = true
- }
- // 保存配置
- const saveConfig = () => {
- (configFormRef.value as any).validate((valid: boolean) => {
- if (!valid) return
- if (!configDialog.current) return
- // 累计运行时长配置 校验逻辑
- if (configDialog.current.runningTimeRule === 0 &&
- configDialog.current.timeAccumulatedAttrs?.length &&
- !configDialog.form.accumulatedTimeOption) {
- message.error('请选择累计运行时长');
- return;
- }
- // 累计运行公里数配置 校验逻辑
- if (configDialog.current.mileageRule === 0 &&
- configDialog.current.mileageAccumulatedAttrs?.length &&
- !configDialog.form.accumulatedMileageOption) {
- message.error('请选择累计运行公里数');
- return;
- }
- // 动态校验逻辑
- const requiredFields = []
- if (configDialog.current.mileageRule === 0) {
- requiredFields.push('nextRunningKilometers', 'kiloCycleLead')
- }
- if (configDialog.current.runningTimeRule === 0) {
- requiredFields.push('nextRunningTime', 'timePeriodLead')
- }
- if (configDialog.current.naturalDateRule === 0) {
- requiredFields.push('nextNaturalDate', 'naturalDatePeriodLead')
- }
- const missingFields = requiredFields.filter(field =>
- !configDialog.form[field as keyof typeof configDialog.form]
- )
- if (missingFields.length > 0) {
- message.error('请填写所有必填项')
- return
- }
- // 强制校验逻辑
- if (configDialog.current.naturalDateRule === 0) {
- if (!configDialog.form.lastNaturalDate) {
- message.error('必须选择自然日期')
- return
- }
- // 验证日期有效性
- const dateValue = dayjs(configDialog.form.lastNaturalDate)
- if (!dateValue.isValid()) {
- message.error('日期格式不正确')
- return
- }
- }
- // 转换逻辑(关键修改)
- const finalDate = configDialog.form.lastNaturalDate
- ? dayjs(configDialog.form.lastNaturalDate).valueOf()
- : null // 改为null而不是0
- const updateData = {
- ...configDialog.form,
- lastNaturalDate: finalDate,
- };
- // 处理累计运行时长
- // 当规则关闭时,无论是否有选择值,都清除相关数据
- if (configDialog.current.runningTimeRule !== 0) {
- configDialog.current.code = null;
- configDialog.current.totalRunTime = null;
- configDialog.form.accumulatedTimeOption = null; // 清除选择值
- } else if (configDialog.form.accumulatedTimeOption) {
- // 查找选中的累计运行时长项
- const selectedTimeOption = configDialog.current.timeAccumulatedAttrs?.find(
- item => item.pointName === configDialog.form.accumulatedTimeOption
- );
- if (selectedTimeOption) {
- configDialog.current.code = selectedTimeOption.pointName;
- // 优先使用接口值,没有则使用临时值
- configDialog.current.tempTotalRunTime = selectedTimeOption.totalRunTime;
- configDialog.current.isRuntimeFromTemp = true;
- // 只有接口未提供值时才使用临时值
- if (!configDialog.current.totalRunTime) {
- // configDialog.current.totalRunTime = selectedTimeOption.totalRunTime;
- }
- }
- }
- if (configDialog.current.mileageRule !== 0) {
- configDialog.current.type = null;
- configDialog.current.totalMileage = null;
- configDialog.form.accumulatedMileageOption = null; // 清除选择值
- } else if (configDialog.form.accumulatedMileageOption) {
- // 查找选中的累计运行公里数项
- const selectedMileageOption = configDialog.current.mileageAccumulatedAttrs?.find(
- item => item.pointName === configDialog.form.accumulatedMileageOption
- );
- if (selectedMileageOption) {
- configDialog.current.type = selectedMileageOption.pointName;
- configDialog.current.tempTotalMileage = selectedMileageOption.totalRunTime;
- configDialog.current.isMileageFromTemp = true;
- if (!configDialog.current.totalMileage) {
- // configDialog.current.totalMileage = selectedMileageOption.totalRunTime;
- }
- }
- }
- // 更新当前行的数据
- Object.assign(configDialog.current, updateData);
- configDialog.visible = false
- })
- }
- // 累计运行时长变更
- const handleAccumulatedTimeChange = (option) => {
- }
- // 累计运行公里数变更
- const handleAccumulatedMileageChange = (option) => {
- }
- const queryParams = reactive({
- deviceIds: undefined,
- planId: id,
- bomFlag: 'b'
- })
- // 处理保养规则变化 取消保养规则 时 清空已经设置的相应保养规则数据
- const handleRuleChange = (row: IotMaintenanceBomVO, ruleType: 'mileage' | 'runningTime') => {
- // 当规则关闭时(inactive-value=1)
- console.log('执行了保养规则变化事件' + row.totalRunTime + ' - ' + row.totalMileage)
- // 当前保养项行已经返回了 totalRunTime totalMileage 数据 不需要再清空 累计运行时长 累计公里数
- // 选择完设备匹配了保养项后 不能直接置空 因为可能是正常的累计时长 累计公里数
- if (ruleType === 'runningTime' && row.runningTimeRule === 1) {
- // 清除临时来源的值
- if (row.isRuntimeFromTemp) {
- row.totalRunTime = null;
- row.tempTotalRunTime = null;
- row.code = null;
- // row.isRuntimeFromTemp = false;
- }
- // 强制清除配置对话框中的值(如果打开的是当前行)
- if (configDialog.current?.deviceId === row.deviceId
- && configDialog.current?.bomNodeId === row.bomNodeId) {
- configDialog.form.accumulatedTimeOption = null;
- }
- } else if (ruleType === 'mileage' && row.mileageRule === 1) {
- if (row.isMileageFromTemp) {
- row.totalMileage = null;
- row.tempTotalMileage = null;
- row.type = null;
- // row.isMileageFromTemp = false;
- }
- // 强制清除配置对话框中的值(如果打开的是当前行)
- if (configDialog.current?.deviceId === row.deviceId &&
- configDialog.current?.bomNodeId === row.bomNodeId) {
- configDialog.form.accumulatedMileageOption = null;
- }
- }
- // 如果配置对话框打开的是当前行,同步清除对话框中的选择值
- if (configDialog.visible && configDialog.current &&
- configDialog.current.deviceId === row.deviceId &&
- configDialog.current.bomNodeId === row.bomNodeId) {
- if (ruleType === 'runningTime') {
- configDialog.form.accumulatedTimeOption = null;
- } else if (ruleType === 'mileage') {
- configDialog.form.accumulatedMileageOption = null;
- }
- }
- }
- const deviceChoose = async(selectedDevices) => {
- const newIds = selectedDevices.map(device => device.id)
- deviceIds.value = [...new Set([...deviceIds.value, ...newIds])]
- const params = {
- deviceIds: newIds.join(',') // 明确传递数组参数
- }
- queryParams.deviceIds = JSON.parse(JSON.stringify(params.deviceIds))
- queryParams.bomFlag = 'b'
- // 根据选择的设备筛选出设备BOM中与保养相关的节点项
- const res = await IotDeviceApi.deviceAssociateBomList(queryParams)
- const rawData = res || []
- if(rawData.length === 0){
- message.error('选择的设备不存在待保养BOM项')
- }
- if (!Array.isArray(rawData)) {
- console.error('接口返回数据结构异常:', rawData)
- return
- }
- // 创建当前列表的唯一键集合(关键修改)
- const existingKeys = new Set(
- list.value.map(item => `${item.deviceId}-${item.bomNodeId}`)
- )
- // 转换数据结构(根据你的接口定义调整)
- const newItems = rawData
- .filter(device => {
- // 排除已存在的项(设备ID+bom节点ID)
- const key = `${device.id}-${device.bomNodeId}`
- return !existingKeys.has(key)
- })
- .map(device => ({
- assetClass: device.assetClass,
- deviceCode: device.deviceCode,
- deviceName: device.deviceName,
- deviceStatus: device.deviceStatus,
- deptName: device.deptName,
- name: device.name,
- code: device.code,
- assetProperty: device.assetProperty,
- remark: null, // 初始化备注
- deviceId: device.id, // 移除操作需要
- bomNodeId: device.bomNodeId,
- totalRunTime: device.totalRunTime,
- totalMileage: device.totalMileage,
- nextRunningKilometers: 0,
- nextRunningTime: 0,
- nextNaturalDate: 0,
- lastNaturalDate: null, // 初始化为null而不是0
- // 保养规则 提前量
- kiloCycleLead: 0,
- timePeriodLead: 0,
- naturalDatePeriodLead: 0,
- tempTotalRunTime: null,
- tempTotalMileage: null,
- isRuntimeFromTemp: false,
- isMileageFromTemp: false,
- // 添加累计时长参数列表 属性
- timeAccumulatedAttrs: device.timeAccumulatedAttrs || [],
- // 添加累计里程参数列表 属性
- mileageAccumulatedAttrs: device.mileageAccumulatedAttrs || []
- }))
- // 获取选择的设备相关的id数组
- newItems.forEach(item => {
- deviceIds.value.push(item.deviceId)
- })
- // 合并到现有列表(去重)
- newItems.forEach(item => {
- const exists = list.value.some(
- existing => (existing.deviceId === item.deviceId && existing.bomNodeId === item.bomNodeId)
- )
- if (!exists) {
- list.value.push(item)
- }
- })
- }
- const deviceFormRef = ref<InstanceType<typeof MainPlanDeviceList>>()
- const openForm = () => {
- deviceFormRef.value?.open();
- }
- const close = () => {
- delView(unref(currentRoute))
- push({ name: 'IotMaintenancePlan', params:{}})
- }
- /** 提交表单 */
- const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
- const submitForm = async () => {
- // 校验表单
- await formRef.value.validate()
- // 校验表格数据
- const isValid = validateTableData()
- if (!isValid) return
- // 提交请求
- formLoading.value = true
- try {
- // 将值为NULL 的保养规则 设置为 1
- list.value.forEach(item => {
- // 确保保养规则不为null
- item.mileageRule = item.mileageRule ?? 1
- item.runningTimeRule = item.runningTimeRule ?? 1
- item.naturalDateRule = item.naturalDateRule ?? 1
- })
- // 转换日期格式
- const convertedList = list.value.map(item => ({
- ...item,
- lastNaturalDate: typeof item.lastNaturalDate === 'number'
- ? item.lastNaturalDate
- : (item.lastNaturalDate ? dayjs(item.lastNaturalDate).valueOf() : null)
- }));
- const data = {
- mainPlan: formData.value,
- mainPlanBom: convertedList
- }
- if (formType.value === 'create') {
- await IotMaintenancePlanApi.createIotMaintenancePlan(data)
- message.success(t('common.createSuccess'))
- close()
- } else {
- await IotMaintenancePlanApi.updatePlan(data)
- message.success(t('common.updateSuccess'))
- close()
- }
- // 发送操作成功的事件
- emit('success')
- } finally {
- formLoading.value = false
- }
- }
- // 新增表单校验规则
- const configFormRules = reactive({
- nextRunningKilometers: [{
- required: true,
- message: '里程周期必须填写',
- trigger: 'blur'
- }],
- kiloCycleLead: [{
- required: true,
- message: '提前量必须填写',
- trigger: 'blur'
- }],
- nextRunningTime: [{
- required: true,
- message: '时间周期必须填写',
- trigger: 'blur'
- }],
- timePeriodLead: [{
- required: true,
- message: '提前量必须填写',
- trigger: 'blur'
- }],
- nextNaturalDate: [{
- required: true,
- message: '自然日周期必须填写',
- trigger: 'blur'
- }],
- naturalDatePeriodLead: [{
- required: true,
- message: '提前量必须填写',
- trigger: 'blur'
- }]
- })
- /** 校验表格数据 */
- const validateTableData = (): boolean => {
- let isValid = true
- const errorMessages: string[] = []
- const noRulesErrorMessages: string[] = [] // 未设置任何保养项规则 的错误提示信息
- const noRules: string[] = [] // 行记录中设置了保养规则的记录数量
- const configErrors: string[] = [] // 保养规则配置弹出框
- let shouldBreak = false;
- if (list.value.length === 0) {
- errorMessages.push('请至少添加一条设备保养明细')
- isValid = false
- // 直接返回无需后续校验
- message.error('请至少添加一条设备保养明细')
- return isValid
- }
- list.value.forEach((row, index) => {
- if (shouldBreak) return;
- const rowNumber = index + 1 // 用户可见的行号从1开始
- const deviceIdentifier = `${row.deviceCode}-${row.name}` // 设备标识
- // 累计参数校验逻辑
- if (row.mileageRule === 0 &&
- row.mileageAccumulatedAttrs?.length &&
- !row.totalMileage &&
- !row.type) {
- errorMessages.push(`第 ${rowNumber} 行(${deviceIdentifier}):请选择累计运行公里数参数`)
- isValid = false
- }
- if (row.runningTimeRule === 0 &&
- row.timeAccumulatedAttrs?.length &&
- !row.totalRunTime &&
- !row.code) {
- errorMessages.push(`第 ${rowNumber} 行(${deviceIdentifier}):请选择累计运行时长参数`)
- isValid = false
- }
- // 校验逻辑
- const checkConfig = (ruleName: string, ruleValue: number, configField: keyof typeof row) => {
- if (ruleValue === 0) { // 规则开启
- if (!row[configField] || row[configField] <= 0) {
- configErrors.push(`第 ${rowNumber} 行(${deviceIdentifier}):请点击【配置】维护${ruleName}上次保养值`)
- isValid = false
- }
- }
- }
- // 里程校验逻辑
- if (row.mileageRule === 0) { // 假设 0 表示开启状态
- if (!row.nextRunningKilometers || row.nextRunningKilometers <= 0) {
- errorMessages.push(`第 ${rowNumber} 行:开启里程规则必须填写有效的里程周期`)
- isValid = false
- }
- // 再校验配置值
- checkConfig('里程', row.mileageRule, 'lastRunningKilometers')
- } else {
- noRules.push(`第 ${rowNumber} 行:未设置里程规则`)
- }
- // 运行时间校验逻辑
- if (row.runningTimeRule === 0) {
- if (!row.nextRunningTime || row.nextRunningTime <= 0) {
- errorMessages.push(`第 ${rowNumber} 行:开启运行时间规则必须填写有效的时间周期`)
- isValid = false
- }
- checkConfig('运行时间', row.runningTimeRule, 'lastRunningTime')
- } else {
- noRules.push(`第 ${rowNumber} 行:未设置运行时间规则`)
- }
- // 自然日期校验逻辑
- if (row.naturalDateRule === 0) {
- if (!row.nextNaturalDate) {
- errorMessages.push(`第 ${rowNumber} 行:开启自然日期规则必须填写有效的自然日期周期`)
- isValid = false
- }
- checkConfig('自然日期', row.naturalDateRule, 'lastNaturalDate')
- } else {
- noRules.push(`第 ${rowNumber} 行:未设置自然日期规则`)
- }
- // 如果选中的一行记录未设置任何保养规则 提示 ‘保养项未设置任何保养规则’
- if (noRules.length === 3) {
- isValid = false
- shouldBreak = true; // 设置标志变量为true,退出循环
- noRulesErrorMessages.push('保养项至少设置1个保养规则')
- }
- noRules.length = 0;
- })
- if (errorMessages.length > 0) {
- message.error('设置保养规则后,请维护对应的周期值')
- } else if (noRulesErrorMessages.length > 0) {
- message.error(noRulesErrorMessages.pop())
- } else if (configErrors.length > 0) {
- message.error(configErrors.pop())
- }
- return isValid
- }
- // 修改后的排序应用方法
- const applySorting = () => {
- // 创建新数组并排序
- const sortedList = sortDeviceList(list.value)
- // 使用Vue的响应式方法更新数组
- list.value = sortedList
- // 重置分页到第一页
- currentPage.value = 1
- }
- // 保养项排序函数
- const sortDeviceList = (devices: IotMaintenanceBomVO[]) => {
- // 使用slice()创建数组副本,避免修改原数组
- return devices.slice().sort((a, b) => {
- // 处理可能的空值
- const aCode = a.deviceCode || ''
- const bCode = b.deviceCode || ''
- const aName = a.name || ''
- const bName = b.name || ''
- // 设备编码排序
- if (aCode !== bCode) {
- return aCode.localeCompare(bCode)
- }
- // 保养项名称排序
- return aName.localeCompare(bName)
- })
- };
- /** 重置表单 */
- const resetForm = () => {
- formData.value = {
- id: undefined,
- failureName: undefined,
- deviceId: undefined,
- status: undefined,
- ifStop: undefined,
- failureTime: undefined,
- failureInfluence: undefined,
- failureSystem: undefined,
- description: undefined,
- pic: undefined,
- solution: undefined,
- maintainStartTime: undefined,
- maintainEndTime: undefined,
- remark: undefined,
- deviceName: undefined,
- processInstanceId: undefined,
- auditStatus: undefined,
- deptId: undefined
- }
- formRef.value?.resetFields()
- }
- onMounted(async () => {
- const route = useRoute()
- const deptId = useUserStore().getUser.deptId
- // 优先从路由参数获取部门信息
- if (route.query.deptId && route.query.deptName) {
- formData.value.deptId = Number(route.query.deptId)
- formData.value.name = `${route.query.deptName} - 保养计划`
- } else {
- // 查询当前登录人所属部门名称
- dept.value = await DeptApi.getDept(deptId)
- // 根据当前登录人部门信息生成生成 保养计划 名称
- formData.value.name = dept.value.name + ' - 保养计划'
- formData.value.deptId = deptId
- }
- if (id){
- formType.value = 'update'
- const plan = await IotMaintenancePlanApi.getIotMaintenancePlan(id);
- deviceLabel.value = plan.deviceName
- formData.value = plan
- // 查询保养计划明细
- const data = await IotMaintenanceBomApi.getMainPlanBOMs(queryParams);
- list.value = []
- if (Array.isArray(data)) {
- list.value = data.map(item => ({
- ...item,
- // 这里可以添加必要的字段转换(如果有日期等需要格式化的字段)
- lastNaturalDate: item.lastNaturalDate
- }))
- }
- } else {
- formType.value = 'create';
- const { wsCache } = useCache()
- const userInfo = wsCache.get(CACHE_KEY.USER)
- formData.value.responsiblePerson = userInfo.user.id;
- }
- })
- const handleDelete = async (str: string) => {
- try {
- // 1. 记录删除前状态
- const currentPageBeforeDelete = currentPage.value;
- const [deviceIdStr, bomNodeId] = str.split('-')
- const deviceId = parseInt(deviceIdStr)
- // 删除列表项
- const index = list.value.findIndex((item) => (item.deviceId+'-'+item.bomNodeId) === str)
- if (index !== -1) {
- list.value.splice(index, 1)
- deviceIds.value = []
- }
- // 更新设备ID列表(需要检查是否还有该设备的其他项)
- const hasOtherItems = list.value.some(item => item.deviceId === deviceId)
- if (!hasOtherItems) {
- deviceIds.value = deviceIds.value.filter(id => id !== deviceId)
- }
- // message.success('移除成功')
- // 2. 计算新总记录数和总页数
- const newTotal = list.value.length;
- const newTotalPages = Math.ceil(newTotal / pageSize.value);
- // 3. 智能页码调整(核心修正)[1,5](@ref)
- if (newTotal === 0) {
- currentPage.value = 1; // 无数据时回首页
- } else {
- currentPage.value = currentPageBeforeDelete > newTotalPages
- ? newTotalPages // 当前页超出范围时跳末页
- : currentPageBeforeDelete; // 否则保持当前页
- }
- } catch (error) {
- console.error('移除失败:', error)
- message.error('移除失败')
- }
- // 检查是否需要调整页码
- // if (list.value.length > 0 && pagedList.value.length === 0) {
- // currentPage.value = Math.max(1, currentPage.value - 1)
- // }
- }
- </script>
- <style scoped>
- .base-expandable-content {
- overflow: hidden; /* 隐藏溢出的内容 */
- transition: max-height 0.3s ease; /* 平滑过渡效果 */
- }
- :deep(.el-input-number .el-input__inner) {
- text-align: left !important;
- padding-left: 10px; /* 保持左侧间距 */
- }
- /* 分组容器样式 */
- .form-group {
- position: relative;
- border: 1px solid #dcdfe6;
- border-radius: 4px;
- padding: 20px 15px 10px;
- margin-bottom: 18px;
- transition: border-color 0.2s;
- }
- /* 分组标题样式 */
- .group-title {
- position: absolute;
- top: -10px;
- left: 20px;
- background: white;
- padding: 0 8px;
- color: #606266;
- font-size: 12px;
- font-weight: 500;
- }
- /* 确保分页组件右对齐 */
- .el-pagination {
- display: flex;
- justify-content: flex-end;
- margin-top: 20px;
- }
- /* 已完整填写行的背景色 */
- :deep(.el-table .all-filled) {
- background-color: #f0fff3 !important; /* 淡绿色背景 */
- transition: background-color 0.3s ease; /* 平滑过渡效果 */
- }
- </style>
|