quotaBonded.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843
  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. size="mini"
  150. type="text"
  151. @click="handleApprove(scope.row)"
  152. >提交审核</el-button
  153. >
  154. <!-- <el-button
  155. v-if="
  156. scope.row.auditStatus == 1 &&
  157. (scope.row.approvalStatus == 0 ||
  158. scope.row.approvalStatus == null) &&
  159. checkPermi(['business:QUOTABONDED:edit'])
  160. "
  161. size="mini"
  162. type="text"
  163. @click="handleAdminApprove(scope.row)"
  164. >审核</el-button
  165. > -->
  166. <el-button
  167. v-if="
  168. scope.row.approvalStatus == 2 &&
  169. (scope.row.reportStatus == 0 || scope.row.reportStatus == null) &&
  170. checkPermi(['gather:QUOTABONDED:report'])
  171. "
  172. size="mini"
  173. type="text"
  174. icon="el-icon-delete"
  175. @click="handleReport(scope.row)"
  176. >上报</el-button
  177. >
  178. <el-button
  179. v-if="
  180. (scope.row.auditStatus == 0 || scope.row.auditStatus == null) &&
  181. (scope.row.approvalStatus == 0 ||
  182. scope.row.approvalStatus == null ||
  183. scope.row.approvalStatus == 3) &&
  184. checkPermi(['business:QUOTABONDED:edit'])
  185. "
  186. size="mini"
  187. type="text"
  188. icon="el-icon-edit"
  189. @click="handleUpdate(scope.row)"
  190. >修改</el-button
  191. >
  192. <el-button
  193. v-if="checkPermi(['business:QUOTABONDED:remove'])"
  194. size="mini"
  195. type="text"
  196. icon="el-icon-delete"
  197. @click="handleDelete(scope.row)"
  198. >删除</el-button
  199. >
  200. <el-button
  201. v-if="checkPermi(['business:QUOTABONDED:query'])"
  202. size="mini"
  203. type="text"
  204. icon="el-icon-delete"
  205. @click="handleSelect(scope.row)"
  206. >查看</el-button
  207. >
  208. </template>
  209. </el-table-column>
  210. </el-table>
  211. <pagination
  212. v-if="checkPermi('business:QUOTABONDED:list')"
  213. v-show="total > 0"
  214. :total="total"
  215. :page.sync="queryParams.pageNum"
  216. :limit.sync="queryParams.pageSize"
  217. @pagination="getList"
  218. />
  219. <!-- 添加或修改辅助指标-综保区对话框 -->
  220. <el-dialog
  221. :title="title"
  222. :visible.sync="open"
  223. :close-on-click-modal="false"
  224. width="900px"
  225. append-to-body
  226. >
  227. <el-form ref="form" :model="form" :rules="rules">
  228. <el-form-item label-width="100px" label="年份" prop="year">
  229. <el-date-picker
  230. :disabled="isAppoval"
  231. v-model="form.year"
  232. type="year"
  233. placeholder="请选123择年份"
  234. size="mini"
  235. class="year-picker"
  236. format="yyyy 年"
  237. value-format="yyyy"
  238. style="width: 60%"
  239. >
  240. </el-date-picker>
  241. </el-form-item>
  242. <el-form-item label-width="100px" label="保税区" prop="bondedName">
  243. <el-select
  244. :disabled="isAppoval"
  245. v-model="form.bondedName"
  246. placeholder="请选择保税区"
  247. clearable
  248. filterable
  249. @change="selectBondedChange"
  250. style="width: 60%"
  251. >
  252. <el-option
  253. v-for="item in deptList"
  254. :key="item.deptId"
  255. :label="item.deptName"
  256. :value="item.deptName"
  257. >
  258. </el-option>
  259. </el-select>
  260. </el-form-item>
  261. <el-card
  262. class="box-card"
  263. v-for="(dict, index) in QUOTAFEEList"
  264. :key="dict.id"
  265. :value="dict"
  266. style="margin-bottom: 24px; font-weight: bold"
  267. >
  268. <div slot="header" style="margin-left: 30px; font-size: 15px">
  269. <span>指标:{{ dict.quotaName }}</span>
  270. </div>
  271. <el-form-item
  272. v-if="dict.confirmWay == '附件'"
  273. label-width="70px"
  274. prop="linkUrls"
  275. label="上传附件"
  276. >
  277. <el-upload
  278. :disabled="isAppoval"
  279. class="upload-demo"
  280. ref="upload"
  281. :headers="upload.headers"
  282. :action="upload.url"
  283. :on-success="handleFileSuccess.bind(null, index)"
  284. :auto-upload="true"
  285. :file-list="dict.fileList"
  286. :on-remove="handleRemove"
  287. :on-change="handleChange"
  288. :multiple="true"
  289. >
  290. <div v-if="isAppoval" slot="tip" class="el-upload__tip">
  291. 审核无法修改
  292. </div>
  293. <el-button
  294. :disabled="isAppoval"
  295. slot="trigger"
  296. size="small"
  297. type="primary"
  298. >选取文件</el-button
  299. >
  300. </el-upload>
  301. </el-form-item>
  302. <el-form-item
  303. v-if="dict.confirmWay == '文字说明'"
  304. label-width="70px"
  305. prop="remark"
  306. label="说明"
  307. >
  308. <el-input
  309. type="textarea"
  310. :disabled="isAppoval"
  311. v-model="dict.remark"
  312. rows="5"
  313. ></el-input>
  314. </el-form-item>
  315. <el-form-item
  316. v-if="dict.confirmWay == '数值'"
  317. label-width="70px"
  318. prop="numValue"
  319. label="数值"
  320. >
  321. <el-input
  322. type="number"
  323. :disabled="isAppoval"
  324. v-model="dict.numValue"
  325. ></el-input>
  326. </el-form-item>
  327. <el-form-item label-width="70px" prop="score" label="分数">
  328. <el-input :disabled="isAppoval" v-model="dict.score"></el-input>
  329. </el-form-item>
  330. </el-card>
  331. <!-- <el-form-item label-width="100px" label="驳回理由">
  332. <el-input type="textarea" width="100%" v-model="form.test"></el-input>
  333. </el-form-item> -->
  334. </el-form>
  335. <p style="padding-right: 12px; margin-top: 30px; font-weight:600;font-size: 14px;
  336. color: #606266; width: 100px; text-align: right;">审核记录</p>
  337. <el-timeline>
  338. <el-timeline-item
  339. v-for="(item, index) in form.taskVoList"
  340. :timestamp="item.createTime"
  341. placement="top"
  342. :key="index + 'taskHisAction'"
  343. >
  344. <el-card>
  345. <p>{{ item.execName }}{{ item.createTime }} <p v-if="item.comments !=null">{{ item.comments }}</p></p>
  346. </el-card>
  347. </el-timeline-item>
  348. </el-timeline>
  349. <div slot="footer" v-if="!isAppoval" class="dialog-footer">
  350. <el-button type="primary" @click="submitForm">确 定</el-button>
  351. <el-button @click="cancel">取 消</el-button>
  352. </div>
  353. <div slot="footer" v-else class="dialog-footer">
  354. <el-button type="primary" @click="setRejectAndResolve('resolve')"
  355. >通 过</el-button
  356. >
  357. <el-button type="warning" @click="setRejectAndResolve('reject')"
  358. >驳 回</el-button
  359. >
  360. <el-button @click="cancel">取 消</el-button>
  361. </div>
  362. </el-dialog>
  363. </div>
  364. </template>
  365. <script>
  366. import {
  367. listQUOTABONDED,
  368. getQUOTABONDED,
  369. delQUOTABONDED,
  370. addQUOTABONDED,
  371. updateQUOTABONDED,
  372. setApprove,
  373. setAdminApprove,
  374. setAdminReport,
  375. } from "@/api/norm/QUOTABONDED";
  376. import { listQUOTAFEERole } from "@/api/norm/QUOTAFEE";
  377. import { listAllBONDED } from "@/api/portal/BONDED/BONDED.js";
  378. import { uploadFiles, downloadFiles } from "@/api/common";
  379. import { listDept } from "@/api/system/dept";
  380. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  381. import { getToken } from "@/utils/auth";
  382. import { getInfo } from "@/api/login.js";
  383. export default {
  384. name: "QUOTABONDED",
  385. data() {
  386. return {
  387. // 查看修改
  388. check: false,
  389. // 用户导入参数
  390. upload: {
  391. // 是否显示弹出层(用户导入)
  392. open: false,
  393. // 弹出层标题(用户导入)
  394. title: "",
  395. // 是否禁用上传
  396. isUploading: false,
  397. // 是否更新已经存在的用户数据
  398. updateSupport: 0,
  399. // 设置上传的请求头部
  400. headers: { Authorization: "Bearer " + getToken() },
  401. // 上传的地址
  402. url: process.env.VUE_APP_BASE_API + "/common/upload",
  403. },
  404. uploadUrl: process.env.VUE_APP_BASE_API + "/common/uploads",
  405. isAppoval: false,
  406. // 根路径
  407. baseURL: process.env.VUE_APP_BASE_API,
  408. // 遮罩层
  409. loading: true,
  410. // 选中数组
  411. ids: [],
  412. // 非单个禁用
  413. single: true,
  414. // 非多个禁用
  415. multiple: true,
  416. // 显示搜索条件
  417. showSearch: true,
  418. // 总条数
  419. total: 0,
  420. // 辅助指标-综保区表格数据
  421. QUOTABONDEDList: [],
  422. // 弹出层标题
  423. title: "",
  424. // 是否显示弹出层
  425. open: false,
  426. QUOTAFEEList: [],
  427. BONDEDList: [],
  428. fileList: [],
  429. // 保税区列表
  430. deptList: [],
  431. // 查询参数
  432. queryParams: {
  433. pageNum: 1,
  434. pageSize: 10,
  435. bondedName: null,
  436. quotaName: null,
  437. year: null,
  438. },
  439. // 表单参数
  440. form: {},
  441. // 表单校验
  442. rules: {
  443. year: [{ required: true, message: "年份不能为空", trigger: "blur" }],
  444. bondedName: [
  445. { required: true, message: "综保区名称不能为空", trigger: "blur" },
  446. ],
  447. quotaName: [
  448. { required: true, message: "指标名称不能为空", trigger: "blur" },
  449. ],
  450. },
  451. };
  452. },
  453. created() {
  454. this.listQUOTAFEERole();
  455. // listAllBONDED().then((response) => {
  456. // this.BONDEDList = response.rows;
  457. // });
  458. this.getList();
  459. this.getDeptList();
  460. },
  461. methods: {
  462. checkPermi,
  463. checkRole,
  464. listQUOTAFEERole() {
  465. listQUOTAFEERole().then((response) => {
  466. response.data.forEach((item, index) => {
  467. response.data[index].status = item.status == 0 ? false : true;
  468. });
  469. this.QUOTAFEEList = response.data;
  470. this.QUOTAFEEList.forEach((item) => {
  471. item.fileList = [];
  472. item.linkUrls = "";
  473. item.fileNames = "";
  474. });
  475. });
  476. },
  477. // 获取保税区列表
  478. getDeptList() {
  479. this.loading = true;
  480. listDept({ parentId: "100" }).then((response) => {
  481. getInfo().then((res) => {
  482. if (res.user.dept.type == 2) {
  483. response.data.forEach((item) => {
  484. if (item.deptId == res.user.dept.deptId) {
  485. this.deptList = [item];
  486. return;
  487. }
  488. });
  489. this.loading = false;
  490. return;
  491. } else if (res.user.dept.type == 1) {
  492. this.deptList = response.data;
  493. }
  494. this.loading = false;
  495. });
  496. });
  497. },
  498. selectBondedChange(val) {
  499. const selectedDept = this.deptList.find(
  500. (item) => item.deptName === this.form.bondedName
  501. );
  502. if (selectedDept) {
  503. this.form.bondedId = selectedDept.deptId;
  504. }
  505. // this.form.bondedId = val.id;
  506. // this.form.bondedName = val.bondedName;
  507. },
  508. selectQuotaChange(val) {
  509. this.form.quotaId = val.id;
  510. this.form.quotaName = val.quotaName;
  511. },
  512. /** 查询辅助指标-综保区列表 */
  513. getList() {
  514. this.loading = true;
  515. listQUOTABONDED(this.queryParams).then((response) => {
  516. this.QUOTABONDEDList = response.rows;
  517. this.total = response.total;
  518. this.loading = false;
  519. });
  520. },
  521. // 取消按钮
  522. cancel() {
  523. this.open = false;
  524. this.reset();
  525. },
  526. // 表单重置
  527. reset() {
  528. this.form = {
  529. id: null,
  530. delFlag: null,
  531. deptId: null,
  532. bondedId: null,
  533. bondedName: null,
  534. quotaId: null,
  535. quotaName: null,
  536. score: null,
  537. status: "1",
  538. startTime: null,
  539. stopTime: null,
  540. linkUrls: null,
  541. remark: null,
  542. fileNames: null,
  543. enterType: null,
  544. numValue: null,
  545. };
  546. this.fileList = [];
  547. this.resetForm("form");
  548. },
  549. /** 搜索按钮操作 */
  550. handleQuery() {
  551. this.queryParams.pageNum = 1;
  552. this.getList();
  553. },
  554. /** 重置按钮操作 */
  555. resetQuery() {
  556. this.resetForm("queryForm");
  557. this.handleQuery();
  558. },
  559. // 多选框选中数据
  560. handleSelectionChange(selection) {
  561. this.ids = selection.map((item) => item.id);
  562. this.single = selection.length !== 1;
  563. this.multiple = !selection.length;
  564. },
  565. /** 新增按钮操作 */
  566. handleAdd() {
  567. this.listQUOTAFEERole();
  568. this.isAppoval = false;
  569. this.reset();
  570. this.open = true;
  571. this.title = "辅助指标录入新增";
  572. },
  573. /** 修改按钮操作 */
  574. handleUpdate(row) {
  575. this.reset();
  576. const id = row.id || this.ids;
  577. getQUOTABONDED(id).then((response) => {
  578. this.form = response.data;
  579. this.isAppoval = false;
  580. this.QUOTAFEEList = response.data.bondedFeeList;
  581. this.QUOTAFEEList.forEach((item) => (item.fileList = []));
  582. this.QUOTAFEEList.forEach((item) => {
  583. item.fileList.push({ name: item.fileNames, url: item.linkUrls });
  584. });
  585. this.open = true;
  586. this.$forceUpdate();
  587. this.title = "辅助指标录入修改";
  588. });
  589. },
  590. handleSelect(row) {
  591. this.reset();
  592. const id = row.id || this.ids;
  593. getQUOTABONDED(id).then((response) => {
  594. this.isAppoval = true;
  595. this.form = response.data;
  596. this.QUOTAFEEList = response.data.bondedFeeList;
  597. this.QUOTAFEEList.forEach((item) => (item.fileList = []));
  598. this.QUOTAFEEList.forEach((item) => {
  599. item.fileList.push({ name: item.fileNames, url: item.linkUrls });
  600. });
  601. this.open = true;
  602. this.$forceUpdate();
  603. this.title = "辅助指标录入详情";
  604. });
  605. },
  606. // 文件上传成功处理
  607. handleFileSuccess(index, response, file, fileList) {
  608. console.log("1111", index);
  609. console.log("22222", fileList);
  610. let linkUrls = "";
  611. let fileNames = "";
  612. fileList.forEach((item) => {
  613. linkUrls += item.response.fileName + ",";
  614. fileNames += item.response.newFileName + ",";
  615. });
  616. this.QUOTAFEEList.forEach((item, key) => {
  617. if (key == index) {
  618. item.linkUrls = linkUrls;
  619. item.fileNames = fileNames;
  620. }
  621. });
  622. console.log("1111111111", this.QUOTAFEEList);
  623. },
  624. /** 提交按钮 */
  625. async submitForm() {
  626. this.form.bondedFeeList = this.QUOTAFEEList;
  627. console.log("44444444-form", this.form);
  628. this.$refs["form"].validate((valid) => {
  629. if (valid) {
  630. /*if (!(parseInt(this.form.score) == this.form.score)) {
  631. this.$message.error("得分必须为整数");
  632. return;
  633. }
  634. if (this.form.enterType == "文字说明" && this.form.remark == null) {
  635. this.$message.error("请录入文字说明");
  636. return;
  637. }
  638. if (this.form.enterType == "数值" && this.form.numValue == null) {
  639. this.$message.error("请录入数值");
  640. return;
  641. }
  642. if (
  643. this.form.numValue != null &&
  644. !(
  645. parseInt(this.form.numValue) == this.form.numValue ||
  646. parseFloat(this.form.numValue) == this.form.numValue
  647. )
  648. ) {
  649. this.$message.error("数值必须为整数或小数");
  650. return;
  651. }*/
  652. if (this.form.id != null) {
  653. if (this.form.enterType == "附件") {
  654. if (this.fileList.length < 1) {
  655. this.$message.error("请选择文件传输!");
  656. return;
  657. } else {
  658. if (this.fileList[0].url == undefined) {
  659. let formData = new FormData();
  660. this.fileList.forEach((item) => {
  661. formData.append("file", item.raw);
  662. });
  663. uploadFiles(formData).then((res) => {
  664. if (res.code == 200) {
  665. this.form.bondedFeeList.forEach((item) => {
  666. if (item.confirmWay == "附件") {
  667. item.linkUrls = res.fileNames;
  668. item.fileNames = res.newFileNames;
  669. }
  670. });
  671. //this.form.linkUrls = res.fileNames;
  672. //this.form.fileNames = res.newFileNames;
  673. console.log("555555555-form", this.form);
  674. updateQUOTABONDED(this.form).then((response) => {
  675. this.$modal.msgSuccess("修改成功");
  676. this.open = false;
  677. this.getList();
  678. });
  679. }
  680. });
  681. } else {
  682. updateQUOTABONDED(this.form).then((response) => {
  683. this.$modal.msgSuccess("修改成功");
  684. this.open = false;
  685. this.getList();
  686. });
  687. }
  688. }
  689. } else {
  690. updateQUOTABONDED(this.form).then((response) => {
  691. this.$modal.msgSuccess("修改成功");
  692. this.open = false;
  693. this.getList();
  694. });
  695. }
  696. } else {
  697. if (this.form.enterType == "附件") {
  698. if (this.fileList.length < 1) {
  699. this.$message.error("请选择文件传输!");
  700. return;
  701. } else {
  702. let formData = new FormData();
  703. this.fileList.forEach((item) => {
  704. formData.append("file", item.raw);
  705. });
  706. uploadFiles(formData).then((res) => {
  707. if (res.code == 200) {
  708. this.form.bondedFeeList.forEach((item) => {
  709. if (item.confirmWay == "附件") {
  710. item.linkUrls = res.fileNames;
  711. item.fileNames = res.newFileNames;
  712. }
  713. });
  714. //this.form.linkUrls = res.fileNames;
  715. //this.form.fileNames = res.newFileNames;
  716. console.log("6666666666-form", this.form);
  717. addQUOTABONDED(this.form).then((response) => {
  718. this.$modal.msgSuccess("新增成功");
  719. this.open = false;
  720. this.getList();
  721. });
  722. }
  723. });
  724. }
  725. } else {
  726. addQUOTABONDED(this.form).then((response) => {
  727. this.$modal.msgSuccess("新增成功");
  728. this.open = false;
  729. this.getList();
  730. });
  731. }
  732. }
  733. }
  734. });
  735. },
  736. // 管理员驳回审核
  737. setRejectAndResolve(type) {
  738. let val;
  739. if (type == "resolve") {
  740. val = 1;
  741. } else {
  742. val = 2;
  743. }
  744. setAdminApprove({ quotoBondedId: this.form.id, type: val }).then(
  745. (res) => {
  746. if (res.code == 200) {
  747. this.$message.success(val == 1 ? "审核成功" : "驳回成功");
  748. this.getList();
  749. this.open = false;
  750. }
  751. }
  752. );
  753. },
  754. /** 删除按钮操作 */
  755. handleDelete(row) {
  756. const ids = row.id || this.ids;
  757. this.$modal
  758. .confirm('是否确认删除辅助指标-综保区编号为"' + ids + '"的数据项?')
  759. .then(function () {
  760. return delQUOTABONDED(ids);
  761. })
  762. .then(() => {
  763. this.getList();
  764. this.$modal.msgSuccess("删除成功");
  765. })
  766. .catch(() => {});
  767. },
  768. // 用户提交审核
  769. handleApprove(data) {
  770. setApprove({ quotoBondedId: data.id }).then((res) => {
  771. if (res.code == 200) {
  772. this.$message.success("提交成功");
  773. this.getList();
  774. }
  775. });
  776. },
  777. // 管理审核审核
  778. handleAdminApprove(row) {
  779. this.reset();
  780. const id = row.id || this.ids;
  781. this.isAppoval = true;
  782. getQUOTABONDED(id).then((response) => {
  783. this.form = response.data;
  784. this.form.linkUrls = this.baseURL + response.data.linkUrls;
  785. this.fileList = [];
  786. this.fileList.push({
  787. name: response.data.fileNames,
  788. url: response.data.linkUrls,
  789. });
  790. this.open = true;
  791. this.title = "辅助指标录入修改";
  792. });
  793. },
  794. // 管理上报
  795. handleReport(data) {
  796. setAdminReport({ quotoBondedId: data.id, type: 1 }).then((res) => {
  797. if (res.code == 200) {
  798. this.$message.success("上报成功");
  799. this.getList();
  800. }
  801. });
  802. },
  803. /** 导出按钮操作 */
  804. handleExport() {
  805. this.download(
  806. "business/QUOTABONDED/export",
  807. {
  808. ...this.queryParams,
  809. },
  810. `QUOTABONDED_${new Date().getTime()}.xlsx`
  811. );
  812. },
  813. handleChange(file, fileList) {},
  814. handleRemove(file, fileList) {
  815. this.fileList = fileList;
  816. },
  817. download(resource) {
  818. let fileNames = resource.split(",");
  819. fileNames.forEach((item) => {
  820. downloadFiles("/profile/upload/" + item);
  821. });
  822. },
  823. },
  824. };
  825. </script>