Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
A
admin-base
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
new-sing
admin-base
Commits
5d96b1c6
Commit
5d96b1c6
authored
Sep 13, 2018
by
王
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
样式修改
parent
2760a6de
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
38 additions
and
31 deletions
+38
-31
boxDialog.vue
src/components/box/boxDialog.vue
+1
-1
index.vue
src/components/class/index.vue
+3
-3
index.vue
src/components/lesson/index.vue
+2
-2
index.vue
src/components/noLesson/index.vue
+4
-1
index.vue
src/components/order/index.vue
+1
-1
index.vue
src/components/periods/index.vue
+4
-4
index.vue
src/components/putForward/index.vue
+1
-1
index.vue
src/components/refund/index.vue
+1
-1
index.vue
src/components/shop/index.vue
+1
-1
admin.vue
src/components/system/admin.vue
+2
-2
banner.vue
src/components/system/banner.vue
+3
-2
menu.vue
src/components/system/menu.vue
+2
-2
role.vue
src/components/system/role.vue
+2
-2
sysConfig.vue
src/components/system/sysConfig.vue
+2
-2
index.vue
src/components/teacher/index.vue
+1
-1
index.vue
src/components/teacherDetail/index.vue
+2
-1
index.vue
src/components/user/index.vue
+1
-1
index.vue
src/components/userOrder/index.vue
+1
-1
focusReply.vue
src/components/weChat/focusReply.vue
+2
-1
weChatResource.vue
src/components/weChat/weChatResource.vue
+2
-1
No files found.
src/components/box/boxDialog.vue
View file @
5d96b1c6
...
...
@@ -2,7 +2,7 @@
<el-dialog
:title=
"boxDialogObj.title"
:visible
.
sync=
"boxDialogObj.show"
width=
"
950px
"
>
width=
"
80%
"
>
<div
v-loading=
"loading"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-row>
...
...
src/components/class/index.vue
View file @
5d96b1c6
<
template
>
<div>
<div
class=
"class"
>
<div
class=
"form-block"
>
<el-form
label-width=
"90px"
inline
>
<el-form-item
label=
"期数"
>
...
...
@@ -203,7 +203,7 @@
</
script
>
<
style
scoped
lang=
"less"
>
.
form-block
{
padding:
10px
;
.
class
{
padding:
20px 0
;
}
</
style
>
src/components/lesson/index.vue
View file @
5d96b1c6
...
...
@@ -22,7 +22,7 @@
</el-form-item>
</el-col>
<el-col
:span=
"4"
:offset=
"8"
>
<el-button
type=
"success"
plain
@
click=
"add"
v-if=
"!$store.state.readonly"
>
新增课程
</el-button>
<el-button
type=
"success"
plain
@
click=
"add"
v-if=
"!$store.state.readonly"
style=
"float: right"
>
新增课程
</el-button>
</el-col>
</el-row>
</el-form>
...
...
@@ -169,7 +169,7 @@
.user{
height: 100%;
overflow: auto;
padding: 20px;
padding: 20px
0
;
.btn-content{
text-align: center;
}
...
...
src/components/noLesson/index.vue
View file @
5d96b1c6
<
template
>
<div>
<div
classs=
"noLesson"
>
<el-row
type=
"flex"
class=
"add-btn"
justify=
"end"
>
<el-col
:span=
"6"
>
<el-button
type=
"success"
plain
@
click=
"add"
v-if=
"!$store.state.readonly"
>
添加不上课日期
</el-button>
...
...
@@ -108,6 +108,9 @@
.add-btn {
margin: 10px 0;
}
.noLesson {
padding: 20px 0;
}
.card {
display: flex;
flex-flow: row wrap;
...
...
src/components/order/index.vue
View file @
5d96b1c6
...
...
@@ -379,7 +379,7 @@
border-radius
:
50%
;
}
.order
{
padding
:
20px
;
padding
:
20px
0
;
}
</
style
>
<
style
>
...
...
src/components/periods/index.vue
View file @
5d96b1c6
<
template
>
<div>
<div
class=
"periods"
>
<div
class=
"form-block"
>
<el-form
label-width=
"90px"
inline
>
<el-form-item
label=
"期数标题"
>
...
...
@@ -252,7 +252,7 @@
</
script
>
<
style
scoped
>
.form-block
{
margin-top
:
10px
;
}
.periods
{
padding
:
20px
0
;
}
</
style
>
src/components/putForward/index.vue
View file @
5d96b1c6
...
...
@@ -289,7 +289,7 @@
<
style
scoped
>
.putForward
{
padding
:
20px
;
padding
:
20px
0
;
}
.status
{
color
:
#e9a038
;
...
...
src/components/refund/index.vue
View file @
5d96b1c6
...
...
@@ -162,6 +162,6 @@
<
style
scoped
>
.refund
{
padding
:
20px
;
padding
:
20px
0
;
}
</
style
>
src/components/shop/index.vue
View file @
5d96b1c6
...
...
@@ -238,7 +238,7 @@
.user{
height: 100%;
overflow: auto;
padding: 20px;
padding: 20px
0
;
.btn-content{
text-align: center;
}
...
...
src/components/system/admin.vue
View file @
5d96b1c6
...
...
@@ -317,10 +317,10 @@
<
style
scoped
lang=
"less"
>
.admin{
.head{
padding: 5
px;
margin-bottom: 10
px;
}
width: 100%;
padding:
10px
;
padding:
20px 0
;
.page-div{
text-align: center;
padding-top: 20px
...
...
src/components/system/banner.vue
View file @
5d96b1c6
...
...
@@ -256,10 +256,11 @@
<
style
@
scoped
lang=
"less"
>
.banner{
.head{
padding: 5px;
/*padding: 5px;*/
margin-bottom: 10px;
}
width: 100%;
padding:
10px
;
padding:
20px 0
;
.page-div{
text-align: center;
padding-top: 20px
...
...
src/components/system/menu.vue
View file @
5d96b1c6
...
...
@@ -189,9 +189,9 @@
<
style
scoped
lang=
"less"
>
.menu{
.head{
padding: 5
px;
margin-bottom: 10
px;
}
padding:
10px
;
padding:
20px 0
;
.page-div{
text-align: center;
padding-top: 20px
...
...
src/components/system/role.vue
View file @
5d96b1c6
...
...
@@ -230,10 +230,10 @@
}
.role{
.head{
padding: 5
px;
margin-bottom: 10
px;
}
width: 100%;
padding:
10px
;
padding:
20px 0
;
.page-div{
text-align: center;
padding-top: 20px
...
...
src/components/system/sysConfig.vue
View file @
5d96b1c6
...
...
@@ -124,12 +124,12 @@
<
style
scoped
lang=
"less"
>
@import "../../util/public";
.sys {
padding:
10px
;
padding:
20px 0
;
}
.add-btn {
margin: 10px 0;
}
.top {
padding:5
px;
margin-bottom:10
px;
}
</
style
>
src/components/teacher/index.vue
View file @
5d96b1c6
...
...
@@ -208,7 +208,7 @@
.user{
height: 100%;
overflow: auto;
padding: 20px;
padding: 20px
0
;
.btn-content{
text-align: center;
}
...
...
src/components/teacherDetail/index.vue
View file @
5d96b1c6
...
...
@@ -88,12 +88,13 @@ import {TEACHERTYPE} from "../../util/wordbook";
<
style
scoped
lang=
"less"
>
.teacher {
padding: 20px;
padding: 20px
0
;
}
.avatar {
width: 60px;
}
.header {
padding: 0 20px;
margin-bottom: 20px;
}
.el-row {
...
...
src/components/user/index.vue
View file @
5d96b1c6
...
...
@@ -162,7 +162,7 @@
.user{
height: 100%;
overflow: auto;
padding: 20px;
padding: 20px
0
;
.btn-content{
text-align: center;
}
...
...
src/components/userOrder/index.vue
View file @
5d96b1c6
...
...
@@ -133,7 +133,7 @@
.
user
{
height
:
100
%
;
overflow
:
auto
;
padding
:
20
px
;
padding
:
20
px
0
;
.
btn
-
content
{
text
-
align
:
center
;
}
...
...
src/components/weChat/focusReply.vue
View file @
5d96b1c6
...
...
@@ -325,7 +325,7 @@
<
style
scoped
lang=
"less"
>
.focus-reply {
padding:
30px
;
padding:
20px 0
;
}
ul, ol {
padding-left: 0;
...
...
@@ -336,6 +336,7 @@
font-size: 20px;
font-weight: 400;
line-height: 1;
padding-left: 20px;
}
.top {
margin-bottom: 30px;
...
...
src/components/weChat/weChatResource.vue
View file @
5d96b1c6
...
...
@@ -193,12 +193,13 @@
}
.media {
margin-bottom: 40px;
padding: 20px;
padding: 20px
0
;
&-title {
font-size: 26px;
font-weight: 400;
line-height: 1;
margin-bottom: 20px;
margin-left: 20px;
}
&-navs {
text-align: left;
...
...
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