|
- <template>
- <div class="home_wrapper">
- <div class="header_main">
- 个人信息
- <div class="return_btn" @click="onClickLeft"></div>
- <div class="add_btn" @click="send">保存</div>
- </div>
- <van-form @submit="onSubmit" ref="formData">
- <div class="list_main">
-
- <van-field required label="用户昵称" :rules="[{ required: true , message:'请输入用户昵称' }]" v-model="user.nickName" placeholder="请输入用户昵称" input-align="right" :border="false" />
-
- <van-field required label="手机号码" :rules="[{ required: true , message:'请输入手机号码'},{ pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/ , message:'请输入手机号码'}]" v-model="user.phonenumber" placeholder="请输入手机号码" input-align="right" :border="false" />
-
- <van-field required label="邮箱" :rules="[{ required: true, message: '邮箱地址不能为空' }]" prop="email" v-model="user.email" placeholder="请输入邮箱" input-align="right" :border="false" />
-
- <van-field name="radio" label="性别" input-align="right" :border="false">
- <template #input>
- <van-radio-group v-model="user.sex" direction="horizontal">
- <van-radio name="0">男</van-radio>
- <van-radio name="1">女</van-radio>
- </van-radio-group>
- </template>
- </van-field>
-
- </div>
-
- <!-- <div style="margin: 16px;">-->
- <!-- <van-button round block type="primary" native-type="submit">-->
- <!-- 保存-->
- <!-- </van-button>-->
- <!-- </div>-->
- </van-form>
- </div>
- </template>
-
- <script>
- import { addOddjob , getUserProfile , updateUserProfile } from "@/api/sunVillage_info/fixedAssets";
- import Cookies from "js-cookie";
- import request from '@/utils/request'
- export default {
- name: "certificateList",
- data() {
- return {
- user:{
- sex:0
- },
- };
- },
- created() {
- this.getUser();
- },
- methods: {
- getUser() {
- getUserProfile().then(response => {
- this.user = response.data;
- });
- },
- send(){
- this.$refs.formData.submit();
- },
- onSubmit(){
- var that = this;
- updateUserProfile(this.user).then(response => {
- that.$notify({ type: 'success', message: '修改成功!' });
- setTimeout(function(){
- history.back(-1);
- },2000)
- });
- },
- onConfirmOpenNy(data){
- this.form.jobTime = this.format(data,'yyyy-MM-dd');
- this.jobTime = data;
- this.showBuildTime = false;
- },
-
- },
- }
- </script>
-
- <style scoped lang="scss">
- .home_wrapper{
- background: #e9e9e9;
- min-height: 100vh;
- width: 100vw;
- .header_main {
- height: 116px;
- background: url('../../assets/images/sunVillage_info/list_head.png') no-repeat;
- background-size: 100% 100%;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- font-size: 36px;
- line-height: 116px;
- text-align: center;
- color: #fff;
- position: relative;
-
- .return_btn {
- width: 24px;
- height: 43.2px;
- background: url('../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat;
- background-size: 20px 36px;
- position: absolute;
- left: 38px;
- top: 36px;
- }
- .add_btn{
- width: 56.4px;
- height: 40.8px;
- font-size: 14PX;
- position: absolutze;
- right: 38px;
- top: 36px;
- line-height: 40.8px;
- }
- }
- .release_head{
- height: 90px;
- padding:0 23px;
- display: flex;
- align-items: center;
- font-size: 26px;
- color: #929292;
- .people{
- flex: 1;
- display: flex;
- align-items: center;
- .icon{
- width: 24px;
- height: 21px;
- background: url('../../assets/images/sunVillage_info/details_icon_1.png') no-repeat;
- background-size: 100% 100%;
- display: block;
- margin-right: 8px;
- }
- }
- .time{
- flex: 1;
- display: flex;
- align-items: center;
- justify-content:flex-end;
- .icon{
- width: 25px;
- height: 25px;
- background: url('../../assets/images/sunVillage_info/details_icon_2.png') no-repeat;
- background-size: 100% 100%;
- display: block;
- margin-right: 8px;
- }
- }
- }
- .release_conetnt{
- padding:0 22px;
- font-size: 32px;
- color: #252525;
- line-height: 44px;
- img{
- max-width: 100%;
- margin-bottom: 16px;
- }
- p{
- margin-bottom: 16px;
- }
- }
- .list_main{
- padding:25px;
- background: #ffffff;
- width: 94%;
- margin: 25px auto 0;
- border-radius: 15PX;
- box-shadow: 4px 6px 5px rgba(63, 68, 75, 0.1);
- }
- .titBox{
- display: flex;
- align-items: center;
- }
- .tit{
- font-size: 36px;
- font-weight: bold;
- }
- /deep/ .van-cell{
- padding-left: 0!important;
- padding-right: 0!important;
- padding-bottom: 0!important;
- &:first-child{
- padding-top: 0;
- }
- }
- /deep/ .van-field__label{
- padding-left: 10PX;
- width: auto;
- display: flex;
- align-items: center;
- }
- /deep/ .van-cell--required::before{
- left: 0PX;
- }
- /deep/ .van-field__error-message{
- display: none;
- }
- }
- </style>
|