1. 修改封面圖窗口大小樣式。
.el-upload { //這是上傳圖片父容器。
border: 1px dashed #d9d9d9;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
display: flex;
justify-content: space-around;
align-items: center;
}
2. 修改圖片大小樣式。
.avatar { // 這是上傳圖片子容器。
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
display: block;
}