Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
7e75ba60
authored
2023-02-01 14:49:15 +0800
by
yangwei
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
无用文件删除
1 parent
a1aee7bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
45 deletions
src/api/dictionaries.js
src/api/dictionaries.js
deleted
100644 → 0
View file @
a1aee7b
import
request
from
'@/utils/request'
class
dictionaries
{
// 获取整个字典数据
async
getDicData
(
data
)
{
return
request
({
url
:
'/SysDict/getJson'
,
method
:
'get'
})
}
// 编辑
async
editSysDict
(
data
)
{
return
request
({
url
:
'/SysDict/editSysDictByTypeId'
,
method
:
'post'
,
data
})
}
// 获取字典表父级集合
async
getSysDictParent
(
data
)
{
return
request
({
url
:
'/SysDict/getSysDictParent'
,
method
:
'post'
,
data
})
}
// 编辑界面获取指定字典编码子集
async
getSysDictByTypeId
(
id
)
{
return
request
({
url
:
'/SysDict/getSysDictByTypeId'
,
method
:
'get'
,
params
:
{
typeId
:
id
}
})
}
// 接入业务信息表
async
getAllSysJrywxx
()
{
return
request
({
url
:
'/sysJrywxx/getAllSysJrywxx'
,
method
:
'get'
})
}
}
export
default
new
dictionaries
()
\ No newline at end of file
Please
register
or
sign in
to post a comment