xiangpei
2025-02-08 55faa5ceff4af2d0a0ec6ed400919c7960723880
src/components/flow/Expression/index.vue
@@ -54,7 +54,7 @@
  props: {
    // 回显数据传值
    selectValues: {
      type: Number | String,
      type: Object,
      default: null,
      required: false
    }
@@ -93,8 +93,10 @@
  watch: {
    selectValues: {
      handler(newVal) {
        if (StrUtil.isNotBlank(newVal)) {
          this.radioSelected = newVal
        if (newVal) {
          this.radioSelected = newVal.id
        } else {
          this.radioSelected = null
        }
      },
      immediate: true,