init
This commit is contained in:
244
fuintUniapp/pages/merchant/member/setting.vue
Normal file
244
fuintUniapp/pages/merchant/member/setting.vue
Normal file
@@ -0,0 +1,244 @@
|
||||
<template>
|
||||
<view class="container">
|
||||
<view class="info-list">
|
||||
<view class="info-item">
|
||||
<view class="contacts avatar-warp">
|
||||
<text class="name">头像</text>
|
||||
<image class="avatar" @click="chooseImage()" :src="userInfo.avatar"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="info-item">
|
||||
<view class="contacts">
|
||||
<text class="name">称呼</text>
|
||||
<input class="weui-input value" type="nickname" v-model="userInfo.name" placeholder="请输入称呼"/>
|
||||
</view>
|
||||
</view>
|
||||
<view class="info-item">
|
||||
<view class="contacts">
|
||||
<text class="name">手机</text>
|
||||
<input class="weui-input value" type="text" v-model="userInfo.mobile" placeholder="请输入手机号"/>
|
||||
</view>
|
||||
</view>
|
||||
<view class="info-item">
|
||||
<view class="contacts">
|
||||
<text class="name">性别</text>
|
||||
<view class="value">
|
||||
<radio-group @change="genderChange">
|
||||
<label class="radio"><radio value="1" color="#00acac" :checked="userInfo.sex == '1' ? true : false"/>男</label>
|
||||
<label class="radio second"><radio value="0" color="#00acac" :checked="userInfo.sex == '0' ? true: false"/>女</label>
|
||||
</radio-group>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="info-item">
|
||||
<view class="contacts">
|
||||
<text class="name">生日</text>
|
||||
<picker class="value" mode="date" :value="userInfo.birthday" start="1900-01-01" @change="bindDateChange">
|
||||
<view class="picker">{{ userInfo.birthday ? userInfo.birthday : '选择生日' }}</view>
|
||||
</picker>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 底部操作按钮 -->
|
||||
<view class="footer-fixed">
|
||||
<view class="btn-wrapper">
|
||||
<view class="btn-item btn-item-main" @click="save()">保存会员</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import * as MemberApi from '@/api/merchant/member'
|
||||
import * as UploadApi from '@/api/upload'
|
||||
import store from '@/store'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
//当前页面参数
|
||||
options: {},
|
||||
// 正在加载
|
||||
isLoading: true,
|
||||
userInfo: { avatar: '', name: '', sex: 0, birthday: '', hasPassword: '' },
|
||||
openCardPara: null,
|
||||
code: "",
|
||||
nickname: "",
|
||||
avatar: "",
|
||||
memberId: 0
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
// 会员ID
|
||||
this.memberId = options.memberId ? options.memberId : 0;
|
||||
this.getUserInfo();
|
||||
},
|
||||
|
||||
methods: {
|
||||
// 获取当前用户信息
|
||||
getUserInfo() {
|
||||
const app = this;
|
||||
app.showPopup = false;
|
||||
return new Promise((resolve, reject) => {
|
||||
MemberApi.detail(app.memberId)
|
||||
.then(result => {
|
||||
if (result.data.userInfo) {
|
||||
app.userInfo = result.data.userInfo
|
||||
} else {
|
||||
app.userInfo = { id: 0, name: '', avatar: '', gradeId: 0, mobile: '', balance: 0 }
|
||||
}
|
||||
resolve(app.userInfo);
|
||||
})
|
||||
.catch(err => {
|
||||
if (err.result && err.result.status == 1001) {
|
||||
resolve(null)
|
||||
} else {
|
||||
reject(err)
|
||||
}
|
||||
})
|
||||
})
|
||||
},
|
||||
bindDateChange (e) {
|
||||
let that = this;
|
||||
that.userInfo.birthday = e.detail.value;
|
||||
},
|
||||
getnickname(e) {
|
||||
this.nickname = e.detail.value;
|
||||
},
|
||||
genderChange(e) {
|
||||
this.userInfo.sex = e.detail.value;
|
||||
},
|
||||
// 选择图片
|
||||
chooseImage() {
|
||||
const app = this
|
||||
// 选择图片
|
||||
uni.chooseImage({
|
||||
count: 1,
|
||||
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
|
||||
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
|
||||
success({ tempFiles }) {
|
||||
const imageList = tempFiles;
|
||||
return new Promise((resolve, reject) => {
|
||||
if (imageList.length > 0) {
|
||||
UploadApi.image(imageList)
|
||||
.then(files => {
|
||||
if (files && files.length > 0) {
|
||||
app.userInfo.avatar = files[0].fileName;
|
||||
app.avatar = files[0].domain + app.userInfo.avatar;
|
||||
}
|
||||
resolve(files)
|
||||
})
|
||||
.catch(err => reject(err))
|
||||
} else {
|
||||
resolve()
|
||||
}
|
||||
})
|
||||
}
|
||||
});
|
||||
},
|
||||
/**
|
||||
* 保存会员信息
|
||||
*/
|
||||
save() {
|
||||
const app = this
|
||||
app.isLoading = true
|
||||
MemberApi.save(app.userInfo)
|
||||
.then(result => {
|
||||
app.userInfo = result.data
|
||||
app.isLoading = false
|
||||
app.$success('保存成功!')
|
||||
}).catch(err => {
|
||||
app.isLoading = false;
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.info-list {
|
||||
padding-bottom: 100rpx;
|
||||
margin-top: 25rpx;
|
||||
}
|
||||
|
||||
// 项目内容
|
||||
.info-item {
|
||||
margin: 20rpx auto 20rpx auto;
|
||||
padding: 30rpx 40rpx;
|
||||
width: 94%;
|
||||
box-shadow: 0 1rpx 5rpx 0px rgba(0, 0, 0, 0.05);
|
||||
border-radius: 16rpx;
|
||||
background: #fff;
|
||||
.avatar-warp {
|
||||
line-height: 120rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.contacts {
|
||||
font-size: 30rpx;
|
||||
.name {
|
||||
margin-left:0px;
|
||||
}
|
||||
.value {
|
||||
float:right;
|
||||
color:#999999;
|
||||
text-align: right;
|
||||
.second {
|
||||
margin-left: .6rem;
|
||||
}
|
||||
}
|
||||
.password {
|
||||
text-align: right;
|
||||
float: left;
|
||||
padding-right: 5rpx;
|
||||
}
|
||||
.avatar {
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
border-radius: 120rpx;
|
||||
border: solid 1px #cccccc;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
.item-option {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
height: 48rpx;
|
||||
}
|
||||
|
||||
// 底部操作栏
|
||||
.footer-fixed {
|
||||
height: 100rpx;
|
||||
z-index: 11;
|
||||
.btn-wrapper {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 20rpx;
|
||||
}
|
||||
|
||||
.btn-item {
|
||||
flex: 1;
|
||||
font-size: 28rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
border-radius: 40rpx;
|
||||
}
|
||||
|
||||
.btn-item-main {
|
||||
background: linear-gradient(to right, #f9211c, #ff6335);
|
||||
}
|
||||
.btn-item-out {
|
||||
margin-top: 20rpx;
|
||||
background: #FFFFFF;
|
||||
border: 1px solid $fuint-theme;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user