react-toolkits 0.0.4 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +6 -8
- package/CHANGELOG.md +12 -0
- package/dist/index.css +1 -233
- package/dist/index.d.mts +58 -34
- package/dist/index.esm.js +10 -3141
- package/package.json +1 -1
- package/src/components/FilterForm/index.tsx +1 -0
- package/src/components/QueryList/index.tsx +43 -49
- package/src/constants/index.ts +0 -2
- package/src/features/permission/components/{PermissionList.tsx → PermissionList/index.tsx} +1 -1
- package/src/features/permission/hooks/index.ts +13 -28
- package/src/hooks/index.ts +1 -1
- package/src/hooks/{use-fetcher.tsx → use-http-client.tsx} +16 -42
- package/src/hooks/use-permission.tsx +10 -4
- package/src/index.ts +1 -0
- package/src/layouts/Layout.tsx +75 -37
- package/src/layouts/NavBar.tsx +8 -21
- package/src/pages/Login/index.tsx +3 -0
- package/src/pages/NoMatch/index.tsx +27 -0
- package/src/pages/index.ts +2 -1
- package/src/pages/permission/{RoleList.tsx → RoleList/index.tsx} +24 -19
- package/src/pages/permission/{UserList.tsx → UserList/index.tsx} +15 -13
- package/src/stores/index.ts +1 -1
- package/src/stores/query-list.ts +61 -0
- package/src/types/index.ts +1 -18
- package/tsup.config.ts +2 -2
- package/dist/index.css.map +0 -1
- package/dist/index.esm.js.map +0 -1
- package/src/stores/queryTrigger.ts +0 -27
- /package/src/pages/permission/{RoleDetail.tsx → RoleDetail/index.tsx} +0 -0
package/dist/index.esm.js
CHANGED
|
@@ -1,3149 +1,18 @@
|
|
|
1
1
|
import { AliyunOutlined, UserAddOutlined, UsergroupAddOutlined, PlusOutlined } from '@ant-design/icons';
|
|
2
|
-
import {
|
|
3
|
-
import { lazy, useState, useRef, useCallback, useMemo, useEffect, forwardRef, useId, useImperativeHandle } from 'react';
|
|
2
|
+
import { Spin, Row, Col, Card, Alert, Divider, Space, Button, Result, theme, Layout, App, Tag, Form, Input, Breadcrumb, Skeleton, Descriptions, Typography, Modal, Tooltip, Table, Select, Menu, Collapse, Checkbox } from 'antd';
|
|
3
|
+
import { lazy, useState, useRef, useCallback, useMemo, useEffect, Suspense, forwardRef, useId, useImperativeHandle } from 'react';
|
|
4
4
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
5
5
|
import { createPortal, flushSync } from 'react-dom';
|
|
6
6
|
import { createRoot } from 'react-dom/client';
|
|
7
7
|
import { create } from 'zustand';
|
|
8
8
|
import { persist } from 'zustand/middleware';
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
9
|
+
import Et from 'axios';
|
|
10
|
+
import Ut from 'swr/immutable';
|
|
11
|
+
import { Navigate, useNavigate, useSearchParams, Link, useParams, useLocation } from 'react-router-dom';
|
|
12
|
+
import t1 from 'swr/mutation';
|
|
13
|
+
import A1 from 'swr';
|
|
14
|
+
import mo from './512_orange_nobackground-L6MFCL6M.png';
|
|
15
15
|
|
|
16
|
-
var __defProp = Object.defineProperty;
|
|
17
|
-
var __defProps = Object.defineProperties;
|
|
18
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
19
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
20
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
21
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
22
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
23
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
24
|
-
var __spreadValues = (a, b) => {
|
|
25
|
-
for (var prop in b || (b = {}))
|
|
26
|
-
if (__hasOwnProp.call(b, prop))
|
|
27
|
-
__defNormalProp(a, prop, b[prop]);
|
|
28
|
-
if (__getOwnPropSymbols)
|
|
29
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
30
|
-
if (__propIsEnum.call(b, prop))
|
|
31
|
-
__defNormalProp(a, prop, b[prop]);
|
|
32
|
-
}
|
|
33
|
-
return a;
|
|
34
|
-
};
|
|
35
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
36
|
-
var __objRest = (source, exclude) => {
|
|
37
|
-
var target = {};
|
|
38
|
-
for (var prop in source)
|
|
39
|
-
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
|
|
40
|
-
target[prop] = source[prop];
|
|
41
|
-
if (source != null && __getOwnPropSymbols)
|
|
42
|
-
for (var prop of __getOwnPropSymbols(source)) {
|
|
43
|
-
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
|
|
44
|
-
target[prop] = source[prop];
|
|
45
|
-
}
|
|
46
|
-
return target;
|
|
47
|
-
};
|
|
48
|
-
var __esm = (fn, res) => function __init() {
|
|
49
|
-
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
50
|
-
};
|
|
51
|
-
var __export = (target, all) => {
|
|
52
|
-
for (var name in all)
|
|
53
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
54
|
-
};
|
|
55
|
-
var __async = (__this, __arguments, generator) => {
|
|
56
|
-
return new Promise((resolve, reject) => {
|
|
57
|
-
var fulfilled = (value) => {
|
|
58
|
-
try {
|
|
59
|
-
step(generator.next(value));
|
|
60
|
-
} catch (e) {
|
|
61
|
-
reject(e);
|
|
62
|
-
}
|
|
63
|
-
};
|
|
64
|
-
var rejected = (value) => {
|
|
65
|
-
try {
|
|
66
|
-
step(generator.throw(value));
|
|
67
|
-
} catch (e) {
|
|
68
|
-
reject(e);
|
|
69
|
-
}
|
|
70
|
-
};
|
|
71
|
-
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
|
72
|
-
step((generator = generator.apply(__this, __arguments)).next());
|
|
73
|
-
});
|
|
74
|
-
};
|
|
16
|
+
var oe=Object.defineProperty,ot=Object.defineProperties;var rt=Object.getOwnPropertyDescriptors;var h1=Object.getOwnPropertySymbols;var re=Object.prototype.hasOwnProperty,se=Object.prototype.propertyIsEnumerable;var te=(o,t,r)=>t in o?oe(o,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):o[t]=r,R=(o,t)=>{for(var r in t||(t={}))re.call(t,r)&&te(o,r,t[r]);if(h1)for(var r of h1(t))se.call(t,r)&&te(o,r,t[r]);return o},Z=(o,t)=>ot(o,rt(t));var V=(o,t)=>{var r={};for(var s in o)re.call(o,s)&&t.indexOf(s)<0&&(r[s]=o[s]);if(o!=null&&h1)for(var s of h1(o))t.indexOf(s)<0&&se.call(o,s)&&(r[s]=o[s]);return r};var C=(o,t)=>()=>(o&&(t=o(o=0)),t);var T1=(o,t)=>{for(var r in t)oe(o,r,{get:t[r],enumerable:!0});};var P=(o,t,r)=>new Promise((s,i)=>{var p=f=>{try{l(r.next(f));}catch(g){i(g);}},n=f=>{try{l(r.throw(f));}catch(g){i(g);}},l=f=>f.done?s(f.value):Promise.resolve(f.value).then(p,n);l((r=r.apply(o,t)).next());});var a=C(()=>{});var it,at,fe=C(()=>{a();it=o=>{let{initialTags:t,addable:r,removable:s,addCallback:i,removeCallback:p}=o,{token:n}=theme.useToken(),[l,f]=useState([]),[g,h]=useState(!1),[x,m]=useState(""),[M,F]=useState(-1),[u,d]=useState(""),y=useRef(null),I=useRef(null);useEffect(()=>{f(t!=null?t:[]);},[t]),useEffect(()=>{var T;g&&((T=y.current)==null||T.focus());},[g]),useEffect(()=>{var T;(T=I.current)==null||T.focus();},[x]);let v=T=>P(void 0,null,function*(){if(yield p==null?void 0:p(T)){let G=l.filter(g1=>g1!==T);f(G);}}),U=()=>{h(!0);},O=T=>{m(T.target.value);},W=()=>P(void 0,null,function*(){x&&l.indexOf(x)===-1&&(yield i==null?void 0:i(x))&&f([...l,x]),h(!1),m("");}),u1=T=>{d(T.target.value);},D=()=>{let T=[...l];T[M]=u,f(T),F(-1),m("");},K={width:78,verticalAlign:"top"},tt={background:n.colorBgContainer,borderStyle:"dashed"};return jsxs(Space,{wrap:!0,size:[0,8],children:[jsx(Space,{wrap:!0,size:[0,8],children:l.map((T,j)=>M===j?jsx(Input,{ref:I,size:"small",style:K,value:u,onChange:u1,onBlur:D,onPressEnter:D},T):jsx(Tag,{closable:s,style:{userSelect:"none"},onClose:G=>P(void 0,null,function*(){G.preventDefault(),yield v(T);}),children:jsx("span",{onDoubleClick:G=>{j!==0&&(F(j),d(T),G.preventDefault());},children:T})},T))}),r&&(g?jsx(Input,{ref:y,type:"text",size:"small",style:K,value:x,onChange:O,onBlur:W,onPressEnter:W}):jsxs(Tag,{style:tt,onClick:U,children:[jsx(PlusOutlined,{}),"\xA0\u6DFB\u52A0"]}))]})},at=it;});var mt,I1,v1=C(()=>{a();mt=o=>{let f=o,{children:t,confirmText:r,form:s,onReset:i}=f,p=V(f,["children","confirmText","form","onReset"]),{token:n}=theme.useToken(),l={maxWidth:"none",background:n.colorFillAlter,borderWidth:n.lineWidth,borderStyle:n.lineType,borderColor:n.colorBorder,borderRadius:n.borderRadiusLG,padding:24,marginBottom:24};return jsx(Form,Z(R({},p),{form:s,autoComplete:"off",children:t&&jsx("div",{style:l,children:jsxs(Row,{gutter:18,children:[t,jsx(Col,{flex:"auto"}),jsx(Col,{flex:"auto",span:24,style:{textAlign:"right"},children:jsxs(Space,{children:[jsx(Button,{type:"primary",htmlType:"submit",children:r||"\u67E5\u8BE2"}),jsx(Button,{htmlType:"reset",onClick:i,children:"\u91CD\u7F6E"})]})})]})})}))},I1=mt;});var bt,Mt,F1,Z1=C(()=>{a();bt=(o,t)=>{let{width:r,children:s,title:i,open:p,footer:n,layout:l,labelCol:f,bodyStyle:g,initialValues:h,maskClosable:x,closeFn:m,afterClose:M,onConfirm:F}=o,u=useId(),[d]=Form.useForm(),y=useRef(null),I=typeof s=="function",[v,U]=useState(!1);return useImperativeHandle(t,()=>({setFieldsValue(O){var W;(W=y.current)==null||W.setFieldsValue(O);}})),jsx(Modal,{destroyOnClose:!0,bodyStyle:g,style:{textAlign:"start"},width:r,open:p,title:i,forceRender:!0,getContainer:!1,maskClosable:x,footer:typeof n=="object"?n:[jsx(Button,{onClick:()=>{m==null||m();},children:"\u53D6\u6D88"},"cancel"),jsx(Button,{form:u,type:"primary",htmlType:"submit",loading:v,children:"\u786E\u5B9A"},"submit")],afterClose:()=>{M==null||M(),d.resetFields();},onCancel:m,children:jsx(Form,{form:d,ref:y,id:u,autoComplete:"off",labelAlign:"right",labelWrap:!0,layout:l,initialValues:h,labelCol:f||{flex:!l||l==="horizontal"?"120px":"0"},onFinish:O=>P(void 0,null,function*(){try{U(!0),yield F==null?void 0:F(O),m==null||m(),d.resetFields();}finally{U(!1);}}),children:I?s({form:d,open:p,closeFn:m}):s})})},Mt=forwardRef(bt),F1=Mt;});function X(o){let m=o,{content:t,onConfirm:r}=m,s=V(m,["content","onConfirm"]),[i,p]=useState(!1),[n,l]=useState(),f=useRef(null),g=M=>{var F,u;l((F=M==null?void 0:M.title)!=null?F:s.title),M!=null&&M.initialValues&&((u=f.current)==null||u.setFieldsValue(M==null?void 0:M.initialValues)),p(!0);},h=useCallback(()=>{p(!1);},[]),x=useMemo(()=>jsx(F1,Z(R({ref:f},s),{open:i,closeFn:h,title:n,onConfirm:r,children:t})),[n,t,s,i,h,r]);return {Modal:createPortal(x,document.body),showModal:g,closeModal:h}}var w1=C(()=>{a();Z1();});function St(o){let t=document.createElement("div"),r=createRoot(t);return new Promise(s=>{setTimeout(()=>{flushSync(()=>{r.render(o);}),s(t.innerHTML);});})}var Zt,Lt,n1,ye=C(()=>{a();Zt=o=>{let t=/(<[^>]*>)/;return o.split(t).filter(r=>r!=="")};Lt=o=>{let{texts:t,children:r}=o,[s,i]=useState("");return useEffect(()=>{St(r).then(p=>{let n=Zt(p);for(let l of t)for(let f=0;f<n.length;f++)n[f]=n[f].replace(String(l),`<span style='color: #DC143C;'>${l}</span>`);i(n.join(""));});},[r,t]),jsx("p",{dangerouslySetInnerHTML:{__html:s}})},n1=Lt;});var i1,we=C(()=>{a();i1=create()(persist(o=>({openKeys:[],selectedKeys:[],setOpenKeys:t=>o({openKeys:t}),setSelectedKeys:t=>o({selectedKeys:t})}),{name:"menu",partialize:o=>({openKeys:o.openKeys,selectedKeys:o.selectedKeys})}));});var e1,be=C(()=>{a();e1=create()(persist(o=>({token:"",setToken:t=>o({token:t}),clearToken:()=>{o({token:""}),e1.persist.clearStorage();}}),{name:"token",partialize:o=>({token:o.token})}));});var A,Me=C(()=>{a();A=create((o,t)=>({data:new Map,getPaginationData:r=>{var i,p,n;let s=(i=t().data.get(r))==null?void 0:i.pagination;return {page:(p=s==null?void 0:s.page)!=null?p:1,perPage:(n=s==null?void 0:s.perPage)!=null?n:10}},setPaginationData:(r,s)=>{var i,p;o({data:new Map(t().data).set(r,Z(R({},t().data.get(r)),{pagination:{page:(i=s==null?void 0:s.page)!=null?i:t().getPaginationData(r).page,perPage:(p=s==null?void 0:s.perPage)!=null?p:t().getPaginationData(r).perPage}}))});},refresh:(r,s)=>{var p,n,l;let i=(p=t().data.get(r))==null?void 0:p.refresh;i&&i({page:(n=s==null?void 0:s.page)!=null?n:t().getPaginationData(r).page,perPage:(l=s==null?void 0:s.perPage)!=null?l:t().getPaginationData(r).perPage});},setRefresh:(r,s)=>{let i=t().data;o({data:new Map(i).set(r,Z(R({},i.get(r)),{refresh:s}))});}}));});var q=C(()=>{a();we();be();Me();});function B(){let o=e1(s=>s.token),t={withCredentials:!0},r=Et.create(t);return r.interceptors.request.use(s=>(s.headers.set("Authorization",`Bearer ${o}`),s)),r.interceptors.response.use(s=>{if(s.data.code===0||s.data.status===0)return s.data.data;throw new Q(s.data.msg,0)},s=>{var i;throw s.response?s.response.status===401?new Q("\u672A\u767B\u5F55\u6216\u767B\u5F55\u5DF2\u8FC7\u671F",s.response.status):s.response.status===403?new Q("\u65E0\u6743\u9650\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u8FDB\u884C\u6388\u6743",s.response.status):[404,405].includes(s.response.status)?new Q("Not Found or Method not Allowed",s.response.status,!0):s.response.status===412?new Q("\u672A\u6CE8\u518C\u7528\u6237",s.response.status):new Q((i=s.response.data)==null?void 0:i.msg,s.response.status):new Q("\u65E0\u54CD\u5E94")}),r}var Q,S1=C(()=>{a();q();Q=class extends Error{constructor(r,s,i=!1){super(r);this.code=s,this.skip=i;}};});function L1(o){let t=B(),r=useNavigate(),{data:s,isLoading:i}=Ut(o.length>0?{method:"POST",url:"/api/usystem/user/check",data:{permissions:o}}:null,p=>t.request(p).then(n=>n.has_all?o.reduce((l,f)=>(l[f]=!0,l),{}):o.reduce((l,f)=>(l[f]=n[f],l),{})),{suspense:!0,shouldRetryOnError:!1,onError(){r("/login");}});return {data:s,isLoading:i}}function N(o){var s;let{data:t,isLoading:r}=L1(o?[o]:[]);return o?{accessible:(s=t==null?void 0:t[o])!=null?s:!1,isValidating:r}:{accessible:!0,isValidating:!1}}var xe=C(()=>{a();S1();});var H=C(()=>{a();S1();xe();});var Ht,z,Pe=C(()=>{a();H();Ht=o=>{let l=o,{children:t,code:r,showLoading:s}=l,i=V(l,["children","code","showLoading"]),{accessible:p,isValidating:n}=N(r);return n?jsx(Button,Z(R({loading:s,disabled:!s},i),{children:t})):p?jsx(Button,Z(R({},i),{children:t})):jsx(Tooltip,{defaultOpen:!1,title:"\u65E0\u6743\u9650\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u8FDB\u884C\u6388\u6743",children:jsx(Button,Z(R({disabled:!0},i),{children:t}))})},z=Ht;});var Gt,a1,Te=C(()=>{a();H();q();v1();Gt=o=>{let u1=o,{code:t,confirmText:r,labelCol:s,swrKey:i,initialValues:p,renderForm:n,transformArg:l,transformResponse:f}=u1,g=V(u1,["code","confirmText","labelCol","swrKey","initialValues","renderForm","transformArg","transformResponse"]),{accessible:h}=N(t!=null?t:""),[x]=Form.useForm(),m=A(D=>D.setRefresh),M=A(D=>D.getPaginationData),F=A(D=>D.setPaginationData),u=M(i),d=B(),{data:y,isMutating:I,trigger:v}=t1(i,(tt,T)=>P(void 0,[tt,T],function*(D,{arg:K}){var $1,j1,J1;let j={page:($1=K==null?void 0:K.page)!=null?$1:u.page,perPage:(j1=K==null?void 0:K.perPage)!=null?j1:u.perPage};F(i,K);let G=x.getFieldsValue(),g1=R(R({},G),j);return d.request(Z(R({},D),{[D.method==="POST"?"data":"params"]:(J1=l==null?void 0:l(g1))!=null?J1:g1})).then(Y1=>{var ee;return (ee=f==null?void 0:f(Y1))!=null?ee:Y1})})),U=()=>P(void 0,null,function*(){yield v({page:1});}),O=useCallback(()=>P(void 0,null,function*(){try{x.resetFields(),yield x.validateFields(),yield v({page:1});}catch(D){console.log("\u8868\u5355\u6821\u9A8C\u5931\u8D25");}}),[x,v]),W=useCallback((D,K)=>P(void 0,null,function*(){yield v({page:D,perPage:K});}),[v]);return useEffect(()=>{m(i,v);},[i,v,m]),useEffect(()=>{P(void 0,null,function*(){try{yield x.validateFields(),yield v();}catch(D){x.resetFields();}});},[x,v]),h?jsxs(Fragment,{children:[jsx(I1,{initialValues:p,form:x,labelCol:s,confirmText:r,onFinish:U,onReset:O,children:n==null?void 0:n(x)}),jsx(Table,Z(R({},g),{dataSource:y==null?void 0:y.List,loading:I,pagination:{showSizeChanger:!0,showQuickJumper:!0,current:u.page,pageSize:u.perPage,total:y==null?void 0:y.Total,onChange:W}}))]}):jsx(Result,{status:403,subTitle:"\u65E0\u6743\u9650\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u8FDB\u884C\u6388\u6743"})},a1=Gt;});var M1=C(()=>{a();fe();v1();Z1();w1();ye();Pe();Te();});function Fe(){return A1({url:"/api/usystem/user/allPermssions"})}function N1(){let{accessible:o}=N("200005");return A1(o?{url:"/api/usystem/role/all"}:null)}function Ze(o){return A1({url:"/api/usystem/role/info",params:{name:o}})}function Se(){let o=B();return t1("/api/usystem/role/create",(t,{arg:r})=>o.post(t,r))}function Le(){let o=B();return t1("/api/usystem/role/update",(t,{arg:r})=>o.post(t,r))}function De(){let o=B();return t1("/api/usystem/role/delete",(t,{arg:r})=>o.post(t,r))}function Be(){let o=B();return t1("/api/usystem/user/create",(t,{arg:r})=>o.post(t,r))}function Ve(){let o=B();return t1("/api/usystem/user/update",(t,{arg:r})=>o.post(t,r))}function Ke(){let o=B();return t1("/api/usystem/user/delete",(t,{arg:r})=>o.post(t,r))}var E1=C(()=>{a();H();});var k2,C2,r1,Ne=C(()=>{a();E1();(({Text:k2}=Typography)),C2=({expand:o=!0,value:t,readonly:r,onChange:s})=>{let[i,p]=useState([]),[n,l]=useState(t!=null?t:[]),{data:f,isLoading:g,error:h}=Fe(),[x,m]=useState({});useEffect(()=>{l(t!=null?t:[]);},[t]),useEffect(()=>{o&&p((f!=null?f:[]).map(({category:d})=>d));},[o,f]),useEffect(()=>{let d=(f!=null?f:[]).reduce((y,I)=>(y[I.category]=I.permissions.every(v=>n.includes(v.value)),y),{});m(d);},[n,f]);let M=d=>{p(d);},F=(d,y)=>{let I=[];return d?I=[...new Set(n.concat(y))]:(I=n.slice(),y.forEach(v=>{let U=I.findIndex(O=>O===v);U>-1&&I.splice(U,1);})),I},u=(d,y,I)=>{let v=F(d.target.checked,I);l(v),s==null||s(v);};return h?jsx("div",{className:"flex justify-center",children:jsx(k2,{type:"danger",children:"\u6743\u9650\u83B7\u53D6\u5931\u8D25"})}):jsx(Skeleton,{active:!0,loading:g,children:jsx(Collapse,{style:{width:"100%"},collapsible:"header",activeKey:i,items:(f!=null?f:[]).map(d=>({key:d.category,label:d.category,extra:!r&&jsx(Checkbox,{checked:x[d.category],onChange:y=>{u(y,d.category,d.permissions.map(I=>I.value));},children:"\u5168\u9009"}),children:jsx(Checkbox.Group,{style:{width:"100%"},options:d.permissions.map(y=>({label:y.label,value:y.value,disabled:r,onChange(I){u(I,d.category,[y.value]);}})),value:n})})),onChange:M})})},r1=C2;});var Ee=C(()=>{a();});var x1=C(()=>{a();Ne();E1();Ee();});var Qe={};T1(Qe,{default:()=>V2,swrKey:()=>p1});function L2(){let{message:o}=App.useApp(),t=Be(),{data:r,isLoading:s}=N1(),i=A(n=>n.refresh);return X({title:"\u521B\u5EFA\u89D2\u8272",labelCol:{flex:"80px"},content:jsxs(Fragment,{children:[jsx(Form.Item,{noStyle:!0,shouldUpdate:(n,l)=>n.type!==l.type,children:({getFieldValue:n})=>jsx(Form.Item,{label:"\u540D\u79F0",name:"name",rules:[{required:!0}],children:jsx(Input,{disabled:n("id")})})}),jsx(Form.Item,{label:"\u89D2\u8272",name:"roles",children:jsx(Select,{allowClear:!0,mode:"multiple",loading:s,children:(r!=null?r:[]).map(n=>jsx(Oe,{value:n.name,children:n.name},n.id))})})]}),onConfirm(n){return P(this,null,function*(){yield t.trigger(n,{onSuccess(){o.success("\u7528\u6237\u521B\u5EFA\u6210\u529F"),i(p1,{page:1});}});})}})}function D2(){let{message:o}=App.useApp(),t=Ve(),{data:r,isLoading:s}=N1(),i=A(n=>n.refresh);return X({title:"\u66F4\u65B0\u89D2\u8272",labelCol:{flex:"80px"},content:jsxs(Fragment,{children:[jsx(Form.Item,{hidden:!0,name:"id",children:jsx(Input,{})}),jsx(Form.Item,{noStyle:!0,shouldUpdate:(n,l)=>n.type!==l.type,children:({getFieldValue:n})=>jsx(Form.Item,{label:"\u540D\u79F0",name:"name",rules:[{required:!0}],children:jsx(Input,{disabled:n("id")})})}),jsx(Form.Item,{label:"\u89D2\u8272",name:"roles",children:jsx(Select,{allowClear:!0,mode:"multiple",loading:s,children:(r!=null?r:[]).map(n=>jsx(Oe,{value:n.name,children:n.name},n.id))})})]}),onConfirm(n){return P(this,null,function*(){yield t.trigger(n,{onSuccess(){o.success("\u7528\u6237\u66F4\u65B0\u6210\u529F"),i(p1,{page:1});}});})}})}var Oe,p1,B2,V2,He=C(()=>{a();M1();w1();x1();q();(({Option:Oe}=Select)),p1={url:"/api/usystem/user/list"};B2=()=>{let{modal:o,message:t}=App.useApp(),r=Ke(),s=A(g=>g.refresh),{showModal:i,Modal:p}=L2(),{showModal:n,Modal:l}=D2(),f=useMemo(()=>[{title:"\u540D\u79F0",dataIndex:"name",key:"name"},{title:"ID",dataIndex:"id",key:"id"},{title:"\u89D2\u8272",dataIndex:"roles",key:"roles",width:"40%",render(g){return jsx(Row,{gutter:[4,4],children:(g||[]).map(h=>jsx(Col,{children:h==="root"?jsx(Tag,{color:"#f50",children:h}):jsx(Tag,{color:"#ff5a00",children:jsx(Link,{to:`/permission/role/${h}`,children:h})})},h))})}},{title:"\u521B\u5EFA\u65F6\u95F4",dataIndex:"Ctime",key:"ctime"},{title:"\u64CD\u4F5C",width:150,align:"center",render:g=>jsxs(Space,{children:[jsx(z,{size:"small",type:"link",code:"100003",onClick:()=>{n({initialValues:{id:g.id,name:g.name,roles:g.roles}});},children:"\u66F4\u65B0"}),jsx(z,{danger:!0,size:"small",code:"100004",type:"link",onClick:()=>{o.confirm({title:"\u5220\u9664\u7528\u6237",content:jsxs(n1,{texts:[g.name],children:["\u786E\u5B9A\u8981\u5220\u9664\u7528\u6237\xA0",g.name,"\xA0\u5417\uFF1F"]}),onOk(){return P(this,null,function*(){yield r.trigger({id:g.id,name:g.name},{onSuccess(){return P(this,null,function*(){yield t.success("\u7528\u6237\u5220\u9664\u6210\u529F"),s(p1,{page:1});})}});})}});},children:"\u5220\u9664"})]})}],[s,r,t,o,n]);return jsxs(Fragment,{children:[jsx(Card,{title:"\u7528\u6237",extra:jsx(z,{type:"primary",icon:jsx(UserAddOutlined,{}),code:"100002",onClick:()=>{i();},children:"\u521B\u5EFA\u7528\u6237"}),children:jsx(a1,{code:"100001",swrKey:p1,rowKey:"id",columns:f,transformArg:g=>{let M=g,{page:h,perPage:x}=M,m=V(M,["page","perPage"]);return Z(R({},m!=null?m:{}),{page:h,size:x})}})}),p,l]})},V2=B2;});var ze={};T1(ze,{default:()=>H2,swrKey:()=>m1});var m1,Q2,H2,_e=C(()=>{a();M1();w1();x1();H();q();m1={url:"/api/usystem/role/list"},Q2=()=>{let{accessible:o}=N("200005"),{modal:t,message:r}=App.useApp(),s=B(),i=Se(),p=De(),n=Le(),l=A(u=>u.refresh),{showModal:f,Modal:g}=X({title:"\u521B\u5EFA\u89D2\u8272",width:"50vw",layout:"vertical",content:jsxs(Fragment,{children:[jsx(Form.Item,{label:"\u540D\u79F0",name:"name",rules:[{required:!0}],children:jsx(Input,{addonBefore:"role_"})}),jsx(Form.Item,{label:"\u6743\u9650",name:"permissions",children:jsx(r1,{})})]}),onConfirm(u){return P(this,null,function*(){yield i.trigger({name:`role_${u.name}`,permissions:u.permissions},{onSuccess(){return P(this,null,function*(){yield r.success("\u89D2\u8272\u521B\u5EFA\u6210\u529F"),l(m1,{page:1});})}});})}}),{showModal:h,Modal:x}=X({title:"\u66F4\u65B0\u89D2\u8272",width:"50vw",layout:"vertical",content:jsxs(Fragment,{children:[jsx(Form.Item,{hidden:!0,label:"ID",name:"id",children:jsx(Input,{})}),jsx(Form.Item,{label:"\u540D\u79F0",name:"name",rules:[{required:!0}],children:jsx(Input,{disabled:!0,addonBefore:"role_"})}),jsx(Form.Item,{label:"\u6743\u9650",name:"permissions",children:jsx(r1,{})})]}),onConfirm(u){return P(this,null,function*(){yield n.trigger({id:u.id,name:`role_${u.name}`,permissions:u.permissions},{onSuccess(){return P(this,null,function*(){yield r.success("\u89D2\u8272\u66F4\u65B0\u6210\u529F"),l(m1,{page:1});})}});})}}),m=useMemo(()=>[{title:"\u540D\u79F0",key:"name",render(u){return o?jsx(Link,{to:`${u.name}`,children:u.name}):jsx(Fragment,{children:u.name})}},{title:"ID",dataIndex:"id",key:"id"},{title:"\u521B\u5EFA\u65F6\u95F4",dataIndex:"ctime",key:"ctime"},{title:"\u64CD\u4F5C",width:150,align:"center",render:u=>jsxs(Space,{size:"small",children:[jsx(z,{code:"200003",size:"small",type:"link",onClick:()=>P(void 0,null,function*(){let d=yield s.get("/api/usystem/role/info",{params:{name:u.name}});h({initialValues:{id:d==null?void 0:d.id,permissions:d==null?void 0:d.permissions,name:d==null?void 0:d.name.replace(/^role_/,"")}});}),children:"\u66F4\u65B0"}),jsx(z,{danger:!0,code:"200004",size:"small",type:"link",onClick:()=>{t.confirm({title:"\u5220\u9664\u89D2\u8272",content:jsxs(n1,{texts:[u.name],children:["\u786E\u5B9A\u8981\u5220\u9664\u89D2\u8272\xA0",u.name,"\xA0\u5417\uFF1F"]}),onOk(){return P(this,null,function*(){yield p.trigger({id:u.id,name:u.name},{onSuccess(){return P(this,null,function*(){yield r.success("\u89D2\u8272\u5220\u9664\u6210\u529F"),l(m1,{page:1});})}});})}});},children:"\u5220\u9664"})]})}],[l,o,s,t,r,p,h]);return jsxs(Fragment,{children:[jsx(Card,{title:"\u89D2\u8272",extra:jsx(z,{type:"primary",code:"200002",icon:jsx(UsergroupAddOutlined,{}),onClick:()=>{f();},children:"\u521B\u5EFA\u89D2\u8272"}),children:jsx(a1,{rowKey:"name",columns:m,code:"200001",swrKey:m1,transformArg:u=>{let{page:d,perPage:y}=u;return {page:d,size:y}},transformResponse:u=>{let{List:d,Total:y}=u;return {List:d,Total:y}}})}),g,x]})},H2=Q2;});var We={};T1(We,{default:()=>$2});var X2,$2,Ge=C(()=>{a();x1();X2=()=>{let o=useParams(),{data:t,isLoading:r}=Ze(o.name);return jsxs(Fragment,{children:[jsx(Breadcrumb,{style:{marginBottom:24},items:[{key:"1",title:jsx(Link,{to:"/permission/role",children:"\u89D2\u8272"})},{key:"2",title:o.name}]}),jsx(Card,{title:"\u6743\u9650\u8BE6\u60C5",children:jsx(Skeleton,{loading:r,children:jsxs(Descriptions,{column:3,layout:"vertical",children:[jsx(Descriptions.Item,{label:"\u540D\u79F0",children:t==null?void 0:t.name}),jsx(Descriptions.Item,{label:"ID",children:t==null?void 0:t.id}),jsx(Descriptions.Item,{label:"\u521B\u5EFA\u65F6\u95F4",children:t==null?void 0:t.ctime}),jsx(Descriptions.Item,{label:"\u6743\u9650",span:3,children:jsx(r1,{readonly:!0,value:t==null?void 0:t.permissions})})]})})})]})},$2=X2;});a();M1();H();q();a();a();a();var Re="https://idaas.ifunplus.cn/enduser/api/application/plugin_FunPlus/sso/v1";q();a();var jt=()=>jsxs("svg",{viewBox:"0 0 1620 1028",xmlns:"http://www.w3.org/2000/svg",children:[jsx("g",{id:"a"}),jsx("g",{id:"b",children:jsx("g",{id:"c",children:jsxs("g",{children:[jsx("path",{fill:"#e8f2fa",d:"M1543.84,1025.63c-92.65,0-1442.29,.34-1443.07-2.11l-.13-.31s-.13-.3-.13-.45c-.52-1.23-207.95-345.42,114.53-585.03,126.18-93.75-7.9-155.64,92.44-260.01,115.31-119.94,241.15,12.74,369.38-41.64,22.66-9.6,45.39-25.05,68.15-48.76C797.78,32.37,870.19,6.95,944.96,1.25c143.27-10.86,304.51,50.23,387.71,139.53,16.75,17.98,92.93,111.03,32.88,238.91-37.91,80.74,120.91,157.86,177.35,250.06,143.49,234.42,2.24,392.82,.93,395.87Z"}),jsxs("g",{opacity:".5",children:[jsx("g",{opacity:".5",children:jsx("path",{fill:"#a9c2ff",d:"M522.98,381s-10.51-89.31-55.62-142.6c-6-7.08-17.47-2.57-17.28,6.76,0,.16,0,.31,.01,.47,.58,15.93,51.09,83.13,72.89,135.37Z"})}),jsx("g",{opacity:".5",children:jsx("path",{fill:"#a9c2ff",d:"M528.46,406.57s-44.95-111.62-121.74-160.99c-4.68-3.01-11.02-1.92-14.16,2.72-2.04,3.02-2.96,7.73-.67,15.1,6.12,19.63,91.75,85.72,136.57,143.18Z"})})]}),jsxs("g",{children:[jsx("path",{fill:"#73b471",d:"M1088.4,378.19s-40.25-25.14-19.73-56.1c0,0,16.18-18.86,32.87-23.19,0,0-10.72,47-1.98,48.49,8.75,1.48,8.23-53.25,8.23-53.25,0,0,44.27-19.36,61.23-16.97,0,0-28.81,45.13-19.97,44.38,8.84-.75,40.96-46.29,40.96-46.29,0,0,44.84-6.49,50.9,20.56,6.05,27.05-6.03,39.94-12.69,41.34-6.66,1.4-48.94-.94-48.07,4.68,.87,5.62,29.08,15.74,45.22,11.39,0,0-19.38,43.29-42.36,40.09-22.99-3.2-29.54-17.99-43.78-19.7-14.24-1.71-24.84,1.75-17.85,5.95,6.98,4.2,31.27,2.59,42.4,13.03,11.13,10.43,20.22,16.96-1.39,20.52-21.61,3.56-59.96-.84-66.97-17.88l-7.01-17.04Z"}),jsxs("g",{children:[jsx("path",{fill:"#73b471",d:"M1220.24,303.33s-116.93,33.06-131.84,74.86c0,0-.22,18.97-12.65,40.22l-.34,8.36s13.25-27.92,20-31.54c0,0-24.32-37.87,124.83-91.9Z"}),jsx("path",{fill:"#73b471",d:"M1075.75,418.41s-18.91,26.66-10.13,60.45l4.63-1.05s-2.94-36.94,7.12-55.03c10.06-18.09-1.62-4.37-1.62-4.37Z"})]})]}),jsxs("g",{children:[jsx("path",{fill:"#9bd399",d:"M925.53,377.18s-67.6,6.07-70.13-47.44c0,0,2.69-35.79,18.25-55.28,0,0,27.38,63.45,38.71,57.55,11.32-5.9-35.54-68.47-35.54-68.47,0,0,34.61-60.79,56.16-72.8,0,0,4.97,77.02,14.52,68.48,9.54-8.54,8.04-88.93,8.04-88.93,0,0,46.15-46.48,75.98-20.59,29.83,25.89,26.82,51.24,20.33,58.64-6.49,7.4-57.15,41.49-51.4,47.2,5.75,5.71,46.78-7.17,61.69-26.21,0,0,14.28,66.7-14.89,83.01-29.17,16.31-49.21,4.98-67.06,15.39-17.84,10.41-27.12,23.62-15.53,22.38,11.59-1.24,38.19-24.21,59.83-21.88,21.64,2.33,37.62,1.94,15.74,24.83-21.87,22.89-69.75,51.18-92.22,37.65l-22.48-13.53Z"}),jsxs("g",{children:[jsx("path",{fill:"#9bd399",d:"M1014.06,176.32s-106.69,139.76-88.53,200.87c0,0,15.78,22.04,19.44,57.32l6.67,9.92s-8.34-43.67-3.63-53.71c0,0-60.01-22.45,66.05-214.39Z"}),jsx("path",{fill:"#9bd399",d:"M944.97,434.5s.76,47.15,39.44,78.42l4.44-5.24s-34.61-39.97-38.32-69.55c-3.71-29.58-5.56-3.62-5.56-3.62Z"})]})]}),jsxs("g",{children:[jsxs("g",{children:[jsx("path",{fill:"#b6cfff",d:"M290.34,904.31s-18.93-22.41-1.17-36.64c0,0,12.98-7.97,23.56-7.32,0,0-14.99,25.5-10.14,28.04,4.85,2.54,14.69-29.64,14.69-29.64,0,0,29.53-2.91,39.03,1.73,0,0-25.25,20.96-19.93,22.2,5.32,1.25,32.58-19.32,32.58-19.32,0,0,27.48,4.74,26.02,21.75-1.47,17.01-10.94,22.26-15.1,21.81-4.16-.45-28.51-9.88-29.04-6.42-.53,3.46,14.13,14.77,24.39,15.29,0,0-19.38,21.68-32.26,15.42-12.88-6.26-13.98-16.17-22.01-19.89-8.03-3.72-14.88-3.71-11.57,.08,3.31,3.79,17.84,7.48,22.43,15.72,4.59,8.24,8.71,13.79-4.61,11.76-13.32-2.03-34.98-11.92-35.93-23.25l-.95-11.32Z"}),jsxs("g",{children:[jsx("path",{fill:"#b6cfff",d:"M381.48,885.57s-74.65-2.92-91.14,18.74c0,0-3.65,11.08-14.87,21.16l-1.75,4.83s12.94-13.84,17.56-14.67c0,0-7.24-26.83,90.19-30.06Z"}),jsx("path",{fill:"#b6cfff",d:"M275.48,925.47s-16.02,12.02-17.14,33.5l2.91,.26s5.12-22.21,14.37-30.89c9.25-8.68-.14-2.87-.14-2.87Z"})]})]}),jsxs("g",{children:[jsx("path",{fill:"#a9c2ff",d:"M224.15,876.13s30.12-17.11,16.06-40.33c0,0-11.24-14.26-23.29-17.92,0,0,6.42,34.62,0,35.44-6.43,.81-4.42-39.11-4.42-39.11,0,0-31.72-15.48-44.17-14.26,0,0,19.68,33.81,13.25,33-6.43-.81-28.51-35.03-28.51-35.03,0,0-32.53-6.11-37.75,13.44-5.22,19.55,3.21,29.33,8.03,30.55,4.82,1.22,35.74,.81,34.94,4.89-.8,4.07-21.69,10.59-33.33,6.92,0,0,12.85,32.18,29.72,30.55,16.87-1.63,22.09-12.22,32.53-13.03,10.44-.81,18.07,2.04,12.85,4.89-5.22,2.85-22.89,.93-31.32,8.21-8.43,7.27-15.26,11.75,.4,15.01,15.66,3.26,43.77,1.22,49.39-11l5.62-12.22Z"}),jsxs("g",{children:[jsx("path",{fill:"#a9c2ff",d:"M130.18,817.47s84.33,27.7,93.97,58.66c0,0-.4,13.85,8.03,29.74v6.11s-8.83-20.78-13.65-23.63c0,0,18.87-26.88-88.35-70.88Z"}),jsx("path",{fill:"#a9c2ff",d:"M232.18,905.87s13.01,20.03,5.59,44.42l-3.35-.91s3.25-26.86-3.56-40.37c-6.8-13.51,1.31-3.14,1.31-3.14Z"})]})]}),jsxs("g",{children:[jsx("path",{fill:"#cedfff",d:"M272.06,852.53s-39.7-22.55-21.17-53.16c0,0,14.82-18.79,30.7-23.63,0,0-8.47,45.64,0,46.72,8.47,1.07,5.82-51.55,5.82-51.55,0,0,41.82-20.4,58.23-18.79,0,0-25.94,44.57-17.47,43.49,8.47-1.07,37.58-46.18,37.58-46.18,0,0,42.88-8.05,49.76,17.72,6.88,25.77-4.23,38.66-10.59,40.27-6.35,1.61-47.11,1.07-46.05,6.44,1.06,5.37,28.58,13.96,43.94,9.13,0,0-16.94,42.42-39.17,40.27-22.23-2.15-29.11-16.11-42.88-17.18-13.76-1.07-23.82,2.69-16.94,6.44,6.88,3.76,30.17,1.23,41.29,10.82,11.12,9.59,20.12,15.49-.53,19.79-20.64,4.3-57.7,1.61-65.11-14.5l-7.41-16.11Z"}),jsxs("g",{children:[jsx("path",{fill:"#cedfff",d:"M395.93,775.21s-111.16,36.51-123.87,77.32c0,0,.53,18.26-10.59,39.2v8.05s11.65-27.39,18-31.14c0,0-24.88-35.44,116.46-93.43Z"}),jsx("path",{fill:"#cedfff",d:"M261.48,891.73s-17.14,26.41-7.37,58.55l4.41-1.2s-4.28-35.41,4.69-53.21c8.97-17.81-1.73-4.14-1.73-4.14Z"})]})]}),jsx("path",{fill:"#bbd3ff",d:"M270.72,1019.99c42.95,0,77.77-35.32,77.77-78.89H192.96c0,43.57,34.82,78.89,77.77,78.89Z"}),jsx("path",{fill:"#bbd3ff",d:"M349.57,1024.01H191.88c0-5.37,4.3-9.73,9.59-9.73h138.49c5.3,0,9.59,4.36,9.59,9.73h0Z"}),jsx("rect",{fill:"#80a1e6",height:"2.42",width:"159.86",y:"941.11",x:"190.4"})]}),jsx("path",{fill:"#768cee",d:"M801.19,578.05l-34.8,419.74s-3.65,25.44,15.01,25.49c30.68,.07,152.69,0,152.69,0,0,0-23.09-5.3-22.81-17.21,.33-14.05,40.67-431.99,40.67-431.99l-150.76,3.97Z"}),jsx("path",{fill:"#a9c2ff",d:"M945.58,1015.66c-6.03,.02-124.16,.22-154.03-.17-13.02-.16-15.3-11.74-15.41-19.24-.05-3.59,.4-6.25,.4-6.25l.9-10.91,2.31-27.81,2.04-24.57,2.62-31.57,2.2-26.64,24.73-298.26,150.76-3.97s-16.99,174.91-29.01,302.22c-1.34,14.19-2.62,27.79-3.8,40.48-.38,4.05-.75,8.02-1.11,11.88-1.11,12.05-2.13,23.11-3.02,32.88-.47,5.15-.9,9.93-1.29,14.31-1.53,17.17-2.43,28.13-2.44,30.22,0,1.22,.1,2.35,.29,3.4,2.47,13.38,21.59,13.98,23.86,13.98Z"}),jsx("polygon",{fill:"#a9c2ff",points:"435.05 349.47 519.82 694.86 531.43 742.16 570.91 903.04 1304.39 903.04 1158.87 349.47 435.05 349.47"}),jsx("polygon",{fill:"#768cee",points:"435.05 349.46 423.31 353.44 555.29 915.06 570.91 903.04 435.05 349.46"}),jsx("polygon",{fill:"#809bf5",points:"555.29 915.06 1284.26 915.06 1304.39 903.04 570.91 903.04 555.29 915.06"}),jsx("rect",{fill:"#a9c2ff",transform:"translate(1780.4 2038.92) rotate(180)",height:"7.61",width:"157.83",y:"1015.66",x:"811.28"}),jsx("polygon",{fill:"#899bfa",points:"928.99 915.05 928.18 920.87 779.74 951.29 781.78 926.72 782.75 915.05 928.99 915.05"}),jsx("g",{opacity:".5",children:jsx("path",{fill:"#899bfa",d:"M945.58,1015.66c-6.03,.02-124.16,.22-154.03-.17-13.02-.16-15.3-11.74-15.41-19.24l147.73-28.19c-1.53,17.17-2.43,28.13-2.44,30.22,0,1.22,.1,2.35,.29,3.4,2.47,13.38,21.59,13.98,23.86,13.98Z"})}),jsx("polygon",{fill:"#899bfa",points:"435.05 349.46 1158.87 349.46 1276.31 794.36 544.24 794.36 435.05 349.46"}),jsx("polygon",{fill:"#5158bf",points:"1242.18 775.08 564.46 775.08 540.24 677.22 530.87 639.35 527.05 623.91 502.16 523.34 500.87 518.1 487.71 464.94 481.83 441.15 476.81 420.86 472.71 404.31 465.03 373.3 1132.98 373.3 1141.41 404.31 1145.91 420.86 1151.42 441.15 1157.88 464.94 1200.47 621.65 1200.47 621.65 1204.08 634.93 1205.76 641.09 1235.16 749.28 1242.18 775.08"}),jsx("polygon",{fill:"#5d6cd2",points:"973.57 757.36 624.87 757.36 605.71 662.1 598.3 632.14 595.28 619.93 575.59 540.37 574.57 536.23 564.16 494.17 559.5 475.35 555.53 459.3 552.29 446.21 546.22 421.68 887.42 421.68 973.57 757.36"}),jsx("polygon",{fill:"#899bfa",points:"819.24 794.36 571.16 904.34 544.24 794.36 819.24 794.36"}),jsxs("g",{children:[jsx("path",{fill:"#2a3967",d:"M1384.19,552.09c.04-.99,.79-11.66,16.82-12.22,0,0-7.88,.95-9.24,4.47,0,0,5.37-4.34,9.74-2.95,4.37,1.4,6.94,9.16,6.96,11.72,.03,2.55-2.4,10.79-5.18,11.49-1.05,.27-2.26,.19-3.36,0,.74,1.17,1.46,2.46,2.15,3.9,6.4,13.32-.2,26.33-5.61,24.89-3.47-.92-4.45,5.09-4.45,5.09l-33.74-27.7s12.39-26.01,25.91-18.69Z"}),jsx("path",{fill:"#ffae73",d:"M1292.25,718.6c2.82,2.53,10.3-6.16,11.33-7.32,.05-.11,.11-.17,.11-.17l-2.28-6.44s-9.82-.38-11.44,1.27c-1.63,1.65-.81,9.96,2.28,12.65Z"}),jsx("path",{fill:"#25468f",d:"M1372.45,944.42l7.17,2.71s31.12-43.79,34.96-82.31c.68-6.88-.72-21.46-.19-24.57,.25-1.45,.55-3.2,.89-5.21,1.01-5.88,2.4-13.93,4-23.09,3.66-21.09,8.41-48.04,12.09-67.85l-1.93-.63-20.89-6.84-4.32-13.91-15.56-4.15s-3.47,6.9-6.58,39.47c-.57,4.27-1.09,8.98-1.49,14.09-1.21,15.6-1.3,34.94,1.48,57.06,.71,5.66,3.67,27.92,3.33,34.81-1.57,31.49-12.96,80.44-12.96,80.44Z"}),jsx("path",{fill:"#1e3865",d:"M1380.6,772.11l33.78,68.12c.25-1.45,.55-3.2,.89-5.21,1.01-5.88,2.4-13.93,4-23.09,3.66-21.09,8.41-48.04,12.09-67.85l-1.93-.63-20.89-6.84-4.32-13.91-15.56-4.15s-3.47,6.9-6.58,39.47c-.57,4.27-1.09,8.98-1.49,14.09Z"}),jsx("path",{fill:"#25468f",d:"M1395.46,727.29l.78-6.8c13.1,3.53,48.1-9.86,48.1-9.86,0,0,12.69,11.32,11.03,38.44-.81,13.24-2.3,69.5-3.85,86.15-.56,6.03,3.3,21.56,4.85,25.75,15.23,41.17-2.35,91.87-2.35,91.87l-4.56-1.87s-28.85-106.12-31.83-117.36c-5.63-21.25-10.15-48.9-13.17-70.25-.42,.02-9.01-36.08-9.01-36.08Z"}),jsx("path",{fill:"#ffae73",d:"M1385.52,648.37c22.52,1.25,17.57-32.81,16.2-32.63-2.76-1.46-7.7-8.55-10.56-20.41l-.97,.46-16.25,7.75s1.73,5.36,3,10.5c.99,4.02,1.71,7.9,1.11,8.98-1.28,.53-2.05,.86-2.05,.86,0,0,0,0,0,.02-.16,.42,3.52,24.15,9.53,24.48Z"}),jsx("path",{fill:"#f99352",d:"M1373.93,603.53s1.73,5.36,3,10.5c9.5-2.69,12.38-12.82,13.25-18.25l-16.25,7.75Z"}),jsx("path",{fill:"#ffae73",d:"M1371.93,609.21s22.73-5.34,19.23-19.64c-3.49-14.31-2.91-24.63-17.57-21.83-14.66,2.8-16.13,8.97-16.11,14.03,.02,5.06,8.45,28.46,14.45,27.44Z"}),jsx("path",{fill:"#2a3967",d:"M1356.2,573.64c2.44-5.19,5.32-4.91,7.12-3.99,10.68-10.02,21.15-1.83,21.15-1.83,4.03,9.88,12.77,13.92,12.77,13.92,0,0-3.49,3.63-13.61,3.55-3.09-.02-6.2-1.46-9.03-3.45,5.45,5.57,11.85,8.97,11.85,8.97-12.67-2.46-21.16-17.34-22.03-18.92-1.07,1.61-3.13,5.03-3.3,7.92-.23,3.93,1.1,11.55-1.12,11.84,0,0-7.47-10.23-3.8-18Z"}),jsx("path",{fill:"#1e3865",d:"M1427.51,956.62h36.09s.87-5.58-1.02-9.81c-1.81-4.06-4.64-5.91-3.96-10.82-2.29,2.4-6.03,5.08-11.25,4.37-.64,1.05-4.13,6.68-6.26,8.23-2.36,1.72-12.88,1.11-13.6,8.04Z"}),jsx("path",{fill:"#1e3865",d:"M1350.02,956.62h36.09s1.35-5.84-1.02-9.81c-2.1-3.52-1.29-5.52,.26-8.43-1.64,.68-3.75,1.3-6.08,1.16-1.8-.1-3.7-.93-5.37-1.91-1.55,1.8-8.2,9.44-10.28,10.96-2.36,1.72-12.88,1.11-13.6,8.04Z"}),jsx("path",{fill:"#899bfa",d:"M1445.02,667.38c-1.94-6.38-3.95-12.51-5.98-18.16-4.62-12.85-7.56-19.56-10.05-24.76-4.74-9.89-25.93-9.27-25.93-9.27-4.08,14.92-15.3,24.22-15.3,24.22-5.98-3.56-10.43-16.08-10.43-16.08l-13.09,7.06h0s-4.05,2.45-7.58,12.75c-5.25,15.32-13.77,37.08-19.68,43.73-1.38,1.55-5.42,3.9-10.31,6.39h0c-.11,.17-.19,.25-.24,.25,.32,.73,1.74,4.18,4.04,7.69,1.87,2.85,4.32,5.73,7.22,7.21,2.23-1.09,6.25-2.7,7.95-3.76,6.16-3.82,15.33-9.32,22.51-20.93l2,27.29,3.62,49.37c5.57,1.76,10.87,3.13,15.89,4.18,.33-4.14,1.65-9.09,1.65-9.09-.06,2.6,2.94,7.56,4.71,10.27,46.22,7.51,67.88-12.94,67.88-12.94-1.8-18.1-9.58-54.72-18.91-85.41Z"}),jsx("path",{fill:"#6f7deb",d:"M1398.39,612.43s3.84,.26,4.67,2.76c0,0-5.02,20.49-15.29,24.22l10.62-26.97Z"}),jsx("path",{fill:"#6f7deb",d:"M1387.77,639.4s-9.82-17.97-9.78-20.4c0,0-3.73,3.35-3.49,5.85,0,0,8.27,13.43,13.26,14.55Z"}),jsx("path",{fill:"#6f7deb",d:"M1414.09,632.11c-.28,.97-20.31,49.54-38.28,67.44-7.87,7.84,17.2,5.57,17.44,4.12,.24-1.46,20.84-71.56,20.84-71.56Z"}),jsx("path",{fill:"#6f7deb",d:"M1370.8,712.54l1.71,27.4c54.8-12.91,50.2-101.44,50.2-101.44l-27.52,57.64-24.15,16.01s-.09,.14-.25,.39Z"}),jsx("path",{fill:"#a9c2ff",d:"M1326.37,693.41c.01,.06,.04,.09,.07,.09-.02-.04-.03-.08-.04-.1-.04-.09-.05-.09-.03,.01Z"}),jsxs("g",{children:[jsx("path",{fill:"#ff912b",d:"M1353.48,655.68l10.91,49.33c1.74,7.86-4.13,14.22-13.1,14.22h-262c-8.97,0-17.65-6.37-19.39-14.22l-10.91-49.33c-.07-.3-.12-.6-.16-.9-1.13-7.44,4.63-13.32,13.26-13.32h262c8.63,0,16.99,5.88,19.15,13.32,.1,.3,.17,.6,.24,.9Z"}),jsxs("g",{children:[jsxs("g",{children:[jsx("polygon",{fill:"#e8f2fa",points:"1089.87 697 1087.3 697 1080.51 666.3 1083.08 666.3 1089.87 697"}),jsx("polygon",{fill:"#e8f2fa",points:"1107.58 678.97 1089.17 678.97 1087.24 670.28 1105.66 670.28 1107.58 678.97"}),jsx("polygon",{fill:"#e8f2fa",points:"1116.16 691.42 1091.92 691.42 1090 682.74 1114.24 682.74 1116.16 691.42"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#e8f2fa",points:"1148.77 697 1146.2 697 1139.41 666.3 1141.98 666.3 1148.77 697"}),jsx("polygon",{fill:"#e8f2fa",points:"1152.7 678.97 1134.29 678.97 1132.37 670.28 1150.78 670.28 1152.7 678.97"}),jsx("polygon",{fill:"#e8f2fa",points:"1158.37 691.42 1134.13 691.42 1132.21 682.74 1156.45 682.74 1158.37 691.42"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#e8f2fa",points:"1207.67 697 1205.1 697 1198.31 666.3 1200.88 666.3 1207.67 697"}),jsx("polygon",{fill:"#e8f2fa",points:"1197.82 678.97 1179.4 678.97 1177.48 670.28 1195.89 670.28 1197.82 678.97"}),jsx("polygon",{fill:"#e8f2fa",points:"1200.57 691.42 1176.33 691.42 1174.41 682.74 1198.65 682.74 1200.57 691.42"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#e8f2fa",points:"1245.35 668.78 1215.1 668.78 1214.52 666.18 1244.78 666.18 1245.35 668.78"}),jsx("polygon",{fill:"#e8f2fa",points:"1228.12 671.23 1232.26 689.91 1223.69 689.91 1219.56 671.23 1228.12 671.23"}),jsx("polygon",{fill:"#e8f2fa",points:"1240.4 671.23 1245.84 695.82 1237.28 695.82 1231.84 671.23 1240.4 671.23"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#e8f2fa",points:"1292.98 682.95 1262.72 682.95 1262.14 680.35 1292.4 680.35 1292.98 682.95"}),jsx("polygon",{fill:"#e8f2fa",points:"1272.86 672.31 1276.99 690.99 1268.42 690.99 1264.29 672.31 1272.86 672.31"}),jsx("polygon",{fill:"#e8f2fa",points:"1284.48 669.36 1289.92 693.94 1281.35 693.94 1275.91 669.36 1284.48 669.36"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#e8f2fa",points:"1340.63 697.23 1310.37 697.23 1309.79 694.63 1340.05 694.63 1340.63 697.23"}),jsx("polygon",{fill:"#e8f2fa",points:"1317.78 673.28 1321.91 691.96 1313.34 691.96 1309.21 673.28 1317.78 673.28"}),jsx("polygon",{fill:"#e8f2fa",points:"1328.74 667.37 1334.18 691.96 1325.62 691.96 1320.18 667.37 1328.74 667.37"})]})]})]}),jsxs("g",{children:[jsx("path",{fill:"#ffae73",d:"M1327.16,714.82c2.99-.01,7.7-.22,10.42-1.28,0,0-8.7-.13-6.85-2.92,.34-.51,4.66-.12,9.49-.12,1.98,0,6.88,2.75,6.62,2.88,3.5-.47,6.68-1.16,7.71-1.38,.27-.06,.38-.11,.38-.11l3.09,9.13s-.65,.16-1.79,.38c-2.87,.72-8.79,2.26-14.37,4.46-7.81,3.14-13.55-.76-16.16-3.52-1.65-1.75-2.95-4.07-2.86-5.75,.1-1.84,2.5-1.76,4.32-1.77Z"}),jsx("path",{fill:"#ffae73",d:"M1348.16,715.52l1.9,7.04s2.39-.44,6.18-1.16c1.14-.22,1.79-.39,1.79-.39,3.04-.6,6.67-1.43,10.63-2.31h.06c6.78-1.65,14.37-3.63,20.77-5.83,.57-.2,1.14-.41,1.69-.61,3.78-1.42-3.53-20.9-6.84-18.47-.88,.65-1.82,1.31-2.8,1.99-5.49,3.78-12.47,7.99-18.67,11.54-3.04,1.76-5.91,3.36-8.3,4.68-3.85,2.14-6.4,3.52-6.4,3.52Z"}),jsx("path",{fill:"#899bfa",d:"M1381.53,695.79s-.4,13.3,11.88,19.77c14.19-5.2,21.78-26.66,27.64-41.4,.81-2.03,1.57-4.07,2.33-6.05,2.71-7.37,4.88-14.63,6.18-20.91,.81-3.74-14.97-22.61-16.97-18.15-3.09,7.09-6.34,16.28-9.38,25.41-1.68,5.01-3.31,10.01-4.94,14.63-.92,2.8-1.85,5.44-2.71,7.86-1.68,4.62-3.2,8.36-4.55,10.73-.87,1.54-3.36,3.69-6.67,6.11-.88,.65-1.82,1.31-2.8,1.99Z"})]})]}),jsx("polygon",{fill:"#3c4aaa",points:"1141.41 404.31 472.71 404.31 465.03 373.3 1132.98 373.3 1141.41 404.31"}),jsxs("g",{children:[jsx("path",{fill:"#e8f2fa",d:"M506.59,389.09c.87,2.78-.86,5.05-3.87,5.07-3.01,.02-6.16-2.22-7.03-4.99-.87-2.78,.86-5.05,3.87-5.07,3.01-.02,6.16,2.21,7.03,4.99Z"}),jsx("path",{fill:"#e8f2fa",d:"M529.14,388.93c.87,2.78-.86,5.05-3.87,5.07-3.01,.02-6.16-2.21-7.03-4.99-.87-2.78,.86-5.05,3.87-5.07,3.01-.02,6.16,2.21,7.03,4.99Z"}),jsx("path",{fill:"#e8f2fa",d:"M551.69,388.77c.87,2.78-.86,5.05-3.87,5.07-3.01,.02-6.16-2.21-7.03-4.99-.87-2.78,.86-5.05,3.87-5.07,3.01-.02,6.16,2.21,7.03,4.99Z"})]}),jsx("path",{fill:"#ff912b",d:"M559.5,475.35s78.71,.3,135.79,44.69c57.08,44.39,48.85,84.22,96.21,94.2,77.61,16.36,29.43-67.66,130.21-58.92l51.86,202.04h-348.7l-26.57-125.21-38.8-156.79Z"}),jsx("path",{fill:"#fff",d:"M809.47,617.1c-5.34,0-11.34-.72-18.11-2.15-26.14-5.51-35.78-20.39-47.98-39.22-10.11-15.61-22.69-35.03-48.52-55.11-16.21-12.61-44.82-29.59-89.01-38.86-26.44-5.54-46.15-5.68-46.35-5.68v-1.46c.2,0,20.06,.14,46.64,5.72,24.54,5.15,60,16.11,89.59,39.13,26.02,20.24,38.68,39.77,48.85,55.47,12.49,19.28,21.51,33.21,47.07,38.59,36.4,7.67,44.63-6.84,54.16-23.64,10.62-18.71,22.66-39.93,75.97-35.3l-.12,1.45c-52.41-4.55-64.2,16.24-74.6,34.58-4.82,8.5-9.38,16.53-17.46,21.49-5.44,3.34-12.02,4.99-20.12,4.99Z"}),jsx("path",{fill:"#fc7400",d:"M577.88,549.18l20.01,80.88,26.98,127.29h348.7l-17.58-66.1s-51.62-29.18-121.62-3.75c-70,25.44-147.49,1.96-152.48-55.25-5.62-64.51-64.06-95.58-104.01-83.08Z"}),jsx("path",{fill:"#fff",d:"M665.98,587.45c-20.04-31.44-57-47.24-87.89-37.57l-.42-1.39c31.49-9.85,69.13,6.2,89.52,38.17l-1.21,.79Z"}),jsxs("g",{children:[jsx("polygon",{fill:"#fff",points:"795.85 620.61 784.52 619.43 785.69 607.94 797.02 609.12 795.85 620.61"}),jsx("polygon",{fill:"#fff",points:"892.8 636.61 701.9 596.39 702.28 594.51 893.18 634.73 892.8 636.61"}),jsx("path",{fill:"#fff",d:"M698.84,595.11c.19-1.82,1.79-3.15,3.59-2.96,1.8,.19,3.1,1.82,2.92,3.64s-1.79,3.15-3.59,2.96c-1.8-.19-3.1-1.82-2.92-3.64Z"}),jsx("path",{fill:"#fff",d:"M889.74,635.33c.19-1.82,1.79-3.15,3.59-2.96,1.8,.19,3.1,1.82,2.92,3.64-.19,1.82-1.79,3.15-3.59,2.96-1.8-.19-3.1-1.82-2.92-3.64Z"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#fff",points:"656.9 504.31 648.61 496.38 656.42 487.98 664.71 495.9 656.9 504.31"}),jsx("polygon",{fill:"#fff",points:"687.13 528 622.39 462.58 623.73 461.23 688.46 526.64 687.13 528"}),jsx("path",{fill:"#fff",d:"M620.52,459.81c1.14-1.42,3.2-1.64,4.6-.49,1.4,1.15,1.62,3.24,.48,4.67-1.14,1.42-3.2,1.64-4.6,.49-1.4-1.15-1.62-3.24-.48-4.67Z"}),jsx("path",{fill:"#fff",d:"M685.26,525.23c1.14-1.42,3.2-1.64,4.6-.49s1.62,3.24,.48,4.67c-1.14,1.42-3.2,1.64-4.6,.49-1.4-1.15-1.62-3.24-.48-4.67Z"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#fff",points:"882.44 557.53 877.99 568.16 867.5 563.65 871.96 553.01 882.44 557.53"}),jsx("polygon",{fill:"#fff",points:"863.91 587.74 862.2 586.94 886.44 533.18 888.16 533.98 863.91 587.74"}),jsx("path",{fill:"#fff",d:"M862,590.48c-1.71-.59-2.63-2.47-2.05-4.21,.58-1.74,2.44-2.66,4.15-2.08,1.71,.59,2.63,2.47,2.05,4.21-.58,1.74-2.44,2.66-4.15,2.08Z"}),jsx("path",{fill:"#fff",d:"M886.25,536.72c-1.71-.59-2.63-2.47-2.05-4.21,.58-1.74,2.44-2.66,4.15-2.08,1.71,.59,2.63,2.47,2.05,4.21-.58,1.74-2.44,2.66-4.15,2.08Z"})]}),jsxs("g",{children:[jsx("path",{fill:"#cedfff",d:"M933.58,440.32l17.72,74.3c.76,3.18-2.2,5.76-6.61,5.76h-182.3c-4.41,0-8.6-2.58-9.35-5.76l-17.72-74.3c-.76-3.18,2.2-5.76,6.61-5.76h182.3c4.41,0,8.59,2.58,9.35,5.76Z"}),jsxs("g",{children:[jsxs("g",{children:[jsx("polygon",{fill:"#25468f",points:"781.52 483.78 762.12 483.78 757.43 464.1 776.83 464.1 781.52 483.78"}),jsx("polygon",{fill:"#25468f",points:"793.57 493.62 774.17 493.62 769.47 473.94 788.88 473.94 793.57 493.62"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#25468f",points:"826.82 483.78 807.42 483.78 802.72 464.1 822.12 464.1 826.82 483.78"}),jsxs("g",{children:[jsx("polygon",{fill:"#6b98f6",points:"838.87 493.62 819.47 493.62 814.77 473.94 834.17 473.94 838.87 493.62"}),jsx("path",{fill:"#183a76",d:"M839.9,494.47h-21.06l-5.1-21.36h21.06l5.1,21.36Zm-19.8-1.68h17.75l-4.29-18h-17.75l4.29,18Z"})]})]}),jsxs("g",{children:[jsx("polygon",{fill:"#6b98f6",points:"872.12 483.78 852.71 483.78 848.02 464.1 867.42 464.1 872.12 483.78"}),jsx("path",{fill:"#25468f",d:"M873.14,484.62h-21.06l-5.1-21.36h21.06l5.1,21.36Zm-19.8-1.68h17.75l-4.29-18h-17.75l4.29,18Z"}),jsx("polygon",{fill:"#6b98f6",points:"884.16 493.62 864.76 493.62 860.07 473.94 879.47 473.94 884.16 493.62"}),jsx("path",{fill:"#25468f",d:"M885.19,494.47h-21.06l-5.1-21.36h21.06l5.1,21.36Zm-19.8-1.68h17.75l-4.29-18h-17.75l4.29,18Z"}),jsx("polygon",{fill:"#25468f",points:"873.14 484.58 861.71 484.58 858.97 473.1 870.4 473.1 873.14 484.58"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#25468f",points:"917.41 483.78 898.01 483.78 893.31 464.1 912.72 464.1 917.41 483.78"}),jsx("polygon",{fill:"#25468f",points:"929.46 493.62 910.06 493.62 905.36 473.94 924.77 473.94 929.46 493.62"}),jsx("polygon",{fill:"#6b98f6",points:"916.86 483.31 907.97 483.31 905.84 474.37 914.73 474.37 916.86 483.31"})]})]})]}),jsxs("g",{children:[jsx("path",{fill:"#3c4aaa",d:"M429.21,674.95h-67.18c-8.96,0-17.83-7.37-19.81-16.46l-50.55-231.5c-1.98-9.09,3.67-16.46,12.63-16.46h67.18c8.96,0,17.83,7.37,19.81,16.46l50.55,231.5c1.98,9.09-3.67,16.46-12.63,16.46Z"}),jsx("rect",{fill:"#a9c2ff",height:".44",width:"99.62",y:"462.59",x:"299.49"}),jsx("rect",{fill:"#a9c2ff",height:".44",width:"99.63",y:"517.14",x:"311.4"}),jsx("rect",{fill:"#a9c2ff",height:".44",width:"99.63",y:"571.69",x:"323.31"}),jsx("path",{fill:"#fff",d:"M360.43,446.51c.13-1.17-5.02-21.24-5.02-21.24l18.26,15.01-8.97-.32-4.27,6.56Z"}),jsx("path",{fill:"#cedfff",d:"M415.47,651.23h-35.38l-7.83-35.84h35.38l7.83,35.84Zm-33.8-2h31.35l-6.95-31.85h-31.35l6.95,31.85Z"}),jsx("polygon",{fill:"#ff7536",points:"390.05 630.85 356.68 630.85 349.29 597 382.66 597 390.05 630.85"}),jsx("polygon",{fill:"#ff7536",points:"382 651.12 379.75 649.34 405.73 615.5 407.98 617.27 382 651.12"}),jsxs("g",{children:[jsx("path",{fill:"#cedfff",d:"M315.51,446.51c.13-1.17-5.02-21.24-5.02-21.24l18.26,15.01-8.97-.32-4.27,6.56Z"}),jsxs("g",{children:[jsx("polygon",{fill:"#cedfff",points:"322.59 486.27 319.9 486.27 318.83 481.4 337.08 481.4 338.1 486.08 335.41 486.08 334.99 484.13 322.12 484.13 322.59 486.27"}),jsx("polygon",{fill:"#cedfff",points:"332.96 498.16 330.27 498.16 326.91 482.76 329.6 482.76 332.96 498.16"}),jsx("polygon",{fill:"#cedfff",points:"335.38 499.13 328.28 499.13 327.68 496.4 334.79 496.4 335.38 499.13"})]}),jsx("polygon",{fill:"#cedfff",points:"371.78 500.83 369.35 499.06 382.17 478.6 384.6 480.37 371.78 500.83"}),jsxs("g",{children:[jsx("path",{fill:"#cedfff",d:"M340.97,548.52c-5.13,0-10.23-4.24-11.37-9.44-1.14-5.21,2.11-9.44,7.25-9.44s10.23,4.24,11.37,9.44c1.14,5.21-2.11,9.44-7.25,9.44Zm-3.58-16.39c-3.78,0-6.17,3.12-5.33,6.95,.84,3.83,4.59,6.95,8.37,6.95s6.17-3.12,5.33-6.95c-.84-3.83-4.59-6.95-8.37-6.95Z"}),jsx("path",{fill:"#cedfff",d:"M358.69,556.72c-.32,0-.67-.13-.97-.38l-12.38-10.57c-.58-.5-.74-1.28-.36-1.76,.38-.48,1.17-.46,1.75,.03l12.38,10.57c.58,.5,.74,1.28,.36,1.76-.19,.23-.47,.35-.78,.35Z"})]}),jsx("polygon",{fill:"#cedfff",points:"385.5 528.76 390.11 537.32 398.98 537.32 392.96 542.61 397.57 551.16 389.24 545.87 383.22 551.16 384.09 542.61 375.76 537.32 384.63 537.32 385.5 528.76"})]})]}),jsxs("g",{children:[jsx("path",{fill:"#fa8b79",d:"M1241.96,453.88s.24,13.48-1.75,13.23c-1.99-.25-4.7-11.3-4.72-11.14-.02,.17,.9,11.62-1.6,12.19-2.51,.57-5.05-12.13-5.05-12.13,0,0,1.68,10.9-.08,11.19-1.76,.29-4.54-10.28-5.27-10.31-.73-.03,2.34,9.06,.19,9.53-2.15,.46-6.94-12.33-5.32-13.96,1.62-1.63,4.15,.11,4.15,.11,0,0,3.12-2.35,5.52-1.02,0,0,5.62-1.14,7.31,1.39,0,0,3.51-3.06,6.61,.91Z"}),jsxs("g",{children:[jsx("path",{fill:"#cedfff",d:"M1278.23,402.24l45.59,166.75c1.95,7.13-2.5,12.92-9.94,12.92h-307.72c-7.44,0-15.05-5.78-17-12.92l-45.59-166.75c-1.95-7.13,2.5-12.92,9.94-12.92h307.72c7.44,0,15.05,5.78,17,12.92Z"}),jsxs("g",{children:[jsx("polygon",{fill:"#b0c0ff",points:"1038.92 477.47 999.17 477.47 988.15 437.16 1027.89 437.16 1038.92 477.47"}),jsx("polygon",{fill:"#5158bf",points:"1026.48 467.6 1006.21 467.6 1000.59 447.03 1020.86 447.03 1026.48 467.6"}),jsx("polygon",{fill:"#ff7536",points:"1000.44 478.4 997.91 476.54 1026.63 436.23 1029.16 438.08 1000.44 478.4"}),jsx("polygon",{fill:"#ff7536",points:"1010.63 455.62 970.89 455.62 959.87 415.3 999.61 415.3 1010.63 455.62"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#ff7536",points:"1033.21 525.04 1001.26 525.04 992.4 492.63 1024.35 492.63 1033.21 525.04"}),jsx("polygon",{fill:"#fc7600",points:"1064.86 525.04 1032.91 525.04 1024.05 492.63 1056 492.63 1064.86 525.04"}),jsx("polygon",{fill:"#ff8111",points:"1096.81 525.04 1064.86 525.04 1056 492.63 1087.95 492.63 1096.81 525.04"}),jsx("polygon",{fill:"#6b98f6",points:"1128.76 525.04 1096.81 525.04 1087.95 492.63 1119.9 492.63 1128.76 525.04"}),jsx("polygon",{fill:"#899bfa",points:"1160.71 525.04 1128.76 525.04 1119.9 492.63 1151.85 492.63 1160.71 525.04"}),jsx("polygon",{fill:"#697ee3",points:"1192.66 525.04 1160.71 525.04 1151.85 492.63 1183.8 492.63 1192.66 525.04"}),jsx("polygon",{fill:"#5158bf",points:"1224.61 525.04 1192.66 525.04 1183.8 492.63 1215.75 492.63 1224.61 525.04"}),jsx("polygon",{fill:"#25468f",points:"1256.56 525.04 1224.61 525.04 1215.75 492.63 1247.7 492.63 1256.56 525.04"}),jsx("polygon",{fill:"#a1b3ff",points:"1042.07 557.45 1010.12 557.45 1001.26 525.04 1033.21 525.04 1042.07 557.45"}),jsx("polygon",{fill:"#899bfa",points:"1073.72 557.45 1041.77 557.45 1032.91 525.04 1064.86 525.04 1073.72 557.45"}),jsx("polygon",{fill:"#5158bf",points:"1105.67 557.45 1073.72 557.45 1064.86 525.04 1096.81 525.04 1105.67 557.45"}),jsx("polygon",{fill:"#25468f",points:"1137.62 557.45 1105.67 557.45 1096.81 525.04 1128.76 525.04 1137.62 557.45"})]}),jsx("path",{fill:"#ff8111",d:"M1258.13,429.21h-167.36c-2.3,0-4.7-1.91-5.34-4.24h0c-.64-2.33,.72-4.24,3.02-4.24h167.36c2.3,0,4.7,1.91,5.34,4.24h0c.64,2.33-.72,4.24-3.02,4.24Z"}),jsx("path",{fill:"#6b98f6",d:"M1263.98,450.63h-167.36c-2.3,0-4.7-1.91-5.34-4.24h0c-.64-2.33,.72-4.24,3.02-4.24h167.36c2.3,0,4.7,1.91,5.34,4.24h0c.64,2.33-.72,4.24-3.02,4.24Z"}),jsx("path",{fill:"#5158bf",d:"M1269.84,472.05h-167.36c-2.3,0-4.7-1.91-5.34-4.24h0c-.64-2.33,.72-4.24,3.02-4.24h167.36c2.3,0,4.7,1.91,5.34,4.24h0c.64,2.33-.72,4.24-3.02,4.24Z"}),jsxs("g",{children:[jsx("path",{fill:"#5158bf",d:"M1062.31,418.73h5.04c2.65,0,4.59,1.44,5.2,3.65,.51,1.88-.29,3.01-1.75,3.47l4.24,4.34h-2.34l-3.9-4h-2.45l1.09,4h-1.99l-3.14-11.47Zm6.45,5.68c1.42,0,2.12-.75,1.79-1.95-.34-1.23-1.39-1.9-2.86-1.9h-2.89l1.05,3.85h2.91Z"}),jsx("path",{fill:"#5158bf",d:"M1068.12,446.11c-.88-3.21,.8-5.93,4.21-5.93,1.97,0,3.33,.56,4.77,1.56l-.84,1.52c-1.08-.75-2.06-1.23-3.5-1.23-2.08,0-3.16,1.85-2.55,4.08,.64,2.36,2.65,4.1,4.96,4.1,1.07,0,1.94-.34,2.49-.87l-.59-2.15h-2.89l-.48-1.75h4.81l1.32,4.82c-.85,.97-2.23,1.79-4.23,1.79-3.54,0-6.56-2.56-7.48-5.93Z"}),jsx("path",{fill:"#5158bf",d:"M1074.44,463.09h5.07c1.29,0,2.41,.36,3.23,1.02,.64,.51,1.07,1.13,1.29,1.93,.38,1.38-.2,2.11-.92,2.56,1.45,.46,2.58,1.23,3.01,2.82,.56,2.05-.8,3.15-3.32,3.15h-5.23l-3.14-11.47Zm5.99,4.83c1.28,0,1.99-.51,1.7-1.59-.25-.9-1.11-1.46-2.38-1.46h-2.86l.83,3.05h2.71Zm1.91,4.85c1.36,0,2.03-.54,1.74-1.61-.26-.97-1.18-1.54-2.75-1.54h-3.15l.86,3.15h3.29Z"})]})]})]}),jsxs("g",{children:[jsxs("g",{children:[jsx("path",{fill:"#ffae73",d:"M640.44,422.49c-.89,1.03-1,2.18-.56,3.41,0,0,0,.01,0,.02,.81,2.27,3.49,4.81,6.6,7.35,.4,.33,.75,.62,1.06,.9,.08,.07,.16,.14,.24,.22,.06,.06,.12,.11,.18,.17,2.9,2.71,1.81,3.34,7.03,8.85,5.95,6.28,10.04,6.39,11.21,5.82,.99-.49-1.02-3.82-3.23-7.56-.11-.18-.21-.36-.32-.55-.3-.5-.59-1-.88-1.5-2.6-4.5-1.93-6.62-1.32-13.32,.5-5.45,8.35-30.42,8.35-30.42l-11.4-1.99s-3.43,19.89-7.21,22.95c-2.02,1.63-4.29,1.65-6.23,2.86-.14,.08-.27,.17-.4,.26-1.1,.74-2.23,1.51-3.12,2.54Z"}),jsx("path",{fill:"#1e3865",d:"M640.44,422.49c-.89,1.03-1,2.18-.56,3.41,0,0,0,.01,0,.02,.99,2.27,3.61,4.8,6.62,7.33,.39,.33,.74,.64,1.05,.92,.08,.07,.16,.14,.24,.22,.06,.06,.12,.11,.18,.17,2.9,2.71,1.81,3.34,7.03,8.85,5.95,6.28,10.04,6.39,11.21,5.82,.99-.49-1.02-3.82-3.23-7.56-1.16-.43-6.54-2.65-10.6-7.92-3.45-4.47-5.79-10.16-8.14-13.65-.26-.05-.41-.08-.67-.13-1.1,.74-2.23,1.51-3.12,2.54Z"}),jsx("path",{fill:"#ffae73",d:"M732.33,415.27c.7,3.57,5.72,2.97,11.32,1.58,5.6-1.39,4.27,.26,12.24-.63,7.97-.9,10.39-3.91,10.63-5.11,.22-1.07-3.72-1.44-7.95-1.94-.53-.06-1.07-.13-1.6-.19-4.77-.61-8.26-3.73-12.6-6.29-4.1-2.43-10.23-12.33-10.23-12.33l-10.93,.88s5.74,8.84,7.96,12.68c1.31,2.26,1.24,5.25,1.07,7.56-.08,1.25-.17,2.54,.08,3.79Z"}),jsx("path",{fill:"#1e3865",d:"M743.65,416.85c5.6-1.39,4.27,.26,12.24-.63,7.97-.9,10.39-3.91,10.63-5.11,.22-1.07-3.72-1.44-7.95-1.94l-.04,.08s-4.78,3.44-11.42,3.6c-5.41,.13-11.14-1.44-14.87-1.38-.08,1.25-.17,2.54,.08,3.79,.7,3.57,5.72,2.97,11.32,1.58Z"}),jsx("path",{fill:"#f28018",d:"M690.43,344.35l-10.22,27.9-13.34,36.43s-3.62,.35-7.09-.66c-3.19-.94-6.86-3.39-6.86-3.39,0,0,3.71-39.12,10.62-61.57,1.77-5.76,3.76-10.43,5.95-13.05,10.72-12.85,20.95,14.33,20.95,14.33Z"}),jsx("path",{fill:"#ff912b",d:"M680.04,300.04c-5.82-1.9-21-.03-37.47,2.99-4.55,.84-9.14-1.27-11.53-5.28h0l-41.44-3.28s-13.68,30.76-6.19,50.36c1.1,2.88,3.52,4.68,7.24,4.74h0s25.04,.04,33.05,.04c20.61,0,43.62-14.37,46.59-14.97,4.87-.99,6.82,8.89,11.69,19.27,4.87,10.38,45.79,45.96,45.79,45.96,0,0,6.29,.06,8.89-.92,2.79-1.06,3.82-2.44,3.82-2.44,0,0-45.34-91.51-60.45-96.45Z"}),jsx("path",{fill:"#10294c",d:"M626.64,174.3c-3.08-1.86-6.08-2.14-7.92-2.09-1.28,.04-2.56-.05-3.82-.23-15.82-2.35-25.34,20.95-25.9,27.99-1.02,12.93-7.77,14.9-17.26,23-19.03,16.23-13.45,35.1-3.04,42.11,6.24,4.21,17.25,0,17.25,0,.16,.11,30.09-16.98,44.85-25.22,22.12-3.19,4.73-60.19-4.16-65.55Z"}),jsx("path",{fill:"#ffae73",d:"M618.43,232.84c.06,.04-7.26,2.58-12.16,.38-4.61-2.07-8.1-9.76-8.03-9.76,2.1-.1,4.4-1.96,6.17-14.16l.89,.32,15.01,5.48s-1.09,4.89-1.79,9.54c-.59,3.91-.91,7.65-.09,8.2Z"}),jsx("path",{fill:"#f9924f",d:"M620.31,215.1s-.6,2.64-1.47,7.56c-8.62-1.57-12.32-8.31-13.54-13.04l15.01,5.48Z"}),jsx("path",{fill:"#ffae73",d:"M622.54,219.95s-20.53-2.8-18.62-15.74c1.91-12.95,.55-22.02,13.74-20.79,13.19,1.24,15,6.56,15.4,11.04,.4,4.48-5.13,25.88-10.52,25.49Z"}),jsx("path",{fill:"#10294c",d:"M632.32,187.37s-13.15,11.49-22.09,12.42c-8.94,.93-12.33-1.98-12.33-1.98,0,0,5.27-4.44,8.44-11.6,.93-2.11,2.91-3.56,5.18-3.76,6.38-.56,18.49-.81,20.79,4.93Z"}),jsx("path",{fill:"#10294c",d:"M624.1,186.34s4.4,4.31,5.78,7.51c1.34,3.09,1.74,10.47,.67,13.4,0,0,6.85-13.51,2.97-20.08-4.11-6.96-9.43-.84-9.43-.84Z"}),jsx("path",{fill:"#899bfa",d:"M635.72,263.52c-.62,42.17-.17,33.35-4.72,37.36-1.1,.96-4.18,1.54-8.23,1.81-12.75,.86-35.15-1.27-36-3.66-2.94-8.27-.86-10.84-3.32-23.49-.26-1.35-.57-2.8-.94-4.39-2.05-8.69-4.04-11.65,3.22-25.62,6.58-12.65,13.42-22.92,14.03-22.55,17.36,10.45,18.76,1.67,18.76,1.67,0,0,17.51,18.31,17.2,38.88Z"}),jsx("path",{fill:"#ff912b",d:"M680.21,372.25l-13.34,36.43s-3.62,.35-7.09-.66c-3.19-.94-6.86-3.39-6.86-3.39,0,0,3.71-39.12,10.62-61.57l16.67,29.18Z"}),jsx("path",{fill:"#899bfa",d:"M618.52,224.64s17.86,3.07,19.96,10.87c2.1,7.8,9,55.16,9,55.16,0,0-5.04,4.99-9.23,.73-4.19-4.26-13.2-44.31-13.2-44.31l-6.53-22.46Z"}),jsx("path",{fill:"#6f7deb",d:"M622.77,302.69c-12.75,.86-35.15-1.27-36-3.66-2.94-8.27-.86-10.84-3.32-23.49l6.15-17.56s-1.02,19.55,4.67,24.7c5.68,5.14,23.28,9.93,26.04,14.23,1.33,2.06,2.21,4.13,2.47,5.79Z"}),jsx("path",{fill:"#ffae73",d:"M608.17,294.46s12.57-2.84,14.6-1.71c2.03,1.13,6.99,5.25,7.61,6.69,.62,1.43-4.52-1.09-6.19-1.54-1.08-.29-3.93,.71-5.34,1.19-5.93,2.01-9.57,.97-9.57,.97l-1.11-5.6Z"}),jsx("path",{fill:"#899bfa",d:"M599.74,222.97s-16.88,1.05-22.73,9.32c-8.23,11.64-24.55,61.25-15.2,67.87,10.53,7.45,47.95,1.95,47.95,1.95,0,0,1.24-5.9-.49-8.76-1.73-2.86-29.88-7.47-31.18-8.79-1.3-1.32,16.24-25.7,16.24-29.65s5.41-31.95,5.41-31.95Z"}),jsx("path",{fill:"#ffae73",d:"M623.38,296.31s2.63,3.45,3.5,3.86c.86,.41,1.42,.31,1.42,.31l-1.78-3.24-3.14-.93Z"}),jsx("path",{fill:"#ffae73",d:"M622.77,292.76l7.66,3.77s-.33,.54-1.27,.5c-.94-.04-3.32-.93-3.32-.93l-3.07-3.34Z"})]}),jsxs("g",{children:[jsx("polygon",{fill:"#10294c",points:"688.18 301.63 608.17 301.63 608.17 303.42 687.47 303.42 688.18 301.63"}),jsx("polygon",{fill:"#10294c",points:"626.88 303.42 687.47 303.42 705.7 257.44 645.2 257.44 626.88 303.42"}),jsx("path",{fill:"#e8f2fa",d:"M672.18,280.43c.46-1.62-.46-2.93-2.06-2.93s-3.26,1.31-3.71,2.93,.46,2.93,2.06,2.93,3.26-1.31,3.71-2.93Z"})]})]}),jsx("polygon",{fill:"#fff",points:"666.18 584.13 672.4 589.62 666.99 595.92 660.77 590.43 666.18 584.13"}),jsxs("g",{children:[jsx("path",{fill:"#f28018",d:"M586.7,695.57c-1.24-4.18-1.86-4.55-1.86-4.55,0,0-38.53,4.87-45.07,4.44-3.88-.25-50.15-15.91-50.15-15.91l-28.09,27.33s69.67,11.64,79.49,10.88c16.23-1.26,41-15.79,41-15.79,0,0,5.65-3.12,4.67-6.4Z"}),jsx("path",{fill:"#104c82",d:"M481.4,1007.55s.54,13.24,3.05,16.46l34.88,.2c-.24-1.37-.39-4.52-5.21-5.38-6.09-1.08-13.25-5.39-16.94-13.56-3.88-8.6-15.77,2.27-15.77,2.27Z"}),jsx("path",{fill:"#104c82",d:"M412.95,1005.64s-2.43,17.59,.87,17.9c.44,.04,14.05,.26,19.95,.36,6.93,.12,18.33-.13,18.33-.13,1.43,.06,2.37-1.51,1.64-2.77-.8-1.37-2.33-2.84-5.24-3.41-6.07-1.19-16.2-5.71-19.74-13.95-3.73-8.66-15.8,1.99-15.8,1.99Z"}),jsx("path",{fill:"#6f7deb",d:"M499.53,825.34s-9.7,34.42-37.49,94.2c-27.79,59.78-29,88.58-29,88.58,0,0-4.21,1.51-9.79,.91-6.04-.65-10.3-3.39-10.3-3.39,0,0,1.8-71.15,14.93-101.31,13.13-30.17,15.8-112.71,15.8-112.71l55.84,33.73Z"}),jsx("path",{fill:"#899bfa",d:"M515.1,795.72s.77,53.3-8.32,118.75c-9.09,65.44-4.84,95.88-4.84,95.88,0,0-2.41,1.78-9.82,1.75-8.68-.03-13.12-3.67-13.12-3.67,0,0-13.01-65.47-9.28-98.23,3.73-32.76-17.82-112.4-17.82-112.4l63.2-2.08Z"}),jsx("path",{fill:"#ffae73",d:"M493.98,662.86c-.09,4.18-.64,8.74-2.29,10.97l-9.25,4.93-10.26-7.71s3.76-8.46,2.84-20.82c-.09-.74-.46-5.48-.46-5.58l5.13,2.6,13.93,7.06s0,.28,.09,.65c.09,1.4,.28,4.46,.28,7.9Z"}),jsx("path",{fill:"#ff912b",d:"M442.72,802.31c3.36,15.58,75.23,8.74,74.29-.77-.04-.32-.22-4.72-.48-10.65-.54-12.83-1.38-32.89-1.48-34.45,0-.03,0-.05,0-.08-1.29-13.24-2.54-26.19-2.62-34.65-.07-7.34-1.07-14.84-2.39-21.65-1.22-6.29-2.72-11.99-4.03-16.44-.92-3.13-2.63-5.89-4.9-8.05-1.62-1.54-3.51-2.78-5.6-3.62-.57-.24-1.15-.44-1.74-.62-8.46-2.49-16.99-5.66-20.16-4.72-8.59,2.56-18.15,18-22.67,37.55-8.46,36.6-10.41,88-8.21,98.15Z"}),jsx("path",{fill:"#ffa05e",d:"M493.98,662.86c-5.22-2.14-15.21-6.97-17.96-12.45-1.19-2.42,.64-3.16,3.66-3.16l13.93,7.06s0,.28,.09,.65c.09,1.4,.28,4.46,.28,7.9Z"}),jsx("path",{fill:"#ffae73",d:"M500.32,653.44s-25.01,7.91-29.63-7.96c-4.62-15.87-10.96-25.54,4.82-31.27,15.77-5.72,20.65-.6,23.46,4.32,2.81,4.92,7.74,32.44,1.35,34.91Z"}),jsx("path",{fill:"#0b3563",d:"M497.99,617s-1.59,18.47-5.36,17.67c-3.77-.8-7.18-1.4-6.63,4.17,.55,5.57,.73,12.26-10.88,13.25-11.61,.99-23.25-29.64-20.06-35.39,9.2-16.59,56.22-19.93,42.93,.3Z"}),jsx("path",{fill:"#f28018",d:"M516.52,790.89c-.54-12.83-1.38-32.89-1.48-34.45,0-.03,0-.05,0-.08l-42.46-25.75s-1.64,60.11,43.95,60.29Z"}),jsxs("g",{children:[jsxs("g",{children:[jsx("path",{fill:"#0b3563",d:"M663,586.79l7.65,6.75s-13.11,14.24-11.89,29.23l-19.58,16.77-16.21-14.32,13.56-22.81s14.53-.53,26.48-15.63Z"}),jsx("path",{fill:"#fff",d:"M643.1,611.15c1.58-1.84,4.33-2.03,6.15-.43,1.81,1.6,2.01,4.39,.43,6.23-1.58,1.84-4.33,2.03-6.15,.43-1.81-1.6-2.01-4.39-.43-6.23Z"}),jsx("polygon",{fill:"#fff",points:"644.37 617.69 643.11 616.58 666.23 589.63 667.49 590.74 644.37 617.69"})]}),jsx("polygon",{fill:"#6d76ff",points:"635.64 643.68 619.42 629.36 622.96 625.23 639.18 639.54 635.64 643.68"}),jsx("path",{fill:"#0b3563",d:"M458.23,834.69l-.79-.69c-4.26-3.76-4.71-10.32-1-14.64l162.97-190,16.22,14.32-162.97,190c-3.71,4.32-10.17,4.78-14.43,1.02Z"})]}),jsx("path",{fill:"#ffae73",d:"M549.94,736.45s3.13-2.82,3.87-4.77c.25-.68,2.39-3.74,6.03-3.47,3.33,.25,9.24-6.94,9.24-6.94,.86,1.9,3.83,9.03-.42,12.65-3.47,2.95-11.81,8.05-16.87,11.41-5.44,3.61-1.85-8.88-1.85-8.88Z"}),jsx("path",{fill:"#ff912b",d:"M550.35,735.4s-42.11,7.26-45.84,5.42c-5.96-2.94,2.31-46.28,2.31-46.28,0,0,.36-9.82-10.96-12.14-9.83-2.01-19.31,5.46-19.31,5.46,0,0-8.63,7.83-7.52,16.51,2.44,19.25,6.24,58.39,18.93,64.39,16.37,7.74,63.73-21.46,63.73-21.46,0,0,1.58-1.96,1.35-5.6-.2-3.21-2.7-6.3-2.7-6.3Z"}),jsx("path",{fill:"#ffae73",d:"M588.46,698.68s10.63-3.93,9.69-9.44c-.94-5.51-4.25-4.82-6.25-2.92-2,1.9-.89,11.66-3.44,12.36Z"}),jsx("path",{fill:"#ffae73",d:"M553.07,733.63s1.45-4.32,3-6.17c1.55-1.85,2.2-4.99,2.91-3.95,.7,1.05-.56,4.8,0,6.23,.56,1.43-5.9,3.89-5.9,3.89Z"})]}),jsx("rect",{fill:"#a9c2ff",height:"67.09",width:"190.42",y:"956.62",x:"1304.39"}),jsx("rect",{fill:"#1e3865",ry:"2.37",rx:"2.37",height:"4.74",width:"1620",y:"1023.26"})]})})})]}),Ie=jt;H();var {Title:m2}=Typography,d2=o=>{let{children:t}=o,[r,s]=useSearchParams(),i=e1(h=>h.token),p=e1(h=>h.setToken),[n,l]=useState(!1),f=B(),{isLoading:g}=Ut(r.has("ticket")?{url:"/api/usystem/user/login",params:{ticket:r.get("ticket")}}:null,h=>f.request(h),{onSuccess:h=>{p(h.token);}});return useEffect(()=>{r.has("not_registered")&&(l(!0),r.delete("not_registered"),s(r));},[r,s]),g?jsx(Spin,{style:{display:"flex",justifyContent:"center",alignItems:"center",width:"100vw",height:"100vh"}}):i?jsx(Navigate,{replace:!0,to:"/"}):jsxs(Row,{children:[jsx(Col,{span:10,offset:3,children:jsx("div",{className:"h-screen flex justify-end items-center",children:jsx(Ie,{})})}),jsx(Col,{span:5,offset:3,children:jsx("div",{className:"h-screen relative",children:jsxs(Card,{hoverable:!0,className:"absolute left-0 right-0 top-1/2 -translate-y-1/2",children:[n&&jsx("div",{className:"absolute -top-12 left-0 right-0",children:jsx(Alert,{banner:!0,closable:!0,message:"\u60A8\u8FD8\u672A\u5728\u5E73\u53F0\u6CE8\u518C\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458",type:"error",onClose:()=>{l(!1);}})}),jsxs("div",{className:"text-center mb-6",children:[jsx(m2,{level:5,children:"\u767B\u5F55\u65B9\u5F0F"}),jsx("div",{className:"min-h-10",children:t})]}),jsx(Divider,{plain:!0,children:"\u7B2C\u4E09\u65B9\u767B\u5F55\u65B9\u5F0F"}),jsx("div",{className:"w-full flex justify-center",children:jsx(Space,{size:"small",children:jsx(Button,{type:"link",size:"small",shape:"round",icon:jsx(AliyunOutlined,{}),href:`${Re}/login?service=${encodeURIComponent(window.location.origin)}/login`,target:"_self",children:"IDass \u767B\u5F55"})})})]})})})]})},u2=d2;a();var w2=()=>{let o=useNavigate();return jsx("div",{className:"h-screen flex justify-center items-center",children:jsx(Result,{status:"404",title:"404",subTitle:"Sorry, the page you visited does not exist.",extra:jsx(Button,{type:"primary",onClick:()=>{o("/");},children:"Back Home"})})})},b2=w2;a();var Y2=lazy(()=>Promise.resolve().then(()=>(He(),Qe))),eo=lazy(()=>Promise.resolve().then(()=>(_e(),ze))),to=lazy(()=>Promise.resolve().then(()=>(Ge(),We))),oo={path:"permission",children:[{index:!0,element:jsx(Navigate,{relative:"path",to:"user"})},{path:"user",element:jsx(Y2,{})},{path:"role",element:jsx(eo,{})},{path:"role/:name",element:jsx(to,{})}]},ro=oo;a();a();a();H();q();var po=(o,t)=>o?t?jsx(Link,{to:t,children:o}):o:jsx(Fragment,{});function $e(o,t){let r=[];for(let p=0;p<o.length;p++)if(o[p]===null)r[p]=null;else if(o[p].type==="divider")r[p]=R({},o[p]);else if(o[p].children){let s=o[p],{children:n}=s,l=V(s,["children"]);r[p]=Z(R({},l),{children:$e(n!=null?n:[],t)});}else {let i=o[p],{route:n,label:l,code:f}=i,g=V(i,["route","label","code"]),h=!f||!t||t[f];r[p]=h?Z(R({},g),{label:po(l,n)}):null;}return r}function je(o,t=[],r=[]){for(let s of o){let i=s.children;if(Array.isArray(i)){let p=s.type!=="group"&&s.key?[...r,s.key]:r;je(i,t,p);}else t.push(Object.assign(s,{keypath:r}));}return t}var fo=o=>{let{items:t}=o,r=useLocation(),s=useMemo(()=>je(t!=null?t:[]),[t]),i=s.map(m=>m.code).filter(Boolean),{data:p}=L1(i),n=useMemo(()=>$e(t!=null?t:[],p),[t,p]),l=i1(m=>m.openKeys),f=i1(m=>m.selectedKeys),g=i1(m=>m.setOpenKeys),h=i1(m=>m.setSelectedKeys),x=useCallback(m=>{var d;let M=m==null?void 0:m.find(y=>(l==null?void 0:l.indexOf(y))===-1),F=s.find(y=>M===y.key),u=(d=F==null?void 0:F.keypath)!=null?d:[M];g(u);},[s,l,g]);return useEffect(()=>{let m=s.find(M=>r.pathname===M.route);if(m){let M=m.key,F=m.keypath;h([M]),g(F);}},[s,r,g,h]),jsx(Menu,{style:{borderRight:"none"},items:n,mode:"inline",openKeys:l,selectedKeys:f,onOpenChange:x})},Je=fo;H();var {Header:yo,Sider:wo,Content:bo}=Layout,{ErrorBoundary:Mo}=Alert,xo=o=>{let{title:t,items:r,header:s,children:i}=o,{token:{colorBgContainer:p,colorBorder:n}}=theme.useToken();return N("100001"),jsx(Layout,{hasSider:!0,className:"h-screen",children:jsx(Mo,{children:jsxs(Suspense,{fallback:jsx(Spin,{style:{display:"flex",justifyContent:"center",alignItems:"center",width:"100vw",height:"100vh"}}),children:[jsxs(wo,{width:256,style:{overflow:"auto",height:"100vh",position:"fixed",left:0,top:0,bottom:0,borderRightWidth:1,borderRightStyle:"solid",borderRightColor:n},theme:"light",children:[jsxs("div",{className:"flex items-end px-6 py-4",children:[jsx("img",{src:mo,alt:"logo",className:"w-8 h-8"}),jsx(Link,{className:"font-bold text-lg ml-2",to:"/",children:t})]}),jsx(Je,{items:r})]}),jsxs(Layout,{className:"ml-64",children:[jsx(yo,{style:{padding:"0 24px",background:p,borderBottomWidth:1,borderBottomStyle:"solid",borderBottomColor:n},children:s}),jsx(bo,{className:"p-6 overflow-auto bg-gray-50",children:jsx(Suspense,{fallback:jsx(Spin,{style:{display:"flex",justifyContent:"center",alignItems:"center",height:"50vh"}}),children:i})})]})]})})})},Po=xo;
|
|
75
17
|
|
|
76
|
-
|
|
77
|
-
var init_esm_shims = __esm({
|
|
78
|
-
"../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.1.6/node_modules/tsup/assets/esm_shims.js"() {
|
|
79
|
-
}
|
|
80
|
-
});
|
|
81
|
-
var DynamicTags, DynamicTags_default;
|
|
82
|
-
var init_DynamicTags = __esm({
|
|
83
|
-
"src/components/DynamicTags/index.tsx"() {
|
|
84
|
-
init_esm_shims();
|
|
85
|
-
DynamicTags = (props) => {
|
|
86
|
-
const { initialTags, addable, removable, addCallback, removeCallback } = props;
|
|
87
|
-
const { token } = theme.useToken();
|
|
88
|
-
const [tags, setTags] = useState([]);
|
|
89
|
-
const [inputVisible, setInputVisible] = useState(false);
|
|
90
|
-
const [inputValue, setInputValue] = useState("");
|
|
91
|
-
const [editInputIndex, setEditInputIndex] = useState(-1);
|
|
92
|
-
const [editInputValue, setEditInputValue] = useState("");
|
|
93
|
-
const inputRef = useRef(null);
|
|
94
|
-
const editInputRef = useRef(null);
|
|
95
|
-
useEffect(() => {
|
|
96
|
-
setTags(initialTags != null ? initialTags : []);
|
|
97
|
-
}, [initialTags]);
|
|
98
|
-
useEffect(() => {
|
|
99
|
-
var _a;
|
|
100
|
-
if (inputVisible) {
|
|
101
|
-
(_a = inputRef.current) == null ? void 0 : _a.focus();
|
|
102
|
-
}
|
|
103
|
-
}, [inputVisible]);
|
|
104
|
-
useEffect(() => {
|
|
105
|
-
var _a;
|
|
106
|
-
(_a = editInputRef.current) == null ? void 0 : _a.focus();
|
|
107
|
-
}, [inputValue]);
|
|
108
|
-
const handleClose = (removedTag) => __async(void 0, null, function* () {
|
|
109
|
-
const success = yield removeCallback == null ? void 0 : removeCallback(removedTag);
|
|
110
|
-
if (success) {
|
|
111
|
-
const newTags = tags.filter((tag) => tag !== removedTag);
|
|
112
|
-
setTags(newTags);
|
|
113
|
-
}
|
|
114
|
-
});
|
|
115
|
-
const showInput = () => {
|
|
116
|
-
setInputVisible(true);
|
|
117
|
-
};
|
|
118
|
-
const handleInputChange = (e) => {
|
|
119
|
-
setInputValue(e.target.value);
|
|
120
|
-
};
|
|
121
|
-
const handleInputConfirm = () => __async(void 0, null, function* () {
|
|
122
|
-
if (inputValue && tags.indexOf(inputValue) === -1) {
|
|
123
|
-
const success = yield addCallback == null ? void 0 : addCallback(inputValue);
|
|
124
|
-
if (success) {
|
|
125
|
-
setTags([...tags, inputValue]);
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
setInputVisible(false);
|
|
129
|
-
setInputValue("");
|
|
130
|
-
});
|
|
131
|
-
const handleEditInputChange = (e) => {
|
|
132
|
-
setEditInputValue(e.target.value);
|
|
133
|
-
};
|
|
134
|
-
const handleEditInputConfirm = () => {
|
|
135
|
-
const newTags = [...tags];
|
|
136
|
-
newTags[editInputIndex] = editInputValue;
|
|
137
|
-
setTags(newTags);
|
|
138
|
-
setEditInputIndex(-1);
|
|
139
|
-
setInputValue("");
|
|
140
|
-
};
|
|
141
|
-
const tagInputStyle = {
|
|
142
|
-
width: 78,
|
|
143
|
-
verticalAlign: "top"
|
|
144
|
-
};
|
|
145
|
-
const tagPlusStyle = {
|
|
146
|
-
background: token.colorBgContainer,
|
|
147
|
-
borderStyle: "dashed"
|
|
148
|
-
};
|
|
149
|
-
return /* @__PURE__ */ jsxs(Space, { wrap: true, size: [0, 8], children: [
|
|
150
|
-
/* @__PURE__ */ jsx(Space, { wrap: true, size: [0, 8], children: tags.map((tag, index) => {
|
|
151
|
-
if (editInputIndex === index) {
|
|
152
|
-
return /* @__PURE__ */ jsx(
|
|
153
|
-
Input,
|
|
154
|
-
{
|
|
155
|
-
ref: editInputRef,
|
|
156
|
-
size: "small",
|
|
157
|
-
style: tagInputStyle,
|
|
158
|
-
value: editInputValue,
|
|
159
|
-
onChange: handleEditInputChange,
|
|
160
|
-
onBlur: handleEditInputConfirm,
|
|
161
|
-
onPressEnter: handleEditInputConfirm
|
|
162
|
-
},
|
|
163
|
-
tag
|
|
164
|
-
);
|
|
165
|
-
}
|
|
166
|
-
return /* @__PURE__ */ jsx(
|
|
167
|
-
Tag,
|
|
168
|
-
{
|
|
169
|
-
closable: removable,
|
|
170
|
-
style: { userSelect: "none" },
|
|
171
|
-
onClose: (e) => __async(void 0, null, function* () {
|
|
172
|
-
e.preventDefault();
|
|
173
|
-
yield handleClose(tag);
|
|
174
|
-
}),
|
|
175
|
-
children: /* @__PURE__ */ jsx(
|
|
176
|
-
"span",
|
|
177
|
-
{
|
|
178
|
-
onDoubleClick: (e) => {
|
|
179
|
-
if (index !== 0) {
|
|
180
|
-
setEditInputIndex(index);
|
|
181
|
-
setEditInputValue(tag);
|
|
182
|
-
e.preventDefault();
|
|
183
|
-
}
|
|
184
|
-
},
|
|
185
|
-
children: tag
|
|
186
|
-
}
|
|
187
|
-
)
|
|
188
|
-
},
|
|
189
|
-
tag
|
|
190
|
-
);
|
|
191
|
-
}) }),
|
|
192
|
-
addable && (inputVisible ? /* @__PURE__ */ jsx(
|
|
193
|
-
Input,
|
|
194
|
-
{
|
|
195
|
-
ref: inputRef,
|
|
196
|
-
type: "text",
|
|
197
|
-
size: "small",
|
|
198
|
-
style: tagInputStyle,
|
|
199
|
-
value: inputValue,
|
|
200
|
-
onChange: handleInputChange,
|
|
201
|
-
onBlur: handleInputConfirm,
|
|
202
|
-
onPressEnter: handleInputConfirm
|
|
203
|
-
}
|
|
204
|
-
) : /* @__PURE__ */ jsxs(Tag, { style: tagPlusStyle, onClick: showInput, children: [
|
|
205
|
-
/* @__PURE__ */ jsx(PlusOutlined, {}),
|
|
206
|
-
"\xA0\u6DFB\u52A0"
|
|
207
|
-
] }))
|
|
208
|
-
] });
|
|
209
|
-
};
|
|
210
|
-
DynamicTags_default = DynamicTags;
|
|
211
|
-
}
|
|
212
|
-
});
|
|
213
|
-
var FilterForm, FilterForm_default;
|
|
214
|
-
var init_FilterForm = __esm({
|
|
215
|
-
"src/components/FilterForm/index.tsx"() {
|
|
216
|
-
init_esm_shims();
|
|
217
|
-
FilterForm = (props) => {
|
|
218
|
-
const _a = props, { children, confirmText, form, onReset } = _a, restProps = __objRest(_a, ["children", "confirmText", "form", "onReset"]);
|
|
219
|
-
const { token } = theme.useToken();
|
|
220
|
-
const formStyle = {
|
|
221
|
-
maxWidth: "none",
|
|
222
|
-
background: token.colorFillAlter,
|
|
223
|
-
borderWidth: token.lineWidth,
|
|
224
|
-
borderStyle: token.lineType,
|
|
225
|
-
borderColor: token.colorBorder,
|
|
226
|
-
borderRadius: token.borderRadiusLG,
|
|
227
|
-
padding: 24,
|
|
228
|
-
marginBottom: 24
|
|
229
|
-
};
|
|
230
|
-
return /* @__PURE__ */ jsx(Form, __spreadProps(__spreadValues({}, restProps), { form, autoComplete: "off", children: children && /* @__PURE__ */ jsx("div", { style: formStyle, children: /* @__PURE__ */ jsxs(Row, { gutter: 18, children: [
|
|
231
|
-
children,
|
|
232
|
-
/* @__PURE__ */ jsx(Col, { flex: "auto" }),
|
|
233
|
-
/* @__PURE__ */ jsx(Col, { flex: "auto", span: 24, style: { textAlign: "right" }, children: /* @__PURE__ */ jsxs(Space, { children: [
|
|
234
|
-
/* @__PURE__ */ jsx(Button, { type: "primary", htmlType: "submit", children: confirmText || "\u67E5\u8BE2" }),
|
|
235
|
-
/* @__PURE__ */ jsx(Button, { htmlType: "reset", onClick: onReset, children: "\u91CD\u7F6E" })
|
|
236
|
-
] }) })
|
|
237
|
-
] }) }) }));
|
|
238
|
-
};
|
|
239
|
-
FilterForm_default = FilterForm;
|
|
240
|
-
}
|
|
241
|
-
});
|
|
242
|
-
var InternalFormModal, FormModal, FormModal_default;
|
|
243
|
-
var init_FormModal = __esm({
|
|
244
|
-
"src/components/FormModal/index.tsx"() {
|
|
245
|
-
init_esm_shims();
|
|
246
|
-
InternalFormModal = (props, ref) => {
|
|
247
|
-
const {
|
|
248
|
-
width,
|
|
249
|
-
children,
|
|
250
|
-
title,
|
|
251
|
-
open,
|
|
252
|
-
footer,
|
|
253
|
-
layout,
|
|
254
|
-
labelCol,
|
|
255
|
-
bodyStyle,
|
|
256
|
-
initialValues,
|
|
257
|
-
maskClosable,
|
|
258
|
-
closeFn,
|
|
259
|
-
afterClose,
|
|
260
|
-
onConfirm
|
|
261
|
-
} = props;
|
|
262
|
-
const id = useId();
|
|
263
|
-
const [form] = Form.useForm();
|
|
264
|
-
const formRef = useRef(null);
|
|
265
|
-
const isRenderProps = typeof children === "function";
|
|
266
|
-
const [confirmLoading, setConfirmLoading] = useState(false);
|
|
267
|
-
useImperativeHandle(ref, () => {
|
|
268
|
-
return {
|
|
269
|
-
setFieldsValue(values) {
|
|
270
|
-
var _a;
|
|
271
|
-
(_a = formRef.current) == null ? void 0 : _a.setFieldsValue(values);
|
|
272
|
-
}
|
|
273
|
-
};
|
|
274
|
-
});
|
|
275
|
-
return /* @__PURE__ */ jsx(
|
|
276
|
-
Modal,
|
|
277
|
-
{
|
|
278
|
-
destroyOnClose: true,
|
|
279
|
-
bodyStyle,
|
|
280
|
-
style: { textAlign: "start" },
|
|
281
|
-
width,
|
|
282
|
-
open,
|
|
283
|
-
title,
|
|
284
|
-
forceRender: true,
|
|
285
|
-
getContainer: false,
|
|
286
|
-
maskClosable,
|
|
287
|
-
footer: typeof footer === "object" ? footer : [
|
|
288
|
-
/* @__PURE__ */ jsx(
|
|
289
|
-
Button,
|
|
290
|
-
{
|
|
291
|
-
onClick: () => {
|
|
292
|
-
closeFn == null ? void 0 : closeFn();
|
|
293
|
-
},
|
|
294
|
-
children: "\u53D6\u6D88"
|
|
295
|
-
},
|
|
296
|
-
"cancel"
|
|
297
|
-
),
|
|
298
|
-
/* @__PURE__ */ jsx(Button, { form: id, type: "primary", htmlType: "submit", loading: confirmLoading, children: "\u786E\u5B9A" }, "submit")
|
|
299
|
-
],
|
|
300
|
-
afterClose: () => {
|
|
301
|
-
afterClose == null ? void 0 : afterClose();
|
|
302
|
-
form.resetFields();
|
|
303
|
-
},
|
|
304
|
-
onCancel: closeFn,
|
|
305
|
-
children: /* @__PURE__ */ jsx(
|
|
306
|
-
Form,
|
|
307
|
-
{
|
|
308
|
-
form,
|
|
309
|
-
ref: formRef,
|
|
310
|
-
id,
|
|
311
|
-
autoComplete: "off",
|
|
312
|
-
labelAlign: "right",
|
|
313
|
-
labelWrap: true,
|
|
314
|
-
layout,
|
|
315
|
-
initialValues,
|
|
316
|
-
labelCol: labelCol || {
|
|
317
|
-
flex: !layout || layout === "horizontal" ? "120px" : "0"
|
|
318
|
-
},
|
|
319
|
-
onFinish: (values) => __async(void 0, null, function* () {
|
|
320
|
-
try {
|
|
321
|
-
setConfirmLoading(true);
|
|
322
|
-
yield onConfirm == null ? void 0 : onConfirm(values);
|
|
323
|
-
closeFn == null ? void 0 : closeFn();
|
|
324
|
-
form.resetFields();
|
|
325
|
-
} finally {
|
|
326
|
-
setConfirmLoading(false);
|
|
327
|
-
}
|
|
328
|
-
}),
|
|
329
|
-
children: isRenderProps ? children({ form, open, closeFn }) : children
|
|
330
|
-
}
|
|
331
|
-
)
|
|
332
|
-
}
|
|
333
|
-
);
|
|
334
|
-
};
|
|
335
|
-
FormModal = forwardRef(InternalFormModal);
|
|
336
|
-
FormModal_default = FormModal;
|
|
337
|
-
}
|
|
338
|
-
});
|
|
339
|
-
function useFormModal(props) {
|
|
340
|
-
const _a = props, { content, onConfirm } = _a, restProps = __objRest(_a, ["content", "onConfirm"]);
|
|
341
|
-
const [open, setOpen] = useState(false);
|
|
342
|
-
const [title, setTitle] = useState();
|
|
343
|
-
const formRef = useRef(null);
|
|
344
|
-
const showModal = (options) => {
|
|
345
|
-
var _a2, _b;
|
|
346
|
-
setTitle((_a2 = options == null ? void 0 : options.title) != null ? _a2 : restProps.title);
|
|
347
|
-
if (options == null ? void 0 : options.initialValues) {
|
|
348
|
-
(_b = formRef.current) == null ? void 0 : _b.setFieldsValue(options == null ? void 0 : options.initialValues);
|
|
349
|
-
}
|
|
350
|
-
setOpen(true);
|
|
351
|
-
};
|
|
352
|
-
const closeModal = useCallback(() => {
|
|
353
|
-
setOpen(false);
|
|
354
|
-
}, []);
|
|
355
|
-
const Modal2 = useMemo(() => {
|
|
356
|
-
return /* @__PURE__ */ jsx(FormModal_default, __spreadProps(__spreadValues({ ref: formRef }, restProps), { open, closeFn: closeModal, title, onConfirm, children: content }));
|
|
357
|
-
}, [title, content, restProps, open, closeModal, onConfirm]);
|
|
358
|
-
return {
|
|
359
|
-
Modal: createPortal(Modal2, document.body),
|
|
360
|
-
showModal,
|
|
361
|
-
closeModal
|
|
362
|
-
};
|
|
363
|
-
}
|
|
364
|
-
var init_hooks = __esm({
|
|
365
|
-
"src/components/FormModal/hooks.tsx"() {
|
|
366
|
-
init_esm_shims();
|
|
367
|
-
init_FormModal();
|
|
368
|
-
}
|
|
369
|
-
});
|
|
370
|
-
function renderToString(node) {
|
|
371
|
-
const container = document.createElement("div");
|
|
372
|
-
const root = createRoot(container);
|
|
373
|
-
return new Promise((resolve) => {
|
|
374
|
-
setTimeout(() => {
|
|
375
|
-
flushSync(() => {
|
|
376
|
-
root.render(node);
|
|
377
|
-
});
|
|
378
|
-
resolve(container.innerHTML);
|
|
379
|
-
});
|
|
380
|
-
});
|
|
381
|
-
}
|
|
382
|
-
var splitByTags, Highlight, Highlight_default;
|
|
383
|
-
var init_Highlight = __esm({
|
|
384
|
-
"src/components/Highlight/index.tsx"() {
|
|
385
|
-
init_esm_shims();
|
|
386
|
-
splitByTags = (str) => {
|
|
387
|
-
const regex = /(<[^>]*>)/;
|
|
388
|
-
return str.split(regex).filter((part) => part !== "");
|
|
389
|
-
};
|
|
390
|
-
Highlight = (props) => {
|
|
391
|
-
const { texts, children } = props;
|
|
392
|
-
const [htmlString, setHtmlString] = useState("");
|
|
393
|
-
useEffect(() => {
|
|
394
|
-
renderToString(children).then((str) => {
|
|
395
|
-
const result = splitByTags(str);
|
|
396
|
-
for (const text of texts) {
|
|
397
|
-
for (let index = 0; index < result.length; index++) {
|
|
398
|
-
result[index] = result[index].replace(String(text), `<span style='color: #DC143C;'>${text}</span>`);
|
|
399
|
-
}
|
|
400
|
-
}
|
|
401
|
-
setHtmlString(result.join(""));
|
|
402
|
-
});
|
|
403
|
-
}, [children, texts]);
|
|
404
|
-
return /* @__PURE__ */ jsx("p", { dangerouslySetInnerHTML: { __html: htmlString } });
|
|
405
|
-
};
|
|
406
|
-
Highlight_default = Highlight;
|
|
407
|
-
}
|
|
408
|
-
});
|
|
409
|
-
var useMenuStore;
|
|
410
|
-
var init_menu = __esm({
|
|
411
|
-
"src/stores/menu.ts"() {
|
|
412
|
-
init_esm_shims();
|
|
413
|
-
useMenuStore = create()(
|
|
414
|
-
persist(
|
|
415
|
-
(set) => ({
|
|
416
|
-
openKeys: [],
|
|
417
|
-
selectedKeys: [],
|
|
418
|
-
setOpenKeys: (keys) => set({ openKeys: keys }),
|
|
419
|
-
setSelectedKeys: (keys) => set({ selectedKeys: keys })
|
|
420
|
-
}),
|
|
421
|
-
{
|
|
422
|
-
name: "menu",
|
|
423
|
-
partialize: (state) => ({
|
|
424
|
-
openKeys: state.openKeys,
|
|
425
|
-
selectedKeys: state.selectedKeys
|
|
426
|
-
})
|
|
427
|
-
}
|
|
428
|
-
)
|
|
429
|
-
);
|
|
430
|
-
}
|
|
431
|
-
});
|
|
432
|
-
var useTokenStore;
|
|
433
|
-
var init_token = __esm({
|
|
434
|
-
"src/stores/token.ts"() {
|
|
435
|
-
init_esm_shims();
|
|
436
|
-
useTokenStore = create()(
|
|
437
|
-
persist(
|
|
438
|
-
(set) => ({
|
|
439
|
-
token: "",
|
|
440
|
-
setToken: (token) => set({ token }),
|
|
441
|
-
clearToken: () => {
|
|
442
|
-
set({ token: "" });
|
|
443
|
-
useTokenStore.persist.clearStorage();
|
|
444
|
-
}
|
|
445
|
-
}),
|
|
446
|
-
{
|
|
447
|
-
name: "token",
|
|
448
|
-
partialize: (state) => ({ token: state.token })
|
|
449
|
-
}
|
|
450
|
-
)
|
|
451
|
-
);
|
|
452
|
-
}
|
|
453
|
-
});
|
|
454
|
-
var useQueryTriggerStore;
|
|
455
|
-
var init_queryTrigger = __esm({
|
|
456
|
-
"src/stores/queryTrigger.ts"() {
|
|
457
|
-
init_esm_shims();
|
|
458
|
-
useQueryTriggerStore = create((set, get) => ({
|
|
459
|
-
triggers: /* @__PURE__ */ new Map(),
|
|
460
|
-
setTrigger: (key, trigger) => {
|
|
461
|
-
set({
|
|
462
|
-
triggers: new Map(get().triggers).set(key, trigger)
|
|
463
|
-
});
|
|
464
|
-
},
|
|
465
|
-
trigger: (key, arg) => {
|
|
466
|
-
const trigger = get().triggers.get(key);
|
|
467
|
-
if (trigger) {
|
|
468
|
-
trigger(arg);
|
|
469
|
-
}
|
|
470
|
-
}
|
|
471
|
-
}));
|
|
472
|
-
}
|
|
473
|
-
});
|
|
474
|
-
|
|
475
|
-
// src/stores/index.ts
|
|
476
|
-
var init_stores = __esm({
|
|
477
|
-
"src/stores/index.ts"() {
|
|
478
|
-
init_esm_shims();
|
|
479
|
-
init_menu();
|
|
480
|
-
init_token();
|
|
481
|
-
init_queryTrigger();
|
|
482
|
-
}
|
|
483
|
-
});
|
|
484
|
-
function useFetcher() {
|
|
485
|
-
const { notification } = App.useApp();
|
|
486
|
-
const clearToken = useTokenStore((state) => state.clearToken);
|
|
487
|
-
const navigate = useNavigate();
|
|
488
|
-
const token = useTokenStore((state) => state.token);
|
|
489
|
-
const defaultOptions = {
|
|
490
|
-
withCredentials: true
|
|
491
|
-
};
|
|
492
|
-
const instance = axios.create(defaultOptions);
|
|
493
|
-
instance.interceptors.request.use((config) => {
|
|
494
|
-
const headers = config.headers;
|
|
495
|
-
headers.set("Authorization", `Bearer ${token}`);
|
|
496
|
-
return config;
|
|
497
|
-
});
|
|
498
|
-
instance.interceptors.response.use(
|
|
499
|
-
(response) => {
|
|
500
|
-
if (response.data.code === 0 || response.data.status === 0) {
|
|
501
|
-
return response.data.data;
|
|
502
|
-
}
|
|
503
|
-
throw new FetcherError(response.data.msg, 0);
|
|
504
|
-
},
|
|
505
|
-
(error) => {
|
|
506
|
-
var _a;
|
|
507
|
-
if (error.response) {
|
|
508
|
-
if (error.response.status === 401) {
|
|
509
|
-
throw new FetcherError("\u672A\u767B\u5F55\u6216\u767B\u5F55\u5DF2\u8FC7\u671F", error.response.status);
|
|
510
|
-
} else if (error.response.status === 403) {
|
|
511
|
-
throw new FetcherError("\u65E0\u6743\u9650\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u8FDB\u884C\u6388\u6743", error.response.status);
|
|
512
|
-
} else if ([404, 405].includes(error.response.status)) {
|
|
513
|
-
throw new FetcherError("Not Found or Method not Allowed", error.response.status, true);
|
|
514
|
-
} else if (error.response.status === 412) {
|
|
515
|
-
throw new FetcherError("\u672A\u6CE8\u518C\u7528\u6237", error.response.status);
|
|
516
|
-
} else {
|
|
517
|
-
throw new FetcherError((_a = error.response.data) == null ? void 0 : _a.msg, error.response.status);
|
|
518
|
-
}
|
|
519
|
-
} else if (error.request) {
|
|
520
|
-
console.log(error.request);
|
|
521
|
-
}
|
|
522
|
-
return Promise.reject(error);
|
|
523
|
-
}
|
|
524
|
-
);
|
|
525
|
-
return (config) => instance.request(config).catch((err) => {
|
|
526
|
-
switch (err.code) {
|
|
527
|
-
case 401:
|
|
528
|
-
case 412:
|
|
529
|
-
clearToken();
|
|
530
|
-
navigate(err.code === 401 ? "/login" : "/login?not_registered=1", { replace: true });
|
|
531
|
-
break;
|
|
532
|
-
default:
|
|
533
|
-
if (!err.skip) {
|
|
534
|
-
notification.error({
|
|
535
|
-
message: "\u8BF7\u6C42\u51FA\u9519",
|
|
536
|
-
description: err.message
|
|
537
|
-
});
|
|
538
|
-
}
|
|
539
|
-
}
|
|
540
|
-
throw err;
|
|
541
|
-
});
|
|
542
|
-
}
|
|
543
|
-
var FetcherError;
|
|
544
|
-
var init_use_fetcher = __esm({
|
|
545
|
-
"src/hooks/use-fetcher.tsx"() {
|
|
546
|
-
init_esm_shims();
|
|
547
|
-
init_stores();
|
|
548
|
-
FetcherError = class extends Error {
|
|
549
|
-
constructor(message, code, skip = false) {
|
|
550
|
-
super(message);
|
|
551
|
-
this.code = code;
|
|
552
|
-
this.skip = skip;
|
|
553
|
-
}
|
|
554
|
-
};
|
|
555
|
-
}
|
|
556
|
-
});
|
|
557
|
-
function usePermissions(codes) {
|
|
558
|
-
const fetcher = useFetcher();
|
|
559
|
-
const { data, isLoading } = useSWRImmutable(
|
|
560
|
-
codes.length > 0 ? {
|
|
561
|
-
method: "POST",
|
|
562
|
-
url: "/api/usystem/user/check",
|
|
563
|
-
data: { permissions: codes }
|
|
564
|
-
} : null,
|
|
565
|
-
(config) => fetcher(config).then((res) => {
|
|
566
|
-
if (res.has_all) {
|
|
567
|
-
return codes.reduce(
|
|
568
|
-
(acc, curr) => {
|
|
569
|
-
acc[curr] = true;
|
|
570
|
-
return acc;
|
|
571
|
-
},
|
|
572
|
-
{}
|
|
573
|
-
);
|
|
574
|
-
}
|
|
575
|
-
return codes.reduce(
|
|
576
|
-
(acc, curr) => {
|
|
577
|
-
acc[curr] = res[curr];
|
|
578
|
-
return acc;
|
|
579
|
-
},
|
|
580
|
-
{}
|
|
581
|
-
);
|
|
582
|
-
}),
|
|
583
|
-
{
|
|
584
|
-
shouldRetryOnError: false
|
|
585
|
-
}
|
|
586
|
-
);
|
|
587
|
-
return { data, isLoading };
|
|
588
|
-
}
|
|
589
|
-
function usePermission(code) {
|
|
590
|
-
var _a;
|
|
591
|
-
const { data, isLoading } = usePermissions(code ? [code] : []);
|
|
592
|
-
if (!code) {
|
|
593
|
-
return {
|
|
594
|
-
accessible: true,
|
|
595
|
-
isValidating: false
|
|
596
|
-
};
|
|
597
|
-
}
|
|
598
|
-
return {
|
|
599
|
-
accessible: (_a = data == null ? void 0 : data[code]) != null ? _a : false,
|
|
600
|
-
isValidating: isLoading
|
|
601
|
-
};
|
|
602
|
-
}
|
|
603
|
-
var init_use_permission = __esm({
|
|
604
|
-
"src/hooks/use-permission.tsx"() {
|
|
605
|
-
init_esm_shims();
|
|
606
|
-
init_use_fetcher();
|
|
607
|
-
}
|
|
608
|
-
});
|
|
609
|
-
|
|
610
|
-
// src/hooks/index.ts
|
|
611
|
-
var init_hooks2 = __esm({
|
|
612
|
-
"src/hooks/index.ts"() {
|
|
613
|
-
init_esm_shims();
|
|
614
|
-
init_use_fetcher();
|
|
615
|
-
init_use_permission();
|
|
616
|
-
}
|
|
617
|
-
});
|
|
618
|
-
var PermissionButton, PermissionButton_default;
|
|
619
|
-
var init_PermissionButton = __esm({
|
|
620
|
-
"src/components/PermissionButton/index.tsx"() {
|
|
621
|
-
init_esm_shims();
|
|
622
|
-
init_hooks2();
|
|
623
|
-
PermissionButton = (props) => {
|
|
624
|
-
const _a = props, { children, code, showLoading } = _a, restProps = __objRest(_a, ["children", "code", "showLoading"]);
|
|
625
|
-
const { accessible, isValidating } = usePermission(code);
|
|
626
|
-
if (isValidating) {
|
|
627
|
-
return /* @__PURE__ */ jsx(Button, __spreadProps(__spreadValues({ loading: showLoading, disabled: !showLoading }, restProps), { children }));
|
|
628
|
-
}
|
|
629
|
-
if (!accessible) {
|
|
630
|
-
return /* @__PURE__ */ jsx(Tooltip, { defaultOpen: false, title: "\u65E0\u6743\u9650\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u8FDB\u884C\u6388\u6743", children: /* @__PURE__ */ jsx(Button, __spreadProps(__spreadValues({ disabled: true }, restProps), { children })) });
|
|
631
|
-
}
|
|
632
|
-
return /* @__PURE__ */ jsx(Button, __spreadProps(__spreadValues({}, restProps), { children }));
|
|
633
|
-
};
|
|
634
|
-
PermissionButton_default = PermissionButton;
|
|
635
|
-
}
|
|
636
|
-
});
|
|
637
|
-
var QueryList, QueryList_default;
|
|
638
|
-
var init_QueryList = __esm({
|
|
639
|
-
"src/components/QueryList/index.tsx"() {
|
|
640
|
-
init_esm_shims();
|
|
641
|
-
init_hooks2();
|
|
642
|
-
init_stores();
|
|
643
|
-
init_FilterForm();
|
|
644
|
-
QueryList = (props) => {
|
|
645
|
-
const _a = props, { code, confirmText, labelCol, swrKey: swrKey3, renderForm, transformArg, initialValues } = _a, tableProps = __objRest(_a, ["code", "confirmText", "labelCol", "swrKey", "renderForm", "transformArg", "initialValues"]);
|
|
646
|
-
const { accessible, isValidating } = usePermission(code);
|
|
647
|
-
const [form] = Form.useForm();
|
|
648
|
-
const setTrigger = useQueryTriggerStore((state) => state.setTrigger);
|
|
649
|
-
const [paginationData, setPaginationData] = useState({
|
|
650
|
-
page: 1,
|
|
651
|
-
perPage: 10
|
|
652
|
-
});
|
|
653
|
-
const fetcher = useFetcher();
|
|
654
|
-
const { data, isMutating, trigger } = useSWRMutation2(
|
|
655
|
-
swrKey3,
|
|
656
|
-
(_0, _1) => __async(void 0, [_0, _1], function* (key, {
|
|
657
|
-
arg
|
|
658
|
-
}) {
|
|
659
|
-
var _a2, _b, _c, _d;
|
|
660
|
-
const newPaginationData = {
|
|
661
|
-
page: (_b = (_a2 = arg == null ? void 0 : arg.page) != null ? _a2 : paginationData.page) != null ? _b : 1,
|
|
662
|
-
perPage: (_d = (_c = arg == null ? void 0 : arg.perPage) != null ? _c : paginationData.perPage) != null ? _d : 10
|
|
663
|
-
};
|
|
664
|
-
setPaginationData(newPaginationData);
|
|
665
|
-
const values = form.getFieldsValue();
|
|
666
|
-
const fetcherArg = __spreadValues(__spreadValues({}, values), newPaginationData);
|
|
667
|
-
return fetcher(__spreadProps(__spreadValues({}, key), {
|
|
668
|
-
// TODO: 兼容 params 与 data
|
|
669
|
-
params: typeof transformArg === "function" ? transformArg(fetcherArg) : fetcherArg
|
|
670
|
-
}));
|
|
671
|
-
})
|
|
672
|
-
);
|
|
673
|
-
const onFinish = () => __async(void 0, null, function* () {
|
|
674
|
-
yield trigger({ page: 1 });
|
|
675
|
-
});
|
|
676
|
-
const onReset = useCallback(() => __async(void 0, null, function* () {
|
|
677
|
-
try {
|
|
678
|
-
form.resetFields();
|
|
679
|
-
yield form.validateFields();
|
|
680
|
-
yield trigger({ page: 1 });
|
|
681
|
-
} catch (_) {
|
|
682
|
-
console.log("\u8868\u5355\u6821\u9A8C\u5931\u8D25");
|
|
683
|
-
}
|
|
684
|
-
}), [form, trigger]);
|
|
685
|
-
const onPaginationChange = useCallback(
|
|
686
|
-
(currentPage, currentSize) => __async(void 0, null, function* () {
|
|
687
|
-
yield trigger({
|
|
688
|
-
page: currentPage,
|
|
689
|
-
perPage: currentSize
|
|
690
|
-
});
|
|
691
|
-
}),
|
|
692
|
-
[trigger]
|
|
693
|
-
);
|
|
694
|
-
useEffect(() => {
|
|
695
|
-
setTrigger(swrKey3, trigger);
|
|
696
|
-
}, [swrKey3, setTrigger, trigger]);
|
|
697
|
-
useEffect(() => {
|
|
698
|
-
(() => __async(void 0, null, function* () {
|
|
699
|
-
try {
|
|
700
|
-
yield form.validateFields();
|
|
701
|
-
yield trigger();
|
|
702
|
-
} catch (_) {
|
|
703
|
-
form.resetFields();
|
|
704
|
-
}
|
|
705
|
-
}))();
|
|
706
|
-
}, [form, trigger]);
|
|
707
|
-
if (isValidating) {
|
|
708
|
-
return /* @__PURE__ */ jsx(
|
|
709
|
-
Spin,
|
|
710
|
-
{
|
|
711
|
-
style: {
|
|
712
|
-
display: "flex",
|
|
713
|
-
justifyContent: "center",
|
|
714
|
-
alignItems: "center",
|
|
715
|
-
height: 200
|
|
716
|
-
}
|
|
717
|
-
}
|
|
718
|
-
);
|
|
719
|
-
}
|
|
720
|
-
if (!accessible) {
|
|
721
|
-
return /* @__PURE__ */ jsx(Result, { status: 403, subTitle: "\u65E0\u6743\u9650\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u8FDB\u884C\u6388\u6743" });
|
|
722
|
-
}
|
|
723
|
-
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
724
|
-
/* @__PURE__ */ jsx(
|
|
725
|
-
FilterForm_default,
|
|
726
|
-
{
|
|
727
|
-
initialValues,
|
|
728
|
-
form,
|
|
729
|
-
labelCol,
|
|
730
|
-
confirmText,
|
|
731
|
-
onFinish,
|
|
732
|
-
onReset,
|
|
733
|
-
children: renderForm == null ? void 0 : renderForm(form)
|
|
734
|
-
}
|
|
735
|
-
),
|
|
736
|
-
/* @__PURE__ */ jsx(
|
|
737
|
-
Table,
|
|
738
|
-
__spreadProps(__spreadValues({}, tableProps), {
|
|
739
|
-
dataSource: data == null ? void 0 : data.List,
|
|
740
|
-
loading: isMutating,
|
|
741
|
-
pagination: {
|
|
742
|
-
showSizeChanger: true,
|
|
743
|
-
showQuickJumper: true,
|
|
744
|
-
current: paginationData.page,
|
|
745
|
-
pageSize: paginationData.perPage,
|
|
746
|
-
total: data == null ? void 0 : data.Total,
|
|
747
|
-
onChange: onPaginationChange
|
|
748
|
-
}
|
|
749
|
-
})
|
|
750
|
-
)
|
|
751
|
-
] });
|
|
752
|
-
};
|
|
753
|
-
QueryList_default = QueryList;
|
|
754
|
-
}
|
|
755
|
-
});
|
|
756
|
-
|
|
757
|
-
// src/components/index.ts
|
|
758
|
-
var init_components = __esm({
|
|
759
|
-
"src/components/index.ts"() {
|
|
760
|
-
init_esm_shims();
|
|
761
|
-
init_DynamicTags();
|
|
762
|
-
init_FilterForm();
|
|
763
|
-
init_FormModal();
|
|
764
|
-
init_hooks();
|
|
765
|
-
init_Highlight();
|
|
766
|
-
init_PermissionButton();
|
|
767
|
-
init_QueryList();
|
|
768
|
-
}
|
|
769
|
-
});
|
|
770
|
-
function useAllPermissions() {
|
|
771
|
-
return useSWR({
|
|
772
|
-
url: "/api/usystem/user/allPermssions"
|
|
773
|
-
});
|
|
774
|
-
}
|
|
775
|
-
function useAllRoles() {
|
|
776
|
-
const { accessible } = usePermission("200005");
|
|
777
|
-
return useSWR(
|
|
778
|
-
accessible ? {
|
|
779
|
-
url: "/api/usystem/role/all"
|
|
780
|
-
} : null
|
|
781
|
-
);
|
|
782
|
-
}
|
|
783
|
-
function useRole(name) {
|
|
784
|
-
return useSWR({
|
|
785
|
-
url: "/api/usystem/role/info",
|
|
786
|
-
params: { name }
|
|
787
|
-
});
|
|
788
|
-
}
|
|
789
|
-
function useCreateRole() {
|
|
790
|
-
const fetcher = useFetcher();
|
|
791
|
-
return useSWRMutation2(
|
|
792
|
-
"/api/usystem/role/create",
|
|
793
|
-
(url, {
|
|
794
|
-
arg
|
|
795
|
-
}) => fetcher({ method: "POST", url, data: arg })
|
|
796
|
-
);
|
|
797
|
-
}
|
|
798
|
-
function useUpdateRole() {
|
|
799
|
-
const fetcher = useFetcher();
|
|
800
|
-
return useSWRMutation2(
|
|
801
|
-
"/api/usystem/role/update",
|
|
802
|
-
(url, {
|
|
803
|
-
arg
|
|
804
|
-
}) => fetcher({ method: "POST", url, data: arg })
|
|
805
|
-
);
|
|
806
|
-
}
|
|
807
|
-
function useRemoveRole() {
|
|
808
|
-
const fetcher = useFetcher();
|
|
809
|
-
return useSWRMutation2(
|
|
810
|
-
"/api/usystem/role/delete",
|
|
811
|
-
(url, {
|
|
812
|
-
arg
|
|
813
|
-
}) => fetcher({ method: "POST", url, data: arg })
|
|
814
|
-
);
|
|
815
|
-
}
|
|
816
|
-
function useCreateUser() {
|
|
817
|
-
const fetcher = useFetcher();
|
|
818
|
-
return useSWRMutation2(
|
|
819
|
-
"/api/usystem/user/create",
|
|
820
|
-
(url, {
|
|
821
|
-
arg
|
|
822
|
-
}) => fetcher({
|
|
823
|
-
method: "POST",
|
|
824
|
-
url,
|
|
825
|
-
data: arg
|
|
826
|
-
})
|
|
827
|
-
);
|
|
828
|
-
}
|
|
829
|
-
function useUpdateUser() {
|
|
830
|
-
const fetcher = useFetcher();
|
|
831
|
-
return useSWRMutation2(
|
|
832
|
-
"/api/usystem/user/update",
|
|
833
|
-
(url, {
|
|
834
|
-
arg
|
|
835
|
-
}) => fetcher({
|
|
836
|
-
method: "POST",
|
|
837
|
-
url,
|
|
838
|
-
data: arg
|
|
839
|
-
})
|
|
840
|
-
);
|
|
841
|
-
}
|
|
842
|
-
function useRemoveUser() {
|
|
843
|
-
const fetcher = useFetcher();
|
|
844
|
-
return useSWRMutation2(
|
|
845
|
-
"/api/usystem/user/delete",
|
|
846
|
-
(url, {
|
|
847
|
-
arg
|
|
848
|
-
}) => fetcher({
|
|
849
|
-
method: "POST",
|
|
850
|
-
url,
|
|
851
|
-
data: arg
|
|
852
|
-
})
|
|
853
|
-
);
|
|
854
|
-
}
|
|
855
|
-
var init_hooks3 = __esm({
|
|
856
|
-
"src/features/permission/hooks/index.ts"() {
|
|
857
|
-
init_esm_shims();
|
|
858
|
-
init_hooks2();
|
|
859
|
-
}
|
|
860
|
-
});
|
|
861
|
-
var Text, PermissionList, PermissionList_default;
|
|
862
|
-
var init_PermissionList = __esm({
|
|
863
|
-
"src/features/permission/components/PermissionList.tsx"() {
|
|
864
|
-
init_esm_shims();
|
|
865
|
-
init_hooks3();
|
|
866
|
-
({ Text } = Typography);
|
|
867
|
-
PermissionList = ({
|
|
868
|
-
expand = true,
|
|
869
|
-
value,
|
|
870
|
-
readonly,
|
|
871
|
-
onChange
|
|
872
|
-
}) => {
|
|
873
|
-
const [activeKey, setActiveKey] = useState([]);
|
|
874
|
-
const [internalValue, setInternalValue] = useState(value != null ? value : []);
|
|
875
|
-
const { data: permissions, isLoading, error } = useAllPermissions();
|
|
876
|
-
const [checkedMap, setCheckedMap] = useState({});
|
|
877
|
-
useEffect(() => {
|
|
878
|
-
setInternalValue(value != null ? value : []);
|
|
879
|
-
}, [value]);
|
|
880
|
-
useEffect(() => {
|
|
881
|
-
if (expand) {
|
|
882
|
-
setActiveKey((permissions != null ? permissions : []).map(({ category }) => category));
|
|
883
|
-
}
|
|
884
|
-
}, [expand, permissions]);
|
|
885
|
-
useEffect(() => {
|
|
886
|
-
const checkedValue = (permissions != null ? permissions : []).reduce(
|
|
887
|
-
(acc, curr) => {
|
|
888
|
-
acc[curr.category] = curr.permissions.every((item) => internalValue.includes(item.value));
|
|
889
|
-
return acc;
|
|
890
|
-
},
|
|
891
|
-
{}
|
|
892
|
-
);
|
|
893
|
-
setCheckedMap(checkedValue);
|
|
894
|
-
}, [internalValue, permissions]);
|
|
895
|
-
const onCollapseChange = (key) => {
|
|
896
|
-
setActiveKey(key);
|
|
897
|
-
};
|
|
898
|
-
const getCheckedValue = (checkedValue, codes) => {
|
|
899
|
-
let tempValue = [];
|
|
900
|
-
if (checkedValue) {
|
|
901
|
-
tempValue = [...new Set(internalValue.concat(codes))];
|
|
902
|
-
} else {
|
|
903
|
-
tempValue = internalValue.slice();
|
|
904
|
-
codes.forEach((code) => {
|
|
905
|
-
const index = tempValue.findIndex((item) => item === code);
|
|
906
|
-
if (index > -1) {
|
|
907
|
-
tempValue.splice(index, 1);
|
|
908
|
-
}
|
|
909
|
-
});
|
|
910
|
-
}
|
|
911
|
-
return tempValue;
|
|
912
|
-
};
|
|
913
|
-
const onCheckChange = (e, category, codes) => {
|
|
914
|
-
const checkedValue = getCheckedValue(e.target.checked, codes);
|
|
915
|
-
setInternalValue(checkedValue);
|
|
916
|
-
onChange == null ? void 0 : onChange(checkedValue);
|
|
917
|
-
};
|
|
918
|
-
if (error) {
|
|
919
|
-
return /* @__PURE__ */ jsx("div", { className: "flex justify-center", children: /* @__PURE__ */ jsx(Text, { type: "danger", children: "\u6743\u9650\u83B7\u53D6\u5931\u8D25" }) });
|
|
920
|
-
}
|
|
921
|
-
return /* @__PURE__ */ jsx(Skeleton, { active: true, loading: isLoading, children: /* @__PURE__ */ jsx(
|
|
922
|
-
Collapse,
|
|
923
|
-
{
|
|
924
|
-
style: { width: "100%" },
|
|
925
|
-
collapsible: "header",
|
|
926
|
-
activeKey,
|
|
927
|
-
items: (permissions != null ? permissions : []).map((item) => ({
|
|
928
|
-
key: item.category,
|
|
929
|
-
label: item.category,
|
|
930
|
-
extra: !readonly && /* @__PURE__ */ jsx(
|
|
931
|
-
Checkbox,
|
|
932
|
-
{
|
|
933
|
-
checked: checkedMap[item.category],
|
|
934
|
-
onChange: (e) => {
|
|
935
|
-
onCheckChange(
|
|
936
|
-
e,
|
|
937
|
-
item.category,
|
|
938
|
-
item.permissions.map((permission) => permission.value)
|
|
939
|
-
);
|
|
940
|
-
},
|
|
941
|
-
children: "\u5168\u9009"
|
|
942
|
-
}
|
|
943
|
-
),
|
|
944
|
-
children: /* @__PURE__ */ jsx(
|
|
945
|
-
Checkbox.Group,
|
|
946
|
-
{
|
|
947
|
-
style: { width: "100%" },
|
|
948
|
-
options: item.permissions.map((permission) => ({
|
|
949
|
-
label: permission.label,
|
|
950
|
-
value: permission.value,
|
|
951
|
-
disabled: readonly,
|
|
952
|
-
onChange(e) {
|
|
953
|
-
onCheckChange(e, item.category, [permission.value]);
|
|
954
|
-
}
|
|
955
|
-
})),
|
|
956
|
-
value: internalValue
|
|
957
|
-
}
|
|
958
|
-
)
|
|
959
|
-
})),
|
|
960
|
-
onChange: onCollapseChange
|
|
961
|
-
}
|
|
962
|
-
) });
|
|
963
|
-
};
|
|
964
|
-
PermissionList_default = PermissionList;
|
|
965
|
-
}
|
|
966
|
-
});
|
|
967
|
-
|
|
968
|
-
// src/features/permission/types/index.ts
|
|
969
|
-
var init_types = __esm({
|
|
970
|
-
"src/features/permission/types/index.ts"() {
|
|
971
|
-
init_esm_shims();
|
|
972
|
-
}
|
|
973
|
-
});
|
|
974
|
-
|
|
975
|
-
// src/features/permission/index.ts
|
|
976
|
-
var init_permission = __esm({
|
|
977
|
-
"src/features/permission/index.ts"() {
|
|
978
|
-
init_esm_shims();
|
|
979
|
-
init_PermissionList();
|
|
980
|
-
init_hooks3();
|
|
981
|
-
init_types();
|
|
982
|
-
}
|
|
983
|
-
});
|
|
984
|
-
|
|
985
|
-
// src/pages/permission/UserList.tsx
|
|
986
|
-
var UserList_exports = {};
|
|
987
|
-
__export(UserList_exports, {
|
|
988
|
-
default: () => UserList_default,
|
|
989
|
-
swrKey: () => swrKey
|
|
990
|
-
});
|
|
991
|
-
function useCreatingUserModal() {
|
|
992
|
-
const { message } = App.useApp();
|
|
993
|
-
const create4 = useCreateUser();
|
|
994
|
-
const { data: roles, isLoading } = useAllRoles();
|
|
995
|
-
const trigger = useQueryTriggerStore((state) => state.trigger);
|
|
996
|
-
return useFormModal({
|
|
997
|
-
title: "\u521B\u5EFA\u89D2\u8272",
|
|
998
|
-
labelCol: { flex: "80px" },
|
|
999
|
-
content: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1000
|
-
/* @__PURE__ */ jsx(Form.Item, { noStyle: true, shouldUpdate: (prevValues, currentValue) => prevValues.type !== currentValue.type, children: ({ getFieldValue }) => /* @__PURE__ */ jsx(Form.Item, { label: "\u540D\u79F0", name: "name", rules: [{ required: true }], children: /* @__PURE__ */ jsx(Input, { disabled: getFieldValue("id") }) }) }),
|
|
1001
|
-
/* @__PURE__ */ jsx(Form.Item, { label: "\u89D2\u8272", name: "roles", children: /* @__PURE__ */ jsx(Select, { allowClear: true, mode: "multiple", loading: isLoading, children: (roles != null ? roles : []).map((role) => /* @__PURE__ */ jsx(Option, { value: role.name, children: role.name }, role.id)) }) })
|
|
1002
|
-
] }),
|
|
1003
|
-
onConfirm(values) {
|
|
1004
|
-
return __async(this, null, function* () {
|
|
1005
|
-
yield create4.trigger(values, {
|
|
1006
|
-
onSuccess() {
|
|
1007
|
-
message.success("\u7528\u6237\u521B\u5EFA\u6210\u529F");
|
|
1008
|
-
trigger(swrKey);
|
|
1009
|
-
}
|
|
1010
|
-
});
|
|
1011
|
-
});
|
|
1012
|
-
}
|
|
1013
|
-
});
|
|
1014
|
-
}
|
|
1015
|
-
function useUpdatingUserModal() {
|
|
1016
|
-
const { message } = App.useApp();
|
|
1017
|
-
const update = useUpdateUser();
|
|
1018
|
-
const { data: roles, isLoading } = useAllRoles();
|
|
1019
|
-
const trigger = useQueryTriggerStore((state) => state.trigger);
|
|
1020
|
-
return useFormModal({
|
|
1021
|
-
title: "\u66F4\u65B0\u89D2\u8272",
|
|
1022
|
-
labelCol: { flex: "80px" },
|
|
1023
|
-
content: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1024
|
-
/* @__PURE__ */ jsx(Form.Item, { hidden: true, name: "id", children: /* @__PURE__ */ jsx(Input, {}) }),
|
|
1025
|
-
/* @__PURE__ */ jsx(Form.Item, { noStyle: true, shouldUpdate: (prevValues, currentValue) => prevValues.type !== currentValue.type, children: ({ getFieldValue }) => /* @__PURE__ */ jsx(Form.Item, { label: "\u540D\u79F0", name: "name", rules: [{ required: true }], children: /* @__PURE__ */ jsx(Input, { disabled: getFieldValue("id") }) }) }),
|
|
1026
|
-
/* @__PURE__ */ jsx(Form.Item, { label: "\u89D2\u8272", name: "roles", children: /* @__PURE__ */ jsx(Select, { allowClear: true, mode: "multiple", loading: isLoading, children: (roles != null ? roles : []).map((role) => /* @__PURE__ */ jsx(Option, { value: role.name, children: role.name }, role.id)) }) })
|
|
1027
|
-
] }),
|
|
1028
|
-
onConfirm(values) {
|
|
1029
|
-
return __async(this, null, function* () {
|
|
1030
|
-
yield update.trigger(values, {
|
|
1031
|
-
onSuccess() {
|
|
1032
|
-
message.success("\u7528\u6237\u66F4\u65B0\u6210\u529F");
|
|
1033
|
-
trigger(swrKey);
|
|
1034
|
-
}
|
|
1035
|
-
});
|
|
1036
|
-
});
|
|
1037
|
-
}
|
|
1038
|
-
});
|
|
1039
|
-
}
|
|
1040
|
-
var Option, swrKey, UserList, UserList_default;
|
|
1041
|
-
var init_UserList = __esm({
|
|
1042
|
-
"src/pages/permission/UserList.tsx"() {
|
|
1043
|
-
init_esm_shims();
|
|
1044
|
-
init_components();
|
|
1045
|
-
init_hooks();
|
|
1046
|
-
init_permission();
|
|
1047
|
-
init_stores();
|
|
1048
|
-
({ Option } = Select);
|
|
1049
|
-
swrKey = {
|
|
1050
|
-
url: "/api/usystem/user/list"
|
|
1051
|
-
};
|
|
1052
|
-
UserList = () => {
|
|
1053
|
-
const { modal, message } = App.useApp();
|
|
1054
|
-
const remove = useRemoveUser();
|
|
1055
|
-
const trigger = useQueryTriggerStore((state) => state.trigger);
|
|
1056
|
-
const { showModal: showCreatingModal, Modal: CreatingModal } = useCreatingUserModal();
|
|
1057
|
-
const { showModal: showUpdatingModal, Modal: UpdatingModal } = useUpdatingUserModal();
|
|
1058
|
-
const columns = useMemo(() => {
|
|
1059
|
-
return [
|
|
1060
|
-
{
|
|
1061
|
-
title: "\u540D\u79F0",
|
|
1062
|
-
dataIndex: "name",
|
|
1063
|
-
key: "name"
|
|
1064
|
-
},
|
|
1065
|
-
{
|
|
1066
|
-
title: "ID",
|
|
1067
|
-
dataIndex: "id",
|
|
1068
|
-
key: "id"
|
|
1069
|
-
},
|
|
1070
|
-
{
|
|
1071
|
-
title: "\u89D2\u8272",
|
|
1072
|
-
dataIndex: "roles",
|
|
1073
|
-
key: "roles",
|
|
1074
|
-
width: "40%",
|
|
1075
|
-
render(value) {
|
|
1076
|
-
return /* @__PURE__ */ jsx(Row, { gutter: [4, 4], children: (value || []).map((item) => /* @__PURE__ */ jsx(Col, { children: item === "root" ? /* @__PURE__ */ jsx(Tag, { color: "#f50", children: item }) : /* @__PURE__ */ jsx(Tag, { color: "#ff5a00", children: /* @__PURE__ */ jsx(Link, { to: `/permission/role/${item}`, children: item }) }) }, item)) });
|
|
1077
|
-
}
|
|
1078
|
-
},
|
|
1079
|
-
{
|
|
1080
|
-
title: "\u521B\u5EFA\u65F6\u95F4",
|
|
1081
|
-
dataIndex: "Ctime",
|
|
1082
|
-
key: "ctime"
|
|
1083
|
-
},
|
|
1084
|
-
{
|
|
1085
|
-
title: "\u64CD\u4F5C",
|
|
1086
|
-
width: 150,
|
|
1087
|
-
align: "center",
|
|
1088
|
-
render: (value) => /* @__PURE__ */ jsxs(Space, { children: [
|
|
1089
|
-
/* @__PURE__ */ jsx(
|
|
1090
|
-
PermissionButton_default,
|
|
1091
|
-
{
|
|
1092
|
-
size: "small",
|
|
1093
|
-
type: "link",
|
|
1094
|
-
code: "100003",
|
|
1095
|
-
onClick: () => {
|
|
1096
|
-
showUpdatingModal({
|
|
1097
|
-
initialValues: {
|
|
1098
|
-
id: value.id,
|
|
1099
|
-
name: value.name,
|
|
1100
|
-
roles: value.roles
|
|
1101
|
-
}
|
|
1102
|
-
});
|
|
1103
|
-
},
|
|
1104
|
-
children: "\u66F4\u65B0"
|
|
1105
|
-
}
|
|
1106
|
-
),
|
|
1107
|
-
/* @__PURE__ */ jsx(
|
|
1108
|
-
PermissionButton_default,
|
|
1109
|
-
{
|
|
1110
|
-
danger: true,
|
|
1111
|
-
size: "small",
|
|
1112
|
-
code: "100004",
|
|
1113
|
-
type: "link",
|
|
1114
|
-
onClick: () => {
|
|
1115
|
-
modal.confirm({
|
|
1116
|
-
title: "\u5220\u9664\u7528\u6237",
|
|
1117
|
-
content: /* @__PURE__ */ jsxs(Highlight_default, { texts: [value.name], children: [
|
|
1118
|
-
"\u786E\u5B9A\u8981\u5220\u9664\u7528\u6237\xA0",
|
|
1119
|
-
value.name,
|
|
1120
|
-
"\xA0\u5417\uFF1F"
|
|
1121
|
-
] }),
|
|
1122
|
-
onOk() {
|
|
1123
|
-
return __async(this, null, function* () {
|
|
1124
|
-
yield remove.trigger(
|
|
1125
|
-
{
|
|
1126
|
-
id: value.id,
|
|
1127
|
-
name: value.name
|
|
1128
|
-
},
|
|
1129
|
-
{
|
|
1130
|
-
onSuccess() {
|
|
1131
|
-
return __async(this, null, function* () {
|
|
1132
|
-
yield message.success("\u7528\u6237\u5220\u9664\u6210\u529F");
|
|
1133
|
-
trigger(swrKey);
|
|
1134
|
-
});
|
|
1135
|
-
}
|
|
1136
|
-
}
|
|
1137
|
-
);
|
|
1138
|
-
});
|
|
1139
|
-
}
|
|
1140
|
-
});
|
|
1141
|
-
},
|
|
1142
|
-
children: "\u5220\u9664"
|
|
1143
|
-
}
|
|
1144
|
-
)
|
|
1145
|
-
] })
|
|
1146
|
-
}
|
|
1147
|
-
];
|
|
1148
|
-
}, [trigger, remove, message, modal, showUpdatingModal]);
|
|
1149
|
-
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1150
|
-
/* @__PURE__ */ jsx(
|
|
1151
|
-
Card,
|
|
1152
|
-
{
|
|
1153
|
-
title: "\u7528\u6237",
|
|
1154
|
-
extra: /* @__PURE__ */ jsx(
|
|
1155
|
-
PermissionButton_default,
|
|
1156
|
-
{
|
|
1157
|
-
type: "primary",
|
|
1158
|
-
icon: /* @__PURE__ */ jsx(UserAddOutlined, {}),
|
|
1159
|
-
code: "100002",
|
|
1160
|
-
onClick: () => {
|
|
1161
|
-
showCreatingModal();
|
|
1162
|
-
},
|
|
1163
|
-
children: "\u521B\u5EFA\u7528\u6237"
|
|
1164
|
-
}
|
|
1165
|
-
),
|
|
1166
|
-
children: /* @__PURE__ */ jsx(
|
|
1167
|
-
QueryList_default,
|
|
1168
|
-
{
|
|
1169
|
-
code: "100001",
|
|
1170
|
-
swrKey,
|
|
1171
|
-
rowKey: "id",
|
|
1172
|
-
columns,
|
|
1173
|
-
transformArg: (arg) => {
|
|
1174
|
-
const _a = arg, { page, perPage } = _a, restValues = __objRest(_a, ["page", "perPage"]);
|
|
1175
|
-
return __spreadProps(__spreadValues({}, restValues != null ? restValues : {}), {
|
|
1176
|
-
page,
|
|
1177
|
-
size: perPage
|
|
1178
|
-
});
|
|
1179
|
-
}
|
|
1180
|
-
}
|
|
1181
|
-
)
|
|
1182
|
-
}
|
|
1183
|
-
),
|
|
1184
|
-
CreatingModal,
|
|
1185
|
-
UpdatingModal
|
|
1186
|
-
] });
|
|
1187
|
-
};
|
|
1188
|
-
UserList_default = UserList;
|
|
1189
|
-
}
|
|
1190
|
-
});
|
|
1191
|
-
|
|
1192
|
-
// src/pages/permission/RoleList.tsx
|
|
1193
|
-
var RoleList_exports = {};
|
|
1194
|
-
__export(RoleList_exports, {
|
|
1195
|
-
default: () => RoleList_default,
|
|
1196
|
-
swrKey: () => swrKey2
|
|
1197
|
-
});
|
|
1198
|
-
var swrKey2, RoleList, RoleList_default;
|
|
1199
|
-
var init_RoleList = __esm({
|
|
1200
|
-
"src/pages/permission/RoleList.tsx"() {
|
|
1201
|
-
init_esm_shims();
|
|
1202
|
-
init_components();
|
|
1203
|
-
init_hooks();
|
|
1204
|
-
init_permission();
|
|
1205
|
-
init_hooks2();
|
|
1206
|
-
init_stores();
|
|
1207
|
-
swrKey2 = {
|
|
1208
|
-
url: "/api/usystem/role/list"
|
|
1209
|
-
};
|
|
1210
|
-
RoleList = () => {
|
|
1211
|
-
const { accessible: viewable } = usePermission("200005");
|
|
1212
|
-
const { modal, message } = App.useApp();
|
|
1213
|
-
const fetcher = useFetcher();
|
|
1214
|
-
const create4 = useCreateRole();
|
|
1215
|
-
const remove = useRemoveRole();
|
|
1216
|
-
const update = useUpdateRole();
|
|
1217
|
-
const trigger = useQueryTriggerStore((state) => state.trigger);
|
|
1218
|
-
const { showModal: showCreateModal, Modal: CreateModal } = useFormModal({
|
|
1219
|
-
title: "\u521B\u5EFA\u89D2\u8272",
|
|
1220
|
-
width: "50vw",
|
|
1221
|
-
layout: "vertical",
|
|
1222
|
-
content: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1223
|
-
/* @__PURE__ */ jsx(Form.Item, { label: "\u540D\u79F0", name: "name", rules: [{ required: true }], children: /* @__PURE__ */ jsx(Input, { addonBefore: "role_" }) }),
|
|
1224
|
-
/* @__PURE__ */ jsx(Form.Item, { label: "\u6743\u9650", name: "permissions", children: /* @__PURE__ */ jsx(PermissionList_default, {}) })
|
|
1225
|
-
] }),
|
|
1226
|
-
onConfirm(values) {
|
|
1227
|
-
return __async(this, null, function* () {
|
|
1228
|
-
yield create4.trigger(
|
|
1229
|
-
{
|
|
1230
|
-
name: `role_${values.name}`,
|
|
1231
|
-
permissions: values.permissions
|
|
1232
|
-
},
|
|
1233
|
-
{
|
|
1234
|
-
onSuccess() {
|
|
1235
|
-
return __async(this, null, function* () {
|
|
1236
|
-
yield message.success("\u89D2\u8272\u521B\u5EFA\u6210\u529F");
|
|
1237
|
-
trigger(swrKey2);
|
|
1238
|
-
});
|
|
1239
|
-
}
|
|
1240
|
-
}
|
|
1241
|
-
);
|
|
1242
|
-
});
|
|
1243
|
-
}
|
|
1244
|
-
});
|
|
1245
|
-
const { showModal: showUpdateModal, Modal: UpdateModal } = useFormModal({
|
|
1246
|
-
title: "\u66F4\u65B0\u89D2\u8272",
|
|
1247
|
-
width: "50vw",
|
|
1248
|
-
layout: "vertical",
|
|
1249
|
-
content: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1250
|
-
/* @__PURE__ */ jsx(Form.Item, { hidden: true, label: "ID", name: "id", children: /* @__PURE__ */ jsx(Input, {}) }),
|
|
1251
|
-
/* @__PURE__ */ jsx(Form.Item, { label: "\u540D\u79F0", name: "name", rules: [{ required: true }], children: /* @__PURE__ */ jsx(Input, { disabled: true, addonBefore: "role_" }) }),
|
|
1252
|
-
/* @__PURE__ */ jsx(Form.Item, { label: "\u6743\u9650", name: "permissions", children: /* @__PURE__ */ jsx(PermissionList_default, {}) })
|
|
1253
|
-
] }),
|
|
1254
|
-
onConfirm(values) {
|
|
1255
|
-
return __async(this, null, function* () {
|
|
1256
|
-
yield update.trigger(
|
|
1257
|
-
{
|
|
1258
|
-
id: values.id,
|
|
1259
|
-
name: `role_${values.name}`,
|
|
1260
|
-
permissions: values.permissions
|
|
1261
|
-
},
|
|
1262
|
-
{
|
|
1263
|
-
onSuccess() {
|
|
1264
|
-
return __async(this, null, function* () {
|
|
1265
|
-
yield message.success("\u89D2\u8272\u66F4\u65B0\u6210\u529F");
|
|
1266
|
-
trigger(swrKey2);
|
|
1267
|
-
});
|
|
1268
|
-
}
|
|
1269
|
-
}
|
|
1270
|
-
);
|
|
1271
|
-
});
|
|
1272
|
-
}
|
|
1273
|
-
});
|
|
1274
|
-
const columns = useMemo(
|
|
1275
|
-
() => [
|
|
1276
|
-
{
|
|
1277
|
-
title: "\u540D\u79F0",
|
|
1278
|
-
key: "name",
|
|
1279
|
-
render(value) {
|
|
1280
|
-
if (viewable) {
|
|
1281
|
-
return /* @__PURE__ */ jsx(Link, { to: `${value.name}`, children: value.name });
|
|
1282
|
-
} else {
|
|
1283
|
-
return /* @__PURE__ */ jsx(Fragment, { children: value.name });
|
|
1284
|
-
}
|
|
1285
|
-
}
|
|
1286
|
-
},
|
|
1287
|
-
{
|
|
1288
|
-
title: "ID",
|
|
1289
|
-
dataIndex: "id",
|
|
1290
|
-
key: "id"
|
|
1291
|
-
},
|
|
1292
|
-
{
|
|
1293
|
-
title: "\u521B\u5EFA\u65F6\u95F4",
|
|
1294
|
-
dataIndex: "ctime",
|
|
1295
|
-
key: "ctime"
|
|
1296
|
-
},
|
|
1297
|
-
{
|
|
1298
|
-
title: "\u64CD\u4F5C",
|
|
1299
|
-
width: 150,
|
|
1300
|
-
align: "center",
|
|
1301
|
-
render: (value) => {
|
|
1302
|
-
return /* @__PURE__ */ jsxs(Space, { size: "small", children: [
|
|
1303
|
-
/* @__PURE__ */ jsx(
|
|
1304
|
-
PermissionButton_default,
|
|
1305
|
-
{
|
|
1306
|
-
code: "200003",
|
|
1307
|
-
size: "small",
|
|
1308
|
-
type: "link",
|
|
1309
|
-
onClick: () => __async(void 0, null, function* () {
|
|
1310
|
-
const role = yield fetcher({
|
|
1311
|
-
method: "GET",
|
|
1312
|
-
url: "/api/usystem/role/info",
|
|
1313
|
-
params: { name: value.name }
|
|
1314
|
-
});
|
|
1315
|
-
showUpdateModal({
|
|
1316
|
-
initialValues: {
|
|
1317
|
-
id: role == null ? void 0 : role.id,
|
|
1318
|
-
permissions: role == null ? void 0 : role.permissions,
|
|
1319
|
-
name: role == null ? void 0 : role.name.replace(/^role_/, "")
|
|
1320
|
-
}
|
|
1321
|
-
});
|
|
1322
|
-
}),
|
|
1323
|
-
children: "\u66F4\u65B0"
|
|
1324
|
-
}
|
|
1325
|
-
),
|
|
1326
|
-
/* @__PURE__ */ jsx(
|
|
1327
|
-
PermissionButton_default,
|
|
1328
|
-
{
|
|
1329
|
-
danger: true,
|
|
1330
|
-
code: "200004",
|
|
1331
|
-
size: "small",
|
|
1332
|
-
type: "link",
|
|
1333
|
-
onClick: () => {
|
|
1334
|
-
modal.confirm({
|
|
1335
|
-
title: "\u5220\u9664\u89D2\u8272",
|
|
1336
|
-
content: /* @__PURE__ */ jsxs(Highlight_default, { texts: [value.name], children: [
|
|
1337
|
-
"\u786E\u5B9A\u8981\u5220\u9664\u89D2\u8272\xA0",
|
|
1338
|
-
value.name,
|
|
1339
|
-
"\xA0\u5417\uFF1F"
|
|
1340
|
-
] }),
|
|
1341
|
-
onOk() {
|
|
1342
|
-
return __async(this, null, function* () {
|
|
1343
|
-
yield remove.trigger(
|
|
1344
|
-
{
|
|
1345
|
-
id: value.id,
|
|
1346
|
-
name: value.name
|
|
1347
|
-
},
|
|
1348
|
-
{
|
|
1349
|
-
onSuccess() {
|
|
1350
|
-
return __async(this, null, function* () {
|
|
1351
|
-
yield message.success("\u89D2\u8272\u5220\u9664\u6210\u529F");
|
|
1352
|
-
trigger(swrKey2);
|
|
1353
|
-
});
|
|
1354
|
-
}
|
|
1355
|
-
}
|
|
1356
|
-
);
|
|
1357
|
-
});
|
|
1358
|
-
}
|
|
1359
|
-
});
|
|
1360
|
-
},
|
|
1361
|
-
children: "\u5220\u9664"
|
|
1362
|
-
}
|
|
1363
|
-
)
|
|
1364
|
-
] });
|
|
1365
|
-
}
|
|
1366
|
-
}
|
|
1367
|
-
],
|
|
1368
|
-
[trigger, viewable, fetcher, modal, message, remove, showUpdateModal]
|
|
1369
|
-
);
|
|
1370
|
-
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1371
|
-
/* @__PURE__ */ jsx(
|
|
1372
|
-
Card,
|
|
1373
|
-
{
|
|
1374
|
-
title: "\u89D2\u8272",
|
|
1375
|
-
extra: /* @__PURE__ */ jsx(
|
|
1376
|
-
PermissionButton_default,
|
|
1377
|
-
{
|
|
1378
|
-
type: "primary",
|
|
1379
|
-
code: "200002",
|
|
1380
|
-
icon: /* @__PURE__ */ jsx(UsergroupAddOutlined, {}),
|
|
1381
|
-
onClick: () => {
|
|
1382
|
-
showCreateModal();
|
|
1383
|
-
},
|
|
1384
|
-
children: "\u521B\u5EFA\u89D2\u8272"
|
|
1385
|
-
}
|
|
1386
|
-
),
|
|
1387
|
-
children: /* @__PURE__ */ jsx(
|
|
1388
|
-
QueryList_default,
|
|
1389
|
-
{
|
|
1390
|
-
rowKey: "name",
|
|
1391
|
-
columns,
|
|
1392
|
-
code: "200001",
|
|
1393
|
-
swrKey: swrKey2,
|
|
1394
|
-
transformArg: (arg) => {
|
|
1395
|
-
const _a2 = arg, { page, perPage } = _a2, restValues = __objRest(_a2, ["page", "perPage"]);
|
|
1396
|
-
return __spreadProps(__spreadValues({}, restValues), {
|
|
1397
|
-
page,
|
|
1398
|
-
size: perPage
|
|
1399
|
-
});
|
|
1400
|
-
}
|
|
1401
|
-
}
|
|
1402
|
-
)
|
|
1403
|
-
}
|
|
1404
|
-
),
|
|
1405
|
-
CreateModal,
|
|
1406
|
-
UpdateModal
|
|
1407
|
-
] });
|
|
1408
|
-
};
|
|
1409
|
-
RoleList_default = RoleList;
|
|
1410
|
-
}
|
|
1411
|
-
});
|
|
1412
|
-
|
|
1413
|
-
// src/pages/permission/RoleDetail.tsx
|
|
1414
|
-
var RoleDetail_exports = {};
|
|
1415
|
-
__export(RoleDetail_exports, {
|
|
1416
|
-
default: () => RoleDetail_default
|
|
1417
|
-
});
|
|
1418
|
-
var RoleDetail, RoleDetail_default;
|
|
1419
|
-
var init_RoleDetail = __esm({
|
|
1420
|
-
"src/pages/permission/RoleDetail.tsx"() {
|
|
1421
|
-
init_esm_shims();
|
|
1422
|
-
init_permission();
|
|
1423
|
-
RoleDetail = () => {
|
|
1424
|
-
const params = useParams();
|
|
1425
|
-
const { data, isLoading } = useRole(params.name);
|
|
1426
|
-
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1427
|
-
/* @__PURE__ */ jsx(
|
|
1428
|
-
Breadcrumb,
|
|
1429
|
-
{
|
|
1430
|
-
style: { marginBottom: 24 },
|
|
1431
|
-
items: [
|
|
1432
|
-
{
|
|
1433
|
-
key: "1",
|
|
1434
|
-
title: /* @__PURE__ */ jsx(Link, { to: "/permission/role", children: "\u89D2\u8272" })
|
|
1435
|
-
},
|
|
1436
|
-
{
|
|
1437
|
-
key: "2",
|
|
1438
|
-
title: params.name
|
|
1439
|
-
}
|
|
1440
|
-
]
|
|
1441
|
-
}
|
|
1442
|
-
),
|
|
1443
|
-
/* @__PURE__ */ jsx(Card, { title: "\u6743\u9650\u8BE6\u60C5", children: /* @__PURE__ */ jsx(Skeleton, { loading: isLoading, children: /* @__PURE__ */ jsxs(Descriptions, { column: 3, layout: "vertical", children: [
|
|
1444
|
-
/* @__PURE__ */ jsx(Descriptions.Item, { label: "\u540D\u79F0", children: data == null ? void 0 : data.name }),
|
|
1445
|
-
/* @__PURE__ */ jsx(Descriptions.Item, { label: "ID", children: data == null ? void 0 : data.id }),
|
|
1446
|
-
/* @__PURE__ */ jsx(Descriptions.Item, { label: "\u521B\u5EFA\u65F6\u95F4", children: data == null ? void 0 : data.ctime }),
|
|
1447
|
-
/* @__PURE__ */ jsx(Descriptions.Item, { label: "\u6743\u9650", span: 3, children: /* @__PURE__ */ jsx(PermissionList_default, { readonly: true, value: data == null ? void 0 : data.permissions }) })
|
|
1448
|
-
] }) }) })
|
|
1449
|
-
] });
|
|
1450
|
-
};
|
|
1451
|
-
RoleDetail_default = RoleDetail;
|
|
1452
|
-
}
|
|
1453
|
-
});
|
|
1454
|
-
|
|
1455
|
-
// src/index.ts
|
|
1456
|
-
init_esm_shims();
|
|
1457
|
-
init_components();
|
|
1458
|
-
init_hooks2();
|
|
1459
|
-
init_stores();
|
|
1460
|
-
|
|
1461
|
-
// src/pages/index.ts
|
|
1462
|
-
init_esm_shims();
|
|
1463
|
-
|
|
1464
|
-
// src/pages/Login/index.tsx
|
|
1465
|
-
init_esm_shims();
|
|
1466
|
-
|
|
1467
|
-
// src/constants/index.ts
|
|
1468
|
-
init_esm_shims();
|
|
1469
|
-
var SSO_URL = "https://idaas.ifunplus.cn/enduser/api/application/plugin_FunPlus/sso/v1";
|
|
1470
|
-
new TextEncoder().encode("cc7e0d44fd473002f1c42167459001140ec6389b7353f8088f4d9a95f2f596f2");
|
|
1471
|
-
|
|
1472
|
-
// src/pages/Login/index.tsx
|
|
1473
|
-
init_stores();
|
|
1474
|
-
|
|
1475
|
-
// src/pages/Login/default.tsx
|
|
1476
|
-
init_esm_shims();
|
|
1477
|
-
var Default = () => {
|
|
1478
|
-
return /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 1620 1028", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
1479
|
-
/* @__PURE__ */ jsx("g", { id: "a" }),
|
|
1480
|
-
/* @__PURE__ */ jsx("g", { id: "b", children: /* @__PURE__ */ jsx("g", { id: "c", children: /* @__PURE__ */ jsxs("g", { children: [
|
|
1481
|
-
/* @__PURE__ */ jsx(
|
|
1482
|
-
"path",
|
|
1483
|
-
{
|
|
1484
|
-
fill: "#e8f2fa",
|
|
1485
|
-
d: "M1543.84,1025.63c-92.65,0-1442.29,.34-1443.07-2.11l-.13-.31s-.13-.3-.13-.45c-.52-1.23-207.95-345.42,114.53-585.03,126.18-93.75-7.9-155.64,92.44-260.01,115.31-119.94,241.15,12.74,369.38-41.64,22.66-9.6,45.39-25.05,68.15-48.76C797.78,32.37,870.19,6.95,944.96,1.25c143.27-10.86,304.51,50.23,387.71,139.53,16.75,17.98,92.93,111.03,32.88,238.91-37.91,80.74,120.91,157.86,177.35,250.06,143.49,234.42,2.24,392.82,.93,395.87Z"
|
|
1486
|
-
}
|
|
1487
|
-
),
|
|
1488
|
-
/* @__PURE__ */ jsxs("g", { opacity: ".5", children: [
|
|
1489
|
-
/* @__PURE__ */ jsx("g", { opacity: ".5", children: /* @__PURE__ */ jsx(
|
|
1490
|
-
"path",
|
|
1491
|
-
{
|
|
1492
|
-
fill: "#a9c2ff",
|
|
1493
|
-
d: "M522.98,381s-10.51-89.31-55.62-142.6c-6-7.08-17.47-2.57-17.28,6.76,0,.16,0,.31,.01,.47,.58,15.93,51.09,83.13,72.89,135.37Z"
|
|
1494
|
-
}
|
|
1495
|
-
) }),
|
|
1496
|
-
/* @__PURE__ */ jsx("g", { opacity: ".5", children: /* @__PURE__ */ jsx(
|
|
1497
|
-
"path",
|
|
1498
|
-
{
|
|
1499
|
-
fill: "#a9c2ff",
|
|
1500
|
-
d: "M528.46,406.57s-44.95-111.62-121.74-160.99c-4.68-3.01-11.02-1.92-14.16,2.72-2.04,3.02-2.96,7.73-.67,15.1,6.12,19.63,91.75,85.72,136.57,143.18Z"
|
|
1501
|
-
}
|
|
1502
|
-
) })
|
|
1503
|
-
] }),
|
|
1504
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1505
|
-
/* @__PURE__ */ jsx(
|
|
1506
|
-
"path",
|
|
1507
|
-
{
|
|
1508
|
-
fill: "#73b471",
|
|
1509
|
-
d: "M1088.4,378.19s-40.25-25.14-19.73-56.1c0,0,16.18-18.86,32.87-23.19,0,0-10.72,47-1.98,48.49,8.75,1.48,8.23-53.25,8.23-53.25,0,0,44.27-19.36,61.23-16.97,0,0-28.81,45.13-19.97,44.38,8.84-.75,40.96-46.29,40.96-46.29,0,0,44.84-6.49,50.9,20.56,6.05,27.05-6.03,39.94-12.69,41.34-6.66,1.4-48.94-.94-48.07,4.68,.87,5.62,29.08,15.74,45.22,11.39,0,0-19.38,43.29-42.36,40.09-22.99-3.2-29.54-17.99-43.78-19.7-14.24-1.71-24.84,1.75-17.85,5.95,6.98,4.2,31.27,2.59,42.4,13.03,11.13,10.43,20.22,16.96-1.39,20.52-21.61,3.56-59.96-.84-66.97-17.88l-7.01-17.04Z"
|
|
1510
|
-
}
|
|
1511
|
-
),
|
|
1512
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1513
|
-
/* @__PURE__ */ jsx(
|
|
1514
|
-
"path",
|
|
1515
|
-
{
|
|
1516
|
-
fill: "#73b471",
|
|
1517
|
-
d: "M1220.24,303.33s-116.93,33.06-131.84,74.86c0,0-.22,18.97-12.65,40.22l-.34,8.36s13.25-27.92,20-31.54c0,0-24.32-37.87,124.83-91.9Z"
|
|
1518
|
-
}
|
|
1519
|
-
),
|
|
1520
|
-
/* @__PURE__ */ jsx(
|
|
1521
|
-
"path",
|
|
1522
|
-
{
|
|
1523
|
-
fill: "#73b471",
|
|
1524
|
-
d: "M1075.75,418.41s-18.91,26.66-10.13,60.45l4.63-1.05s-2.94-36.94,7.12-55.03c10.06-18.09-1.62-4.37-1.62-4.37Z"
|
|
1525
|
-
}
|
|
1526
|
-
)
|
|
1527
|
-
] })
|
|
1528
|
-
] }),
|
|
1529
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1530
|
-
/* @__PURE__ */ jsx(
|
|
1531
|
-
"path",
|
|
1532
|
-
{
|
|
1533
|
-
fill: "#9bd399",
|
|
1534
|
-
d: "M925.53,377.18s-67.6,6.07-70.13-47.44c0,0,2.69-35.79,18.25-55.28,0,0,27.38,63.45,38.71,57.55,11.32-5.9-35.54-68.47-35.54-68.47,0,0,34.61-60.79,56.16-72.8,0,0,4.97,77.02,14.52,68.48,9.54-8.54,8.04-88.93,8.04-88.93,0,0,46.15-46.48,75.98-20.59,29.83,25.89,26.82,51.24,20.33,58.64-6.49,7.4-57.15,41.49-51.4,47.2,5.75,5.71,46.78-7.17,61.69-26.21,0,0,14.28,66.7-14.89,83.01-29.17,16.31-49.21,4.98-67.06,15.39-17.84,10.41-27.12,23.62-15.53,22.38,11.59-1.24,38.19-24.21,59.83-21.88,21.64,2.33,37.62,1.94,15.74,24.83-21.87,22.89-69.75,51.18-92.22,37.65l-22.48-13.53Z"
|
|
1535
|
-
}
|
|
1536
|
-
),
|
|
1537
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1538
|
-
/* @__PURE__ */ jsx(
|
|
1539
|
-
"path",
|
|
1540
|
-
{
|
|
1541
|
-
fill: "#9bd399",
|
|
1542
|
-
d: "M1014.06,176.32s-106.69,139.76-88.53,200.87c0,0,15.78,22.04,19.44,57.32l6.67,9.92s-8.34-43.67-3.63-53.71c0,0-60.01-22.45,66.05-214.39Z"
|
|
1543
|
-
}
|
|
1544
|
-
),
|
|
1545
|
-
/* @__PURE__ */ jsx(
|
|
1546
|
-
"path",
|
|
1547
|
-
{
|
|
1548
|
-
fill: "#9bd399",
|
|
1549
|
-
d: "M944.97,434.5s.76,47.15,39.44,78.42l4.44-5.24s-34.61-39.97-38.32-69.55c-3.71-29.58-5.56-3.62-5.56-3.62Z"
|
|
1550
|
-
}
|
|
1551
|
-
)
|
|
1552
|
-
] })
|
|
1553
|
-
] }),
|
|
1554
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1555
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1556
|
-
/* @__PURE__ */ jsx(
|
|
1557
|
-
"path",
|
|
1558
|
-
{
|
|
1559
|
-
fill: "#b6cfff",
|
|
1560
|
-
d: "M290.34,904.31s-18.93-22.41-1.17-36.64c0,0,12.98-7.97,23.56-7.32,0,0-14.99,25.5-10.14,28.04,4.85,2.54,14.69-29.64,14.69-29.64,0,0,29.53-2.91,39.03,1.73,0,0-25.25,20.96-19.93,22.2,5.32,1.25,32.58-19.32,32.58-19.32,0,0,27.48,4.74,26.02,21.75-1.47,17.01-10.94,22.26-15.1,21.81-4.16-.45-28.51-9.88-29.04-6.42-.53,3.46,14.13,14.77,24.39,15.29,0,0-19.38,21.68-32.26,15.42-12.88-6.26-13.98-16.17-22.01-19.89-8.03-3.72-14.88-3.71-11.57,.08,3.31,3.79,17.84,7.48,22.43,15.72,4.59,8.24,8.71,13.79-4.61,11.76-13.32-2.03-34.98-11.92-35.93-23.25l-.95-11.32Z"
|
|
1561
|
-
}
|
|
1562
|
-
),
|
|
1563
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1564
|
-
/* @__PURE__ */ jsx(
|
|
1565
|
-
"path",
|
|
1566
|
-
{
|
|
1567
|
-
fill: "#b6cfff",
|
|
1568
|
-
d: "M381.48,885.57s-74.65-2.92-91.14,18.74c0,0-3.65,11.08-14.87,21.16l-1.75,4.83s12.94-13.84,17.56-14.67c0,0-7.24-26.83,90.19-30.06Z"
|
|
1569
|
-
}
|
|
1570
|
-
),
|
|
1571
|
-
/* @__PURE__ */ jsx(
|
|
1572
|
-
"path",
|
|
1573
|
-
{
|
|
1574
|
-
fill: "#b6cfff",
|
|
1575
|
-
d: "M275.48,925.47s-16.02,12.02-17.14,33.5l2.91,.26s5.12-22.21,14.37-30.89c9.25-8.68-.14-2.87-.14-2.87Z"
|
|
1576
|
-
}
|
|
1577
|
-
)
|
|
1578
|
-
] })
|
|
1579
|
-
] }),
|
|
1580
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1581
|
-
/* @__PURE__ */ jsx(
|
|
1582
|
-
"path",
|
|
1583
|
-
{
|
|
1584
|
-
fill: "#a9c2ff",
|
|
1585
|
-
d: "M224.15,876.13s30.12-17.11,16.06-40.33c0,0-11.24-14.26-23.29-17.92,0,0,6.42,34.62,0,35.44-6.43,.81-4.42-39.11-4.42-39.11,0,0-31.72-15.48-44.17-14.26,0,0,19.68,33.81,13.25,33-6.43-.81-28.51-35.03-28.51-35.03,0,0-32.53-6.11-37.75,13.44-5.22,19.55,3.21,29.33,8.03,30.55,4.82,1.22,35.74,.81,34.94,4.89-.8,4.07-21.69,10.59-33.33,6.92,0,0,12.85,32.18,29.72,30.55,16.87-1.63,22.09-12.22,32.53-13.03,10.44-.81,18.07,2.04,12.85,4.89-5.22,2.85-22.89,.93-31.32,8.21-8.43,7.27-15.26,11.75,.4,15.01,15.66,3.26,43.77,1.22,49.39-11l5.62-12.22Z"
|
|
1586
|
-
}
|
|
1587
|
-
),
|
|
1588
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1589
|
-
/* @__PURE__ */ jsx(
|
|
1590
|
-
"path",
|
|
1591
|
-
{
|
|
1592
|
-
fill: "#a9c2ff",
|
|
1593
|
-
d: "M130.18,817.47s84.33,27.7,93.97,58.66c0,0-.4,13.85,8.03,29.74v6.11s-8.83-20.78-13.65-23.63c0,0,18.87-26.88-88.35-70.88Z"
|
|
1594
|
-
}
|
|
1595
|
-
),
|
|
1596
|
-
/* @__PURE__ */ jsx(
|
|
1597
|
-
"path",
|
|
1598
|
-
{
|
|
1599
|
-
fill: "#a9c2ff",
|
|
1600
|
-
d: "M232.18,905.87s13.01,20.03,5.59,44.42l-3.35-.91s3.25-26.86-3.56-40.37c-6.8-13.51,1.31-3.14,1.31-3.14Z"
|
|
1601
|
-
}
|
|
1602
|
-
)
|
|
1603
|
-
] })
|
|
1604
|
-
] }),
|
|
1605
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1606
|
-
/* @__PURE__ */ jsx(
|
|
1607
|
-
"path",
|
|
1608
|
-
{
|
|
1609
|
-
fill: "#cedfff",
|
|
1610
|
-
d: "M272.06,852.53s-39.7-22.55-21.17-53.16c0,0,14.82-18.79,30.7-23.63,0,0-8.47,45.64,0,46.72,8.47,1.07,5.82-51.55,5.82-51.55,0,0,41.82-20.4,58.23-18.79,0,0-25.94,44.57-17.47,43.49,8.47-1.07,37.58-46.18,37.58-46.18,0,0,42.88-8.05,49.76,17.72,6.88,25.77-4.23,38.66-10.59,40.27-6.35,1.61-47.11,1.07-46.05,6.44,1.06,5.37,28.58,13.96,43.94,9.13,0,0-16.94,42.42-39.17,40.27-22.23-2.15-29.11-16.11-42.88-17.18-13.76-1.07-23.82,2.69-16.94,6.44,6.88,3.76,30.17,1.23,41.29,10.82,11.12,9.59,20.12,15.49-.53,19.79-20.64,4.3-57.7,1.61-65.11-14.5l-7.41-16.11Z"
|
|
1611
|
-
}
|
|
1612
|
-
),
|
|
1613
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1614
|
-
/* @__PURE__ */ jsx(
|
|
1615
|
-
"path",
|
|
1616
|
-
{
|
|
1617
|
-
fill: "#cedfff",
|
|
1618
|
-
d: "M395.93,775.21s-111.16,36.51-123.87,77.32c0,0,.53,18.26-10.59,39.2v8.05s11.65-27.39,18-31.14c0,0-24.88-35.44,116.46-93.43Z"
|
|
1619
|
-
}
|
|
1620
|
-
),
|
|
1621
|
-
/* @__PURE__ */ jsx(
|
|
1622
|
-
"path",
|
|
1623
|
-
{
|
|
1624
|
-
fill: "#cedfff",
|
|
1625
|
-
d: "M261.48,891.73s-17.14,26.41-7.37,58.55l4.41-1.2s-4.28-35.41,4.69-53.21c8.97-17.81-1.73-4.14-1.73-4.14Z"
|
|
1626
|
-
}
|
|
1627
|
-
)
|
|
1628
|
-
] })
|
|
1629
|
-
] }),
|
|
1630
|
-
/* @__PURE__ */ jsx(
|
|
1631
|
-
"path",
|
|
1632
|
-
{
|
|
1633
|
-
fill: "#bbd3ff",
|
|
1634
|
-
d: "M270.72,1019.99c42.95,0,77.77-35.32,77.77-78.89H192.96c0,43.57,34.82,78.89,77.77,78.89Z"
|
|
1635
|
-
}
|
|
1636
|
-
),
|
|
1637
|
-
/* @__PURE__ */ jsx(
|
|
1638
|
-
"path",
|
|
1639
|
-
{
|
|
1640
|
-
fill: "#bbd3ff",
|
|
1641
|
-
d: "M349.57,1024.01H191.88c0-5.37,4.3-9.73,9.59-9.73h138.49c5.3,0,9.59,4.36,9.59,9.73h0Z"
|
|
1642
|
-
}
|
|
1643
|
-
),
|
|
1644
|
-
/* @__PURE__ */ jsx("rect", { fill: "#80a1e6", height: "2.42", width: "159.86", y: "941.11", x: "190.4" })
|
|
1645
|
-
] }),
|
|
1646
|
-
/* @__PURE__ */ jsx(
|
|
1647
|
-
"path",
|
|
1648
|
-
{
|
|
1649
|
-
fill: "#768cee",
|
|
1650
|
-
d: "M801.19,578.05l-34.8,419.74s-3.65,25.44,15.01,25.49c30.68,.07,152.69,0,152.69,0,0,0-23.09-5.3-22.81-17.21,.33-14.05,40.67-431.99,40.67-431.99l-150.76,3.97Z"
|
|
1651
|
-
}
|
|
1652
|
-
),
|
|
1653
|
-
/* @__PURE__ */ jsx(
|
|
1654
|
-
"path",
|
|
1655
|
-
{
|
|
1656
|
-
fill: "#a9c2ff",
|
|
1657
|
-
d: "M945.58,1015.66c-6.03,.02-124.16,.22-154.03-.17-13.02-.16-15.3-11.74-15.41-19.24-.05-3.59,.4-6.25,.4-6.25l.9-10.91,2.31-27.81,2.04-24.57,2.62-31.57,2.2-26.64,24.73-298.26,150.76-3.97s-16.99,174.91-29.01,302.22c-1.34,14.19-2.62,27.79-3.8,40.48-.38,4.05-.75,8.02-1.11,11.88-1.11,12.05-2.13,23.11-3.02,32.88-.47,5.15-.9,9.93-1.29,14.31-1.53,17.17-2.43,28.13-2.44,30.22,0,1.22,.1,2.35,.29,3.4,2.47,13.38,21.59,13.98,23.86,13.98Z"
|
|
1658
|
-
}
|
|
1659
|
-
),
|
|
1660
|
-
/* @__PURE__ */ jsx(
|
|
1661
|
-
"polygon",
|
|
1662
|
-
{
|
|
1663
|
-
fill: "#a9c2ff",
|
|
1664
|
-
points: "435.05 349.47 519.82 694.86 531.43 742.16 570.91 903.04 1304.39 903.04 1158.87 349.47 435.05 349.47"
|
|
1665
|
-
}
|
|
1666
|
-
),
|
|
1667
|
-
/* @__PURE__ */ jsx(
|
|
1668
|
-
"polygon",
|
|
1669
|
-
{
|
|
1670
|
-
fill: "#768cee",
|
|
1671
|
-
points: "435.05 349.46 423.31 353.44 555.29 915.06 570.91 903.04 435.05 349.46"
|
|
1672
|
-
}
|
|
1673
|
-
),
|
|
1674
|
-
/* @__PURE__ */ jsx(
|
|
1675
|
-
"polygon",
|
|
1676
|
-
{
|
|
1677
|
-
fill: "#809bf5",
|
|
1678
|
-
points: "555.29 915.06 1284.26 915.06 1304.39 903.04 570.91 903.04 555.29 915.06"
|
|
1679
|
-
}
|
|
1680
|
-
),
|
|
1681
|
-
/* @__PURE__ */ jsx(
|
|
1682
|
-
"rect",
|
|
1683
|
-
{
|
|
1684
|
-
fill: "#a9c2ff",
|
|
1685
|
-
transform: "translate(1780.4 2038.92) rotate(180)",
|
|
1686
|
-
height: "7.61",
|
|
1687
|
-
width: "157.83",
|
|
1688
|
-
y: "1015.66",
|
|
1689
|
-
x: "811.28"
|
|
1690
|
-
}
|
|
1691
|
-
),
|
|
1692
|
-
/* @__PURE__ */ jsx(
|
|
1693
|
-
"polygon",
|
|
1694
|
-
{
|
|
1695
|
-
fill: "#899bfa",
|
|
1696
|
-
points: "928.99 915.05 928.18 920.87 779.74 951.29 781.78 926.72 782.75 915.05 928.99 915.05"
|
|
1697
|
-
}
|
|
1698
|
-
),
|
|
1699
|
-
/* @__PURE__ */ jsx("g", { opacity: ".5", children: /* @__PURE__ */ jsx(
|
|
1700
|
-
"path",
|
|
1701
|
-
{
|
|
1702
|
-
fill: "#899bfa",
|
|
1703
|
-
d: "M945.58,1015.66c-6.03,.02-124.16,.22-154.03-.17-13.02-.16-15.3-11.74-15.41-19.24l147.73-28.19c-1.53,17.17-2.43,28.13-2.44,30.22,0,1.22,.1,2.35,.29,3.4,2.47,13.38,21.59,13.98,23.86,13.98Z"
|
|
1704
|
-
}
|
|
1705
|
-
) }),
|
|
1706
|
-
/* @__PURE__ */ jsx(
|
|
1707
|
-
"polygon",
|
|
1708
|
-
{
|
|
1709
|
-
fill: "#899bfa",
|
|
1710
|
-
points: "435.05 349.46 1158.87 349.46 1276.31 794.36 544.24 794.36 435.05 349.46"
|
|
1711
|
-
}
|
|
1712
|
-
),
|
|
1713
|
-
/* @__PURE__ */ jsx(
|
|
1714
|
-
"polygon",
|
|
1715
|
-
{
|
|
1716
|
-
fill: "#5158bf",
|
|
1717
|
-
points: "1242.18 775.08 564.46 775.08 540.24 677.22 530.87 639.35 527.05 623.91 502.16 523.34 500.87 518.1 487.71 464.94 481.83 441.15 476.81 420.86 472.71 404.31 465.03 373.3 1132.98 373.3 1141.41 404.31 1145.91 420.86 1151.42 441.15 1157.88 464.94 1200.47 621.65 1200.47 621.65 1204.08 634.93 1205.76 641.09 1235.16 749.28 1242.18 775.08"
|
|
1718
|
-
}
|
|
1719
|
-
),
|
|
1720
|
-
/* @__PURE__ */ jsx(
|
|
1721
|
-
"polygon",
|
|
1722
|
-
{
|
|
1723
|
-
fill: "#5d6cd2",
|
|
1724
|
-
points: "973.57 757.36 624.87 757.36 605.71 662.1 598.3 632.14 595.28 619.93 575.59 540.37 574.57 536.23 564.16 494.17 559.5 475.35 555.53 459.3 552.29 446.21 546.22 421.68 887.42 421.68 973.57 757.36"
|
|
1725
|
-
}
|
|
1726
|
-
),
|
|
1727
|
-
/* @__PURE__ */ jsx("polygon", { fill: "#899bfa", points: "819.24 794.36 571.16 904.34 544.24 794.36 819.24 794.36" }),
|
|
1728
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1729
|
-
/* @__PURE__ */ jsx(
|
|
1730
|
-
"path",
|
|
1731
|
-
{
|
|
1732
|
-
fill: "#2a3967",
|
|
1733
|
-
d: "M1384.19,552.09c.04-.99,.79-11.66,16.82-12.22,0,0-7.88,.95-9.24,4.47,0,0,5.37-4.34,9.74-2.95,4.37,1.4,6.94,9.16,6.96,11.72,.03,2.55-2.4,10.79-5.18,11.49-1.05,.27-2.26,.19-3.36,0,.74,1.17,1.46,2.46,2.15,3.9,6.4,13.32-.2,26.33-5.61,24.89-3.47-.92-4.45,5.09-4.45,5.09l-33.74-27.7s12.39-26.01,25.91-18.69Z"
|
|
1734
|
-
}
|
|
1735
|
-
),
|
|
1736
|
-
/* @__PURE__ */ jsx(
|
|
1737
|
-
"path",
|
|
1738
|
-
{
|
|
1739
|
-
fill: "#ffae73",
|
|
1740
|
-
d: "M1292.25,718.6c2.82,2.53,10.3-6.16,11.33-7.32,.05-.11,.11-.17,.11-.17l-2.28-6.44s-9.82-.38-11.44,1.27c-1.63,1.65-.81,9.96,2.28,12.65Z"
|
|
1741
|
-
}
|
|
1742
|
-
),
|
|
1743
|
-
/* @__PURE__ */ jsx(
|
|
1744
|
-
"path",
|
|
1745
|
-
{
|
|
1746
|
-
fill: "#25468f",
|
|
1747
|
-
d: "M1372.45,944.42l7.17,2.71s31.12-43.79,34.96-82.31c.68-6.88-.72-21.46-.19-24.57,.25-1.45,.55-3.2,.89-5.21,1.01-5.88,2.4-13.93,4-23.09,3.66-21.09,8.41-48.04,12.09-67.85l-1.93-.63-20.89-6.84-4.32-13.91-15.56-4.15s-3.47,6.9-6.58,39.47c-.57,4.27-1.09,8.98-1.49,14.09-1.21,15.6-1.3,34.94,1.48,57.06,.71,5.66,3.67,27.92,3.33,34.81-1.57,31.49-12.96,80.44-12.96,80.44Z"
|
|
1748
|
-
}
|
|
1749
|
-
),
|
|
1750
|
-
/* @__PURE__ */ jsx(
|
|
1751
|
-
"path",
|
|
1752
|
-
{
|
|
1753
|
-
fill: "#1e3865",
|
|
1754
|
-
d: "M1380.6,772.11l33.78,68.12c.25-1.45,.55-3.2,.89-5.21,1.01-5.88,2.4-13.93,4-23.09,3.66-21.09,8.41-48.04,12.09-67.85l-1.93-.63-20.89-6.84-4.32-13.91-15.56-4.15s-3.47,6.9-6.58,39.47c-.57,4.27-1.09,8.98-1.49,14.09Z"
|
|
1755
|
-
}
|
|
1756
|
-
),
|
|
1757
|
-
/* @__PURE__ */ jsx(
|
|
1758
|
-
"path",
|
|
1759
|
-
{
|
|
1760
|
-
fill: "#25468f",
|
|
1761
|
-
d: "M1395.46,727.29l.78-6.8c13.1,3.53,48.1-9.86,48.1-9.86,0,0,12.69,11.32,11.03,38.44-.81,13.24-2.3,69.5-3.85,86.15-.56,6.03,3.3,21.56,4.85,25.75,15.23,41.17-2.35,91.87-2.35,91.87l-4.56-1.87s-28.85-106.12-31.83-117.36c-5.63-21.25-10.15-48.9-13.17-70.25-.42,.02-9.01-36.08-9.01-36.08Z"
|
|
1762
|
-
}
|
|
1763
|
-
),
|
|
1764
|
-
/* @__PURE__ */ jsx(
|
|
1765
|
-
"path",
|
|
1766
|
-
{
|
|
1767
|
-
fill: "#ffae73",
|
|
1768
|
-
d: "M1385.52,648.37c22.52,1.25,17.57-32.81,16.2-32.63-2.76-1.46-7.7-8.55-10.56-20.41l-.97,.46-16.25,7.75s1.73,5.36,3,10.5c.99,4.02,1.71,7.9,1.11,8.98-1.28,.53-2.05,.86-2.05,.86,0,0,0,0,0,.02-.16,.42,3.52,24.15,9.53,24.48Z"
|
|
1769
|
-
}
|
|
1770
|
-
),
|
|
1771
|
-
/* @__PURE__ */ jsx(
|
|
1772
|
-
"path",
|
|
1773
|
-
{
|
|
1774
|
-
fill: "#f99352",
|
|
1775
|
-
d: "M1373.93,603.53s1.73,5.36,3,10.5c9.5-2.69,12.38-12.82,13.25-18.25l-16.25,7.75Z"
|
|
1776
|
-
}
|
|
1777
|
-
),
|
|
1778
|
-
/* @__PURE__ */ jsx(
|
|
1779
|
-
"path",
|
|
1780
|
-
{
|
|
1781
|
-
fill: "#ffae73",
|
|
1782
|
-
d: "M1371.93,609.21s22.73-5.34,19.23-19.64c-3.49-14.31-2.91-24.63-17.57-21.83-14.66,2.8-16.13,8.97-16.11,14.03,.02,5.06,8.45,28.46,14.45,27.44Z"
|
|
1783
|
-
}
|
|
1784
|
-
),
|
|
1785
|
-
/* @__PURE__ */ jsx(
|
|
1786
|
-
"path",
|
|
1787
|
-
{
|
|
1788
|
-
fill: "#2a3967",
|
|
1789
|
-
d: "M1356.2,573.64c2.44-5.19,5.32-4.91,7.12-3.99,10.68-10.02,21.15-1.83,21.15-1.83,4.03,9.88,12.77,13.92,12.77,13.92,0,0-3.49,3.63-13.61,3.55-3.09-.02-6.2-1.46-9.03-3.45,5.45,5.57,11.85,8.97,11.85,8.97-12.67-2.46-21.16-17.34-22.03-18.92-1.07,1.61-3.13,5.03-3.3,7.92-.23,3.93,1.1,11.55-1.12,11.84,0,0-7.47-10.23-3.8-18Z"
|
|
1790
|
-
}
|
|
1791
|
-
),
|
|
1792
|
-
/* @__PURE__ */ jsx(
|
|
1793
|
-
"path",
|
|
1794
|
-
{
|
|
1795
|
-
fill: "#1e3865",
|
|
1796
|
-
d: "M1427.51,956.62h36.09s.87-5.58-1.02-9.81c-1.81-4.06-4.64-5.91-3.96-10.82-2.29,2.4-6.03,5.08-11.25,4.37-.64,1.05-4.13,6.68-6.26,8.23-2.36,1.72-12.88,1.11-13.6,8.04Z"
|
|
1797
|
-
}
|
|
1798
|
-
),
|
|
1799
|
-
/* @__PURE__ */ jsx(
|
|
1800
|
-
"path",
|
|
1801
|
-
{
|
|
1802
|
-
fill: "#1e3865",
|
|
1803
|
-
d: "M1350.02,956.62h36.09s1.35-5.84-1.02-9.81c-2.1-3.52-1.29-5.52,.26-8.43-1.64,.68-3.75,1.3-6.08,1.16-1.8-.1-3.7-.93-5.37-1.91-1.55,1.8-8.2,9.44-10.28,10.96-2.36,1.72-12.88,1.11-13.6,8.04Z"
|
|
1804
|
-
}
|
|
1805
|
-
),
|
|
1806
|
-
/* @__PURE__ */ jsx(
|
|
1807
|
-
"path",
|
|
1808
|
-
{
|
|
1809
|
-
fill: "#899bfa",
|
|
1810
|
-
d: "M1445.02,667.38c-1.94-6.38-3.95-12.51-5.98-18.16-4.62-12.85-7.56-19.56-10.05-24.76-4.74-9.89-25.93-9.27-25.93-9.27-4.08,14.92-15.3,24.22-15.3,24.22-5.98-3.56-10.43-16.08-10.43-16.08l-13.09,7.06h0s-4.05,2.45-7.58,12.75c-5.25,15.32-13.77,37.08-19.68,43.73-1.38,1.55-5.42,3.9-10.31,6.39h0c-.11,.17-.19,.25-.24,.25,.32,.73,1.74,4.18,4.04,7.69,1.87,2.85,4.32,5.73,7.22,7.21,2.23-1.09,6.25-2.7,7.95-3.76,6.16-3.82,15.33-9.32,22.51-20.93l2,27.29,3.62,49.37c5.57,1.76,10.87,3.13,15.89,4.18,.33-4.14,1.65-9.09,1.65-9.09-.06,2.6,2.94,7.56,4.71,10.27,46.22,7.51,67.88-12.94,67.88-12.94-1.8-18.1-9.58-54.72-18.91-85.41Z"
|
|
1811
|
-
}
|
|
1812
|
-
),
|
|
1813
|
-
/* @__PURE__ */ jsx(
|
|
1814
|
-
"path",
|
|
1815
|
-
{
|
|
1816
|
-
fill: "#6f7deb",
|
|
1817
|
-
d: "M1398.39,612.43s3.84,.26,4.67,2.76c0,0-5.02,20.49-15.29,24.22l10.62-26.97Z"
|
|
1818
|
-
}
|
|
1819
|
-
),
|
|
1820
|
-
/* @__PURE__ */ jsx(
|
|
1821
|
-
"path",
|
|
1822
|
-
{
|
|
1823
|
-
fill: "#6f7deb",
|
|
1824
|
-
d: "M1387.77,639.4s-9.82-17.97-9.78-20.4c0,0-3.73,3.35-3.49,5.85,0,0,8.27,13.43,13.26,14.55Z"
|
|
1825
|
-
}
|
|
1826
|
-
),
|
|
1827
|
-
/* @__PURE__ */ jsx(
|
|
1828
|
-
"path",
|
|
1829
|
-
{
|
|
1830
|
-
fill: "#6f7deb",
|
|
1831
|
-
d: "M1414.09,632.11c-.28,.97-20.31,49.54-38.28,67.44-7.87,7.84,17.2,5.57,17.44,4.12,.24-1.46,20.84-71.56,20.84-71.56Z"
|
|
1832
|
-
}
|
|
1833
|
-
),
|
|
1834
|
-
/* @__PURE__ */ jsx(
|
|
1835
|
-
"path",
|
|
1836
|
-
{
|
|
1837
|
-
fill: "#6f7deb",
|
|
1838
|
-
d: "M1370.8,712.54l1.71,27.4c54.8-12.91,50.2-101.44,50.2-101.44l-27.52,57.64-24.15,16.01s-.09,.14-.25,.39Z"
|
|
1839
|
-
}
|
|
1840
|
-
),
|
|
1841
|
-
/* @__PURE__ */ jsx(
|
|
1842
|
-
"path",
|
|
1843
|
-
{
|
|
1844
|
-
fill: "#a9c2ff",
|
|
1845
|
-
d: "M1326.37,693.41c.01,.06,.04,.09,.07,.09-.02-.04-.03-.08-.04-.1-.04-.09-.05-.09-.03,.01Z"
|
|
1846
|
-
}
|
|
1847
|
-
),
|
|
1848
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1849
|
-
/* @__PURE__ */ jsx(
|
|
1850
|
-
"path",
|
|
1851
|
-
{
|
|
1852
|
-
fill: "#ff912b",
|
|
1853
|
-
d: "M1353.48,655.68l10.91,49.33c1.74,7.86-4.13,14.22-13.1,14.22h-262c-8.97,0-17.65-6.37-19.39-14.22l-10.91-49.33c-.07-.3-.12-.6-.16-.9-1.13-7.44,4.63-13.32,13.26-13.32h262c8.63,0,16.99,5.88,19.15,13.32,.1,.3,.17,.6,.24,.9Z"
|
|
1854
|
-
}
|
|
1855
|
-
),
|
|
1856
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1857
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1858
|
-
/* @__PURE__ */ jsx(
|
|
1859
|
-
"polygon",
|
|
1860
|
-
{
|
|
1861
|
-
fill: "#e8f2fa",
|
|
1862
|
-
points: "1089.87 697 1087.3 697 1080.51 666.3 1083.08 666.3 1089.87 697"
|
|
1863
|
-
}
|
|
1864
|
-
),
|
|
1865
|
-
/* @__PURE__ */ jsx(
|
|
1866
|
-
"polygon",
|
|
1867
|
-
{
|
|
1868
|
-
fill: "#e8f2fa",
|
|
1869
|
-
points: "1107.58 678.97 1089.17 678.97 1087.24 670.28 1105.66 670.28 1107.58 678.97"
|
|
1870
|
-
}
|
|
1871
|
-
),
|
|
1872
|
-
/* @__PURE__ */ jsx(
|
|
1873
|
-
"polygon",
|
|
1874
|
-
{
|
|
1875
|
-
fill: "#e8f2fa",
|
|
1876
|
-
points: "1116.16 691.42 1091.92 691.42 1090 682.74 1114.24 682.74 1116.16 691.42"
|
|
1877
|
-
}
|
|
1878
|
-
)
|
|
1879
|
-
] }),
|
|
1880
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1881
|
-
/* @__PURE__ */ jsx(
|
|
1882
|
-
"polygon",
|
|
1883
|
-
{
|
|
1884
|
-
fill: "#e8f2fa",
|
|
1885
|
-
points: "1148.77 697 1146.2 697 1139.41 666.3 1141.98 666.3 1148.77 697"
|
|
1886
|
-
}
|
|
1887
|
-
),
|
|
1888
|
-
/* @__PURE__ */ jsx(
|
|
1889
|
-
"polygon",
|
|
1890
|
-
{
|
|
1891
|
-
fill: "#e8f2fa",
|
|
1892
|
-
points: "1152.7 678.97 1134.29 678.97 1132.37 670.28 1150.78 670.28 1152.7 678.97"
|
|
1893
|
-
}
|
|
1894
|
-
),
|
|
1895
|
-
/* @__PURE__ */ jsx(
|
|
1896
|
-
"polygon",
|
|
1897
|
-
{
|
|
1898
|
-
fill: "#e8f2fa",
|
|
1899
|
-
points: "1158.37 691.42 1134.13 691.42 1132.21 682.74 1156.45 682.74 1158.37 691.42"
|
|
1900
|
-
}
|
|
1901
|
-
)
|
|
1902
|
-
] }),
|
|
1903
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1904
|
-
/* @__PURE__ */ jsx(
|
|
1905
|
-
"polygon",
|
|
1906
|
-
{
|
|
1907
|
-
fill: "#e8f2fa",
|
|
1908
|
-
points: "1207.67 697 1205.1 697 1198.31 666.3 1200.88 666.3 1207.67 697"
|
|
1909
|
-
}
|
|
1910
|
-
),
|
|
1911
|
-
/* @__PURE__ */ jsx(
|
|
1912
|
-
"polygon",
|
|
1913
|
-
{
|
|
1914
|
-
fill: "#e8f2fa",
|
|
1915
|
-
points: "1197.82 678.97 1179.4 678.97 1177.48 670.28 1195.89 670.28 1197.82 678.97"
|
|
1916
|
-
}
|
|
1917
|
-
),
|
|
1918
|
-
/* @__PURE__ */ jsx(
|
|
1919
|
-
"polygon",
|
|
1920
|
-
{
|
|
1921
|
-
fill: "#e8f2fa",
|
|
1922
|
-
points: "1200.57 691.42 1176.33 691.42 1174.41 682.74 1198.65 682.74 1200.57 691.42"
|
|
1923
|
-
}
|
|
1924
|
-
)
|
|
1925
|
-
] }),
|
|
1926
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1927
|
-
/* @__PURE__ */ jsx(
|
|
1928
|
-
"polygon",
|
|
1929
|
-
{
|
|
1930
|
-
fill: "#e8f2fa",
|
|
1931
|
-
points: "1245.35 668.78 1215.1 668.78 1214.52 666.18 1244.78 666.18 1245.35 668.78"
|
|
1932
|
-
}
|
|
1933
|
-
),
|
|
1934
|
-
/* @__PURE__ */ jsx(
|
|
1935
|
-
"polygon",
|
|
1936
|
-
{
|
|
1937
|
-
fill: "#e8f2fa",
|
|
1938
|
-
points: "1228.12 671.23 1232.26 689.91 1223.69 689.91 1219.56 671.23 1228.12 671.23"
|
|
1939
|
-
}
|
|
1940
|
-
),
|
|
1941
|
-
/* @__PURE__ */ jsx(
|
|
1942
|
-
"polygon",
|
|
1943
|
-
{
|
|
1944
|
-
fill: "#e8f2fa",
|
|
1945
|
-
points: "1240.4 671.23 1245.84 695.82 1237.28 695.82 1231.84 671.23 1240.4 671.23"
|
|
1946
|
-
}
|
|
1947
|
-
)
|
|
1948
|
-
] }),
|
|
1949
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1950
|
-
/* @__PURE__ */ jsx(
|
|
1951
|
-
"polygon",
|
|
1952
|
-
{
|
|
1953
|
-
fill: "#e8f2fa",
|
|
1954
|
-
points: "1292.98 682.95 1262.72 682.95 1262.14 680.35 1292.4 680.35 1292.98 682.95"
|
|
1955
|
-
}
|
|
1956
|
-
),
|
|
1957
|
-
/* @__PURE__ */ jsx(
|
|
1958
|
-
"polygon",
|
|
1959
|
-
{
|
|
1960
|
-
fill: "#e8f2fa",
|
|
1961
|
-
points: "1272.86 672.31 1276.99 690.99 1268.42 690.99 1264.29 672.31 1272.86 672.31"
|
|
1962
|
-
}
|
|
1963
|
-
),
|
|
1964
|
-
/* @__PURE__ */ jsx(
|
|
1965
|
-
"polygon",
|
|
1966
|
-
{
|
|
1967
|
-
fill: "#e8f2fa",
|
|
1968
|
-
points: "1284.48 669.36 1289.92 693.94 1281.35 693.94 1275.91 669.36 1284.48 669.36"
|
|
1969
|
-
}
|
|
1970
|
-
)
|
|
1971
|
-
] }),
|
|
1972
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1973
|
-
/* @__PURE__ */ jsx(
|
|
1974
|
-
"polygon",
|
|
1975
|
-
{
|
|
1976
|
-
fill: "#e8f2fa",
|
|
1977
|
-
points: "1340.63 697.23 1310.37 697.23 1309.79 694.63 1340.05 694.63 1340.63 697.23"
|
|
1978
|
-
}
|
|
1979
|
-
),
|
|
1980
|
-
/* @__PURE__ */ jsx(
|
|
1981
|
-
"polygon",
|
|
1982
|
-
{
|
|
1983
|
-
fill: "#e8f2fa",
|
|
1984
|
-
points: "1317.78 673.28 1321.91 691.96 1313.34 691.96 1309.21 673.28 1317.78 673.28"
|
|
1985
|
-
}
|
|
1986
|
-
),
|
|
1987
|
-
/* @__PURE__ */ jsx(
|
|
1988
|
-
"polygon",
|
|
1989
|
-
{
|
|
1990
|
-
fill: "#e8f2fa",
|
|
1991
|
-
points: "1328.74 667.37 1334.18 691.96 1325.62 691.96 1320.18 667.37 1328.74 667.37"
|
|
1992
|
-
}
|
|
1993
|
-
)
|
|
1994
|
-
] })
|
|
1995
|
-
] })
|
|
1996
|
-
] }),
|
|
1997
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
1998
|
-
/* @__PURE__ */ jsx(
|
|
1999
|
-
"path",
|
|
2000
|
-
{
|
|
2001
|
-
fill: "#ffae73",
|
|
2002
|
-
d: "M1327.16,714.82c2.99-.01,7.7-.22,10.42-1.28,0,0-8.7-.13-6.85-2.92,.34-.51,4.66-.12,9.49-.12,1.98,0,6.88,2.75,6.62,2.88,3.5-.47,6.68-1.16,7.71-1.38,.27-.06,.38-.11,.38-.11l3.09,9.13s-.65,.16-1.79,.38c-2.87,.72-8.79,2.26-14.37,4.46-7.81,3.14-13.55-.76-16.16-3.52-1.65-1.75-2.95-4.07-2.86-5.75,.1-1.84,2.5-1.76,4.32-1.77Z"
|
|
2003
|
-
}
|
|
2004
|
-
),
|
|
2005
|
-
/* @__PURE__ */ jsx(
|
|
2006
|
-
"path",
|
|
2007
|
-
{
|
|
2008
|
-
fill: "#ffae73",
|
|
2009
|
-
d: "M1348.16,715.52l1.9,7.04s2.39-.44,6.18-1.16c1.14-.22,1.79-.39,1.79-.39,3.04-.6,6.67-1.43,10.63-2.31h.06c6.78-1.65,14.37-3.63,20.77-5.83,.57-.2,1.14-.41,1.69-.61,3.78-1.42-3.53-20.9-6.84-18.47-.88,.65-1.82,1.31-2.8,1.99-5.49,3.78-12.47,7.99-18.67,11.54-3.04,1.76-5.91,3.36-8.3,4.68-3.85,2.14-6.4,3.52-6.4,3.52Z"
|
|
2010
|
-
}
|
|
2011
|
-
),
|
|
2012
|
-
/* @__PURE__ */ jsx(
|
|
2013
|
-
"path",
|
|
2014
|
-
{
|
|
2015
|
-
fill: "#899bfa",
|
|
2016
|
-
d: "M1381.53,695.79s-.4,13.3,11.88,19.77c14.19-5.2,21.78-26.66,27.64-41.4,.81-2.03,1.57-4.07,2.33-6.05,2.71-7.37,4.88-14.63,6.18-20.91,.81-3.74-14.97-22.61-16.97-18.15-3.09,7.09-6.34,16.28-9.38,25.41-1.68,5.01-3.31,10.01-4.94,14.63-.92,2.8-1.85,5.44-2.71,7.86-1.68,4.62-3.2,8.36-4.55,10.73-.87,1.54-3.36,3.69-6.67,6.11-.88,.65-1.82,1.31-2.8,1.99Z"
|
|
2017
|
-
}
|
|
2018
|
-
)
|
|
2019
|
-
] })
|
|
2020
|
-
] }),
|
|
2021
|
-
/* @__PURE__ */ jsx(
|
|
2022
|
-
"polygon",
|
|
2023
|
-
{
|
|
2024
|
-
fill: "#3c4aaa",
|
|
2025
|
-
points: "1141.41 404.31 472.71 404.31 465.03 373.3 1132.98 373.3 1141.41 404.31"
|
|
2026
|
-
}
|
|
2027
|
-
),
|
|
2028
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2029
|
-
/* @__PURE__ */ jsx(
|
|
2030
|
-
"path",
|
|
2031
|
-
{
|
|
2032
|
-
fill: "#e8f2fa",
|
|
2033
|
-
d: "M506.59,389.09c.87,2.78-.86,5.05-3.87,5.07-3.01,.02-6.16-2.22-7.03-4.99-.87-2.78,.86-5.05,3.87-5.07,3.01-.02,6.16,2.21,7.03,4.99Z"
|
|
2034
|
-
}
|
|
2035
|
-
),
|
|
2036
|
-
/* @__PURE__ */ jsx(
|
|
2037
|
-
"path",
|
|
2038
|
-
{
|
|
2039
|
-
fill: "#e8f2fa",
|
|
2040
|
-
d: "M529.14,388.93c.87,2.78-.86,5.05-3.87,5.07-3.01,.02-6.16-2.21-7.03-4.99-.87-2.78,.86-5.05,3.87-5.07,3.01-.02,6.16,2.21,7.03,4.99Z"
|
|
2041
|
-
}
|
|
2042
|
-
),
|
|
2043
|
-
/* @__PURE__ */ jsx(
|
|
2044
|
-
"path",
|
|
2045
|
-
{
|
|
2046
|
-
fill: "#e8f2fa",
|
|
2047
|
-
d: "M551.69,388.77c.87,2.78-.86,5.05-3.87,5.07-3.01,.02-6.16-2.21-7.03-4.99-.87-2.78,.86-5.05,3.87-5.07,3.01-.02,6.16,2.21,7.03,4.99Z"
|
|
2048
|
-
}
|
|
2049
|
-
)
|
|
2050
|
-
] }),
|
|
2051
|
-
/* @__PURE__ */ jsx(
|
|
2052
|
-
"path",
|
|
2053
|
-
{
|
|
2054
|
-
fill: "#ff912b",
|
|
2055
|
-
d: "M559.5,475.35s78.71,.3,135.79,44.69c57.08,44.39,48.85,84.22,96.21,94.2,77.61,16.36,29.43-67.66,130.21-58.92l51.86,202.04h-348.7l-26.57-125.21-38.8-156.79Z"
|
|
2056
|
-
}
|
|
2057
|
-
),
|
|
2058
|
-
/* @__PURE__ */ jsx(
|
|
2059
|
-
"path",
|
|
2060
|
-
{
|
|
2061
|
-
fill: "#fff",
|
|
2062
|
-
d: "M809.47,617.1c-5.34,0-11.34-.72-18.11-2.15-26.14-5.51-35.78-20.39-47.98-39.22-10.11-15.61-22.69-35.03-48.52-55.11-16.21-12.61-44.82-29.59-89.01-38.86-26.44-5.54-46.15-5.68-46.35-5.68v-1.46c.2,0,20.06,.14,46.64,5.72,24.54,5.15,60,16.11,89.59,39.13,26.02,20.24,38.68,39.77,48.85,55.47,12.49,19.28,21.51,33.21,47.07,38.59,36.4,7.67,44.63-6.84,54.16-23.64,10.62-18.71,22.66-39.93,75.97-35.3l-.12,1.45c-52.41-4.55-64.2,16.24-74.6,34.58-4.82,8.5-9.38,16.53-17.46,21.49-5.44,3.34-12.02,4.99-20.12,4.99Z"
|
|
2063
|
-
}
|
|
2064
|
-
),
|
|
2065
|
-
/* @__PURE__ */ jsx(
|
|
2066
|
-
"path",
|
|
2067
|
-
{
|
|
2068
|
-
fill: "#fc7400",
|
|
2069
|
-
d: "M577.88,549.18l20.01,80.88,26.98,127.29h348.7l-17.58-66.1s-51.62-29.18-121.62-3.75c-70,25.44-147.49,1.96-152.48-55.25-5.62-64.51-64.06-95.58-104.01-83.08Z"
|
|
2070
|
-
}
|
|
2071
|
-
),
|
|
2072
|
-
/* @__PURE__ */ jsx(
|
|
2073
|
-
"path",
|
|
2074
|
-
{
|
|
2075
|
-
fill: "#fff",
|
|
2076
|
-
d: "M665.98,587.45c-20.04-31.44-57-47.24-87.89-37.57l-.42-1.39c31.49-9.85,69.13,6.2,89.52,38.17l-1.21,.79Z"
|
|
2077
|
-
}
|
|
2078
|
-
),
|
|
2079
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2080
|
-
/* @__PURE__ */ jsx(
|
|
2081
|
-
"polygon",
|
|
2082
|
-
{
|
|
2083
|
-
fill: "#fff",
|
|
2084
|
-
points: "795.85 620.61 784.52 619.43 785.69 607.94 797.02 609.12 795.85 620.61"
|
|
2085
|
-
}
|
|
2086
|
-
),
|
|
2087
|
-
/* @__PURE__ */ jsx(
|
|
2088
|
-
"polygon",
|
|
2089
|
-
{
|
|
2090
|
-
fill: "#fff",
|
|
2091
|
-
points: "892.8 636.61 701.9 596.39 702.28 594.51 893.18 634.73 892.8 636.61"
|
|
2092
|
-
}
|
|
2093
|
-
),
|
|
2094
|
-
/* @__PURE__ */ jsx(
|
|
2095
|
-
"path",
|
|
2096
|
-
{
|
|
2097
|
-
fill: "#fff",
|
|
2098
|
-
d: "M698.84,595.11c.19-1.82,1.79-3.15,3.59-2.96,1.8,.19,3.1,1.82,2.92,3.64s-1.79,3.15-3.59,2.96c-1.8-.19-3.1-1.82-2.92-3.64Z"
|
|
2099
|
-
}
|
|
2100
|
-
),
|
|
2101
|
-
/* @__PURE__ */ jsx(
|
|
2102
|
-
"path",
|
|
2103
|
-
{
|
|
2104
|
-
fill: "#fff",
|
|
2105
|
-
d: "M889.74,635.33c.19-1.82,1.79-3.15,3.59-2.96,1.8,.19,3.1,1.82,2.92,3.64-.19,1.82-1.79,3.15-3.59,2.96-1.8-.19-3.1-1.82-2.92-3.64Z"
|
|
2106
|
-
}
|
|
2107
|
-
)
|
|
2108
|
-
] }),
|
|
2109
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2110
|
-
/* @__PURE__ */ jsx(
|
|
2111
|
-
"polygon",
|
|
2112
|
-
{
|
|
2113
|
-
fill: "#fff",
|
|
2114
|
-
points: "656.9 504.31 648.61 496.38 656.42 487.98 664.71 495.9 656.9 504.31"
|
|
2115
|
-
}
|
|
2116
|
-
),
|
|
2117
|
-
/* @__PURE__ */ jsx("polygon", { fill: "#fff", points: "687.13 528 622.39 462.58 623.73 461.23 688.46 526.64 687.13 528" }),
|
|
2118
|
-
/* @__PURE__ */ jsx(
|
|
2119
|
-
"path",
|
|
2120
|
-
{
|
|
2121
|
-
fill: "#fff",
|
|
2122
|
-
d: "M620.52,459.81c1.14-1.42,3.2-1.64,4.6-.49,1.4,1.15,1.62,3.24,.48,4.67-1.14,1.42-3.2,1.64-4.6,.49-1.4-1.15-1.62-3.24-.48-4.67Z"
|
|
2123
|
-
}
|
|
2124
|
-
),
|
|
2125
|
-
/* @__PURE__ */ jsx(
|
|
2126
|
-
"path",
|
|
2127
|
-
{
|
|
2128
|
-
fill: "#fff",
|
|
2129
|
-
d: "M685.26,525.23c1.14-1.42,3.2-1.64,4.6-.49s1.62,3.24,.48,4.67c-1.14,1.42-3.2,1.64-4.6,.49-1.4-1.15-1.62-3.24-.48-4.67Z"
|
|
2130
|
-
}
|
|
2131
|
-
)
|
|
2132
|
-
] }),
|
|
2133
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2134
|
-
/* @__PURE__ */ jsx(
|
|
2135
|
-
"polygon",
|
|
2136
|
-
{
|
|
2137
|
-
fill: "#fff",
|
|
2138
|
-
points: "882.44 557.53 877.99 568.16 867.5 563.65 871.96 553.01 882.44 557.53"
|
|
2139
|
-
}
|
|
2140
|
-
),
|
|
2141
|
-
/* @__PURE__ */ jsx(
|
|
2142
|
-
"polygon",
|
|
2143
|
-
{
|
|
2144
|
-
fill: "#fff",
|
|
2145
|
-
points: "863.91 587.74 862.2 586.94 886.44 533.18 888.16 533.98 863.91 587.74"
|
|
2146
|
-
}
|
|
2147
|
-
),
|
|
2148
|
-
/* @__PURE__ */ jsx(
|
|
2149
|
-
"path",
|
|
2150
|
-
{
|
|
2151
|
-
fill: "#fff",
|
|
2152
|
-
d: "M862,590.48c-1.71-.59-2.63-2.47-2.05-4.21,.58-1.74,2.44-2.66,4.15-2.08,1.71,.59,2.63,2.47,2.05,4.21-.58,1.74-2.44,2.66-4.15,2.08Z"
|
|
2153
|
-
}
|
|
2154
|
-
),
|
|
2155
|
-
/* @__PURE__ */ jsx(
|
|
2156
|
-
"path",
|
|
2157
|
-
{
|
|
2158
|
-
fill: "#fff",
|
|
2159
|
-
d: "M886.25,536.72c-1.71-.59-2.63-2.47-2.05-4.21,.58-1.74,2.44-2.66,4.15-2.08,1.71,.59,2.63,2.47,2.05,4.21-.58,1.74-2.44,2.66-4.15,2.08Z"
|
|
2160
|
-
}
|
|
2161
|
-
)
|
|
2162
|
-
] }),
|
|
2163
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2164
|
-
/* @__PURE__ */ jsx(
|
|
2165
|
-
"path",
|
|
2166
|
-
{
|
|
2167
|
-
fill: "#cedfff",
|
|
2168
|
-
d: "M933.58,440.32l17.72,74.3c.76,3.18-2.2,5.76-6.61,5.76h-182.3c-4.41,0-8.6-2.58-9.35-5.76l-17.72-74.3c-.76-3.18,2.2-5.76,6.61-5.76h182.3c4.41,0,8.59,2.58,9.35,5.76Z"
|
|
2169
|
-
}
|
|
2170
|
-
),
|
|
2171
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2172
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2173
|
-
/* @__PURE__ */ jsx(
|
|
2174
|
-
"polygon",
|
|
2175
|
-
{
|
|
2176
|
-
fill: "#25468f",
|
|
2177
|
-
points: "781.52 483.78 762.12 483.78 757.43 464.1 776.83 464.1 781.52 483.78"
|
|
2178
|
-
}
|
|
2179
|
-
),
|
|
2180
|
-
/* @__PURE__ */ jsx(
|
|
2181
|
-
"polygon",
|
|
2182
|
-
{
|
|
2183
|
-
fill: "#25468f",
|
|
2184
|
-
points: "793.57 493.62 774.17 493.62 769.47 473.94 788.88 473.94 793.57 493.62"
|
|
2185
|
-
}
|
|
2186
|
-
)
|
|
2187
|
-
] }),
|
|
2188
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2189
|
-
/* @__PURE__ */ jsx(
|
|
2190
|
-
"polygon",
|
|
2191
|
-
{
|
|
2192
|
-
fill: "#25468f",
|
|
2193
|
-
points: "826.82 483.78 807.42 483.78 802.72 464.1 822.12 464.1 826.82 483.78"
|
|
2194
|
-
}
|
|
2195
|
-
),
|
|
2196
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2197
|
-
/* @__PURE__ */ jsx(
|
|
2198
|
-
"polygon",
|
|
2199
|
-
{
|
|
2200
|
-
fill: "#6b98f6",
|
|
2201
|
-
points: "838.87 493.62 819.47 493.62 814.77 473.94 834.17 473.94 838.87 493.62"
|
|
2202
|
-
}
|
|
2203
|
-
),
|
|
2204
|
-
/* @__PURE__ */ jsx(
|
|
2205
|
-
"path",
|
|
2206
|
-
{
|
|
2207
|
-
fill: "#183a76",
|
|
2208
|
-
d: "M839.9,494.47h-21.06l-5.1-21.36h21.06l5.1,21.36Zm-19.8-1.68h17.75l-4.29-18h-17.75l4.29,18Z"
|
|
2209
|
-
}
|
|
2210
|
-
)
|
|
2211
|
-
] })
|
|
2212
|
-
] }),
|
|
2213
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2214
|
-
/* @__PURE__ */ jsx(
|
|
2215
|
-
"polygon",
|
|
2216
|
-
{
|
|
2217
|
-
fill: "#6b98f6",
|
|
2218
|
-
points: "872.12 483.78 852.71 483.78 848.02 464.1 867.42 464.1 872.12 483.78"
|
|
2219
|
-
}
|
|
2220
|
-
),
|
|
2221
|
-
/* @__PURE__ */ jsx(
|
|
2222
|
-
"path",
|
|
2223
|
-
{
|
|
2224
|
-
fill: "#25468f",
|
|
2225
|
-
d: "M873.14,484.62h-21.06l-5.1-21.36h21.06l5.1,21.36Zm-19.8-1.68h17.75l-4.29-18h-17.75l4.29,18Z"
|
|
2226
|
-
}
|
|
2227
|
-
),
|
|
2228
|
-
/* @__PURE__ */ jsx(
|
|
2229
|
-
"polygon",
|
|
2230
|
-
{
|
|
2231
|
-
fill: "#6b98f6",
|
|
2232
|
-
points: "884.16 493.62 864.76 493.62 860.07 473.94 879.47 473.94 884.16 493.62"
|
|
2233
|
-
}
|
|
2234
|
-
),
|
|
2235
|
-
/* @__PURE__ */ jsx(
|
|
2236
|
-
"path",
|
|
2237
|
-
{
|
|
2238
|
-
fill: "#25468f",
|
|
2239
|
-
d: "M885.19,494.47h-21.06l-5.1-21.36h21.06l5.1,21.36Zm-19.8-1.68h17.75l-4.29-18h-17.75l4.29,18Z"
|
|
2240
|
-
}
|
|
2241
|
-
),
|
|
2242
|
-
/* @__PURE__ */ jsx(
|
|
2243
|
-
"polygon",
|
|
2244
|
-
{
|
|
2245
|
-
fill: "#25468f",
|
|
2246
|
-
points: "873.14 484.58 861.71 484.58 858.97 473.1 870.4 473.1 873.14 484.58"
|
|
2247
|
-
}
|
|
2248
|
-
)
|
|
2249
|
-
] }),
|
|
2250
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2251
|
-
/* @__PURE__ */ jsx(
|
|
2252
|
-
"polygon",
|
|
2253
|
-
{
|
|
2254
|
-
fill: "#25468f",
|
|
2255
|
-
points: "917.41 483.78 898.01 483.78 893.31 464.1 912.72 464.1 917.41 483.78"
|
|
2256
|
-
}
|
|
2257
|
-
),
|
|
2258
|
-
/* @__PURE__ */ jsx(
|
|
2259
|
-
"polygon",
|
|
2260
|
-
{
|
|
2261
|
-
fill: "#25468f",
|
|
2262
|
-
points: "929.46 493.62 910.06 493.62 905.36 473.94 924.77 473.94 929.46 493.62"
|
|
2263
|
-
}
|
|
2264
|
-
),
|
|
2265
|
-
/* @__PURE__ */ jsx(
|
|
2266
|
-
"polygon",
|
|
2267
|
-
{
|
|
2268
|
-
fill: "#6b98f6",
|
|
2269
|
-
points: "916.86 483.31 907.97 483.31 905.84 474.37 914.73 474.37 916.86 483.31"
|
|
2270
|
-
}
|
|
2271
|
-
)
|
|
2272
|
-
] })
|
|
2273
|
-
] })
|
|
2274
|
-
] }),
|
|
2275
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2276
|
-
/* @__PURE__ */ jsx(
|
|
2277
|
-
"path",
|
|
2278
|
-
{
|
|
2279
|
-
fill: "#3c4aaa",
|
|
2280
|
-
d: "M429.21,674.95h-67.18c-8.96,0-17.83-7.37-19.81-16.46l-50.55-231.5c-1.98-9.09,3.67-16.46,12.63-16.46h67.18c8.96,0,17.83,7.37,19.81,16.46l50.55,231.5c1.98,9.09-3.67,16.46-12.63,16.46Z"
|
|
2281
|
-
}
|
|
2282
|
-
),
|
|
2283
|
-
/* @__PURE__ */ jsx("rect", { fill: "#a9c2ff", height: ".44", width: "99.62", y: "462.59", x: "299.49" }),
|
|
2284
|
-
/* @__PURE__ */ jsx("rect", { fill: "#a9c2ff", height: ".44", width: "99.63", y: "517.14", x: "311.4" }),
|
|
2285
|
-
/* @__PURE__ */ jsx("rect", { fill: "#a9c2ff", height: ".44", width: "99.63", y: "571.69", x: "323.31" }),
|
|
2286
|
-
/* @__PURE__ */ jsx(
|
|
2287
|
-
"path",
|
|
2288
|
-
{
|
|
2289
|
-
fill: "#fff",
|
|
2290
|
-
d: "M360.43,446.51c.13-1.17-5.02-21.24-5.02-21.24l18.26,15.01-8.97-.32-4.27,6.56Z"
|
|
2291
|
-
}
|
|
2292
|
-
),
|
|
2293
|
-
/* @__PURE__ */ jsx(
|
|
2294
|
-
"path",
|
|
2295
|
-
{
|
|
2296
|
-
fill: "#cedfff",
|
|
2297
|
-
d: "M415.47,651.23h-35.38l-7.83-35.84h35.38l7.83,35.84Zm-33.8-2h31.35l-6.95-31.85h-31.35l6.95,31.85Z"
|
|
2298
|
-
}
|
|
2299
|
-
),
|
|
2300
|
-
/* @__PURE__ */ jsx(
|
|
2301
|
-
"polygon",
|
|
2302
|
-
{
|
|
2303
|
-
fill: "#ff7536",
|
|
2304
|
-
points: "390.05 630.85 356.68 630.85 349.29 597 382.66 597 390.05 630.85"
|
|
2305
|
-
}
|
|
2306
|
-
),
|
|
2307
|
-
/* @__PURE__ */ jsx("polygon", { fill: "#ff7536", points: "382 651.12 379.75 649.34 405.73 615.5 407.98 617.27 382 651.12" }),
|
|
2308
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2309
|
-
/* @__PURE__ */ jsx(
|
|
2310
|
-
"path",
|
|
2311
|
-
{
|
|
2312
|
-
fill: "#cedfff",
|
|
2313
|
-
d: "M315.51,446.51c.13-1.17-5.02-21.24-5.02-21.24l18.26,15.01-8.97-.32-4.27,6.56Z"
|
|
2314
|
-
}
|
|
2315
|
-
),
|
|
2316
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2317
|
-
/* @__PURE__ */ jsx(
|
|
2318
|
-
"polygon",
|
|
2319
|
-
{
|
|
2320
|
-
fill: "#cedfff",
|
|
2321
|
-
points: "322.59 486.27 319.9 486.27 318.83 481.4 337.08 481.4 338.1 486.08 335.41 486.08 334.99 484.13 322.12 484.13 322.59 486.27"
|
|
2322
|
-
}
|
|
2323
|
-
),
|
|
2324
|
-
/* @__PURE__ */ jsx(
|
|
2325
|
-
"polygon",
|
|
2326
|
-
{
|
|
2327
|
-
fill: "#cedfff",
|
|
2328
|
-
points: "332.96 498.16 330.27 498.16 326.91 482.76 329.6 482.76 332.96 498.16"
|
|
2329
|
-
}
|
|
2330
|
-
),
|
|
2331
|
-
/* @__PURE__ */ jsx(
|
|
2332
|
-
"polygon",
|
|
2333
|
-
{
|
|
2334
|
-
fill: "#cedfff",
|
|
2335
|
-
points: "335.38 499.13 328.28 499.13 327.68 496.4 334.79 496.4 335.38 499.13"
|
|
2336
|
-
}
|
|
2337
|
-
)
|
|
2338
|
-
] }),
|
|
2339
|
-
/* @__PURE__ */ jsx(
|
|
2340
|
-
"polygon",
|
|
2341
|
-
{
|
|
2342
|
-
fill: "#cedfff",
|
|
2343
|
-
points: "371.78 500.83 369.35 499.06 382.17 478.6 384.6 480.37 371.78 500.83"
|
|
2344
|
-
}
|
|
2345
|
-
),
|
|
2346
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2347
|
-
/* @__PURE__ */ jsx(
|
|
2348
|
-
"path",
|
|
2349
|
-
{
|
|
2350
|
-
fill: "#cedfff",
|
|
2351
|
-
d: "M340.97,548.52c-5.13,0-10.23-4.24-11.37-9.44-1.14-5.21,2.11-9.44,7.25-9.44s10.23,4.24,11.37,9.44c1.14,5.21-2.11,9.44-7.25,9.44Zm-3.58-16.39c-3.78,0-6.17,3.12-5.33,6.95,.84,3.83,4.59,6.95,8.37,6.95s6.17-3.12,5.33-6.95c-.84-3.83-4.59-6.95-8.37-6.95Z"
|
|
2352
|
-
}
|
|
2353
|
-
),
|
|
2354
|
-
/* @__PURE__ */ jsx(
|
|
2355
|
-
"path",
|
|
2356
|
-
{
|
|
2357
|
-
fill: "#cedfff",
|
|
2358
|
-
d: "M358.69,556.72c-.32,0-.67-.13-.97-.38l-12.38-10.57c-.58-.5-.74-1.28-.36-1.76,.38-.48,1.17-.46,1.75,.03l12.38,10.57c.58,.5,.74,1.28,.36,1.76-.19,.23-.47,.35-.78,.35Z"
|
|
2359
|
-
}
|
|
2360
|
-
)
|
|
2361
|
-
] }),
|
|
2362
|
-
/* @__PURE__ */ jsx(
|
|
2363
|
-
"polygon",
|
|
2364
|
-
{
|
|
2365
|
-
fill: "#cedfff",
|
|
2366
|
-
points: "385.5 528.76 390.11 537.32 398.98 537.32 392.96 542.61 397.57 551.16 389.24 545.87 383.22 551.16 384.09 542.61 375.76 537.32 384.63 537.32 385.5 528.76"
|
|
2367
|
-
}
|
|
2368
|
-
)
|
|
2369
|
-
] })
|
|
2370
|
-
] }),
|
|
2371
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2372
|
-
/* @__PURE__ */ jsx(
|
|
2373
|
-
"path",
|
|
2374
|
-
{
|
|
2375
|
-
fill: "#fa8b79",
|
|
2376
|
-
d: "M1241.96,453.88s.24,13.48-1.75,13.23c-1.99-.25-4.7-11.3-4.72-11.14-.02,.17,.9,11.62-1.6,12.19-2.51,.57-5.05-12.13-5.05-12.13,0,0,1.68,10.9-.08,11.19-1.76,.29-4.54-10.28-5.27-10.31-.73-.03,2.34,9.06,.19,9.53-2.15,.46-6.94-12.33-5.32-13.96,1.62-1.63,4.15,.11,4.15,.11,0,0,3.12-2.35,5.52-1.02,0,0,5.62-1.14,7.31,1.39,0,0,3.51-3.06,6.61,.91Z"
|
|
2377
|
-
}
|
|
2378
|
-
),
|
|
2379
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2380
|
-
/* @__PURE__ */ jsx(
|
|
2381
|
-
"path",
|
|
2382
|
-
{
|
|
2383
|
-
fill: "#cedfff",
|
|
2384
|
-
d: "M1278.23,402.24l45.59,166.75c1.95,7.13-2.5,12.92-9.94,12.92h-307.72c-7.44,0-15.05-5.78-17-12.92l-45.59-166.75c-1.95-7.13,2.5-12.92,9.94-12.92h307.72c7.44,0,15.05,5.78,17,12.92Z"
|
|
2385
|
-
}
|
|
2386
|
-
),
|
|
2387
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2388
|
-
/* @__PURE__ */ jsx(
|
|
2389
|
-
"polygon",
|
|
2390
|
-
{
|
|
2391
|
-
fill: "#b0c0ff",
|
|
2392
|
-
points: "1038.92 477.47 999.17 477.47 988.15 437.16 1027.89 437.16 1038.92 477.47"
|
|
2393
|
-
}
|
|
2394
|
-
),
|
|
2395
|
-
/* @__PURE__ */ jsx(
|
|
2396
|
-
"polygon",
|
|
2397
|
-
{
|
|
2398
|
-
fill: "#5158bf",
|
|
2399
|
-
points: "1026.48 467.6 1006.21 467.6 1000.59 447.03 1020.86 447.03 1026.48 467.6"
|
|
2400
|
-
}
|
|
2401
|
-
),
|
|
2402
|
-
/* @__PURE__ */ jsx(
|
|
2403
|
-
"polygon",
|
|
2404
|
-
{
|
|
2405
|
-
fill: "#ff7536",
|
|
2406
|
-
points: "1000.44 478.4 997.91 476.54 1026.63 436.23 1029.16 438.08 1000.44 478.4"
|
|
2407
|
-
}
|
|
2408
|
-
),
|
|
2409
|
-
/* @__PURE__ */ jsx(
|
|
2410
|
-
"polygon",
|
|
2411
|
-
{
|
|
2412
|
-
fill: "#ff7536",
|
|
2413
|
-
points: "1010.63 455.62 970.89 455.62 959.87 415.3 999.61 415.3 1010.63 455.62"
|
|
2414
|
-
}
|
|
2415
|
-
)
|
|
2416
|
-
] }),
|
|
2417
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2418
|
-
/* @__PURE__ */ jsx(
|
|
2419
|
-
"polygon",
|
|
2420
|
-
{
|
|
2421
|
-
fill: "#ff7536",
|
|
2422
|
-
points: "1033.21 525.04 1001.26 525.04 992.4 492.63 1024.35 492.63 1033.21 525.04"
|
|
2423
|
-
}
|
|
2424
|
-
),
|
|
2425
|
-
/* @__PURE__ */ jsx(
|
|
2426
|
-
"polygon",
|
|
2427
|
-
{
|
|
2428
|
-
fill: "#fc7600",
|
|
2429
|
-
points: "1064.86 525.04 1032.91 525.04 1024.05 492.63 1056 492.63 1064.86 525.04"
|
|
2430
|
-
}
|
|
2431
|
-
),
|
|
2432
|
-
/* @__PURE__ */ jsx(
|
|
2433
|
-
"polygon",
|
|
2434
|
-
{
|
|
2435
|
-
fill: "#ff8111",
|
|
2436
|
-
points: "1096.81 525.04 1064.86 525.04 1056 492.63 1087.95 492.63 1096.81 525.04"
|
|
2437
|
-
}
|
|
2438
|
-
),
|
|
2439
|
-
/* @__PURE__ */ jsx(
|
|
2440
|
-
"polygon",
|
|
2441
|
-
{
|
|
2442
|
-
fill: "#6b98f6",
|
|
2443
|
-
points: "1128.76 525.04 1096.81 525.04 1087.95 492.63 1119.9 492.63 1128.76 525.04"
|
|
2444
|
-
}
|
|
2445
|
-
),
|
|
2446
|
-
/* @__PURE__ */ jsx(
|
|
2447
|
-
"polygon",
|
|
2448
|
-
{
|
|
2449
|
-
fill: "#899bfa",
|
|
2450
|
-
points: "1160.71 525.04 1128.76 525.04 1119.9 492.63 1151.85 492.63 1160.71 525.04"
|
|
2451
|
-
}
|
|
2452
|
-
),
|
|
2453
|
-
/* @__PURE__ */ jsx(
|
|
2454
|
-
"polygon",
|
|
2455
|
-
{
|
|
2456
|
-
fill: "#697ee3",
|
|
2457
|
-
points: "1192.66 525.04 1160.71 525.04 1151.85 492.63 1183.8 492.63 1192.66 525.04"
|
|
2458
|
-
}
|
|
2459
|
-
),
|
|
2460
|
-
/* @__PURE__ */ jsx(
|
|
2461
|
-
"polygon",
|
|
2462
|
-
{
|
|
2463
|
-
fill: "#5158bf",
|
|
2464
|
-
points: "1224.61 525.04 1192.66 525.04 1183.8 492.63 1215.75 492.63 1224.61 525.04"
|
|
2465
|
-
}
|
|
2466
|
-
),
|
|
2467
|
-
/* @__PURE__ */ jsx(
|
|
2468
|
-
"polygon",
|
|
2469
|
-
{
|
|
2470
|
-
fill: "#25468f",
|
|
2471
|
-
points: "1256.56 525.04 1224.61 525.04 1215.75 492.63 1247.7 492.63 1256.56 525.04"
|
|
2472
|
-
}
|
|
2473
|
-
),
|
|
2474
|
-
/* @__PURE__ */ jsx(
|
|
2475
|
-
"polygon",
|
|
2476
|
-
{
|
|
2477
|
-
fill: "#a1b3ff",
|
|
2478
|
-
points: "1042.07 557.45 1010.12 557.45 1001.26 525.04 1033.21 525.04 1042.07 557.45"
|
|
2479
|
-
}
|
|
2480
|
-
),
|
|
2481
|
-
/* @__PURE__ */ jsx(
|
|
2482
|
-
"polygon",
|
|
2483
|
-
{
|
|
2484
|
-
fill: "#899bfa",
|
|
2485
|
-
points: "1073.72 557.45 1041.77 557.45 1032.91 525.04 1064.86 525.04 1073.72 557.45"
|
|
2486
|
-
}
|
|
2487
|
-
),
|
|
2488
|
-
/* @__PURE__ */ jsx(
|
|
2489
|
-
"polygon",
|
|
2490
|
-
{
|
|
2491
|
-
fill: "#5158bf",
|
|
2492
|
-
points: "1105.67 557.45 1073.72 557.45 1064.86 525.04 1096.81 525.04 1105.67 557.45"
|
|
2493
|
-
}
|
|
2494
|
-
),
|
|
2495
|
-
/* @__PURE__ */ jsx(
|
|
2496
|
-
"polygon",
|
|
2497
|
-
{
|
|
2498
|
-
fill: "#25468f",
|
|
2499
|
-
points: "1137.62 557.45 1105.67 557.45 1096.81 525.04 1128.76 525.04 1137.62 557.45"
|
|
2500
|
-
}
|
|
2501
|
-
)
|
|
2502
|
-
] }),
|
|
2503
|
-
/* @__PURE__ */ jsx(
|
|
2504
|
-
"path",
|
|
2505
|
-
{
|
|
2506
|
-
fill: "#ff8111",
|
|
2507
|
-
d: "M1258.13,429.21h-167.36c-2.3,0-4.7-1.91-5.34-4.24h0c-.64-2.33,.72-4.24,3.02-4.24h167.36c2.3,0,4.7,1.91,5.34,4.24h0c.64,2.33-.72,4.24-3.02,4.24Z"
|
|
2508
|
-
}
|
|
2509
|
-
),
|
|
2510
|
-
/* @__PURE__ */ jsx(
|
|
2511
|
-
"path",
|
|
2512
|
-
{
|
|
2513
|
-
fill: "#6b98f6",
|
|
2514
|
-
d: "M1263.98,450.63h-167.36c-2.3,0-4.7-1.91-5.34-4.24h0c-.64-2.33,.72-4.24,3.02-4.24h167.36c2.3,0,4.7,1.91,5.34,4.24h0c.64,2.33-.72,4.24-3.02,4.24Z"
|
|
2515
|
-
}
|
|
2516
|
-
),
|
|
2517
|
-
/* @__PURE__ */ jsx(
|
|
2518
|
-
"path",
|
|
2519
|
-
{
|
|
2520
|
-
fill: "#5158bf",
|
|
2521
|
-
d: "M1269.84,472.05h-167.36c-2.3,0-4.7-1.91-5.34-4.24h0c-.64-2.33,.72-4.24,3.02-4.24h167.36c2.3,0,4.7,1.91,5.34,4.24h0c.64,2.33-.72,4.24-3.02,4.24Z"
|
|
2522
|
-
}
|
|
2523
|
-
),
|
|
2524
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2525
|
-
/* @__PURE__ */ jsx(
|
|
2526
|
-
"path",
|
|
2527
|
-
{
|
|
2528
|
-
fill: "#5158bf",
|
|
2529
|
-
d: "M1062.31,418.73h5.04c2.65,0,4.59,1.44,5.2,3.65,.51,1.88-.29,3.01-1.75,3.47l4.24,4.34h-2.34l-3.9-4h-2.45l1.09,4h-1.99l-3.14-11.47Zm6.45,5.68c1.42,0,2.12-.75,1.79-1.95-.34-1.23-1.39-1.9-2.86-1.9h-2.89l1.05,3.85h2.91Z"
|
|
2530
|
-
}
|
|
2531
|
-
),
|
|
2532
|
-
/* @__PURE__ */ jsx(
|
|
2533
|
-
"path",
|
|
2534
|
-
{
|
|
2535
|
-
fill: "#5158bf",
|
|
2536
|
-
d: "M1068.12,446.11c-.88-3.21,.8-5.93,4.21-5.93,1.97,0,3.33,.56,4.77,1.56l-.84,1.52c-1.08-.75-2.06-1.23-3.5-1.23-2.08,0-3.16,1.85-2.55,4.08,.64,2.36,2.65,4.1,4.96,4.1,1.07,0,1.94-.34,2.49-.87l-.59-2.15h-2.89l-.48-1.75h4.81l1.32,4.82c-.85,.97-2.23,1.79-4.23,1.79-3.54,0-6.56-2.56-7.48-5.93Z"
|
|
2537
|
-
}
|
|
2538
|
-
),
|
|
2539
|
-
/* @__PURE__ */ jsx(
|
|
2540
|
-
"path",
|
|
2541
|
-
{
|
|
2542
|
-
fill: "#5158bf",
|
|
2543
|
-
d: "M1074.44,463.09h5.07c1.29,0,2.41,.36,3.23,1.02,.64,.51,1.07,1.13,1.29,1.93,.38,1.38-.2,2.11-.92,2.56,1.45,.46,2.58,1.23,3.01,2.82,.56,2.05-.8,3.15-3.32,3.15h-5.23l-3.14-11.47Zm5.99,4.83c1.28,0,1.99-.51,1.7-1.59-.25-.9-1.11-1.46-2.38-1.46h-2.86l.83,3.05h2.71Zm1.91,4.85c1.36,0,2.03-.54,1.74-1.61-.26-.97-1.18-1.54-2.75-1.54h-3.15l.86,3.15h3.29Z"
|
|
2544
|
-
}
|
|
2545
|
-
)
|
|
2546
|
-
] })
|
|
2547
|
-
] })
|
|
2548
|
-
] }),
|
|
2549
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2550
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2551
|
-
/* @__PURE__ */ jsx(
|
|
2552
|
-
"path",
|
|
2553
|
-
{
|
|
2554
|
-
fill: "#ffae73",
|
|
2555
|
-
d: "M640.44,422.49c-.89,1.03-1,2.18-.56,3.41,0,0,0,.01,0,.02,.81,2.27,3.49,4.81,6.6,7.35,.4,.33,.75,.62,1.06,.9,.08,.07,.16,.14,.24,.22,.06,.06,.12,.11,.18,.17,2.9,2.71,1.81,3.34,7.03,8.85,5.95,6.28,10.04,6.39,11.21,5.82,.99-.49-1.02-3.82-3.23-7.56-.11-.18-.21-.36-.32-.55-.3-.5-.59-1-.88-1.5-2.6-4.5-1.93-6.62-1.32-13.32,.5-5.45,8.35-30.42,8.35-30.42l-11.4-1.99s-3.43,19.89-7.21,22.95c-2.02,1.63-4.29,1.65-6.23,2.86-.14,.08-.27,.17-.4,.26-1.1,.74-2.23,1.51-3.12,2.54Z"
|
|
2556
|
-
}
|
|
2557
|
-
),
|
|
2558
|
-
/* @__PURE__ */ jsx(
|
|
2559
|
-
"path",
|
|
2560
|
-
{
|
|
2561
|
-
fill: "#1e3865",
|
|
2562
|
-
d: "M640.44,422.49c-.89,1.03-1,2.18-.56,3.41,0,0,0,.01,0,.02,.99,2.27,3.61,4.8,6.62,7.33,.39,.33,.74,.64,1.05,.92,.08,.07,.16,.14,.24,.22,.06,.06,.12,.11,.18,.17,2.9,2.71,1.81,3.34,7.03,8.85,5.95,6.28,10.04,6.39,11.21,5.82,.99-.49-1.02-3.82-3.23-7.56-1.16-.43-6.54-2.65-10.6-7.92-3.45-4.47-5.79-10.16-8.14-13.65-.26-.05-.41-.08-.67-.13-1.1,.74-2.23,1.51-3.12,2.54Z"
|
|
2563
|
-
}
|
|
2564
|
-
),
|
|
2565
|
-
/* @__PURE__ */ jsx(
|
|
2566
|
-
"path",
|
|
2567
|
-
{
|
|
2568
|
-
fill: "#ffae73",
|
|
2569
|
-
d: "M732.33,415.27c.7,3.57,5.72,2.97,11.32,1.58,5.6-1.39,4.27,.26,12.24-.63,7.97-.9,10.39-3.91,10.63-5.11,.22-1.07-3.72-1.44-7.95-1.94-.53-.06-1.07-.13-1.6-.19-4.77-.61-8.26-3.73-12.6-6.29-4.1-2.43-10.23-12.33-10.23-12.33l-10.93,.88s5.74,8.84,7.96,12.68c1.31,2.26,1.24,5.25,1.07,7.56-.08,1.25-.17,2.54,.08,3.79Z"
|
|
2570
|
-
}
|
|
2571
|
-
),
|
|
2572
|
-
/* @__PURE__ */ jsx(
|
|
2573
|
-
"path",
|
|
2574
|
-
{
|
|
2575
|
-
fill: "#1e3865",
|
|
2576
|
-
d: "M743.65,416.85c5.6-1.39,4.27,.26,12.24-.63,7.97-.9,10.39-3.91,10.63-5.11,.22-1.07-3.72-1.44-7.95-1.94l-.04,.08s-4.78,3.44-11.42,3.6c-5.41,.13-11.14-1.44-14.87-1.38-.08,1.25-.17,2.54,.08,3.79,.7,3.57,5.72,2.97,11.32,1.58Z"
|
|
2577
|
-
}
|
|
2578
|
-
),
|
|
2579
|
-
/* @__PURE__ */ jsx(
|
|
2580
|
-
"path",
|
|
2581
|
-
{
|
|
2582
|
-
fill: "#f28018",
|
|
2583
|
-
d: "M690.43,344.35l-10.22,27.9-13.34,36.43s-3.62,.35-7.09-.66c-3.19-.94-6.86-3.39-6.86-3.39,0,0,3.71-39.12,10.62-61.57,1.77-5.76,3.76-10.43,5.95-13.05,10.72-12.85,20.95,14.33,20.95,14.33Z"
|
|
2584
|
-
}
|
|
2585
|
-
),
|
|
2586
|
-
/* @__PURE__ */ jsx(
|
|
2587
|
-
"path",
|
|
2588
|
-
{
|
|
2589
|
-
fill: "#ff912b",
|
|
2590
|
-
d: "M680.04,300.04c-5.82-1.9-21-.03-37.47,2.99-4.55,.84-9.14-1.27-11.53-5.28h0l-41.44-3.28s-13.68,30.76-6.19,50.36c1.1,2.88,3.52,4.68,7.24,4.74h0s25.04,.04,33.05,.04c20.61,0,43.62-14.37,46.59-14.97,4.87-.99,6.82,8.89,11.69,19.27,4.87,10.38,45.79,45.96,45.79,45.96,0,0,6.29,.06,8.89-.92,2.79-1.06,3.82-2.44,3.82-2.44,0,0-45.34-91.51-60.45-96.45Z"
|
|
2591
|
-
}
|
|
2592
|
-
),
|
|
2593
|
-
/* @__PURE__ */ jsx(
|
|
2594
|
-
"path",
|
|
2595
|
-
{
|
|
2596
|
-
fill: "#10294c",
|
|
2597
|
-
d: "M626.64,174.3c-3.08-1.86-6.08-2.14-7.92-2.09-1.28,.04-2.56-.05-3.82-.23-15.82-2.35-25.34,20.95-25.9,27.99-1.02,12.93-7.77,14.9-17.26,23-19.03,16.23-13.45,35.1-3.04,42.11,6.24,4.21,17.25,0,17.25,0,.16,.11,30.09-16.98,44.85-25.22,22.12-3.19,4.73-60.19-4.16-65.55Z"
|
|
2598
|
-
}
|
|
2599
|
-
),
|
|
2600
|
-
/* @__PURE__ */ jsx(
|
|
2601
|
-
"path",
|
|
2602
|
-
{
|
|
2603
|
-
fill: "#ffae73",
|
|
2604
|
-
d: "M618.43,232.84c.06,.04-7.26,2.58-12.16,.38-4.61-2.07-8.1-9.76-8.03-9.76,2.1-.1,4.4-1.96,6.17-14.16l.89,.32,15.01,5.48s-1.09,4.89-1.79,9.54c-.59,3.91-.91,7.65-.09,8.2Z"
|
|
2605
|
-
}
|
|
2606
|
-
),
|
|
2607
|
-
/* @__PURE__ */ jsx(
|
|
2608
|
-
"path",
|
|
2609
|
-
{
|
|
2610
|
-
fill: "#f9924f",
|
|
2611
|
-
d: "M620.31,215.1s-.6,2.64-1.47,7.56c-8.62-1.57-12.32-8.31-13.54-13.04l15.01,5.48Z"
|
|
2612
|
-
}
|
|
2613
|
-
),
|
|
2614
|
-
/* @__PURE__ */ jsx(
|
|
2615
|
-
"path",
|
|
2616
|
-
{
|
|
2617
|
-
fill: "#ffae73",
|
|
2618
|
-
d: "M622.54,219.95s-20.53-2.8-18.62-15.74c1.91-12.95,.55-22.02,13.74-20.79,13.19,1.24,15,6.56,15.4,11.04,.4,4.48-5.13,25.88-10.52,25.49Z"
|
|
2619
|
-
}
|
|
2620
|
-
),
|
|
2621
|
-
/* @__PURE__ */ jsx(
|
|
2622
|
-
"path",
|
|
2623
|
-
{
|
|
2624
|
-
fill: "#10294c",
|
|
2625
|
-
d: "M632.32,187.37s-13.15,11.49-22.09,12.42c-8.94,.93-12.33-1.98-12.33-1.98,0,0,5.27-4.44,8.44-11.6,.93-2.11,2.91-3.56,5.18-3.76,6.38-.56,18.49-.81,20.79,4.93Z"
|
|
2626
|
-
}
|
|
2627
|
-
),
|
|
2628
|
-
/* @__PURE__ */ jsx(
|
|
2629
|
-
"path",
|
|
2630
|
-
{
|
|
2631
|
-
fill: "#10294c",
|
|
2632
|
-
d: "M624.1,186.34s4.4,4.31,5.78,7.51c1.34,3.09,1.74,10.47,.67,13.4,0,0,6.85-13.51,2.97-20.08-4.11-6.96-9.43-.84-9.43-.84Z"
|
|
2633
|
-
}
|
|
2634
|
-
),
|
|
2635
|
-
/* @__PURE__ */ jsx(
|
|
2636
|
-
"path",
|
|
2637
|
-
{
|
|
2638
|
-
fill: "#899bfa",
|
|
2639
|
-
d: "M635.72,263.52c-.62,42.17-.17,33.35-4.72,37.36-1.1,.96-4.18,1.54-8.23,1.81-12.75,.86-35.15-1.27-36-3.66-2.94-8.27-.86-10.84-3.32-23.49-.26-1.35-.57-2.8-.94-4.39-2.05-8.69-4.04-11.65,3.22-25.62,6.58-12.65,13.42-22.92,14.03-22.55,17.36,10.45,18.76,1.67,18.76,1.67,0,0,17.51,18.31,17.2,38.88Z"
|
|
2640
|
-
}
|
|
2641
|
-
),
|
|
2642
|
-
/* @__PURE__ */ jsx(
|
|
2643
|
-
"path",
|
|
2644
|
-
{
|
|
2645
|
-
fill: "#ff912b",
|
|
2646
|
-
d: "M680.21,372.25l-13.34,36.43s-3.62,.35-7.09-.66c-3.19-.94-6.86-3.39-6.86-3.39,0,0,3.71-39.12,10.62-61.57l16.67,29.18Z"
|
|
2647
|
-
}
|
|
2648
|
-
),
|
|
2649
|
-
/* @__PURE__ */ jsx(
|
|
2650
|
-
"path",
|
|
2651
|
-
{
|
|
2652
|
-
fill: "#899bfa",
|
|
2653
|
-
d: "M618.52,224.64s17.86,3.07,19.96,10.87c2.1,7.8,9,55.16,9,55.16,0,0-5.04,4.99-9.23,.73-4.19-4.26-13.2-44.31-13.2-44.31l-6.53-22.46Z"
|
|
2654
|
-
}
|
|
2655
|
-
),
|
|
2656
|
-
/* @__PURE__ */ jsx(
|
|
2657
|
-
"path",
|
|
2658
|
-
{
|
|
2659
|
-
fill: "#6f7deb",
|
|
2660
|
-
d: "M622.77,302.69c-12.75,.86-35.15-1.27-36-3.66-2.94-8.27-.86-10.84-3.32-23.49l6.15-17.56s-1.02,19.55,4.67,24.7c5.68,5.14,23.28,9.93,26.04,14.23,1.33,2.06,2.21,4.13,2.47,5.79Z"
|
|
2661
|
-
}
|
|
2662
|
-
),
|
|
2663
|
-
/* @__PURE__ */ jsx(
|
|
2664
|
-
"path",
|
|
2665
|
-
{
|
|
2666
|
-
fill: "#ffae73",
|
|
2667
|
-
d: "M608.17,294.46s12.57-2.84,14.6-1.71c2.03,1.13,6.99,5.25,7.61,6.69,.62,1.43-4.52-1.09-6.19-1.54-1.08-.29-3.93,.71-5.34,1.19-5.93,2.01-9.57,.97-9.57,.97l-1.11-5.6Z"
|
|
2668
|
-
}
|
|
2669
|
-
),
|
|
2670
|
-
/* @__PURE__ */ jsx(
|
|
2671
|
-
"path",
|
|
2672
|
-
{
|
|
2673
|
-
fill: "#899bfa",
|
|
2674
|
-
d: "M599.74,222.97s-16.88,1.05-22.73,9.32c-8.23,11.64-24.55,61.25-15.2,67.87,10.53,7.45,47.95,1.95,47.95,1.95,0,0,1.24-5.9-.49-8.76-1.73-2.86-29.88-7.47-31.18-8.79-1.3-1.32,16.24-25.7,16.24-29.65s5.41-31.95,5.41-31.95Z"
|
|
2675
|
-
}
|
|
2676
|
-
),
|
|
2677
|
-
/* @__PURE__ */ jsx(
|
|
2678
|
-
"path",
|
|
2679
|
-
{
|
|
2680
|
-
fill: "#ffae73",
|
|
2681
|
-
d: "M623.38,296.31s2.63,3.45,3.5,3.86c.86,.41,1.42,.31,1.42,.31l-1.78-3.24-3.14-.93Z"
|
|
2682
|
-
}
|
|
2683
|
-
),
|
|
2684
|
-
/* @__PURE__ */ jsx(
|
|
2685
|
-
"path",
|
|
2686
|
-
{
|
|
2687
|
-
fill: "#ffae73",
|
|
2688
|
-
d: "M622.77,292.76l7.66,3.77s-.33,.54-1.27,.5c-.94-.04-3.32-.93-3.32-.93l-3.07-3.34Z"
|
|
2689
|
-
}
|
|
2690
|
-
)
|
|
2691
|
-
] }),
|
|
2692
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2693
|
-
/* @__PURE__ */ jsx(
|
|
2694
|
-
"polygon",
|
|
2695
|
-
{
|
|
2696
|
-
fill: "#10294c",
|
|
2697
|
-
points: "688.18 301.63 608.17 301.63 608.17 303.42 687.47 303.42 688.18 301.63"
|
|
2698
|
-
}
|
|
2699
|
-
),
|
|
2700
|
-
/* @__PURE__ */ jsx(
|
|
2701
|
-
"polygon",
|
|
2702
|
-
{
|
|
2703
|
-
fill: "#10294c",
|
|
2704
|
-
points: "626.88 303.42 687.47 303.42 705.7 257.44 645.2 257.44 626.88 303.42"
|
|
2705
|
-
}
|
|
2706
|
-
),
|
|
2707
|
-
/* @__PURE__ */ jsx(
|
|
2708
|
-
"path",
|
|
2709
|
-
{
|
|
2710
|
-
fill: "#e8f2fa",
|
|
2711
|
-
d: "M672.18,280.43c.46-1.62-.46-2.93-2.06-2.93s-3.26,1.31-3.71,2.93,.46,2.93,2.06,2.93,3.26-1.31,3.71-2.93Z"
|
|
2712
|
-
}
|
|
2713
|
-
)
|
|
2714
|
-
] })
|
|
2715
|
-
] }),
|
|
2716
|
-
/* @__PURE__ */ jsx(
|
|
2717
|
-
"polygon",
|
|
2718
|
-
{
|
|
2719
|
-
fill: "#fff",
|
|
2720
|
-
points: "666.18 584.13 672.4 589.62 666.99 595.92 660.77 590.43 666.18 584.13"
|
|
2721
|
-
}
|
|
2722
|
-
),
|
|
2723
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2724
|
-
/* @__PURE__ */ jsx(
|
|
2725
|
-
"path",
|
|
2726
|
-
{
|
|
2727
|
-
fill: "#f28018",
|
|
2728
|
-
d: "M586.7,695.57c-1.24-4.18-1.86-4.55-1.86-4.55,0,0-38.53,4.87-45.07,4.44-3.88-.25-50.15-15.91-50.15-15.91l-28.09,27.33s69.67,11.64,79.49,10.88c16.23-1.26,41-15.79,41-15.79,0,0,5.65-3.12,4.67-6.4Z"
|
|
2729
|
-
}
|
|
2730
|
-
),
|
|
2731
|
-
/* @__PURE__ */ jsx(
|
|
2732
|
-
"path",
|
|
2733
|
-
{
|
|
2734
|
-
fill: "#104c82",
|
|
2735
|
-
d: "M481.4,1007.55s.54,13.24,3.05,16.46l34.88,.2c-.24-1.37-.39-4.52-5.21-5.38-6.09-1.08-13.25-5.39-16.94-13.56-3.88-8.6-15.77,2.27-15.77,2.27Z"
|
|
2736
|
-
}
|
|
2737
|
-
),
|
|
2738
|
-
/* @__PURE__ */ jsx(
|
|
2739
|
-
"path",
|
|
2740
|
-
{
|
|
2741
|
-
fill: "#104c82",
|
|
2742
|
-
d: "M412.95,1005.64s-2.43,17.59,.87,17.9c.44,.04,14.05,.26,19.95,.36,6.93,.12,18.33-.13,18.33-.13,1.43,.06,2.37-1.51,1.64-2.77-.8-1.37-2.33-2.84-5.24-3.41-6.07-1.19-16.2-5.71-19.74-13.95-3.73-8.66-15.8,1.99-15.8,1.99Z"
|
|
2743
|
-
}
|
|
2744
|
-
),
|
|
2745
|
-
/* @__PURE__ */ jsx(
|
|
2746
|
-
"path",
|
|
2747
|
-
{
|
|
2748
|
-
fill: "#6f7deb",
|
|
2749
|
-
d: "M499.53,825.34s-9.7,34.42-37.49,94.2c-27.79,59.78-29,88.58-29,88.58,0,0-4.21,1.51-9.79,.91-6.04-.65-10.3-3.39-10.3-3.39,0,0,1.8-71.15,14.93-101.31,13.13-30.17,15.8-112.71,15.8-112.71l55.84,33.73Z"
|
|
2750
|
-
}
|
|
2751
|
-
),
|
|
2752
|
-
/* @__PURE__ */ jsx(
|
|
2753
|
-
"path",
|
|
2754
|
-
{
|
|
2755
|
-
fill: "#899bfa",
|
|
2756
|
-
d: "M515.1,795.72s.77,53.3-8.32,118.75c-9.09,65.44-4.84,95.88-4.84,95.88,0,0-2.41,1.78-9.82,1.75-8.68-.03-13.12-3.67-13.12-3.67,0,0-13.01-65.47-9.28-98.23,3.73-32.76-17.82-112.4-17.82-112.4l63.2-2.08Z"
|
|
2757
|
-
}
|
|
2758
|
-
),
|
|
2759
|
-
/* @__PURE__ */ jsx(
|
|
2760
|
-
"path",
|
|
2761
|
-
{
|
|
2762
|
-
fill: "#ffae73",
|
|
2763
|
-
d: "M493.98,662.86c-.09,4.18-.64,8.74-2.29,10.97l-9.25,4.93-10.26-7.71s3.76-8.46,2.84-20.82c-.09-.74-.46-5.48-.46-5.58l5.13,2.6,13.93,7.06s0,.28,.09,.65c.09,1.4,.28,4.46,.28,7.9Z"
|
|
2764
|
-
}
|
|
2765
|
-
),
|
|
2766
|
-
/* @__PURE__ */ jsx(
|
|
2767
|
-
"path",
|
|
2768
|
-
{
|
|
2769
|
-
fill: "#ff912b",
|
|
2770
|
-
d: "M442.72,802.31c3.36,15.58,75.23,8.74,74.29-.77-.04-.32-.22-4.72-.48-10.65-.54-12.83-1.38-32.89-1.48-34.45,0-.03,0-.05,0-.08-1.29-13.24-2.54-26.19-2.62-34.65-.07-7.34-1.07-14.84-2.39-21.65-1.22-6.29-2.72-11.99-4.03-16.44-.92-3.13-2.63-5.89-4.9-8.05-1.62-1.54-3.51-2.78-5.6-3.62-.57-.24-1.15-.44-1.74-.62-8.46-2.49-16.99-5.66-20.16-4.72-8.59,2.56-18.15,18-22.67,37.55-8.46,36.6-10.41,88-8.21,98.15Z"
|
|
2771
|
-
}
|
|
2772
|
-
),
|
|
2773
|
-
/* @__PURE__ */ jsx(
|
|
2774
|
-
"path",
|
|
2775
|
-
{
|
|
2776
|
-
fill: "#ffa05e",
|
|
2777
|
-
d: "M493.98,662.86c-5.22-2.14-15.21-6.97-17.96-12.45-1.19-2.42,.64-3.16,3.66-3.16l13.93,7.06s0,.28,.09,.65c.09,1.4,.28,4.46,.28,7.9Z"
|
|
2778
|
-
}
|
|
2779
|
-
),
|
|
2780
|
-
/* @__PURE__ */ jsx(
|
|
2781
|
-
"path",
|
|
2782
|
-
{
|
|
2783
|
-
fill: "#ffae73",
|
|
2784
|
-
d: "M500.32,653.44s-25.01,7.91-29.63-7.96c-4.62-15.87-10.96-25.54,4.82-31.27,15.77-5.72,20.65-.6,23.46,4.32,2.81,4.92,7.74,32.44,1.35,34.91Z"
|
|
2785
|
-
}
|
|
2786
|
-
),
|
|
2787
|
-
/* @__PURE__ */ jsx(
|
|
2788
|
-
"path",
|
|
2789
|
-
{
|
|
2790
|
-
fill: "#0b3563",
|
|
2791
|
-
d: "M497.99,617s-1.59,18.47-5.36,17.67c-3.77-.8-7.18-1.4-6.63,4.17,.55,5.57,.73,12.26-10.88,13.25-11.61,.99-23.25-29.64-20.06-35.39,9.2-16.59,56.22-19.93,42.93,.3Z"
|
|
2792
|
-
}
|
|
2793
|
-
),
|
|
2794
|
-
/* @__PURE__ */ jsx(
|
|
2795
|
-
"path",
|
|
2796
|
-
{
|
|
2797
|
-
fill: "#f28018",
|
|
2798
|
-
d: "M516.52,790.89c-.54-12.83-1.38-32.89-1.48-34.45,0-.03,0-.05,0-.08l-42.46-25.75s-1.64,60.11,43.95,60.29Z"
|
|
2799
|
-
}
|
|
2800
|
-
),
|
|
2801
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2802
|
-
/* @__PURE__ */ jsxs("g", { children: [
|
|
2803
|
-
/* @__PURE__ */ jsx(
|
|
2804
|
-
"path",
|
|
2805
|
-
{
|
|
2806
|
-
fill: "#0b3563",
|
|
2807
|
-
d: "M663,586.79l7.65,6.75s-13.11,14.24-11.89,29.23l-19.58,16.77-16.21-14.32,13.56-22.81s14.53-.53,26.48-15.63Z"
|
|
2808
|
-
}
|
|
2809
|
-
),
|
|
2810
|
-
/* @__PURE__ */ jsx(
|
|
2811
|
-
"path",
|
|
2812
|
-
{
|
|
2813
|
-
fill: "#fff",
|
|
2814
|
-
d: "M643.1,611.15c1.58-1.84,4.33-2.03,6.15-.43,1.81,1.6,2.01,4.39,.43,6.23-1.58,1.84-4.33,2.03-6.15,.43-1.81-1.6-2.01-4.39-.43-6.23Z"
|
|
2815
|
-
}
|
|
2816
|
-
),
|
|
2817
|
-
/* @__PURE__ */ jsx(
|
|
2818
|
-
"polygon",
|
|
2819
|
-
{
|
|
2820
|
-
fill: "#fff",
|
|
2821
|
-
points: "644.37 617.69 643.11 616.58 666.23 589.63 667.49 590.74 644.37 617.69"
|
|
2822
|
-
}
|
|
2823
|
-
)
|
|
2824
|
-
] }),
|
|
2825
|
-
/* @__PURE__ */ jsx(
|
|
2826
|
-
"polygon",
|
|
2827
|
-
{
|
|
2828
|
-
fill: "#6d76ff",
|
|
2829
|
-
points: "635.64 643.68 619.42 629.36 622.96 625.23 639.18 639.54 635.64 643.68"
|
|
2830
|
-
}
|
|
2831
|
-
),
|
|
2832
|
-
/* @__PURE__ */ jsx(
|
|
2833
|
-
"path",
|
|
2834
|
-
{
|
|
2835
|
-
fill: "#0b3563",
|
|
2836
|
-
d: "M458.23,834.69l-.79-.69c-4.26-3.76-4.71-10.32-1-14.64l162.97-190,16.22,14.32-162.97,190c-3.71,4.32-10.17,4.78-14.43,1.02Z"
|
|
2837
|
-
}
|
|
2838
|
-
)
|
|
2839
|
-
] }),
|
|
2840
|
-
/* @__PURE__ */ jsx(
|
|
2841
|
-
"path",
|
|
2842
|
-
{
|
|
2843
|
-
fill: "#ffae73",
|
|
2844
|
-
d: "M549.94,736.45s3.13-2.82,3.87-4.77c.25-.68,2.39-3.74,6.03-3.47,3.33,.25,9.24-6.94,9.24-6.94,.86,1.9,3.83,9.03-.42,12.65-3.47,2.95-11.81,8.05-16.87,11.41-5.44,3.61-1.85-8.88-1.85-8.88Z"
|
|
2845
|
-
}
|
|
2846
|
-
),
|
|
2847
|
-
/* @__PURE__ */ jsx(
|
|
2848
|
-
"path",
|
|
2849
|
-
{
|
|
2850
|
-
fill: "#ff912b",
|
|
2851
|
-
d: "M550.35,735.4s-42.11,7.26-45.84,5.42c-5.96-2.94,2.31-46.28,2.31-46.28,0,0,.36-9.82-10.96-12.14-9.83-2.01-19.31,5.46-19.31,5.46,0,0-8.63,7.83-7.52,16.51,2.44,19.25,6.24,58.39,18.93,64.39,16.37,7.74,63.73-21.46,63.73-21.46,0,0,1.58-1.96,1.35-5.6-.2-3.21-2.7-6.3-2.7-6.3Z"
|
|
2852
|
-
}
|
|
2853
|
-
),
|
|
2854
|
-
/* @__PURE__ */ jsx(
|
|
2855
|
-
"path",
|
|
2856
|
-
{
|
|
2857
|
-
fill: "#ffae73",
|
|
2858
|
-
d: "M588.46,698.68s10.63-3.93,9.69-9.44c-.94-5.51-4.25-4.82-6.25-2.92-2,1.9-.89,11.66-3.44,12.36Z"
|
|
2859
|
-
}
|
|
2860
|
-
),
|
|
2861
|
-
/* @__PURE__ */ jsx(
|
|
2862
|
-
"path",
|
|
2863
|
-
{
|
|
2864
|
-
fill: "#ffae73",
|
|
2865
|
-
d: "M553.07,733.63s1.45-4.32,3-6.17c1.55-1.85,2.2-4.99,2.91-3.95,.7,1.05-.56,4.8,0,6.23,.56,1.43-5.9,3.89-5.9,3.89Z"
|
|
2866
|
-
}
|
|
2867
|
-
)
|
|
2868
|
-
] }),
|
|
2869
|
-
/* @__PURE__ */ jsx("rect", { fill: "#a9c2ff", height: "67.09", width: "190.42", y: "956.62", x: "1304.39" }),
|
|
2870
|
-
/* @__PURE__ */ jsx("rect", { fill: "#1e3865", ry: "2.37", rx: "2.37", height: "4.74", width: "1620", y: "1023.26" })
|
|
2871
|
-
] }) }) })
|
|
2872
|
-
] });
|
|
2873
|
-
};
|
|
2874
|
-
var default_default = Default;
|
|
2875
|
-
var { Title } = Typography;
|
|
2876
|
-
var Login = (props) => {
|
|
2877
|
-
const { children } = props;
|
|
2878
|
-
const [searchParams, setSearchParams] = useSearchParams();
|
|
2879
|
-
const token = useTokenStore((state) => state.token);
|
|
2880
|
-
const setToken = useTokenStore((state) => state.setToken);
|
|
2881
|
-
const [showAlert, setShowAlert] = useState(false);
|
|
2882
|
-
const { isLoading } = useSWRImmutable(
|
|
2883
|
-
searchParams.has("ticket") ? {
|
|
2884
|
-
url: "/api/usystem/user/login",
|
|
2885
|
-
params: {
|
|
2886
|
-
ticket: searchParams.get("ticket")
|
|
2887
|
-
}
|
|
2888
|
-
} : null,
|
|
2889
|
-
{
|
|
2890
|
-
onSuccess: (data) => {
|
|
2891
|
-
setToken(data.token);
|
|
2892
|
-
}
|
|
2893
|
-
}
|
|
2894
|
-
);
|
|
2895
|
-
useEffect(() => {
|
|
2896
|
-
if (searchParams.has("not_registered")) {
|
|
2897
|
-
setShowAlert(true);
|
|
2898
|
-
searchParams.delete("not_registered");
|
|
2899
|
-
setSearchParams(searchParams);
|
|
2900
|
-
}
|
|
2901
|
-
}, [searchParams, setSearchParams]);
|
|
2902
|
-
if (isLoading) {
|
|
2903
|
-
return /* @__PURE__ */ jsx(
|
|
2904
|
-
Spin,
|
|
2905
|
-
{
|
|
2906
|
-
style: {
|
|
2907
|
-
display: "flex",
|
|
2908
|
-
justifyContent: "center",
|
|
2909
|
-
alignItems: "center",
|
|
2910
|
-
width: "100vw",
|
|
2911
|
-
height: "100vh"
|
|
2912
|
-
}
|
|
2913
|
-
}
|
|
2914
|
-
);
|
|
2915
|
-
}
|
|
2916
|
-
if (token) {
|
|
2917
|
-
return /* @__PURE__ */ jsx(Navigate, { replace: true, to: "/" });
|
|
2918
|
-
}
|
|
2919
|
-
return /* @__PURE__ */ jsxs(Row, { children: [
|
|
2920
|
-
/* @__PURE__ */ jsx(Col, { span: 10, offset: 3, children: /* @__PURE__ */ jsx("div", { className: "h-screen flex justify-end items-center", children: /* @__PURE__ */ jsx(default_default, {}) }) }),
|
|
2921
|
-
/* @__PURE__ */ jsx(Col, { span: 5, offset: 3, children: /* @__PURE__ */ jsx("div", { className: "h-screen relative", children: /* @__PURE__ */ jsxs(Card, { hoverable: true, className: "absolute left-0 right-0 top-1/2 -translate-y-1/2", children: [
|
|
2922
|
-
showAlert && /* @__PURE__ */ jsx("div", { className: "absolute -top-12 left-0 right-0", children: /* @__PURE__ */ jsx(
|
|
2923
|
-
Alert,
|
|
2924
|
-
{
|
|
2925
|
-
banner: true,
|
|
2926
|
-
closable: true,
|
|
2927
|
-
message: "\u60A8\u8FD8\u672A\u5728\u5E73\u53F0\u6CE8\u518C\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458",
|
|
2928
|
-
type: "error",
|
|
2929
|
-
onClose: () => {
|
|
2930
|
-
setShowAlert(false);
|
|
2931
|
-
}
|
|
2932
|
-
}
|
|
2933
|
-
) }),
|
|
2934
|
-
/* @__PURE__ */ jsxs("div", { className: "text-center mb-6", children: [
|
|
2935
|
-
/* @__PURE__ */ jsx(Title, { level: 5, children: "\u767B\u5F55\u65B9\u5F0F" }),
|
|
2936
|
-
/* @__PURE__ */ jsx("div", { className: "min-h-10", children })
|
|
2937
|
-
] }),
|
|
2938
|
-
/* @__PURE__ */ jsx(Divider, { plain: true, children: "\u7B2C\u4E09\u65B9\u767B\u5F55\u65B9\u5F0F" }),
|
|
2939
|
-
/* @__PURE__ */ jsx("div", { className: "w-full flex justify-center", children: /* @__PURE__ */ jsx(Space, { size: "small", children: /* @__PURE__ */ jsx(
|
|
2940
|
-
Button,
|
|
2941
|
-
{
|
|
2942
|
-
type: "link",
|
|
2943
|
-
size: "small",
|
|
2944
|
-
shape: "round",
|
|
2945
|
-
icon: /* @__PURE__ */ jsx(AliyunOutlined, {}),
|
|
2946
|
-
href: `${SSO_URL}/login?service=${encodeURIComponent(window.location.origin)}/login`,
|
|
2947
|
-
target: "_self",
|
|
2948
|
-
children: "IDass \u767B\u5F55"
|
|
2949
|
-
}
|
|
2950
|
-
) }) })
|
|
2951
|
-
] }) }) })
|
|
2952
|
-
] });
|
|
2953
|
-
};
|
|
2954
|
-
var Login_default = Login;
|
|
2955
|
-
|
|
2956
|
-
// src/pages/permission/index.tsx
|
|
2957
|
-
init_esm_shims();
|
|
2958
|
-
var UserList2 = lazy(() => Promise.resolve().then(() => (init_UserList(), UserList_exports)));
|
|
2959
|
-
var RoleList2 = lazy(() => Promise.resolve().then(() => (init_RoleList(), RoleList_exports)));
|
|
2960
|
-
var RoleDetail2 = lazy(() => Promise.resolve().then(() => (init_RoleDetail(), RoleDetail_exports)));
|
|
2961
|
-
var routes = {
|
|
2962
|
-
path: "permission",
|
|
2963
|
-
children: [
|
|
2964
|
-
{
|
|
2965
|
-
index: true,
|
|
2966
|
-
element: /* @__PURE__ */ jsx(Navigate, { relative: "path", to: "user" })
|
|
2967
|
-
},
|
|
2968
|
-
{
|
|
2969
|
-
path: "user",
|
|
2970
|
-
element: /* @__PURE__ */ jsx(UserList2, {})
|
|
2971
|
-
},
|
|
2972
|
-
{
|
|
2973
|
-
path: "role",
|
|
2974
|
-
element: /* @__PURE__ */ jsx(RoleList2, {})
|
|
2975
|
-
},
|
|
2976
|
-
{
|
|
2977
|
-
path: "role/:name",
|
|
2978
|
-
element: /* @__PURE__ */ jsx(RoleDetail2, {})
|
|
2979
|
-
}
|
|
2980
|
-
]
|
|
2981
|
-
};
|
|
2982
|
-
var permission_default = routes;
|
|
2983
|
-
|
|
2984
|
-
// src/layouts/index.ts
|
|
2985
|
-
init_esm_shims();
|
|
2986
|
-
|
|
2987
|
-
// src/layouts/Layout.tsx
|
|
2988
|
-
init_esm_shims();
|
|
2989
|
-
|
|
2990
|
-
// src/layouts/NavBar.tsx
|
|
2991
|
-
init_esm_shims();
|
|
2992
|
-
init_hooks2();
|
|
2993
|
-
init_stores();
|
|
2994
|
-
var withLink = (label, route) => {
|
|
2995
|
-
if (!label) {
|
|
2996
|
-
return /* @__PURE__ */ jsx(Fragment, {});
|
|
2997
|
-
}
|
|
2998
|
-
if (route) {
|
|
2999
|
-
return /* @__PURE__ */ jsx(Link, { to: route, children: label });
|
|
3000
|
-
}
|
|
3001
|
-
return label;
|
|
3002
|
-
};
|
|
3003
|
-
function transformItems(items, permissions) {
|
|
3004
|
-
const result = [];
|
|
3005
|
-
for (let i = 0; i < items.length; i++) {
|
|
3006
|
-
if (items[i] === null) {
|
|
3007
|
-
result[i] = null;
|
|
3008
|
-
} else if (items[i].type === "divider") {
|
|
3009
|
-
result[i] = __spreadValues({}, items[i]);
|
|
3010
|
-
} else {
|
|
3011
|
-
if (items[i].children) {
|
|
3012
|
-
const _a = items[i], { children } = _a, restProps = __objRest(_a, ["children"]);
|
|
3013
|
-
result[i] = __spreadProps(__spreadValues({}, restProps), {
|
|
3014
|
-
children: transformItems(children != null ? children : [], permissions)
|
|
3015
|
-
});
|
|
3016
|
-
} else {
|
|
3017
|
-
const _b = items[i], { route, label, code } = _b, restProps = __objRest(_b, ["route", "label", "code"]);
|
|
3018
|
-
const isPass = !code || !permissions || permissions[code];
|
|
3019
|
-
result[i] = isPass ? __spreadProps(__spreadValues({}, restProps), {
|
|
3020
|
-
label: withLink(label, route)
|
|
3021
|
-
}) : null;
|
|
3022
|
-
}
|
|
3023
|
-
}
|
|
3024
|
-
}
|
|
3025
|
-
return result;
|
|
3026
|
-
}
|
|
3027
|
-
function flatItems(items, result = [], keypath = []) {
|
|
3028
|
-
for (const item of items) {
|
|
3029
|
-
const children = item.children;
|
|
3030
|
-
if (Array.isArray(children)) {
|
|
3031
|
-
const _keys = item.type !== "group" && item.key ? [...keypath, item.key] : keypath;
|
|
3032
|
-
flatItems(children, result, _keys);
|
|
3033
|
-
} else {
|
|
3034
|
-
result.push(Object.assign(item, { keypath }));
|
|
3035
|
-
}
|
|
3036
|
-
}
|
|
3037
|
-
return result;
|
|
3038
|
-
}
|
|
3039
|
-
var NavBar = (props) => {
|
|
3040
|
-
const { items } = props;
|
|
3041
|
-
const location = useLocation();
|
|
3042
|
-
const flattenItems = useMemo(() => flatItems(items != null ? items : []), [items]);
|
|
3043
|
-
const codes = flattenItems.map((item) => item.code).filter(Boolean);
|
|
3044
|
-
const { data: permissions, isLoading } = usePermissions(codes);
|
|
3045
|
-
const internalItems = useMemo(() => transformItems(items != null ? items : [], permissions), [items, permissions]);
|
|
3046
|
-
const openKeys = useMenuStore((state) => state.openKeys);
|
|
3047
|
-
const selectedKeys = useMenuStore((state) => state.selectedKeys);
|
|
3048
|
-
const setOpenKeys = useMenuStore((state) => state.setOpenKeys);
|
|
3049
|
-
const setSelectedKeys = useMenuStore((state) => state.setSelectedKeys);
|
|
3050
|
-
const onOpenChange = useCallback(
|
|
3051
|
-
(keys) => {
|
|
3052
|
-
var _a;
|
|
3053
|
-
const latestOpenKey = keys == null ? void 0 : keys.find((key) => (openKeys == null ? void 0 : openKeys.indexOf(key)) === -1);
|
|
3054
|
-
const match = flattenItems.find((item) => latestOpenKey === item.key);
|
|
3055
|
-
const _openKeys = (_a = match == null ? void 0 : match.keypath) != null ? _a : [latestOpenKey];
|
|
3056
|
-
setOpenKeys(_openKeys);
|
|
3057
|
-
},
|
|
3058
|
-
[flattenItems, openKeys, setOpenKeys]
|
|
3059
|
-
);
|
|
3060
|
-
useEffect(() => {
|
|
3061
|
-
const match = flattenItems.find((item) => location.pathname === item.route);
|
|
3062
|
-
if (match) {
|
|
3063
|
-
const key = match.key;
|
|
3064
|
-
const keypath = match.keypath;
|
|
3065
|
-
setSelectedKeys([key]);
|
|
3066
|
-
setOpenKeys(keypath);
|
|
3067
|
-
}
|
|
3068
|
-
}, [flattenItems, location, setOpenKeys, setSelectedKeys]);
|
|
3069
|
-
if (isLoading) {
|
|
3070
|
-
return /* @__PURE__ */ jsx(
|
|
3071
|
-
Spin,
|
|
3072
|
-
{
|
|
3073
|
-
style: {
|
|
3074
|
-
display: "flex",
|
|
3075
|
-
justifyContent: "center",
|
|
3076
|
-
alignItems: "center",
|
|
3077
|
-
height: "calc(100vh - 64px)"
|
|
3078
|
-
}
|
|
3079
|
-
}
|
|
3080
|
-
);
|
|
3081
|
-
}
|
|
3082
|
-
return /* @__PURE__ */ jsx(
|
|
3083
|
-
Menu,
|
|
3084
|
-
{
|
|
3085
|
-
style: { borderRight: "none" },
|
|
3086
|
-
items: internalItems,
|
|
3087
|
-
mode: "inline",
|
|
3088
|
-
openKeys,
|
|
3089
|
-
selectedKeys,
|
|
3090
|
-
onOpenChange
|
|
3091
|
-
}
|
|
3092
|
-
);
|
|
3093
|
-
};
|
|
3094
|
-
var NavBar_default = NavBar;
|
|
3095
|
-
var { Header, Sider, Content } = Layout$1;
|
|
3096
|
-
var Layout = (props) => {
|
|
3097
|
-
const { title, items, header, children } = props;
|
|
3098
|
-
const {
|
|
3099
|
-
token: { colorBgContainer, colorBorder }
|
|
3100
|
-
} = theme.useToken();
|
|
3101
|
-
return /* @__PURE__ */ jsxs(Layout$1, { hasSider: true, className: "h-screen", children: [
|
|
3102
|
-
/* @__PURE__ */ jsxs(
|
|
3103
|
-
Sider,
|
|
3104
|
-
{
|
|
3105
|
-
width: 256,
|
|
3106
|
-
style: {
|
|
3107
|
-
overflow: "auto",
|
|
3108
|
-
height: "100vh",
|
|
3109
|
-
position: "fixed",
|
|
3110
|
-
left: 0,
|
|
3111
|
-
top: 0,
|
|
3112
|
-
bottom: 0,
|
|
3113
|
-
borderRightWidth: 1,
|
|
3114
|
-
borderRightStyle: "solid",
|
|
3115
|
-
borderRightColor: colorBorder
|
|
3116
|
-
},
|
|
3117
|
-
theme: "light",
|
|
3118
|
-
children: [
|
|
3119
|
-
/* @__PURE__ */ jsxs("div", { className: "flex items-end px-6 py-4", children: [
|
|
3120
|
-
/* @__PURE__ */ jsx("img", { src: logo, alt: "logo", className: "w-8 h-8" }),
|
|
3121
|
-
/* @__PURE__ */ jsx(Link, { className: "font-bold text-lg ml-2", to: "/", children: title })
|
|
3122
|
-
] }),
|
|
3123
|
-
/* @__PURE__ */ jsx(NavBar_default, { items })
|
|
3124
|
-
]
|
|
3125
|
-
}
|
|
3126
|
-
),
|
|
3127
|
-
/* @__PURE__ */ jsxs(Layout$1, { className: "ml-64", children: [
|
|
3128
|
-
/* @__PURE__ */ jsx(
|
|
3129
|
-
Header,
|
|
3130
|
-
{
|
|
3131
|
-
style: {
|
|
3132
|
-
padding: "0 24px",
|
|
3133
|
-
background: colorBgContainer,
|
|
3134
|
-
borderBottomWidth: 1,
|
|
3135
|
-
borderBottomStyle: "solid",
|
|
3136
|
-
borderBottomColor: colorBorder
|
|
3137
|
-
},
|
|
3138
|
-
children: header
|
|
3139
|
-
}
|
|
3140
|
-
),
|
|
3141
|
-
/* @__PURE__ */ jsx(Content, { className: "p-6 overflow-auto bg-gray-50", children })
|
|
3142
|
-
] })
|
|
3143
|
-
] });
|
|
3144
|
-
};
|
|
3145
|
-
var Layout_default = Layout;
|
|
3146
|
-
|
|
3147
|
-
export { DynamicTags_default as DynamicTags, FetcherError, FilterForm_default as FilterForm, FormModal_default as FormModal, Highlight_default as Highlight, Layout_default as Layout, Login_default as Login, PermissionButton_default as PermissionButton, QueryList_default as QueryList, permission_default as permission, useFetcher, useFormModal, useMenuStore, usePermission, usePermissions, useQueryTriggerStore, useTokenStore };
|
|
3148
|
-
//# sourceMappingURL=out.js.map
|
|
3149
|
-
//# sourceMappingURL=index.esm.js.map
|
|
18
|
+
export { at as DynamicTags, I1 as FilterForm, F1 as FormModal, n1 as Highlight, Q as HttpClientError, Po as Layout, u2 as Login, b2 as NoMatch, z as PermissionButton, a1 as QueryList, Re as SSO_URL, ro as permission, X as useFormModal, B as useHttpClient, i1 as useMenuStore, N as usePermission, L1 as usePermissions, A as useQueryListStore, e1 as useTokenStore };
|