Lius
3 天以前 a284da4c7af8db0004b9779753f7d1effaf6254e
src/views/eam/equipment/EamEquipmentList.vue
@@ -361,7 +361,7 @@
        <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"/>
        <eam-equipment-precision-list ref="tabPaneTableListRef8" :equipment-type="currentEquipment.equipmentType" :isDisplayOperation="false"/>
      </a-tab-pane>
      <a-tab-pane tab="设备油液" :key="9">
        <eam-equipment-fluid-list ref="tabPaneTableListRef9" :isDisplayOperation="false"/>
@@ -420,6 +420,7 @@
    data() {
      return {
        description: '设备台账管理页面',
        currentEquipment: {},
        // 表头
        columns: [
          {
@@ -788,6 +789,7 @@
       * @param id 设备台账行记录Id
       */
      loadTabPaneTableData(id) {
        this.currentEquipment = this.dataSource.find(row => row.id === id)
        this.$refs['tabPaneTableListRef' + this.activeTabKey].queryParam.equipmentId = id
        this.$refs['tabPaneTableListRef' + this.activeTabKey].loadData(1)
      },