Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
csbr-daop
/
fe-data-trusted-space
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
43e56b4d
authored
2025-06-18 17:35:01 +0800
by
fanguang
Committed by
lihua
2025-06-30 14:27:54 +0800
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
元数据标准
1 parent
fcab5c40
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
0 deletions
src/api/modules/dataMetaService.ts
src/views/data_meta/components/dictFileds.vue
src/views/data_meta/standard-codetable.vue
src/api/modules/dataMetaService.ts
View file @
43e56b4
...
...
@@ -273,3 +273,37 @@ export const getStandardCodeDetail = (guid) => request({
url
:
`
${
import
.
meta
.
env
.
VITE_APP_STANDARD_URL
}
/standard-code/detail?guid=
${
guid
}
`
,
method
:
'get'
,
})
/** 元数据-标准代码删除 */
export
const
deleteStandardCode
=
(
params
)
=>
request
({
url
:
`
${
import
.
meta
.
env
.
VITE_APP_STANDARD_URL
}
/standard-code/delete`
,
method
:
'delete'
,
data
:
params
})
/** 元数据-查询标准列表 */
export
const
getStandardCodeStandard
=
(
standardTypeCode
)
=>
request
({
url
:
`
${
import
.
meta
.
env
.
VITE_APP_STANDARD_URL
}
/standard-code/get-standard?standardTypeCode=
${
standardTypeCode
}
`
,
method
:
'get'
})
/** 元数据-查询代码列表 */
export
const
getStandardCodeDataList
=
(
params
)
=>
request
({
url
:
`
${
import
.
meta
.
env
.
VITE_APP_STANDARD_URL
}
/standard-code/data/get-data`
,
method
:
'post'
,
data
:
params
})
/** 元数据-查询代码字段数据 */
export
const
getStandardCodeFields
=
(
standardGuid
)
=>
request
({
url
:
`
${
import
.
meta
.
env
.
VITE_APP_STANDARD_URL
}
/standard-code/get-field?standardGuid=
${
standardGuid
}
`
,
method
:
'get'
})
/** 元数据-保存标准代码数据 */
export
const
saveStandardCodeFieldsData
=
(
params
)
=>
request
({
url
:
`
${
import
.
meta
.
env
.
VITE_APP_STANDARD_URL
}
/standard-code/data/save-data`
,
method
:
'post'
,
data
:
params
})
/** 元数据-删除标准代码数据 */
export
const
deleteStandardCodeFieldsData
=
(
params
)
=>
request
({
url
:
`
${
import
.
meta
.
env
.
VITE_APP_STANDARD_URL
}
/standard-code/data/remove-data`
,
method
:
'post'
,
data
:
params
})
\ No newline at end of file
...
...
src/views/data_meta/components/dictFileds.vue
0 → 100644
View file @
43e56b4
This diff is collapsed.
Click to expand it.
src/views/data_meta/standard-codetable.vue
View file @
43e56b4
This diff is collapsed.
Click to expand it.
Write
Preview
Styling with
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