123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- <template>
- <el-container>
- <el-header height="60px" class="content-header">
- <MyHeader :title="'统一接入反馈表'" :formData="headerFormData" @submit="handleHeaderFormSubmit"></MyHeader>
- </el-header>
- <el-container>
- <el-main>
- <MyTableHeader
- :title="tableHeaderTitle"
- :tabs="tabs"
- :buttons="buttons"
- @tabClick="handleTabClick"
- @buttonClick="handleButtonClick"
- ></MyTableHeader>
- <MyTable :tableData="tableData" :formData="formData" :minWidth="400">
- <!-- 自定义操作按钮,传递 row 和 index -->
- <template #operation="{ row, index }">
- <el-button size="mini" @click="handleView(row, index)" type="primary">查看</el-button>
- <el-button size="mini" @click="handleEdit(row, index)" type="primary">编辑</el-button>
- <el-button
- size="mini"
- @click="handleSubmit(row, index)"
- type="primary"
- v-if="activeTabLable !== 2"
- >提交</el-button>
- <el-button
- size="mini"
- @click="handleRevoke(row, index)"
- type="primary"
- v-if="activeTabLable !== 2"
- >撤回</el-button>
- <el-button size="mini" @click="handleCatalog(row, index)" type="primary">编目</el-button>
- <el-button
- size="mini"
- @click="handleUpperChain(row, index)"
- type="primary"
- v-if="activeTabLable !== 1"
- >上链</el-button>
- <el-button size="mini" @click="handleDelete(index)" type="primary">删除</el-button>
- </template>
- </MyTable>
- <MyPagination
- :total="tableTotal"
- :page-size="pageSize"
- :current-page="currentPage"
- @pageChange="pagi_changePage"
- @sizeChange="pagi_changeSize"
- ></MyPagination>
- </el-main>
- </el-container>
- <div v-if="showDialog">
- <FeedbackDialog
- v-model="showDialog"
- :title="title"
- :rowObj="rowObj"
- @confirm="confirmHandle"
- ></FeedbackDialog>
- </div>
- </el-container>
- </template>
- <script>
- import {getTabAccessFeedbackList} from '@/api/unified-access/access-feedback.js'
- import FeedbackDialog from "./dialog/FeedbackDialog.vue";
- import MyHeader from "@/components/MyHeader";
- import MyTable from "@/components/MyTable";
- import MyPagination from "@/components/MyPagination";
- import MyTableHeader from "@/components/MyTableHeader";
- export default {
- name: "user-manage",
- components: {
- MyHeader,
- MyTableHeader,
- MyTable,
- MyPagination,
- FeedbackDialog
- },
- data() {
- return {
- rowObj: {},
- title: "",
- uploadUrl: process.env.VUE_APP_BASE_API + "/web/tab-file-info/upload",
- showDialog: false,
- searchForm: {},
- tableData: [
- { name: "张三", age: 25, address: "北京市" },
- { name: "李四", age: 30, address: "上海市" },
- { name: "王五", age: 22, address: "广州市" }
- ],
- formData: [
- {
- label: "数据源所需单位",
- fieldName: "name",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "数据源所需部门",
- fieldName: "age",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "数据源联系人",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "数据源联系电话",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "数据源所属信息系统",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "数据源所属信息系统IP端口",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "接收方所属单位",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "接收方所属部门",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "接收方所属信息系统",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "数据项目",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "拟/正式运行时间",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "接入方式",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: ""
- },
- {
- label: "状态",
- fieldName: "address",
- type: "input",
- showInTable: true,
- value: "",
- width: "80"
- }
- ],
- tableTotal: 0,
- pageSize: 10,
- currentPage: 1,
- treeSearchVal: "",
- tableHeaderTitle: "项目列表",
- activeTabLable: "全部",
- tabs: [
- { label: "全部", value: 1, active: true },
- {
- label: "正式运行",
- value: 2,
- active: false
- },
- { label: "申请反馈", value: 3, active: false }
- ],
- buttons: [
- {
- label: "新建",
- type: "primary",
- methodName: "action1",
- icon: "el-icon-circle-plus"
- },
- {
- label: "删除",
- type: "primary",
- methodName: "action2",
- icon: "el-icon-remove"
- },
- {
- label: "启用",
- type: "primary",
- methodName: "action3",
- icon: "el-icon-video-play"
- },
- {
- label: "停用",
- type: "primary",
- methodName: "action4",
- icon: "el-icon-video-pause"
- },
- {
- label: "导入",
- type: "primary",
- methodName: "action5",
- icon: "el-icon-download"
- },
- {
- label: "导出",
- type: "primary",
- methodName: "action6",
- icon: "el-icon-upload2"
- }
- ],
- headerFormData: [
- {
- label: "数据资源名称",
- fieldName: "dataMane",
- type: "input",
- value: "",
- placeholder: "请输入用户分类"
- // isRequired: true,
- },
- {
- label: "状态",
- fieldName: "username",
- type: "input",
- value: "",
- placeholder: "请输入用户状态"
- // isRequired: true,
- }
- // {
- // label: "用户状态",
- // fieldName: "gender",
- // type: "select",
- // value: "",
- // placeholder: "请选择用户状态",
- // isRequired: true,
- // options: [
- // { label: "男", value: "male" },
- // { label: "女", value: "female" },
- // ],
- // },
- // {
- // label: "生日",
- // fieldName: "birthdate",
- // type: "date",
- // value: "",
- // placeholder: "请选择生日",
- // isRequired: false,
- // },
- ]
- };
- },
- methods: {
- // 头部搜索框
- handleHeaderFormSubmit(form) {
- this.searchForm = form;
- this.getList();
- },
- // 列表头部功能按钮
- handleButtonClick(methodName) {
- console.log(methodName, "methodName");
- switch (methodName) {
- case "action1":
- // 新增
- this.rowObj = {};
- this.title = "新增";
- this.showDialog = true;
- break;
- case "action2":
- // 导出
- if (this.selectedRows.length > 0) {
- // exportTabAccessConfig().then((res) => {
- // if (+res.code === 200) {
- // }
- // });
- let ids = [];
- ids = this.selectedRows.map(item => item.id);
- this.download(
- "/web/tab-access-config/export",
- {
- ids
- },
- `统一接入配置_${new Date().getTime()}.xlsx`
- );
- } else {
- this.$confirm("请选择列表项?", "提示", {
- confirmButtonText: "关闭",
- cancelButtonText: "取消",
- showCancelButton: false,
- showConfirmButton: false,
- type: "warning",
- center: true
- })
- .then(() => {})
- .catch(() => {});
- }
- break;
- default:
- break;
- }
- },
- // 树结构点击
- handleNodeClick() {},
- // 列表头部
- handleTabClick(tab) {
- this.tabs.forEach(item => {
- if (item.label === tab.label) {
- item.active = true;
- this.activeTabLable = tab.value;
- if (item.label === "正式运行") {
- this.formData.forEach(item => {
- // if (item.label==='正式运行时间') {
- // }
- });
- }
- } else {
- item.active = false;
- }
- });
- },
- getList() {
- getTabAccessFeedbackList({
- pageNum: this.currentPage,
- pageSize: this.pageSize,
- fileName: this.searchName,
- }).then((res) => {
- if (+res.code === 200) {
- this.tableData = res.data;
- this.tableTotal = +res.total;
- }
- })
- },
- // 列表分页
- pagi_changePage(page) {
- this.currentPage = page;
- this.getList();
- },
- pagi_changeSize(size) {
- this.pageSize = size;
- this.getList();
- },
- handleView(row) {
- this.rowObj = row;
- this.title = "查看";
- this.showDialog = true;
- },
- handleEdit(row) {
- console.log(row, "row");
- this.rowObj = row;
- this.title = "编辑";
- this.showDialog = true;
- },
- handleDelete(row) {
- this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- center: true,
- type: "warning"
- })
- .then(() => {
- delTabAccessList({ ids: [row.id] }).then(res => {
- if (+res.code === 200) {
- this.$message({
- message: res.msg,
- type: "success"
- });
- this.getList();
- } else {
- this.$message.error(res.msg);
- }
- });
- })
- .catch(() => {
- this.$message({
- type: "info",
- message: "已取消删除"
- });
- });
- },
- confirmHandle(){
- this.showDialog=false
- this.getList()
- }
- },
- created() {},
- mounted() {
- this.getList()
- }
- };
- </script>
- <style lang="scss" scoped>
- .el-main {
- padding: 0 20px;
- }
- .el-icon-search {
- font-size: 16px;
- font-weight: 700;
- color: #1e80e0;
- }
- </style>
|