Commit c927cb7dd664e921de02dbb8d7746d1ed796f111

Authored by zhiyangdu
2 parents c6c9babc fedb676b
src/components/columnListBox/columnListBox.less
... ... @@ -19,7 +19,6 @@
19 19 padding-bottom: 18px;
20 20 width: 690px;
21 21 .left-box {
22   - break-inside: avoid;
23 22 .item-box {
24 23 &:last-child {
25 24 margin-bottom: 0;
... ... @@ -27,7 +26,6 @@
27 26 }
28 27 }
29 28 .right-box {
30   - break-inside: avoid;
31 29 .item-box {
32 30 &:first-child {
33 31 /deep/ .item {
... ...
src/components/palaceGrid/palaceGrid.vue
... ... @@ -9,7 +9,7 @@
9 9 class="img"
10 10 fit="cover"
11 11 lazy-load
12   - :src="item.img || item"
  12 + :src="(item.img || item) + SIGN.BIG"
13 13 >
14 14 <template v-slot:error>
15 15 <img class="img" src="static/img/x.jpg" alt=""/>
... ...
src/main.js
... ... @@ -128,9 +128,9 @@ Vue.prototype.getApiVersion = function() {
128 128  
129 129 // 参数设置
130 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 134 SOURCE: ""
135 135 }
136 136 /* 设置图片尺寸参数 结束 */
... ...