fix: 新增分组,排序值添加默认值0,修改分页样式

main
wu.jian2 2 years ago
parent 3dc5b16ae8
commit 5d2c97b0f2

@ -43,7 +43,6 @@
</el-select>
<el-button
size="small"
style="margin-right: 20px"
type="primary"
@click="reSearch"
>

@ -221,7 +221,8 @@ export default {
this.currentCatalog = {
name: '',
id: '',
code: ''
code: '',
orderNum: 0
}
this.catalogVisible = true
},

@ -222,7 +222,8 @@ export default {
this.currentCatalog = {
name: '',
id: '',
code: ''
code: '',
orderNum: 0
}
this.catalogVisible = true
},

@ -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) {

@ -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;

Loading…
Cancel
Save