Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
web-project
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
紫光云
web-project
Commits
78313f6f
Commit
78313f6f
authored
Oct 31, 2024
by
高滢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(详情): 加一个类型
parent
61eb75a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
index.vue
src/views/engineeringProject/index.vue
+2
-1
fillDetailsModel.vue
src/views/monthlyPlan/fillDetailsModel/fillDetailsModel.vue
+5
-2
No files found.
src/views/engineeringProject/index.vue
View file @
78313f6f
...
...
@@ -185,7 +185,8 @@ function getFillDetails(){
openFillDetailModel
(
true
,{
data
:
mothCycle
.
value
,
url
:
'/pro/monthEngineer/businessComDetails'
,
module
:
'Engineering'
module
:
'Engineering'
,
planType
:
planType
.
value
})
}
async
function
getSetCycle
()
{
...
...
src/views/monthlyPlan/fillDetailsModel/fillDetailsModel.vue
View file @
78313f6f
...
...
@@ -21,7 +21,7 @@
import
{
useModalInner
}
from
'@/components/Modal'
;
import
BasicModal
from
'@/components/Modal/src/BasicModal.vue'
;
import
{
ref
}
from
'vue'
;
import
{
Table
,
Tag
}
from
'ant-design-vue'
;
import
{
Table
,
Tag
}
from
'ant-design-vue'
;
import
{
getFillComDetails
}
from
'@/api/project/monthlyPlan'
;
const
loadingRef
=
ref
(
false
);
...
...
@@ -46,11 +46,14 @@
},
];
const
getTitle
=
ref
(
''
);
const
params
=
ref
({
mothCycle
:
''
,
module
:
'Month
'
});
const
params
=
ref
({
mothCycle
:
''
,
module
:
'Month'
,
planType
:
'
'
});
const
[
register
,
{
closeModal
}]
=
useModalInner
(
async
(
data
)
=>
{
params
.
value
.
mothCycle
=
data
.
data
.
fillCycle
;
params
.
value
.
module
=
data
.
module
;
if
(
data
.
planType
)
{
params
.
value
.
planType
=
data
.
planType
;
}
dataSource
.
value
=
await
getFillComDetails
(
params
.
value
,
data
.
url
);
});
</
script
>
...
...
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