明树Git Lab
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
J
jt_front
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
Administrator
jt_front
Commits
1dd94d13
Commit
1dd94d13
authored
Jan 13, 2026
by
yangyajing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
投资控制
parent
b5228558
Pipeline
#106061
passed with stage
in 17 seconds
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
538 additions
and
15 deletions
+538
-15
manage.less
src/styles/manage.less
+1
-0
addControl.vue
src/views/investingManage/addControl.vue
+514
-11
targetControl.vue
src/views/investingManage/targetControl.vue
+23
-4
No files found.
src/styles/manage.less
View file @
1dd94d13
...
...
@@ -142,6 +142,7 @@
margin: 10px 0;
display: flex;
justify-content: flex-end;
align-items: center;
}
.el-table{
margin-bottom: 10px;
...
...
src/views/investingManage/addControl.vue
View file @
1dd94d13
This diff is collapsed.
Click to expand it.
src/views/investingManage/targetControl.vue
View file @
1dd94d13
...
...
@@ -36,6 +36,7 @@
<
script
setup
>
import
{
ref
,
onMounted
,
getCurrentInstance
}
from
"vue"
;
import
{
useRouter
}
from
"vue-router"
;
import
{
ElMessage
,
ElMessageBox
}
from
"element-plus"
;
import
CommonTable
from
"@/components/common/commonTable.vue"
;
const
router
=
useRouter
();
...
...
@@ -49,8 +50,8 @@
showOverflowTooltip
:
true
},
{
prop
:
"
projectCode
"
,
label
:
"
项目编号
"
,
prop
:
"
jcdw
"
,
label
:
"
决策单位
"
,
showOverflowTooltip
:
true
},
{
...
...
@@ -99,7 +100,7 @@
router
.
push
({
name
:
"addControl"
,
query
:
{
project
Id
:
item
.
id
control
Id
:
item
.
id
}
});
};
...
...
@@ -108,10 +109,28 @@
name
:
"addControl"
,
query
:
{
isPreview
:
true
,
project
Id
:
item
.
id
control
Id
:
item
.
id
}
})
}
const
deleteControl
=
(
item
)
=>
{
ElMessageBox
.
confirm
(
"确认删除该项?"
,
"提示"
,{
confirmButtonText
:
'确认'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
,
}).
then
(()
=>
{
proxy
.
$post
({
url
:
"/api/project/deleteTzkz"
,
data
:
{
id
:
item
.
id
},
callback
:
(
data
)
=>
{
ElMessage
.
success
(
"删除成功"
);
getControlData
();
}
})
}).
catch
(()
=>
{})
}
onMounted
(()
=>
{
getControlData
();
})
...
...
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