Browse Source

添加日期属性

master
1341924763@qq.com 5 days ago
parent
commit
66aec2526c
1 changed files with 12 additions and 1 deletions
  1. 12
    1
      src/views/system/user/index.vue

+ 12
- 1
src/views/system/user/index.vue View File

@@ -285,7 +285,7 @@
</el-row>

<!-- 添加或修改用户配置对话框 -->
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
<el-dialog :title="title" :visible.sync="open" width="620px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-row>
<el-col :span="12">
@@ -431,6 +431,17 @@
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="出生日期" prop="birthday">
<el-date-picker
v-model="form.birthday"
type="date"
placeholder="选择日期"
format="yyyy-MM-dd"
value-format="yyyy-MM-dd">
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">

Loading…
Cancel
Save