Blame view

src/routes/ClaimReviewApprove/page.tsx 878 Bytes
d6c39a10   杜志良   feat(cas): init
1
2
3
4
  import { Button, helper, Toast, PageProvider } from '@feewee/h5app-common';
  import { Helmet } from '@modern-js/runtime/head';
  import { useNavigate } from '@modern-js/runtime/router';
  
60939ab0   杜志良   feat(cas): 索赔复核审批...
5
  // 索赔复核审批 todo 待迁移
d6c39a10   杜志良   feat(cas): init
6
7
8
9
  function Index() {
    const navigate = useNavigate();
  
    return (
60939ab0   杜志良   feat(cas): 索赔复核审批...
10
      <PageProvider tittle="索赔复核审批" onBackClick={() => helper.checkBack(() => navigate(-1))}>
d6c39a10   杜志良   feat(cas): init
11
12
        <main className="p-4 h-screen h-svh">
          <div className=" mt-4">
d6c39a10   杜志良   feat(cas): init
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
            <Button
              type="primary"
              shape="round"
              className="!mx-auto !block !mt-4"
              onClick={() =>
                Toast.show({
                  content: '成功提示',
                  icon: 'success',
                })
              }
            >
              吐司提示
            </Button>
          </div>
        </main>
      </PageProvider>
    );
  }
  
  export default Index;