index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. <template>
  2. <el-container>
  3. <el-header height="60px" class="content-header">
  4. <MyHeader :title="'统一接入反馈表'" :formData="headerFormData" @submit="handleHeaderFormSubmit"></MyHeader>
  5. </el-header>
  6. <el-container>
  7. <el-main>
  8. <MyTableHeader
  9. :title="tableHeaderTitle"
  10. :tabs="tabs"
  11. :buttons="buttons"
  12. @tabClick="handleTabClick"
  13. @buttonClick="handleButtonClick"
  14. ></MyTableHeader>
  15. <MyTable :tableData="tableData" :formData="formData" :minWidth="400">
  16. <!-- 自定义操作按钮,传递 row 和 index -->
  17. <template #operation="{ row, index }">
  18. <el-button size="mini" @click="handleView(row, index)" type="primary">查看</el-button>
  19. <el-button size="mini" @click="handleEdit(row, index)" type="primary">编辑</el-button>
  20. <el-button
  21. size="mini"
  22. @click="handleSubmit(row, index)"
  23. type="primary"
  24. v-if="activeTabLable !== 2"
  25. >提交</el-button>
  26. <el-button
  27. size="mini"
  28. @click="handleRevoke(row, index)"
  29. type="primary"
  30. v-if="activeTabLable !== 2"
  31. >撤回</el-button>
  32. <el-button size="mini" @click="handleCatalog(row, index)" type="primary">编目</el-button>
  33. <el-button
  34. size="mini"
  35. @click="handleUpperChain(row, index)"
  36. type="primary"
  37. v-if="activeTabLable !== 1"
  38. >上链</el-button>
  39. <el-button size="mini" @click="handleDelete(index)" type="primary">删除</el-button>
  40. </template>
  41. </MyTable>
  42. <MyPagination
  43. :total="tableTotal"
  44. :page-size="pageSize"
  45. :current-page="currentPage"
  46. @pageChange="pagi_changePage"
  47. @sizeChange="pagi_changeSize"
  48. ></MyPagination>
  49. </el-main>
  50. </el-container>
  51. <div v-if="showDialog">
  52. <FeedbackDialog
  53. v-model="showDialog"
  54. :title="title"
  55. :rowObj="rowObj"
  56. @confirm="confirmHandle"
  57. ></FeedbackDialog>
  58. </div>
  59. </el-container>
  60. </template>
  61. <script>
  62. import {getTabAccessFeedbackList} from '@/api/unified-access/access-feedback.js'
  63. import FeedbackDialog from "./dialog/FeedbackDialog.vue";
  64. import MyHeader from "@/components/MyHeader";
  65. import MyTable from "@/components/MyTable";
  66. import MyPagination from "@/components/MyPagination";
  67. import MyTableHeader from "@/components/MyTableHeader";
  68. export default {
  69. name: "user-manage",
  70. components: {
  71. MyHeader,
  72. MyTableHeader,
  73. MyTable,
  74. MyPagination,
  75. FeedbackDialog
  76. },
  77. data() {
  78. return {
  79. rowObj: {},
  80. title: "",
  81. uploadUrl: process.env.VUE_APP_BASE_API + "/web/tab-file-info/upload",
  82. showDialog: false,
  83. searchForm: {},
  84. tableData: [
  85. { name: "张三", age: 25, address: "北京市" },
  86. { name: "李四", age: 30, address: "上海市" },
  87. { name: "王五", age: 22, address: "广州市" }
  88. ],
  89. formData: [
  90. {
  91. label: "数据源所需单位",
  92. fieldName: "name",
  93. type: "input",
  94. showInTable: true,
  95. value: "",
  96. width: ""
  97. },
  98. {
  99. label: "数据源所需部门",
  100. fieldName: "age",
  101. type: "input",
  102. showInTable: true,
  103. value: "",
  104. width: ""
  105. },
  106. {
  107. label: "数据源联系人",
  108. fieldName: "address",
  109. type: "input",
  110. showInTable: true,
  111. value: "",
  112. width: ""
  113. },
  114. {
  115. label: "数据源联系电话",
  116. fieldName: "address",
  117. type: "input",
  118. showInTable: true,
  119. value: "",
  120. width: ""
  121. },
  122. {
  123. label: "数据源所属信息系统",
  124. fieldName: "address",
  125. type: "input",
  126. showInTable: true,
  127. value: "",
  128. width: ""
  129. },
  130. {
  131. label: "数据源所属信息系统IP端口",
  132. fieldName: "address",
  133. type: "input",
  134. showInTable: true,
  135. value: "",
  136. width: ""
  137. },
  138. {
  139. label: "接收方所属单位",
  140. fieldName: "address",
  141. type: "input",
  142. showInTable: true,
  143. value: "",
  144. width: ""
  145. },
  146. {
  147. label: "接收方所属部门",
  148. fieldName: "address",
  149. type: "input",
  150. showInTable: true,
  151. value: "",
  152. width: ""
  153. },
  154. {
  155. label: "接收方所属信息系统",
  156. fieldName: "address",
  157. type: "input",
  158. showInTable: true,
  159. value: "",
  160. width: ""
  161. },
  162. {
  163. label: "数据项目",
  164. fieldName: "address",
  165. type: "input",
  166. showInTable: true,
  167. value: "",
  168. width: ""
  169. },
  170. {
  171. label: "拟/正式运行时间",
  172. fieldName: "address",
  173. type: "input",
  174. showInTable: true,
  175. value: "",
  176. width: ""
  177. },
  178. {
  179. label: "接入方式",
  180. fieldName: "address",
  181. type: "input",
  182. showInTable: true,
  183. value: "",
  184. width: ""
  185. },
  186. {
  187. label: "状态",
  188. fieldName: "address",
  189. type: "input",
  190. showInTable: true,
  191. value: "",
  192. width: "80"
  193. }
  194. ],
  195. tableTotal: 0,
  196. pageSize: 10,
  197. currentPage: 1,
  198. treeSearchVal: "",
  199. tableHeaderTitle: "项目列表",
  200. activeTabLable: "全部",
  201. tabs: [
  202. { label: "全部", value: 1, active: true },
  203. {
  204. label: "正式运行",
  205. value: 2,
  206. active: false
  207. },
  208. { label: "申请反馈", value: 3, active: false }
  209. ],
  210. buttons: [
  211. {
  212. label: "新建",
  213. type: "primary",
  214. methodName: "action1",
  215. icon: "el-icon-circle-plus"
  216. },
  217. {
  218. label: "删除",
  219. type: "primary",
  220. methodName: "action2",
  221. icon: "el-icon-remove"
  222. },
  223. {
  224. label: "启用",
  225. type: "primary",
  226. methodName: "action3",
  227. icon: "el-icon-video-play"
  228. },
  229. {
  230. label: "停用",
  231. type: "primary",
  232. methodName: "action4",
  233. icon: "el-icon-video-pause"
  234. },
  235. {
  236. label: "导入",
  237. type: "primary",
  238. methodName: "action5",
  239. icon: "el-icon-download"
  240. },
  241. {
  242. label: "导出",
  243. type: "primary",
  244. methodName: "action6",
  245. icon: "el-icon-upload2"
  246. }
  247. ],
  248. headerFormData: [
  249. {
  250. label: "数据资源名称",
  251. fieldName: "dataMane",
  252. type: "input",
  253. value: "",
  254. placeholder: "请输入用户分类"
  255. // isRequired: true,
  256. },
  257. {
  258. label: "状态",
  259. fieldName: "username",
  260. type: "input",
  261. value: "",
  262. placeholder: "请输入用户状态"
  263. // isRequired: true,
  264. }
  265. // {
  266. // label: "用户状态",
  267. // fieldName: "gender",
  268. // type: "select",
  269. // value: "",
  270. // placeholder: "请选择用户状态",
  271. // isRequired: true,
  272. // options: [
  273. // { label: "男", value: "male" },
  274. // { label: "女", value: "female" },
  275. // ],
  276. // },
  277. // {
  278. // label: "生日",
  279. // fieldName: "birthdate",
  280. // type: "date",
  281. // value: "",
  282. // placeholder: "请选择生日",
  283. // isRequired: false,
  284. // },
  285. ]
  286. };
  287. },
  288. methods: {
  289. // 头部搜索框
  290. handleHeaderFormSubmit(form) {
  291. this.searchForm = form;
  292. this.getList();
  293. },
  294. // 列表头部功能按钮
  295. handleButtonClick(methodName) {
  296. console.log(methodName, "methodName");
  297. switch (methodName) {
  298. case "action1":
  299. // 新增
  300. this.rowObj = {};
  301. this.title = "新增";
  302. this.showDialog = true;
  303. break;
  304. case "action2":
  305. // 导出
  306. if (this.selectedRows.length > 0) {
  307. // exportTabAccessConfig().then((res) => {
  308. // if (+res.code === 200) {
  309. // }
  310. // });
  311. let ids = [];
  312. ids = this.selectedRows.map(item => item.id);
  313. this.download(
  314. "/web/tab-access-config/export",
  315. {
  316. ids
  317. },
  318. `统一接入配置_${new Date().getTime()}.xlsx`
  319. );
  320. } else {
  321. this.$confirm("请选择列表项?", "提示", {
  322. confirmButtonText: "关闭",
  323. cancelButtonText: "取消",
  324. showCancelButton: false,
  325. showConfirmButton: false,
  326. type: "warning",
  327. center: true
  328. })
  329. .then(() => {})
  330. .catch(() => {});
  331. }
  332. break;
  333. default:
  334. break;
  335. }
  336. },
  337. // 树结构点击
  338. handleNodeClick() {},
  339. // 列表头部
  340. handleTabClick(tab) {
  341. this.tabs.forEach(item => {
  342. if (item.label === tab.label) {
  343. item.active = true;
  344. this.activeTabLable = tab.value;
  345. if (item.label === "正式运行") {
  346. this.formData.forEach(item => {
  347. // if (item.label==='正式运行时间') {
  348. // }
  349. });
  350. }
  351. } else {
  352. item.active = false;
  353. }
  354. });
  355. },
  356. getList() {
  357. getTabAccessFeedbackList({
  358. pageNum: this.currentPage,
  359. pageSize: this.pageSize,
  360. fileName: this.searchName,
  361. }).then((res) => {
  362. if (+res.code === 200) {
  363. this.tableData = res.data;
  364. this.tableTotal = +res.total;
  365. }
  366. })
  367. },
  368. // 列表分页
  369. pagi_changePage(page) {
  370. this.currentPage = page;
  371. this.getList();
  372. },
  373. pagi_changeSize(size) {
  374. this.pageSize = size;
  375. this.getList();
  376. },
  377. handleView(row) {
  378. this.rowObj = row;
  379. this.title = "查看";
  380. this.showDialog = true;
  381. },
  382. handleEdit(row) {
  383. console.log(row, "row");
  384. this.rowObj = row;
  385. this.title = "编辑";
  386. this.showDialog = true;
  387. },
  388. handleDelete(row) {
  389. this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
  390. confirmButtonText: "确定",
  391. cancelButtonText: "取消",
  392. center: true,
  393. type: "warning"
  394. })
  395. .then(() => {
  396. delTabAccessList({ ids: [row.id] }).then(res => {
  397. if (+res.code === 200) {
  398. this.$message({
  399. message: res.msg,
  400. type: "success"
  401. });
  402. this.getList();
  403. } else {
  404. this.$message.error(res.msg);
  405. }
  406. });
  407. })
  408. .catch(() => {
  409. this.$message({
  410. type: "info",
  411. message: "已取消删除"
  412. });
  413. });
  414. },
  415. confirmHandle(){
  416. this.showDialog=false
  417. this.getList()
  418. }
  419. },
  420. created() {},
  421. mounted() {
  422. this.getList()
  423. }
  424. };
  425. </script>
  426. <style lang="scss" scoped>
  427. .el-main {
  428. padding: 0 20px;
  429. }
  430. .el-icon-search {
  431. font-size: 16px;
  432. font-weight: 700;
  433. color: #1e80e0;
  434. }
  435. </style>