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
96bed70e
Commit
96bed70e
authored
May 12, 2022
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
675e4201
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
7 deletions
+28
-7
order-form.vue
src/components/school/student/transfer-order/order-form.vue
+21
-2
eventsCalendar.vue
src/components/stuMan/eventsCalendar.vue
+4
-5
activityList.vue
src/pages/sale/activityList.vue
+3
-0
No files found.
src/components/school/student/transfer-order/order-form.vue
View file @
96bed70e
...
...
@@ -324,6 +324,17 @@
class=
"col-6 q-py-sm"
label=
"市场人员"
/>
<q-input
v-if=
"stuData.StuList[0].STTeacherId>0"
filled
stack-label
disable
:dense=
"false"
maxlength=
"10"
v-model=
"stuData.StuList[0].STTeacherName"
class=
"col-6 q-py-sm"
label=
"协助老师"
/>
<q-input
filled
stack-label
...
...
@@ -447,7 +458,8 @@ export default {
EnterId
:
0
,
//市场人员
// NormalCommission:'',//正常返佣金额
// RenewCommission:"",// 预计返佣金额
ScrollSchoolId
:
-
1
ScrollSchoolId
:
-
1
,
HelpEnterId
:
0
,
//协助老师id:STTeacherId AssistType =4 表示老师
},
newSchoolList
:
[],
EnterName
:
""
,
//市场人员
...
...
@@ -472,6 +484,11 @@ export default {
if
(
this
.
saveObj
&&
this
.
saveObj
.
CourseId
)
{
this
.
OrderMsg
.
CourseId
=
this
.
saveObj
.
CourseId
;
}
// 判断是否续费协助老师赋值
if
(
this
.
stuData
.
StuList
[
0
].
IsRenewGuest
!=
1
){
this
.
OrderMsg
.
HelpEnterId
=
this
.
stuData
.
StuList
[
0
].
STTeacherId
;
}
this
.
getOrderSEList
();
this
.
getEmployee
(
0
);
this
.
getEmployee
(
2
);
...
...
@@ -498,7 +515,9 @@ export default {
if
(
res
.
Code
==
1
)
{
res
.
Data
.
map
(
e
=>
{
if
(
e
.
AssistType
==
4
)
{
// this.OrderMsg.HelpEnterId = e.AssistId;
if
(
this
.
stuData
.
StuList
[
0
].
IsRenewGuest
==
1
){
this
.
OrderMsg
.
HelpEnterId
=
e
.
AssistId
;
}
this
.
HelpEnterDisable
=
true
;
}
if
(
e
.
AssistType
==
2
)
{
...
...
src/components/stuMan/eventsCalendar.vue
View file @
96bed70e
...
...
@@ -290,11 +290,8 @@
<el-date-picker
style=
"width:190px"
v-model=
"date"
type=
"
date
"
type=
"
month
"
:clearable=
"false"
value-format=
"yyyy-MM-d"
:picker-options=
"pickerOptions"
:editable=
"false"
placeholder=
"选择日期"
@
change=
"getList"
>
...
...
@@ -394,7 +391,9 @@ export default {
},
methods
:
{
eventName
(
item
){
const
{
href
}
=
this
.
$router
.
resolve
({
path
:
'/stuMan/activeList'
,
query
:{
'ActivityName'
:
item
}})
const
{
href
}
=
this
.
$router
.
resolve
({
path
:
'/sale/activityList'
,
query
:{
'ActivityName'
:
item
}
})
window
.
open
(
href
,
'_blank'
);
},
// 获取活动日历
...
...
src/pages/sale/activityList.vue
View file @
96bed70e
...
...
@@ -355,6 +355,9 @@
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
Id
)
{
this
.
msg
.
Id
=
this
.
$route
.
query
.
Id
}
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
ActivityName
){
this
.
msg
.
ActivityName
=
this
.
$route
.
query
.
ActivityName
}
this
.
getList
();
this
.
getActiveTypeList
();
},
...
...
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