83795135 by 任超

style:用户中心

1 parent 14d28100
......@@ -157,5 +157,9 @@ export default {
// 引入表单整体样式
// @import "~@/styles/public.scss";
@import "../css/index.scss";
/deep/.el-table thead.is-group th.el-table__cell {
height: 14px !important;
}
</style>
......
<template>
<dialogBox :title="title" class="modifydialog" @closeDialog="close" @submitForm="submitForm" v-model="myValue">
<dialogBox :title="title" class="modifydialog" @closeDialog="close" :isMain="true" @submitForm="submitForm"
v-model="myValue">
<div class="dialogCon">
<el-form ref="form" :model="form" :rules="rules">
<el-row :gutter="24">
......@@ -79,7 +80,7 @@ export default {
},
data () {
return {
myValue: false,
myValue: this.value,
form: {
sex: "0",
},
......@@ -169,7 +170,7 @@ export default {
},
close () {
this.resetForm()
this.visible = false
this.$emit('input', false)
}
}
}
......