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
5c52ff9c
Commit
5c52ff9c
authored
Nov 22, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a2005b7c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
peemanagement.js
src/api/sale/peemanagement.js
+5
-5
peerManagement.vue
src/pages/sale/peerManagement.vue
+12
-1
No files found.
src/api/sale/peemanagement.js
View file @
5c52ff9c
...
...
@@ -6,7 +6,7 @@ import request from '../../utils/request'
*/
export
function
GetCustomerPage
(
data
)
{
return
request
({
url
:
'/Customer/GetCustomerPage'
,
url
:
'/
B2B
Customer/GetCustomerPage'
,
method
:
'post'
,
data
})
...
...
@@ -18,7 +18,7 @@ export function GetCustomerPage(data) {
*/
export
function
SetCustomer
(
data
)
{
return
request
({
url
:
'/Customer/SetCustomer'
,
url
:
'/
B2B
Customer/SetCustomer'
,
method
:
'post'
,
data
})
...
...
@@ -31,7 +31,7 @@ export function SetCustomer(data) {
*/
export
function
RemoveCustomer
(
data
)
{
return
request
({
url
:
'/Customer/RemoveCustomer'
,
url
:
'/
B2B
Customer/RemoveCustomer'
,
method
:
'post'
,
data
})
...
...
@@ -43,7 +43,7 @@ export function RemoveCustomer(data) {
*/
export
function
GetCustomer
(
data
)
{
return
request
({
url
:
'/Customer/GetCustomer'
,
url
:
'/
B2B
Customer/GetCustomer'
,
method
:
'post'
,
data
})
...
...
@@ -55,7 +55,7 @@ export function GetCustomer(data) {
*/
export
function
AuditCustomer
(
data
)
{
return
request
({
url
:
'/Customer/AuditCustomer'
,
url
:
'/
B2B
Customer/AuditCustomer'
,
method
:
'post'
,
data
})
...
...
src/pages/sale/peerManagement.vue
View file @
5c52ff9c
...
...
@@ -157,7 +157,7 @@
},
created
()
{},
mounted
()
{
//
this.getList();
this
.
getList
();
},
methods
:
{
//翻页
...
...
@@ -188,6 +188,17 @@
closeRightForm
()
{
this
.
isShowRightForm
=
false
;
},
//获取分页数据
getList
(){
GetCustomerPage
(
this
.
msg
).
then
(
res
=>
{
// this.data = res.Data.PageData;
// this.loading = false;
// this.pageCount = res.Data.PageCount;
console
.
log
(
res
,
'数据'
);
}).
catch
(()
=>
{
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