style:用户中心
Showing
2 changed files
with
10 additions
and
5 deletions
... | @@ -11,12 +11,12 @@ | ... | @@ -11,12 +11,12 @@ |
11 | <el-col :span="6"> | 11 | <el-col :span="6"> |
12 | <el-form-item label="接收日期" prop="startTime"> | 12 | <el-form-item label="接收日期" prop="startTime"> |
13 | <el-date-picker type="date" class="width100" placeholder="开始日期" :picker-options="pickerOptionsStart" | 13 | <el-date-picker type="date" class="width100" placeholder="开始日期" :picker-options="pickerOptionsStart" |
14 | v-model="form.startTime" value-format="yyyy-MM-dd"></el-date-picker> | 14 | v-model="form.startTime" value-format="yyyy-MM-dd"></el-date-picker> |
15 | </el-form-item> | 15 | </el-form-item> |
16 | </el-col> | 16 | </el-col> |
17 | <el-col :span="6"> | 17 | <el-col :span="6"> |
18 | <el-form-item label="至" prop="endTime" label-width="35px"> | 18 | <el-form-item label="至" prop="endTime" label-width="35px"> |
19 | <el-date-picker type="date" class="width100" placeholder="结束日期" :picker-options="pickerOptionsEnd" | 19 | <el-date-picker type="date" class="width100" placeholder="结束日期" :picker-options="pickerOptionsEnd" |
20 | v-model="form.endTime" value-format="yyyy-MM-dd"></el-date-picker> | 20 | v-model="form.endTime" value-format="yyyy-MM-dd"></el-date-picker> |
21 | </el-form-item> | 21 | </el-form-item> |
22 | </el-col> | 22 | </el-col> |
... | @@ -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 | } | ... | ... |
-
Please register or sign in to post a comment