|
@@ -1,7 +1,14 @@
|
|
<template>
|
|
<template>
|
|
<div class="app-container">
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
<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-form-item>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<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>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
@@ -12,34 +19,10 @@
|
|
<el-col :span="1.5">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
<el-button
|
|
type="primary"
|
|
type="primary"
|
|
- plain
|
|
|
|
- icon="el-icon-plus"
|
|
|
|
size="mini"
|
|
size="mini"
|
|
@click="handleAdd"
|
|
@click="handleAdd"
|
|
v-hasPermi="['manage:analyzeResult:add']"
|
|
v-hasPermi="['manage:analyzeResult:add']"
|
|
- >新增</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:analyzeResult: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:analyzeResult:remove']"
|
|
|
|
- >删除</el-button>
|
|
|
|
|
|
+ >选择解析文件</el-button>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
<el-button
|
|
@@ -56,25 +39,9 @@
|
|
|
|
|
|
<el-table v-loading="loading" :data="analyzeResultList" @selection-change="handleSelectionChange">
|
|
<el-table v-loading="loading" :data="analyzeResultList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<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:afterAnalysisResult:edit']"
|
|
|
|
- >修改</el-button>
|
|
|
|
- <el-button
|
|
|
|
- size="mini"
|
|
|
|
- type="text"
|
|
|
|
- icon="el-icon-delete"
|
|
|
|
- @click="handleDelete(scope.row)"
|
|
|
|
- v-hasPermi="['manage:afterAnalysisResult: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" />
|
|
</el-table>
|
|
</el-table>
|
|
|
|
|
|
<pagination
|
|
<pagination
|
|
@@ -88,10 +55,22 @@
|
|
<!-- 添加或修改数据解析结果对话框 -->
|
|
<!-- 添加或修改数据解析结果对话框 -->
|
|
<el-dialog :title="title" :visible.sync="open" :close-on-click-modal="false" width="500px" append-to-body>
|
|
<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 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="remark">
|
|
|
|
+ <el-input v-model="form.remark" placeholder="请输入备注" />
|
|
|
|
+ </el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<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>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
@@ -100,11 +79,19 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import { listAnalyzeResult, getAnalyzeResult, delAnalyzeResult, addAnalyzeResult, updateAnalyzeResult } from "@/api/manage/analyzeResult";
|
|
import { listAnalyzeResult, getAnalyzeResult, delAnalyzeResult, addAnalyzeResult, updateAnalyzeResult } from "@/api/manage/analyzeResult";
|
|
-
|
|
|
|
|
|
+import {
|
|
|
|
+ listDataDown
|
|
|
|
+} from "@/api/manage/dataDown";
|
|
export default {
|
|
export default {
|
|
name: "AnalyzeResult",
|
|
name: "AnalyzeResult",
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ // 按钮加载
|
|
|
|
+ butLoading: false,
|
|
|
|
+ // 按钮显示文本
|
|
|
|
+ butText: "开始解析",
|
|
|
|
+ // 源数据文件列表
|
|
|
|
+ sourceDataList: [],
|
|
// 遮罩层
|
|
// 遮罩层
|
|
loading: true,
|
|
loading: true,
|
|
// 选中数组
|
|
// 选中数组
|
|
@@ -141,16 +128,26 @@ export default {
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
this.getList();
|
|
this.getList();
|
|
|
|
+ this.getSourceDataList();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ getSourceDataList() {
|
|
|
|
+ // listDataDown(this.queryParams).then(response => {
|
|
|
|
+ // this.sourceDataList = response.rows;
|
|
|
|
+ // });
|
|
|
|
+ this.sourceDataList = JSON.parse(localStorage.getItem("data-down")) || [];
|
|
|
|
+ },
|
|
/** 查询数据解析结果列表 */
|
|
/** 查询数据解析结果列表 */
|
|
getList() {
|
|
getList() {
|
|
this.loading = true;
|
|
this.loading = true;
|
|
- listAnalyzeResult(this.queryParams).then(response => {
|
|
|
|
- this.analyzeResultList = response.rows;
|
|
|
|
- this.total = response.total;
|
|
|
|
- this.loading = false;
|
|
|
|
- });
|
|
|
|
|
|
+ // listAnalyzeResult(this.queryParams).then(response => {
|
|
|
|
+ // this.analyzeResultList = response.rows;
|
|
|
|
+ // this.total = response.total;
|
|
|
|
+ // this.loading = false;
|
|
|
|
+ // });
|
|
|
|
+ this.analyzeResultList = JSON.parse(localStorage.getItem("data-analyze")) || [];
|
|
|
|
+ this.total = this.dataDownList?.length || 0;
|
|
|
|
+ this.loading = false;
|
|
},
|
|
},
|
|
// 取消按钮
|
|
// 取消按钮
|
|
cancel() {
|
|
cancel() {
|
|
@@ -160,7 +157,8 @@ export default {
|
|
// 表单重置
|
|
// 表单重置
|
|
reset() {
|
|
reset() {
|
|
this.form = {
|
|
this.form = {
|
|
- id: null,
|
|
|
|
|
|
+ name: null,
|
|
|
|
+ remark: null
|
|
|
|
|
|
};
|
|
};
|
|
this.resetForm("form");
|
|
this.resetForm("form");
|
|
@@ -199,23 +197,42 @@ export default {
|
|
},
|
|
},
|
|
/** 提交按钮 */
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
submitForm() {
|
|
- this.$refs["form"].validate(valid => {
|
|
|
|
- if (valid) {
|
|
|
|
- if (this.form.id != null) {
|
|
|
|
- updateAnalyzeResult(this.form).then(response => {
|
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
|
- this.open = false;
|
|
|
|
- this.getList();
|
|
|
|
- });
|
|
|
|
- } else {
|
|
|
|
- addAnalyzeResult(this.form).then(response => {
|
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
|
- this.open = false;
|
|
|
|
- this.getList();
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
|
|
+ this.butLoading = true;
|
|
|
|
+ this.butText = "解析中...";
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ // 服务获取文件
|
|
|
|
+ let dataObj = {
|
|
|
|
+ name: `解析后固定格式_${new Date().getTime()}.xlsx`,
|
|
|
|
+ sourceName: this.form.name,
|
|
|
|
+ remark: this.form.remark,
|
|
|
|
+ };
|
|
|
|
+ let data = JSON.parse(localStorage.getItem("data-analyze")) || [];
|
|
|
|
+ data.push(dataObj);
|
|
|
|
+ localStorage.setItem("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) {
|
|
|
|
+ // updateAnalyzeResult(this.form).then(response => {
|
|
|
|
+ // this.$modal.msgSuccess("修改成功");
|
|
|
|
+ // this.open = false;
|
|
|
|
+ // this.getList();
|
|
|
|
+ // });
|
|
|
|
+ // } else {
|
|
|
|
+ // addAnalyzeResult(this.form).then(response => {
|
|
|
|
+ // this.$modal.msgSuccess("新增成功");
|
|
|
|
+ // this.open = false;
|
|
|
|
+ // this.getList();
|
|
|
|
+ // });
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
},
|
|
},
|
|
/** 删除按钮操作 */
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
handleDelete(row) {
|