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
4bd783de
Commit
4bd783de
authored
Jul 15, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加转班
parent
2c61fb1d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
559 additions
and
1 deletion
+559
-1
index.js
src/api/school/index.js
+11
-0
orderlist.vue
src/components/sale/orderlist.vue
+27
-1
transferclass-form.vue
src/components/sale/transferclass-form.vue
+521
-0
No files found.
src/api/school/index.js
View file @
4bd783de
...
@@ -568,3 +568,14 @@ export function SetChangeClassPlan(data) {
...
@@ -568,3 +568,14 @@ export function SetChangeClassPlan(data) {
});
});
}
}
/**
* 保存转班申请单
*/
export
function
SetOrderChange
(
data
)
{
return
request
({
url
:
'/OrderChange/SetOrderChange'
,
method
:
'post'
,
data
});
}
src/components/sale/orderlist.vue
View file @
4bd783de
...
@@ -281,6 +281,12 @@
...
@@ -281,6 +281,12 @@
<q-item-label
@
click=
"showContinueClass(item)"
>
续课
</q-item-label>
<q-item-label
@
click=
"showContinueClass(item)"
>
续课
</q-item-label>
</q-item-section>
</q-item-section>
</q-item>
</q-item>
<q-item
clickable
v-close-popup
v-close-popup
>
<q-item-section>
<q-item-label
@
click=
"transferClass(item)"
>
转班
</q-item-label>
</q-item-section>
</q-item>
</q-list>
</q-list>
</q-btn-dropdown>
</q-btn-dropdown>
</td>
</td>
...
@@ -788,6 +794,10 @@
...
@@ -788,6 +794,10 @@
<!--续课申请-->
<!--续课申请-->
<continueclass-form
v-if=
"isShowContinueClass"
:save-obj=
"orderObj"
@
close=
"closeContinueClassForm"
<continueclass-form
v-if=
"isShowContinueClass"
:save-obj=
"orderObj"
@
close=
"closeContinueClassForm"
@
success=
"refreshOrder"
></continueclass-form>
@
success=
"refreshOrder"
></continueclass-form>
<!-- 转班申请 -->
<transferclass-form
v-if=
"isShowTransferClass"
:save-obj=
"orderObj"
@
close=
"closeTransferClassForm"
@
success=
"refreshOrder"
></transferclass-form>
<!-- 查看报价单 -->
<!-- 查看报价单 -->
<viewquotation-form
v-if=
"isShowviewQuo"
:rId=
"offerId"
:isShowCancle=
"1"
@
close=
"closeQuota"
<viewquotation-form
v-if=
"isShowviewQuo"
:rId=
"offerId"
:isShowCancle=
"1"
@
close=
"closeQuota"
...
@@ -811,6 +821,7 @@
...
@@ -811,6 +821,7 @@
import
classinfoForm
from
'../../components/course/classinfo-form'
;
//班级信息
import
classinfoForm
from
'../../components/course/classinfo-form'
;
//班级信息
import
continueclassForm
from
'../sale/continueclass-form'
//续课申请
import
continueclassForm
from
'../sale/continueclass-form'
//续课申请
import
viewquotationForm
from
'../sale/viewquotation-form'
//报价单信息
import
viewquotationForm
from
'../sale/viewquotation-form'
//报价单信息
import
transferclassForm
from
'../sale/transferclass-form'
//转班信息
import
eduinfoForm
from
'../sale/eduinfo-form'
import
eduinfoForm
from
'../sale/eduinfo-form'
...
@@ -838,7 +849,8 @@
...
@@ -838,7 +849,8 @@
continueclassForm
,
continueclassForm
,
viewquotationForm
,
viewquotationForm
,
eduinfoForm
,
eduinfoForm
,
studyorderForm
studyorderForm
,
transferclassForm
},
},
props
:
{
props
:
{
//正常订单
//正常订单
...
@@ -918,6 +930,7 @@
...
@@ -918,6 +930,7 @@
isEditOrder
:
false
,
//是否有【总经理】修改订单但权限
isEditOrder
:
false
,
//是否有【总经理】修改订单但权限
newModityOrderType
:
0
,
newModityOrderType
:
0
,
isChaBan
:
0
,
//是否插班(0-正常报入,1-插班报入)
isChaBan
:
0
,
//是否插班(0-正常报入,1-插班报入)
isShowTransferClass
:
false
//是否显示转班
}
}
},
},
created
()
{
created
()
{
...
@@ -1056,6 +1069,19 @@
...
@@ -1056,6 +1069,19 @@
this
.
orderObj
=
{};
this
.
orderObj
=
{};
this
.
isShowContinueClass
=
false
;
this
.
isShowContinueClass
=
false
;
},
},
//转班
transferClass
(
item
){
this
.
orderObj
=
item
;
this
.
isShowTransferClass
=
true
;
},
//关闭转班
closeTransferClassForm
(){
this
.
orderObj
=
{};
this
.
isShowTransferClass
=
false
;
},
//获取员工列表
//获取员工列表
Employee
()
{
Employee
()
{
var
qMsg
=
{
var
qMsg
=
{
...
...
src/components/sale/transferclass-form.vue
0 → 100644
View file @
4bd783de
This diff is collapsed.
Click to expand it.
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