You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
|
|
|
<el-form
|
|
|
|
ref="form"
|
|
|
|
:model="form"
|
|
|
|
:rules="rules"
|
|
|
|
label-width="80px"
|
|
|
|
class="user-address"
|
|
|
|
>
|
|
|
|
<el-form-item label="姓名" prop="name">
|
|
|
|
<el-input v-model="form.name"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="手机号" prop="name">
|
|
|
|
<el-input v-model="form.name"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="详细地址" prop="name">
|
|
|
|
<el-input v-model="form.name" type="textarea" :rows="3"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary">提 交</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
form: {},
|
|
|
|
rules: {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.app-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-address {
|
|
|
|
padding: 30px 15px 0 15px;
|
|
|
|
width: 500px;
|
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
|
|
|
|
}
|
|
|
|
</style>
|