index.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch">
  4. <el-form-item label="数据类型" prop="type">
  5. <el-select v-model="queryParams.type" placeholder="请选择数据类型" clearable filterable class="se">
  6. <el-option v-for="dict in typeList" :key="dict.value + 'typeList'" :label="dict.label" :value="dict.value" />
  7. </el-select>
  8. </el-form-item>
  9. <el-form-item label="采集状态" prop="collStatus">
  10. <el-select v-model="queryParams.collStatus" placeholder="请选择采集状态" clearable filterable class="se">
  11. <el-option v-for="dict in collStatus" :key="dict.value + 'collStatus'" :label="dict.label" :value="dict.value" />
  12. </el-select>
  13. </el-form-item>
  14. <el-form-item label="上报状态" prop="reportStatus">
  15. <el-select v-model="queryParams.reportStatus" placeholder="请选择上报状态" clearable filterable class="se">
  16. <el-option v-for="dict in reportStatus" :key="dict.value + 'reportStatus'" :label="dict.label" :value="dict.value" />
  17. </el-select>
  18. </el-form-item>
  19. <el-form-item label="审核状态" prop="approveStatus">
  20. <el-select v-model="queryParams.approveStatus" placeholder="请选择审核状态" clearable filterable class="se">
  21. <el-option v-for="dict in approveStatus" :key="dict.value + 'approveStatus'" :label="dict.label" :value="dict.value" />
  22. </el-select>
  23. </el-form-item>
  24. <el-form-item label="年度" prop="year">
  25. <el-date-picker v-model="queryParams.year" type="year" format="yyyy" value-format="yyyy" placeholder="选择年度" class="se"></el-date-picker>
  26. </el-form-item>
  27. <el-form-item label="月份" prop="month">
  28. <el-date-picker v-model="queryParams.month" type="month" format="MM" value-format="MM" placeholder="选择月份" class="se"></el-date-picker>
  29. </el-form-item>
  30. <el-form-item>
  31. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  32. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  33. </el-form-item>
  34. </el-form>
  35. <el-row :gutter="10" class="mb8">
  36. <el-col :span="1.5">
  37. <el-button type="success" @click="openUpload = true">导入</el-button>
  38. </el-col>
  39. <el-col :span="1.5">
  40. <el-button @click="handleDownload()" :title="radio === ''?'请先选择下面对应的单位模板':''" :disabled="radio === '' ? true : false">下载导入模板</el-button>
  41. </el-col>
  42. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  43. </el-row>
  44. <el-table :data="GATHERList" @selection-change="handleSelectionChange" @row-click="showRow">
  45. <!-- @current-change="handleCurrentChange" -->
  46. <el-table-column label="选择" width="70" center>
  47. <template scope="scope">
  48. <el-radio class="radio" v-model="radio" :label="scope.$index" @change.native="getCurrentRow(scope.row)">{{ '' }}</el-radio>
  49. </template>
  50. </el-table-column>
  51. <!-- <el-table-column type="selection" width="55" align="center" /> -->
  52. <el-table-column label="单位名称" align="center" prop="deptId_dictText">
  53. <template slot-scope="scope">
  54. {{ scope.row.deptId_dictText }}
  55. </template>
  56. </el-table-column>
  57. <el-table-column label="数据类型" align="center" prop="type">
  58. <template slot-scope="scope">
  59. <span v-if="scope.row.type == 0">量化指标数据</span>
  60. <span v-if="scope.row.type == 1">月报表数据</span>
  61. </template>
  62. </el-table-column>
  63. <el-table-column label="年份" align="center" prop="month" width="90">
  64. <template slot-scope="scope">
  65. {{ scope.row.year }}
  66. </template>
  67. </el-table-column>
  68. <el-table-column label="月份" align="center" prop="month" width="90">
  69. <template slot-scope="scope">
  70. {{ scope.row.month }}
  71. </template>
  72. </el-table-column>
  73. <el-table-column label="采集状态" align="center" prop="collStatus" width="110">
  74. <template slot-scope="scope">
  75. <span v-if="scope.row.collStatus == 0">未采集</span>
  76. <span v-if="scope.row.collStatus == 1">已采集</span>
  77. </template>
  78. </el-table-column>
  79. <el-table-column label="上报状态" align="center" prop="reportStatus" width="110">
  80. <template slot-scope="scope">
  81. <span v-if="scope.row.reportStatus == 0">未上报</span>
  82. <span v-if="scope.row.reportStatus == 1">已上报</span>
  83. </template>
  84. </el-table-column>
  85. <el-table-column label="审核状态" align="center" prop="approveStatus">
  86. <template slot-scope="scope">
  87. <span v-if="scope.row.approveStatus == 0">未提交审核</span>
  88. <span v-if="scope.row.approveStatus == 1">审核中</span>
  89. <span v-if="scope.row.approveStatus == 2">审核通过</span>
  90. <span v-if="scope.row.approveStatus == 3">审核拒绝</span>
  91. </template>
  92. </el-table-column>
  93. <el-table-column label="上报时间" align="center" prop="createTime" />
  94. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  95. <template slot-scope="scope">
  96. <!-- <el-button
  97. style="margin: 0 2px"
  98. size="mini"
  99. type="text"
  100. @click="handleDownload(scope.row)"
  101. >下载导入模板</el-button
  102. > -->
  103. <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 0" size="mini" type="text" @click="handleUpdate(scope.row)">录入</el-button>
  104. <template v-if="scope.row.reportStatus == 0 && scope.row.collStatus == 1">
  105. <el-popconfirm title="确定上报吗?" @confirm="handleReport(scope.row)">
  106. <el-button style="margin: 0 2px" size="mini" slot="reference" type="text">上报</el-button>
  107. </el-popconfirm>
  108. </template>
  109. <template v-if="scope.row.approveStatus == 0 && scope.row.collStatus == 1">
  110. <el-popconfirm title="确定提交吗?" @confirm="handleApprove(scope.row)">
  111. <el-button style="margin: 0 2px" size="mini" type="text" slot="reference">提交审核</el-button>
  112. </el-popconfirm>
  113. </template>
  114. <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 1" size="mini" type="text" @click="handleDetail(scope.row, 0)">查看</el-button>
  115. <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>
  116. </template>
  117. </el-table-column>
  118. </el-table>
  119. <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
  120. <!-- 上传文件对话框 -->
  121. <el-dialog title="导入" :visible.sync="openUpload" width="50%" append-to-body>
  122. <el-form ref="uploadForm" :model="uploadForm" :rules="rules">
  123. <el-form-item label="数据类型" prop="type">
  124. <el-select v-model="uploadForm.type" placeholder="请选择数据类型" clearable filterable>
  125. <el-option v-for="dict in typeList" :key="dict.value + 'typeList'" :label="dict.label" :value="dict.value" />
  126. </el-select>
  127. </el-form-item>
  128. <el-form-item label="选择文件" prop="linkUrl" v-show="uploadForm.type">
  129. <el-upload class="upload-demo" ref="upload" action="#" :http-request="httprequest" :before-upload="uploadFile" :file-list="fileList" :auto-upload="false" :limit="1">
  130. <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
  131. </el-upload>
  132. </el-form-item>
  133. <div class="tips-text">
  134. <span class="tit">提示</span>
  135. <p>1.请先下载对应单位名称模板;</p>
  136. <p>2.上传前,请先检查数据的完整性;</p>
  137. </div>
  138. </el-form>
  139. <div slot="footer" class="dialog-footer">
  140. <el-button type="primary" @click="submitUpload">导 入</el-button>
  141. <el-button @click="cancel">取 消</el-button>
  142. </div>
  143. </el-dialog>
  144. <!-- 录入数据采集对话框 -->
  145. <el-dialog center :title="title" :visible.sync="open" width="50%" append-to-body>
  146. <el-tabs v-if="this.form.type == 0" v-model="activeName" type="border-card" @tab-click="handleClick">
  147. <el-tab-pane v-for="(item, index) in tabList" :key="index + 'tabs'" :label="item.normName" :name="item.normName">
  148. <el-form :model="form">
  149. <!-- :rules="rules" ref="form" -->
  150. <el-form-item v-for="(listItem, listIndex) in form.feeLists" :key="listItem.normfeeId" :label="listItem.normfeeName" v-if="listItem.normId == item.normId" :required="true">
  151. <!-- 这里科研失败!想动态绑定校验规则的 -->
  152. <!-- :prop="listItem.normfeeId" -->
  153. <!-- :rules="rules.listItem.normfeeId" -->
  154. <el-input v-model="listItem.collCalue" :placeholder="'请输入' + listItem.normfeeName"></el-input>
  155. </el-form-item>
  156. </el-form>
  157. <!-- 这里是第二种写法 -->
  158. <!-- <el-form :model="form" label-width="300px">
  159. <el-form-item
  160. v-for="(listItem, listIndex) in item.list"
  161. :key="listIndex + 'item.list'"
  162. :label="listItem.normfeeName"
  163. >
  164. <el-input
  165. v-model="listItem.collCalue"
  166. :placeholder="'请输入' + listItem.normfeeName"
  167. ></el-input>
  168. </el-form-item>
  169. </el-form> -->
  170. </el-tab-pane>
  171. </el-tabs>
  172. <template v-else-if="this.form.type == 1">
  173. <el-form v-for="(listItem, listIndex) in form.feeLists" :model="listItem" :ref="'form' + listIndex" :rules="rules">
  174. <!-- :rules="rules" ref="form" -->
  175. <el-form-item :key="listItem.normfeeId" :label="listItem.normfeeName" :required="true" prop="collCalue">
  176. <!-- 这里科研失败!想动态绑定校验规则的 -->
  177. <!-- :prop="listItem.normfeeId" -->
  178. <!-- :rules="rules.listItem.normfeeId" -->
  179. <el-input v-model="listItem.collCalue" :placeholder="'请输入' + listItem.normfeeName"></el-input>
  180. </el-form-item>
  181. </el-form>
  182. </template>
  183. <div slot="footer" class="dialog-footer">
  184. <el-button type="primary" @click="submitForm('add')">确 定</el-button>
  185. <el-button @click="cancel">取 消</el-button>
  186. <!-- <el-button @click="cancel">取 消</el-button> -->
  187. </div>
  188. </el-dialog>
  189. <!-- 查看或修改 -->
  190. <el-dialog center :title="title" :visible.sync="openDetail" width="50%" append-to-body>
  191. <el-tabs v-if="this.form.type == 0" v-model="activeName" type="border-card" @tab-click="handleClick">
  192. <el-tab-pane v-for="(item, index) in tabList" :key="index + 'tabs'" :label="item.normName" :name="item.normName">
  193. <el-form :model="form">
  194. <!-- :rules="rules" ref="form" -->
  195. <el-form-item v-for="(listItem, listIndex) in form.feeLists" :key="listItem.normfeeId" :label="listItem.normfeeName" v-if="listItem.normId == item.normId" :required="true">
  196. <!-- 这里科研失败!想动态绑定校验规则的 -->
  197. <!-- :prop="listItem.normfeeId" -->
  198. <!-- :rules="rules.listItem.normfeeId" -->
  199. <el-input :disabled="!edit" v-model="listItem.collCalue" :placeholder="'请输入' + listItem.normfeeName"></el-input>
  200. </el-form-item>
  201. </el-form>
  202. <!-- 这里是第二种写法 -->
  203. <!-- <el-form :model="form" label-width="150px">
  204. <el-form-item
  205. v-for="(listItem, listIndex) in item.list"
  206. :key="listIndex + 'item.list'"
  207. :label="listItem.normfeeName"
  208. >
  209. <el-input
  210. v-model="listItem.collCalue"
  211. :placeholder="'请输入' + listItem.normfeeName"
  212. ></el-input>
  213. </el-form-item>
  214. </el-form> -->
  215. </el-tab-pane>
  216. </el-tabs>
  217. <el-form :model="form" v-else-if="this.form.type == 1">
  218. <!-- :rules="rules" ref="form" -->
  219. <el-form-item v-for="(listItem, listIndex) in form.feeLists" :key="listItem.normfeeId" :label="listItem.normfeeName" :required="true">
  220. <!-- 这里科研失败!想动态绑定校验规则的 -->
  221. <!-- :prop="listItem.normfeeId" -->
  222. <!-- :rules="rules.listItem.normfeeId" -->
  223. <el-input :disabled="!edit" v-model="listItem.collCalue" :placeholder="'请输入' + listItem.normfeeName"></el-input>
  224. </el-form-item>
  225. </el-form>
  226. <div slot="footer" class="dialog-footer">
  227. <el-button type="primary" @click="submitForm('edit')" v-if="edit">确 定</el-button>
  228. <el-button type="primary" @click="cancel">返 回</el-button>
  229. </div>
  230. </el-dialog>
  231. </div>
  232. </template>
  233. <script>
  234. import { listGATHER, getGATHER, delGATHER, addGATHER, updateGATHER, getInfoByColl, approve, report, download, upload } from '@/api/portal/GATHER/GATHER.js';
  235. import { saveAs } from 'file-saver';
  236. import { getToken } from '@/utils/auth';
  237. import axios from 'axios';
  238. export default {
  239. name: 'GATHER',
  240. data() {
  241. return {
  242. edit: Boolean, //false 查看 true修改
  243. tabList: [],
  244. feeLists: [],
  245. activeName: '',
  246. //数据类型(0=量化指标数据,1=月报表数据)
  247. typeList: [
  248. { label: '量化指标数据', value: '0' },
  249. { label: '月报表数据', value: '1' }
  250. ],
  251. //采集状态(0=未采集,1=已采集)
  252. collStatus: [
  253. { label: '未采集', value: '0' },
  254. { label: '已采集', value: '1' }
  255. ],
  256. //上报状态(0=未上报,=1已上报)
  257. reportStatus: [
  258. { label: '未上报', value: '0' },
  259. { label: '已上报', value: '1' }
  260. ],
  261. //审核状态(0=未审核,1审核中,2=审核通过,3=审核拒绝)
  262. approveStatus: [
  263. { label: '未审核', value: '0' },
  264. { label: '审核中', value: '1' },
  265. { label: '审核通过', value: '2' },
  266. { label: '审核拒绝', value: '3' }
  267. ],
  268. // 根路径
  269. baseURL: process.env.VUE_APP_BASE_API,
  270. // 遮罩层
  271. loading: true,
  272. // 选中数组
  273. ids: [],
  274. // 非单个禁用
  275. single: true,
  276. // 非多个禁用
  277. multiple: true,
  278. // 显示搜索条件
  279. showSearch: true,
  280. // 总条数
  281. total: 0,
  282. // 数据采集表格数据
  283. GATHERList: [],
  284. // 弹出层标题
  285. title: '',
  286. // 是否显示弹出层
  287. open: false,
  288. openDetail: false,
  289. // 查询参数
  290. queryParams: {
  291. pageNum: 1,
  292. pageSize: 10,
  293. id: null,
  294. createTime: null,
  295. createBy: null,
  296. updateTime: null,
  297. updateBy: null,
  298. delFlag: null,
  299. deptId: null,
  300. type: null,
  301. year: null,
  302. month: null,
  303. collStatus: null,
  304. reportStatus: null,
  305. approveStatus: null,
  306. orderByColumn: 'create_time',
  307. isAsc: 'desc'
  308. },
  309. // 表单参数
  310. form: {},
  311. // 表单校验
  312. rules: {
  313. // id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
  314. collCalue: [
  315. { required: true, message: '不能为空', trigger: 'blur' },
  316. { trigger: 'blur', validator: this.validator }
  317. ]
  318. },
  319. //设置文件名字
  320. setFileName: '',
  321. radio: '',
  322. rowData: {},
  323. fileList: [],
  324. uploadForm: {},
  325. openUpload: false
  326. };
  327. },
  328. created() {
  329. this.getList();
  330. },
  331. methods: {
  332. validator(rule, value, callback) {
  333. let reg = /^[+-]?(0|([1-9]\d*))(\.\d+)?$/g;
  334. if (!reg.test(value)) {
  335. callback(new Error('请输入数字'));
  336. } else if (value.split('.').length > 2) {
  337. callback(new Error('输入正确格式的金额')); //防止输入多个小数点
  338. } else if (value.indexOf('.') != -1 && value.split('.')[1].length > 2) {
  339. callback(new Error('只能输入两位小数')); //小数点后两位
  340. } else {
  341. callback();
  342. }
  343. },
  344. submitUpload() {
  345. this.$refs.upload.submit();
  346. },
  347. httprequest() {},
  348. getCurrentRow(val) {
  349. console.log(val);
  350. },
  351. handleCurrentChange(val, index) {
  352. this.currentRow = val;
  353. this.$emit('data', val.pkg);
  354. },
  355. handleChange(file, fileList) {
  356. this.fileList = fileList.slice(-3);
  357. },
  358. showRow(row) {
  359. //赋值给radio
  360. this.radio = this.GATHERList.indexOf(row);
  361. this.rowData = row;
  362. },
  363. //导入
  364. uploadFile(file) {
  365. let formData = new FormData();
  366. formData.append('file', file);
  367. formData.append('type', this.uploadForm.type);
  368. upload(formData).then(res => {
  369. this.$modal.msgSuccess('上传采集附件成功!');
  370. this.getList();
  371. this.cancel();
  372. this.openUpload = false;
  373. });
  374. },
  375. //下载模板
  376. handleDownload() {
  377. let row = this.rowData;
  378. axios({
  379. url: process.env.VUE_APP_BASE_API + '/gather/download/' + row.id,
  380. method: 'get',
  381. responseType: 'blob',
  382. headers: {
  383. Authorization: 'Bearer ' + getToken()
  384. }
  385. }).then(res => {
  386. const temp = res.headers['content-disposition'].split(';')[1].split('filename=')[1];
  387. const fileName = decodeURIComponent(temp);
  388. const blob = new Blob([res.data]);
  389. saveAs(blob, fileName);
  390. this.getList();
  391. });
  392. },
  393. //上报
  394. handleReport(data) {
  395. report(data).then(res => {
  396. this.$modal.msgSuccess('上报成功');
  397. this.getList();
  398. });
  399. },
  400. //提交审核
  401. handleApprove(data) {
  402. approve(data).then(res => {
  403. this.$modal.msgSuccess('提交审核成功');
  404. this.getList();
  405. });
  406. },
  407. handleClick(tab, event) {},
  408. /** 查询数据采集列表 */
  409. getList() {
  410. this.loading = true;
  411. listGATHER(this.queryParams).then(response => {
  412. this.GATHERList = response.rows;
  413. this.total = response.total;
  414. this.loading = false;
  415. });
  416. },
  417. // 取消按钮
  418. cancel() {
  419. this.open = false;
  420. this.openDetail = false;
  421. this.openUpload = false;
  422. this.reset();
  423. },
  424. // 表单重置
  425. reset() {
  426. this.form = {
  427. id: null,
  428. delFlag: null,
  429. deptId: null,
  430. type: null,
  431. month: null,
  432. collStatus: '0',
  433. reportStatus: '0',
  434. approveStatus: '0'
  435. };
  436. this.uploadForm = {
  437. type: ''
  438. };
  439. this.fileList = [];
  440. this.resetForm('form');
  441. },
  442. /** 搜索按钮操作 */
  443. handleQuery() {
  444. this.queryParams.pageNum = 1;
  445. this.getList();
  446. },
  447. /** 重置按钮操作 */
  448. resetQuery() {
  449. this.resetForm('queryForm');
  450. this.handleQuery();
  451. },
  452. // 多选框选中数据
  453. handleSelectionChange(selection) {
  454. this.ids = selection.map(item => item.id);
  455. this.single = selection.length !== 1;
  456. this.multiple = !selection.length;
  457. },
  458. /** 新增按钮操作 */
  459. handleAdd() {
  460. this.reset();
  461. this.open = true;
  462. this.openDetail = true;
  463. this.title = '添加数据采集';
  464. },
  465. /** 录入按钮操作 */
  466. handleUpdate(row) {
  467. // this.reset();
  468. this.tabList = [];
  469. this.form = [];
  470. const id = row.id || this.ids;
  471. getInfoByColl(id).then(response => {
  472. //深拷贝,而不是拷贝地址
  473. this.form = JSON.parse(JSON.stringify(response.data));
  474. this.open = true;
  475. this.title = '数据录入';
  476. //深拷贝,而不是拷贝地址
  477. this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
  478. let dataList = response.data.feeLists;
  479. //去重获取tab
  480. //遍历如果遇到相同的id则删掉
  481. for (var i = 0; i < this.tabList.length - 1; i++) {
  482. //设置激活的tab
  483. if (i == 0) {
  484. this.activeName = this.tabList[0].normName;
  485. }
  486. for (var j = i + 1; j < this.tabList.length; j++) {
  487. if (this.tabList[i].normId == this.tabList[j].normId) {
  488. this.tabList.splice(j, 1);
  489. //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
  490. j--;
  491. }
  492. }
  493. }
  494. // 这里科研失败!想动态绑定校验规则的
  495. //遍历设置表单校验 我好困
  496. // for (const i in this.form.feeLists) {
  497. // this.$set(this.rules,this.form.feeLists[i].normfeeId,[
  498. // { required: true, message: this.form.feeLists[i].normfeeName+"不能为空", trigger: "blur" }
  499. // ])
  500. // }
  501. // console.log(this.rules);
  502. //这里是第二种写法
  503. //获取分类ID相同的子集
  504. // for (let index = 0; index < this.tabList.length; index++) {
  505. // this.$set(this.tabList[index],'list',[])
  506. // for (let i = 0; i < dataList.length; i++) {
  507. // if (dataList[i].normId == this.tabList[index].normId) {
  508. // this.tabList[index].list.push(dataList[i]);
  509. // }
  510. // }
  511. // }
  512. });
  513. },
  514. /** 查看按钮操作 */
  515. handleDetail(row, type) {
  516. //false 查看 true修改
  517. if (type == 0) {
  518. this.edit = false;
  519. } else if (type == 1) {
  520. this.edit = true;
  521. }
  522. // this.reset();
  523. this.tabList = [];
  524. this.form = [];
  525. const id = row.id || this.ids;
  526. getGATHER(id).then(response => {
  527. //深拷贝,而不是拷贝地址
  528. this.form = JSON.parse(JSON.stringify(response.data));
  529. this.openDetail = true;
  530. this.title = '数据查看';
  531. //深拷贝,而不是拷贝地址
  532. this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
  533. let dataList = response.data.feeLists;
  534. //去重获取tab
  535. //遍历如果遇到相同的id则删掉
  536. for (var i = 0; i < this.tabList.length - 1; i++) {
  537. //设置激活的tab
  538. if (i == 0) {
  539. this.activeName = this.tabList[0].normName;
  540. }
  541. for (var j = i + 1; j < this.tabList.length; j++) {
  542. if (this.tabList[i].normId == this.tabList[j].normId) {
  543. this.tabList.splice(j, 1);
  544. //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
  545. j--;
  546. }
  547. }
  548. }
  549. // 这里科研失败!想动态绑定校验规则的
  550. //遍历设置表单校验 我好困
  551. // for (const i in this.form.feeLists) {
  552. // this.$set(this.rules,this.form.feeLists[i].normfeeId,[
  553. // { required: true, message: this.form.feeLists[i].normfeeName+"不能为空", trigger: "blur" }
  554. // ])
  555. // }
  556. // console.log(this.rules);
  557. //这里是第二种写法
  558. //获取分类ID相同的子集
  559. // for (let index = 0; index < this.tabList.length; index++) {
  560. // this.$set(this.tabList[index],'list',[])
  561. // for (let i = 0; i < dataList.length; i++) {
  562. // if (dataList[i].normId == this.tabList[index].normId) {
  563. // this.tabList[index].list.push(dataList[i]);
  564. // }
  565. // }
  566. // }
  567. });
  568. },
  569. /** 提交按钮 */
  570. submitForm(type) {
  571. for (const i in this.form.feeLists) {
  572. if (this.form.feeLists[i].collCalue == '' || this.form.feeLists[i].collCalue == null) {
  573. return this.$message({
  574. message: this.form.feeLists[i].normName + ' - ' + this.form.feeLists[i].normfeeName + ' 未填写!',
  575. type: 'warning'
  576. });
  577. }
  578. }
  579. if (type == 'add') {
  580. addGATHER(this.form).then(response => {
  581. this.$modal.msgSuccess('录入成功');
  582. this.open = false;
  583. this.getList();
  584. });
  585. } else if (type == 'edit') {
  586. updateGATHER(this.form).then(response => {
  587. this.$modal.msgSuccess('修改成功');
  588. this.openDetail = false;
  589. this.getList();
  590. });
  591. }
  592. },
  593. /** 删除按钮操作 */
  594. handleDelete(row) {
  595. const ids = row.id || this.ids;
  596. this.$modal
  597. .confirm('是否确认删除数据采集编号为"' + ids + '"的数据项?')
  598. .then(function () {
  599. return delGATHER(ids);
  600. })
  601. .then(() => {
  602. this.getList();
  603. this.$modal.msgSuccess('删除成功');
  604. })
  605. .catch(() => {});
  606. },
  607. /** 导出按钮操作 */
  608. handleExport() {
  609. this.download(
  610. 'business/GATHER/export',
  611. {
  612. ...this.queryParams
  613. },
  614. `GATHER_${new Date().getTime()}.xlsx`
  615. );
  616. }
  617. }
  618. };
  619. </script>