king
2024-05-16 291b0107a031282e92d1d1fc0a9d3a3dc8229b85
src/tabviews/zshare/actionList/index.jsx
@@ -19,7 +19,7 @@
const FuncZip = asyncComponent(() => import('./funczip'))
const EditLine = asyncComponent(() => import('./editLine'))
const ExportPdf = asyncComponent(() => import('./exportPdf'))
const ShareLink = asyncComponent(() => import('./shareLink'))
const FuncButton = asyncComponent(() => import('./funcbutton'))
class ActionList extends Component {
  static propTpyes = {
@@ -197,26 +197,26 @@
              btn={item}
            />
          )
        } else if (item.funcType === 'shareLink') {
        } else if (item.funcType === 'addline' || item.funcType === 'delline') {
          return (
            <ShareLink
            <EditLine
            key={item.uuid}
            disabled={false}
            btn={item}
            selectedData={selectedData}
            />
            )
          }
        } else {
          return (
            <FuncButton
              key={item.uuid}
              BID={BID}
              btn={item}
              selectedData={selectedData}
            />
          )
        } else if (item.funcType === 'addline' || item.funcType === 'delline') {
          return (
            <EditLine
              key={item.uuid}
              disabled={false}
              btn={item}
              selectedData={selectedData}
            />
          )
        }
      }
      return null
    })
  }