index.vue 40 KB

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