zhytech-ui-mobile 1.1.13 → 1.1.15
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/README.md +11 -0
- package/dist/zhytech-ui-mobile.es.js +4 -3
- package/dist/zhytech-ui-mobile.umd.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,6 +79,17 @@ npm install --legacy-peer-deps
|
|
|
79
79
|
|
|
80
80
|
> #### 版本更新清单:
|
|
81
81
|
|
|
82
|
+
**V 1.1.15**
|
|
83
|
+
```html
|
|
84
|
+
1.修复动态模板中图片上传组件预览问题,预览图片大小为240px
|
|
85
|
+
2.修复动态模板中图片组件没有回传parentID问题
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
**V 1.1.14**
|
|
89
|
+
```html
|
|
90
|
+
1.修复动态模板中如果标题和组件相同时,保存时出现重复问题
|
|
91
|
+
```
|
|
92
|
+
|
|
82
93
|
**V 1.1.13**
|
|
83
94
|
```html
|
|
84
95
|
1.修复动态表单复选框/单选框设置分数为0时不显示问题
|
|
@@ -26620,7 +26620,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
26620
26620
|
let newFileList = fileList;
|
|
26621
26621
|
for (let i2 = 0; i2 < components2.length; i2++) {
|
|
26622
26622
|
const component = components2[i2];
|
|
26623
|
-
if (componentIDs.includes(component.id)) {
|
|
26623
|
+
if (componentIDs.includes(component.id) && component.type !== "label") {
|
|
26624
26624
|
const newPageID = component.props.pageID || pageID;
|
|
26625
26625
|
const result = setDataByComponentType(newResultData, newFileList, component.id, data2, component, groupID, newPageID);
|
|
26626
26626
|
newResultData = result.resultData;
|
|
@@ -26684,9 +26684,10 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
26684
26684
|
});
|
|
26685
26685
|
fileList.push({
|
|
26686
26686
|
sourceType: component.itemSourceType,
|
|
26687
|
-
|
|
26688
|
-
pageID: component.props.pageID,
|
|
26687
|
+
pageID,
|
|
26689
26688
|
groupID,
|
|
26689
|
+
parentID: componentID,
|
|
26690
|
+
id: componentID,
|
|
26690
26691
|
fileIDs,
|
|
26691
26692
|
files: addFileList
|
|
26692
26693
|
});
|