index.vue 42 KB

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