king
2021-08-06 992f25d08ea2b5a6438ccc792a5c723b8a72f674
src/menu/components/card/cardcellcomponent/formconfig.jsx
@@ -20,6 +20,7 @@
    { value: 'barcode', text: '条形码'},
    { value: 'qrcode', text: '二维码'},
    { value: 'currentDate', text: '当前时间'},
    { value: 'formula', text: '公式'},
  ]
  if (type === 'table' || (type === 'card' && subtype === 'datacard')) {
@@ -295,6 +296,17 @@
      required: false,
    },
    {
      type: 'radio',
      key: 'scale',
      label: '图片放大',
      initVal: card.scale || 'false',
      required: false,
      options: [
        { value: 'false', text: '不可以' },
        { value: 'true', text: '可以' }
      ]
    },
    {
      type: 'select',
      key: 'aspectRatio',
      label: '长宽比',
@@ -328,7 +340,6 @@
      forbid: !isApp,
      options: [
        { value: '', text: '无' },
        // { value: 'page', text: '菜单' },
        { value: 'linkpage', text: '关联菜单' },
        { value: 'custom', text: '链接' }
      ]
@@ -385,6 +396,15 @@
      required: true,
      options: []
    },
    {
      type: 'textarea',
      key: 'formula',
      label: '公式',
      initVal: card.formula || '',
      tooltip: '执行时会使用查询到的数据替换相应的字段,展示获得的结果。',
      placeholder: '例如:@price@ * @number@',
      required: true
    },
  ]
  return forms