zhytech-ui-mobile 1.1.11 → 1.1.12

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 CHANGED
@@ -79,6 +79,11 @@ npm install --legacy-peer-deps
79
79
 
80
80
  > #### 版本更新清单:
81
81
 
82
+ **V 1.1.12**
83
+ ```html
84
+ 1.修复动态表单结果返回时,复选框、单选框选值的itemSourceType取错问题
85
+ ```
86
+
82
87
  **V 1.1.11**
83
88
  ```html
84
89
  1.调整动态接口设置画面,新增baseUrlFromProps参数,用于从props中获取baseUrl
@@ -26642,7 +26642,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
26642
26642
  case "radio":
26643
26643
  const radioOption = (_b2 = (_a2 = component.props) == null ? void 0 : _a2.options) == null ? void 0 : _b2.find((option) => option.value === data2[componentID]);
26644
26644
  resultData.push({
26645
- sourceType: component.itemSourceType,
26645
+ sourceType: radioOption.itemSourceType,
26646
26646
  pageID,
26647
26647
  groupID,
26648
26648
  parentID: componentID,
@@ -26657,7 +26657,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
26657
26657
  var _a3, _b3;
26658
26658
  const checkboxOption = (_b3 = (_a3 = component.props) == null ? void 0 : _a3.options) == null ? void 0 : _b3.find((option) => option.value === value);
26659
26659
  resultData.push({
26660
- sourceType: component.itemSourceType,
26660
+ sourceType: checkboxOption.itemSourceType,
26661
26661
  pageID,
26662
26662
  groupID,
26663
26663
  parentID: componentID,