Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
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
周远喜
mes-ui
Commits
04223034
Commit
04223034
authored
Oct 16, 2020
by
骆瑛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改导入功能
parent
56e60186
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
387 additions
and
410 deletions
+387
-410
add.vue
pages/system/project/atom/add.vue
+166
-148
api.js
pages/system/project/atom/api.js
+3
-0
edit.vue
pages/system/project/atom/edit.vue
+191
-218
index.vue
pages/system/project/atom/index.vue
+2
-2
add.vue
pages/system/project/project/add.vue
+2
-2
detail.vue
pages/system/project/project/detail.vue
+0
-19
index.vue
pages/system/project/project/index.vue
+23
-21
No files found.
pages/system/project/atom/add.vue
View file @
04223034
This diff is collapsed.
Click to expand it.
pages/system/project/atom/api.js
View file @
04223034
...
...
@@ -4,6 +4,9 @@ export default {
paged
(
params
)
{
return
Api
.
post
(
`
${
systemUrl
}
/projectatom/paged`
,
params
);
},
list
(
params
)
{
return
Api
.
post
(
`
${
systemUrl
}
/projectatom/list`
,
params
);
},
get
(
params
)
{
return
Api
.
get
(
`
${
systemUrl
}
/projectatom/get`
,
params
);
},
...
...
pages/system/project/atom/edit.vue
View file @
04223034
This diff is collapsed.
Click to expand it.
pages/system/project/atom/index.vue
View file @
04223034
...
...
@@ -113,7 +113,7 @@ export default {
easy
:
true
,
high
:
true
,
},
{
key
:
"status"
,
title
:
this
.
l
(
"status"
),
align
:
"left"
,
high
:
true
},
{
key
:
"status"
,
title
:
this
.
l
(
"status"
),
align
:
"left"
,
high
:
true
,
code
:
'base.project_atom.status'
},
// { key: "upId", title: this.l("upId"), align: "left", high: true },
// { key: "level", title: this.l("level"), align: "left", high: true },
// {
...
...
@@ -122,7 +122,7 @@ export default {
// align: "left",
// high: true,
// },
{
key
:
"type"
,
title
:
this
.
l
(
"type"
),
align
:
"left"
,
high
:
true
},
{
key
:
"type"
,
title
:
this
.
l
(
"type"
),
align
:
"left"
,
high
:
true
,
code
:
'base.project_atom.type'
},
{
key
:
"englishFullName"
,
title
:
this
.
l
(
"englishFullName"
),
...
...
pages/system/project/project/add.vue
View file @
04223034
...
...
@@ -57,7 +57,7 @@
<Input
v-model=
"entity.type"
>
</Input>
</FormItem
>
-->
<FormItem
:label=
"l('type')"
prop=
"type"
>
<Dictionary
code=
"project.type"
v-model=
"entity.type"
></Dictionary>
<Dictionary
code=
"
base.
project.type"
v-model=
"entity.type"
></Dictionary>
</FormItem>
</Col>
<!--
<Col
:span=
"12"
...
...
@@ -78,7 +78,7 @@
<Input
v-model=
"entity.status"
>
</Input>
</FormItem
>
-->
<FormItem
:label=
"l('status')"
prop=
"status"
>
<Dictionary
code=
"project.status"
v-model=
"entity.status"
></Dictionary>
<Dictionary
code=
"
base.
project.status"
v-model=
"entity.status"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"12"
...
...
pages/system/project/project/detail.vue
View file @
04223034
<
template
>
<div
class=
"detail"
>
<Row>
<!--
<Filed
:span=
"12"
:name=
"l('creationTime')"
>
{{
entity
.
creationTime
}}
</Filed>
<Filed
:span=
"12"
:name=
"l('creatorUserId')"
>
{{
entity
.
creatorUserId
}}
</Filed>
<Filed
:span=
"12"
:name=
"l('lastModificationTime')"
>
{{
entity
.
lastModificationTime
}}
</Filed>
<Filed
:span=
"12"
:name=
"l('lastModifierUserId')"
>
{{
entity
.
lastModifierUserId
}}
</Filed>
<Filed
:span=
"12"
:name=
"l('isDeleted')"
>
{{
entity
.
isDeleted
}}
</Filed>
<Filed
:span=
"12"
:name=
"l('deletionTime')"
>
{{
entity
.
deletionTime
}}
</Filed>
<Filed
:span=
"12"
:name=
"l('deleterUserId')"
>
{{
entity
.
deleterUserId
}}
</Filed>
-->
<Filed
:span=
"12"
:name=
"l('name')"
>
{{
entity
.
name
}}
</Filed>
<Filed
:span=
"12"
:name=
"l('upId')"
>
{{
entity
.
upId
}}
</Filed>
<Filed
:span=
"12"
:name=
"l('level')"
>
{{
entity
.
level
}}
</Filed>
...
...
pages/system/project/project/index.vue
View file @
04223034
...
...
@@ -116,15 +116,25 @@ export default {
easy
:
true
,
high
:
true
,
},
{
key
:
"upId"
,
title
:
this
.
l
(
"upId"
),
align
:
"left"
,
high
:
true
},
{
key
:
"level"
,
title
:
this
.
l
(
"level"
),
align
:
"left"
,
high
:
true
},
{
key
:
"tenantId"
,
title
:
this
.
l
(
"tenantId"
),
// { key: "upId", title: this.l("upId"), align: "left", high: true },
// { key: "level", title: this.l("level"), align: "left", high: true },
// {
// key: "tenantId",
// title: this.l("tenantId"),
// align: "left",
// high: true,
// },
{
key
:
"code"
,
title
:
this
.
l
(
"code"
),
align
:
"left"
,
code
:
"project.base.code"
,
easy
:
true
,
high
:
true
,
},
{
key
:
"type"
,
title
:
this
.
l
(
"type"
),
align
:
"left"
,
high
:
true
,
code
:
"project.base.type"
},
{
key
:
"type"
,
title
:
this
.
l
(
"type"
),
align
:
"left"
,
high
:
true
,
code
:
"base.project.type"
},
{
key
:
"status"
,
title
:
this
.
l
(
"status"
),
align
:
"left"
,
high
:
true
,
code
:
"base.project.status"
},
{
key
:
"englishFullName"
,
title
:
this
.
l
(
"englishFullName"
),
...
...
@@ -139,21 +149,13 @@ export default {
easy
:
true
,
high
:
true
,
},
{
key
:
"status"
,
title
:
this
.
l
(
"status"
),
align
:
"left"
,
high
:
true
,
code
:
"project.base.status"
},
{
key
:
"inheritCategoryId"
,
title
:
this
.
l
(
"inheritCategoryId"
),
align
:
"left"
,
high
:
true
,
},
{
key
:
"code"
,
title
:
this
.
l
(
"code"
),
align
:
"left"
,
code
:
"project.base.code"
,
easy
:
true
,
high
:
true
,
},
// {
// key: "inheritCategoryId",
// title: this.l("inheritCategoryId"),
// align: "left",
// high: true,
// },
{
key
:
"module"
,
title
:
this
.
l
(
"module"
),
align
:
"left"
,
high
:
true
},
{
title
:
"操作"
,
...
...
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