Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
罗超
confucius
Commits
c2837214
Commit
c2837214
authored
Nov 24, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
也没修过
parent
837e2a0c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
44 deletions
+12
-44
peerApproval.vue
src/pages/sale/peerApproval.vue
+8
-25
peerManagement.vue
src/pages/sale/peerManagement.vue
+4
-19
No files found.
src/pages/sale/peerApproval.vue
View file @
c2837214
...
...
@@ -17,12 +17,10 @@
<div
class=
"page-search row items-center"
>
<div
class=
"col row wrap q-mr-lg q-col-gutter-md"
>
<div
class=
"col-3"
>
<q-input
@
input=
"resetSearch"
filled
clearable
v-model=
"msg.CustomerName"
label=
"客户名称"
maxlength=
"20"
/>
<q-input
@
input=
"resetSearch"
filled
clearable
v-model=
"msg.CustomerName"
label=
"客户名称"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-input
@
input=
"resetSearch"
filled
clearable
v-model=
"msg.ContactNumber"
label=
"联系电话"
maxlength=
"20"
/>
<q-input
@
input=
"resetSearch"
filled
clearable
v-model=
"msg.ContactNumber"
label=
"联系电话"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
clearable
filled
v-model=
"msg.ApproveState"
:options=
"ApproveStateList"
...
...
@@ -33,7 +31,7 @@
</div>
<div
class=
"page-content"
>
<div>
<q-tabs
style=
"margin-bottom:20px;"
v-model=
"tabCheck"
narrow-indicator
dense
align=
"left"
class=
"text-primary"
>
<q-tabs
style=
"margin-bottom:20px;"
v-model=
"tabCheck"
@
input=
"resetSearch()"
narrow-indicator
dense
align=
"left"
class=
"text-primary"
>
<q-tab
:ripple=
"false"
:name=
"1"
label=
"正式客户"
/>
<q-tab
:ripple=
"false"
:name=
"2"
label=
"非正式客户"
/>
<q-tab
:ripple=
"false"
:name=
"3"
label=
"未通过客户"
/>
...
...
@@ -73,7 +71,7 @@
},
loading
:
false
,
tabCheck
:
1
,
//审核状态列表
ApproveStateList
:
[{
label
:
"通过"
,
...
...
@@ -84,26 +82,11 @@
value
:
"2"
,
},
],
//账号状态
accountStateList
:
[{
label
:
"正常"
,
value
:
"1"
,
},
{
label
:
"禁用"
,
value
:
"2"
,
},
{
label
:
"删除"
,
value
:
"3"
,
},
{
label
:
"未激活"
,
value
:
"4"
,
}
],
dataList
:
[],
//判断显示
authObj
:{
isShowEdit
:
false
authObj
:
{
isShowEdit
:
false
}
}
},
...
...
@@ -122,9 +105,9 @@
this
.
msg
.
pageIndex
=
val
;
this
.
getList
()
},
//获取分页数据
getList
()
{
this
.
msg
.
QCustomerState
=
this
.
tabCheck
;
GetCustomerPage
(
this
.
msg
).
then
(
res
=>
{
this
.
dataList
=
res
.
Data
.
PageData
;
this
.
loading
=
false
;
...
...
src/pages/sale/peerManagement.vue
View file @
c2837214
...
...
@@ -33,7 +33,7 @@
</div>
<div
class=
"page-content"
>
<div>
<q-tabs
style=
"margin-bottom:20px;"
v-model=
"tabCheck"
narrow-indicator
dense
align=
"left"
class=
"text-primary"
>
<q-tabs
style=
"margin-bottom:20px;"
v-model=
"tabCheck"
@
input=
"resetSearch()"
narrow-indicator
dense
align=
"left"
class=
"text-primary"
>
<q-tab
:ripple=
"false"
:name=
"1"
label=
"正式客户"
/>
<q-tab
:ripple=
"false"
:name=
"2"
label=
"非正式客户"
/>
<q-tab
:ripple=
"false"
:name=
"3"
label=
"未通过客户"
/>
...
...
@@ -69,7 +69,7 @@
CustomerName
:
''
,
//客户名称
ContactNumber
:
""
,
//联系电话
ApproveState
:
""
,
//审核状态
CustomerState
:
""
,
//账号状态
Q
CustomerState
:
""
,
//账号状态
},
loading
:
false
,
tabCheck
:
1
,
...
...
@@ -84,22 +84,7 @@
value
:
"2"
,
},
],
//账号状态
accountStateList
:
[{
label
:
"正常"
,
value
:
"1"
,
},
{
label
:
"禁用"
,
value
:
"2"
,
},
{
label
:
"删除"
,
value
:
"3"
,
},
{
label
:
"未激活"
,
value
:
"4"
,
}
],
dataList
:
[],
//判断显示
authObj
:{
...
...
@@ -122,9 +107,9 @@
this
.
msg
.
pageIndex
=
val
;
this
.
getList
()
},
//获取分页数据
getList
()
{
this
.
msg
.
QCustomerState
=
this
.
tabCheck
;
GetCustomerPage
(
this
.
msg
).
then
(
res
=>
{
this
.
dataList
=
res
.
Data
.
PageData
;
this
.
loading
=
false
;
...
...
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