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
a772b730
Commit
a772b730
authored
Oct 23, 2022
by
dcy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户投诉按原型修改
parent
aa411284
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
12 deletions
+26
-12
index.vue
src/views/ecw/customerComplaint/index.vue
+26
-12
No files found.
src/views/ecw/customerComplaint/index.vue
View file @
a772b730
...
...
@@ -52,27 +52,43 @@
<!-- 列表 -->
<el-table
v-loading=
"loading"
:data=
"list"
>
<el-table-column
:label=
"$t('客货投诉')"
align=
"center"
prop=
"code"
>
</el-table-column>
<el-table-column
:label=
"$t('投诉类型')"
align=
"center"
prop=
"type"
>
<template
slot-scope=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.CUSTOMER_COMPLAINT_TYPE"
:value=
"scope.row.type"
/>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('客户名称')"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<div>
{{
formatCustomerName
(
scope
.
row
.
customerId
)
}}
</div>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('投诉
类型')"
align=
"center"
prop=
"type
"
>
<el-table-column
:label=
"$t('投诉
日期')"
align=
"center"
width=
"180
"
>
<
template
slot-scope=
"scope"
>
<
dict-tag
:type=
"DICT_TYPE.CUSTOMER_COMPLAINT_TYPE"
:value=
"scope.row.type"
/
>
<
span>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
</span
>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('订单号')"
align=
"center"
prop=
"orderId"
/>
<el-table-column
:label=
"$t('提单号')"
align=
"center"
prop=
"ladingbillId"
/>
<el-table-column
:label=
"$t('投诉内容')"
align=
"center"
prop=
"content"
/>
<el-table-column
:label=
"$t('处理状态')"
align=
"center"
prop=
"status"
>
<el-table-column
:label=
"$t('登记客服')"
align=
"center"
prop=
"adminNickname"
>
</el-table-column>
<el-table-column
:label=
"$t('状态')"
align=
"center"
prop=
"status"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.CUSTOMER_COMPLAINT_STATUS"
:value=
"scope.row.status"
/>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('创建时间')"
align=
"center"
prop=
"createTime"
width=
"180"
>
<el-table-column
:label=
"$t('提单号')"
align=
"center"
prop=
"ladingbillId"
/>
<el-table-column
:label=
"$t('订单号')"
align=
"center"
prop=
"orderId"
/>
<el-table-column
:label=
"$t('处理时间')"
align=
"center"
prop=
"handleAt"
width=
"180"
>
<
template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
</span>
<span>
{{
parseTime
(
scope
.
row
.
handleAt
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('赔付金额')"
align=
"center"
prop=
"handleAt"
width=
"180"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
indemnity
||
'
0.00
'
}}
<dict-tag
:value=
"scope.row.currencyUnit"
:type=
"DICT_TYPE.COMMISSION_CURRENCY_TYPE"
></dict-tag>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('操作')"
align=
"center"
class-name=
"small-padding fixed-width"
>
...
...
@@ -194,8 +210,7 @@
<el-dialog
:title=
"title"
:visible.sync=
"openCustomer"
width=
"900px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
label-width=
"80px"
>
<div
class=
"formShow"
>
<el-form
ref=
"form"
:inline=
"true"
:model=
"form"
label-width=
"80px"
>
<el-form-item
:label=
"$t('客户名称')+':'"
>
<div>
{{ formatCustomerName(form.customerId) }}
</div>
</el-form-item>
...
...
@@ -216,7 +231,6 @@
<dict-tag
:type=
"DICT_TYPE.CUSTOMER_COMPLAINT_STATUS"
:value=
"form.status"
/>
</el-form-item>
</div>
</div>
<el-form-item
:label=
"$t('投诉内容')+':'"
>
<div>
{{form.content|| $t('无')}}
</div>
</el-form-item>
...
...
@@ -536,7 +550,7 @@ export default {
this
.
exportLoading
=
true
;
return
exportCustomerComplaintExcel
(
params
);
}).
then
(
response
=>
{
this
.
$download
.
excel
(
response
,
'
${table.classComment}
.xls
'
);
this
.
$download
.
excel
(
response
,
'
客户投诉列表
.xls
'
);
this
.
exportLoading
=
false
;
}).
catch
(()
=>
{});
},
...
...
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