Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
B
biz.qingxiao.com
Project
Project
Details
Activity
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
wangxuelai
biz.qingxiao.com
Commits
5e506c41
Commit
5e506c41
authored
Jan 07, 2020
by
baixian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化
parent
722bc1c8
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
52 additions
and
20 deletions
+52
-20
class.png
image/menu/class.png
+0
-0
menuconfig.js
src/common/menuconfig.js
+1
-1
SjdHeader.less
src/components/SjdHeader.less
+1
-0
reboot.less
src/less/reboot.less
+30
-1
indexstaic.js
src/models/indexstaic.js
+1
-1
webapp.js
src/models/webapp.js
+3
-8
index.less
src/pages/classmgt/index.less
+3
-2
index.less
src/pages/classrecord/index.less
+1
-0
index.less
src/pages/course/index.less
+2
-2
index.less
src/pages/index/index.less
+1
-1
index.less
src/pages/integralmanage/operationlog/index.less
+3
-1
index.less
src/pages/integralmanage/storesetting/index.less
+2
-1
index.less
src/pages/student/index.less
+3
-2
index.less
src/pages/teacher/index.less
+1
-0
No files found.
image/menu/class.png
View replaced file @
722bc1c8
View file @
5e506c41
568 Bytes
|
W:
|
H:
646 Bytes
|
W:
|
H:
2-up
Swipe
Onion skin
src/common/menuconfig.js
View file @
5e506c41
...
...
@@ -52,7 +52,7 @@ export default {
height
:
'20px'
,
},
activeurl
:
`
${
__IMGCDN__
}
menu/classactive.png`
,
notactiveurl
:
`
${
__IMGCDN__
}
menu/class.png`
,
notactiveurl
:
`
${
__IMGCDN__
}
menu/class.png
?v=1
`
,
path
:
'/sjd/classmgt'
,
relativePath
:
[
'/sjd/classmgt'
,
'/sjd/classdetail/:classid'
,
'/sjd/newtheme/jobclock/:id'
,
'/sjd/newtheme/calendarclock/:id'
,
'/sjd/newtheme/jobclock/:id/:isCopy'
,
'/sjd/newtheme/calendarclock/:id/:isCopy'
,
'/sjd/thememgt/:classid'
,
'/sjd/clockmgt/:themetype/:classid/:themeid'
,
'/sjd/classdetail/studentinfo/:id'
],
},
...
...
src/components/SjdHeader.less
View file @
5e506c41
.header{
transition: all 0.2s;
box-shadow:0px 1px 2px 0px rgba(0,21,41,0.12);
}
.trigger {
font-size: 18px;
...
...
src/less/reboot.less
View file @
5e506c41
...
...
@@ -109,4 +109,33 @@ ul{
}
li{
list-style: none;
}
\ No newline at end of file
}
:global {
.ant-table{
::-webkit-scrollbar
{
width: 10px;
height: 10px;
border-radius: 5px;
background-color: #fff;
}
::-webkit-scrollbar-track
{
border-radius: 0px;
background: none;
}
::-webkit-scrollbar-thumb
{
border-radius: 5px;
//-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.2);
background-color: rgba(204, 204, 204,1);
}
/*滑块效果*/
::-webkit-scrollbar-thumb:hover
{
border-radius: 5px;
//-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.2);
background-color: rgba(204, 204, 204,1);
}
}
}
src/models/indexstaic.js
View file @
5e506c41
...
...
@@ -162,7 +162,7 @@ export default {
},
*
goDeadlineStudent
({
payload
},
{
call
,
put
,
select
})
{
const
{
studentListQueryParams
}
=
yield
select
(
state
=>
state
.
students
);
studentListQueryParams
.
min_time
=
3
;
studentListQueryParams
.
min_time
=
1
;
studentListQueryParams
.
assign_class_status
=
''
;
studentListQueryParams
.
birthday_start
=
''
;
studentListQueryParams
.
birthday_end
=
''
;
...
...
src/models/webapp.js
View file @
5e506c41
...
...
@@ -271,11 +271,6 @@ export default {
});
}
if
(
pathname
===
'/sjd/student'
)
{
dispatch
({
type
:
'students/pageInit'
,
payload
:
{
},
});
dispatch
({
type
:
'students/queryinfo'
,
payload
:
{
...
...
@@ -462,9 +457,9 @@ export default {
});
}
if
(
pathname
==
'/sjd/classmgt'
)
{
dispatch
({
type
:
'classmgt/pageInit'
,
});
//
dispatch({
//
type: 'classmgt/pageInit',
//
});
dispatch
({
type
:
'classmgt/queryinfo'
,
});
...
...
src/pages/classmgt/index.less
View file @
5e506c41
...
...
@@ -39,8 +39,8 @@
.tablebox {
background: #fff;
:global {
.ant-table {
border-bottom: 1px solid #E8E8E8;
.ant-table
-fixed
{
border-bottom: 1px solid #E8E8E8
!important
;
}
.ant-table tbody tr:nth-child(2n) {
background-color: #FBFBFB;
...
...
@@ -140,6 +140,7 @@
justify-content: space-between;
padding-left: 14px;
padding-right: 14px;
margin-top: 10px;
.tablefooterstatic {
color:rgba(0,0,0,0.65);
font-size: 14px;
...
...
src/pages/classrecord/index.less
View file @
5e506c41
...
...
@@ -97,6 +97,7 @@
}
.tablefooterbox {
padding: 12px 0 12px 0;
margin-top: 10px;
.tablefooterstatic {
font-size: 16px;
color: #555555;
...
...
src/pages/course/index.less
View file @
5e506c41
...
...
@@ -42,8 +42,8 @@
.tablebox {
padding: 18px 20px 0 20px;
:global {
.ant-table {
border-bottom: 1px solid #E8E8E8;
.ant-table
-fixed
{
border-bottom: 1px solid #E8E8E8
!important
;
}
.ant-table tbody tr:nth-child(2n) {
background-color: #FBFBFB;
...
...
src/pages/index/index.less
View file @
5e506c41
...
...
@@ -89,7 +89,7 @@
// height: 1000px;
background: #fff;
margin-bottom: 20px;
border-radius:
6
px;
border-radius:
2
px;
box-shadow:0px 6px 24px 0px rgba(0,0,0,0.08);
}
...
...
src/pages/integralmanage/operationlog/index.less
View file @
5e506c41
...
...
@@ -12,7 +12,8 @@
.tablebox {
background: #fff;
:global {
.ant-table {
.ant-table-fixed {
border: 1px solid #E8E8E8;
}
.ant-table tbody tr:nth-child(2n) {
...
...
@@ -50,6 +51,7 @@
justify-content: space-between;
padding-left: 14px;
padding-right: 14px;
margin-top: 10px;
.tablefooterstatic {
color:rgba(0,0,0,0.65);
font-size: 14px;
...
...
src/pages/integralmanage/storesetting/index.less
View file @
5e506c41
...
...
@@ -7,8 +7,9 @@
padding: 20px 0;
background: #fff;
:global {
.ant-table {
.ant-table
-fixed
{
border: 1px solid #E8E8E8;
border-bottom: none;
}
.ant-table tbody tr:nth-child(2n) {
background-color: #FBFBFB;
...
...
src/pages/student/index.less
View file @
5e506c41
...
...
@@ -57,8 +57,8 @@
padding: 0px 34px 0;
background: #fff;
:global {
.ant-table {
border-bottom: 1px solid #E8E8E8;
.ant-table
-fixed
{
border-bottom: 1px solid #E8E8E8
!important
;
}
.ant-table tbody tr:nth-child(2n) {
background-color: #FBFBFB;
...
...
@@ -401,6 +401,7 @@
justify-content: space-between;
padding-left: 14px;
padding-right: 14px;
margin-top: 10px;
.tablefooterstatic {
color:rgba(0,0,0,0.65);
font-size: 14px;
...
...
src/pages/teacher/index.less
View file @
5e506c41
...
...
@@ -163,6 +163,7 @@
}
}
.tablefooterbox {
margin-top: 10px;
padding: 12px 0 12px 0;
.tablefooterstatic {
font-size: 16px;
...
...
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