Commit 848fefcf by Thews

20231206wangwansu

1 parent fe7dc887
......@@ -4,6 +4,13 @@ import { get, post } from '@/utils/http';
export function query_jia_gou_yuan_su_guan_xi_table(params) {//架构元素关系表格
return get('/ele/', params);
}
// 架构元素关系管理
// 列表查询
export function getJGYSGLlist(params) {
return get('/eleRel/', params);
}
// 导入列表
export function offlineQuery(params) {
return post(`/anasz-smart-screen/offlineQuery/`, params);
......
......@@ -133,6 +133,10 @@
<script>
import {
getJGYSGLlist,
} from "@/api/index.js";
export default {
name: 'JiaGouYuanShuGuanXiGuanLi',
components: {
......@@ -153,9 +157,39 @@ export default {
let2: '',
let3: '',
let4: '',
params: {
"current": 1,
"delFlag": 0,
"id": 0,
"pageSize": 10,
"rsName": "",
"scope": "",
"state": 0,
}
};
},
mounted() {
// 查询列表
this.getList();
},
created() {
},
methods: {
getList() {
console.log(this.params);
getJGYSGLlist(this.params).then(res => {
console.log(res);
if (res.code == 200) {
// this.page.total = res.data.total;
// this.tableData = res.data.records;
// console.log(this.tableData);
}
});
},
},
}
</script>
<style scoped>
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!