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
d86e3709
Commit
d86e3709
authored
Feb 24, 2025
by
Smile
Committed by
wux
Feb 26, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
任务103:跟进记录调整
parent
0ddbcff3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
4 deletions
+37
-4
offer.js
src/api/ecw/offer.js
+7
-0
customerFollow.vue
src/views/ecw/customer/components/customerFollow.vue
+30
-4
No files found.
src/api/ecw/offer.js
View file @
d86e3709
...
...
@@ -17,6 +17,13 @@ export function updateOffer(data) {
data
:
data
})
}
export
function
updateByCustomerFollow
(
data
)
{
return
request
({
url
:
"
/ecw/offer/updateByCustomerFollow
"
,
method
:
"
put
"
,
data
:
data
})
}
// 删除报价单管理
export
function
deleteOffer
(
id
)
{
...
...
src/views/ecw/customer/components/customerFollow.vue
View file @
d86e3709
...
...
@@ -62,15 +62,15 @@
</el-col>
<el-col
:span=
"8"
>
<el-form-item
:label=
"$t('客户经理')"
required
>
<el-form-item
:label=
"$t('客户经理')"
required
prop=
"followUserId"
>
<el-select
v-model=
"form.followUserId"
clearable
:placeholder=
"$t('请选择')"
:disabled=
"isView"
>
<el-option
v-for=
"item in serviceUserList"
:key=
"item.id"
:label=
"item.nickname"
:value=
"item.id"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
:label=
"$t('跟进方式')"
required
>
<dict-selector
ref=
"dictMethod"
v-model=
"form.followMethod"
clearable
:disabled=
"isView"
:type=
"DICT_TYPE.CUSTOMER_FOLLOWUP_METHOD"
></dict-selector>
<el-form-item
:label=
"$t('跟进方式')"
required
prop=
"followMethod"
>
<dict-selector
v-model=
"form.followMethod"
clearable
:disabled=
"isView"
:type=
"DICT_TYPE.CUSTOMER_FOLLOWUP_METHOD"
></dict-selector>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -92,6 +92,13 @@
<!--
</el-select>
-->
<!--
</el-form-item>
-->
<!--
</el-col>
-->
<el-col
:span=
"8"
v-if=
"form.followType == 2"
>
<el-form-item
:label=
"$t('货物状态')"
prop=
"cargoStatus"
>
<el-select
v-model=
"form.cargoStatus"
:placeholder=
"$t('请选择')"
>
<el-option
v-for=
"dict in getDictDatas(DICT_TYPE.ECW_OFFER_CARGO_STATUS)"
:key=
"dict.value"
:label=
"isChinese ? dict.label : dict.labelEn"
:value=
"parseInt(dict.value)"
/>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"24"
>
<el-form-item
:label=
"$t('目的')"
prop=
"purpose"
>
<el-input
type=
"textarea"
:rows=
"3"
v-model=
"form.purpose"
:placeholder=
"$t('请输入目的')"
maxlength=
"200"
show-word-limit
:disabled=
"isView"
/>
...
...
@@ -180,7 +187,7 @@
<
script
>
import
{
addCustomerFollow
,
editCustomerFollow
,
getFollowupNewNumber
}
from
"
@/api/ecw/customerFollow
"
import
{
getCustomerContactsSelect
}
from
"
@/api/ecw/customerContacts
"
import
{
getOfferPage
,
getOfferNumber
,
getOffer
}
from
"
@/api/ecw/offer
"
import
{
getOfferPage
,
getOfferNumber
,
getOffer
,
updateByCustomerFollow
}
from
"
@/api/ecw/offer
"
import
{
DICT_TYPE
,
getDictDataLabel
}
from
"
@/utils/dict
"
import
{
getCustomerContactsListByCustomer
}
from
"
@/api/ecw/customerContacts
"
import
{
listAllSimpl
,
listServiceUser
,
listSimpleUsers
}
from
"
@/api/system/user
"
...
...
@@ -211,6 +218,8 @@ export default {
},
data
()
{
return
{
offer
:{},
isAccountManager
:
false
,
CustomerFollowSelectOffer
:
false
,
ChooseContactDialog
:
false
,
fileType
:
[
"
doc
"
,
"
xls
"
,
"
ppt
"
,
"
txt
"
,
"
pdf
"
,
"
png
"
,
"
jpg
"
,
"
jpeg
"
],
...
...
@@ -256,6 +265,7 @@ export default {
}
},
created
()
{
this
.
hasAccountRole
();
listServiceUser
().
then
((
r
)
=>
{
this
.
serviceUserList
=
r
.
data
})
...
...
@@ -268,8 +278,10 @@ export default {
if
(
v
)
{
getOffer
(
v
).
then
((
r
)
=>
{
let
offer
=
r
.
data
this
.
offer
=
offer
;
// 选择了报价单后,需要将报价单中的客户及客户联系人信息回显
this
.
form
.
offerNumber
=
offer
.
number
this
.
form
.
cargoStatus
=
parseInt
(
offer
.
cargoStatus
);
this
.
form
.
customerId
=
offer
.
relationId
this
.
customerId
=
offer
.
relationId
this
.
form
.
contactId
=
offer
.
relation
===
1
?
offer
.
consignorId
:
offer
.
consigneeId
...
...
@@ -313,6 +325,9 @@ export default {
this
.
form
.
contactName
=
item
.
name
this
.
form
.
contactPhone
=
"
+
"
+
item
.
areaCode
+
item
.
phoneNew
this
.
form
.
followUserId
=
item
.
customerService
if
(
this
.
isAccountManager
&&
this
.
form
.
followUserId
===
null
){
this
.
form
.
followUserId
=
this
.
$store
.
getters
.
userId
}
return
true
}
})
...
...
@@ -324,6 +339,11 @@ export default {
}
},
methods
:
{
hasAccountRole
(){
this
.
isAccountManager
=
this
.
$store
.
getters
.
roles
.
some
((
item
)
=>
{
return
item
===
"
Account Manager
"
})
},
selectOffer
(
offerId
)
{
this
.
form
.
offerId
=
offerId
},
...
...
@@ -521,6 +541,12 @@ export default {
status
}).
then
((
r
)
=>
{
this
.
$message
.
success
(
this
.
$t
(
"
操作成功
"
))
if
(
status
===
1
){
if
(
this
.
form
.
followType
===
2
&&
this
.
form
.
cargoStatus
!==
this
.
offer
.
cargoStatus
){
this
.
offer
.
cargoStatus
=
this
.
form
.
cargoStatus
;
updateByCustomerFollow
(
this
.
offer
);
}
}
this
.
$emit
(
"
refresh
"
)
this
.
customerFollowClose
()
})
...
...
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