按照比列缩小
var w = cliW.clientWidth || cliW.offsetWidth;
// 当图片比图片框小时不做任何改变
if (_this.$refs.imgShow.width > w) {
_this.rate = w / _this.$refs.imgShow.width;
_this.$refs.imgShow.width = w;
_this.$refs.imgShow.height =
(w * _this.$refs.imgShow.height) / _this.$refs.imgShow.width;
}
加班万岁!