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
ce1f59fd
Commit
ce1f59fd
authored
Aug 27, 2024
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
样式调整
parent
9da5fd6c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
24 deletions
+26
-24
studentRight-form.vue
src/components/school/student/studentRight-form.vue
+2
-2
stulist.vue
src/components/school/student/stulist.vue
+17
-17
tickMode.vue
src/components/school/student/transfer-order/tickMode.vue
+7
-5
No files found.
src/components/school/student/studentRight-form.vue
View file @
ce1f59fd
...
...
@@ -19,9 +19,9 @@
<div
class=
"custom_HRight"
>
<q-btn
v-if=
"userInfo.IsTenCccUser == 1"
@
click=
"callUserHandler"
class=
"q-mr-md"
round
unelevated
color=
"primary"
dense
icon=
"phone"
title=
"拨打电话"
></q-btn>
<q-btn
unelevated
color=
"positive"
v-if=
"
<
!--
<
q-btn
unelevated
color=
"positive"
v-if=
"
!IsHaveCurseManager && userInfo.Id == baseObj.CreateBy
"
size=
"sm"
:loading=
"pushing"
class=
"q-mr-md"
@
click=
"assistBatchHandler"
>
推送课程顾问
</q-btn>
"
size=
"sm"
:loading=
"pushing"
class=
"q-mr-md"
@
click=
"assistBatchHandler"
>
推送课程顾问
</q-btn>
-->
<q-btn
v-if=
"getJudgeTrans()"
color=
"primary"
unelevated
size=
"sm"
label=
"转交"
@
click=
"isShowTrans = true"
>
<q-popup-proxy
:offset=
"[10, 10]"
>
<q-banner
v-if=
"isShowTrans"
>
...
...
src/components/school/student/stulist.vue
View file @
ce1f59fd
...
...
@@ -71,8 +71,8 @@
<div
class=
"page-option"
v-if=
"!pushMode"
>
<q-btn
color=
"accent"
v-if=
"IsTrasferAll()"
outline
class=
"q-mr-md"
size=
"sm"
icon=
"swap_horiz"
label=
"批量转交"
@
click=
"pushMode = true"
/>
<q-btn
color=
"accent"
outline
class=
"q-mr-md"
size=
"sm"
icon=
"swap_horiz"
label=
"推送课程顾问"
v-if=
"userInfo.IsCourseConsultant == 0"
@
click=
"pushMode = true"
/>
<
!-- <
q-btn color="accent" outline class="q-mr-md" size="sm" icon="swap_horiz" label="推送课程顾问"
v-if="userInfo.IsCourseConsultant == 0" @click="pushMode = true" />
-->
<q-btn
color=
"accent"
v-if=
"StudentType !=2"
class=
"q-mr-md"
size=
"sm"
icon=
"swap_horiz"
label=
"转订单"
:disable=
"selection.length === 0"
@
click=
"transferOrder"
/>
<q-btn
color=
"accent"
v-if=
"StudentType==2"
class=
"q-mr-md"
size=
"sm"
icon=
"swap_horiz"
label=
"转留学"
...
...
@@ -367,11 +367,11 @@
align
:
"left"
,
field
:
row
=>
row
.
StuName
},
{
name
:
"CurseManager"
,
label
:
"课程顾问"
,
align
:
"left"
},
//
{
//
name: "CurseManager",
//
label: "课程顾问",
//
align: "left"
//
},
{
name
:
"TeacherManager"
,
label
:
"协助老师"
,
...
...
@@ -827,8 +827,8 @@
let
CreateTimeStr2
=
date
.
formatDate
(
new
Date
(
'2023-03-22'
),
'YYYY-MM-DD'
)
if
(
CreateTimeStr
>=
CreateTimeStr2
)
{
if
(
!
this
.
selection
[
0
].
FileVoucher
)
{
this
.
$message
.
error
(
'需先上传学员到访表'
)
return
//
this.$message.error('需先上传学员到访表')
//
return
}
}
const
firstId
=
this
.
selection
[
0
].
CustomerId
;
...
...
@@ -836,12 +836,12 @@
return
e
.
CustomerId
==
firstId
;
});
if
(
!
flag
)
{
this
.
$q
.
notify
({
type
:
"negative"
,
position
:
"top"
,
message
:
`所属同行不一致,请重新选择`
});
return
;
//
this.$q.notify({
//
type: "negative",
//
position: "top",
//
message: `所属同行不一致,请重新选择`
//
});
//
return;
}
this
.
isShowTransfer
=
true
;
},
...
...
@@ -851,8 +851,8 @@
let
CreateTimeStr2
=
date
.
formatDate
(
new
Date
(
'2023-03-22'
),
'YYYY-MM-DD'
)
if
(
CreateTimeStr
>=
CreateTimeStr2
)
{
if
(
!
this
.
selection
[
0
].
FileVoucher
)
{
this
.
$message
.
error
(
'需先上传学员到访表'
)
return
//
this.$message.error('需先上传学员到访表')
//
return
}
}
this
.
isShowAbroad
=
true
;
...
...
src/components/school/student/transfer-order/tickMode.vue
View file @
ce1f59fd
...
...
@@ -28,9 +28,9 @@
</
template
>
<
script
>
export
default
{
model
:{
prop
:
'type'
,
event
:
"changeType"
model
:
{
prop
:
'type'
,
event
:
"changeType"
},
props
:
{
type
:
{
...
...
@@ -40,7 +40,7 @@
},
methods
:
{
chooseChange
(
n
)
{
this
.
$emit
(
'changeType'
,
n
)
this
.
$emit
(
'changeType'
,
n
)
}
}
};
...
...
@@ -73,7 +73,9 @@
flex-direction
:
column
;
align-items
:
center
;
position
:
relative
;
margin-right
:
20px
;
margin-right
:
20px
;
margin-left
:
70px
;
.right
{
position
:
absolute
;
right
:
-20px
;
...
...
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