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
2742d371
Commit
2742d371
authored
Oct 19, 2023
by
zhoutong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
e735a761
173a324b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
8 deletions
+20
-8
index.vue
src/views/ecw/customerComplaint/index.vue
+13
-1
edit.vue
src/views/ecw/productAttr/edit.vue
+1
-1
index.vue
src/views/member/user/index.vue
+6
-6
No files found.
src/views/ecw/customerComplaint/index.vue
View file @
2742d371
...
...
@@ -31,6 +31,12 @@
<el-date-picker
v-model=
"dateRangeCreateTime"
style=
"width: 240px"
value-format=
"yyyy-MM-dd"
type=
"daterange"
range-separator=
"-"
:start-placeholder=
"$t('开始日期')"
:end-placeholder=
"$t('结束日期')"
/>
</el-form-item>
<el-form-item
label=
"登记客服"
>
<el-select
v-model=
"queryParams.adminId"
:placeholder=
"$t('请选择客户经理')"
>
<el-option
v-for=
"item in serviceUserList"
:key=
"item.id"
:label=
"item.nickname"
:value=
"item.id"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"handleQuery"
>
{{
$t
(
'
搜索
'
)
}}
</el-button>
<el-button
icon=
"el-icon-refresh"
@
click=
"resetQuery"
>
{{
$t
(
'
重置
'
)
}}
</el-button>
...
...
@@ -299,6 +305,7 @@ import { DICT_TYPE, getDictDataLabel, getDictDatas } from '@/utils/dict'
import
{
getBillNoSearch
,
getOrderNoSearch
}
from
'
@/api/ecw/order
'
import
customerSelect
from
'
@/views/ecw/customer/customerSelect
'
import
{
getCurrencyPage
}
from
"
@/api/ecw/currency
"
;
import
{
listServiceUser
}
from
"
@/api/system/user
"
;
export
default
{
name
:
"
CustomerComplaint
"
,
...
...
@@ -376,10 +383,14 @@ export default {
page
:
1
,
rows
:
20
,
},
currencyList
:[]
currencyList
:[],
serviceUserList
:[]
};
},
created
()
{
listServiceUser
().
then
(
r
=>
{
this
.
serviceUserList
=
r
.
data
})
this
.
getList
();
getCurrencyPage
(
this
.
params
).
then
(
res
=>
this
.
currencyList
=
res
.
data
.
list
)
...
...
@@ -459,6 +470,7 @@ export default {
resetQuery
()
{
this
.
dateRangeCreateTime
=
[];
this
.
resetForm
(
"
queryForm
"
);
this
.
queryParams
.
adminId
=
null
;
this
.
handleQuery
();
},
/** 新增按钮操作 */
...
...
src/views/ecw/productAttr/edit.vue
View file @
2742d371
...
...
@@ -180,7 +180,7 @@ export default {
type
:
'
warning
'
}).
then
(()
=>
{
this
.
form
.
priceLineCount
=
val
.
id
;
this
.
lineNum
=
val
.
price
StepClearanc
eCount
;
this
.
lineNum
=
val
.
price
Lin
eCount
;
this
.
form
.
productTemplateId
=
val
.
id
;
this
.
isCopyProductPriceTemplate
=
true
;
copy
()
...
...
src/views/member/user/index.vue
View file @
2742d371
...
...
@@ -31,7 +31,7 @@
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"handleQuery"
>
{{
$t
(
'
搜索
'
)
}}
</el-button>
<el-button
icon=
"el-icon-refresh"
@
click=
"resetQuery"
>
{{
$t
(
'
重置
'
)
}}
</el-button>
<el-button
:loading=
"exportLoading"
type=
"primary"
@
click=
"exportFn"
>
{{
$t
(
'
导 出
'
)
}}
</el-button>
<el-button
v-has-permi=
"['member:export']"
:loading=
"exportLoading"
type=
"primary"
@
click=
"exportFn"
>
{{
$t
(
'
导 出
'
)
}}
</el-button>
</el-form-item>
</el-form>
...
...
@@ -88,11 +88,11 @@
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('操作')
"
align
=
"
center
"
class
-
name
=
"
small-padding fixed-width
"
width
=
"
200px
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
el
-
button
size
=
"
mini
"
type
=
"
text
"
@
click
=
"
guarantee(scope.row)
"
>
{{
$t
(
'
保函/证书
'
)
}}
<
/el-button
>
<
el
-
button
size
=
"
mini
"
type
=
"
text
"
@
click
=
"
operationLogFn(scope.row)
"
>
{{
$t
(
'
操作日志
'
)
}}
<
/el-button
>
<
el
-
button
size
=
"
mini
"
type
=
"
text
"
@
click
=
"
identityFn(scope.row , '1')
"
>
{{
$t
(
'
身份证
'
)
}}
<
/el-button
>
<
el
-
button
size
=
"
mini
"
type
=
"
text
"
@
click
=
"
identityFn(scope.row, '2')
"
>
{{
$t
(
'
营业执照
'
)
}}
<
/el-button
>
<
el
-
button
size
=
"
mini
"
type
=
"
text
"
@
click
=
"
deleteFn(scope.row)
"
>
{{
$t
(
'
删 除
'
)
}}
<
/el-button
>
<
el
-
button
v
-
has
-
permi
=
"
['member:certificate']
"
size
=
"
mini
"
type
=
"
text
"
@
click
=
"
guarantee(scope.row)
"
>
{{
$t
(
'
保函/证书
'
)
}}
<
/el-button
>
<
el
-
button
v
-
has
-
permi
=
"
['member:log']
"
size
=
"
mini
"
type
=
"
text
"
@
click
=
"
operationLogFn(scope.row)
"
>
{{
$t
(
'
操作日志
'
)
}}
<
/el-button
>
<
el
-
button
v
-
has
-
permi
=
"
['member:id-card']
"
size
=
"
mini
"
type
=
"
text
"
@
click
=
"
identityFn(scope.row , '1')
"
>
{{
$t
(
'
身份证
'
)
}}
<
/el-button
>
<
el
-
button
v
-
has
-
permi
=
"
['member:business-license']
"
size
=
"
mini
"
type
=
"
text
"
@
click
=
"
identityFn(scope.row, '2')
"
>
{{
$t
(
'
营业执照
'
)
}}
<
/el-button
>
<
el
-
button
v
-
has
-
permi
=
"
['member:delete']
"
size
=
"
mini
"
type
=
"
text
"
@
click
=
"
deleteFn(scope.row)
"
>
{{
$t
(
'
删 除
'
)
}}
<
/el-button
>
<
/template
>
<
/el-table-column
>
<
/el-table
>
...
...
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