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
5473329b
Commit
5473329b
authored
Jun 28, 2024
by
小费同学阿
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
月度计划,计划完成情况模块修改去掉删除按钮
parent
2a81f057
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
monthlyPlanEdit.vue
src/views/monthlyPlan/monthlyPlanEdit/monthlyPlanEdit.vue
+4
-4
performanceEdit.vue
src/views/performance/performanceEdit.vue
+5
-4
No files found.
src/views/monthlyPlan/monthlyPlanEdit/monthlyPlanEdit.vue
View file @
5473329b
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
headerSticky
headerSticky
>
>
<template
#
extra
>
<template
#
extra
>
<
a-button
type=
"primary"
danger
>
删除
</a-button
>
<
!--
<a-button
type=
"primary"
danger
>
删除
</a-button>
--
>
<a-button
type=
"primary"
v-if=
"!disabled"
@
click=
"handleSubmit"
>
提交
</a-button>
<a-button
type=
"primary"
v-if=
"!disabled"
@
click=
"handleSubmit"
>
提交
</a-button>
<a-button
type=
"default"
@
click=
"router.back()"
>
返回
</a-button>
<a-button
type=
"default"
@
click=
"router.back()"
>
返回
</a-button>
</
template
>
</
template
>
...
@@ -20,10 +20,9 @@
...
@@ -20,10 +20,9 @@
preIcon=
"ant-design:delete-outlined"
preIcon=
"ant-design:delete-outlined"
danger
danger
@
click=
"deleteItem(index)"
@
click=
"deleteItem(index)"
>
/>
</a-button>
</
template
>
</
template
>
<BasicForm
:loading=
"loading"
@
register=
"item.Form[0]"
>
</BasicForm
>
<BasicForm
:loading=
"loading"
@
register=
"item.Form[0]"
/
>
<PageCard
<PageCard
v-for=
"(content, key) in item.list"
v-for=
"(content, key) in item.list"
:key=
"key"
:key=
"key"
...
@@ -61,6 +60,7 @@
...
@@ -61,6 +60,7 @@
import
{
useModal
}
from
'@/components/Modal'
;
import
{
useModal
}
from
'@/components/Modal'
;
import
{
router
}
from
'@/router'
;
import
{
router
}
from
'@/router'
;
import
{
useRoute
}
from
'vue-router'
;
import
{
useRoute
}
from
'vue-router'
;
const
[
registerDrawer
,
{
openDrawer
}]
=
useDrawer
();
const
[
registerDrawer
,
{
openDrawer
}]
=
useDrawer
();
const
loadingRef
=
ref
(
false
);
const
loadingRef
=
ref
(
false
);
const
[
register
,
{
openModal
:
openModal
}]
=
useModal
();
const
[
register
,
{
openModal
:
openModal
}]
=
useModal
();
...
...
src/views/performance/performanceEdit.vue
View file @
5473329b
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
headerSticky
headerSticky
>
>
<template
#
extra
>
<template
#
extra
>
<
a-button
type=
"primary"
danger
>
删除
</a-button
>
<
!--
<a-button
type=
"primary"
danger
>
删除
</a-button>
--
>
<a-button
type=
"primary"
v-if=
"!disabled"
@
click=
"handleSubmit"
>
提交
</a-button>
<a-button
type=
"primary"
v-if=
"!disabled"
@
click=
"handleSubmit"
>
提交
</a-button>
<a-button
type=
"default"
@
click=
"router.back()"
>
返回
</a-button>
<a-button
type=
"default"
@
click=
"router.back()"
>
返回
</a-button>
</
template
>
</
template
>
...
@@ -20,8 +20,7 @@
...
@@ -20,8 +20,7 @@
preIcon=
"ant-design:delete-outlined"
preIcon=
"ant-design:delete-outlined"
danger
danger
@
click=
"deleteItem(index)"
@
click=
"deleteItem(index)"
>
/>
</a-button>
</
template
>
</
template
>
<BasicForm
:loading=
"loading"
@
register=
"item.Form[0]"
/>
<BasicForm
:loading=
"loading"
@
register=
"item.Form[0]"
/>
</PageCard>
</PageCard>
...
@@ -39,7 +38,6 @@
...
@@ -39,7 +38,6 @@
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
import
addPlanModel
from
'./addPlanModel.vue'
;
import
addPlanModel
from
'./addPlanModel.vue'
;
import
{
useModal
}
from
'@/components/Modal'
;
import
{
useModal
}
from
'@/components/Modal'
;
const
[
register
,
{
openModal
:
openModal
}]
=
useModal
();
import
{
unref
,
computed
,
onMounted
,
ref
,
reactive
,
nextTick
,
provide
}
from
'vue'
;
import
{
unref
,
computed
,
onMounted
,
ref
,
reactive
,
nextTick
,
provide
}
from
'vue'
;
import
{
PageWrapper
}
from
'@/components/Page'
;
import
{
PageWrapper
}
from
'@/components/Page'
;
import
PageCard
from
'@/components/Page/src/PageCard.vue'
;
import
PageCard
from
'@/components/Page/src/PageCard.vue'
;
...
@@ -57,6 +55,9 @@
...
@@ -57,6 +55,9 @@
GetEngineProjectList
,
GetEngineProjectList
,
Itemdelete
,
Itemdelete
,
}
from
'@/api/project/performance'
;
}
from
'@/api/project/performance'
;
const
[
register
,
{
openModal
:
openModal
}]
=
useModal
();
const
loadingRef
=
ref
(
false
);
const
loadingRef
=
ref
(
false
);
const
{
createMessage
}
=
useMessage
();
const
{
createMessage
}
=
useMessage
();
const
isUpdate
=
ref
(
false
);
const
isUpdate
=
ref
(
false
);
...
...
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