modefyAvatar.vue 2.87 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<template>
  <div class="modefy-avatar">
    <img class="avatar" :src="avatar" alt />
    <div class="btn">
      <van-uploader
        :max-count="1"
        :before-delete="onDeleteAvatar"
        :after-read="onRead"
      >
        <van-button type="primary">上传新头像</van-button>
      </van-uploader>
leiqingsong's avatar
leiqingsong committed
12 13 14 15 16 17 18
      <van-button
        type="primary"
        :class="!canSubmit && 'deactive-btn'"
        plain
        @click="checkBtn"
        >确定</van-button
      >
19 20 21 22 23
    </div>
  </div>
</template>

<script>
leiqingsong's avatar
leiqingsong committed
24
import { setAvatar } from "@/api/user";
leiqingsong's avatar
leiqingsong committed
25
import { uploadImage } from "@/api/base";
26 27 28 29
export default {
  name: "ModefyAvatar",
  data() {
    return {
leiqingsong's avatar
leiqingsong committed
30
      canSubmit: false,
leiqingsong's avatar
leiqingsong committed
31 32
      avatar: "",
      imageUrl: ""
33 34 35
    };
  },
  mounted() {
leiqingsong's avatar
leiqingsong committed
36 37 38
    console.log(this.$route.query);
    const headImage = this.$route.query.headImage;
    if (headImage) {
leiqingsong's avatar
leiqingsong committed
39
      this.avatar = process.env.VUE_APP_BASE_URL + headImage;
leiqingsong's avatar
leiqingsong committed
40
    } else {
41 42 43 44
      this.avatar = require("@/assets/images/no_avatar.png");
    }
  },
  methods: {
leiqingsong's avatar
leiqingsong committed
45
    checkBtn() {
leiqingsong's avatar
leiqingsong committed
46 47 48 49
      if (!this.canSubmit) {
        return;
      }
      this.canSubmit = false;
leiqingsong's avatar
leiqingsong committed
50 51
      const params = {
        headImage: this.imageUrl,
leiqingsong's avatar
leiqingsong committed
52
        userId: this.$userId
leiqingsong's avatar
leiqingsong committed
53 54 55 56 57 58 59 60
      };
      setAvatar(params).then(res => {
        if (res.code === 0) {
          this.$toast.success("头像设置成功");
          this.$router.go(-1);
        }
      });
    },
61 62 63
    onRead(file) {
      this.avatar = file.content;
      console.log("file", file);
leiqingsong's avatar
leiqingsong committed
64
      const params = {
leiqingsong's avatar
leiqingsong committed
65 66 67 68 69 70 71
        inviteCode: "bbbbbb"
      };
      const fd = new FormData();
      fd.append("files", file.file);
      uploadImage(params, fd).then(res => {
        console.log(res);
        this.imageUrl = res.zxUrl;
leiqingsong's avatar
leiqingsong committed
72
        this.canSubmit = true;
leiqingsong's avatar
leiqingsong committed
73
      });
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
    },
    onDeleteAvatar(file, detail) {
      return new Promise((resolve, reject) => {
        this.$dialog
          .confirm({
            message: "确认删除图片?"
          })
          .then(() => {
            this.fileList.splice(detail.index, 1);
            this.$toast.success("删除成功");
            resolve();
          })
          .catch(error => {
            this.$toast.fail("已取消");
            reject(error);
          });
      });
    }
  }
};
</script>

<style lang="scss" scoped>
.modefy-avatar {
  box-sizing: border-box;
  text-align: center;
xulili's avatar
xulili committed
100
  padding-top: 25px;
101 102 103 104 105 106 107
}
.avatar {
  width: 345px;
  height: 345px;
  margin-bottom: 52px;
  border-radius: 4px;
}
leiqingsong's avatar
leiqingsong committed
108

109
.btn {
leiqingsong's avatar
leiqingsong committed
110
  box-sizing: border-box;
111
  display: flex;
leiqingsong's avatar
leiqingsong committed
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
  justify-content: space-between;
  align-content: center;
  width: 345px;
  height: 44px;
  margin: 0 auto;
  .van-uploader {
    .van-button {
      position: absolute;
      top: 0;
      left: 0;
    }
    ::v-deep input {
      width: 165px;
      height: 44px;
    }
  }
128 129 130
  .van-button {
    width: 165px;
  }
leiqingsong's avatar
leiqingsong committed
131 132 133 134 135
  .deactive-btn {
    color: #969595e9;
    background-color: #dcd6d6;
    border-color: #dcd6d6;
  }
136 137
}
</style>