仪表盘
版本库
文件存储
活动
搜索
登录
main
/
PLTWEB
平台WEB项目
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
Merge remote-tracking branch 'origin/master'
ludc
2024-07-24
dfd77a2f5f905e27216b87d207f9fe8c4035e797
[PLTWEB.git]
/
Source
/
plt-web
/
plt-web-ui
/
src
/
api
/
modeling
/
attributePool
/
api.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import request from '@/router/axios';
// 列表查询
export function gridAttribute(page,limit,params) {
return request({
url: "/api/attributeController/gridAttribute",
method: "get",
params:{
page,
limit,
...params
}
});
}