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
22aa4e41
Commit
22aa4e41
authored
Jul 21, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
189d7c84
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
15 deletions
+46
-15
index.js
src/api/school/index.js
+13
-0
transferclass-form.vue
src/components/sale/transferclass-form.vue
+33
-15
No files found.
src/api/school/index.js
View file @
22aa4e41
...
...
@@ -579,3 +579,16 @@ export function SetOrderChange(data) {
});
}
/**
* 保存分拆申请
*/
export
function
SetOrderSplit
(
data
)
{
return
request
({
url
:
'/OrderChange/SetOrderSplit'
,
method
:
'post'
,
data
});
}
src/components/sale/transferclass-form.vue
View file @
22aa4e41
...
...
@@ -299,7 +299,8 @@
<
script
>
import
{
getSchoolDropdown
,
SetOrderChange
SetOrderChange
,
SetOrderSplit
}
from
'../../api/school/index'
import
{
GetClassTypeList
...
...
@@ -515,6 +516,7 @@
})
return
;
}
if
(
this
.
transMsg
.
ChangeType
==
1
){
SetOrderChange
(
this
.
transMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$q
.
notify
({
...
...
@@ -529,6 +531,22 @@
this
.
IsShowContinueClassDialog
=
false
}
})
}
else
{
SetOrderSplit
(
this
.
transMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
$q
.
notify
({
icon
:
'iconfont icon-chenggong'
,
color
:
'accent'
,
timeout
:
2000
,
message
:
'保存成功!'
,
position
:
'top'
})
//调用父页面成功方法
this
.
$emit
(
'success'
);
this
.
IsShowContinueClassDialog
=
false
}
})
}
},
//获取校区列表
getSchool
()
{
...
...
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