quotaBonded.vue 26 KB

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