File tree Expand file tree Collapse file tree 7 files changed +18
-10
lines changed Expand file tree Collapse file tree 7 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 45
45
// 页面切换动画
46
46
.fade-transform-leave-active ,
47
47
.fade-transform-enter-active {
48
- transition : all 0.5 s ;
48
+ transition : all 0.3 s ;
49
49
}
50
50
.fade-transform-enter {
51
51
opacity : 0 ;
Original file line number Diff line number Diff line change 1
1
$theme : #3963bc ;
2
2
3
3
/* 布局 */
4
- $sidebar-width : 170 px ;
4
+ $sidebar-width : 175 px ;
5
5
$sidebar-background : #192a5e ;
6
6
7
7
$navbar-height : 30px ;
Original file line number Diff line number Diff line change 1
1
// 本文件是自动生成, 请勿修改
2
- import custom from '@/plugins/custom/stage-config'
3
2
import LinCmsUi from '@/plugins/LinCmsUi/stage-config'
3
+ import custom from '@/plugins/custom/stage-config'
4
4
5
5
const pluginsConfig = [
6
- custom ,
7
6
LinCmsUi ,
7
+ custom ,
8
8
]
9
9
10
10
export default pluginsConfig
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ _axios.interceptors.request.use((originConfig) => {
66
66
if ( typeof reqConfig . data [ key ] === 'object' ) {
67
67
if ( reqConfig . data [ key ] instanceof FileList || reqConfig . data [ key ] instanceof File || reqConfig . data [ key ] instanceof Blob ) {
68
68
hasFile = true
69
- } else {
69
+ } else if ( reqConfig . data [ key ] . constructor === Object ) {
70
70
reqConfig . data [ key ] = JSON . stringify ( reqConfig . data [ key ] )
71
71
}
72
72
}
Original file line number Diff line number Diff line change 28
28
<el-input size =" medium" clearable type =" password" v-model =" form.confirm_password" autocomplete =" off" ></el-input >
29
29
</el-form-item >
30
30
<el-form-item v-if =" pageType !== 'password'" label =" 选择分组" >
31
- <el-radio-group v-model =" form.group_id" label-position =" top" class =" user-info" >
31
+ <el-select size =" medium" v-model =" form.group_id" placeholder =" 请选择分组" >
32
+ <el-option
33
+ v-for =" item in groups"
34
+ :key =" item.id"
35
+ :label =" item.name"
36
+ :value =" item.id" >
37
+ </el-option >
38
+ </el-select >
39
+ <!-- <el-radio-group v-model="form.group_id" label-position="top" class="user-info">
32
40
<el-radio :label="item.id" v-for="(item, index) in groups" :key="index">{{item.name}}</el-radio>
33
- </el-radio-group >
41
+ </el-radio-group> -->
34
42
</el-form-item >
35
43
<el-form-item v-show =" submit" class =" submit" >
36
44
<el-button type =" primary" @click =" submitForm('form')" >保 存</el-button >
Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ export default {
294
294
295
295
.info {
296
296
margin-left : -55px ;
297
- margin-bottom : -40 px ;
297
+ margin-bottom : -30 px ;
298
298
}
299
299
300
300
.password {
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ export default {
50
50
data () {
51
51
return {
52
52
isCollapse: false , // 左侧菜单栏是否折叠
53
- sideBarWidth: ' 170px ' , // 左侧菜单栏展开的宽度
53
+ sideBarWidth: ' 175px ' , // 左侧菜单栏展开的宽度
54
54
clientWidth: 0 , // 页面宽度
55
55
clientHeight: 0 , // 页面高度
56
56
foldState: false , // 控制左侧菜单栏按键
@@ -97,7 +97,7 @@ export default {
97
97
},
98
98
watch: {
99
99
isCollapse () {
100
- this .sideBarWidth = this .isCollapse === false ? ' 170px ' : ' 64px'
100
+ this .sideBarWidth = this .isCollapse === false ? ' 175px ' : ' 64px'
101
101
},
102
102
$route () {
103
103
this .showBackTop = false
You can’t perform that action at this time.
0 commit comments