form-custom-test 3.0.86 → 3.0.88

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.
@@ -68175,13 +68175,13 @@ function registerIcon(app) {
68175
68175
  if (typeof window !== "undefined") {
68176
68176
  let loadSvg = function() {
68177
68177
  var body = document.body;
68178
- var svgDom = document.getElementById("__svg__icons__dom__1775622613641__");
68178
+ var svgDom = document.getElementById("__svg__icons__dom__1775623015771__");
68179
68179
  if (!svgDom) {
68180
68180
  svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
68181
68181
  svgDom.style.position = "absolute";
68182
68182
  svgDom.style.width = "0";
68183
68183
  svgDom.style.height = "0";
68184
- svgDom.id = "__svg__icons__dom__1775622613641__";
68184
+ svgDom.id = "__svg__icons__dom__1775623015771__";
68185
68185
  svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
68186
68186
  svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
68187
68187
  }
@@ -74559,16 +74559,18 @@ const _sfc_main$c = {
74559
74559
  fieldModel: {
74560
74560
  handler(newVal) {
74561
74561
  if (typeof newVal === "string" && newVal.includes("_RADIO_OTHER_")) {
74562
- this.radioValue = "_RADIO_OTHER_";
74563
- this.inputValue = newVal.split("_RADIO_OTHER_")[1];
74562
+ console.log(newVal, "newVal");
74563
+ const [radio, input] = newVal.split("&");
74564
+ console.log(radio, input, "radio, input");
74565
+ this.radioValue = radio || "_RADIO_OTHER_";
74566
+ this.inputValue = input;
74564
74567
  } else {
74565
74568
  this.radioValue = newVal;
74566
74569
  this.inputValue = "";
74567
74570
  }
74568
74571
  }
74569
74572
  },
74570
- immediate: true,
74571
- deep: true
74573
+ immediate: true
74572
74574
  },
74573
74575
  created() {
74574
74576
  this.initOptionItems();