index.vue 38 KB

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