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
0c83d14c
Commit
0c83d14c
authored
Feb 04, 2024
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
转学员
parent
62d9d999
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
11 deletions
+15
-11
sysuser.vue
src/pages/school/sysuser.vue
+15
-11
No files found.
src/pages/school/sysuser.vue
View file @
0c83d14c
...
@@ -55,8 +55,8 @@
...
@@ -55,8 +55,8 @@
</q-field>
</q-field>
</div>
</div>
<div
class=
"col-3"
>
<div
class=
"col-3"
>
<q-select
filled
stack-label
option-value=
"Id"
option-label=
"Name"
v-model=
"msg.AccountUserType"
@
input=
"resetSearch()"
<q-select
filled
stack-label
option-value=
"Id"
option-label=
"Name"
v-model=
"msg.AccountUserType"
:options=
"AccountUserTypeList"
label=
"员工类型"
:dense=
"false"
emit-value
map-options
/>
@
input=
"resetSearch()"
:options=
"AccountUserTypeList"
label=
"员工类型"
:dense=
"false"
emit-value
map-options
/>
</div>
</div>
<!-- <div class="col-3 Sysuser_Date">
<!-- <div class="col-3 Sysuser_Date">
<q-field filled class="col-6">
<q-field filled class="col-6">
...
@@ -281,11 +281,11 @@
...
@@ -281,11 +281,11 @@
</q-dialog>
</q-dialog>
<!-- 协助老师交接 -->
<!-- 协助老师交接 -->
<q-dialog
v-model=
"teacherIsDetails"
>
<q-dialog
v-model=
"teacherIsDetails"
>
<q-card
style=
"width: 450px;"
>
<q-card
style=
"width: 450px;"
>
<q-card-section
class=
"row items-center q-pb-none"
>
<q-card-section
class=
"row items-center q-pb-none"
>
<div
class=
"text-h6"
>
协助人员交接
</div>
<div
class=
"text-h6"
>
【{{teacherHandoverMsg.EmployeeName}}】
协助人员交接
</div>
<q-space
/>
<q-space
/>
<q-btn
icon=
"close"
flat
round
dense
v-close-popup
/>
<q-btn
icon=
"close"
flat
round
dense
v-close-popup
/>
</q-card-section>
</q-card-section>
...
@@ -296,12 +296,13 @@
...
@@ -296,12 +296,13 @@
v-model=
"teacherHandoverMsg.ReceiveId"
@
filter=
"filterFn"
ref=
"Id"
:options=
"Employeelist"
label=
"交接人员"
v-model=
"teacherHandoverMsg.ReceiveId"
@
filter=
"filterFn"
ref=
"Id"
:options=
"Employeelist"
label=
"交接人员"
:dense=
"false"
emit-value
map-options
/>
:dense=
"false"
emit-value
map-options
/>
</div>
</div>
</q-card-section>
</q-card-section>
<q-separator
/>
<q-separator
/>
<q-card-actions
align=
"right"
class=
"bg-white"
>
<q-card-actions
align=
"right"
class=
"bg-white"
>
<q-btn
class=
"q-mr-md"
label=
"取消"
@
click=
"teacherIsDetails=false"
/>
<q-btn
class=
"q-mr-md"
label=
"取消"
@
click=
"teacherIsDetails=false"
/>
<q-btn
color=
"accent"
class=
"q-mr-md"
label=
"确定"
@
click=
"saveTeacherHandoverInfo()"
:loading=
"teacherloading"
/>
<q-btn
color=
"accent"
class=
"q-mr-md"
label=
"确定"
@
click=
"saveTeacherHandoverInfo()"
:loading=
"teacherloading"
/>
</q-card-actions>
</q-card-actions>
</q-card>
</q-card>
...
@@ -530,6 +531,7 @@
...
@@ -530,6 +531,7 @@
teacherHandoverMsg
:
{
teacherHandoverMsg
:
{
UserId
:
""
,
//原跟进成员的userid
UserId
:
""
,
//原跟进成员的userid
ReceiveId
:
""
,
//接替成员的userid
ReceiveId
:
""
,
//接替成员的userid
EmployeeName
:
""
,
//员工姓名
},
//离职人员订单交接数据
},
//离职人员订单交接数据
teacherloading
:
false
,
teacherloading
:
false
,
teacherIsDetails
:
false
,
//离职人员协助老师交接
teacherIsDetails
:
false
,
//离职人员协助老师交接
...
@@ -551,9 +553,11 @@
...
@@ -551,9 +553,11 @@
this
.
orderIsDetails
=
true
this
.
orderIsDetails
=
true
},
},
// 协助老师交接
// 协助老师交接
teacherHandover
(
row
)
{
teacherHandover
(
row
)
{
this
.
teacherHandoverMsg
.
UserId
=
row
.
EmAccountId
console
.
log
(
"row"
,
row
);
this
.
teacherHandoverMsg
.
UserId
=
row
.
EmAccountId
;
this
.
teacherHandoverMsg
.
EmployeeName
=
row
.
EmployeeName
;
this
.
teacherIsDetails
=
true
this
.
teacherIsDetails
=
true
},
},
saveOrderHandoverInfo
()
{
//保存
saveOrderHandoverInfo
()
{
//保存
...
@@ -629,7 +633,7 @@
...
@@ -629,7 +633,7 @@
})
})
return
return
}
}
this
.
teacherloading
=
true
this
.
teacherloading
=
true
let
msg
=
{
let
msg
=
{
UserId
:
this
.
teacherHandoverMsg
.
UserId
,
UserId
:
this
.
teacherHandoverMsg
.
UserId
,
...
...
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