From b0965653bf43ba99a13f925fa7314f4ad891ccab Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期六, 10 十月 2020 17:54:30 +0800 Subject: [PATCH] 删除不必要的代码 --- ruoyi-ui/src/views/system/user/profile/userAvatar.vue | 22 +++++++++++++--------- 1 files changed, 13 insertions(+), 9 deletions(-) diff --git a/ruoyi-ui/src/views/system/user/profile/userAvatar.vue b/ruoyi-ui/src/views/system/user/profile/userAvatar.vue index 5446ab5..ef0c213 100644 --- a/ruoyi-ui/src/views/system/user/profile/userAvatar.vue +++ b/ruoyi-ui/src/views/system/user/profile/userAvatar.vue @@ -1,7 +1,7 @@ <template> <div> <img v-bind:src="options.img" @click="editCropper()" title="鐐瑰嚮涓婁紶澶村儚" class="img-circle img-lg" /> - <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body> + <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body @opened="modalOpened"> <el-row> <el-col :xs="24" :md="12" :style="{height: '350px'}"> <vue-cropper @@ -13,6 +13,7 @@ :autoCropHeight="options.autoCropHeight" :fixedBox="options.fixedBox" @realTime="realTime" + v-if="visible" /> </el-col> <el-col :xs="24" :md="12" :style="{height: '350px'}"> @@ -67,6 +68,8 @@ return { // 鏄惁鏄剧ず寮瑰嚭灞� open: false, + // 鏄惁鏄剧ずcropper + visible: false, // 寮瑰嚭灞傛爣棰� title: "淇敼澶村儚", options: { @@ -83,6 +86,10 @@ // 缂栬緫澶村儚 editCropper() { this.open = true; + }, + // 鎵撳紑寮瑰嚭灞傜粨鏉熸椂鐨勫洖璋� + modalOpened() { + this.visible = true; }, // 瑕嗙洊榛樿鐨勪笂浼犺涓� requestUpload() { @@ -118,14 +125,11 @@ let formData = new FormData(); formData.append("avatarfile", data); uploadAvatar(formData).then(response => { - if (response.code === 200) { - this.open = false; - this.options.img = process.env.VUE_APP_BASE_API + response.imgUrl; - this.msgSuccess("淇敼鎴愬姛"); - } else { - this.msgError(response.msg); - } - this.$refs.cropper.clearCrop(); + this.open = false; + this.options.img = process.env.VUE_APP_BASE_API + response.imgUrl; + store.commit('SET_AVATAR', this.options.img); + this.msgSuccess("淇敼鎴愬姛"); + this.visible = false; }); }); }, -- Gitblit v1.9.3