index.vue 41 KB

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