Commit c927cb7dd664e921de02dbb8d7746d1ed796f111
Merge branch 'master' of http://bj.gitlab.cnlive.com/w-front-end/select_good
Showing
3 changed files
with
4 additions
and
6 deletions
src/components/columnListBox/columnListBox.less
| @@ -19,7 +19,6 @@ | @@ -19,7 +19,6 @@ | ||
| 19 | padding-bottom: 18px; | 19 | padding-bottom: 18px; |
| 20 | width: 690px; | 20 | width: 690px; |
| 21 | .left-box { | 21 | .left-box { |
| 22 | - break-inside: avoid; | ||
| 23 | .item-box { | 22 | .item-box { |
| 24 | &:last-child { | 23 | &:last-child { |
| 25 | margin-bottom: 0; | 24 | margin-bottom: 0; |
| @@ -27,7 +26,6 @@ | @@ -27,7 +26,6 @@ | ||
| 27 | } | 26 | } |
| 28 | } | 27 | } |
| 29 | .right-box { | 28 | .right-box { |
| 30 | - break-inside: avoid; | ||
| 31 | .item-box { | 29 | .item-box { |
| 32 | &:first-child { | 30 | &:first-child { |
| 33 | /deep/ .item { | 31 | /deep/ .item { |
src/components/palaceGrid/palaceGrid.vue
| @@ -9,7 +9,7 @@ | @@ -9,7 +9,7 @@ | ||
| 9 | class="img" | 9 | class="img" |
| 10 | fit="cover" | 10 | fit="cover" |
| 11 | lazy-load | 11 | lazy-load |
| 12 | - :src="item.img || item" | 12 | + :src="(item.img || item) + SIGN.BIG" |
| 13 | > | 13 | > |
| 14 | <template v-slot:error> | 14 | <template v-slot:error> |
| 15 | <img class="img" src="static/img/x.jpg" alt=""/> | 15 | <img class="img" src="static/img/x.jpg" alt=""/> |
src/main.js
| @@ -128,9 +128,9 @@ Vue.prototype.getApiVersion = function() { | @@ -128,9 +128,9 @@ Vue.prototype.getApiVersion = function() { | ||
| 128 | 128 | ||
| 129 | // 参数设置 | 129 | // 参数设置 |
| 130 | Vue.prototype.SIGN = { | 130 | Vue.prototype.SIGN = { |
| 131 | - SMALL: "?imageMogr2/thumbnail/200", | ||
| 132 | - MIDDLE: "?imageMogr2/thumbnail/400", | ||
| 133 | - BIG: "?imageMogr2/thumbnail/750", | 131 | + SMALL: "?imageMogr2/thumbnail/200/format/jpg", |
| 132 | + MIDDLE: "?imageMogr2/thumbnail/400/format/jpg", | ||
| 133 | + BIG: "?imageMogr2/thumbnail/750/format/jpg", | ||
| 134 | SOURCE: "" | 134 | SOURCE: "" |
| 135 | } | 135 | } |
| 136 | /* 设置图片尺寸参数 结束 */ | 136 | /* 设置图片尺寸参数 结束 */ |