83795135 by 任超

style:用户中心

1 parent 14d28100
...@@ -157,5 +157,9 @@ export default { ...@@ -157,5 +157,9 @@ export default {
157 // 引入表单整体样式 157 // 引入表单整体样式
158 // @import "~@/styles/public.scss"; 158 // @import "~@/styles/public.scss";
159 @import "../css/index.scss"; 159 @import "../css/index.scss";
160
161 /deep/.el-table thead.is-group th.el-table__cell {
162 height: 14px !important;
163 }
160 </style> 164 </style>
161 165
......
1 <template> 1 <template>
2 <dialogBox :title="title" class="modifydialog" @closeDialog="close" @submitForm="submitForm" v-model="myValue"> 2 <dialogBox :title="title" class="modifydialog" @closeDialog="close" :isMain="true" @submitForm="submitForm"
3 v-model="myValue">
3 <div class="dialogCon"> 4 <div class="dialogCon">
4 <el-form ref="form" :model="form" :rules="rules"> 5 <el-form ref="form" :model="form" :rules="rules">
5 <el-row :gutter="24"> 6 <el-row :gutter="24">
...@@ -79,7 +80,7 @@ export default { ...@@ -79,7 +80,7 @@ export default {
79 }, 80 },
80 data () { 81 data () {
81 return { 82 return {
82 myValue: false, 83 myValue: this.value,
83 form: { 84 form: {
84 sex: "0", 85 sex: "0",
85 }, 86 },
...@@ -169,7 +170,7 @@ export default { ...@@ -169,7 +170,7 @@ export default {
169 }, 170 },
170 close () { 171 close () {
171 this.resetForm() 172 this.resetForm()
172 this.visible = false 173 this.$emit('input', false)
173 } 174 }
174 } 175 }
175 } 176 }
......