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
7a238b51
Commit
7a238b51
authored
Sep 15, 2022
by
黄卓
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
后台-新建客户投诉与原型功能不符
http://zentao.jdshangmen.com/bug-view-384.html
缺少订单号提单号检索
parent
c0153bfa
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
9 deletions
+15
-9
index.vue
src/components/customerComplaints/index.vue
+5
-6
index.vue
src/views/ecw/customerComplaint/index.vue
+10
-3
No files found.
src/components/customerComplaints/index.vue
View file @
7a238b51
...
...
@@ -29,10 +29,7 @@
<el-input
v-model=
"form.content"
type=
"textarea"
placeholder=
"请输入内容"
/>
</el-form-item>
<el-form-item
label=
"处理状态"
prop=
"status"
>
<el-select
v-model=
"form.status"
placeholder=
"请选择处理状态"
>
<el-option
v-for=
"dict in getDictDatas(DICT_TYPE.CUSTOMER_COMPLAINT_STATUS)"
:key=
"dict.value"
:label=
"dict.label"
:value=
"parseInt(dict.value)"
/>
</el-select>
<span>
{{
getDictDataLabel
(
DICT_TYPE
.
CUSTOMER_COMPLAINT_STATUS
,
1
)
}}
</span>
</el-form-item>
</el-form>
...
...
@@ -90,7 +87,7 @@
import
{
createCustomerComplaint
,
updateCustomerComplaint
,
deleteCustomerComplaint
,
getCustomerComplaint
,
getCustomerComplaintPage
,
exportCustomerComplaintExcel
}
from
"
@/api/ecw/customerComplaint
"
;
import
{
getCustomerSelect
}
from
'
@/api/ecw/customer
'
import
DictSelector
from
'
@/components/DictSelector
'
import
{
DICT_TYPE
}
from
'
@/utils/dict
'
import
{
DICT_TYPE
,
getDictDatas
,
getDictDataLabel
}
from
'
@/utils/dict
'
export
default
{
name
:
"
customerComplaints
"
,
...
...
@@ -107,6 +104,8 @@ export default {
data
()
{
return
{
DICT_TYPE
,
getDictDatas
,
getDictDataLabel
,
// 遮罩层
loading
:
true
,
// 导出遮罩层
...
...
@@ -172,7 +171,7 @@ export default {
orderId
:
undefined
,
ladingbillId
:
undefined
,
content
:
undefined
,
status
:
undefined
,
status
:
1
,
ascertainReason
:
undefined
,
plan
:
undefined
,
result
:
undefined
,
...
...
src/views/ecw/customerComplaint/index.vue
View file @
7a238b51
...
...
@@ -97,7 +97,7 @@
<el-dialog
:title=
"title"
:visible.sync=
"open"
width=
"900px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-form-item
label=
"客户名称"
prop=
"customerId"
>
<el-select
v-model=
"form.customerId"
placeholder=
"请选择客户名称"
:disabled=
"!!customerId"
>
<el-select
v-model=
"form.customerId"
placeholder=
"请选择客户名称"
:disabled=
"!!customerId"
filterable
>
<el-option
v-for=
"item in customerSelect"
:key=
"item.id"
...
...
@@ -121,7 +121,8 @@
<el-input
v-model=
"form.content"
type=
"textarea"
placeholder=
"请输入内容"
/>
</el-form-item>
<el-form-item
label=
"处理状态"
prop=
"status"
>
<el-select
v-model=
"form.status"
placeholder=
"请选择处理状态"
>
<span
v-if=
"!form.id"
>
{{ getDictDataLabel(DICT_TYPE.CUSTOMER_COMPLAINT_STATUS, 1) }}
</span>
<el-select
v-else
v-model=
"form.status"
placeholder=
"请选择处理状态"
>
<el-option
v-for=
"dict in getDictDatas(DICT_TYPE.CUSTOMER_COMPLAINT_STATUS)"
:key=
"dict.value"
:label=
"dict.label"
:value=
"parseInt(dict.value)"
/>
</el-select>
...
...
@@ -184,7 +185,7 @@ import { createCustomerComplaint, updateCustomerComplaint, deleteCustomerComplai
import
{
getCustomerSelect
}
from
'
@/api/ecw/customer
'
import
CustomerFollow
from
"
../../../components/CustomerFollow
"
import
DictSelector
from
'
@/components/DictSelector
'
import
{
DICT_TYPE
}
from
'
@/utils/dict
'
import
{
DICT_TYPE
,
getDictDataLabel
,
getDictDatas
}
from
'
@/utils/dict
'
export
default
{
name
:
"
CustomerComplaint
"
,
...
...
@@ -202,6 +203,8 @@ export default {
data
()
{
return
{
DICT_TYPE
,
getDictDatas
,
getDictDataLabel
,
// 遮罩层
loading
:
true
,
// 导出遮罩层
...
...
@@ -234,6 +237,8 @@ export default {
// 表单校验
rules
:
{
customerId
:
[{
required
:
true
,
message
:
"
客户名称不能为空
"
,
trigger
:
"
change
"
}],
type
:
[{
required
:
true
,
message
:
"
投诉类型不能为空
"
,
trigger
:
"
change
"
}],
content
:
[{
required
:
true
,
message
:
"
投诉内容不能为空
"
,
trigger
:
"
blur
"
}],
},
myFollowCustomerList
:
[],
...
...
@@ -308,6 +313,8 @@ export default {
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"
添加客户投诉
"
;
// 新增客诉默认状态为待处理
this
.
form
.
status
=
1
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
...
...
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