cloud-web-corejs 1.0.264 → 1.0.265

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.264",
4
+ "version": "1.0.265",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -6,7 +6,11 @@
6
6
  <a href="javascript:void(0);" class="a-link nums" v-if="designState">
7
7
  <i class="iconfont icon-fujian3"/>
8
8
  </a>
9
- <base-attachment :option.sync="option" v-else></base-attachment>
9
+ <!-- 关掉缩略图懒加载:附件列/字段常挂在初始隐藏的容器里(非首页签、默认折叠面板),
10
+ el-image 的 lazy 只在 mounted 时判一次可视区,隐藏态判失败后仅靠滚动容器的 scroll
11
+ 事件重试,页签切回来不产生 scroll,缩略图会永久停在空白占位。此处是 25px 缩略图,
12
+ 懒加载收益可忽略。参见 wf.js 里同样传 imageLazy:false 的表格列。 -->
13
+ <base-attachment :option.sync="option" :image-lazy="false" v-else></base-attachment>
10
14
  </form-item-wrapper>
11
15
  </template>
12
16