quotaBonded.vue 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049
  1. <template>
  2. <div class="app-container">
  3. <el-form
  4. :model="queryParams"
  5. ref="queryForm"
  6. :inline="true"
  7. v-show="showSearch"
  8. label-width="86px"
  9. >
  10. <!-- <el-form-item label="指标名称" prop="quotaName">
  11. <el-input v-model="queryParams.quotaName"></el-input>
  12. </el-form-item> -->
  13. <el-form-item label="保税区名称" prop="bondedName">
  14. <el-select
  15. v-model="queryParams.bondedName"
  16. placeholder="请选择保税区"
  17. clearable
  18. filterable
  19. @change="selectBondedChange"
  20. style="width: 100%"
  21. >
  22. <el-option
  23. v-for="item in deptList"
  24. :key="item.deptId"
  25. :label="item.deptName"
  26. :value="item.deptName"
  27. >
  28. </el-option>
  29. </el-select>
  30. </el-form-item>
  31. <el-form-item label="年份" prop="year">
  32. <el-date-picker
  33. v-model="queryParams.year"
  34. type="year"
  35. placeholder="请选择年份"
  36. size="mini"
  37. class="year-picker"
  38. format="yyyy 年"
  39. value-format="yyyy"
  40. >
  41. </el-date-picker>
  42. </el-form-item>
  43. <el-form-item>
  44. <el-button type="primary" icon="el-icon-search" @click="handleQuery"
  45. >搜索</el-button
  46. >
  47. <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
  48. </el-form-item>
  49. </el-form>
  50. <el-row :gutter="10" class="mb8">
  51. <el-col :span="1.5">
  52. <el-button
  53. type="primary"
  54. icon="el-icon-plus"
  55. @click="handleAdd"
  56. v-if="checkPermi(['business:QUOTABONDED:add'])"
  57. >新增</el-button
  58. >
  59. </el-col>
  60. <el-col :span="1.5">
  61. <el-button
  62. type="success"
  63. icon="el-icon-edit"
  64. :disabled="single"
  65. @click="handleUpdate"
  66. v-if="checkPermi(['business:QUOTABONDED:edit'])"
  67. >修改</el-button
  68. >
  69. </el-col>
  70. <el-col :span="1.5">
  71. <el-button
  72. type="danger"
  73. icon="el-icon-delete"
  74. :disabled="multiple"
  75. @click="handleDelete"
  76. v-if="checkPermi(['business:QUOTABONDED:remove'])"
  77. >删除</el-button
  78. >
  79. </el-col>
  80. <right-toolbar
  81. :showSearch.sync="showSearch"
  82. @queryTable="getList"
  83. ></right-toolbar>
  84. </el-row>
  85. <el-table :data="QUOTABONDEDList" @selection-change="handleSelectionChange">
  86. <el-table-column type="selection" width="55" align="center" />
  87. <el-table-column
  88. label="年份"
  89. align="center"
  90. prop="year"
  91. ></el-table-column>
  92. <el-table-column
  93. label="保税区名称"
  94. align="center"
  95. prop="bondedName"
  96. ></el-table-column>
  97. <el-table-column label="审核状态" align="center" prop="approvalStatus">
  98. <template slot-scope="scope">
  99. <span>{{
  100. scope.row.approvalStatus == 0 || scope.row.approvalStatus == null
  101. ? "未审核"
  102. : scope.row.approvalStatus == 1
  103. ? "审核中"
  104. : scope.row.approvalStatus == 2
  105. ? "审核通过"
  106. : "审核拒绝"
  107. }}</span>
  108. </template>
  109. </el-table-column>
  110. <el-table-column
  111. label="审核时间"
  112. align="center"
  113. prop="approvalTime"
  114. ></el-table-column>
  115. <el-table-column
  116. label="审核人"
  117. align="center"
  118. prop="approvalName"
  119. ></el-table-column>
  120. <el-table-column label="上报状态" align="center" prop="reportStatus">
  121. <template slot-scope="scope">
  122. <span
  123. v-if="scope.row.reportStatus == 0 || scope.row.reportStatus == null"
  124. >未上报</span
  125. >
  126. <span v-if="scope.row.reportStatus == 1">已上报</span>
  127. </template>
  128. </el-table-column>
  129. <el-table-column
  130. label="上报人"
  131. align="center"
  132. prop="reportName"
  133. ></el-table-column>
  134. <el-table-column
  135. label="上报时间"
  136. align="center"
  137. prop="reportTime"
  138. ></el-table-column>
  139. <el-table-column label="操作" align="center" fixed="right" width="200">
  140. <template slot-scope="scope">
  141. <el-button
  142. v-if="
  143. (scope.row.auditStatus == 0 || scope.row.auditStatus == null) &&
  144. (scope.row.approvalStatus == 0 ||
  145. scope.row.approvalStatus == null ||
  146. scope.row.approvalStatus == 3) &&
  147. checkPermi(['gather:QUOTABONDED:audit'])
  148. "
  149. icon="el-icon-top"
  150. size="mini"
  151. type="text"
  152. @click="handleApprove(scope.row)"
  153. >提交审核</el-button
  154. >
  155. <!-- <el-button
  156. v-if="
  157. scope.row.auditStatus == 1 &&
  158. (scope.row.approvalStatus == 0 ||
  159. scope.row.approvalStatus == null) &&
  160. checkPermi(['business:QUOTABONDED:edit'])
  161. "
  162. size="mini"
  163. type="text"
  164. @click="handleAdminApprove(scope.row)"
  165. >审核</el-button
  166. > -->
  167. <el-button
  168. v-if="
  169. scope.row.approvalStatus == 2 &&
  170. (scope.row.reportStatus == 0 || scope.row.reportStatus == null) &&
  171. checkPermi(['gather:QUOTABONDED:report'])
  172. "
  173. size="mini"
  174. type="text"
  175. icon="el-icon-check"
  176. @click="handleReport(scope.row)"
  177. >上报</el-button
  178. >
  179. <el-button
  180. v-if="
  181. (scope.row.auditStatus == 0 || scope.row.auditStatus == null) &&
  182. (scope.row.approvalStatus == 0 ||
  183. scope.row.approvalStatus == null ||
  184. scope.row.approvalStatus == 3) &&
  185. checkPermi(['business:QUOTABONDED:edit'])
  186. "
  187. size="mini"
  188. type="text"
  189. icon="el-icon-edit"
  190. @click="handleUpdate(scope.row)"
  191. >修改</el-button
  192. >
  193. <el-button
  194. v-if="
  195. (scope.row.auditStatus == 0 || scope.row.auditStatus == null) &&
  196. (scope.row.approvalStatus == 0 ||
  197. scope.row.approvalStatus == null ||
  198. scope.row.approvalStatus == 3) &&
  199. checkPermi(['business:QUOTABONDED:remove'])
  200. "
  201. size="mini"
  202. type="text"
  203. icon="el-icon-delete"
  204. @click="handleDelete(scope.row)"
  205. >删除</el-button
  206. >
  207. <el-button
  208. v-if="checkPermi(['business:QUOTABONDED:query'])"
  209. size="mini"
  210. type="text"
  211. icon="el-icon-search"
  212. @click="handleSelect(scope.row)"
  213. >查看</el-button
  214. >
  215. </template>
  216. </el-table-column>
  217. </el-table>
  218. <pagination
  219. v-if="checkPermi(['business:QUOTABONDED:list'])"
  220. v-show="total > 0"
  221. :total="total"
  222. :page.sync="queryParams.pageNum"
  223. :limit.sync="queryParams.pageSize"
  224. @pagination="getList"
  225. />
  226. <!-- 添加或修改辅助指标-综保区对话框 -->
  227. <el-dialog
  228. :title="title"
  229. :visible.sync="open"
  230. :close-on-click-modal="false"
  231. width="900px"
  232. append-to-body
  233. >
  234. <!-- v-if="this.form.type == 0" -->
  235. <el-tabs v-model="activeName" type="border-card">
  236. <!-- @tab-click="handleClick" -->
  237. <el-tab-pane label="基本信息" name="基本信息">
  238. <el-form ref="forms" :model="form" :rules="rules">
  239. <el-form-item label-width="100px" label="年份" prop="year">
  240. <el-date-picker
  241. :disabled="isAppoval"
  242. v-model="form.year"
  243. type="year"
  244. placeholder="请选择年份"
  245. size="mini"
  246. class="year-picker"
  247. format="yyyy 年"
  248. value-format="yyyy"
  249. style="width: 60%"
  250. >
  251. </el-date-picker>
  252. </el-form-item>
  253. <el-form-item label-width="100px" label="保税区" prop="bondedName">
  254. <el-select
  255. :disabled="isAppoval"
  256. v-model="form.bondedName"
  257. placeholder="请选择保税区"
  258. clearable
  259. filterable
  260. @change="selectBondedChange"
  261. style="width: 60%"
  262. >
  263. <el-option
  264. v-for="item in deptList"
  265. :key="item.deptId"
  266. :label="item.deptName"
  267. :value="item.deptName"
  268. >
  269. </el-option>
  270. </el-select>
  271. </el-form-item>
  272. </el-form>
  273. </el-tab-pane>
  274. <el-tab-pane
  275. label="指标项"
  276. name="指标项"
  277. v-if="QUOTAFEEList.length != 0"
  278. >
  279. <el-form ref="form" :model="form" :rules="rules">
  280. <!-- v-if="dict.remark == item.normId" -->
  281. <el-card
  282. class="box-card"
  283. v-for="(dict, index) in QUOTAFEEList"
  284. :key="dict.id"
  285. :value="dict"
  286. style="margin-bottom: 24px; font-weight: bold"
  287. >
  288. <div slot="header" style="margin-left: 30px; font-size: 15px">
  289. <el-row>
  290. <el-col :span="12">
  291. <el-form-item
  292. label-width="90px"
  293. prop="score"
  294. label="指标:"
  295. >
  296. <span>{{ dict.quotaName }}</span>
  297. </el-form-item>
  298. </el-col>
  299. <el-col :span="12">
  300. <el-form-item
  301. label-width="90px"
  302. prop="score"
  303. label="分数:"
  304. >
  305. <el-input
  306. :disabled="isAppoval"
  307. v-model="dict.score"
  308. ></el-input>
  309. </el-form-item>
  310. </el-col>
  311. </el-row>
  312. </div>
  313. <!-- 目前详情还没有返回,先在新增显示-->
  314. <div
  315. slot="header"
  316. style="margin-left: 30px; font-size: 15px"
  317. v-show="title == '辅助指标录入新增'"
  318. >
  319. <el-form-item
  320. label-width="90px"
  321. prop="score"
  322. label="指标内容:"
  323. >
  324. <span>{{ dict.content }}</span>
  325. </el-form-item>
  326. </div>
  327. <el-form-item
  328. v-if="dict.confirmWay == '附件'"
  329. label-width="70px"
  330. prop="linkUrls"
  331. label="上传附件"
  332. >
  333. <el-upload
  334. :on-exceed="exceedHandle"
  335. :limit="1"
  336. :disabled="isAppoval"
  337. class="upload-demo"
  338. ref="upload"
  339. :headers="upload.headers"
  340. :action="upload.url"
  341. :on-success="handleFileSuccess.bind(null, index)"
  342. :auto-upload="true"
  343. :file-list="dict.fileList"
  344. :on-remove="handleRemove"
  345. :on-change="handleChange"
  346. >
  347. <el-button
  348. :disabled="isAppoval"
  349. slot="trigger"
  350. size="small"
  351. type="primary"
  352. >选取文件</el-button
  353. >
  354. </el-upload>
  355. </el-form-item>
  356. <el-form-item
  357. v-if="dict.confirmWay == '文字说明'"
  358. label-width="70px"
  359. prop="remark"
  360. label="说明"
  361. >
  362. <el-input
  363. type="textarea"
  364. :disabled="isAppoval"
  365. v-model="dict.remark"
  366. rows="3"
  367. ></el-input>
  368. </el-form-item>
  369. <el-form-item
  370. v-if="dict.confirmWay == '数值'"
  371. label-width="70px"
  372. prop="numValue"
  373. label="数值"
  374. >
  375. <el-input
  376. type="number"
  377. :disabled="isAppoval"
  378. v-model="dict.numValue"
  379. ></el-input>
  380. </el-form-item>
  381. </el-card>
  382. <!-- <el-form-item label-width="100px" label="驳回理由">
  383. <el-input type="textarea" width="100%" v-model="form.test"></el-input>
  384. </el-form-item> -->
  385. </el-form>
  386. </el-tab-pane>
  387. <el-tab-pane label="审核记录" name="审核记录" v-if="form.taskVoList">
  388. <div
  389. style="
  390. display: flex;
  391. align-items: center;
  392. justify-content: space-between;
  393. "
  394. >
  395. <p
  396. style="
  397. padding-right: 12px;
  398. margin: 0px;
  399. font-weight: 600;
  400. font-size: 14px;
  401. color: #606266;
  402. width: 100px;
  403. text-align: right;
  404. "
  405. >
  406. 审核记录
  407. </p>
  408. <p
  409. style="
  410. color: #8cc8ff;
  411. border: 1px solid #3794eb;
  412. padding: 4px;
  413. border-radius: 4px;
  414. "
  415. >
  416. {{
  417. form.approvalStatus == 0 || form.approvalStatus == null
  418. ? "未审核"
  419. : form.approvalStatus == 1
  420. ? "审核中"
  421. : form.approvalStatus == 2
  422. ? "审核通过"
  423. : "审核拒绝"
  424. }}
  425. </p>
  426. </div>
  427. <el-timeline>
  428. <el-timeline-item
  429. v-for="(item, index) in form.taskVoList"
  430. :timestamp="item.createTime"
  431. placement="top"
  432. :key="index + 'taskHisAction'"
  433. >
  434. <el-card>
  435. <p>{{ item.execName }}{{ item.createTime }}</p>
  436. <p v-if="item.comments != null">{{ item.comments }}</p>
  437. </el-card>
  438. </el-timeline-item>
  439. </el-timeline>
  440. </el-tab-pane>
  441. <!-- <el-tab-pane v-for="it in tabList" :label="it.normName" :name="it.normName">
  442. <el-form v-model="QUOTAFEEList" v-for="(items,index) in QUOTAFEEList" v-if="it.normId == items.normId" >
  443. <el-form-item label="指标:">
  444. <span>{{ items.content }}</span>
  445. </el-form-item>
  446. <el-form-item label="指标内容:">
  447. <span>{{ items.content }}</span>
  448. </el-form-item>
  449. <el-form-item
  450. v-if="items.confirmWay == '附件'"
  451. label-width="70px"
  452. prop="linkUrls"
  453. label="上传附件"
  454. >
  455. <el-upload
  456. :disabled="isAppoval"
  457. class="upload-demo"
  458. ref="upload"
  459. :headers="upload.headers"
  460. :action="upload.url"
  461. :on-success="handleFileSuccess.bind(null, index)"
  462. :auto-upload="true"
  463. :file-list="items.fileList"
  464. :on-remove="handleRemove"
  465. :on-change="handleChange"
  466. :multiple="true"
  467. >
  468. <el-button
  469. :disabled="isAppoval"
  470. slot="trigger"
  471. size="small"
  472. type="primary"
  473. >选取文件</el-button
  474. >
  475. </el-upload>
  476. </el-form-item>
  477. <el-form-item
  478. v-if="items.confirmWay == '文字说明'"
  479. label-width="70px"
  480. prop="remark"
  481. label="说明"
  482. >
  483. <el-input
  484. type="textarea"
  485. :disabled="isAppoval"
  486. v-model="items.remark"
  487. rows="5"
  488. ></el-input>
  489. </el-form-item>
  490. <el-form-item
  491. v-if="items.confirmWay == '数值'"
  492. label-width="70px"
  493. prop="numValue"
  494. label="数值"
  495. >
  496. <el-input
  497. type="number"
  498. :disabled="isAppoval"
  499. v-model="items.numValue"
  500. ></el-input>
  501. </el-form-item>
  502. </el-form>
  503. </el-tab-pane> -->
  504. </el-tabs>
  505. <div slot="footer" class="dialog-footer">
  506. <el-button type="primary" v-if="!isAppoval" @click="submitForm"
  507. >确 定</el-button
  508. >
  509. <el-button @click="cancel">取 消</el-button>
  510. </div>
  511. </el-dialog>
  512. </div>
  513. </template>
  514. <script>
  515. import {
  516. listQUOTABONDED,
  517. getQUOTABONDED,
  518. delQUOTABONDED,
  519. addQUOTABONDED,
  520. updateQUOTABONDED,
  521. setApprove,
  522. setAdminApprove,
  523. setAdminReport,
  524. } from "@/api/norm/QUOTABONDED";
  525. import { listQUOTAFEERole } from "@/api/norm/QUOTAFEE";
  526. import { listAllBONDED } from "@/api/portal/BONDED/BONDED.js";
  527. import { uploadFiles, downloadFiles } from "@/api/common";
  528. import { listDept } from "@/api/system/dept";
  529. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  530. import { getToken } from "@/utils/auth";
  531. import { getInfo } from "@/api/login.js";
  532. export default {
  533. name: "QUOTABONDED",
  534. data() {
  535. return {
  536. // 标签数据
  537. tabList: [],
  538. activeName: "",
  539. user: null,
  540. // 查看修改
  541. check: false,
  542. // 用户导入参数
  543. upload: {
  544. // 是否显示弹出层(用户导入)
  545. open: false,
  546. // 弹出层标题(用户导入)
  547. title: "",
  548. // 是否禁用上传
  549. isUploading: false,
  550. // 是否更新已经存在的用户数据
  551. updateSupport: 0,
  552. // 设置上传的请求头部
  553. headers: { Authorization: "Bearer " + getToken() },
  554. // 上传的地址
  555. url: process.env.VUE_APP_BASE_API + "/common/upload",
  556. },
  557. uploadUrl: process.env.VUE_APP_BASE_API + "/common/uploads",
  558. isAppoval: false,
  559. // 根路径
  560. baseURL: process.env.VUE_APP_BASE_API,
  561. // 遮罩层
  562. loading: true,
  563. // 选中数组
  564. ids: [],
  565. // 非单个禁用
  566. single: true,
  567. // 非多个禁用
  568. multiple: true,
  569. // 显示搜索条件
  570. showSearch: true,
  571. // 总条数
  572. total: 0,
  573. // 辅助指标-综保区表格数据
  574. QUOTABONDEDList: [],
  575. // 弹出层标题
  576. title: "",
  577. // 是否显示弹出层
  578. open: false,
  579. QUOTAFEEList: [],
  580. BONDEDList: [],
  581. fileList: [],
  582. // 保税区列表
  583. deptList: [],
  584. // 查询参数
  585. queryParams: {
  586. pageNum: 1,
  587. pageSize: 10,
  588. bondedName: null,
  589. quotaName: null,
  590. year: null,
  591. },
  592. // 表单参数
  593. form: {},
  594. // 表单校验
  595. rules: {
  596. year: [{ required: true, message: "年份不能为空", trigger: "blur" }],
  597. bondedName: [
  598. { required: true, message: "综保区名称不能为空", trigger: "blur" },
  599. ],
  600. quotaName: [
  601. { required: true, message: "指标名称不能为空", trigger: "blur" },
  602. ],
  603. },
  604. };
  605. },
  606. created() {
  607. this.listQUOTAFEERole();
  608. // listAllBONDED().then((response) => {
  609. // this.BONDEDList = response.rows;
  610. // });
  611. this.getList();
  612. this.getDeptList();
  613. },
  614. methods: {
  615. checkPermi,
  616. checkRole,
  617. listQUOTAFEERole() {
  618. listQUOTAFEERole().then((response) => {
  619. response.data.forEach((item, index) => {
  620. response.data[index].status = item.status == 0 ? false : true;
  621. });
  622. this.QUOTAFEEList = response.data;
  623. this.QUOTAFEEList.forEach((item) => {
  624. item.fileList = [];
  625. item.linkUrls = "";
  626. item.fileNames = "";
  627. });
  628. this.tabList = JSON.parse(JSON.stringify(response.data));
  629. for (var i = 0; i < this.tabList.length - 1; i++) {
  630. //设置激活的tab
  631. for (var j = i + 1; j < this.tabList.length; j++) {
  632. if (this.tabList[i].normId == this.tabList[j].normId) {
  633. this.tabList.splice(j, 1);
  634. //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
  635. j--;
  636. }
  637. }
  638. }
  639. this.activeName = "基本信息";
  640. });
  641. },
  642. // 获取保税区列表
  643. getDeptList() {
  644. this.loading = true;
  645. listDept({ parentId: "100" }).then((response) => {
  646. getInfo().then((res) => {
  647. this.user = res.user.roles[0];
  648. if (res.user.dept.type == 2) {
  649. response.data.forEach((item) => {
  650. if (item.deptId == res.user.dept.deptId) {
  651. this.deptList = [item];
  652. return;
  653. }
  654. });
  655. this.loading = false;
  656. return;
  657. } else if (res.user.dept.type == 1) {
  658. this.deptList = response.data;
  659. }
  660. this.loading = false;
  661. });
  662. });
  663. },
  664. selectBondedChange(val) {
  665. const selectedDept = this.deptList.find(
  666. (item) => item.deptName === this.form.bondedName
  667. );
  668. if (selectedDept) {
  669. this.form.bondedId = selectedDept.deptId;
  670. }
  671. // this.form.bondedId = val.id;
  672. // this.form.bondedName = val.bondedName;
  673. },
  674. selectQuotaChange(val) {
  675. this.form.quotaId = val.id;
  676. this.form.quotaName = val.quotaName;
  677. },
  678. /** 查询辅助指标-综保区列表 */
  679. getList() {
  680. this.loading = true;
  681. listQUOTABONDED(this.queryParams).then((response) => {
  682. this.QUOTABONDEDList = response.rows;
  683. this.total = response.total;
  684. this.loading = false;
  685. });
  686. },
  687. // 取消按钮
  688. cancel() {
  689. this.open = false;
  690. this.reset();
  691. },
  692. // 表单重置
  693. reset() {
  694. this.form = {
  695. id: null,
  696. delFlag: null,
  697. deptId: null,
  698. bondedId: null,
  699. bondedName: null,
  700. quotaId: null,
  701. quotaName: null,
  702. score: null,
  703. status: "1",
  704. startTime: null,
  705. stopTime: null,
  706. linkUrls: null,
  707. remark: null,
  708. fileNames: null,
  709. enterType: null,
  710. numValue: null,
  711. };
  712. this.fileList = [];
  713. this.resetForm("forms");
  714. },
  715. /** 搜索按钮操作 */
  716. handleQuery() {
  717. this.queryParams.pageNum = 1;
  718. this.getList();
  719. },
  720. /** 重置按钮操作 */
  721. resetQuery() {
  722. this.resetForm("queryForm");
  723. this.handleQuery();
  724. },
  725. // 多选框选中数据
  726. handleSelectionChange(selection) {
  727. this.ids = selection.map((item) => item.id);
  728. this.multiple = !selection.length;
  729. if (selection.length == 0) {
  730. return;
  731. } else {
  732. if (
  733. selection.length < 2 &&
  734. (selection[0].auditStatus == 0 || selection[0].auditStatus == null) &&
  735. (selection[0].approvalStatus == 0 ||
  736. selection[0].approvalStatus == null ||
  737. selection[0].approvalStatus == 3)
  738. ) {
  739. this.single = false;
  740. } else {
  741. this.single = true;
  742. }
  743. }
  744. },
  745. /** 新增按钮操作 */
  746. handleAdd() {
  747. this.listQUOTAFEERole();
  748. this.isAppoval = false;
  749. this.reset();
  750. this.open = true;
  751. this.title = "辅助指标录入新增";
  752. },
  753. /** 修改按钮操作 */
  754. handleUpdate(row) {
  755. this.reset();
  756. const id = row.id || this.ids;
  757. getQUOTABONDED(id).then((response) => {
  758. this.form = response.data;
  759. this.isAppoval = false;
  760. this.QUOTAFEEList = response.data.bondedFeeList;
  761. this.QUOTAFEEList.forEach((item) => (item.fileList = []));
  762. this.QUOTAFEEList.forEach((item) => {
  763. item.fileList.push({ name: item.fileNames, url: item.linkUrls });
  764. });
  765. this.open = true;
  766. this.$forceUpdate();
  767. this.title = "辅助指标录入修改";
  768. });
  769. },
  770. handleSelect(row) {
  771. this.reset();
  772. const id = row.id || this.ids;
  773. getQUOTABONDED(id).then((response) => {
  774. this.isAppoval = true;
  775. this.form = response.data;
  776. this.QUOTAFEEList = response.data.bondedFeeList;
  777. this.QUOTAFEEList.forEach((item) => (item.fileList = []));
  778. this.QUOTAFEEList.forEach((item) => {
  779. item.fileList.push({ name: item.fileNames, url: item.linkUrls });
  780. });
  781. this.tabList = JSON.parse(JSON.stringify(response.data.bondedFeeList));
  782. for (var i = 0; i < this.tabList.length - 1; i++) {
  783. //设置激活的tab
  784. for (var j = i + 1; j < this.tabList.length; j++) {
  785. if (this.tabList[i].remark == this.tabList[j].remark) {
  786. this.tabList.splice(j, 1);
  787. //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
  788. j--;
  789. }
  790. }
  791. }
  792. this.activeName = "基本信息";
  793. this.open = true;
  794. this.$forceUpdate();
  795. this.title = "辅助指标录入详情";
  796. });
  797. },
  798. // 文件上传成功处理
  799. handleFileSuccess(index, response, file, fileList) {
  800. let linkUrls = "";
  801. let fileNames = "";
  802. fileList.forEach((item) => {
  803. linkUrls += item.response.fileName + ",";
  804. fileNames += item.response.newFileName + ",";
  805. });
  806. this.QUOTAFEEList.forEach((item, key) => {
  807. if (key == index) {
  808. item.linkUrls = linkUrls;
  809. item.fileNames = fileNames;
  810. }
  811. });
  812. },
  813. /** 提交按钮 */
  814. async submitForm() {
  815. this.form.bondedFeeList = this.QUOTAFEEList;
  816. this.$refs["form"].validate((valid) => {
  817. if (valid) {
  818. /*if (!(parseInt(this.form.score) == this.form.score)) {
  819. this.$message.error("得分必须为整数");
  820. return;
  821. }
  822. if (this.form.enterType == "文字说明" && this.form.remark == null) {
  823. this.$message.error("请录入文字说明");
  824. return;
  825. }
  826. if (this.form.enterType == "数值" && this.form.numValue == null) {
  827. this.$message.error("请录入数值");
  828. return;
  829. }
  830. if (
  831. this.form.numValue != null &&
  832. !(
  833. parseInt(this.form.numValue) == this.form.numValue ||
  834. parseFloat(this.form.numValue) == this.form.numValue
  835. )
  836. ) {
  837. this.$message.error("数值必须为整数或小数");
  838. return;
  839. }*/
  840. if (this.form.id != null) {
  841. if (this.form.enterType == "附件") {
  842. if (this.fileList.length < 1) {
  843. this.$message.error("请选择文件传输!");
  844. return;
  845. } else {
  846. if (this.fileList[0].url == undefined) {
  847. let formData = new FormData();
  848. this.fileList.forEach((item) => {
  849. formData.append("file", item.raw);
  850. });
  851. uploadFiles(formData).then((res) => {
  852. if (res.code == 200) {
  853. this.form.bondedFeeList.forEach((item) => {
  854. if (item.confirmWay == "附件") {
  855. item.linkUrls = res.fileNames;
  856. item.fileNames = res.newFileNames;
  857. }
  858. });
  859. //this.form.linkUrls = res.fileNames;
  860. //this.form.fileNames = res.newFileNames;
  861. updateQUOTABONDED(this.form).then((response) => {
  862. this.$modal.msgSuccess("修改成功");
  863. this.open = false;
  864. this.getList();
  865. });
  866. }
  867. });
  868. } else {
  869. updateQUOTABONDED(this.form).then((response) => {
  870. this.$modal.msgSuccess("修改成功");
  871. this.open = false;
  872. this.getList();
  873. });
  874. }
  875. }
  876. } else {
  877. updateQUOTABONDED(this.form).then((response) => {
  878. this.$modal.msgSuccess("修改成功");
  879. this.open = false;
  880. this.getList();
  881. });
  882. }
  883. } else {
  884. if (this.form.enterType == "附件") {
  885. if (this.fileList.length < 1) {
  886. this.$message.error("请选择文件传输!");
  887. return;
  888. } else {
  889. let formData = new FormData();
  890. this.fileList.forEach((item) => {
  891. formData.append("file", item.raw);
  892. });
  893. uploadFiles(formData).then((res) => {
  894. if (res.code == 200) {
  895. this.form.bondedFeeList.forEach((item) => {
  896. if (item.confirmWay == "附件") {
  897. item.linkUrls = res.fileNames;
  898. item.fileNames = res.newFileNames;
  899. }
  900. });
  901. //this.form.linkUrls = res.fileNames;
  902. //this.form.fileNames = res.newFileNames;
  903. addQUOTABONDED(this.form).then((response) => {
  904. this.$modal.msgSuccess("新增成功");
  905. this.open = false;
  906. this.getList();
  907. });
  908. }
  909. });
  910. }
  911. } else {
  912. addQUOTABONDED(this.form).then((response) => {
  913. this.$modal.msgSuccess("新增成功");
  914. this.open = false;
  915. this.getList();
  916. });
  917. }
  918. }
  919. }
  920. });
  921. },
  922. // 管理员驳回审核
  923. setRejectAndResolve(type) {
  924. let val;
  925. if (type == "resolve") {
  926. val = 1;
  927. } else {
  928. val = 2;
  929. }
  930. setAdminApprove({ quotoBondedId: this.form.id, type: val }).then(
  931. (res) => {
  932. if (res.code == 200) {
  933. this.$message.success(val == 1 ? "审核成功" : "驳回成功");
  934. this.getList();
  935. this.open = false;
  936. }
  937. }
  938. );
  939. },
  940. /** 删除按钮操作 */
  941. handleDelete(row) {
  942. const ids = row.id || this.ids;
  943. this.$modal
  944. .confirm('是否确认删除辅助指标-综保区编号为"' + ids + '"的数据项?')
  945. .then(function () {
  946. return delQUOTABONDED(ids);
  947. })
  948. .then(() => {
  949. this.getList();
  950. this.$modal.msgSuccess("删除成功");
  951. })
  952. .catch(() => {});
  953. },
  954. // 用户提交审核
  955. handleApprove(data) {
  956. setApprove({ quotoBondedId: data.id }).then((res) => {
  957. if (res.code == 200) {
  958. this.$message.success("提交成功");
  959. this.getList();
  960. }
  961. });
  962. },
  963. // 管理审核审核
  964. handleAdminApprove(row) {
  965. this.reset();
  966. const id = row.id || this.ids;
  967. this.isAppoval = true;
  968. getQUOTABONDED(id).then((response) => {
  969. this.form = response.data;
  970. this.form.linkUrls = this.baseURL + response.data.linkUrls;
  971. this.fileList = [];
  972. this.fileList.push({
  973. name: response.data.fileNames,
  974. url: response.data.linkUrls,
  975. });
  976. this.open = true;
  977. this.title = "辅助指标录入修改";
  978. });
  979. },
  980. // 管理上报
  981. handleReport(data) {
  982. setAdminReport({ quotoBondedId: data.id, type: 1 }).then((res) => {
  983. if (res.code == 200) {
  984. this.$message.success("上报成功");
  985. this.getList();
  986. }
  987. });
  988. },
  989. /** 导出按钮操作 */
  990. handleExport() {
  991. this.download(
  992. "business/QUOTABONDED/export",
  993. {
  994. ...this.queryParams,
  995. },
  996. `QUOTABONDED_${new Date().getTime()}.xlsx`
  997. );
  998. },
  999. handleChange(file, fileList) {},
  1000. handleRemove(file, fileList) {
  1001. this.fileList = fileList;
  1002. },
  1003. exceedHandle(files, fileList){
  1004. this.$message.warning("只能上传一个附件");
  1005. },
  1006. download(resource) {
  1007. let fileNames = resource.split(",");
  1008. fileNames.forEach((item) => {
  1009. downloadFiles("/profile/upload/" + item);
  1010. });
  1011. },
  1012. },
  1013. };
  1014. </script>