src/views/eam/equipment/EamEquipmentList.vue
@@ -17,18 +17,21 @@
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="关键设备标识">
              <j-dict-select-tag dict-code="yn" placeholder="请选择关键设备标识" v-model="queryParam.equipmentImportance"></j-dict-select-tag>
              <j-dict-select-tag dict-code="yn" placeholder="请选择关键设备标识"
                                 v-model="queryParam.equipmentImportance"></j-dict-select-tag>
            </a-form-item>
          </a-col>
          <template v-if="toggleSearchStatus">
            <a-col :xl="6" :lg="7" :md="8" :sm="24">
              <a-form-item label="资产状态">
                <j-dict-select-tag dict-code="asset_status" placeholder="请选择资产状态" v-model="queryParam.assetStatus"></j-dict-select-tag>
                <j-dict-select-tag dict-code="asset_status" placeholder="请选择资产状态"
                                   v-model="queryParam.assetStatus"></j-dict-select-tag>
              </a-form-item>
            </a-col>
            <a-col :xl="6" :lg="7" :md="8" :sm="24">
              <a-form-item label="技术状态">
                <j-dict-select-tag dict-code="technology_status" placeholder="请选择技术状态" v-model="queryParam.technologyStatus"></j-dict-select-tag>
                <j-dict-select-tag dict-code="technology_status" placeholder="请选择技术状态"
                                   v-model="queryParam.technologyStatus"></j-dict-select-tag>
              </a-form-item>
            </a-col>
            <a-col :xl="6" :lg="7" :md="8" :sm="24">
@@ -51,7 +54,8 @@
            </a-col>
            <a-col :xl="6" :lg="7" :md="8" :sm="24">
              <a-form-item label="设备分类">
                <j-dict-select-tag dict-code="equipment_category" placeholder="请选择设备分类" v-model="queryParam.equipmentCategory"></j-dict-select-tag>
                <j-dict-select-tag dict-code="equipment_category" placeholder="请选择设备分类"
                                   v-model="queryParam.equipmentCategory"></j-dict-select-tag>
              </a-form-item>
            </a-col>
          </template>
@@ -61,7 +65,7 @@
              <a-button type="info" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
              <a @click="handleToggleSearch" style="margin-left: 8px">
                {{ toggleSearchStatus ? '收起' : '展开' }}
                <a-icon :type="toggleSearchStatus ? 'up' : 'down'" />
                <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
              </a>
            </span>
          </a-col>
@@ -81,12 +85,12 @@
      <a-dropdown v-if="selectedRowKeys.length > 0">
        <a-menu slot="overlay">
          <a-menu-item key="1" @click="batchDel">
            <a-icon type="delete" />
            <a-icon type="delete"/>
            删除
          </a-menu-item>
        </a-menu>
        <a-button style="margin-left: 8px"> 批量操作
          <a-icon type="down" />
          <a-icon type="down"/>
        </a-button>
      </a-dropdown>
    </div>
@@ -112,27 +116,30 @@
        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
        @change="handleTableChange">
        <span slot="equipmentImportance" slot-scope="text">
          <lx-switch v-model="text" disabled checked-children="是" un-checked-children="否" />
          <lx-switch v-model="text" disabled checked-children="是" un-checked-children="否"/>
        </span>
        <span slot="mdcFlag" slot-scope="text">
          <lx-switch v-model="text" disabled checked-children="是" un-checked-children="否" />
          <lx-switch v-model="text" disabled checked-children="是" un-checked-children="否"/>
        </span>
        <span slot="processParametersFlag" slot-scope="text">
          <lx-switch v-model="text" disabled checked-children="有" un-checked-children="无" />
          <lx-switch v-model="text" disabled checked-children="有" un-checked-children="无"/>
        </span>
        <span slot="precisionParametersFlag" slot-scope="text">
          <lx-switch v-model="text" disabled checked-children="有" un-checked-children="无" />
          <lx-switch v-model="text" disabled checked-children="有" un-checked-children="无"/>
        </span>
        <span slot="specialEquipment" slot-scope="text">
          <lx-switch v-model="text" disabled checked-children="是" un-checked-children="否" />
          <lx-switch v-model="text" disabled checked-children="是" un-checked-children="否"/>
        </span>
        <span slot="action" slot-scope="text, record">
          <a @click="handleEdit(record)">编辑</a>
          <a-divider type="vertical" />
          <a-divider type="vertical"/>
          <a-dropdown>
            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
            <a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
            <a-menu slot="overlay">
              <a-menu-item>
                <a href="javascript:;" @click="handleOpenNameplateModal(record)">铭牌</a>
              </a-menu-item>
              <a-menu-item>
                <a href="javascript:;" @click="handleDetail(record)">详情</a>
              </a-menu-item>
@@ -151,6 +158,8 @@
    <!-- 表单区域 -->
    <eamEquipment-modal ref="modalForm" @ok="modalFormOk"></eamEquipment-modal>
    <!--铭牌弹窗-->
    <nameplate-modal ref="nameplateModalRef"/>
  </a-card>
</template>
@@ -159,11 +168,13 @@
import EamEquipmentModal from './modules/EamEquipmentModal'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import { getAction } from '@api/manage'
import NameplateModal from '@views/eam/equipment/modules/NameplateModal.vue'
export default {
  name: 'EamEquipmentList',
  mixins: [JeecgListMixin],
  components: {
    NameplateModal,
    EamEquipmentModal
  },
  data() {
@@ -189,7 +200,7 @@
          dataIndex: 'equipmentCode',
          ellipsis: true,
          fixed: 'left',
          sorter: true,
          sorter: true
        },
        {
          title: '设备名称',
@@ -399,9 +410,9 @@
        deleteBatch: '/eam/equipment/deleteBatch',
        exportXlsUrl: 'eam/equipment/exportXls',
        importExcelUrl: 'eam/equipment/importExcel',
        loadProductionOptions:'/mdc/mdcProduction/loadProductionTreeOptions'
        loadProductionOptions: '/mdc/mdcProduction/loadProductionTreeOptions'
      },
      treeData: [],
      treeData: []
    }
  },
  computed: {
@@ -410,7 +421,7 @@
    }
  },
  created() {
    this.loadAllProductionTree();
    this.loadAllProductionTree()
  },
  methods: {
    loadAllProductionTree() {
@@ -418,11 +429,20 @@
      getAction(this.url.loadProductionOptions).then(res => {
        if (res.success) {
          this.treeData = [...res.result]
        }else {
        } else {
          that.$message.warning(res.message)
        }
      })
    },
    /**
     * 开启铭牌弹窗
     * @param record
     */
    handleOpenNameplateModal(record) {
      this.$refs.nameplateModalRef.model = Object.assign({}, record)
      this.$refs.nameplateModalRef.visible = true
    }
  }
}
</script>