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
6ec89893
Commit
6ec89893
authored
Nov 27, 2022
by
dcy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户跟进修改
parent
bee8228e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
customerFollow.js
src/api/ecw/customerFollow.js
+7
-0
index.vue
src/components/CustomerFollow/index.vue
+10
-2
No files found.
src/api/ecw/customerFollow.js
View file @
6ec89893
...
...
@@ -42,6 +42,13 @@ export function getCustomerFollowPage(query) {
params
:
query
})
}
export
function
getCustomerFollowPage2
(
query
)
{
return
request
({
url
:
'
/ecw/customer-follow/page
'
,
method
:
'
get
'
,
params
:
query
})
}
// 导出跟进 Excel
export
function
exportCustomerFollowExcel
(
query
)
{
...
...
src/components/CustomerFollow/index.vue
View file @
6ec89893
...
...
@@ -123,7 +123,7 @@
</
template
>
<
script
>
import
{
createCustomerFollow
,
getCustomerFollowPage
}
from
"
@/api/ecw/customerFollow
"
import
{
createCustomerFollow
,
getCustomerFollowPage
,
getCustomerFollowPage2
}
from
"
@/api/ecw/customerFollow
"
import
{
DICT_TYPE
,
getDictDataLabel
}
from
'
@/utils/dict
'
import
{
getCustomerContactsListByCustomer
}
from
'
@/api/ecw/customerContacts
'
import
{
listServiceUser
}
from
"
@/api/system/user
"
...
...
@@ -234,9 +234,17 @@ export default {
this
.
$refs
.
dictMethod
.
changeValue
(
this
.
customerFollow
.
form
.
followMethod
);
},
getCustomerFollowList
()
{
if
(
this
.
$route
.
name
===
'
customerQuery
'
){
getCustomerFollowPage
({
customerId
:
this
.
customerId
,
pageNo
:
this
.
pageNo
,
pageSize
:
this
.
pageSize
}).
then
(
r
=>
{
this
.
customerFollowList
=
r
.
data
.
list
this
.
customerFollowList
=
r
.
data
.
list
;
this
.
total
=
r
.
data
.
total
;
})
}
else
{
getCustomerFollowPage2
({
bizId
:
this
.
id
,
pageNo
:
this
.
pageNo
,
pageSize
:
this
.
pageSize
}).
then
(
r
=>
{
this
.
customerFollowList
=
r
.
data
.
list
;
this
.
total
=
r
.
data
.
total
;
})
}
}
}
...
...
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