|
@@ -1,7 +1,14 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
-
|
|
|
+ <el-form-item label="名称" prop="name">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.name"
|
|
|
+ placeholder="请输入名称"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
@@ -12,34 +19,19 @@
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
- plain
|
|
|
- icon="el-icon-plus"
|
|
|
size="mini"
|
|
|
@click="handleAdd"
|
|
|
v-hasPermi="['manage:preHandleResult:add']"
|
|
|
- >新增</el-button>
|
|
|
+ >选择预处理数据</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
type="success"
|
|
|
- plain
|
|
|
- icon="el-icon-edit"
|
|
|
size="mini"
|
|
|
:disabled="single"
|
|
|
@click="handleUpdate"
|
|
|
- v-hasPermi="['manage:preHandleResult:edit']"
|
|
|
- >修改</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="danger"
|
|
|
- plain
|
|
|
- icon="el-icon-delete"
|
|
|
- size="mini"
|
|
|
- :disabled="multiple"
|
|
|
- @click="handleDelete"
|
|
|
- v-hasPermi="['manage:preHandleResult:remove']"
|
|
|
- >删除</el-button>
|
|
|
+ v-hasPermi="['manage:performanceMonitorModel:edit']"
|
|
|
+ >处理数据</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
@@ -56,26 +48,11 @@
|
|
|
|
|
|
<el-table v-loading="loading" :data="preHandleResultList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="唯一ID" align="center" prop="id" />
|
|
|
-
|
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
- @click="handleUpdate(scope.row)"
|
|
|
- v-hasPermi="['manage:preHandleResult:edit']"
|
|
|
- >修改</el-button>
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-delete"
|
|
|
- @click="handleDelete(scope.row)"
|
|
|
- v-hasPermi="['manage:preHandleResult:remove']"
|
|
|
- >删除</el-button>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
+ <el-table-column label="源数据文件名称" align="center" prop="sourceName" />
|
|
|
+ <el-table-column label="处理后文件名称" align="center" prop="name" />
|
|
|
+ <el-table-column label="处理方式" align="center" prop="type" />
|
|
|
+ <el-table-column label="备注" align="center" prop="remark"/>
|
|
|
+ <el-table-column label="处理后结果列表" align="center" />
|
|
|
</el-table>
|
|
|
|
|
|
<pagination
|
|
@@ -89,23 +66,81 @@
|
|
|
<!-- 添加或修改数据预处理结果对话框 -->
|
|
|
<el-dialog :title="title" :visible.sync="open" :close-on-click-modal="false" width="500px" append-to-body>
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
-
|
|
|
+ <el-form-item label="文件名" prop="name">
|
|
|
+ <el-select v-model="form.name" placeholder="请选择要处理的数据" style="width:100%">
|
|
|
+ <el-option
|
|
|
+ v-for="item in sourceDataList"
|
|
|
+ :key="item.name"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.name">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="预处理模式" prop="name">
|
|
|
+ <el-select v-model="form.type" placeholder="请选择要执行的模式" style="width:100%">
|
|
|
+ <el-option
|
|
|
+ v-for="item in handleList"
|
|
|
+ :key="item.name"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.name">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="备注" prop="remark">
|
|
|
+ <el-input v-model="form.remark" placeholder="请输入备注" />
|
|
|
+ </el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button type="primary" @click="submitForm" :loading="butLoading">{{butText}}</el-button>
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
+ <!-- 手动处理数据的弹框 -->
|
|
|
+ <el-dialog :title="title" :visible.sync="handOpen" :close-on-click-modal="false" :fullscreen="true" append-to-body>
|
|
|
+ <el-input
|
|
|
+ type="textarea"
|
|
|
+ :rows="12"
|
|
|
+ placeholder="请输入内容"
|
|
|
+ v-model="textarea">
|
|
|
+ </el-input>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <el-form-item label="备注" prop="remark">
|
|
|
+ <el-input v-model="form.remark" placeholder="请输入备注" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button @click="handOpen = !handOpen">取 消</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { listPreHandleResult, getPreHandleResult, delPreHandleResult, addPreHandleResult, updatePreHandleResult } from "@/api/manage/preHandleResult";
|
|
|
+import { listAnalyzeResult } from "@/api/manage/analyzeResult";
|
|
|
|
|
|
export default {
|
|
|
name: "PreHandleResult",
|
|
|
data() {
|
|
|
return {
|
|
|
+ // 按钮加载
|
|
|
+ butLoading: false,
|
|
|
+ // 按钮显示文本
|
|
|
+ butText: "开始分析",
|
|
|
+ // 需要预处理的源数据列表
|
|
|
+ sourceDataList:[],
|
|
|
+ // 当前选择的数据
|
|
|
+ currentSelection: [],
|
|
|
+ textarea: '0101010101010111010',
|
|
|
+ handleList: [
|
|
|
+ {name: '异常值剔除', value: 1},
|
|
|
+ {name: '确实值补全', value: 2}
|
|
|
+ ],
|
|
|
+ handleList2: [
|
|
|
+ {name: '手动处理', value: 1},
|
|
|
+ {name: '调用异常模型', value: 2}
|
|
|
+ ],
|
|
|
// 遮罩层
|
|
|
loading: true,
|
|
|
// 选中数组
|
|
@@ -124,6 +159,8 @@ export default {
|
|
|
title: "",
|
|
|
// 是否显示弹出层
|
|
|
open: false,
|
|
|
+ // 是否显示弹出层
|
|
|
+ handOpen: false,
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
@@ -142,16 +179,27 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.getList();
|
|
|
+ this.getSourceDataList();
|
|
|
},
|
|
|
methods: {
|
|
|
+ getSourceDataList() {
|
|
|
+ // listAnalyzeResult(this.queryParams).then(response => {
|
|
|
+ // this.sourceDataList = response.rows;
|
|
|
+ // });
|
|
|
+ this.sourceDataList = JSON.parse(localStorage.getItem("data-analyze")) || [];
|
|
|
+ },
|
|
|
/** 查询数据预处理结果列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
- listPreHandleResult(this.queryParams).then(response => {
|
|
|
- this.preHandleResultList = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
- });
|
|
|
+ // listPreHandleResult(this.queryParams).then(response => {
|
|
|
+ // this.preHandleResultList = response.rows;
|
|
|
+ // this.total = response.total;
|
|
|
+ // this.loading = false;
|
|
|
+ // });
|
|
|
+ this.preHandleResultList = JSON.parse(localStorage.getItem("pro-data-analyze")) || [];
|
|
|
+ console.log(this.preHandleResultLists);
|
|
|
+ this.total = this.preHandleResultList?.length || 0;
|
|
|
+ this.loading = false;
|
|
|
},
|
|
|
// 取消按钮
|
|
|
cancel() {
|
|
@@ -162,7 +210,6 @@ export default {
|
|
|
reset() {
|
|
|
this.form = {
|
|
|
id: null,
|
|
|
-
|
|
|
};
|
|
|
this.resetForm("form");
|
|
|
},
|
|
@@ -181,42 +228,70 @@ export default {
|
|
|
this.ids = selection.map(item => item.id)
|
|
|
this.single = selection.length!==1
|
|
|
this.multiple = !selection.length
|
|
|
+ this.currentSelection = selection
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
|
handleAdd() {
|
|
|
this.reset();
|
|
|
this.open = true;
|
|
|
- this.title = "添加数据预处理结果";
|
|
|
+ this.title = "数据处理";
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
- handleUpdate(row) {
|
|
|
- this.reset();
|
|
|
- const id = row.id || this.ids
|
|
|
- getPreHandleResult(id).then(response => {
|
|
|
- this.form = response.data;
|
|
|
- this.open = true;
|
|
|
- this.title = "修改数据预处理结果";
|
|
|
- });
|
|
|
+ handleUpdate() {
|
|
|
+ console.log(this.currentSelection[0]);
|
|
|
+ this.form.name = this.currentSelection[0].sourceName;
|
|
|
+ this.handleList = this.handleList2
|
|
|
+ // this.form = this.currentSelection[0] || {}
|
|
|
+ // getPreHandleResult(id).then(response => {
|
|
|
+ // this.form = response.data;
|
|
|
+ this.open = true;
|
|
|
+ this.title = "处理数据";
|
|
|
+ // });
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
- this.$refs["form"].validate(valid => {
|
|
|
- if (valid) {
|
|
|
- if (this.form.id != null) {
|
|
|
- updatePreHandleResult(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
- } else {
|
|
|
- addPreHandleResult(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
+ if (this.form.type == '手动处理') {
|
|
|
+ this.handOpen = true
|
|
|
+ this.open = false;
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.butLoading = true;
|
|
|
+ this.butText = "分析中...";
|
|
|
+ setTimeout(() => {
|
|
|
+ // 服务获取文件
|
|
|
+ let dataObj = {
|
|
|
+ name: `处理后数据_${new Date().getTime()}.xlsx`,
|
|
|
+ sourceName: this.form.name,
|
|
|
+ type: this.form.type,
|
|
|
+ remark: this.form.remark,
|
|
|
+ };
|
|
|
+ let data = JSON.parse(localStorage.getItem("pro-data-analyze")) || [];
|
|
|
+ data.push(dataObj);
|
|
|
+ localStorage.setItem("pro-data-analyze", JSON.stringify(data));
|
|
|
+ this.getList();
|
|
|
+ // 保存指定路径
|
|
|
+ this.butLoading = false;
|
|
|
+ this.butText = "开始解析";
|
|
|
+ this.$modal.msgSuccess("解析成功");
|
|
|
+ this.open = false;
|
|
|
+ }, 1000);
|
|
|
+ // this.$refs["form"].validate(valid => {
|
|
|
+ // if (valid) {
|
|
|
+ // if (this.form.id != null) {
|
|
|
+ // updatePreHandleResult(this.form).then(response => {
|
|
|
+ // this.$modal.msgSuccess("修改成功");
|
|
|
+ // this.open = false;
|
|
|
+ // this.getList();
|
|
|
+ // });
|
|
|
+ // } else {
|
|
|
+ // addPreHandleResult(this.form).then(response => {
|
|
|
+ // this.$modal.msgSuccess("新增成功");
|
|
|
+ // this.open = false;
|
|
|
+ // this.getList();
|
|
|
+ // });
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // });
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|