| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- <template>
- <el-row class="movie-list">
- <el-col :md="8" style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <el-row style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <el-card class="box-card">
- <div slot="header" class="clearfix">
- <span>我的帐号</span>
- </div>
- <div class="text item">
- <el-form ref="form" :model="loginUser" label-width="80px">
- <el-form-item label="用户 ID">
- <el-input v-model="loginUser.userId" style="width: 70%; padding-right: 10px" readonly />
- </el-form-item>
- <el-form-item label="用户名">
- <el-input v-model="loginUser.username" style="width: 70%; padding-right: 10px" readonly />
- </el-form-item>
- <el-form-item label="显示名">
- <el-input v-model="loginUser.screenName" style="width: 70%; padding-right: 10px" readonly />
- </el-form-item>
- <el-form-item label="手机">
- <el-input v-model="loginUser.mobile" style="width: 70%; padding-right: 10px" readonly />
- <el-button size="mini" type="info" @click="showUpdateDialog(1)">更新</el-button>
- </el-form-item>
- <el-form-item label="密码">
- <el-input v-model="loginUser.mobile" style="width: 70%; padding-right: 10px" readonly />
- <el-button size="mini" type="info" @click="showUpdateDialog(2)">更新</el-button>
- </el-form-item>
- </el-form>
- </div>
- </el-card>
- </el-row>
- </el-col>
- <el-col :md="8" style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <el-row style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <el-card class="box-card">
- <div slot="header" class="clearfix">
- <span>更新我的头像</span>
- </div>
- <div class="text item">
- <el-tooltip class="item" effect="dark" content="点击更新我的头像" placement="top-end">
- <el-upload
- class="avatar-uploader"
- :action="imgOssUrl"
- :headers="imgHeaders"
- :data="imgData"
- :with-credentials="true"
- :show-file-list="false"
- :before-upload="beforeAvatarUpload"
- :on-success="handleAvatarSuccess"
- >
- <img v-if="loginUser" :src="loginUser.avatarUrl" class="avatar">
- <i v-else class="el-icon-plus avatar-uploader-icon" />
- </el-upload>
- </el-tooltip>
- </div>
- </el-card>
- </el-row>
- </el-col>
- <el-col :md="8" style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <el-row style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <el-card class="box-card">
- <div slot="header" class="clearfix">
- <span>我的资料</span>
- </div>
- <div class="text item">
- <el-form ref="form" :model="loginUser" label-width="80px">
- <el-form-item label="性别">
- <el-input v-model="loginUser.mobile" style="width: 70%; padding-right: 10px" readonly />
- </el-form-item>
- <el-form-item label="签名">
- <el-input
- v-model="loginUser.signature"
- type="textarea"
- rows="3"
- style="width: 70%;
- padding-right: 10px"
- readonly />
- </el-form-item>
- </el-form>
- </div>
- </el-card>
- </el-row>
- </el-col>
- <el-dialog
- :title="updateTitle"
- append-to-body
- :visible.sync="updateMobileDialog"
- width="30%"
- center
- >
- <el-row style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px; text-align: center">
- <el-form ref="form" :model="updateMobileForm" label-width="100px">
- <el-form-item label="邮箱/手机号" label-width="100px">
- <el-input
- v-model="updateMobileForm.principal"
- placeholder="请输入邮箱或手机号"
- style="width: 45%; padding-right: 10px"
- clearable
- />
- <el-button :disabled="isBtn" @click="sendVerifyCode">{{ code }}</el-button>
- </el-form-item>
- <el-form-item label="验证码" label-width="90px">
- <el-input
- v-model="updateMobileForm.verifyCode"
- placeholder="请输入短信验证码"
- style="padding-right: 1px"
- clearable
- />
- </el-form-item>
- <el-form-item label="密码">
- <el-input
- v-model="updateMobileForm.credential"
- type="password"
- placeholder="请输入密码"
- style="padding-right: 1px"
- clearable
- />
- </el-form-item>
- <el-form-item>
- <el-button
- type="primary"
- @click.native="updateUserEmail"
- >更新</el-button>
- </el-form-item>
- </el-form>
- </el-row>
- </el-dialog>
- <el-dialog
- :title="updateTitle"
- append-to-body
- :visible.sync="updatePasswordDialog"
- width="30%"
- center
- >
- <el-row style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px; text-align: center">
- <el-card class="box-card">
- <div class="text item">
- <el-form ref="form" :model="updatePasswordForm" label-width="100px">
- <el-form-item label="当前密码">
- <el-input
- v-model="updatePasswordForm.credential"
- type="password"
- placeholder="请输入当前密码"
- style="padding-right: 1px"
- clearable
- />
- </el-form-item>
- <el-form-item label="新密码">
- <el-input
- v-model="updatePasswordForm.credential"
- type="password"
- placeholder="请输入新密码"
- style="padding-right: 1px"
- clearable
- />
- </el-form-item>
- <el-form-item label="确认新密码">
- <el-input
- v-model="updatePasswordForm.credential"
- type="password"
- placeholder="请确认新密码"
- style="padding-right: 1px"
- clearable
- />
- </el-form-item>
- <el-form-item>
- <el-button
- type="primary"
- @click.native="updateUserPassword"
- >更新</el-button>
- </el-form-item>
- </el-form>
- </div>
- </el-card>
- </el-row>
- </el-dialog>
- </el-row>
- </template>
- <script>
- import { userMixin } from 'assets/js/mixin'
- import { updateAvatar } from '@/api/account'
- import { getAuthedUser, updateAuthedUser } from '@/utils/auth'
- import { getAvatarChannelInfo } from '@/api/file'
- export default {
- name: 'MyProfile',
- mixins: [userMixin],
- data() {
- return {
- imgOssUrl: null,
- imgHeaders: {
- Authorization: ''
- },
- imgData: {
- channelCode: 0
- },
- coverUrl: null,
- // ****************************************************************************************************************
- loginUser: null,
- updateType: 1,
- updateTitle: '',
- updateMobileDialog: false,
- updateMobileForm: {
- principal: null,
- verifyCode: null,
- credential: null,
- captchaCode: null,
- channel: 1,
- plat: 2
- },
- updatePasswordDialog: false,
- updatePasswordForm: {
- principal: null,
- verifyCode: null,
- credential: null,
- captchaCode: null,
- channel: 1,
- plat: 2
- }
- }
- },
- created() {
- this.loginUser = getAuthedUser()
- getAvatarChannelInfo().then(res => {
- if (res.code === 0) {
- const resData = res.data
- this.imgData.channelCode = resData.channelCode
- this.imgOssUrl = resData.ossUrl
- this.imgHeaders.Authorization = 'Bearer ' + resData.token
- } else {
- this.$message.error(res.msg)
- }
- }).catch(error => {
- this.$message.error(error.message)
- })
- },
- mounted() {
- },
- methods: {
- // ****************************************************************************************************************
- beforeAvatarUpload(file) {
- if (this.imgOssUrl === null) {
- this.$message.error('没有可上传的 OSS 地址!')
- return
- }
- const isJPG = file.type === 'image/jpeg'
- const isLt2M = file.size / 1024 / 1024 < 2
- if (!isJPG) {
- this.$message.error('头像文件只能是 JPG 格式!')
- }
- if (!isLt2M) {
- this.$message.error('头像文件大小不能超过 2MB!')
- }
- return isJPG && isLt2M
- },
- handleAvatarSuccess(res, file) {
- if (res.code === 0) {
- const resData = res.data
- this.coverUrl = URL.createObjectURL(file.raw)
- const avatar = {}
- avatar.channelCode = this.imgData.channelCode
- avatar.uploadId = resData.uploadId
- updateAvatar(avatar).then(resp => {
- if (resp.code === 0) {
- this.loginUser.avatarUrl = resp.data.url
- updateAuthedUser(this.loginUser)
- } else {
- this.$notify({
- title: '头像更新失败',
- message: resp.msg,
- type: 'warning',
- duration: 3000
- })
- }
- })
- } else {
- this.$notify({
- title: '提示',
- message: '头像上传失败,请重试!' + res.msg,
- type: 'warning',
- duration: 3000
- })
- }
- },
- // ****************************************************************************************************************
- showUpdateDialog(type) {
- if (type === 1) {
- this.updateType = 1
- this.updateTitle = '更新用户手机号'
- this.updateMobileDialog = true
- } else if (type === 2) {
- this.updateType = 2
- this.updateTitle = '更新用户密码'
- this.updatePasswordDialog = true
- }
- },
- onUpdate() {
- if (this.updateType === 1) {
- this.updateMobileDialog = false
- } else {
- this.updatePasswordDialog = false
- }
- },
- sendVerifyCode() {
- this.$message.info('发送验证码')
- },
- updateUserEmail() {
- this.$message.info(this.updateMobileForm)
- this.updateMobileDialog = false
- },
- updateUserPassword() {
- this.$message.info(this.updatePasswordForm)
- this.updatePasswordDialog = false
- }
- }
- }
- </script>
- <style>
- .uploader-example .uploader-btn {
- margin-right: 4px;
- }
- .uploader-example .uploader-list {
- max-height: 440px;
- overflow: auto;
- overflow-x: hidden;
- overflow-y: auto;
- }
- .avatar-uploader .el-upload {
- border: 1px dashed #d9d9d9;
- border-radius: 6px;
- cursor: pointer;
- position: relative;
- overflow: hidden;
- }
- .avatar-uploader .el-upload:hover {
- border-color: #409EFF;
- }
- .avatar-uploader-icon {
- font-size: 28px;
- color: #8c939d;
- width: 256px;
- height: 256px;
- line-height: 178px;
- text-align: center;
- }
- .avatar {
- width: 256px;
- height: 256px;
- display: block;
- }
- </style>
|