| | |
| | | <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> |
| | |
| | | </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" /> |
| | |
| | | data() { |
| | | return { |
| | | //模型节点 |
| | | modeNode:'', |
| | | modeNode: "", |
| | | // 遮罩层 |
| | | loading: true, |
| | | // 选中数组 |
| | |
| | | queryParams: { |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | implementId:'', |
| | | implementId: "", |
| | | tableName: undefined |
| | | }, |
| | | } |
| | | }; |
| | | }, |
| | | created() { |
| | | }, |
| | | created() {}, |
| | | methods: { |
| | | // 显示弹框 |
| | | show(modeNode) { |
| | |
| | | this.queryParams = { |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | implementId:'', |
| | | implementId: "", |
| | | tableName: undefined |
| | | }; |
| | | //清空上传组件的文件列表 |
| | |
| | | }, |
| | | // 多选框选中数据 |
| | | 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{ |
| | |
| | | }); |
| | | }, |
| | | /** 关闭按钮操作 */ |
| | | handclose() |
| | | { |
| | | handclose() { |
| | | this.open=false; |
| | | }, |
| | | |
| | | } |
| | | } |
| | | }; |
| | | |
| | | </script> |