Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
liangzhen
/
framework-tools-web
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 848fefcf
authored
Dec 06, 2023
by
Thews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
20231206wangwansu
1 parent
fe7dc887
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
0 deletions
src/api/index.js
src/views/JiaGouYuanShuGuanXiGuanLi/index.vue
src/api/index.js
View file @
848fefc
...
...
@@ -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
);
...
...
src/views/JiaGouYuanShuGuanXiGuanLi/index.vue
View file @
848fefc
...
...
@@ -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
>
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment