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
94746a9e
Commit
94746a9e
authored
Nov 12, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
跟进记录批量修改状态功能修正
parent
f685f659
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
customerFollowUpdateStatus.vue
...ws/ecw/customer/components/customerFollowUpdateStatus.vue
+7
-5
logListCommon.vue
src/views/ecw/offer/logListCommon.vue
+1
-1
No files found.
src/views/ecw/customer/components/customerFollowUpdateStatus.vue
View file @
94746a9e
...
@@ -3,13 +3,13 @@
...
@@ -3,13 +3,13 @@
center
center
:title=
"$t('修改跟进状态')"
:title=
"$t('修改跟进状态')"
:visible=
"show"
:visible=
"show"
@
close=
"close"
@
close=
"c
ustomerFollowUpdateStatusC
lose"
width=
"30%"
>
width=
"30%"
>
<div
style=
"width: 100%;min-height: 60px;text-align: center"
>
<div
style=
"width: 100%;min-height: 60px;text-align: center"
>
<el-form
label-width=
"120px"
>
<el-form
label-width=
"120px"
>
<el-col
:span=
"20"
>
<el-col
:span=
"20"
>
<el-form-item
:label=
"$t('跟进状态')"
>
<el-form-item
:label=
"$t('跟进状态')"
>
<el-select
v-model=
"status"
:placeholder=
"$t('请选择')"
size=
"small"
>
<el-select
v-model=
"status"
:placeholder=
"$t('请选择')"
size=
"small"
>
<el-option
v-for=
"dict in getDictDatas(DICT_TYPE.CUSTOMER_FOLLOWUP_STATUS)"
:key=
"dict.value"
<el-option
v-for=
"dict in getDictDatas(DICT_TYPE.CUSTOMER_FOLLOWUP_STATUS)"
:key=
"dict.value"
:label=
"isChinese ? dict.label : dict.labelEn"
:value=
"parseInt(dict.value)"
/>
:label=
"isChinese ? dict.label : dict.labelEn"
:value=
"parseInt(dict.value)"
/>
</el-select>
</el-select>
...
@@ -70,9 +70,11 @@ export default {
...
@@ -70,9 +70,11 @@ export default {
status
:
this
.
status
status
:
this
.
status
}).
then
(
r
=>
{
}).
then
(
r
=>
{
if
(
r
.
code
===
0
)
{
if
(
r
.
code
===
0
)
{
this
.
$message
.
success
(
this
.
$t
(
'
修改成功!
'
))
this
.
$message
.
success
(
this
.
$t
(
'
修改成功!
'
))
this
.
$emit
(
"
refresh
"
)
this
.
customerFollowUpdateStatusClose
()
}
}
getCustomerFollowList
()
})
})
},
},
getCustomerFollowList
()
{
getCustomerFollowList
()
{
...
@@ -86,7 +88,7 @@ export default {
...
@@ -86,7 +88,7 @@ export default {
this
.
loading
=
false
this
.
loading
=
false
})
})
},
},
close
()
{
c
ustomerFollowUpdateStatusC
lose
()
{
this
.
status
=
null
;
this
.
status
=
null
;
this
.
$emit
(
'
update:show
'
,
false
)
this
.
$emit
(
'
update:show
'
,
false
)
...
...
src/views/ecw/offer/logListCommon.vue
View file @
94746a9e
...
@@ -126,7 +126,7 @@
...
@@ -126,7 +126,7 @@
<pagination
:total=
"customerFollowTotal"
:page.sync=
"followForm.pageNo"
:limit.sync=
"followForm.pageSize"
@
pagination=
"getCustomerFollowList"
/>
<pagination
:total=
"customerFollowTotal"
:page.sync=
"followForm.pageNo"
:limit.sync=
"followForm.pageSize"
@
pagination=
"getCustomerFollowList"
/>
</el-card>
</el-card>
<customer-follow
ref=
"customerFollow"
@
handleCustomerFollowAdd=
"handleCustomerFollowAdd"
@
refresh=
"handleQuery"
v-if=
"customerFollowVisible"
:customer-id=
"customerId"
:customerService=
"customerService"
:customerNumber=
"customerNumber"
/>
<customer-follow
ref=
"customerFollow"
@
handleCustomerFollowAdd=
"handleCustomerFollowAdd"
@
refresh=
"handleQuery"
v-if=
"customerFollowVisible"
:customer-id=
"customerId"
:customerService=
"customerService"
:customerNumber=
"customerNumber"
/>
<customer-follow-update-status
:show.sync=
"updateStatus"
:followup-ids.sync=
"selectCustomerFollowList"
></customer-follow-update-status
>
<customer-follow-update-status
:show.sync=
"updateStatus"
:followup-ids.sync=
"selectCustomerFollowList"
@
refresh=
"handleQuery"
/
>
</div>
</div>
</template>
</template>
...
...
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