Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qr-consistency-vue3
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘怀志
qr-consistency-vue3
Commits
c8415ccc
Commit
c8415ccc
authored
May 07, 2025
by
Mr.Tang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
国内国际关键零部件
parent
97e91406
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
667 additions
and
263 deletions
+667
-263
baseLawPartCertificateMiddle.js
src/api/RelationManagement/baseLawPartCertificateMiddle.js
+42
-0
baseLawPartRelation.js
src/api/RelationManagement/baseLawPartRelation.js
+78
-0
en.json
...elationshipManagement/internationalRegulationPart/en.json
+1
-1
index.vue
...n/relationshipManagement/domesticRegulationPart/index.vue
+297
-136
index.vue
...ationshipManagement/internationalRegulationPart/index.vue
+249
-126
No files found.
src/api/RelationManagement/baseLawPartCertificateMiddle.js
0 → 100644
View file @
c8415ccc
import
request
from
'@/utils/request'
export
function
list
(
query
)
{
return
request
({
url
:
'/control/lawPartMiddle/list'
,
method
:
'get'
,
data
:
query
,
})
}
export
function
moveUp
(
id
)
{
return
request
({
url
:
`/control/lawPartMiddle/up/
${
id
}
`
,
method
:
'put'
,
})
}
export
function
moveDown
(
id
)
{
return
request
({
url
:
`/control/lawPartMiddle/down/
${
id
}
`
,
method
:
'put'
,
})
}
export
function
addMiddle
(
data
)
{
return
request
({
url
:
'/control/lawPartMiddle'
,
method
:
'post'
,
data
:
data
,
})
}
export
function
updateMiddle
(
data
)
{
return
request
({
url
:
'/control/lawPartMiddle'
,
method
:
'put'
,
data
:
data
,
})
}
// 删除国际法规与关键件对应数据维护类型描述
export
function
delMiddle
(
id
)
{
return
request
({
url
:
'/control/lawPartMiddle/'
+
id
,
method
:
'delete'
,
})
}
src/api/RelationManagement/baseLawPartRelation.js
0 → 100644
View file @
c8415ccc
import
request
from
'@/utils/request'
/**国内分页查询*/
export
function
listRelation
(
query
)
{
return
request
({
url
:
'/control/lawPartRelation/chinaList'
,
method
:
'post'
,
data
:
query
,
})
}
/**国际分页查询*/
export
function
listInternationalRelation
(
query
)
{
return
request
({
url
:
'/control/lawPartRelation/internatList'
,
method
:
'post'
,
data
:
query
,
})
}
/**查询零件详情*/
export
function
partDetails
(
query
)
{
return
request
({
url
:
'/control/lawPartRelation/partDetails'
,
method
:
'post'
,
data
:
query
,
})
}
// 新增法规与关键件对应数据管理
export
function
addRelation
(
data
)
{
return
request
({
url
:
'/control/lawPartRelation/add'
,
method
:
'post'
,
data
:
data
,
})
}
// 修改法规与关键件对应数据管理
export
function
updateRelation
(
data
)
{
return
request
({
url
:
'/control/relation'
,
method
:
'put'
,
data
:
data
,
})
}
/** 批量添加对应关系*/
export
function
addBatchRelation
(
query
)
{
return
request
({
url
:
'/control/lawPartRelation/add'
,
method
:
'post'
,
data
:
query
,
})
}
/** 移除对应关系 */
export
function
delRelation
(
id
)
{
return
request
({
url
:
'/control/lawPartRelation/del/'
+
id
,
method
:
'delete'
,
})
}
/**查询没有关联的零部件 */
export
function
selectNoRelatePart
(
query
)
{
return
request
({
url
:
'/control/lawPartRelation/selectNo'
,
method
:
'post'
,
data
:
query
,
})
}
/** 查询可以关联的法规*/
export
function
selectCanRelateLaw
(
query
)
{
return
request
({
url
:
'/control/lawPartRelation/law'
,
method
:
'post'
,
data
:
[
query
],
})
}
src/locales/controlPlan/relationshipManagement/internationalRegulationPart/en.json
View file @
c8415ccc
...
...
@@ -10,7 +10,7 @@
"order"
:
"order"
,
"createTime"
:
"Create Time"
,
"updateTime"
:
"Update Time"
,
"operation"
:
"
o
peration"
,
"operation"
:
"
O
peration"
,
"add"
:
"add"
,
"handleUpdate"
:
"Edit"
,
"handleDelete"
:
"Delete"
,
...
...
src/views/controlPlan/relationshipManagement/domesticRegulationPart/index.vue
View file @
c8415ccc
This diff is collapsed.
Click to expand it.
src/views/controlPlan/relationshipManagement/internationalRegulationPart/index.vue
View file @
c8415ccc
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment