123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <template>
- <view>
- <view style="margin: 20px; background-color: #fff;">
- <!-- 注意,如果需要兼容微信小程序,最好通过setRules方法设置rules规则 -->
- <u--form labelPosition="left" :model="userInfo" :rules="rules" ref="uForm">
- <u-form-item label="姓名" prop="userInfo.nickName">
- <u--input v-model="userInfo.nickName" border="none"></u--input>
- </u-form-item>
- <u-form-item label="头像" prop="iAvg">
- <view slot="right" class="flex-row" @click="onInfo">
- <u-avatar :src="avg"
- @click="uploadAvator"></u-avatar>
- <!-- :src="userInfo.avatarUrl ? userInfo.avatarUrl : null" -->
- <view class="flex-grow-1">
- <u-icon name="arrow-right" color="#96989e"></u-icon>
- </view>
- </view>
- </u-form-item>
- <u-form-item label="生日" prop="userInfo.birthday">
- <u--input v-model="userInfo.birthday" border="none" placeholder="请选择生日"></u--input>
- <u-icon slot="right" name="arrow-right" color="#96989e"></u-icon>
- </u-form-item>
- <u-form-item label="手机号" prop="userInfo.phone" labelWidth="100px">
- <u--input v-model="userInfo.phone" border="none"></u--input>
- <u-button type="primary" shape="circle" size="small" slot="right"
- color="linear-gradient(to right, #F54319, #FF6D20)" text="解绑">
- </u-button>
- </u-form-item>
- </u--form>
- </view>
- <view class="cart-bottom padding-sm dflex-b">
- <view class="go-cart dflex-c" @click="toSubim()">保存编辑</view>
- <view class="go-buy dflex-c background-gradient" @click="toLogout()">退出登录</view>
- </view>
- <u-toast ref="uToast"></u-toast>
- </view>
- </template>
- <script>
- import iAvg from '../../static/avg.png'
- export default {
- data() {
- return {
- userInfo: {
- name: 'uView UI',
- //avg: 'iAvg',
- birthday: '',
- phone: ''
- },
- avg: iAvg,
- rules: {
- // 字段名称
- phone: [{
- required: true,
- message: '请输入手机号',
- trigger: ['change', 'blur'],
- },
- {
- // 自定义验证函数,见上说明
- validator: (rule, value, callback) => {
- // 上面有说,返回true表示校验通过,返回false表示不通过
- // uni.$u.test.phone()就是返回true或者false的
- return uni.$u.test.phone(value);
- },
- message: '手机号码不正确',
- // 触发器可以同时用blur和change
- trigger: ['change', 'blur'],
- }
- ]
- }
- }
- },
- onLoad() {
- this.fatchDate()
- },
- methods: {
- fatchDate() {
- wx.getUserInfo({
- success: (res)=>{
- console.log(res)
- this.userInfo = res.userInfo
- console.log(res.userInfo)
- }
- })
- // const result = await this.$request('post',
- // '/auth/getUserInfo', true)
-
- // wx.getUserProfile({
- // desc: '获取用户信息',
- // success: (res) => {
- // console.log('res', res)
- // },
- // })
- },
- toSubim() {
- this.$refs.uToast.show({
- type: 'default',
- title: '默认主题',
- message: "演示阶段暂时不能提交",
- position: 'center'
- })
- },
- toLogout() {
- this.$refs.uToast.show({
- type: 'default',
- title: '默认主题',
- message: "演示阶段暂时不能退出",
- position: 'center'
- })
- },
- uploadAvator() { // 上传头像
- uni.chooseImage({
- success: (file) => {
- uni.showLoading({
- title: '请稍后',
- })
- // 上传头像文件
- uni.uploadFile({
- url: `${this.serverPath}/resource/oss/upload`,
- name: 'file',
- filePath: file.tempFilePaths[0],
- header: {
- tenantId: this.tenantId
- },
- success: async (response) => {
- const data = JSON.parse(response.data)
- // 更新用户头像
- const result = await this.$request('post',
- '/userinfo/account/update', {
- avatarUrl: data.data.url,
- aid: this.userdata.aid
- }, false, true)
- if (result) {
- // 记录埋点
- this.$setPoint('user_update_avatarUrl', {
- avatarUrl: data.data.url
- })
- uni.showToast({
- title: '上传成功',
- icon: 'success'
- })
- this.userdata.avatarUrl = data.data.url
- this.setStoreData('vuex_user', this.userdata)
- }
- },
- fail: (e) => {
- }
- })
- },
- fail: (e) => {
- }
- })
- },
- },
- }
- </script>
- <style scoped lang="less">
- .cart-bottom {
- width: 100%;
- position: fixed;
- left: 0;
- bottom: 0;
- height: 130rpx;
- box-sizing: border-box;
- background-color: #FFF;
- z-index: 10;
- box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.15);
- .go-cart {
- height: 80%;
- box-sizing: border-box;
- border: solid 1px #BBBBBB;
- font-size: 14px;
- color: #000;
- border-radius: 50upx;
- margin: 0 10px;
- width: 45%;
- }
- .go-buy {
- height: 80%;
- width: 45%;
- background-color: #FF0000;
- color: #FFF;
- border-radius: 50upx;
- font-size: 14px;
- }
- }
- .flex-row {
- display: flex;
- align-items: center;
- }
- .flex-grow-1 {
- flex-grow: 1;
- margin-left: 10px;
- }
- </style>
|