| | |
| | | editable: true, |
| | | required: false, |
| | | width: '12%', |
| | | render: (text) => { |
| | | render: (text, record) => { |
| | | if (record.type !== 'number') return '' |
| | | |
| | | if (text === 'true') { |
| | | return '是' |
| | | } else { |
| | |
| | | max: 18, |
| | | editable: true, |
| | | required: false, |
| | | width: '12%' |
| | | width: '12%', |
| | | render: (text, record) => record.type === 'number' ? text : '' |
| | | }, |
| | | { |
| | | title: '导出', |
| | |
| | | } else { |
| | | col.type = 'text' |
| | | } |
| | | } |
| | | |
| | | if (col.type !== 'number') { |
| | | col.decimal = '' |
| | | col.abs = 'false' |
| | | } else { |
| | | col.abs = col.abs || 'false' |
| | | } |
| | | |
| | | return col |
| | |
| | | return |
| | | } |
| | | |
| | | let sql = SettingUtils.getDebugSql(verify, scripts, (verify.useSearch === 'true' ? searches : []), Utils) |
| | | let sql = SettingUtils.getDebugSql(verify, scripts, (verify.useSearch === 'true' ? searches : [])) |
| | | |
| | | let _debugId = md5(sql) |
| | | |