king
2023-10-19 5e1ff4dc1c6d384af39cac1d3fbe6bf4b58566f2
src/menu/components/table/edit-table/columns/editColumn/formconfig.jsx
@@ -207,6 +207,42 @@
      }, {
        value: 'switch',
        text: '开关'
      }, {
        value: 'date',
        text: '日期(天)'
      }]
    },
    {
      type: 'radio',
      key: 'precision',
      label: '精确度',
      initVal: card.precision || 'day',
      options: [{
        value: 'day',
        text: '天'
      }, {
        value: 'hour',
        text: '小时'
      }, {
        value: 'minute',
        text: '分钟'
      }, {
        value: 'second',
        text: '秒'
      }]
    },
    {
      type: 'radio',
      key: 'declareType',
      label: '数据类型',
      tooltip: '声明变量时的类型,时间格式datetime或文本格式nvarchar(50)。',
      initVal: card.declareType || 'datetime',
      options: [{
        value: 'datetime',
        text: 'datetime'
      }, {
        value: 'nvarchar(50)',
        text: 'nvarchar(50)'
      }]
    },
    {