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
ecbf1b2a
Commit
ecbf1b2a
authored
Dec 20, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a7d5fc52
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
59 additions
and
7 deletions
+59
-7
peemanagement.js
src/api/sale/peemanagement.js
+7
-2
index.js
src/api/system/index.js
+50
-3
b2bcustomer.vue
src/pages/sale/b2bcustomer.vue
+2
-2
No files found.
src/api/sale/peemanagement.js
View file @
ecbf1b2a
...
@@ -6,13 +6,18 @@ import request from '../../utils/request'
...
@@ -6,13 +6,18 @@ import request from '../../utils/request'
*/
*/
export
function
GetCustomerPage
(
data
)
{
export
function
GetCustomerPage
(
data
)
{
return
request
({
return
request
({
// url: '/B2BCustomer/GetCustomerPage',
url
:
'/B2BCustomer/GetCustomerPage'
,
method
:
'post'
,
data
})
}
export
function
GetCustomerPage_v2
(
data
)
{
return
request
({
url
:
'/B2BCustomer/GetCustomerPageList_V2'
,
url
:
'/B2BCustomer/GetCustomerPageList_V2'
,
method
:
'post'
,
method
:
'post'
,
data
data
})
})
}
}
/**
/**
* 新增修改同业客户资料
* 新增修改同业客户资料
*
*
...
...
src/api/system/index.js
View file @
ecbf1b2a
...
@@ -510,10 +510,57 @@ export function RemodeStudentType(data) {
...
@@ -510,10 +510,57 @@ export function RemodeStudentType(data) {
});
});
}
}
/**
* 获取学习目的分页列表
*/
export
function
GetLearningGoalsPage
(
data
)
{
return
request
({
url
:
'/CustomerStudent/GetLearningGoalsPage'
,
method
:
'post'
,
data
});
}
/**
* 获取学习目的下拉列表
*/
export
function
GetLearningGoalsDropDown
(
data
)
{
return
request
({
url
:
'/CustomerStudent/GetLearningGoalsList'
,
method
:
'post'
,
data
});
}
/**
* 新增修改学习目的
*/
export
function
SetLearningGoals
(
data
)
{
return
request
({
url
:
'/CustomerStudent/SetLearningGoals'
,
method
:
'post'
,
data
});
}
/**
* 根据编号获取学习目的详情
*/
export
function
GetLearningGoals
(
data
)
{
return
request
({
url
:
'/CustomerStudent/GetLearningGoals'
,
method
:
'post'
,
data
});
}
/**
* 根据编号删除学习目的
*/
export
function
RemoveLearningGoals
(
data
)
{
return
request
({
url
:
'/CustomerStudent/RemoveLearningGoals'
,
method
:
'post'
,
data
});
}
src/pages/sale/b2bcustomer.vue
View file @
ecbf1b2a
...
@@ -96,7 +96,7 @@
...
@@ -96,7 +96,7 @@
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
import
{
GetCustomerPage
,
RemoveCustomer
}
from
"../../api/sale/peemanagement"
;
import
{
GetCustomerPage
_v2
,
RemoveCustomer
}
from
"../../api/sale/peemanagement"
;
import
b2bcustomlist
from
"../../components/sale/b2bcustomlist"
;
import
b2bcustomlist
from
"../../components/sale/b2bcustomlist"
;
export
default
{
export
default
{
meta
:
{
meta
:
{
...
@@ -169,7 +169,7 @@ export default {
...
@@ -169,7 +169,7 @@ export default {
//获取分页数据
//获取分页数据
getList
()
{
getList
()
{
this
.
msg
.
QCustomerState
=
this
.
tabCheck
;
this
.
msg
.
QCustomerState
=
this
.
tabCheck
;
GetCustomerPage
(
this
.
msg
)
GetCustomerPage
_v2
(
this
.
msg
)
.
then
(
res
=>
{
.
then
(
res
=>
{
this
.
dataList
=
res
.
Data
.
PageData
;
this
.
dataList
=
res
.
Data
.
PageData
;
this
.
loading
=
false
;
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