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
39bdb42d
Commit
39bdb42d
authored
Apr 19, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
业务单据调整
parent
d16b45a5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
9 deletions
+19
-9
bourseApproval-form.vue
src/components/flow/bourseApproval-form.vue
+3
-3
studentRight-form.vue
src/components/school/student/studentRight-form.vue
+0
-2
changeClassManager.vue
src/pages/teacher/changeClassManager.vue
+1
-1
billquery.vue
src/pages/user/billquery.vue
+15
-3
No files found.
src/components/flow/bourseApproval-form.vue
View file @
39bdb42d
...
...
@@ -238,13 +238,13 @@
data
()
{
return
{
msg
:
{
FlowId
:
1
0
FlowId
:
1
2
},
isShowProcess
:
false
,
//显示旁边弹窗
processObj
:
{},
//传递子组件
flowObj
:
{
FlowId
:
1
0
,
FlowName
:
"
课程审批
"
,
FlowId
:
1
2
,
FlowName
:
"
教师考核审批流程
"
,
FlowNodeList
:
[],
//审核节点列表
},
//显示对象
...
...
src/components/school/student/studentRight-form.vue
View file @
39bdb42d
...
...
@@ -264,9 +264,7 @@
},
//刷新列表
refreshStudentPage
()
{
console
.
log
(
"2222"
);
this
.
$emit
(
"success"
);
},
//客户情况信息的修改
consultsuccess
(
data
)
{
...
...
src/pages/teacher/changeClassManager.vue
View file @
39bdb42d
...
...
@@ -463,7 +463,7 @@
this
.
isShowZujuanBillForm
=
false
;
this
.
isShowExamBillForm
=
false
;
this
.
isShowVipCourseForm
=
false
;
this
.
isShowAssessmentForm
=
false
;
this
.
isShowAssessmentForm
=
false
;
this
.
billObj
=
{};
this
.
getStuBackBill
();
},
...
...
src/pages/user/billquery.vue
View file @
39bdb42d
...
...
@@ -164,6 +164,10 @@
<!-- 显示Vip课程申请 -->
<vipcoursebillForm
v-if=
"isShowVipCourseForm"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
></vipcoursebillForm>
<!-- 显示教师考核申请 -->
<assessmentbillForm
v-if=
"isShowAssessmentForm"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
></assessmentbillForm>
</div>
</div>
</template>
...
...
@@ -185,6 +189,7 @@
import
stopbillForm
from
'../../components/sale/stopbill-form'
;
import
temporaryClassForm
from
'../../components/sale/temporaryClassbill-form'
;
import
vipcoursebillForm
from
"../../components/sale/vipcoursebill-form.vue"
;
import
assessmentbillForm
from
"../../components/sale/assessmentbill-form.vue"
;
export
default
{
meta
:
{
title
:
"教务单据查询"
...
...
@@ -195,7 +200,8 @@
ordertransForm
,
stopbillForm
,
temporaryClassForm
,
vipcoursebillForm
vipcoursebillForm
,
assessmentbillForm
,
},
data
()
{
return
{
...
...
@@ -294,6 +300,7 @@
isShowStopBillForm
:
false
,
//是否显示停课订单详情
isShowTemporaryClass
:
false
,
//是否显示临时上课邀请订单详情
isShowVipCourseForm
:
false
,
//是否显示Vip课程申请详情
isShowAssessmentForm
:
false
,
//是否显示教师考核详情
}
},
created
()
{
...
...
@@ -340,11 +347,11 @@
this
.
isShowStopBillForm
=
false
;
this
.
isShowTemporaryClass
=
false
;
this
.
isShowVipCourseForm
=
false
;
this
.
isShowAssessmentForm
=
false
;
this
.
billObj
=
{};
},
//显示表单
showBillForm
(
item
,
type
)
{
//调课
if
(
item
.
ReceiptType
==
1
)
{
this
.
isShowChangeBillForm
=
true
;
...
...
@@ -365,10 +372,14 @@
else
if
(
item
.
ReceiptType
==
4
)
{
this
.
isShowTemporaryClass
=
true
;
}
//
临时上课邀
请
//
Vip课程申
请
else
if
(
item
.
ReceiptType
==
11
)
{
this
.
isShowVipCourseForm
=
true
;
}
//教师考核申请
else
if
(
item
.
ReceiptType
==
12
)
{
this
.
isShowAssessmentForm
=
true
;
}
this
.
showType
=
type
;
this
.
billObj
=
item
;
this
.
isShowEdit
=
false
;
...
...
@@ -409,6 +420,7 @@
this
.
isShowBackBillForm
=
false
;
this
.
isShowChangeBillForm
=
false
;
this
.
isShowVipCourseForm
=
false
;
this
.
isShowAssessmentForm
=
false
;
this
.
billObj
=
{};
this
.
getStuBackBill
();
},
...
...
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