shenwu před 7 měsíci
rodič
revize
30b48c3d7d
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      src/pages/Distributor/CorpManage/index.tsx

+ 2 - 1
src/pages/Distributor/CorpManage/index.tsx

@@ -5,6 +5,7 @@ import { columns, childrenColumns } from "./tableConfig"
 import { useAjax } from "@/Hook/useAjax"
 import { corpListOfPage, corpPreAuth } from "@/services/distributor/corpManage"
 import { useEffect, useRef, useState } from "react"
+import { PlusOutlined } from "@ant-design/icons"
 
 const Page: React.FC = () => {
     let getList = useAjax((params) => corpListOfPage(params), { type: 'table' })
@@ -42,7 +43,7 @@ const Page: React.FC = () => {
             }}
             columns={columns()}
             toolBarRender={() => [
-                <Button type="primary" onClick={auth} >新增企微</Button>,
+                <Button type="primary" onClick={auth} ><PlusOutlined />新增企微</Button>,
             ]}
             expandable={{
                 rowExpandable: (record) => record?.appCarrierList?.length > 0,