king
2025-03-09 26e116c38af035db0908c3b6086841708ba2ddeb
src/menu/components/card/cardcellcomponent/elementform/index.jsx
@@ -115,6 +115,26 @@
              })
            })
          }
        } else if (item.key === 'noVField') {
          item.options = []
          if (side === 'sub') {
            config.subColumns.forEach(col => {
              let label = `${col.field}(${col.label})`
              item.options.push({
                value: col.field,
                text: label
              })
            })
          } else {
            config.columns.forEach(col => {
              let label = `${col.field}(${col.label})`
              item.options.push({
                value: col.field,
                text: label
              })
            })
          }
        } else if (item.key === 'formula') {
          item.fields = []
@@ -181,6 +201,9 @@
        _options.push('value')
      }
      
      if (this.record.eleType === 'text' && this.record.noValue === 'hide') {
        _options.push('noVField')
      }
      if (this.record.eleType === 'picture' && this.record.noValue === 'show') {
        _options.push('lostTip')
      } else if (this.record.eleType === 'video' && this.record.posterType) {