index.vue 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199
  1. <template>
  2. <div class="app-container">
  3. <el-form
  4. :model="queryParams"
  5. ref="queryForm"
  6. size="small"
  7. :inline="true"
  8. v-show="showSearch"
  9. >
  10. <el-form-item label="数据类型" prop="type">
  11. <el-select
  12. v-model="queryParams.type"
  13. placeholder="请选择数据类型"
  14. clearable
  15. filterable
  16. class="se"
  17. >
  18. <el-option
  19. v-for="dict in typeList"
  20. :key="dict.value + 'typeList'"
  21. :label="dict.label"
  22. :value="dict.value"
  23. />
  24. </el-select>
  25. </el-form-item>
  26. <el-form-item label="采集状态" prop="collStatus">
  27. <el-select
  28. v-model="queryParams.collStatus"
  29. placeholder="请选择采集状态"
  30. clearable
  31. filterable
  32. class="se"
  33. >
  34. <el-option
  35. v-for="dict in collStatus"
  36. :key="dict.value + 'collStatus'"
  37. :label="dict.label"
  38. :value="dict.value"
  39. />
  40. </el-select>
  41. </el-form-item>
  42. <el-form-item label="上报状态" prop="reportStatus">
  43. <el-select
  44. v-model="queryParams.reportStatus"
  45. placeholder="请选择上报状态"
  46. clearable
  47. filterable
  48. class="se"
  49. >
  50. <el-option
  51. v-for="dict in reportStatus"
  52. :key="dict.value + 'reportStatus'"
  53. :label="dict.label"
  54. :value="dict.value"
  55. />
  56. </el-select>
  57. </el-form-item>
  58. <el-form-item label="审核状态" prop="approveStatus">
  59. <el-select
  60. v-model="queryParams.approveStatus"
  61. placeholder="请选择审核状态"
  62. clearable
  63. filterable
  64. class="se"
  65. >
  66. <el-option
  67. v-for="dict in approveStatus"
  68. :key="dict.value + 'approveStatus'"
  69. :label="dict.label"
  70. :value="dict.value"
  71. />
  72. </el-select>
  73. </el-form-item>
  74. <el-form-item label="年度" prop="year">
  75. <el-date-picker
  76. v-model="queryParams.year"
  77. type="year"
  78. format="yyyy"
  79. value-format="yyyy"
  80. placeholder="选择年度"
  81. class="se"
  82. ></el-date-picker>
  83. </el-form-item>
  84. <el-form-item label="月份" prop="month">
  85. <el-date-picker
  86. v-model="queryParams.month"
  87. type="month"
  88. format="MM"
  89. value-format="MM"
  90. placeholder="选择月份"
  91. class="se"
  92. ></el-date-picker>
  93. </el-form-item>
  94. <el-form-item>
  95. <el-button type="primary" icon="el-icon-search" @click="handleQuery"
  96. >搜索</el-button
  97. >
  98. <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
  99. </el-form-item>
  100. </el-form>
  101. <el-row :gutter="10" class="mb8">
  102. <el-col :span="1.5">
  103. <el-button type="success" @click="onOpenDialog('old')"
  104. >历史数据导入</el-button
  105. >
  106. </el-col>
  107. <el-col :span="1.5">
  108. <el-button
  109. type="success"
  110. v-hasPermi="['gather:GATHER:upload']"
  111. @click="onOpenDialog('new')"
  112. >导入</el-button
  113. >
  114. </el-col>
  115. <el-col :span="1.5">
  116. <el-button
  117. @click="handleDownload()"
  118. :title="radio === '' ? '请先选择下面对应的单位模板' : ''"
  119. :disabled="radio === '' ? true : false"
  120. >下载导入模板</el-button
  121. >
  122. </el-col>
  123. <el-col :span="1.5">
  124. <el-button
  125. type="danger"
  126. plain
  127. @click="importFile({ type: '0', mark: '1' })"
  128. v-hasPermi="['gather:GATHER:upload']"
  129. >海关部分贸易导入</el-button
  130. >
  131. </el-col>
  132. <el-col :span="1.5">
  133. <el-button
  134. type="danger"
  135. plain
  136. @click="importFile({ type: '0', mark: '2' })"
  137. v-hasPermi="['gather:GATHER:upload']"
  138. >海关进出口总值导入</el-button
  139. >
  140. </el-col>
  141. <right-toolbar
  142. :showSearch.sync="showSearch"
  143. @queryTable="getList"
  144. ></right-toolbar>
  145. </el-row>
  146. <el-table
  147. :data="GATHERList"
  148. @selection-change="handleSelectionChange"
  149. @row-click="showRow"
  150. >
  151. <!-- @current-change="handleCurrentChange" -->
  152. <el-table-column label="选择" fixed="left" width="70" center>
  153. <template scope="scope">
  154. <el-radio
  155. class="radio"
  156. v-model="radio"
  157. :label="scope.$index"
  158. @change.native="getCurrentRow(scope.row)"
  159. >{{ "" }}</el-radio
  160. >
  161. </template>
  162. </el-table-column>
  163. <!-- <el-table-column type="selection" width="55" align="center" /> -->
  164. <el-table-column label="单位名称" align="center" prop="deptId_dictText">
  165. <template slot-scope="scope">
  166. {{ scope.row.deptId_dictText }}
  167. </template>
  168. </el-table-column>
  169. <el-table-column label="数据类型" align="center" prop="type">
  170. <template slot-scope="scope">
  171. <span v-if="scope.row.type == 0">量化指标数据</span>
  172. <span v-if="scope.row.type == 1">月报表数据</span>
  173. </template>
  174. </el-table-column>
  175. <el-table-column label="年份" align="center" prop="month">
  176. <template slot-scope="scope">
  177. {{ scope.row.year }}
  178. </template>
  179. </el-table-column>
  180. <el-table-column label="月份" align="center" prop="month">
  181. <template slot-scope="scope">
  182. {{ "01-" + scope.row.month }}
  183. </template>
  184. </el-table-column>
  185. <el-table-column label="采集状态" align="center" prop="collStatus">
  186. <template slot-scope="scope">
  187. <span v-if="scope.row.collStatus == 0">未采集</span>
  188. <span v-if="scope.row.collStatus == 1">已采集</span>
  189. </template>
  190. </el-table-column>
  191. <el-table-column
  192. label="采集人"
  193. align="center"
  194. prop="collName"
  195. width="110"
  196. >
  197. <template slot-scope="scope">
  198. <span>{{ scope.row.collName }}</span>
  199. </template>
  200. </el-table-column>
  201. <el-table-column
  202. label="采集时间"
  203. align="center"
  204. prop="collTime"
  205. width="100"
  206. >
  207. </el-table-column>
  208. <el-table-column label="上报状态" align="center" prop="reportStatus">
  209. <template slot-scope="scope">
  210. <span v-if="scope.row.reportStatus == 0">未上报</span>
  211. <span v-if="scope.row.reportStatus == 1">已上报</span>
  212. </template>
  213. </el-table-column>
  214. <el-table-column
  215. label="上报人"
  216. align="center"
  217. prop="reportName"
  218. width="110"
  219. />
  220. <el-table-column
  221. label="上报时间"
  222. align="center"
  223. prop="reportTime"
  224. width="100"
  225. />
  226. <el-table-column
  227. label="审核人"
  228. align="center"
  229. prop="approveName"
  230. width="110"
  231. />
  232. <el-table-column
  233. label="审核时间"
  234. align="center"
  235. prop="approveTime"
  236. width="100"
  237. />
  238. <el-table-column label="审核状态" align="center" prop="approveStatus">
  239. <template slot-scope="scope">
  240. <span v-if="scope.row.approveStatus == 0">未提交审核</span>
  241. <span v-if="scope.row.approveStatus == 1">审核中</span>
  242. <span v-if="scope.row.approveStatus == 2">审核通过</span>
  243. <span v-if="scope.row.approveStatus == 3">审核拒绝</span>
  244. </template>
  245. </el-table-column>
  246. <el-table-column
  247. label="操作"
  248. align="center"
  249. fixed="right"
  250. class-name="small-padding fixed-width"
  251. >
  252. <template slot-scope="scope">
  253. <!-- <el-button
  254. style="margin: 0 2px"
  255. size="mini"
  256. type="text"
  257. @click="handleDownload(scope.row)"
  258. >下载导入模板</el-button
  259. > -->
  260. <!-- todo不加 template 会造成浏览器渲染问题 导致无法弹出 el-popconfirm 组件-->
  261. <template
  262. v-if="
  263. scope.row.collStatus == 0 && checkPermi(['gather:GATHER:add'])
  264. "
  265. >
  266. <el-button
  267. style="margin: 0 2px"
  268. size="mini"
  269. type="text"
  270. @click="handleUpdate(scope.row)"
  271. >录入</el-button
  272. >
  273. </template>
  274. <!-- && checkPermi(['gather:GATHER:add'])) -->
  275. <template
  276. v-if="
  277. scope.row.collStatus == 1 &&
  278. (scope.row.audit == 0 || scope.row.audit == null) &&
  279. checkPermi(['gather:GATHER:add'])
  280. "
  281. >
  282. <el-popconfirm
  283. title="确定提交审核吗?"
  284. @confirm="handleAudit(scope.row)"
  285. >
  286. <el-button
  287. style="margin: 0 2px"
  288. size="mini"
  289. type="text"
  290. slot="reference"
  291. >审核</el-button
  292. >
  293. </el-popconfirm>
  294. </template>
  295. <!-- 已采集,未上报,未提交审核 或 审核拒绝-->
  296. <template
  297. v-if="
  298. scope.row.audit == 1 &&
  299. (scope.row.approveStatus == 0 || scope.row.approveStatus == null)
  300. "
  301. >
  302. <el-popconfirm
  303. title="确定提交吗?"
  304. @confirm="handleApprove(scope.row)"
  305. >
  306. <el-button
  307. style="margin: 0 2px"
  308. size="mini"
  309. type="text"
  310. slot="reference"
  311. >审核</el-button
  312. >
  313. </el-popconfirm>
  314. </template>
  315. <!-- 已采集,未上报,审核通过 -->
  316. <template
  317. v-if="
  318. scope.row.collStatus == 1 &&
  319. scope.row.reportStatus == 0 &&
  320. scope.row.approveStatus == 1 &&
  321. checkPermi(['gather:GATHER:report'])
  322. "
  323. >
  324. <el-popconfirm
  325. title="确定上报吗?"
  326. @confirm="handleReport(scope.row)"
  327. >
  328. <el-button
  329. style="margin: 0 2px"
  330. size="mini"
  331. slot="reference"
  332. type="text"
  333. >上报</el-button
  334. >
  335. </el-popconfirm>
  336. </template>
  337. <el-button
  338. style="margin: 0 2px"
  339. v-if="scope.row.collStatus == 1"
  340. size="mini"
  341. type="text"
  342. @click="handleDetail(scope.row, 0)"
  343. >查看</el-button
  344. >
  345. <!-- {{scope.row.collStatus}}--{{scope.row.approveStatus}} -->
  346. <el-button
  347. style="margin: 0 2px"
  348. v-if="
  349. scope.row.collStatus == 1 && // 已采集
  350. scope.row.approveStatus == 0 && // 未审核
  351. checkPermi(['gather:GATHER:edit']) // 编辑权限
  352. "
  353. size="mini"
  354. type="text"
  355. @click="handleDetail(scope.row, 1)"
  356. >修改</el-button
  357. >
  358. </template>
  359. </el-table-column>
  360. </el-table>
  361. <pagination
  362. v-show="total > 0"
  363. :total="total"
  364. :page.sync="queryParams.pageNum"
  365. :limit.sync="queryParams.pageSize"
  366. @pagination="getList"
  367. />
  368. <!-- 上传文件对话框 历史数据导入 -->
  369. <el-dialog
  370. center
  371. title="导入"
  372. :visible.sync="openUpload"
  373. width="50%"
  374. append-to-body
  375. >
  376. <el-form
  377. ref="uploadForm"
  378. :model="uploadForm"
  379. :rules="rules"
  380. label-width="120px"
  381. >
  382. <el-form-item label="数据类型" prop="type">
  383. <el-select
  384. v-model="uploadForm.type"
  385. placeholder="请选择数据类型"
  386. clearable
  387. filterable
  388. >
  389. <el-option
  390. v-for="dict in typeList"
  391. :key="dict.value + 'typeList'"
  392. :label="dict.label"
  393. :value="dict.value"
  394. />
  395. </el-select>
  396. </el-form-item>
  397. <el-form-item label="文件" prop="linkUrl" v-show="uploadForm.type">
  398. <el-upload
  399. class="upload-demo"
  400. ref="upload"
  401. action="#"
  402. :http-request="httprequest"
  403. :before-upload="uploadFile"
  404. :file-list="fileList"
  405. :auto-upload="false"
  406. :limit="1"
  407. >
  408. <el-button slot="trigger" size="small" type="primary"
  409. >选取文件</el-button
  410. >
  411. </el-upload>
  412. </el-form-item>
  413. <div class="tips-text">
  414. <span class="tit">提示</span>
  415. <p>1.请先下载对应单位名称模板;</p>
  416. <p>2.上传前,请先检查数据的完整性;</p>
  417. </div>
  418. </el-form>
  419. <div slot="footer" class="dialog-footer">
  420. <el-button type="primary" @click="submitUpload">导 入</el-button>
  421. <el-button @click="cancel">取 消</el-button>
  422. </div>
  423. </el-dialog>
  424. <!-- 录入数据采集对话框 -->
  425. <el-dialog
  426. center
  427. :title="title"
  428. :visible.sync="open"
  429. width="50%"
  430. append-to-body
  431. >
  432. <el-tabs
  433. v-if="this.form.type == 0"
  434. v-model="activeName"
  435. type="border-card"
  436. @tab-click="handleClick"
  437. >
  438. <el-tab-pane
  439. v-for="(item, index) in tabList"
  440. :key="index + 'tabs'"
  441. :label="item.normName"
  442. :name="item.normName"
  443. >
  444. <template v-for="(listItem, listIndex) in form.feeLists">
  445. <el-form
  446. v-if="listItem.normId == item.normId"
  447. :rules="validatorList(listItem.normfeeName)"
  448. :model="listItem"
  449. :ref="'form' + listItem.normfeeId"
  450. :key="listItem.normfeeId"
  451. > <!-- :key="index + listIndex + listItem.normId" -->
  452. <!-- :rules="rules" ref="form" -->
  453. <el-form-item
  454. :label="listItem.normfeeName + '(' + listItem.funit_dictText + ')'"
  455. prop="collCalue"
  456. >
  457. <!-- 这里科研失败!想动态绑定校验规则的 -->
  458. <!-- :prop="listItem.normfeeId" -->
  459. <!-- :rules="rules.listItem.normfeeId" -->
  460. <el-input
  461. v-model="listItem.collCalue"
  462. :placeholder="'请输入' + listItem.normfeeName"
  463. ></el-input>
  464. </el-form-item>
  465. </el-form>
  466. </template>
  467. <!-- 这里是第二种写法 -->
  468. <!-- <el-form :model="form" label-width="300px">
  469. <el-form-item
  470. v-for="(listItem, listIndex) in item.list"
  471. :key="listIndex + 'item.list'"
  472. :label="listItem.normfeeName"
  473. >
  474. <el-input
  475. v-model="listItem.collCalue"
  476. :placeholder="'请输入' + listItem.normfeeName"
  477. ></el-input>
  478. </el-form-item>
  479. </el-form> -->
  480. </el-tab-pane>
  481. </el-tabs>
  482. <template v-else-if="this.form.type == 1">
  483. <el-form
  484. v-for="(listItem, listIndex) in form.feeLists"
  485. :model="listItem"
  486. :ref="'form' + listItem.normfeeId"
  487. :rules="rules"
  488. :key="listItem.normfeeId"
  489. >
  490. <!-- :rules="rules" ref="form" -->
  491. <el-form-item
  492. :label="listItem.normfeeName + '(' + listItem.funit_dictText + ')'"
  493. prop="collCalue"
  494. >
  495. <!-- 这里科研失败!想动态绑定校验规则的 -->
  496. <!-- :prop="listItem.normfeeId" -->
  497. <!-- :rules="rules.listItem.normfeeId" -->
  498. <el-input
  499. v-model="listItem.collCalue"
  500. :placeholder="'请输入' + listItem.normfeeName"
  501. ></el-input>
  502. </el-form-item>
  503. </el-form>
  504. </template>
  505. <div slot="footer" class="dialog-footer">
  506. <el-button type="primary" @click="submitForm('add')">确 定</el-button>
  507. <el-button @click="cancel">取 消</el-button>
  508. <!-- <el-button @click="cancel">取 消</el-button> -->
  509. </div>
  510. </el-dialog>
  511. <!-- 查看或修改 -->
  512. <el-dialog
  513. center
  514. :title="title"
  515. :visible.sync="openDetail"
  516. width="50%"
  517. append-to-body
  518. >
  519. <el-tabs
  520. v-if="this.form.type == 0"
  521. v-model="activeName"
  522. type="border-card"
  523. @tab-click="handleClick"
  524. >
  525. <el-tab-pane
  526. v-for="(item, index) in tabList"
  527. :key="index + 'tabs'"
  528. :label="item.normName"
  529. :name="item.normName"
  530. >
  531. <template v-for="(listItem, listIndex) in form.feeLists">
  532. <el-form
  533. v-if="listItem.normId == item.normId"
  534. :model="listItem"
  535. :ref="'form' + listItem.normfeeId"
  536. :rules="rules"
  537. :key="listItem.normfeeId"
  538. >
  539. <!-- :rules="rules" ref="form" -->
  540. <el-form-item
  541. prop="collCalue"
  542. :label="listItem.normfeeName + '(' + listItem.funit_dictText + ')'"
  543. >
  544. <!-- 这里科研失败!想动态绑定校验规则的 -->
  545. <!-- :prop="listItem.normfeeId" -->
  546. <!-- :rules="rules.listItem.normfeeId" -->
  547. <el-input
  548. :disabled="!edit"
  549. v-model="listItem.collCalue"
  550. :placeholder="'请输入' + listItem.normfeeName"
  551. ></el-input>
  552. </el-form-item>
  553. </el-form>
  554. </template>
  555. <!-- 这里是第二种写法 -->
  556. <!-- <el-form :model="form" label-width="150px">
  557. <el-form-item
  558. v-for="(listItem, listIndex) in item.list"
  559. :key="listIndex + 'item.list'"
  560. :label="listItem.normfeeName"
  561. >
  562. <el-input
  563. v-model="listItem.collCalue"
  564. :placeholder="'请输入' + listItem.normfeeName"
  565. ></el-input>
  566. </el-form-item>
  567. </el-form> -->
  568. </el-tab-pane>
  569. </el-tabs>
  570. <template v-else-if="this.form.type == 1">
  571. <el-form
  572. v-for="(listItem, listIndex) in form.feeLists"
  573. :model="listItem"
  574. :ref="'form' + listItem.normfeeId"
  575. :rules="rules"
  576. :key="listItem.normfeeId"
  577. >
  578. <!-- :rules="rules" ref="form" -->
  579. <el-form-item
  580. :label="listItem.normfeeName + '(' + listItem.funit_dictText + ')'"
  581. prop="collCalue"
  582. >
  583. <!-- 这里科研失败!想动态绑定校验规则的 -->
  584. <!-- :prop="listItem.normfeeId" -->
  585. <!-- :rules="rules.listItem.normfeeId" -->
  586. <el-input
  587. v-model="listItem.collCalue"
  588. :placeholder="'请输入' + listItem.normfeeName"
  589. ></el-input>
  590. </el-form-item>
  591. </el-form>
  592. </template>
  593. <!--
  594. <el-form :model="form" v-else-if="this.form.type == 1">
  595. <el-form-item
  596. v-for="(listItem, listIndex) in form.feeLists"
  597. :key="listItem.normfeeId"
  598. :label="listItem.normfeeName + '(' + listItem.funit_dictText + ')'"
  599. >
  600. <el-input
  601. :disabled="!edit"
  602. v-model="listItem.collCalue"
  603. :placeholder="'请输入' + listItem.normfeeName"
  604. ></el-input>
  605. </el-form-item>
  606. </el-form>
  607. -->
  608. <div slot="footer" class="dialog-footer">
  609. <el-button type="primary" @click="submitForm('edit')" v-if="edit"
  610. >确 定</el-button
  611. >
  612. <el-button type="primary" @click="cancel">返 回</el-button>
  613. </div>
  614. </el-dialog>
  615. </div>
  616. </template>
  617. <script>
  618. import {
  619. listGATHER,
  620. getGATHER,
  621. delGATHER,
  622. addGATHER,
  623. updateGATHER,
  624. getInfoByColl,
  625. approve,
  626. report,
  627. setAudit,
  628. download,
  629. upload,
  630. uploadnew,
  631. } from "@/api/portal/GATHER/GATHER.js";
  632. import importFile from "./importFile.vue";
  633. import { saveAs } from "file-saver";
  634. import { getToken } from "@/utils/auth";
  635. import axios from "axios";
  636. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  637. export default {
  638. name: "GATHER",
  639. data() {
  640. return {
  641. edit: Boolean, //false 查看 true修改
  642. tabList: [],
  643. feeLists: [],
  644. activeName: "",
  645. //数据类型(0=量化指标数据,1=月报表数据)
  646. typeList: [
  647. { label: "量化指标数据", value: "0" },
  648. { label: "月报表数据", value: "1" },
  649. ],
  650. //采集状态(0=未采集,1=已采集)
  651. collStatus: [
  652. { label: "未采集", value: "0" },
  653. { label: "已采集", value: "1" },
  654. ],
  655. //上报状态(0=未上报,=1已上报)
  656. reportStatus: [
  657. { label: "未上报", value: "0" },
  658. { label: "已上报", value: "1" },
  659. ],
  660. //审核状态(0=未审核,1审核中,2=审核通过,3=审核拒绝)
  661. approveStatus: [
  662. { label: "未审核", value: "0" },
  663. { label: "审核中", value: "1" },
  664. { label: "审核通过", value: "2" },
  665. { label: "审核拒绝", value: "3" },
  666. ],
  667. // 根路径
  668. baseURL: process.env.VUE_APP_BASE_API,
  669. // 遮罩层
  670. loading: true,
  671. // 选中数组
  672. ids: [],
  673. // 非单个禁用
  674. single: true,
  675. // 非多个禁用
  676. multiple: true,
  677. // 显示搜索条件
  678. showSearch: true,
  679. // 总条数
  680. total: 0,
  681. // 数据采集表格数据
  682. GATHERList: [],
  683. // 弹出层标题
  684. title: "",
  685. // 是否显示弹出层
  686. open: false,
  687. openDetail: false,
  688. // 查询参数
  689. queryParams: {
  690. pageNum: 1,
  691. pageSize: 10,
  692. id: null,
  693. createTime: null,
  694. createBy: null,
  695. updateTime: null,
  696. updateBy: null,
  697. delFlag: null,
  698. deptId: null,
  699. type: null,
  700. year: null,
  701. month: null,
  702. collStatus: null,
  703. reportStatus: null,
  704. approveStatus: null,
  705. },
  706. // 表单参数
  707. form: {},
  708. // 表单校验
  709. rules: {
  710. // id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
  711. collCalue: [
  712. { required: true, message: "不能为空", trigger: "blur" },
  713. { trigger: "blur", validator: this.validatorFloatNum },
  714. ],
  715. },
  716. rulesOne: {},
  717. //设置文件名字
  718. setFileName: "",
  719. radio: "",
  720. rowData: {},
  721. fileList: [],
  722. uploadForm: {},
  723. openUpload: false,
  724. uploadFileType: "old", // old、new
  725. };
  726. },
  727. created() {
  728. this.getList();
  729. },
  730. methods: {
  731. checkPermi,
  732. checkRole,
  733. // 下面这个validatorNum写重复了吗?
  734. // validatorNum(rule, value, callback) {},
  735. validatorFloatNum(rule, value, callback) {
  736. let reg = /^[+-]?(0|([1-9]\d*))(\.\d+)?$/g;
  737. if (!reg.test(value)) {
  738. callback(new Error("请输入数字和正确格式的数字"));
  739. } else if (typeof value == 'string' && value.split(".").length > 2) {
  740. callback(new Error("请输入正确格式的数字")); //防止输入多个小数点
  741. }
  742. // else if (value.indexOf('.') != -1 && value.split('.')[1].length > 2) {
  743. // callback(new Error('最多只能输入两位小数')); //小数点后两位
  744. // }
  745. else {
  746. callback();
  747. }
  748. },
  749. validatorNum(rule, value, callback) {
  750. let reg = /^[+]?(0|([1-9]\d*))(\.\d+)?$/g;
  751. if (!reg.test(value)) {
  752. callback(new Error("请输入正数和正确格式的数字"));
  753. } else if (typeof value == 'string' && value.split(".").length > 2) {
  754. callback(new Error("请输入正确格式的数字")); //防止输入多个小数点
  755. }
  756. // else if (value.indexOf('.') != -1 && value.split('.')[1].length > 2) {
  757. // callback(new Error('最多只能输入两位小数')); //小数点后两位
  758. // }
  759. else {
  760. callback();
  761. }
  762. },
  763. validatorList(name) {
  764. if (typeof name != "string") return;
  765. if (
  766. name.includes("增幅") ||
  767. name.includes("验收率") ||
  768. name.includes("开发率") ||
  769. name.includes("比重")
  770. ) {
  771. return {
  772. collCalue: [
  773. { required: true, message: "不能为空", trigger: "blur" },
  774. { trigger: "blur", validator: this.validatorFloatNum },
  775. ],
  776. };
  777. }
  778. // if (name == '期末单位面积企业从业人员' || name == '活跃企业数' || name == '期末企业从业人员') {
  779. // return {
  780. // collCalue: [
  781. // { required: true, message: '不能为空', trigger: 'blur' },
  782. // { pattern: /^[1-9]\d*$/, message: '请输入正整数', trigger: 'blur' }
  783. // ]
  784. // };
  785. // } else {
  786. // return {
  787. // collCalue: [
  788. // { required: true, message: '不能为空', trigger: 'blur' },
  789. // { trigger: 'blur', validator: this.validatorNum }
  790. // ]
  791. // };
  792. // }
  793. switch (name) {
  794. case "期末单位面积企业从业人员":
  795. case "活跃企业数":
  796. case "期末企业从业人员":
  797. return {
  798. collCalue: [
  799. { required: true, message: "不能为空", trigger: "blur" },
  800. {
  801. pattern: /^[1-9]\d*$/,
  802. message: "请输入正整数",
  803. trigger: "blur",
  804. },
  805. ],
  806. };
  807. break;
  808. default:
  809. return {
  810. collCalue: [
  811. { required: true, message: "不能为空", trigger: "blur" },
  812. { trigger: "blur", validator: this.validatorNum },
  813. ],
  814. };
  815. break;
  816. }
  817. },
  818. importFile(param) {
  819. let title = param.mark == "1" ? "海关一般数据导入" : "海关特殊数据导入";
  820. this.iframe({
  821. obj: importFile,
  822. param: param,
  823. title: title,
  824. width: "500px",
  825. height: "50%",
  826. });
  827. },
  828. submitUpload() {
  829. this.$refs.upload.submit();
  830. },
  831. httprequest() {},
  832. getCurrentRow(val) {
  833. console.log(val);
  834. },
  835. handleCurrentChange(val, index) {
  836. this.currentRow = val;
  837. this.$emit("data", val.pkg);
  838. },
  839. handleChange(file, fileList) {
  840. this.fileList = fileList.slice(-3);
  841. },
  842. showRow(row) {
  843. //赋值给radio
  844. this.radio = this.GATHERList.indexOf(row);
  845. this.rowData = row;
  846. },
  847. /**
  848. * 打开上传弹窗
  849. * @params string type old/new
  850. */
  851. onOpenDialog(type) {
  852. this.uploadFileType = type;
  853. this.openUpload = true;
  854. },
  855. //导入
  856. uploadFile(file) {
  857. let formData = new FormData();
  858. formData.append("file", file);
  859. formData.append("type", this.uploadForm.type);
  860. if (this.uploadFileType === "old") {
  861. upload(formData).then((res) => {
  862. this.$modal.msgSuccess("上传采集附件成功!");
  863. this.getList();
  864. this.cancel();
  865. this.openUpload = false;
  866. });
  867. } else {
  868. uploadnew(formData).then((res) => {
  869. this.$modal.msgSuccess("上传采集附件成功!");
  870. this.getList();
  871. this.cancel();
  872. this.openUpload = false;
  873. });
  874. }
  875. },
  876. //下载模板
  877. handleDownload() {
  878. let row = this.rowData;
  879. axios({
  880. url: process.env.VUE_APP_BASE_API + "/gather/download/" + row.id,
  881. method: "get",
  882. responseType: "blob",
  883. headers: {
  884. Authorization: "Bearer " + getToken(),
  885. },
  886. }).then((res) => {
  887. const temp = res.headers["content-disposition"]
  888. .split(";")[1]
  889. .split("filename=")[1];
  890. const fileName = decodeURIComponent(temp);
  891. const blob = new Blob([res.data]);
  892. saveAs(blob, fileName);
  893. this.getList();
  894. });
  895. },
  896. //上报
  897. handleReport(data) {
  898. report(data).then((res) => {
  899. this.$modal.msgSuccess("上报成功");
  900. this.getList();
  901. });
  902. },
  903. //提交审核
  904. handleApprove(data) {
  905. let datas = {
  906. gatherId: data.id,
  907. type: "1"
  908. }
  909. approve(datas).then((res) => {
  910. if (res.code == 200) {
  911. this.$modal.msgSuccess("提交审核成功");
  912. this.getList();
  913. }
  914. });
  915. },
  916. handleClick(tab, event) {},
  917. /** 查询数据采集列表 */
  918. getList() {
  919. this.loading = true;
  920. listGATHER(this.queryParams).then((response) => {
  921. this.GATHERList = response.rows;
  922. this.total = response.total;
  923. this.loading = false;
  924. });
  925. },
  926. // 取消按钮
  927. cancel() {
  928. this.open = false;
  929. this.openDetail = false;
  930. this.openUpload = false;
  931. this.reset();
  932. },
  933. // 表单重置
  934. reset() {
  935. this.form = {
  936. id: null,
  937. delFlag: null,
  938. deptId: null,
  939. type: null,
  940. month: null,
  941. collStatus: "0",
  942. reportStatus: "0",
  943. approveStatus: "0",
  944. };
  945. this.uploadForm = {
  946. type: "",
  947. };
  948. this.fileList = [];
  949. this.resetForm("form");
  950. },
  951. /** 搜索按钮操作 */
  952. handleQuery() {
  953. this.queryParams.pageNum = 1;
  954. this.getList();
  955. },
  956. /** 重置按钮操作 */
  957. resetQuery() {
  958. this.resetForm("queryForm");
  959. this.handleQuery();
  960. },
  961. // 多选框选中数据
  962. handleSelectionChange(selection) {
  963. this.ids = selection.map((item) => item.id);
  964. this.single = selection.length !== 1;
  965. this.multiple = !selection.length;
  966. },
  967. /** 新增按钮操作 */
  968. handleAdd() {
  969. this.reset();
  970. this.open = true;
  971. this.openDetail = true;
  972. this.title = "添加数据采集";
  973. },
  974. /** 录入按钮操作 */
  975. handleUpdate(row) {
  976. // this.reset();
  977. this.tabList = [];
  978. this.form = [];
  979. const id = row.id || this.ids;
  980. getInfoByColl(id).then((response) => {
  981. //深拷贝,而不是拷贝地址
  982. this.form = JSON.parse(JSON.stringify(response.data));
  983. this.open = true;
  984. this.title = "数据录入";
  985. //深拷贝,而不是拷贝地址
  986. this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
  987. let dataList = response.data.feeLists;
  988. //去重获取tab
  989. //遍历如果遇到相同的id则删掉
  990. for (var i = 0; i < this.tabList.length - 1; i++) {
  991. //设置激活的tab
  992. if (i == 0) {
  993. this.activeName = this.tabList[0].normName;
  994. }
  995. for (var j = i + 1; j < this.tabList.length; j++) {
  996. if (this.tabList[i].normId == this.tabList[j].normId) {
  997. this.tabList.splice(j, 1);
  998. //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
  999. j--;
  1000. }
  1001. }
  1002. }
  1003. // 这里科研失败!想动态绑定校验规则的
  1004. //遍历设置表单校验 我好困
  1005. // for (const i in this.form.feeLists) {
  1006. // this.$set(this.rules,this.form.feeLists[i].normfeeId,[
  1007. // { required: true, message: this.form.feeLists[i].normfeeName+"不能为空", trigger: "blur" }
  1008. // ])
  1009. // }
  1010. // console.log(this.rules);
  1011. //这里是第二种写法
  1012. //获取分类ID相同的子集
  1013. // for (let index = 0; index < this.tabList.length; index++) {
  1014. // this.$set(this.tabList[index],'list',[])
  1015. // for (let i = 0; i < dataList.length; i++) {
  1016. // if (dataList[i].normId == this.tabList[index].normId) {
  1017. // this.tabList[index].list.push(dataList[i]);
  1018. // }
  1019. // }
  1020. // }
  1021. });
  1022. },
  1023. handleAudit(row) {
  1024. let data = {
  1025. type: '1',
  1026. gatherId: row.id,
  1027. };
  1028. setAudit(data).then((res) => {
  1029. if (res.code) {
  1030. this.$message.success("审核成功");
  1031. this.getList();
  1032. }
  1033. });
  1034. },
  1035. /** 查看按钮操作 */
  1036. handleDetail(row, type) {
  1037. //false 查看 true修改
  1038. if (type == 0) {
  1039. this.edit = false;
  1040. } else if (type == 1) {
  1041. this.edit = true;
  1042. }
  1043. // this.reset();
  1044. this.tabList = [];
  1045. this.form = [];
  1046. const id = row.id || this.ids;
  1047. getGATHER(id).then((response) => {
  1048. //深拷贝,而不是拷贝地址
  1049. this.form = JSON.parse(JSON.stringify(response.data));
  1050. this.openDetail = true;
  1051. this.title = "数据查看";
  1052. //深拷贝,而不是拷贝地址
  1053. this.tabList = JSON.parse(JSON.stringify(response.data.feeLists));
  1054. let dataList = response.data.feeLists;
  1055. //去重获取tab
  1056. //遍历如果遇到相同的id则删掉
  1057. for (var i = 0; i < this.tabList.length - 1; i++) {
  1058. //设置激活的tab
  1059. if (i == 0) {
  1060. this.activeName = this.tabList[0].normName;
  1061. }
  1062. for (var j = i + 1; j < this.tabList.length; j++) {
  1063. if (this.tabList[i].normId == this.tabList[j].normId) {
  1064. this.tabList.splice(j, 1);
  1065. //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
  1066. j--;
  1067. }
  1068. }
  1069. }
  1070. // 这里科研失败!想动态绑定校验规则的
  1071. //遍历设置表单校验 我好困
  1072. // for (const i in this.form.feeLists) {
  1073. // this.$set(this.rules,this.form.feeLists[i].normfeeId,[
  1074. // { required: true, message: this.form.feeLists[i].normfeeName+"不能为空", trigger: "blur" }
  1075. // ])
  1076. // }
  1077. // console.log(this.rules);
  1078. //这里是第二种写法
  1079. //获取分类ID相同的子集
  1080. // for (let index = 0; index < this.tabList.length; index++) {
  1081. // this.$set(this.tabList[index],'list',[])
  1082. // for (let i = 0; i < dataList.length; i++) {
  1083. // if (dataList[i].normId == this.tabList[index].normId) {
  1084. // this.tabList[index].list.push(dataList[i]);
  1085. // }
  1086. // }
  1087. // }
  1088. });
  1089. },
  1090. /** 提交按钮 */
  1091. submitForm(type) {
  1092. // for (const i in this.form.feeLists) {
  1093. // if (
  1094. // this.form.feeLists[i].collCalue == "" ||
  1095. // this.form.feeLists[i].collCalue == null
  1096. // ) {
  1097. // return this.$message({
  1098. // message:
  1099. // this.form.feeLists[i].normName +
  1100. // " - " +
  1101. // this.form.feeLists[i].normfeeName +
  1102. // " 未填写!",
  1103. // type: "warning",
  1104. // });
  1105. // }
  1106. // }
  1107. // 验证表单
  1108. let p = [];
  1109. p = this.form.feeLists.map((item, index) => {
  1110. return new Promise((resolve, reject) => {
  1111. this.$refs["form" + item.normfeeId][0].validate((valid) => {
  1112. // this.$refs["form" + index].validate((valid) => {
  1113. if (valid) {
  1114. resolve(); //完成态
  1115. } else {
  1116. reject(); //已失败
  1117. }
  1118. });
  1119. });
  1120. });
  1121. Promise.all(p)
  1122. .then(() => {
  1123. if (type == "add") {
  1124. addGATHER(this.form).then((response) => {
  1125. this.$modal.msgSuccess("录入成功");
  1126. this.open = false;
  1127. this.getList();
  1128. });
  1129. } else if (type == "edit") {
  1130. updateGATHER(this.form).then((response) => {
  1131. this.$modal.msgSuccess("修改成功");
  1132. this.openDetail = false;
  1133. this.getList();
  1134. });
  1135. }
  1136. })
  1137. .catch((err) => {
  1138. console.log(err);
  1139. debugger;
  1140. this.$message.error("请检查是否有必填项未输入!");
  1141. });
  1142. },
  1143. /** 删除按钮操作 */
  1144. handleDelete(row) {
  1145. const ids = row.id || this.ids;
  1146. this.$modal
  1147. .confirm('是否确认删除数据采集编号为"' + ids + '"的数据项?')
  1148. .then(function () {
  1149. return delGATHER(ids);
  1150. })
  1151. .then(() => {
  1152. this.getList();
  1153. this.$modal.msgSuccess("删除成功");
  1154. })
  1155. .catch(() => {});
  1156. },
  1157. /** 导出按钮操作 */
  1158. handleExport() {
  1159. this.download(
  1160. "business/GATHER/export",
  1161. {
  1162. ...this.queryParams,
  1163. },
  1164. `GATHER_${new Date().getTime()}.xlsx`
  1165. );
  1166. },
  1167. },
  1168. };
  1169. </script>