Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
26cd01d1
Commit
26cd01d1
authored
Jun 22, 2022
by
Marcus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户投诉跟进
parent
065a8043
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
index.vue
src/components/CustomerFollow/index.vue
+5
-0
index.vue
src/views/ecw/customerComplaint/index.vue
+6
-1
No files found.
src/components/CustomerFollow/index.vue
View file @
26cd01d1
<
template
>
<div>
<div
style=
"display: flex;justify-content: right;margin-bottom: 15px"
>
<el-button
type=
"primary"
style=
"text-align: right"
@
click=
"customerFollow.dialogVisible = true"
>
新增
</el-button>
</div>
<el-table
:data=
"customerFollowList"
style=
"width: 100%"
...
...
@@ -47,6 +51,7 @@
</el-table>
<el-dialog
append-to-body
title=
"客户跟进"
:visible.sync=
"customerFollow.dialogVisible"
:close-on-click-modal=
"false"
...
...
src/views/ecw/customerComplaint/index.vue
View file @
26cd01d1
...
...
@@ -92,7 +92,7 @@
@
pagination=
"getList"
/>
<!-- 对话框(添加 / 修改) -->
<el-dialog
:title=
"title"
:visible.sync=
"open"
width=
"
5
00px"
append-to-body
>
<el-dialog
:title=
"title"
:visible.sync=
"open"
width=
"
9
00px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-form-item
label=
"客户名称"
prop=
"customerId"
>
<el-select
v-model=
"form.customerId"
placeholder=
"请选择客户名称"
:disabled=
"!!customerId"
>
...
...
@@ -125,6 +125,9 @@
</el-select>
</el-form-item>
</el-form>
<customer-follow
:customer-id=
"form.id"
></customer-follow>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
...
...
@@ -137,6 +140,7 @@
import
{
createCustomerComplaint
,
updateCustomerComplaint
,
deleteCustomerComplaint
,
getCustomerComplaint
,
getCustomerComplaintPage
,
exportCustomerComplaintExcel
}
from
"
@/api/ecw/customerComplaint
"
;
import
{
getMyFlowCustomerList
}
from
"
@/api/ecw/customer
"
;
import
{
getCustomerSelect
}
from
"
../../../api/ecw/customer
"
import
CustomerFollow
from
"
../../../components/CustomerFollow
"
export
default
{
name
:
"
CustomerComplaint
"
,
...
...
@@ -148,6 +152,7 @@ export default {
customerId
:
String
},
components
:
{
CustomerFollow
},
data
()
{
return
{
...
...
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