|
@@ -84,14 +84,30 @@
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
<el-col :span="1.5">
|
|
|
+ <el-button type="success" plain size="mini" @click="openUpload = true"
|
|
|
+ >导入</el-button
|
|
|
+ >
|
|
|
+
|
|
|
+ <!-- <el-upload
|
|
|
+ :show-file-list="false"
|
|
|
+ :http-request="httprequest"
|
|
|
+ :before-upload="uploadFile"
|
|
|
+ class="upload-demo"
|
|
|
+ action="#"
|
|
|
+ :auto-upload="true"
|
|
|
+ :on-change="handleChange"
|
|
|
+ :file-list="fileList"
|
|
|
+ >
|
|
|
+ <el-button type="success" plain size="mini">导入</el-button>
|
|
|
+ </el-upload> -->
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
<el-button
|
|
|
- type="warning"
|
|
|
plain
|
|
|
- icon="el-icon-download"
|
|
|
size="mini"
|
|
|
- @click="handleExport"
|
|
|
- v-hasPermi="['business:GATHER:export']"
|
|
|
- >导出</el-button
|
|
|
+ @click="handleDownload()"
|
|
|
+ :disabled="radio === '' ? true : false"
|
|
|
+ >下载导入模板</el-button
|
|
|
>
|
|
|
</el-col>
|
|
|
<right-toolbar
|
|
@@ -104,8 +120,26 @@
|
|
|
v-loading="loading"
|
|
|
:data="GATHERList"
|
|
|
@selection-change="handleSelectionChange"
|
|
|
+ @row-click="showRow"
|
|
|
>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <!-- @current-change="handleCurrentChange" -->
|
|
|
+ <el-table-column label="选择" width="70" center>
|
|
|
+ <template scope="scope">
|
|
|
+ <el-radio
|
|
|
+ class="radio"
|
|
|
+ v-model="radio"
|
|
|
+ :label="scope.$index"
|
|
|
+ @change.native="getCurrentRow(scope.row)"
|
|
|
+ >{{ "" }}</el-radio
|
|
|
+ >
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
|
+ <el-table-column label="单位名称" align="center" prop="deptId_dictText">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.deptId_dictText }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="数据类型" align="center" prop="type">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.type == 0">量化指标数据</span>
|
|
@@ -131,10 +165,10 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="审核状态" align="center" prop="approveStatus">
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.reportStatus == 0">未审核</span>
|
|
|
- <span v-if="scope.row.reportStatus == 1">审核中</span>
|
|
|
- <span v-if="scope.row.reportStatus == 2">审核通过</span>
|
|
|
- <span v-if="scope.row.reportStatus == 3">审核拒绝</span>
|
|
|
+ <span v-if="scope.row.approveStatus == 0">未提交审核</span>
|
|
|
+ <span v-if="scope.row.approveStatus == 1">审核中</span>
|
|
|
+ <span v-if="scope.row.approveStatus == 2">审核通过</span>
|
|
|
+ <span v-if="scope.row.approveStatus == 3">审核拒绝</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -143,12 +177,68 @@
|
|
|
class-name="small-padding fixed-width"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
+ <!-- <el-button
|
|
|
+ style="margin: 0 2px"
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ @click="handleDownload(scope.row)"
|
|
|
+ >下载导入模板</el-button
|
|
|
+ > -->
|
|
|
<el-button
|
|
|
+ style="margin: 0 2px"
|
|
|
+ v-if="scope.row.collStatus == 0"
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
- v-hasPermi="['business:GATHER:edit']"
|
|
|
+ >录入</el-button
|
|
|
+ >
|
|
|
+
|
|
|
+ <el-popconfirm
|
|
|
+ title="确定上报吗?"
|
|
|
+ @confirm="handleReport(scope.row)"
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ style="margin: 0 2px"
|
|
|
+ v-if="scope.row.reportStatus == 0 && scope.row.collStatus == 1"
|
|
|
+ size="mini"
|
|
|
+ slot="reference"
|
|
|
+ type="text"
|
|
|
+ >上报</el-button
|
|
|
+ >
|
|
|
+ </el-popconfirm>
|
|
|
+
|
|
|
+ <el-popconfirm
|
|
|
+ title="确定提交吗?"
|
|
|
+ @confirm="handleApprove(scope.row)"
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ style="margin: 0 2px"
|
|
|
+ v-if="scope.row.approveStatus == 0 && scope.row.collStatus == 1"
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ slot="reference"
|
|
|
+ >提交审核</el-button
|
|
|
+ >
|
|
|
+ </el-popconfirm>
|
|
|
+ <el-button
|
|
|
+ style="margin: 0 2px"
|
|
|
+ v-if="scope.row.collStatus == 1"
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ @click="handleDetail(scope.row, 0)"
|
|
|
+ >查看</el-button
|
|
|
+ >
|
|
|
+
|
|
|
+ <el-button
|
|
|
+ style="margin: 0 2px"
|
|
|
+ v-if="
|
|
|
+ scope.row.collStatus == 1 &&
|
|
|
+ scope.row.reportStatus == 0 &&
|
|
|
+ scope.row.approveStatus == 0
|
|
|
+ "
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ @click="handleDetail(scope.row, 1)"
|
|
|
>修改</el-button
|
|
|
>
|
|
|
</template>
|
|
@@ -163,16 +253,93 @@
|
|
|
@pagination="getList"
|
|
|
/>
|
|
|
|
|
|
- <!-- 添加或修改数据采集对话框 -->
|
|
|
- <el-dialog :title="title" :visible.sync="open" width="80%" append-to-body>
|
|
|
- <el-tabs v-model="activeName" type="border-card" @tab-click="handleClick">
|
|
|
+ <!-- 上传文件对话框 -->
|
|
|
+ <el-dialog
|
|
|
+ center
|
|
|
+ title="导入"
|
|
|
+ :visible.sync="openUpload"
|
|
|
+ width="50%"
|
|
|
+ append-to-body
|
|
|
+ >
|
|
|
+ <el-form
|
|
|
+ ref="uploadForm"
|
|
|
+ :model="uploadForm"
|
|
|
+ :rules="rules"
|
|
|
+ label-width="120px"
|
|
|
+ >
|
|
|
+ <el-form-item label="数据类型" prop="type">
|
|
|
+ <el-select
|
|
|
+ v-model="uploadForm.type"
|
|
|
+ placeholder="请选择数据类型"
|
|
|
+ clearable
|
|
|
+ filterable
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="dict in typeList"
|
|
|
+ :key="dict.value + 'typeList'"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="文件" prop="linkUrl" v-show="uploadForm.type">
|
|
|
+ <el-upload
|
|
|
+ class="upload-demo"
|
|
|
+ ref="upload"
|
|
|
+ action="#"
|
|
|
+ :http-request="httprequest"
|
|
|
+ :before-upload="uploadFile"
|
|
|
+ :file-list="fileList"
|
|
|
+ :auto-upload="false"
|
|
|
+ :limit="1"
|
|
|
+ >
|
|
|
+ <el-button slot="trigger" size="small" type="primary"
|
|
|
+ >选取文件</el-button
|
|
|
+ >
|
|
|
+ </el-upload>
|
|
|
+ <!-- <el-upload
|
|
|
+ :http-request="httprequest"
|
|
|
+ :before-upload="uploadFile"
|
|
|
+ :limit="1"
|
|
|
+ class="upload-demo"
|
|
|
+ action="#"
|
|
|
+ :auto-upload="true"
|
|
|
+ :on-change="handleChange"
|
|
|
+ :file-list="fileList"
|
|
|
+ >
|
|
|
+ <el-button size="small" type="primary">点击上传</el-button>
|
|
|
+ </el-upload> -->
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitUpload">导 入</el-button>
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
+ <!-- <el-button @click="cancel">取 消</el-button> -->
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ <!-- 录入数据采集对话框 -->
|
|
|
+ <el-dialog
|
|
|
+ center
|
|
|
+ :title="title"
|
|
|
+ :visible.sync="open"
|
|
|
+ width="80%"
|
|
|
+ append-to-body
|
|
|
+ >
|
|
|
+ <el-tabs
|
|
|
+ v-if="this.form.type == 0"
|
|
|
+ v-model="activeName"
|
|
|
+ type="border-card"
|
|
|
+ @tab-click="handleClick"
|
|
|
+ >
|
|
|
<el-tab-pane
|
|
|
v-for="(item, index) in tabList"
|
|
|
:key="index + 'tabs'"
|
|
|
:label="item.normName"
|
|
|
:name="item.normName"
|
|
|
>
|
|
|
- <el-form :model="form" label-width="150px">
|
|
|
+ <el-form :model="form" label-width="200px">
|
|
|
<!-- :rules="rules" ref="form" -->
|
|
|
<el-form-item
|
|
|
v-for="(listItem, listIndex) in form.feeLists"
|
|
@@ -181,9 +348,9 @@
|
|
|
v-if="listItem.normId == item.normId"
|
|
|
:required="true"
|
|
|
>
|
|
|
- <!-- 这里科研失败!想动态绑定校验规则的 -->
|
|
|
- <!-- :prop="listItem.normfeeId" -->
|
|
|
- <!-- :rules="rules.listItem.normfeeId" -->
|
|
|
+ <!-- 这里科研失败!想动态绑定校验规则的 -->
|
|
|
+ <!-- :prop="listItem.normfeeId" -->
|
|
|
+ <!-- :rules="rules.listItem.normfeeId" -->
|
|
|
<el-input
|
|
|
v-model="listItem.collCalue"
|
|
|
:placeholder="'请输入' + listItem.normfeeName"
|
|
@@ -192,7 +359,7 @@
|
|
|
</el-form>
|
|
|
|
|
|
<!-- 这里是第二种写法 -->
|
|
|
- <!-- <el-form :model="form" label-width="150px">
|
|
|
+ <!-- <el-form :model="form" label-width="300px">
|
|
|
<el-form-item
|
|
|
v-for="(listItem, listIndex) in item.list"
|
|
|
:key="listIndex + 'item.list'"
|
|
@@ -206,70 +373,118 @@
|
|
|
</el-form> -->
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
- <!-- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
- <el-form-item label="数据类型" prop="type">
|
|
|
- <el-select
|
|
|
- v-model="form.type"
|
|
|
- placeholder="请选择数据类型"
|
|
|
- filterable
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="dict in typeList"
|
|
|
- :key="dict.value + 'typeList2'"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="采集状态" prop="collStatus">
|
|
|
- <el-select
|
|
|
- v-model="form.collStatus"
|
|
|
- placeholder="请选择采集状态"
|
|
|
- clearable
|
|
|
- filterable
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="dict in collStatus"
|
|
|
- :key="dict.value + 'collStatus2'"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="上报状态" prop="reportStatus">
|
|
|
- <el-select
|
|
|
- v-model="form.reportStatus"
|
|
|
- placeholder="请选择上报状态"
|
|
|
- clearable
|
|
|
- filterable
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="dict in reportStatus"
|
|
|
- :key="dict.value + 'reportStatus2'"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="审核状态" prop="approveStatus">
|
|
|
- <el-select
|
|
|
- v-model="form.approveStatus"
|
|
|
- placeholder="请选择审核状态"
|
|
|
- clearable
|
|
|
- filterable
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="dict in approveStatus"
|
|
|
- :key="dict.value + 'approveStatus2'"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
+
|
|
|
+ <el-form
|
|
|
+ :model="form"
|
|
|
+ label-width="200px"
|
|
|
+ v-else-if="this.form.type == 1"
|
|
|
+ >
|
|
|
+ <!-- :rules="rules" ref="form" -->
|
|
|
+ <el-form-item
|
|
|
+ v-for="(listItem, listIndex) in form.feeLists"
|
|
|
+ :key="listItem.normfeeId"
|
|
|
+ :label="listItem.normfeeName"
|
|
|
+ :required="true"
|
|
|
+ >
|
|
|
+ <!-- 这里科研失败!想动态绑定校验规则的 -->
|
|
|
+ <!-- :prop="listItem.normfeeId" -->
|
|
|
+ <!-- :rules="rules.listItem.normfeeId" -->
|
|
|
+ <el-input
|
|
|
+ v-model="listItem.collCalue"
|
|
|
+ :placeholder="'请输入' + listItem.normfeeName"
|
|
|
+ ></el-input>
|
|
|
</el-form-item>
|
|
|
- </el-form> -->
|
|
|
+ </el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button type="primary" @click="submitForm('add')">确 定</el-button>
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
+ <!-- <el-button @click="cancel">取 消</el-button> -->
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ <!-- 查看或修改 -->
|
|
|
+ <el-dialog
|
|
|
+ center
|
|
|
+ :title="title"
|
|
|
+ :visible.sync="openDetail"
|
|
|
+ width="80%"
|
|
|
+ append-to-body
|
|
|
+ >
|
|
|
+ <el-tabs
|
|
|
+ v-if="this.form.type == 0"
|
|
|
+ v-model="activeName"
|
|
|
+ type="border-card"
|
|
|
+ @tab-click="handleClick"
|
|
|
+ >
|
|
|
+ <el-tab-pane
|
|
|
+ v-for="(item, index) in tabList"
|
|
|
+ :key="index + 'tabs'"
|
|
|
+ :label="item.normName"
|
|
|
+ :name="item.normName"
|
|
|
+ >
|
|
|
+ <el-form :model="form" label-width="200px">
|
|
|
+ <!-- :rules="rules" ref="form" -->
|
|
|
+ <el-form-item
|
|
|
+ v-for="(listItem, listIndex) in form.feeLists"
|
|
|
+ :key="listItem.normfeeId"
|
|
|
+ :label="listItem.normfeeName"
|
|
|
+ v-if="listItem.normId == item.normId"
|
|
|
+ :required="true"
|
|
|
+ >
|
|
|
+ <!-- 这里科研失败!想动态绑定校验规则的 -->
|
|
|
+ <!-- :prop="listItem.normfeeId" -->
|
|
|
+ <!-- :rules="rules.listItem.normfeeId" -->
|
|
|
+ <el-input
|
|
|
+ :disabled="!edit"
|
|
|
+ v-model="listItem.collCalue"
|
|
|
+ :placeholder="'请输入' + listItem.normfeeName"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+
|
|
|
+ <!-- 这里是第二种写法 -->
|
|
|
+ <!-- <el-form :model="form" label-width="150px">
|
|
|
+ <el-form-item
|
|
|
+ v-for="(listItem, listIndex) in item.list"
|
|
|
+ :key="listIndex + 'item.list'"
|
|
|
+ :label="listItem.normfeeName"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model="listItem.collCalue"
|
|
|
+ :placeholder="'请输入' + listItem.normfeeName"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form> -->
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+
|
|
|
+ <el-form
|
|
|
+ :model="form"
|
|
|
+ label-width="200px"
|
|
|
+ v-else-if="this.form.type == 1"
|
|
|
+ >
|
|
|
+ <!-- :rules="rules" ref="form" -->
|
|
|
+ <el-form-item
|
|
|
+ v-for="(listItem, listIndex) in form.feeLists"
|
|
|
+ :key="listItem.normfeeId"
|
|
|
+ :label="listItem.normfeeName"
|
|
|
+ :required="true"
|
|
|
+ >
|
|
|
+ <!-- 这里科研失败!想动态绑定校验规则的 -->
|
|
|
+ <!-- :prop="listItem.normfeeId" -->
|
|
|
+ <!-- :rules="rules.listItem.normfeeId" -->
|
|
|
+ <el-input
|
|
|
+ :disabled="!edit"
|
|
|
+ v-model="listItem.collCalue"
|
|
|
+ :placeholder="'请输入' + listItem.normfeeName"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitForm('edit')" v-if="edit"
|
|
|
+ >确 定</el-button
|
|
|
+ >
|
|
|
+ <el-button type="primary" @click="cancel">返 回</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -283,12 +498,20 @@ import {
|
|
|
addGATHER,
|
|
|
updateGATHER,
|
|
|
getInfoByColl,
|
|
|
+ approve,
|
|
|
+ report,
|
|
|
+ download,
|
|
|
+ upload,
|
|
|
} from "@/api/portal/GATHER/GATHER.js";
|
|
|
+import { saveAs } from "file-saver";
|
|
|
+import { getToken } from "@/utils/auth";
|
|
|
+import axios from "axios";
|
|
|
|
|
|
export default {
|
|
|
name: "GATHER",
|
|
|
data() {
|
|
|
return {
|
|
|
+ edit: Boolean, //false 查看 true修改
|
|
|
tabList: [],
|
|
|
feeLists: [],
|
|
|
activeName: "",
|
|
@@ -334,6 +557,7 @@ export default {
|
|
|
title: "",
|
|
|
// 是否显示弹出层
|
|
|
open: false,
|
|
|
+ openDetail: false,
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
@@ -357,12 +581,82 @@ export default {
|
|
|
rules: {
|
|
|
// id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
|
|
|
},
|
|
|
+ //设置文件名字
|
|
|
+ setFileName: "",
|
|
|
+ radio: "",
|
|
|
+ rowData: {},
|
|
|
+ fileList: [],
|
|
|
+ uploadForm: {},
|
|
|
+ openUpload: false,
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
this.getList();
|
|
|
},
|
|
|
methods: {
|
|
|
+ submitUpload() {
|
|
|
+ this.$refs.upload.submit();
|
|
|
+ },
|
|
|
+ httprequest() {},
|
|
|
+ getCurrentRow(val) {
|
|
|
+ console.log(val);
|
|
|
+ },
|
|
|
+ handleCurrentChange(val, index) {
|
|
|
+ this.currentRow = val;
|
|
|
+ this.$emit("data", val.pkg);
|
|
|
+ },
|
|
|
+ handleChange(file, fileList) {
|
|
|
+ this.fileList = fileList.slice(-3);
|
|
|
+ },
|
|
|
+ showRow(row) {
|
|
|
+ //赋值给radio
|
|
|
+ this.radio = this.GATHERList.indexOf(row);
|
|
|
+ this.rowData = row;
|
|
|
+ },
|
|
|
+ //导入
|
|
|
+ uploadFile(file) {
|
|
|
+ let formData = new FormData();
|
|
|
+ formData.append("file", file);
|
|
|
+ formData.append("type", this.uploadForm.type);
|
|
|
+ upload(formData)
|
|
|
+ this.cancel()
|
|
|
+ this.openUpload = false
|
|
|
+ },
|
|
|
+ //下载模板
|
|
|
+ handleDownload() {
|
|
|
+ let row = this.rowData;
|
|
|
+ axios({
|
|
|
+ url: process.env.VUE_APP_BASE_API + "/gather/download/" + row.id,
|
|
|
+ method: "get",
|
|
|
+ responseType: "blob",
|
|
|
+ headers: {
|
|
|
+ Authorization: "Bearer " + getToken(),
|
|
|
+ },
|
|
|
+ }).then((res) => {
|
|
|
+ const temp = res.headers["content-disposition"]
|
|
|
+ .split(";")[1]
|
|
|
+ .split("filename=")[1];
|
|
|
+ const fileName = decodeURIComponent(temp);
|
|
|
+ const blob = new Blob([res.data]);
|
|
|
+ saveAs(blob, fileName);
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //上报
|
|
|
+ handleReport(data) {
|
|
|
+ report(data).then((res) => {
|
|
|
+ this.$modal.msgSuccess("上报成功");
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //提交审核
|
|
|
+ handleApprove(data) {
|
|
|
+ this.$modal.msgSuccess("提交审核成功");
|
|
|
+ approve(data).then((res) => {
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
handleClick(tab, event) {},
|
|
|
/** 查询数据采集列表 */
|
|
|
getList() {
|
|
@@ -376,6 +670,8 @@ export default {
|
|
|
// 取消按钮
|
|
|
cancel() {
|
|
|
this.open = false;
|
|
|
+ this.openDetail = false;
|
|
|
+ this.openUpload = false;
|
|
|
this.reset();
|
|
|
},
|
|
|
// 表单重置
|
|
@@ -390,6 +686,10 @@ export default {
|
|
|
reportStatus: "0",
|
|
|
approveStatus: "0",
|
|
|
};
|
|
|
+ this.uploadForm = {
|
|
|
+ type: "",
|
|
|
+ };
|
|
|
+ this.fileList = [];
|
|
|
this.resetForm("form");
|
|
|
},
|
|
|
/** 搜索按钮操作 */
|
|
@@ -412,19 +712,20 @@ export default {
|
|
|
handleAdd() {
|
|
|
this.reset();
|
|
|
this.open = true;
|
|
|
+ this.openDetail = true;
|
|
|
this.title = "添加数据采集";
|
|
|
},
|
|
|
- /** 修改按钮操作 */
|
|
|
+ /** 录入按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
// this.reset();
|
|
|
- this.tabList = []
|
|
|
- this.form = []
|
|
|
+ this.tabList = [];
|
|
|
+ this.form = [];
|
|
|
const id = row.id || this.ids;
|
|
|
getInfoByColl(id).then((response) => {
|
|
|
//深拷贝,而不是拷贝地址
|
|
|
this.form = JSON.parse(JSON.stringify(response.data));
|
|
|
this.open = true;
|
|
|
- this.title = "修改数据采集";
|
|
|
+ this.title = "数据录入";
|
|
|
//深拷贝,而不是拷贝地址
|
|
|
this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
|
|
|
let dataList = response.data.feeLists;
|
|
@@ -443,7 +744,6 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
|
|
|
// 这里科研失败!想动态绑定校验规则的
|
|
|
//遍历设置表单校验 我好困
|
|
@@ -455,7 +755,63 @@ export default {
|
|
|
|
|
|
// console.log(this.rules);
|
|
|
|
|
|
+ //这里是第二种写法
|
|
|
+ //获取分类ID相同的子集
|
|
|
+ // for (let index = 0; index < this.tabList.length; index++) {
|
|
|
+ // this.$set(this.tabList[index],'list',[])
|
|
|
+ // for (let i = 0; i < dataList.length; i++) {
|
|
|
+ // if (dataList[i].normId == this.tabList[index].normId) {
|
|
|
+ // this.tabList[index].list.push(dataList[i]);
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 查看按钮操作 */
|
|
|
+ handleDetail(row, type) {
|
|
|
+ //false 查看 true修改
|
|
|
+ if (type == 0) {
|
|
|
+ this.edit = false;
|
|
|
+ } else if (type == 1) {
|
|
|
+ this.edit = true;
|
|
|
+ }
|
|
|
+ // this.reset();
|
|
|
+ this.tabList = [];
|
|
|
+ this.form = [];
|
|
|
+ const id = row.id || this.ids;
|
|
|
+ getGATHER(id).then((response) => {
|
|
|
+ //深拷贝,而不是拷贝地址
|
|
|
+ this.form = JSON.parse(JSON.stringify(response.data));
|
|
|
+ this.openDetail = true;
|
|
|
+ this.title = "数据查看";
|
|
|
+ //深拷贝,而不是拷贝地址
|
|
|
+ this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
|
|
|
+ let dataList = response.data.feeLists;
|
|
|
+ //去重获取tab
|
|
|
+ //遍历如果遇到相同的id则删掉
|
|
|
+ for (var i = 0; i < this.tabList.length - 1; i++) {
|
|
|
+ //设置激活的tab
|
|
|
+ if (i == 0) {
|
|
|
+ this.activeName = this.tabList[0].normName;
|
|
|
+ }
|
|
|
+ for (var j = i + 1; j < this.tabList.length; j++) {
|
|
|
+ if (this.tabList[i].normId == this.tabList[j].normId) {
|
|
|
+ this.tabList.splice(j, 1);
|
|
|
+ //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
|
|
|
+ j--;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 这里科研失败!想动态绑定校验规则的
|
|
|
+ //遍历设置表单校验 我好困
|
|
|
+ // for (const i in this.form.feeLists) {
|
|
|
+ // this.$set(this.rules,this.form.feeLists[i].normfeeId,[
|
|
|
+ // { required: true, message: this.form.feeLists[i].normfeeName+"不能为空", trigger: "blur" }
|
|
|
+ // ])
|
|
|
+ // }
|
|
|
|
|
|
+ // console.log(this.rules);
|
|
|
|
|
|
//这里是第二种写法
|
|
|
//获取分类ID相同的子集
|
|
@@ -470,35 +826,36 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
- submitForm() {
|
|
|
+ submitForm(type) {
|
|
|
for (const i in this.form.feeLists) {
|
|
|
- if(this.form.feeLists[i].collCalue == '' || this.form.feeLists[i].collCalue == null){
|
|
|
+ if (
|
|
|
+ this.form.feeLists[i].collCalue == "" ||
|
|
|
+ this.form.feeLists[i].collCalue == null
|
|
|
+ ) {
|
|
|
return this.$message({
|
|
|
- message: this.form.feeLists[i].normName+' - '+this.form.feeLists[i].normfeeName+' 未填写!',
|
|
|
- type: 'warning'
|
|
|
- });
|
|
|
+ message:
|
|
|
+ this.form.feeLists[i].normName +
|
|
|
+ " - " +
|
|
|
+ this.form.feeLists[i].normfeeName +
|
|
|
+ " 未填写!",
|
|
|
+ type: "warning",
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
- addGATHER(this.form).then((response) => {
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
|
|
|
-
|
|
|
- // this.$refs["form"].validate((valid) => {
|
|
|
- // if (valid) {
|
|
|
- // if (this.form.id != null) {
|
|
|
- // updateGATHER(this.form).then((response) => {
|
|
|
- // this.$modal.msgSuccess("修改成功");
|
|
|
- // this.open = false;
|
|
|
- // this.getList();
|
|
|
- // });
|
|
|
- // } else {
|
|
|
-
|
|
|
- // }
|
|
|
- // }
|
|
|
- // });
|
|
|
+ if (type == "add") {
|
|
|
+ addGATHER(this.form).then((response) => {
|
|
|
+ this.$modal.msgSuccess("录入成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else if (type == "edit") {
|
|
|
+ updateGATHER(this.form).then((response) => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.openDetail = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|