xg
“linengliang”
2024-03-13 4acf408253e7366f30885196ac63e077616270d6
xg
已修改12个文件
279 ■■■■■ 文件已修改
src/views/eam/EquipmentCalibrationOrder.vue 26 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfAll.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfCrane.vue 24 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfEnvProEquipment.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfFilesCarousel.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfMetrological.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfPressureVessel.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfProduct.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfRide.vue 22 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfTester.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfTruck.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentListOfWeldingMachine.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/eam/EquipmentCalibrationOrder.vue
@@ -296,6 +296,7 @@
  from './modules/equipmentCalibrationOrder/EquipmentCalibrationOrderReportModal'
import EquipmentTechnologyStatusModal from './modules/equipmentCalibrationOrder/EquipmentTechnologyStatusModal'
import TechnologyStatusAuthenticateModal from './modules/equipmentCalibrationOrder/TechnologyStatusAuthenticateModal'
import { interceptorFunc } from 'vxe-table'
export default {
  name: 'EquipmentCalibrationOrder',
@@ -313,6 +314,7 @@
  data() {
    return {
      description: '技术状态鉴定管理',
      disableMixinCreated: true,
      ipagination: {
        current: 1,
        pageSize: 20,
@@ -391,11 +393,11 @@
        //   align: 'center',
        //   dataIndex: 'createBy'
        // },
        // {
        //   title: '创建日期',
        //   align: 'center',
        //   dataIndex: 'createTime'
        // },
        {
          title: '创建日期',
          align: 'center',
          dataIndex: 'createTime'
        },
        // {
        //   title: '检定人',
        //   align: 'center',
@@ -438,6 +440,17 @@
    importExcelUrl: function () {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
    }
  },
  created() {
    //从路由中获取查询条件
    if (this.$route.query) {
      this.queryParam.equipmentId = this.$route.query.equipmentId;
      //查询条件按时间倒序
      this.queryParam.sort = 'createTime';
      this.queryParam.order = 'desc';
    }
    this.loadData()
    this.initDictConfig();
  },
  methods: {
@@ -526,7 +539,8 @@
    },
    handleFinal(record) {
      this.$refs.finalModal.edit(record)
    }
    },
  }
}
</script>
src/views/eam/EquipmentListOfAll.vue
@@ -354,7 +354,15 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
<!-- 点击技术状态列,跳转到技术状态鉴定页面 -->
        <template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
          slot-scope="text"
@@ -775,6 +783,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1128,6 +1137,18 @@
    handleUpdateKeyEquipment() {
      this.$refs.keyEquipmentUpdate.add();
    },
    //技术状态跳转
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}
</script>
src/views/eam/EquipmentListOfCrane.vue
@@ -314,7 +314,15 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
<!-- 点击技术状态列,跳转到技术状态鉴定页面 -->
<template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
          slot-scope="text"
@@ -727,6 +735,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1081,7 +1090,18 @@
    },
    handleEditSpareParts(record) {
      this.$refs.modalFormSpareParts.edit(record);
    }
    },
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}
src/views/eam/EquipmentListOfEnvProEquipment.vue
@@ -329,7 +329,14 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
      <template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
          slot-scope="text"
@@ -749,6 +756,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1103,7 +1111,18 @@
    },
    handleEditSpareParts(record) {
      this.$refs.modalFormSpareParts.edit(record);
    }
    },
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}
src/views/eam/EquipmentListOfFilesCarousel.vue
@@ -329,7 +329,14 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
      <template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
          slot-scope="text"
@@ -742,6 +749,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1096,7 +1104,18 @@
    },
    handleEditSpareParts(record) {
      this.$refs.modalFormSpareParts.edit(record);
    }
    },
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}
src/views/eam/EquipmentListOfMetrological.vue
@@ -329,7 +329,14 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
      <template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
          slot-scope="text"
@@ -742,6 +749,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1096,7 +1104,18 @@
    },
    handleEditSpareParts(record) {
      this.$refs.modalFormSpareParts.edit(record);
    }
    },
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}
src/views/eam/EquipmentListOfPressureVessel.vue
@@ -329,7 +329,14 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
      <template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
          slot-scope="text"
@@ -742,6 +749,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1096,7 +1104,18 @@
    },
    handleEditSpareParts(record) {
      this.$refs.modalFormSpareParts.edit(record);
    }
    },
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}
src/views/eam/EquipmentListOfProduct.vue
@@ -329,7 +329,14 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
      <template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
          slot-scope="text"
@@ -742,6 +749,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1096,7 +1104,18 @@
    },
    handleEditSpareParts(record) {
      this.$refs.modalFormSpareParts.edit(record);
    }
    },
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}
src/views/eam/EquipmentListOfRide.vue
@@ -329,6 +329,14 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
      <template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
@@ -742,6 +750,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1096,7 +1105,18 @@
    },
    handleEditSpareParts(record) {
      this.$refs.modalFormSpareParts.edit(record);
    }
    },
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}
src/views/eam/EquipmentListOfTester.vue
@@ -329,7 +329,14 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
      <template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
          slot-scope="text"
@@ -742,6 +749,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1096,7 +1104,18 @@
    },
    handleEditSpareParts(record) {
      this.$refs.modalFormSpareParts.edit(record);
    }
    },
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}
src/views/eam/EquipmentListOfTruck.vue
@@ -329,7 +329,14 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
      <template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
          slot-scope="text"
@@ -742,6 +749,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1096,7 +1104,18 @@
    },
    handleEditSpareParts(record) {
      this.$refs.modalFormSpareParts.edit(record);
    }
    },
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}
src/views/eam/EquipmentListOfWeldingMachine.vue
@@ -329,7 +329,14 @@
        :customRow="clickThenSelect"
        @change="handleTableChange"
      >
      <template
          slot="technologyStatus"
          slot-scope="text,record"
          >
          <a
            href="javascript:eam/EquipmentCalibrationOrder;"
            @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a>
        </template>
        <template
          slot="htmlSlot"
          slot-scope="text"
@@ -742,6 +749,7 @@
          title: '技术状态',
          align: "center",
          dataIndex: 'technologyStatus_dictText',
          scopedSlots: { customRender: 'technologyStatus' },
        },
        {
          title: '技术状态鉴定类型',
@@ -1096,7 +1104,18 @@
    },
    handleEditSpareParts(record) {
      this.$refs.modalFormSpareParts.edit(record);
    }
    },
    handleTechnologyStatus(record) {
      //路由是eam/EquipmentCalibrationOrder
      this.$router.push({
        path: '/eam/EquipmentCalibrationOrder',
        query: {
          equipmentId: record.id,
          technologyStatus: record.technologyStatus,
          technologyStatusVerificationType: record.technologyStatusVerificationType,
        }
      })
    },
  }
}