king
2020-06-23 c83a50317baeba1a4771e4d802eee029ed2b7e31
src/templates/sharecomponent/actioncomponent/verifyexcelin/index.jsx
@@ -155,7 +155,17 @@
        title: '执行位置',
        dataIndex: 'position',
        width: '10%',
        render: (text, record) => record.position !== 'front' ? 'sql后' : 'sql前'
        render: (text, record) => {
          let _text = ''
          if (record.position === 'front') {
            _text = 'sql前'
          } else if (record.position === 'init') {
            _text = '初始化'
          } else {
            _text = 'sql后'
          }
          return _text
        }
      },
      {
        title: '状态',