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
9a158669
Commit
9a158669
authored
Feb 23, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
05f3c852
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
19 deletions
+23
-19
student-left.vue
src/components/school/student/student-left.vue
+23
-14
transfer-order.vue
src/components/school/student/transfer-order.vue
+0
-1
changeCourse.vue
src/components/stuMan/subscribe/changeCourse.vue
+0
-3
subscribeForm.vue
src/components/stuMan/subscribe/subscribeForm.vue
+0
-1
No files found.
src/components/school/student/student-left.vue
View file @
9a158669
...
...
@@ -157,7 +157,7 @@
</div>
</div>
</div>
<template
v-if=
"
BelongType != 3
"
>
<template
v-if=
"
IsShowStuSourceIdName(customObj)
"
>
<div
class=
"customer_info_component"
>
<div
class=
"customer_info_Stage"
>
<div
class=
"stage_label"
>
...
...
@@ -321,13 +321,6 @@
:disable=
"noEdit"
option-value=
"Id"
emit-value
map-options
/>
</div>
</div>
<!-- <div class="info_item">
<div class="item_label">创建人</div>
<div class="item_value">
<q-select filled v-model="customObj.CreateBy" dense disable @filter="filterEmployee" use-input
:options="myEmployeeList" option-label="EmployeeName" option-value="Id" emit-value map-options />
</div>
</div> -->
<div
class=
"info_item"
v-if=
"!noEdit"
>
<q-btn
color=
"accent"
class=
"q-mr-md"
label=
"保存"
@
click=
"saveStu()"
/>
</div>
...
...
@@ -444,10 +437,12 @@
},
NeedData
:
[],
noEdit
:
false
,
isHaveOrder
:
false
isHaveOrder
:
false
,
userInfo
:
{},
//当前登录人员
};
},
created
()
{
this
.
userInfo
=
this
.
getLocalStorage
();
this
.
getStuStageList
();
this
.
getBasicList
();
this
.
queryGuestEducationEnumList
();
...
...
@@ -467,9 +462,6 @@
this
.
noEdit
=
true
;
}
}
if
(
this
.
BelongType
==
3
)
{
// this.noEdit = true;
}
},
watch
:
{
stuData
()
{
...
...
@@ -477,6 +469,23 @@
}
},
methods
:
{
//是否显示关联来源人信息
IsShowStuSourceIdName
(
item
)
{
var
isHaveAuth
=
false
;
if
(
this
.
userInfo
&&
this
.
userInfo
.
ActionMenuList
&&
this
.
userInfo
.
ActionMenuList
.
length
>
0
)
{
this
.
userInfo
.
ActionMenuList
.
forEach
((
x
)
=>
{
if
(
x
.
FunctionCode
==
"Look_StuSourceId"
)
{
isHaveAuth
=
true
;
}
});
}
if
(
item
.
CreateBy
==
this
.
userInfo
.
Id
||
isHaveAuth
)
{
return
true
;
}
else
{
return
false
;
}
},
uploadFile
(
files
)
{
UploadSelfFile
(
"studentIcon"
,
files
,
res
=>
{
if
(
res
.
Code
==
1
)
{
...
...
@@ -746,8 +755,8 @@
this
.
customObj
.
QQ
=
tempDate
.
QQ
;
this
.
customObj
.
WeChatNo
=
tempDate
.
WeChatNo
;
this
.
customObj
.
StuNeeds
=
tempDate
.
StuNeeds
;
this
.
customObj
.
StuTel
=
tempDate
.
StuTel
;
this
.
customObj
.
StuTel
=
tempDate
.
StuTel
;
if
(
this
.
customObj
.
StuId
>
0
)
{
this
.
isHaveOrder
=
true
;
}
...
...
src/components/school/student/transfer-order.vue
View file @
9a158669
...
...
@@ -376,7 +376,6 @@ export default {
},
// 选择课程
selectCourse
(
val
)
{
console
.
log
(
"tag2"
,
val
);
if
(
val
.
length
>
0
)
{
this
.
saveObj
=
val
[
0
];
this
.
saveObj
.
Unit_Price
=
this
.
saveObj
.
SellPrice
;
...
...
src/components/stuMan/subscribe/changeCourse.vue
View file @
9a158669
...
...
@@ -81,7 +81,6 @@ export default {
show
(
val
)
{
if
(
val
)
{
this
.
msg
.
StartDate
=
this
.
saveObj
.
date
;
console
.
log
(
99
,
this
.
saveObj
);
this
.
getData
();
}
}
...
...
@@ -128,14 +127,12 @@ export default {
e
.
SubList
.
map
((
_e
,
_i
)
=>
{
if
(
_e
.
GuestList
&&
_e
.
GuestList
.
length
>
0
){
let
ids
=
_e
.
GuestList
.
map
(
x
=>
x
.
AppointmentId
).
toString
()
console
.
log
(
130
,
ids
.
indexOf
(
this
.
saveObj
.
ids
))
if
(
ids
.
indexOf
(
this
.
saveObj
.
ids
)
>-
1
){
this
.
dataList
[
i
].
SubList
.
splice
(
_i
,
1
)
}
}
})
}
})
}
});
...
...
src/components/stuMan/subscribe/subscribeForm.vue
View file @
9a158669
...
...
@@ -468,7 +468,6 @@ export default {
const
totalTime
=
this
.
courseCheckList
.
reduce
((
pre
,
cur
)
=>
{
return
(
pre
+=
cur
.
Minutes
);
},
0
);
console
.
log
(
452
,
this
.
courseCheckList
,
totalTime
);
if
(
this
.
checkChapter
.
StudyMinutes
!==
totalTime
)
{
this
.
$q
.
notify
({
message
:
"课时不匹配,请重新上课时段"
,
...
...
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