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
2011369e
Commit
2011369e
authored
Sep 04, 2024
by
yujinyao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户跟进
parent
e6197a81
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2232 additions
and
3 deletions
+2232
-3
customerFollow.js
src/api/ecw/customerFollow.js
+25
-0
dict.js
src/utils/dict.js
+4
-1
customerFollow.vue
src/views/ecw/customer/components/customerFollow.vue
+517
-0
edit.vue
src/views/ecw/customer/follow/edit.vue
+891
-0
index.vue
src/views/ecw/customer/follow/index.vue
+793
-0
query.vue
src/views/ecw/customer/query.vue
+2
-2
No files found.
src/api/ecw/customerFollow.js
View file @
2011369e
...
@@ -59,3 +59,28 @@ export function exportCustomerFollowExcel(query) {
...
@@ -59,3 +59,28 @@ export function exportCustomerFollowExcel(query) {
responseType
:
'
blob
'
responseType
:
'
blob
'
})
})
}
}
export
function
getCustomerFollowList
(
params
)
{
return
request
({
url
:
'
/customer/followup/page
'
,
method
:
'
get
'
,
params
})
}
export
function
getCustomerFollowDetail
(
params
)
{
return
request
({
url
:
'
/customer/followup/get
'
,
method
:
'
get
'
,
params
})
}
export
function
addCustomerFollow
(
data
)
{
return
request
({
url
:
'
/customer/followup/create
'
,
method
:
'
post
'
,
data
})
}
src/utils/dict.js
View file @
2011369e
...
@@ -163,7 +163,10 @@ export const DICT_TYPE = {
...
@@ -163,7 +163,10 @@ export const DICT_TYPE = {
CUSTOMER_GET_METHOD
:
'
customer_get_method
'
,
//获取方式
CUSTOMER_GET_METHOD
:
'
customer_get_method
'
,
//获取方式
CUSTOMER_FROM
:
'
customer_from
'
,
//创建入口
CUSTOMER_FROM
:
'
customer_from
'
,
//创建入口
CUSTOMER_ROLE
:
'
customer_role
'
,
//角色
CUSTOMER_ROLE
:
'
customer_role
'
,
//角色
MAJOR_COMPETITORS
:
'
major_competitors
'
,
//主要竞争对手
CUSTOMER_FOLLOWUP_TYPE
:
'
customer_followup_type
'
,
//跟进类型
CUSTOMER_FOLLOWUP_METHOD
:
'
customer_followup_method
'
,
//跟进方式
CUSTOMER_FOLLOWUP_RESULT_TYPE
:
'
customer_followup_result_type
'
,
//跟进结果
CUSTOMER_FOLLOWUP_STATUS
:
'
customer_followup_status
'
,
//跟进状态
// order
// order
ORDER_TYPE
:
"
order_type
"
,
// 订单类型
ORDER_TYPE
:
"
order_type
"
,
// 订单类型
PRODUCT_RECORD_ATTRIBUTE
:
"
product_record_attribute
"
,
//产品备案属性
PRODUCT_RECORD_ATTRIBUTE
:
"
product_record_attribute
"
,
//产品备案属性
...
...
src/views/ecw/customer/components/customerFollow.vue
0 → 100644
View file @
2011369e
This diff is collapsed.
Click to expand it.
src/views/ecw/customer/follow/edit.vue
0 → 100644
View file @
2011369e
This diff is collapsed.
Click to expand it.
src/views/ecw/customer/follow/index.vue
0 → 100644
View file @
2011369e
This diff is collapsed.
Click to expand it.
src/views/ecw/customer/query.vue
View file @
2011369e
...
@@ -761,7 +761,7 @@ import {
...
@@ -761,7 +761,7 @@ import {
import
{
DICT_TYPE
,
getDictDataLabel
,
getDictDatas2
}
from
'
@/utils/dict
'
import
{
DICT_TYPE
,
getDictDataLabel
,
getDictDatas2
}
from
'
@/utils/dict
'
import
{
getProductTypeList
}
from
'
@/api/ecw/productType
'
import
{
getProductTypeList
}
from
'
@/api/ecw/productType
'
import
{
getNodeList
}
from
'
@/api/ecw/node
'
import
{
getNodeList
}
from
'
@/api/ecw/node
'
import
CustomerFollow
from
"
@/components/C
ustomerFollow
"
import
CustomerFollow
from
"
./components/c
ustomerFollow
"
import
{
parseTime
}
from
'
@/utils/ruoyi
'
import
{
parseTime
}
from
'
@/utils/ruoyi
'
import
CustomerComplaint
from
'
@/views/ecw/customerComplaint
'
import
CustomerComplaint
from
'
@/views/ecw/customerComplaint
'
import
{
listServiceUser
}
from
'
@/api/system/user
'
import
{
listServiceUser
}
from
'
@/api/system/user
'
...
@@ -1099,7 +1099,7 @@ export default {
...
@@ -1099,7 +1099,7 @@ export default {
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
if
(
val
===
'
follow
'
){
if
(
val
===
'
follow
'
){
this
.
$refs
[
'
customerFollow
'
].
customerFollow
.
dialogVisible
=
true
;
this
.
$refs
[
'
customerFollow
'
].
customerFollow
.
dialogVisible
=
true
;
}
else
{
}
else
{
this
.
$refs
[
'
customerComplaint
'
].
handleAdd
()
this
.
$refs
[
'
customerComplaint
'
].
handleAdd
()
}
}
}
)
}
)
...
...
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