index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670
  1. <template>
  2. <div class="app-container">
  3. <el-form
  4. :model="queryParams"
  5. ref="queryForm"
  6. size="small"
  7. :inline="true"
  8. v-show="showSearch"
  9. label-width="100px"
  10. >
  11. <el-form-item label="是否启用" prop="status">
  12. <el-select
  13. v-model="queryParams.status"
  14. placeholder="请选择是否启用"
  15. clearable
  16. filterable
  17. >
  18. <el-option
  19. v-for="dict in statusList"
  20. :key="dict.value + 'statusList'"
  21. :label="dict.label"
  22. :value="dict.value"
  23. />
  24. </el-select>
  25. </el-form-item>
  26. <el-form-item label="接口链接状态" prop="linkStatus">
  27. <el-select
  28. v-model="queryParams.linkStatus"
  29. placeholder="请选择接口链接状态"
  30. clearable
  31. filterable
  32. >
  33. <el-option
  34. v-for="dict in linkStatusList"
  35. :key="dict.value + 'linkStatusList'"
  36. :label="dict.label"
  37. :value="dict.value"
  38. />
  39. </el-select>
  40. </el-form-item>
  41. <el-form-item>
  42. <el-button
  43. type="primary"
  44. icon="el-icon-search"
  45. size="mini"
  46. @click="handleQuery"
  47. >搜索</el-button
  48. >
  49. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
  50. >重置</el-button
  51. >
  52. </el-form-item>
  53. </el-form>
  54. <el-row :gutter="10" class="mb8">
  55. <el-col :span="1.5">
  56. <el-button
  57. type="primary"
  58. plain
  59. icon="el-icon-plus"
  60. size="mini"
  61. @click="handleAdd"
  62. v-hasPermi="['business:APICONFIG:add']"
  63. >新增</el-button
  64. >
  65. </el-col>
  66. <el-col :span="1.5">
  67. <el-button
  68. type="success"
  69. plain
  70. icon="el-icon-edit"
  71. size="mini"
  72. :disabled="single"
  73. @click="handleUpdate"
  74. v-hasPermi="['business:APICONFIG:edit']"
  75. >修改</el-button
  76. >
  77. </el-col>
  78. <el-col :span="1.5">
  79. <el-button
  80. type="danger"
  81. plain
  82. icon="el-icon-delete"
  83. size="mini"
  84. :disabled="multiple"
  85. @click="handleDelete"
  86. v-hasPermi="['business:APICONFIG:remove']"
  87. >删除</el-button
  88. >
  89. </el-col>
  90. <el-col :span="1.5">
  91. <el-button
  92. type="warning"
  93. plain
  94. size="mini"
  95. icon="el-icon-upload"
  96. @click="openUpload = true"
  97. v-hasPermi="['business:APICONFIG:export']"
  98. >导入</el-button
  99. >
  100. </el-col>
  101. <el-col :span="1.5">
  102. <el-button
  103. plain
  104. size="mini"
  105. icon="el-icon-download"
  106. @click="handleDownload()"
  107. :disabled="radio === '' ? true : false"
  108. >导出</el-button
  109. >
  110. </el-col>
  111. <right-toolbar
  112. :showSearch.sync="showSearch"
  113. @queryTable="getList"
  114. ></right-toolbar>
  115. </el-row>
  116. <el-table
  117. :data="APICONFIGList"
  118. @selection-change="handleSelectionChange"
  119. @row-click="showRow"
  120. >
  121. <el-table-column label="选择" width="70" center>
  122. <template scope="scope">
  123. <el-radio
  124. class="radio"
  125. v-model="radio"
  126. :label="scope.$index"
  127. @change.native="getCurrentRow(scope.row)"
  128. >{{ "" }}</el-radio
  129. >
  130. </template>
  131. </el-table-column>
  132. <el-table-column label="接口编号" align="center" prop="apiCode">
  133. <template slot-scope="scope">
  134. {{ scope.row.apiCode }}
  135. </template>
  136. </el-table-column>
  137. <el-table-column label="接口名称" align="center" prop="apiName">
  138. <template slot-scope="scope">
  139. {{ scope.row.apiName }}
  140. </template>
  141. </el-table-column>
  142. <el-table-column label="接口url" align="center" prop="apiUrl">
  143. <template slot-scope="scope">
  144. {{ scope.row.apiUrl }}
  145. </template>
  146. </el-table-column>
  147. <el-table-column label="是否启用" align="center" prop="status">
  148. <template slot-scope="scope">
  149. <span v-if="scope.row.status == 1">启用</span>
  150. <span v-else-if="scope.row.status == 0">不启用</span>
  151. </template>
  152. </el-table-column>
  153. <el-table-column label="配置协议" align="center" prop="accord">
  154. <template slot-scope="scope">
  155. {{ scope.row.accord }}
  156. </template>
  157. </el-table-column>
  158. <el-table-column
  159. label="是否启用分布式线程"
  160. align="center"
  161. prop="hadoopFlag"
  162. >
  163. <template slot-scope="scope">
  164. <span v-if="scope.row.hadoopFlag == 1">启用</span>
  165. <span v-else-if="scope.row.hadoopFlag == 0">不启用</span>
  166. </template>
  167. </el-table-column>
  168. <el-table-column label="是否数据加密" align="center" prop="thickenFlag">
  169. <template slot-scope="scope">
  170. <span v-if="scope.row.thickenFlag == 1">启用</span>
  171. <span v-else-if="scope.row.thickenFlag == 0">不启用</span>
  172. </template>
  173. </el-table-column>
  174. <el-table-column label="接口链接状态" align="center" prop="linkStatus">
  175. <template slot-scope="scope">
  176. <span v-if="scope.row.linkStatus == 1">成功</span>
  177. <span v-else-if="scope.row.linkStatus == 0">失败</span>
  178. </template>
  179. </el-table-column>
  180. <el-table-column label="备注" align="center" prop="remark">
  181. <template slot-scope="scope">
  182. {{ scope.row.remark }}
  183. </template>
  184. </el-table-column>
  185. <el-table-column
  186. label="操作"
  187. align="center"
  188. class-name="small-padding fixed-width"
  189. >
  190. <template slot-scope="scope">
  191. <el-button
  192. size="mini"
  193. type="text"
  194. icon="el-icon-edit"
  195. @click="handleUpdate(scope.row)"
  196. v-hasPermi="['business:APICONFIG:edit']"
  197. >修改</el-button
  198. >
  199. <el-button
  200. size="mini"
  201. type="text"
  202. icon="el-icon-delete"
  203. @click="handleDelete(scope.row)"
  204. v-hasPermi="['business:APICONFIG:remove']"
  205. >删除</el-button
  206. >
  207. </template>
  208. </el-table-column>
  209. </el-table>
  210. <pagination
  211. v-show="total > 0"
  212. :total="total"
  213. :page.sync="queryParams.pageNum"
  214. :limit.sync="queryParams.pageSize"
  215. @pagination="getList"
  216. />
  217. <!-- 添加或修改数据接口api配置对话框 -->
  218. <el-dialog :title="title" :visible.sync="open" :close-on-click-modal="false" width="70%" append-to-body>
  219. <el-form ref="form" :model="form" :rules="rules" label-width="100px">
  220. <el-form-item label="接口编号" prop="apiCode">
  221. <el-input
  222. v-model="form.apiCode"
  223. placeholder="请输入接口编号"
  224. ></el-input>
  225. </el-form-item>
  226. <el-form-item label="接口名称" prop="apiName">
  227. <el-input
  228. v-model="form.apiName"
  229. placeholder="请输入接口名称"
  230. ></el-input>
  231. </el-form-item>
  232. <el-form-item label="接口url" prop="apiUrl">
  233. <el-input
  234. v-model="form.apiUrl"
  235. placeholder="请输入接口url"
  236. ></el-input>
  237. </el-form-item>
  238. <el-form-item label="是否启用" prop="status">
  239. <el-select
  240. v-model="form.status"
  241. placeholder="请选择是否启用"
  242. clearable
  243. filterable
  244. >
  245. <el-option
  246. v-for="dict in statusList"
  247. :key="dict.value + 'statusList'"
  248. :label="dict.label"
  249. :value="dict.value"
  250. />
  251. </el-select>
  252. </el-form-item>
  253. <el-form-item label="配置协议" prop="accord">
  254. <el-input
  255. v-model="form.accord"
  256. placeholder="请输入配置协议"
  257. ></el-input>
  258. </el-form-item>
  259. <el-form-item label="是否启用分布式线程">
  260. <el-radio-group v-model="form.hadoopFlag">
  261. <el-radio
  262. v-for="dict in hadoopFlagList"
  263. :key="dict.value + 'hadoopFlagList'"
  264. :label="dict.value"
  265. >{{ dict.label }}</el-radio
  266. >
  267. </el-radio-group>
  268. </el-form-item>
  269. <el-form-item label="是否数据加密">
  270. <el-radio-group v-model="form.thickenFlag">
  271. <el-radio
  272. v-for="dict in thickenFlagList"
  273. :key="dict.value + 'thickenFlagList'"
  274. :label="dict.value"
  275. >{{ dict.label }}</el-radio
  276. >
  277. </el-radio-group>
  278. </el-form-item>
  279. <el-form-item label="接口链接状态">
  280. <el-radio-group v-model="form.linkStatus">
  281. <el-radio
  282. v-for="dict in linkStatusList"
  283. :key="dict.value + 'linkStatusList'"
  284. :label="dict.value"
  285. >{{ dict.label }}</el-radio
  286. >
  287. </el-radio-group>
  288. </el-form-item>
  289. <el-form-item label="备注" prop="remark">
  290. <el-input v-model="form.remark" placeholder="请输入备注"></el-input>
  291. </el-form-item>
  292. </el-form>
  293. <div slot="footer" class="dialog-footer">
  294. <el-button type="primary" @click="submitForm">确 定</el-button>
  295. <el-button @click="cancel">取 消</el-button>
  296. </div>
  297. </el-dialog>
  298. <!-- 上传文件对话框 -->
  299. <el-dialog
  300. center
  301. title="导入"
  302. :visible.sync="openUpload"
  303. width="50%"
  304. append-to-body
  305. :close-on-click-modal="false"
  306. >
  307. <el-form
  308. ref="uploadForm"
  309. :model="uploadForm"
  310. :rules="rules"
  311. label-width="120px"
  312. >
  313. <el-form-item label="文件" prop="linkUrl">
  314. <el-upload
  315. class="upload-demo"
  316. ref="upload"
  317. action="#"
  318. :http-request="httprequest"
  319. :before-upload="uploadFile"
  320. :file-list="fileList"
  321. :auto-upload="false"
  322. :limit="1"
  323. >
  324. <el-button slot="trigger" size="small" type="primary"
  325. >选取文件</el-button
  326. >
  327. </el-upload>
  328. </el-form-item>
  329. </el-form>
  330. <div slot="footer" class="dialog-footer">
  331. <el-button type="primary" @click="submitUpload">导 入</el-button>
  332. <el-button @click="cancel">取 消</el-button>
  333. <!-- <el-button @click="cancel">取 消</el-button> -->
  334. </div>
  335. </el-dialog>
  336. </div>
  337. </template>
  338. <script>
  339. import {
  340. listAPICONFIG,
  341. getAPICONFIG,
  342. delAPICONFIG,
  343. addAPICONFIG,
  344. updateAPICONFIG,
  345. exportAPICONFIG, //导出
  346. uploadAPICONFIG, //导入
  347. upload,
  348. } from "@/api/portal/APICONFIG/APICONFIG.js";
  349. import { saveAs } from "file-saver";
  350. import { getToken } from "@/utils/auth";
  351. import axios from "axios";
  352. //我好困
  353. export default {
  354. name: "APICONFIG",
  355. data() {
  356. return {
  357. fileList:[],
  358. uploadForm:{
  359. fileName:''
  360. },
  361. openUpload: false,
  362. //是否启用(1=启用,0=不启用)
  363. statusList: [
  364. { label: "启用", value: "1" },
  365. { label: "不启用", value: "0" },
  366. ],
  367. //接口链接状态(1=成功,0=失败)
  368. linkStatusList: [
  369. { label: "成功", value: "1" },
  370. { label: "失败", value: "0" },
  371. ],
  372. //是否启用分布式线程
  373. hadoopFlagList: [
  374. { label: "启用", value: "1" },
  375. { label: "不启用", value: "0" },
  376. ],
  377. //是否数据加密
  378. thickenFlagList: [
  379. { label: "启用", value: "1" },
  380. { label: "不启用", value: "0" },
  381. ],
  382. //接口链接状态
  383. thickenFlagList: [
  384. { label: "成功", value: "1" },
  385. { label: "失败", value: "0" },
  386. ],
  387. // 根路径
  388. baseURL: process.env.VUE_APP_BASE_API,
  389. // 遮罩层
  390. loading: true,
  391. rowData: {},
  392. // 选中数组
  393. ids: [],
  394. // 非单个禁用
  395. single: true,
  396. // 非多个禁用
  397. multiple: true,
  398. // 显示搜索条件
  399. showSearch: true,
  400. // 总条数
  401. total: 0,
  402. // 数据接口api配置表格数据
  403. APICONFIGList: [],
  404. // 弹出层标题
  405. title: "",
  406. // 是否显示弹出层
  407. open: false,
  408. // 查询参数
  409. queryParams: {
  410. pageNum: 1,
  411. pageSize: 10,
  412. id: null,
  413. createTime: null,
  414. createBy: null,
  415. updateTime: null,
  416. updateBy: null,
  417. delFlag: null,
  418. deptId: null,
  419. apiCode: null,
  420. apiName: null,
  421. apiUrl: null,
  422. request: null,
  423. status: null,
  424. accord: null,
  425. hadoopFlag: null,
  426. thickenFlag: null,
  427. linkStatus: null,
  428. remark: null,
  429. },
  430. radio:'',
  431. // 表单参数
  432. form: {},
  433. // 表单校验
  434. rules: {
  435. id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
  436. delFlag: [
  437. { required: true, message: "删除标识不能为空", trigger: "blur" },
  438. ],
  439. deptId: [
  440. { required: true, message: "部门标识不能为空", trigger: "blur" },
  441. ],
  442. apiCode: [
  443. { required: true, message: "接口编号不能为空", trigger: "blur" },
  444. { pattern: /^[1-9a-zA-Z]{1,}$/, message: '接口编号只能输入数字和字母', trigger: 'blur' }
  445. ],
  446. apiName: [
  447. { required: true, message: "接口名称不能为空", trigger: "blur" },
  448. ],
  449. apiUrl: [
  450. { required: true, message: "接口url不能为空", trigger: "blur" },
  451. {pattern: /^(?:http(s)?:\/\/)?[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~:/?#[\]@!\$&'\*\+,;=.]+$/, message: '请输入正确的url链接', trigger: 'blur' }
  452. ],
  453. request: [
  454. { required: true, message: "请求参数示例不能为空", trigger: "blur" },
  455. ],
  456. status: [
  457. {
  458. required: true,
  459. message: "是否启用(1=启用,0=不启用)不能为空",
  460. trigger: "blur",
  461. },
  462. ],
  463. accord: [
  464. { required: true, message: "配置协议不能为空", trigger: "blur" },
  465. ],
  466. hadoopFlag: [
  467. {
  468. required: true,
  469. message: "是否启用分布式线程(1=启用,0=不启用)不能为空",
  470. trigger: "blur",
  471. },
  472. ],
  473. thickenFlag: [
  474. {
  475. required: true,
  476. message: "是否数据加密(1=启用,0=不启用)不能为空",
  477. trigger: "blur",
  478. },
  479. ],
  480. linkStatus: [
  481. {
  482. required: true,
  483. message: "接口链接状态(1=成功,0=失败)不能为空",
  484. trigger: "blur",
  485. },
  486. ],
  487. remark: [{ required: true, message: "备注不能为空", trigger: "blur" }],
  488. },
  489. };
  490. },
  491. created() {
  492. this.getList();
  493. },
  494. methods: {
  495. submitUpload() {
  496. this.$refs.upload.submit();
  497. },
  498. //导入
  499. uploadFile(file) {
  500. let formData = new FormData();
  501. formData.append("file", file);
  502. formData.append("type", this.uploadForm.type);
  503. uploadAPICONFIG(formData)
  504. this.cancel()
  505. this.openUpload = false
  506. },
  507. httprequest() {},
  508. /** 查询数据接口api配置列表 */
  509. getList() {
  510. this.loading = true;
  511. listAPICONFIG(this.queryParams).then((response) => {
  512. this.APICONFIGList = response.rows;
  513. this.total = response.total;
  514. this.loading = false;
  515. });
  516. },
  517. // 取消按钮
  518. cancel() {
  519. this.open = false;
  520. this.openUpload = false;
  521. this.reset();
  522. },
  523. getCurrentRow(val) {
  524. console.log(val);
  525. },
  526. // 表单重置
  527. reset() {
  528. this.form = {
  529. id: null,
  530. delFlag: null,
  531. deptId: null,
  532. apiCode: null,
  533. apiName: null,
  534. apiUrl: null,
  535. request: null,
  536. status: null,
  537. accord: null,
  538. hadoopFlag: null,
  539. thickenFlag: null,
  540. linkStatus: null,
  541. remark: null,
  542. };
  543. this.fileList = []
  544. this.resetForm("form");
  545. },
  546. /** 搜索按钮操作 */
  547. handleQuery() {
  548. this.queryParams.pageNum = 1;
  549. this.getList();
  550. },
  551. /** 重置按钮操作 */
  552. resetQuery() {
  553. this.resetForm("queryForm");
  554. this.handleQuery();
  555. },
  556. // 多选框选中数据
  557. handleSelectionChange(selection) {
  558. // this.ids = selection.map((item) => item.id);
  559. // this.single = selection.length !== 1;
  560. // this.multiple = !selection.length;
  561. },
  562. /** 新增按钮操作 */
  563. handleAdd() {
  564. this.reset();
  565. this.open = true;
  566. this.title = "添加数据接口api配置";
  567. },
  568. /** 修改按钮操作 */
  569. handleUpdate(row) {
  570. this.reset();
  571. const id = row.id || this.ids;
  572. getAPICONFIG(id).then((response) => {
  573. this.form = response.data;
  574. this.open = true;
  575. this.title = "修改数据接口api配置";
  576. });
  577. },
  578. /** 提交按钮 */
  579. submitForm() {
  580. this.$refs["form"].validate((valid) => {
  581. if (valid) {
  582. if (this.form.id != null) {
  583. updateAPICONFIG(this.form).then((response) => {
  584. this.$modal.msgSuccess("修改成功");
  585. this.open = false;
  586. this.getList();
  587. });
  588. } else {
  589. addAPICONFIG(this.form).then((response) => {
  590. this.$modal.msgSuccess("新增成功");
  591. this.open = false;
  592. this.getList();
  593. });
  594. }
  595. }
  596. });
  597. },
  598. /** 删除按钮操作 */
  599. handleDelete(row) {
  600. const ids = row.id || this.ids;
  601. this.$modal
  602. .confirm('确定删除吗?')
  603. .then(function () {
  604. return delAPICONFIG(ids);
  605. })
  606. .then(() => {
  607. this.getList();
  608. this.$modal.msgSuccess("删除成功");
  609. })
  610. .catch(() => {});
  611. },
  612. /** 点击导入按钮操作 */
  613. handleupload() {
  614. uploadAPICONFIG(this.uploadForm.fileName)
  615. this.cancel()
  616. this.openUpload = false
  617. },
  618. /** 导出按钮操作 */
  619. // handleExport(id) {
  620. // exportAPICONFIG(id).then(res=>{
  621. // })
  622. // },
  623. showRow(row) {
  624. //赋值给radio
  625. this.radio = this.APICONFIGList.indexOf(row);
  626. this.rowData = row;
  627. this.ids = row.id;
  628. this.single = false;
  629. this.multiple = false;
  630. },
  631. handleDownload() {
  632. let row = this.rowData;
  633. axios({
  634. url: process.env.VUE_APP_BASE_API + "/APICONFIG/export/",
  635. method: "post",
  636. responseType: "blob",
  637. data:row,
  638. headers: {
  639. Authorization: "Bearer " + getToken(),
  640. },
  641. }).then((res) => {
  642. // const temp = res.headers["content-disposition"]
  643. // .split(";")[1]
  644. // .split("filename=")[1];
  645. // const fileName = decodeURIComponent(temp);
  646. const blob = new Blob([res.data]);
  647. saveAs(blob, row.apiName+'.xlsx');
  648. this.getList();
  649. });
  650. },
  651. },
  652. };
  653. </script>