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
137ee29c
Commit
137ee29c
authored
Jul 07, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
个人中心提交
parent
ad14a0d7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
402 additions
and
140 deletions
+402
-140
user.js
src/api/users/user.js
+46
-0
Noticen.png
src/assets/images/Noticen.png
+0
-0
Notices.png
src/assets/images/Notices.png
+0
-0
teacher-form.vue
src/components/school/teacher/teacher-form.vue
+3
-0
summaryInfo.vue
src/components/user/summaryInfo.vue
+348
-134
document.vue
src/pages/administration/document.vue
+1
-1
personalData.vue
src/pages/user/personalData.vue
+4
-5
No files found.
src/api/users/user.js
View file @
137ee29c
...
...
@@ -124,3 +124,49 @@ export function getEmployeeAddrBook(data)
})
}
/**
* 获取我的提成折线图
*/
export
function
getUserSellCommission
(
data
)
{
return
request
({
url
:
'/UserInfo/GetUserSellCommission'
,
method
:
'post'
,
data
})
}
/**
* 获取我的奖金折线图
*/
export
function
getTeacherSellCommission
(
data
)
{
return
request
({
url
:
'/UserInfo/GetTeacherSellCommission'
,
method
:
'post'
,
data
})
}
/**
* 个人中心 我的奖金确认
*/
export
function
updateSureTeachingBonusDetail
(
data
)
{
return
request
({
url
:
'/UserInfo/UpdateSureTeachingBonusDetail'
,
method
:
'post'
,
data
})
}
/**
* 个人中心 我的提成确认
*/
export
function
updatSureSellCommission
(
data
)
{
return
request
({
url
:
'/UserInfo/UpdatSureSellCommission'
,
method
:
'post'
,
data
})
}
\ No newline at end of file
src/assets/images/Noticen.png
0 → 100644
View file @
137ee29c
2.82 KB
src/assets/images/Notices.png
0 → 100644
View file @
137ee29c
2.71 KB
src/components/school/teacher/teacher-form.vue
View file @
137ee29c
...
...
@@ -286,6 +286,9 @@
this
.
objOption
.
BaseStuNum
=
this
.
saveObj
.
BaseStuNum
;
this
.
objOption
.
BaseHourFee
=
this
.
saveObj
.
BaseHourFee
;
this
.
objOption
.
Specialty
=
this
.
saveObj
.
Specialty
;
this
.
objOption
.
EnableTime
=
this
.
saveObj
.
EnableTime
;
this
.
objOption
.
BaseHoursEnabled
=
this
.
saveObj
.
BaseHoursEnabled
;
if
(
this
.
saveObj
.
ChooseSpecialty
&&
this
.
saveObj
.
ChooseSpecialty
.
length
>
0
)
{
this
.
chooseSpecialty
=
this
.
saveObj
.
ChooseSpecialty
;
}
...
...
src/components/user/summaryInfo.vue
View file @
137ee29c
This diff is collapsed.
Click to expand it.
src/pages/administration/document.vue
View file @
137ee29c
...
...
@@ -479,7 +479,7 @@
//分页改变
changePage
(
val
)
{
this
.
msg
.
PageIndex
=
val
;
this
.
get
School
()
this
.
get
List
()
},
getChild
(
deptArray
)
{
var
tempStr
=
""
;
...
...
src/pages/user/personalData.vue
View file @
137ee29c
...
...
@@ -115,7 +115,7 @@
<div
class=
"text-muted"
style=
"font-size:14px;margin-top: 12px;"
>
{{
showObj
.
SchoolName
}}
·
{{
showObj
.
PostName
}}
</div>
<div
class=
"q-mt-xs"
>
<q-btn
style=
"background: var(--q-color-negative);color: white;"
@
click=
"logout"
>
退出登录
</q-btn>
<q-btn
style=
"background: var(--q-color-negative);color: white;
margin-top: 10px;"
size=
"sm
"
@
click=
"logout"
>
退出登录
</q-btn>
</div>
</div>
</div>
...
...
@@ -131,9 +131,8 @@
<span
class=
"box_l_t_l"
>
部门:
</span>
<span>
{{
showObj
.
DeptName
}}
</span>
</div>
<!--
<div
class=
"box_l_title"
style=
"margin-top: 55px;"
>
概要信息
</div>
-->
<!--
<div
:class=
"rightType==0?'box_l_title':'box_l_cen'"
@
click=
'rightType=0'
>
概要信息
</div>
<div
:class=
"rightType==3?'box_l_title':'box_l_cen'"
@
click=
'rightType=3'
>
预警信息
</div>
-->
<div
:class=
"rightType==0?'box_l_title':'box_l_cen'"
@
click=
'rightType=0'
>
概要信息
</div>
<!--
<div
:class=
"rightType==3?'box_l_title':'box_l_cen'"
@
click=
'rightType=3'
>
预警信息
</div>
-->
<div
:class=
"rightType==1?'box_l_title':'box_l_cen'"
@
click=
'rightType=1'
>
账户资料
</div>
<div
:class=
"rightType==2?'box_l_title':'box_l_cen'"
@
click=
'rightType=2'
>
密码修改
</div>
</div>
...
...
@@ -238,7 +237,7 @@
loading1
:
false
,
loading2
:
false
,
showObj
:
{},
rightType
:
1
,
//右边显示类型
rightType
:
0
,
//右边显示类型
datamodify
:
{},
CompanyList
:
[],
passwordMsg
:
Object
.
assign
({},
defaultpassword
),
...
...
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