diff --git a/data-room-ui/packages/BigScreenDesign/ComponentDialog/index.vue b/data-room-ui/packages/BigScreenDesign/ComponentDialog/index.vue index 63baabf7..cf16b0bf 100644 --- a/data-room-ui/packages/BigScreenDesign/ComponentDialog/index.vue +++ b/data-room-ui/packages/BigScreenDesign/ComponentDialog/index.vue @@ -43,7 +43,6 @@ diff --git a/data-room-ui/packages/BigScreenList/CatalogEditForm.vue b/data-room-ui/packages/BigScreenList/CatalogEditForm.vue index 89843795..a5c23229 100644 --- a/data-room-ui/packages/BigScreenList/CatalogEditForm.vue +++ b/data-room-ui/packages/BigScreenList/CatalogEditForm.vue @@ -221,7 +221,8 @@ export default { this.currentCatalog = { name: '', id: '', - code: '' + code: '', + orderNum: 0 } this.catalogVisible = true }, diff --git a/data-room-ui/packages/ComponentList/CatalogEditForm.vue b/data-room-ui/packages/ComponentList/CatalogEditForm.vue index 1370ee0d..9f7e3967 100644 --- a/data-room-ui/packages/ComponentList/CatalogEditForm.vue +++ b/data-room-ui/packages/ComponentList/CatalogEditForm.vue @@ -222,7 +222,8 @@ export default { this.currentCatalog = { name: '', id: '', - code: '' + code: '', + orderNum: 0 } this.catalogVisible = true }, diff --git a/data-room-ui/packages/SourceMag/SideMenu.vue b/data-room-ui/packages/SourceMag/SideMenu.vue index a5aac89f..084e6138 100644 --- a/data-room-ui/packages/SourceMag/SideMenu.vue +++ b/data-room-ui/packages/SourceMag/SideMenu.vue @@ -162,7 +162,8 @@ export default { // 选中目录 name: '', id: '', - code: '' + code: '', + orderNum: 0 }, formRules: { name: [{ required: true, message: '分组名称不能为空', trigger: 'blur' }] @@ -179,7 +180,8 @@ export default { // 选中目录 name: '', id: '', - code: '' + code: '', + orderNum: 0 } }, mouseenter (code) { diff --git a/data-room-ui/packages/assets/style/common/index.scss b/data-room-ui/packages/assets/style/common/index.scss index 6ecca7d1..b14ab552 100644 --- a/data-room-ui/packages/assets/style/common/index.scss +++ b/data-room-ui/packages/assets/style/common/index.scss @@ -219,8 +219,12 @@ $--font-path: "~element-ui/lib/theme-chalk/fonts"; } .el-pagination { + padding: 0 !important; text-align: right !important; font-weight: normal !important; + .el-pagination__sizes{ + margin: 0 !important; + } } .el-pager li { @@ -274,7 +278,7 @@ $--font-path: "~element-ui/lib/theme-chalk/fonts"; } .el-dialog__body { - padding: 18px 24px !important; + padding: 16px !important; max-height: calc(90vh - 170px) !important; min-height: 200px; overflow-y: auto;