Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
a66a4576
Commit
a66a4576
authored
Nov 25, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
4a74ba5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
saleTask.vue
src/pages/sale/saleTask.vue
+15
-1
No files found.
src/pages/sale/saleTask.vue
View file @
a66a4576
...
...
@@ -93,6 +93,8 @@
@
click=
"EditTask(props.row)"
/>
<q-btn
flat
size=
"xs"
icon=
"delete"
color=
"negative"
style=
"font-weight:400"
label=
"删除"
@
click=
"RemoveTask(props.row.Id)"
/>
<q-btn
flat
size=
"xs"
icon=
"delete"
color=
"negative"
style=
"font-weight:400"
label=
"详情"
@
click=
"iShowEdit(props.row)"
/>
</q-td>
</
template
>
<
template
v-slot:bottom
>
...
...
@@ -102,6 +104,7 @@
</q-table>
</div>
<saleForm
v-if=
"isShowTask"
:taskOption=
"taskOption"
@
close=
"closeSaleForm"
@
success=
"RefreshPage"
></saleForm>
<!-- <saleRightForm v-if="isShowRight" :taskOption="taskOption" @close="closeSaleForm"></saleRightForm> -->
</div>
</template>
<
script
>
...
...
@@ -110,12 +113,14 @@
RemoveCustomerTask
}
from
'../../api/sale/peemanagement'
;
import
saleForm
from
'../../components/sale/sale-form'
;
// import saleRightForm from '../../components/sale/saleRight-form'
export
default
{
meta
:
{
title
:
"营销任务"
},
components
:
{
saleForm
saleForm
,
saleRightForm
},
data
()
{
return
{
...
...
@@ -194,6 +199,7 @@
pageCount
:
0
,
taskOption
:
null
,
isShowTask
:
false
,
isShowRight
:
false
}
},
created
()
{},
...
...
@@ -254,6 +260,14 @@
}
this
.
isShowTask
=
true
},
iShowEdit
(
obj
){
if
(
obj
)
{
this
.
taskOption
=
obj
;
}
else
{
this
.
taskOption
=
null
}
this
.
isShowRight
=
true
},
closeSaleForm
()
{
this
.
isShowTask
=
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