ali
2024-09-03 0ae83a895e80a4b9777a27f613d721a7e5e2ac18
energy_management_ui/src/views/energyExamine/assessmentIndex/addIndexTable.vue
@@ -1,6 +1,13 @@
<template>
  <!-- 导入表 -->
  <el-dialog :title="title" :visible.sync="open"  :destroy-on-close="true" :append-to-body="true" width="800px" top="5vh">
  <el-dialog
    :title="title"
    :visible.sync="open"
    :destroy-on-close="true"
    :append-to-body="true"
    width="800px"
    top="5vh"
  >
    <!--
    <el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px">
      <el-form-item>
@@ -8,9 +15,13 @@
      </el-form-item>
    </el-form>-->
    <el-row>
      <el-table v-loading="loading" :data="impIndexList" @selection-change="handleSelectionChange" stripe max-height="350">
      <el-table
        v-loading="loading"
        :data="impIndexList"
        @selection-change="handleSelectionChange"
        max-height="350"
      >
        <el-table-column type="selection" width="55" align="center" />
        <el-table-column label="指标编码" align="center" prop="code"  />
        <el-table-column label="指标名称" align="center" prop="name"  />
@@ -30,7 +41,7 @@
  data() {
    return {
      //模型节点
      modeNode:'',
      modeNode: "",
      // 遮罩层
      loading: true,
      // 选中数组
@@ -54,13 +65,12 @@
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        implementId:'',
        implementId: "",
        tableName: undefined
      },
      }
    };
  },
  created() {
  },
  created() {},
  methods: {
    // 显示弹框
    show(modeNode) {
@@ -75,7 +85,7 @@
      this.queryParams = {
        pageNum: 1,
        pageSize: 10,
        implementId:'',
        implementId: "",
        tableName: undefined
      };
      //清空上传组件的文件列表
@@ -90,18 +100,16 @@
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      this.ids = selection.map(item => item.indexId)
      this.ids = selection.map(item => item.indexId);
    },
    /** 保存按钮操作 */
    handsave()
    {
    handsave() {
      if(this.ids==null || this.ids.length<=0){
        this.msgSuccess("请选择指标!");
        return;
      }
      addIndex(this.ids,this.modeNode.id).then(response => {
        if(response!=null && response.code=="200")
        {
        if (response != null && response.code == "200") {
          this.msgSuccess(response.msg);
          this.open=false;
        }else{
@@ -110,12 +118,9 @@
      });
    },
    /** 关闭按钮操作 */
    handclose()
    {
    handclose() {
      this.open=false;
    },
    }
  }
};
</script>