diff --git a/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/config/GbsUserSyncInterceptor.java b/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/config/GbsUserSyncInterceptor.java index bf30fa4..32e6aa2 100644 --- a/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/config/GbsUserSyncInterceptor.java +++ b/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/config/GbsUserSyncInterceptor.java @@ -34,9 +34,6 @@ public class GbsUserSyncInterceptor implements WebMvcConfigurer { private final String[] anonymousUrl = { "/**/images/**", - "/**/account/syncUserToGBS/**", - "/**/org-info/save/**", - "/**/account/save/**", "/**/file/**", "/**/tree/**" }; diff --git a/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/web/ImagesOpenController.java b/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/web/ImagesOpenController.java index 6184424..8cb5e4e 100644 --- a/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/web/ImagesOpenController.java +++ b/safety-eval-adapter/src/main/java/org/qinan/safetyeval/adapter/web/ImagesOpenController.java @@ -2,13 +2,22 @@ package org.qinan.safetyeval.adapter.web; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; +import org.qinan.safetyeval.client.api.AccountApi; +import org.qinan.safetyeval.client.api.OrgInfoApi; +import org.qinan.safetyeval.client.co.AccountCO; +import org.qinan.safetyeval.client.co.OrgInfoCO; +import org.qinan.safetyeval.client.dto.AccountAddCmd; +import org.qinan.safetyeval.client.dto.OrgInfoAddCmd; import org.qinan.safetyeval.client.dto.SendMessageCmd; import org.qinan.safetyeval.client.dto.SingleResponse; import org.qinan.safetyeval.infrastructure.remote.SmsRemote; import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; @@ -27,12 +36,36 @@ public class ImagesOpenController { @Resource private SmsRemote smsRemote; + @Resource + private AccountApi accountApi; + + @Resource + private OrgInfoApi orgInfoApi; + @ApiOperation("发送短信") @PostMapping("/sendMessage") public com.alibaba.cola.dto.SingleResponse sendMessage(@Validated @RequestBody SendMessageCmd cmd) { return smsRemote.sign(cmd.getMobile()); } + @ApiOperation("新增用户(注册)") + @PostMapping("/account/save") + public SingleResponse register(@Validated @RequestBody AccountAddCmd cmd) { + return accountApi.add(cmd); + } + + @ApiOperation("新增机构信息(注册)") + @PostMapping("/org-info/save") + public SingleResponse orgInfoSave(@Validated @RequestBody OrgInfoAddCmd cmd) { + return orgInfoApi.add(cmd); + } + + @ApiOperation("用户同步 GBS") + @GetMapping("/account/syncUserToGBS") + public SingleResponse syncUserToGBS(@ApiParam("账号") @RequestParam String account) { + return accountApi.syncUserToGBS(account); + } + @ApiOperation("发送短信") @PostMapping("/test") public SingleResponse test() { diff --git a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/QualFilingGatewayImpl.java b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/QualFilingGatewayImpl.java index 6d258fd..d56fbed 100644 --- a/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/QualFilingGatewayImpl.java +++ b/safety-eval-infrastructure/src/main/java/org/qinan/safetyeval/infrastructure/gatewayimpl/QualFilingGatewayImpl.java @@ -108,7 +108,9 @@ public class QualFilingGatewayImpl implements QualFilingGateway { wrapper.eq(QualFilingDO::getOrgId, query.getOrgId()); } if (StringUtils.hasText(query.getFilingNo())) { - wrapper.eq(QualFilingDO::getFilingNo, query.getFilingNo()); + // 暂无编号数据, 使用id查询 + wrapper.eq(QualFilingDO::getId, query.getFilingNo()); +// wrapper.eq(QualFilingDO::getFilingNo, query.getFilingNo()); } if (StringUtils.hasText(query.getFilingUnitName())) { wrapper.like(QualFilingDO::getFilingUnitName, query.getFilingUnitName()); @@ -171,9 +173,15 @@ public class QualFilingGatewayImpl implements QualFilingGateway { if (Objects.nonNull(dataObject.getId())) { // 编辑 InsertFieldDefaults.applyForUpdate(dataObject); + if (dataObject.getFilingStatusCode() == 2) { + dataObject.setSubmitTime(LocalDateTime.now()); + } qualFilingMapper.updateById(dataObject); } else { InsertFieldDefaults.apply(dataObject); + if (dataObject.getFilingStatusCode() == 2) { + dataObject.setSubmitTime(LocalDateTime.now()); + } qualFilingMapper.insert(dataObject); } if (Objects.isNull(dataObject.getId())) { diff --git a/safety-eval-start/src/main/resources/application-prod.yml b/safety-eval-start/src/main/resources/application-prod.yml index e2566eb..4cbe9f4 100644 --- a/safety-eval-start/src/main/resources/application-prod.yml +++ b/safety-eval-start/src/main/resources/application-prod.yml @@ -1,6 +1,5 @@ # 线上 prod 专用配置(打包进 jar,不依赖项目内 nacos/ 目录) -# 解决 FileStorageRuntimeException: 没有找到对应的存储平台!platform:local -# OSS 凭证优先取 Nacos config-common.common.aliyun.oss,取不到时用下方默认值 +# OSS 与本地开发环境保持一致(test-dragon-yf-pub) dromara: x-file-storage: @@ -9,9 +8,9 @@ dromara: aliyun-oss: - platform: aliyun-oss-1 enable-storage: true - access-key: ${common.aliyun.oss.accessKeyId:LTAI5tP6UnjpDRBjsUaxbLz9} - secret-key: ${common.aliyun.oss.accessKeySecret:9XCpOutOC1lTE7E4twbUOHGzaxoMRz} + access-key: LTAI5tFerUgBCLEbXtinDD6d + secret-key: XyGVNV2RvW8U3ceoJDiy9A9oLvCGYp end-point: oss-cn-hangzhou.aliyuncs.com - bucket-name: ${common.aliyun.oss.bucketName:cqqypx} - domain: https://${common.aliyun.oss.bucketName:cqqypx}.oss-cn-hangzhou.aliyuncs.com/ + bucket-name: test-dragon-yf-pub + domain: https://test-dragon-yf-pub.oss-cn-hangzhou.aliyuncs.com/ base-path: jjb/ diff --git a/safety-eval-start/src/main/resources/nacos/config-mybatis.yml b/safety-eval-start/src/main/resources/nacos/config-mybatis.yml index 65061cf..bbe4f81 100644 --- a/safety-eval-start/src/main/resources/nacos/config-mybatis.yml +++ b/safety-eval-start/src/main/resources/nacos/config-mybatis.yml @@ -5,7 +5,8 @@ banner: false db-config: id-type: assign_id - logic-delete-value: 1 - logic-not-delete-value: 0 + logic-delete-field: deleteEnum + logic-delete-value: "true" + logic-not-delete-value: "false" configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl diff --git a/safety-eval-start/src/main/resources/templates/safetyEval.html b/safety-eval-start/src/main/resources/templates/safetyEval.html index f204887..38c5bcc 100644 --- a/safety-eval-start/src/main/resources/templates/safetyEval.html +++ b/safety-eval-start/src/main/resources/templates/safetyEval.html @@ -1,4 +1,4 @@ ---
\ No newline at end of file + }
\ No newline at end of file diff --git a/safety-eval-start/src/main/resources/templates/safetyEval/static/jjb.config.js b/safety-eval-start/src/main/resources/templates/safetyEval/static/jjb.config.js index 8fe8e5d..df91627 100644 --- a/safety-eval-start/src/main/resources/templates/safetyEval/static/jjb.config.js +++ b/safety-eval-start/src/main/resources/templates/safetyEval/static/jjb.config.js @@ -1 +1 @@ -module.exports={javaGit:"http://47.92.113.182:3000/cq_anquan/safety-eval-service.git",javaGitName:"safety-eval-service",environment:{development:{javaGitBranch:"dev",API_HOST:"http://192.168.0.152"},production:{javaGitBranch:"dev",API_HOST:""}},appIdentifier:"safetyEval",contextInject:{appKey:"",fileUrl:"https://skqhdg.porthebei.com:9004/file/uploadFiles2/"},windowInject:{title:"微应用模板",links:[],element:{root:{id:"root"}},scripts:[]},server:{port:"8081",host:"192.168.0.187",open:!1},framework:{antd:{"ant-prefix":"micro-temp",fontFamily:"PingFangSC-Regular",colorPrimary:"#1677ff",borderRadius:2}},webpackConfig:{htmlWebpackPluginOption:{inject:!0}}}; \ No newline at end of file +module.exports={javaGit:"http://47.92.113.182:3000/cq_anquan/safety-eval-service.git",javaGitName:"safety-eval-service",environment:{development:{javaGitBranch:"dev",API_HOST:"http://192.168.0.103"},production:{javaGitBranch:"dev",API_HOST:""}},appIdentifier:"safetyEval",contextInject:{appKey:"",fileUrl:"https://skqhdg.porthebei.com:9004/file/uploadFiles2/"},windowInject:{title:"微应用模板",links:[],element:{root:{id:"root"}},scripts:[]},server:{port:"8081",host:"192.168.0.187",open:!1},framework:{antd:{"ant-prefix":"micro-temp",fontFamily:"PingFangSC-Regular",colorPrimary:"#1677ff",borderRadius:2}},webpackConfig:{htmlWebpackPluginOption:{inject:!0}}}; \ No newline at end of file diff --git a/safety-eval-start/src/main/resources/templates/safetyEval/static/js/379.7b4c2533d0a3b689.js b/safety-eval-start/src/main/resources/templates/safetyEval/static/js/934.ada55f776be86394.js similarity index 93% rename from safety-eval-start/src/main/resources/templates/safetyEval/static/js/379.7b4c2533d0a3b689.js rename to safety-eval-start/src/main/resources/templates/safetyEval/static/js/934.ada55f776be86394.js index 9486a8e..9834112 100644 --- a/safety-eval-start/src/main/resources/templates/safetyEval/static/js/379.7b4c2533d0a3b689.js +++ b/safety-eval-start/src/main/resources/templates/safetyEval/static/js/934.ada55f776be86394.js @@ -1,4 +1,4 @@ -(self.webpackChunkjjb_micro_app_safetyEval=self.webpackChunkjjb_micro_app_safetyEval||[]).push([["379"],{84054(e,t,n){"use strict";n.d(t,{A:()=>d});var r=n(59452),o=n(68645),a=n(86663),i=n(96540),l=n(56347);let c={parseNumbers:!1,parseBooleans:!1},s={skipNull:!1,skipEmptyString:!1},d=(e,t)=>{var n,d;let{navigateMode:u="push",parseOptions:p,stringifyOptions:f}=t||{},m=Object.assign(Object.assign({},c),p),g=Object.assign(Object.assign({},s),f),h=l.useLocation(),b=null==(n=l.useHistory)?void 0:n.call(l),v=null==(d=l.useNavigate)?void 0:d.call(l),y=(0,r.A)(),x=(0,i.useRef)("function"==typeof e?e():e||{}),$=(0,i.useMemo)(()=>(0,a.parse)(h.search,m),[h.search]),A=(0,i.useMemo)(()=>Object.assign(Object.assign({},x.current),$),[$]);return[A,(0,o.A)(e=>{let t="function"==typeof e?e(A):e;y(),b&&b[u]({hash:h.hash,search:(0,a.stringify)(Object.assign(Object.assign({},$),t),g)||"?"},h.state),v&&v({hash:h.hash,search:(0,a.stringify)(Object.assign(Object.assign({},$),t),g)||"?"},{replace:"replace"===u,state:h.state})})]}},81463(e,t,n){"use strict";n.r(t),n.d(t,{yellowDark:()=>E,grey:()=>A,generate:()=>c,presetPalettes:()=>S,presetPrimaryColors:()=>s,green:()=>h,goldDark:()=>j,blueDark:()=>M,orangeDark:()=>k,lime:()=>g,greenDark:()=>z,gray:()=>w,red:()=>d,presetDarkPalettes:()=>N,cyan:()=>b,volcanoDark:()=>O,limeDark:()=>P,cyanDark:()=>I,yellow:()=>m,magentaDark:()=>T,greyDark:()=>F,geekblueDark:()=>R,gold:()=>f,purple:()=>x,volcano:()=>u,orange:()=>p,magenta:()=>$,geekblue:()=>y,purpleDark:()=>B,redDark:()=>C,blue:()=>v});var r=n(78250),o=[{index:7,amount:15},{index:6,amount:25},{index:5,amount:30},{index:5,amount:45},{index:5,amount:65},{index:5,amount:85},{index:4,amount:90},{index:3,amount:95},{index:2,amount:97},{index:1,amount:98}];function a(e,t,n){var r;return(r=Math.round(e.h)>=60&&240>=Math.round(e.h)?n?Math.round(e.h)-2*t:Math.round(e.h)+2*t:n?Math.round(e.h)+2*t:Math.round(e.h)-2*t)<0?r+=360:r>=360&&(r-=360),r}function i(e,t,n){var r;return 0===e.h&&0===e.s?e.s:((r=n?e.s-.16*t:4===t?e.s+.16:e.s+.05*t)>1&&(r=1),n&&5===t&&r>.1&&(r=.1),r<.06&&(r=.06),Math.round(100*r)/100)}function l(e,t,n){return Math.round(100*Math.max(0,Math.min(1,n?e.v+.05*t:e.v-.15*t)))/100}function c(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=[],c=new r.Y(e),s=c.toHsv(),d=5;d>0;d-=1){var u=new r.Y({h:a(s,d,!0),s:i(s,d,!0),v:l(s,d,!0)});n.push(u)}n.push(c);for(var p=1;p<=4;p+=1){var f=new r.Y({h:a(s,p),s:i(s,p),v:l(s,p)});n.push(f)}return"dark"===t.theme?o.map(function(e){var o=e.index,a=e.amount;return new r.Y(t.backgroundColor||"#141414").mix(n[o],a).toHexString()}):n.map(function(e){return e.toHexString()})}var s={red:"#F5222D",volcano:"#FA541C",orange:"#FA8C16",gold:"#FAAD14",yellow:"#FADB14",lime:"#A0D911",green:"#52C41A",cyan:"#13C2C2",blue:"#1677FF",geekblue:"#2F54EB",purple:"#722ED1",magenta:"#EB2F96",grey:"#666666"},d=["#fff1f0","#ffccc7","#ffa39e","#ff7875","#ff4d4f","#f5222d","#cf1322","#a8071a","#820014","#5c0011"];d.primary=d[5];var u=["#fff2e8","#ffd8bf","#ffbb96","#ff9c6e","#ff7a45","#fa541c","#d4380d","#ad2102","#871400","#610b00"];u.primary=u[5];var p=["#fff7e6","#ffe7ba","#ffd591","#ffc069","#ffa940","#fa8c16","#d46b08","#ad4e00","#873800","#612500"];p.primary=p[5];var f=["#fffbe6","#fff1b8","#ffe58f","#ffd666","#ffc53d","#faad14","#d48806","#ad6800","#874d00","#613400"];f.primary=f[5];var m=["#feffe6","#ffffb8","#fffb8f","#fff566","#ffec3d","#fadb14","#d4b106","#ad8b00","#876800","#614700"];m.primary=m[5];var g=["#fcffe6","#f4ffb8","#eaff8f","#d3f261","#bae637","#a0d911","#7cb305","#5b8c00","#3f6600","#254000"];g.primary=g[5];var h=["#f6ffed","#d9f7be","#b7eb8f","#95de64","#73d13d","#52c41a","#389e0d","#237804","#135200","#092b00"];h.primary=h[5];var b=["#e6fffb","#b5f5ec","#87e8de","#5cdbd3","#36cfc9","#13c2c2","#08979c","#006d75","#00474f","#002329"];b.primary=b[5];var v=["#e6f4ff","#bae0ff","#91caff","#69b1ff","#4096ff","#1677ff","#0958d9","#003eb3","#002c8c","#001d66"];v.primary=v[5];var y=["#f0f5ff","#d6e4ff","#adc6ff","#85a5ff","#597ef7","#2f54eb","#1d39c4","#10239e","#061178","#030852"];y.primary=y[5];var x=["#f9f0ff","#efdbff","#d3adf7","#b37feb","#9254de","#722ed1","#531dab","#391085","#22075e","#120338"];x.primary=x[5];var $=["#fff0f6","#ffd6e7","#ffadd2","#ff85c0","#f759ab","#eb2f96","#c41d7f","#9e1068","#780650","#520339"];$.primary=$[5];var A=["#a6a6a6","#999999","#8c8c8c","#808080","#737373","#666666","#404040","#1a1a1a","#000000","#000000"];A.primary=A[5];var w=A,S={red:d,volcano:u,orange:p,gold:f,yellow:m,lime:g,green:h,cyan:b,blue:v,geekblue:y,purple:x,magenta:$,grey:A},C=["#2a1215","#431418","#58181c","#791a1f","#a61d24","#d32029","#e84749","#f37370","#f89f9a","#fac8c3"];C.primary=C[5];var O=["#2b1611","#441d12","#592716","#7c3118","#aa3e19","#d84a1b","#e87040","#f3956a","#f8b692","#fad4bc"];O.primary=O[5];var k=["#2b1d11","#442a11","#593815","#7c4a15","#aa6215","#d87a16","#e89a3c","#f3b765","#f8cf8d","#fae3b7"];k.primary=k[5];var j=["#2b2111","#443111","#594214","#7c5914","#aa7714","#d89614","#e8b339","#f3cc62","#f8df8b","#faedb5"];j.primary=j[5];var E=["#2b2611","#443b11","#595014","#7c6e14","#aa9514","#d8bd14","#e8d639","#f3ea62","#f8f48b","#fafab5"];E.primary=E[5];var P=["#1f2611","#2e3c10","#3e4f13","#536d13","#6f9412","#8bbb11","#a9d134","#c9e75d","#e4f88b","#f0fab5"];P.primary=P[5];var z=["#162312","#1d3712","#274916","#306317","#3c8618","#49aa19","#6abe39","#8fd460","#b2e58b","#d5f2bb"];z.primary=z[5];var I=["#112123","#113536","#144848","#146262","#138585","#13a8a8","#33bcb7","#58d1c9","#84e2d8","#b2f1e8"];I.primary=I[5];var M=["#111a2c","#112545","#15325b","#15417e","#1554ad","#1668dc","#3c89e8","#65a9f3","#8dc5f8","#b7dcfa"];M.primary=M[5];var R=["#131629","#161d40","#1c2755","#203175","#263ea0","#2b4acb","#5273e0","#7f9ef3","#a8c1f8","#d2e0fa"];R.primary=R[5];var B=["#1a1325","#24163a","#301c4d","#3e2069","#51258f","#642ab5","#854eca","#ab7ae0","#cda8f0","#ebd7fa"];B.primary=B[5];var T=["#291321","#40162f","#551c3b","#75204f","#a02669","#cb2b83","#e0529c","#f37fb7","#f8a8cc","#fad2e3"];T.primary=T[5];var F=["#151515","#1f1f1f","#2d2d2d","#393939","#494949","#5a5a5a","#6a6a6a","#7b7b7b","#888888","#969696"];F.primary=F[5];var N={red:C,volcano:O,orange:k,gold:j,yellow:E,lime:P,green:z,cyan:I,blue:M,geekblue:R,purple:B,magenta:T,grey:F}},10224(e,t,n){"use strict";n.d(t,{oX:()=>C,L_:()=>I});var r=n(82284),o=n(57046),a=n(64467),i=n(89379),l=n(96540),c=n(48670),s=n(23029),d=n(92901),u=n(9417),p=n(85501),f=n(6903),m=(0,d.A)(function e(){(0,s.A)(this,e)}),g="CALC_UNIT",h=RegExp(g,"g");function b(e){return"number"==typeof e?"".concat(e).concat(g):e}var v=function(e){(0,p.A)(n,e);var t=(0,f.A)(n);function n(e,o){(0,s.A)(this,n),i=t.call(this),(0,a.A)((0,u.A)(i),"result",""),(0,a.A)((0,u.A)(i),"unitlessCssVar",void 0),(0,a.A)((0,u.A)(i),"lowPriority",void 0);var i,l=(0,r.A)(e);return i.unitlessCssVar=o,e instanceof n?i.result="(".concat(e.result,")"):"number"===l?i.result=b(e):"string"===l&&(i.result=e),i}return(0,d.A)(n,[{key:"add",value:function(e){return e instanceof n?this.result="".concat(this.result," + ").concat(e.getResult()):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," + ").concat(b(e))),this.lowPriority=!0,this}},{key:"sub",value:function(e){return e instanceof n?this.result="".concat(this.result," - ").concat(e.getResult()):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," - ").concat(b(e))),this.lowPriority=!0,this}},{key:"mul",value:function(e){return this.lowPriority&&(this.result="(".concat(this.result,")")),e instanceof n?this.result="".concat(this.result," * ").concat(e.getResult(!0)):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," * ").concat(e)),this.lowPriority=!1,this}},{key:"div",value:function(e){return this.lowPriority&&(this.result="(".concat(this.result,")")),e instanceof n?this.result="".concat(this.result," / ").concat(e.getResult(!0)):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," / ").concat(e)),this.lowPriority=!1,this}},{key:"getResult",value:function(e){return this.lowPriority||e?"(".concat(this.result,")"):this.result}},{key:"equal",value:function(e){var t=this,n=(e||{}).unit,r=!0;return("boolean"==typeof n?r=n:Array.from(this.unitlessCssVar).some(function(e){return t.result.includes(e)})&&(r=!1),this.result=this.result.replace(h,r?"px":""),void 0!==this.lowPriority)?"calc(".concat(this.result,")"):this.result}}]),n}(m),y=function(e){(0,p.A)(n,e);var t=(0,f.A)(n);function n(e){var r;return(0,s.A)(this,n),r=t.call(this),(0,a.A)((0,u.A)(r),"result",0),e instanceof n?r.result=e.result:"number"==typeof e&&(r.result=e),r}return(0,d.A)(n,[{key:"add",value:function(e){return e instanceof n?this.result+=e.result:"number"==typeof e&&(this.result+=e),this}},{key:"sub",value:function(e){return e instanceof n?this.result-=e.result:"number"==typeof e&&(this.result-=e),this}},{key:"mul",value:function(e){return e instanceof n?this.result*=e.result:"number"==typeof e&&(this.result*=e),this}},{key:"div",value:function(e){return e instanceof n?this.result/=e.result:"number"==typeof e&&(this.result/=e),this}},{key:"equal",value:function(){return this.result}}]),n}(m);let x=function(e,t){var n="css"===e?v:y;return function(e){return new n(e,t)}},$=function(e,t){return"".concat([t,e.replace(/([A-Z]+)([A-Z][a-z]+)/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2")].filter(Boolean).join("-"))};n(81470);let A=function(e,t,n,r){var a=(0,i.A)({},t[e]);null!=r&&r.deprecatedTokens&&r.deprecatedTokens.forEach(function(e){var t=(0,o.A)(e,2),n=t[0],r=t[1];(null!=a&&a[n]||null!=a&&a[r])&&(null!=a[r]||(a[r]=null==a?void 0:a[n]))});var l=(0,i.A)((0,i.A)({},n),a);return Object.keys(l).forEach(function(e){l[e]===t[e]&&delete l[e]}),l};var w="u">typeof CSSINJS_STATISTIC,S=!0;function C(){for(var e=arguments.length,t=Array(e),n=0;ntypeof Proxy&&(t=new Set,n=new Proxy(e,{get:function(e,n){if(S){var r;null==(r=t)||r.add(n)}return e[n]}}),r=function(e,n){var r;O[e]={global:Array.from(t),component:(0,i.A)((0,i.A)({},null==(r=O[e])?void 0:r.component),n)}}),{token:n,keys:t,flush:r}},E=function(e,t,n){if("function"==typeof n){var r;return n(C(t,null!=(r=t[e])?r:{}))}return null!=n?n:{}};var P=new(function(){function e(){(0,s.A)(this,e),(0,a.A)(this,"map",new Map),(0,a.A)(this,"objectIDMap",new WeakMap),(0,a.A)(this,"nextID",0),(0,a.A)(this,"lastAccessBeat",new Map),(0,a.A)(this,"accessBeat",0)}return(0,d.A)(e,[{key:"set",value:function(e,t){this.clear();var n=this.getCompositeKey(e);this.map.set(n,t),this.lastAccessBeat.set(n,Date.now())}},{key:"get",value:function(e){var t=this.getCompositeKey(e),n=this.map.get(t);return this.lastAccessBeat.set(t,Date.now()),this.accessBeat+=1,n}},{key:"getCompositeKey",value:function(e){var t=this;return e.map(function(e){return e&&"object"===(0,r.A)(e)?"obj_".concat(t.getObjectID(e)):"".concat((0,r.A)(e),"_").concat(e)}).join("|")}},{key:"getObjectID",value:function(e){if(this.objectIDMap.has(e))return this.objectIDMap.get(e);var t=this.nextID;return this.objectIDMap.set(e,t),this.nextID+=1,t}},{key:"clear",value:function(){var e=this;if(this.accessBeat>1e4){var t=Date.now();this.lastAccessBeat.forEach(function(n,r){t-n>6e5&&(e.map.delete(r),e.lastAccessBeat.delete(r))}),this.accessBeat=0}}}]),e}());let z=function(){return{}},I=function(e){var t=e.useCSP,n=void 0===t?z:t,s=e.useToken,d=e.usePrefix,u=e.getResetStyles,p=e.getCommonStyle,f=e.getCompUnitless;function m(t,a,f){var m=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},g=Array.isArray(t)?t:[t,t],h=(0,o.A)(g,1)[0],b=g.join("-"),v=e.layer||{name:"antd"};return function(e){var t,o,g=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e,y=s(),w=y.theme,S=y.realToken,O=y.hashId,k=y.token,z=y.cssVar,I=d(),M=I.rootPrefixCls,R=I.iconPrefixCls,B=n(),T=z?"css":"js",F=(t=function(){var e=new Set;return z&&Object.keys(m.unitless||{}).forEach(function(t){e.add((0,c.Ki)(t,z.prefix)),e.add((0,c.Ki)(t,$(h,z.prefix)))}),x(T,e)},o=[T,h,null==z?void 0:z.prefix],l.useMemo(function(){var e=P.get(o);if(e)return e;var n=t();return P.set(o,n),n},o)),N="js"===T?{max:Math.max,min:Math.min}:{max:function(){for(var e=arguments.length,t=Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:e,n=j(e,t),r=(0,o.A)(n,2)[1],a=P(t),i=(0,o.A)(a,2);return[i[0],r,i[1]]}},genSubStyleComponent:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=m(e,t,n,(0,i.A)({resetStyle:!1,order:-998},r));return function(e){var t=e.prefixCls,n=e.rootCls,r=void 0===n?t:n;return o(t,r),null}},genComponentStyleHook:m}}},48670(e,t,n){"use strict";n.d(t,{lO:()=>V,hV:()=>U,IV:()=>ec,Mo:()=>eu,zA:()=>R,an:()=>k,Ki:()=>T,J:()=>y,RC:()=>ed});var r,o=n(64467),a=n(57046),i=n(83098),l=n(89379),c=n(76795),s=n(85089),d=n(96540),u=n.t(d,2);n(28104),n(43210);var p=n(23029),f=n(92901);function m(e){return e.join("%")}var g=function(){function e(t){(0,p.A)(this,e),(0,o.A)(this,"instanceId",void 0),(0,o.A)(this,"cache",new Map),(0,o.A)(this,"extracted",new Set),this.instanceId=t}return(0,f.A)(e,[{key:"get",value:function(e){return this.opGet(m(e))}},{key:"opGet",value:function(e){return this.cache.get(e)||null}},{key:"update",value:function(e,t){return this.opUpdate(m(e),t)}},{key:"opUpdate",value:function(e,t){var n=t(this.cache.get(e));null===n?this.cache.delete(e):this.cache.set(e,n)}}]),e}(),h="data-token-hash",b="data-css-hash",v="__cssinjs_instance__";let y=d.createContext({hashPriority:"low",cache:function(){var e=Math.random().toString(12).slice(2);if("u">typeof document&&document.head&&document.body){var t=document.body.querySelectorAll("style[".concat(b,"]"))||[],n=document.head.firstChild;Array.from(t).forEach(function(t){t[v]=t[v]||e,t[v]===e&&document.head.insertBefore(t,n)});var r={};Array.from(document.querySelectorAll("style[".concat(b,"]"))).forEach(function(t){var n,o=t.getAttribute(b);r[o]?t[v]===e&&(null==(n=t.parentNode)||n.removeChild(t)):r[o]=!0})}return new g(e)}(),defaultCache:!0});var x=n(82284),$=n(20998),A=function(){function e(){(0,p.A)(this,e),(0,o.A)(this,"cache",void 0),(0,o.A)(this,"keys",void 0),(0,o.A)(this,"cacheCallTimes",void 0),this.cache=new Map,this.keys=[],this.cacheCallTimes=0}return(0,f.A)(e,[{key:"size",value:function(){return this.keys.length}},{key:"internalGet",value:function(e){var t,n,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o={map:this.cache};return e.forEach(function(e){if(o){var t;o=null==(t=o)||null==(t=t.map)?void 0:t.get(e)}else o=void 0}),null!=(t=o)&&t.value&&r&&(o.value[1]=this.cacheCallTimes++),null==(n=o)?void 0:n.value}},{key:"get",value:function(e){var t;return null==(t=this.internalGet(e,!0))?void 0:t[0]}},{key:"has",value:function(e){return!!this.internalGet(e)}},{key:"set",value:function(t,n){var r=this;if(!this.has(t)){if(this.size()+1>e.MAX_CACHE_SIZE+e.MAX_CACHE_OFFSET){var o=this.keys.reduce(function(e,t){var n=(0,a.A)(e,2)[1];return r.internalGet(t)[1]0,"[Ant Design CSS-in-JS] Theme should have at least one derivative function."),S+=1}return(0,f.A)(e,[{key:"getDerivativeToken",value:function(e){return this.derivatives.reduce(function(t,n){return n(e,t)},void 0)}}]),e}(),O=new A;function k(e){var t=Array.isArray(e)?e:[e];return O.has(t)||O.set(t,new C(t)),O.get(t)}var j=new WeakMap,E={},P=new WeakMap;function z(e){var t=P.get(e)||"";return t||(Object.keys(e).forEach(function(n){var r=e[n];t+=n,r instanceof C?t+=r.id:r&&"object"===(0,x.A)(r)?t+=z(r):t+=r}),t=(0,c.A)(t),P.set(e,t)),t}function I(e,t){return(0,c.A)("".concat(t,"_").concat(z(e)))}"random-".concat(Date.now(),"-").concat(Math.random()).replace(/\./g,"");var M=(0,$.A)();function R(e){return"number"==typeof e?"".concat(e,"px"):e}function B(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},a=arguments.length>4&&void 0!==arguments[4]&&arguments[4];if(a)return e;var i=(0,l.A)((0,l.A)({},r),{},(0,o.A)((0,o.A)({},h,t),b,n)),c=Object.keys(i).map(function(e){var t=i[e];return t?"".concat(e,'="').concat(t,'"'):null}).filter(function(e){return e}).join(" ");return"")}var T=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return"--".concat(t?"".concat(t,"-"):"").concat(e).replace(/([a-z0-9])([A-Z])/g,"$1-$2").replace(/([A-Z]+)([A-Z][a-z0-9]+)/g,"$1-$2").replace(/([a-z])([A-Z0-9])/g,"$1-$2").toLowerCase()},F=function(e,t,n){var r,o={},i={};return Object.entries(e).forEach(function(e){var t=(0,a.A)(e,2),r=t[0],l=t[1];if(null!=n&&null!=(c=n.preserve)&&c[r])i[r]=l;else if(("string"==typeof l||"number"==typeof l)&&!(null!=n&&null!=(s=n.ignore)&&s[r])){var c,s,d,u=T(r,null==n?void 0:n.prefix);o[u]="number"!=typeof l||null!=n&&null!=(d=n.unitless)&&d[r]?String(l):"".concat(l,"px"),i[r]="var(".concat(u,")")}}),[i,(r={scope:null==n?void 0:n.scope},Object.keys(o).length?".".concat(t).concat(null!=r&&r.scope?".".concat(r.scope):"","{").concat(Object.entries(o).map(function(e){var t=(0,a.A)(e,2),n=t[0],r=t[1];return"".concat(n,":").concat(r,";")}).join(""),"}"):"")]},N=n(30981),H=(0,l.A)({},u).useInsertionEffect,L=H?function(e,t,n){return H(function(){return e(),t()},n)}:function(e,t,n){d.useMemo(e,n),(0,N.A)(function(){return t(!0)},n)},D=void 0!==(0,l.A)({},u).useInsertionEffect?function(e){var t=[],n=!1;return d.useEffect(function(){return n=!1,function(){n=!0,t.length&&t.forEach(function(e){return e()})}},e),function(e){n||t.push(e)}}:function(){return function(e){e()}};function _(e,t,n,r,o){var l=d.useContext(y).cache,c=m([e].concat((0,i.A)(t))),s=D([c]),u=function(e){l.opUpdate(c,function(t){var r=(0,a.A)(t||[void 0,void 0],2),o=r[0],i=[void 0===o?0:o,r[1]||n()];return e?e(i):i})};d.useMemo(function(){u()},[c]);var p=l.opGet(c)[1];return L(function(){null==o||o(p)},function(e){return u(function(t){var n=(0,a.A)(t,2),r=n[0],i=n[1];return e&&0===r&&(null==o||o(p)),[r+1,i]}),function(){l.opUpdate(c,function(t){var n=(0,a.A)(t||[],2),o=n[0],i=void 0===o?0:o,d=n[1];return 0==i-1?(s(function(){(e||!l.opGet(c))&&(null==r||r(d,!1))}),null):[i-1,d]})}},[c]),p}var W={},q=new Map,V=function(e,t,n,r){var o=n.getDerivativeToken(e),a=(0,l.A)((0,l.A)({},o),t);return r&&(a=r(a)),a},X="token";function U(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,d.useContext)(y),o=r.cache.instanceId,u=r.container,p=n.salt,f=void 0===p?"":p,m=n.override,g=void 0===m?W:m,x=n.formatToken,$=n.getComputedToken,A=n.cssVar,w=function(e,t){for(var n=j,r=0;r0&&n.forEach(function(e){"u">typeof document&&document.querySelectorAll("style[".concat(h,'="').concat(e,'"]')).forEach(function(e){if(e[v]===o){var t;null==(t=e.parentNode)||t.removeChild(e)}}),q.delete(e)})},function(e){var t=(0,a.A)(e,4),n=t[0],r=t[3];if(A&&r){var i=(0,s.BD)(r,(0,c.A)("css-variables-".concat(n._themeKey)),{mark:b,prepend:"queue",attachTo:u,priority:-999});i[v]=o,i.setAttribute(h,n._themeKey)}})}var Y=n(58168),G=n(17103),K=n(50483),Q=n(89350),J="data-ant-cssinjs-cache-path",Z="_FILE_STYLE__",ee=!0,et="_multi_value_";function en(e){return(0,K.l)((0,Q.wE)(e),K.A).replace(/\{%%%\:[^;];}/g,";")}function er(e,t,n){if(!t)return e;var r=".".concat(t),o="low"===n?":where(".concat(r,")"):r;return e.split(",").map(function(e){var t,n=e.trim().split(/\s+/),r=n[0]||"",a=(null==(t=r.match(/^\w+/))?void 0:t[0])||"";return[r="".concat(a).concat(o).concat(r.slice(a.length))].concat((0,i.A)(n.slice(1))).join(" ")}).join(",")}var eo=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{root:!0,parentSelectors:[]},o=r.root,c=r.injectHash,s=r.parentSelectors,d=n.hashId,u=n.layer,p=(n.path,n.hashPriority),f=n.transformers,m=void 0===f?[]:f,g=(n.linters,""),h={};function b(t){var r=t.getName(d);if(!h[r]){var o=e(t.style,n,{root:!1,parentSelectors:s}),i=(0,a.A)(o,1)[0];h[r]="@keyframes ".concat(t.getName(d)).concat(i)}}return(function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return t.forEach(function(t){Array.isArray(t)?e(t,n):t&&n.push(t)}),n})(Array.isArray(t)?t:[t]).forEach(function(t){var r="string"!=typeof t||o?t:{};if("string"==typeof r)g+="".concat(r,"\n");else if(r._keyframe)b(r);else{var u=m.reduce(function(e,t){var n;return(null==t||null==(n=t.visit)?void 0:n.call(t,e))||e},r);Object.keys(u).forEach(function(t){var r=u[t];if("object"!==(0,x.A)(r)||!r||"animationName"===t&&r._keyframe||"object"===(0,x.A)(r)&&r&&("_skip_check_"in r||et in r)){function f(e,t){var n=e.replace(/[A-Z]/g,function(e){return"-".concat(e.toLowerCase())}),r=t;G.A[e]||"number"!=typeof r||0===r||(r="".concat(r,"px")),"animationName"===e&&null!=t&&t._keyframe&&(b(t),r=t.getName(d)),g+="".concat(n,":").concat(r,";")}var m,v=null!=(m=null==r?void 0:r.value)?m:r;"object"===(0,x.A)(r)&&null!=r&&r[et]&&Array.isArray(v)?v.forEach(function(e){f(t,e)}):f(t,v)}else{var y=!1,$=t.trim(),A=!1;(o||c)&&d?$.startsWith("@")?y=!0:$="&"===$?er("",d,p):er(t,d,p):o&&!d&&("&"===$||""===$)&&($="",A=!0);var w=e(r,n,{root:A,injectHash:y,parentSelectors:[].concat((0,i.A)(s),[$])}),S=(0,a.A)(w,2),C=S[0],O=S[1];h=(0,l.A)((0,l.A)({},h),O),g+="".concat($).concat(C)}})}}),o?u&&(g&&(g="@layer ".concat(u.name," {").concat(g,"}")),u.dependencies&&(h["@layer ".concat(u.name)]=u.dependencies.map(function(e){return"@layer ".concat(e,", ").concat(u.name,";")}).join("\n"))):g="{".concat(g,"}"),[g,h]};function ea(e,t){return(0,c.A)("".concat(e.join("%")).concat(t))}function ei(){return null}var el="style";function ec(e,t){var n=e.token,c=e.path,u=e.hashId,p=e.layer,f=e.nonce,m=e.clientOnly,g=e.order,x=void 0===g?0:g,A=d.useContext(y),w=A.autoClear,S=(A.mock,A.defaultCache),C=A.hashPriority,O=A.container,k=A.ssrInline,j=A.transformers,E=A.linters,P=A.cache,z=A.layer,I=n._tokenKey,R=[I];z&&R.push("layer"),R.push.apply(R,(0,i.A)(c));var B=_(el,R,function(){var e=R.join("|");if(function(e){if(!r&&(r={},(0,$.A)())){var t,n=document.createElement("div");n.className=J,n.style.position="fixed",n.style.visibility="hidden",n.style.top="-9999px",document.body.appendChild(n);var o=getComputedStyle(n).content||"";(o=o.replace(/^"/,"").replace(/"$/,"")).split(";").forEach(function(e){var t=e.split(":"),n=(0,a.A)(t,2),o=n[0],i=n[1];r[o]=i});var i=document.querySelector("style[".concat(J,"]"));i&&(ee=!1,null==(t=i.parentNode)||t.removeChild(i)),document.body.removeChild(n)}return!!r[e]}(e)){var n=function(e){var t=r[e],n=null;if(t&&(0,$.A)())if(ee)n=Z;else{var o=document.querySelector("style[".concat(b,'="').concat(r[e],'"]'));o?n=o.innerHTML:delete r[e]}return[n,t]}(e),o=(0,a.A)(n,2),i=o[0],l=o[1];if(i)return[i,I,l,{},m,x]}var s=eo(t(),{hashId:u,hashPriority:C,layer:z?p:void 0,path:c.join("-"),transformers:j,linters:E}),d=(0,a.A)(s,2),f=d[0],g=d[1],h=en(f),v=ea(R,h);return[h,I,v,g,m,x]},function(e,t){var n=(0,a.A)(e,3)[2];(t||w)&&M&&(0,s.m6)(n,{mark:b,attachTo:O})},function(e){var t=(0,a.A)(e,4),n=t[0],r=(t[1],t[2]),o=t[3];if(M&&n!==Z){var i={mark:b,prepend:!z&&"queue",attachTo:O,priority:x},c="function"==typeof f?f():f;c&&(i.csp={nonce:c});var d=[],u=[];Object.keys(o).forEach(function(e){e.startsWith("@layer")?d.push(e):u.push(e)}),d.forEach(function(e){(0,s.BD)(en(o[e]),"_layer-".concat(e),(0,l.A)((0,l.A)({},i),{},{prepend:!0}))});var p=(0,s.BD)(n,r,i);p[v]=P.instanceId,p.setAttribute(h,I),u.forEach(function(e){(0,s.BD)(en(o[e]),"_effect-".concat(e),i)})}}),T=(0,a.A)(B,3),F=T[0],N=T[1],H=T[2];return function(e){var t;return t=k&&!M&&S?d.createElement("style",(0,Y.A)({},(0,o.A)((0,o.A)({},h,N),b,H),{dangerouslySetInnerHTML:{__html:F}})):d.createElement(ei,null),d.createElement(d.Fragment,null,t,e)}}var es="cssVar";let ed=function(e,t){var n=e.key,r=e.prefix,o=e.unitless,l=e.ignore,c=e.token,u=e.scope,p=void 0===u?"":u,f=(0,d.useContext)(y),m=f.cache.instanceId,g=f.container,x=c._tokenKey,$=[].concat((0,i.A)(e.path),[n,p,x]);return _(es,$,function(){var e=F(t(),n,{prefix:r,unitless:o,ignore:l,scope:p}),i=(0,a.A)(e,2),c=i[0],s=i[1],d=ea($,s);return[c,s,d,n]},function(e){var t=(0,a.A)(e,3)[2];M&&(0,s.m6)(t,{mark:b,attachTo:g})},function(e){var t=(0,a.A)(e,3),r=t[1],o=t[2];if(r){var i=(0,s.BD)(r,o,{mark:b,prepend:"queue",attachTo:g,priority:-999});i[v]=m,i.setAttribute(h,n)}})};(0,o.A)((0,o.A)((0,o.A)({},el,function(e,t,n){var r=(0,a.A)(e,6),o=r[0],i=r[1],l=r[2],c=r[3],s=r[4],d=r[5],u=(n||{}).plain;if(s)return null;var p=o,f={"data-rc-order":"prependQueue","data-rc-priority":"".concat(d)};return p=B(o,i,l,f,u),c&&Object.keys(c).forEach(function(e){if(!t[e]){t[e]=!0;var n=B(en(c[e]),i,"_effect-".concat(e),f,u);e.startsWith("@layer")?p=n+p:p+=n}}),[d,l,p]}),X,function(e,t,n){var r=(0,a.A)(e,5),o=r[2],i=r[3],l=r[4],c=(n||{}).plain;if(!i)return null;var s=o._tokenKey,d=B(i,l,s,{"data-rc-order":"prependQueue","data-rc-priority":"".concat(-999)},c);return[-999,s,d]}),es,function(e,t,n){var r=(0,a.A)(e,4),o=r[1],i=r[2],l=r[3],c=(n||{}).plain;if(!o)return null;var s=B(o,l,i,{"data-rc-order":"prependQueue","data-rc-priority":"".concat(-999)},c);return[-999,i,s]});let eu=function(){function e(t,n){(0,p.A)(this,e),(0,o.A)(this,"name",void 0),(0,o.A)(this,"style",void 0),(0,o.A)(this,"_keyframe",!0),this.name=t,this.style=n}return(0,f.A)(e,[{key:"getName",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return e?"".concat(e,"-").concat(this.name):this.name}}]),e}();function ep(e){return e.notSplit=!0,e}ep(["borderTop","borderBottom"]),ep(["borderTop"]),ep(["borderBottom"]),ep(["borderLeft","borderRight"]),ep(["borderLeft"]),ep(["borderRight"])},78250(e,t,n){"use strict";n.d(t,{Y:()=>c});var r=n(64467);let o=Math.round;function a(e,t){let n=e.replace(/^[^(]*\((.*)/,"$1").replace(/\).*/,"").match(/\d*\.?\d+%?/g)||[],r=n.map(e=>parseFloat(e));for(let e=0;e<3;e+=1)r[e]=t(r[e]||0,n[e]||"",e);return n[3]?r[3]=n[3].includes("%")?r[3]/100:r[3]:r[3]=1,r}let i=(e,t,n)=>0===n?e:e/100;function l(e,t){let n=t||255;return e>n?n:e<0?0:e}class c{constructor(e){function t(t){return t[0]in e&&t[1]in e&&t[2]in e}if((0,r.A)(this,"isValid",!0),(0,r.A)(this,"r",0),(0,r.A)(this,"g",0),(0,r.A)(this,"b",0),(0,r.A)(this,"a",1),(0,r.A)(this,"_h",void 0),(0,r.A)(this,"_s",void 0),(0,r.A)(this,"_l",void 0),(0,r.A)(this,"_v",void 0),(0,r.A)(this,"_max",void 0),(0,r.A)(this,"_min",void 0),(0,r.A)(this,"_brightness",void 0),e)if("string"==typeof e){const t=e.trim();function n(e){return t.startsWith(e)}/^#?[A-F\d]{3,8}$/i.test(t)?this.fromHexString(t):n("rgb")?this.fromRgbString(t):n("hsl")?this.fromHslString(t):(n("hsv")||n("hsb"))&&this.fromHsvString(t)}else if(e instanceof c)this.r=e.r,this.g=e.g,this.b=e.b,this.a=e.a,this._h=e._h,this._s=e._s,this._l=e._l,this._v=e._v;else if(t("rgb"))this.r=l(e.r),this.g=l(e.g),this.b=l(e.b),this.a="number"==typeof e.a?l(e.a,1):1;else if(t("hsl"))this.fromHsl(e);else if(t("hsv"))this.fromHsv(e);else throw Error("@ant-design/fast-color: unsupported input "+JSON.stringify(e))}setR(e){return this._sc("r",e)}setG(e){return this._sc("g",e)}setB(e){return this._sc("b",e)}setA(e){return this._sc("a",e,1)}setHue(e){let t=this.toHsv();return t.h=e,this._c(t)}getLuminance(){function e(e){let t=e/255;return t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4)}return .2126*e(this.r)+.7152*e(this.g)+.0722*e(this.b)}getHue(){if(void 0===this._h){let e=this.getMax()-this.getMin();0===e?this._h=0:this._h=o(60*(this.r===this.getMax()?(this.g-this.b)/e+6*(this.g1&&(r=1),this._c({h:t,s:n,l:r,a:this.a})}mix(e,t=50){let n=this._c(e),r=t/100,a=e=>(n[e]-this[e])*r+this[e],i={r:o(a("r")),g:o(a("g")),b:o(a("b")),a:o(100*a("a"))/100};return this._c(i)}tint(e=10){return this.mix({r:255,g:255,b:255,a:1},e)}shade(e=10){return this.mix({r:0,g:0,b:0,a:1},e)}onBackground(e){let t=this._c(e),n=this.a+t.a*(1-this.a),r=e=>o((this[e]*this.a+t[e]*t.a*(1-this.a))/n);return this._c({r:r("r"),g:r("g"),b:r("b"),a:n})}isDark(){return 128>this.getBrightness()}isLight(){return this.getBrightness()>=128}equals(e){return this.r===e.r&&this.g===e.g&&this.b===e.b&&this.a===e.a}clone(){return this._c(this)}toHexString(){let e="#",t=(this.r||0).toString(16);e+=2===t.length?t:"0"+t;let n=(this.g||0).toString(16);e+=2===n.length?n:"0"+n;let r=(this.b||0).toString(16);if(e+=2===r.length?r:"0"+r,"number"==typeof this.a&&this.a>=0&&this.a<1){let t=o(255*this.a).toString(16);e+=2===t.length?t:"0"+t}return e}toHsl(){return{h:this.getHue(),s:this.getSaturation(),l:this.getLightness(),a:this.a}}toHslString(){let e=this.getHue(),t=o(100*this.getSaturation()),n=o(100*this.getLightness());return 1!==this.a?`hsla(${e},${t}%,${n}%,${this.a})`:`hsl(${e},${t}%,${n}%)`}toHsv(){return{h:this.getHue(),s:this.getSaturation(),v:this.getValue(),a:this.a}}toRgb(){return{r:this.r,g:this.g,b:this.b,a:this.a}}toRgbString(){return 1!==this.a?`rgba(${this.r},${this.g},${this.b},${this.a})`:`rgb(${this.r},${this.g},${this.b})`}toString(){return this.toRgbString()}_sc(e,t,n){let r=this.clone();return r[e]=l(t,n),r}_c(e){return new this.constructor(e)}getMax(){return void 0===this._max&&(this._max=Math.max(this.r,this.g,this.b)),this._max}getMin(){return void 0===this._min&&(this._min=Math.min(this.r,this.g,this.b)),this._min}fromHexString(e){let t=e.replace("#","");function n(e,n){return parseInt(t[e]+t[n||e],16)}t.length<6?(this.r=n(0),this.g=n(1),this.b=n(2),this.a=t[3]?n(3)/255:1):(this.r=n(0,1),this.g=n(2,3),this.b=n(4,5),this.a=t[6]?n(6,7)/255:1)}fromHsl({h:e,s:t,l:n,a:r}){if(this._h=e%360,this._s=t,this._l=n,this.a="number"==typeof r?r:1,t<=0){let e=o(255*n);this.r=e,this.g=e,this.b=e}let a=0,i=0,l=0,c=e/60,s=(1-Math.abs(2*n-1))*t,d=s*(1-Math.abs(c%2-1));c>=0&&c<1?(a=s,i=d):c>=1&&c<2?(a=d,i=s):c>=2&&c<3?(i=s,l=d):c>=3&&c<4?(i=d,l=s):c>=4&&c<5?(a=d,l=s):c>=5&&c<6&&(a=s,l=d);let u=n-s/2;this.r=o((a+u)*255),this.g=o((i+u)*255),this.b=o((l+u)*255)}fromHsv({h:e,s:t,v:n,a:r}){this._h=e%360,this._s=t,this._v=n,this.a="number"==typeof r?r:1;let a=o(255*n);if(this.r=a,this.g=a,this.b=a,t<=0)return;let i=e/60,l=Math.floor(i),c=i-l,s=o(n*(1-t)*255),d=o(n*(1-t*c)*255),u=o(n*(1-t*(1-c))*255);switch(l){case 0:this.g=u,this.b=s;break;case 1:this.r=d,this.b=s;break;case 2:this.r=s,this.b=u;break;case 3:this.r=s,this.g=d;break;case 4:this.r=u,this.g=s;break;default:this.g=s,this.b=d}}fromHsvString(e){let t=a(e,i);this.fromHsv({h:t[0],s:t[1],v:t[2],a:t[3]})}fromHslString(e){let t=a(e,i);this.fromHsl({h:t[0],s:t[1],l:t[2],a:t[3]})}fromRgbString(e){let t=a(e,(e,t)=>t.includes("%")?o(e/100*255):e);this.r=t[0],this.g=t[1],this.b=t[2],this.a=t[3]}}},20932(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M872 474H286.9l350.2-304c5.6-4.9 2.2-14-5.2-14h-88.5c-3.9 0-7.6 1.4-10.5 3.9L155 487.8a31.96 31.96 0 000 48.3L535.1 866c1.5 1.3 3.3 2 5.2 2h91.5c7.4 0 10.8-9.2 5.2-14L286.9 550H872c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8z"}}]},name:"arrow-left",theme:"outlined"}},6711(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M869 487.8L491.2 159.9c-2.9-2.5-6.6-3.9-10.5-3.9h-88.5c-7.4 0-10.8 9.2-5.2 14l350.2 304H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h585.1L386.9 854c-5.6 4.9-2.2 14 5.2 14h91.5c1.9 0 3.8-.7 5.2-2L869 536.2a32.07 32.07 0 000-48.4z"}}]},name:"arrow-right",theme:"outlined"}},83690(e,t,n){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;let o=(r=n(64607))&&r.__esModule?r:{default:r};t.default=o,e.exports=o},58717(e,t,n){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;let o=(r=n(36110))&&r.__esModule?r:{default:r};t.default=o,e.exports=o},67928(e,t,n){"use strict";n.d(t,{A:()=>j});var r=n(58168),o=n(57046),a=n(64467),i=n(80045),l=n(96540),c=n(46942),s=n.n(c),d=n(81463),u=n(61053),p=n(89379),f=n(82284),m=n(85089),g=n(72633),h=n(68210);function b(e){return"object"===(0,f.A)(e)&&"string"==typeof e.name&&"string"==typeof e.theme&&("object"===(0,f.A)(e.icon)||"function"==typeof e.icon)}function v(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.keys(e).reduce(function(t,n){var r=e[n];return"class"===n?(t.className=r,delete t.class):(delete t[n],t[n.replace(/-(.)/g,function(e,t){return t.toUpperCase()})]=r),t},{})}function y(e){return(0,d.generate)(e)[0]}function x(e){return e?Array.isArray(e)?e:[e]:[]}var $=function(e){var t=(0,l.useContext)(u.A),n=t.csp,r=t.prefixCls,o=t.layer,a="\n.anticon {\n display: inline-flex;\n align-items: center;\n color: inherit;\n font-style: normal;\n line-height: 0;\n text-align: center;\n text-transform: none;\n vertical-align: -0.125em;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.anticon > * {\n line-height: 1;\n}\n\n.anticon svg {\n display: inline-block;\n}\n\n.anticon::before {\n display: none;\n}\n\n.anticon .anticon-icon {\n display: block;\n}\n\n.anticon[tabindex] {\n cursor: pointer;\n}\n\n.anticon-spin::before,\n.anticon-spin {\n display: inline-block;\n -webkit-animation: loadingCircle 1s infinite linear;\n animation: loadingCircle 1s infinite linear;\n}\n\n@-webkit-keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n";r&&(a=a.replace(/anticon/g,r)),o&&(a="@layer ".concat(o," {\n").concat(a,"\n}")),(0,l.useEffect)(function(){var t=e.current,r=(0,g.j)(t);(0,m.BD)(a,"@ant-design-icons",{prepend:!o,csp:n,attachTo:r})},[])},A=["icon","className","onClick","style","primaryColor","secondaryColor"],w={primaryColor:"#333",secondaryColor:"#E6E6E6",calculated:!1},S=function(e){var t,n,r=e.icon,o=e.className,a=e.onClick,c=e.style,s=e.primaryColor,d=e.secondaryColor,u=(0,i.A)(e,A),f=l.useRef(),m=w;if(s&&(m={primaryColor:s,secondaryColor:d||y(s)}),$(f),t=b(r),n="icon should be icon definiton, but got ".concat(r),(0,h.Ay)(t,"[@ant-design/icons] ".concat(n)),!b(r))return null;var g=r;return g&&"function"==typeof g.icon&&(g=(0,p.A)((0,p.A)({},g),{},{icon:g.icon(m.primaryColor,m.secondaryColor)})),function e(t,n,r){return r?l.createElement(t.tag,(0,p.A)((0,p.A)({key:n},v(t.attrs)),r),(t.children||[]).map(function(r,o){return e(r,"".concat(n,"-").concat(t.tag,"-").concat(o))})):l.createElement(t.tag,(0,p.A)({key:n},v(t.attrs)),(t.children||[]).map(function(r,o){return e(r,"".concat(n,"-").concat(t.tag,"-").concat(o))}))}(g.icon,"svg-".concat(g.name),(0,p.A)((0,p.A)({className:o,onClick:a,style:c,"data-icon":g.name,width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true"},u),{},{ref:f}))};function C(e){var t=x(e),n=(0,o.A)(t,2),r=n[0],a=n[1];return S.setTwoToneColors({primaryColor:r,secondaryColor:a})}S.displayName="IconReact",S.getTwoToneColors=function(){return(0,p.A)({},w)},S.setTwoToneColors=function(e){var t=e.primaryColor,n=e.secondaryColor;w.primaryColor=t,w.secondaryColor=n||y(t),w.calculated=!!n};var O=["className","icon","spin","rotate","tabIndex","onClick","twoToneColor"];C(d.blue.primary);var k=l.forwardRef(function(e,t){var n=e.className,c=e.icon,d=e.spin,p=e.rotate,f=e.tabIndex,m=e.onClick,g=e.twoToneColor,h=(0,i.A)(e,O),b=l.useContext(u.A),v=b.prefixCls,y=void 0===v?"anticon":v,$=b.rootClassName,A=s()($,y,(0,a.A)((0,a.A)({},"".concat(y,"-").concat(c.name),!!c.name),"".concat(y,"-spin"),!!d||"loading"===c.name),n),w=f;void 0===w&&m&&(w=-1);var C=x(g),k=(0,o.A)(C,2),j=k[0],E=k[1];return l.createElement("span",(0,r.A)({role:"img","aria-label":c.name},h,{ref:t,tabIndex:w,onClick:m,className:A}),l.createElement(S,{icon:c,primaryColor:j,secondaryColor:E,style:p?{msTransform:"rotate(".concat(p,"deg)"),transform:"rotate(".concat(p,"deg)")}:void 0}))});k.displayName="AntdIcon",k.getTwoToneColor=function(){var e=S.getTwoToneColors();return e.calculated?[e.primaryColor,e.secondaryColor]:e.primaryColor},k.setTwoToneColor=C;let j=k},61053(e,t,n){"use strict";n.d(t,{A:()=>r});let r=(0,n(96540).createContext)({})},6663(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M908 640H804V488c0-4.4-3.6-8-8-8H548v-96h108c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16v288c0 8.8 7.2 16 16 16h108v96H228c-4.4 0-8 3.6-8 8v152H116c-8.8 0-16 7.2-16 16v288c0 8.8 7.2 16 16 16h288c8.8 0 16-7.2 16-16V656c0-8.8-7.2-16-16-16H292v-88h440v88H620c-8.8 0-16 7.2-16 16v288c0 8.8 7.2 16 16 16h288c8.8 0 16-7.2 16-16V656c0-8.8-7.2-16-16-16zm-564 76v168H176V716h168zm84-408V140h168v168H428zm420 576H680V716h168v168z"}}]},name:"apartment",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},49776(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M464 144H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H212V212h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H612V212h200v200zM464 544H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H212V612h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H612V612h200v200z"}}]},name:"appstore",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},40666(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M296 250c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H296zm184 144H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm-48 458H208V148h560v320c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h264c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm440-88H728v-36.6c46.3-13.8 80-56.6 80-107.4 0-61.9-50.1-112-112-112s-112 50.1-112 112c0 50.7 33.7 93.6 80 107.4V764H520c-8.8 0-16 7.2-16 16v152c0 8.8 7.2 16 16 16h352c8.8 0 16-7.2 16-16V780c0-8.8-7.2-16-16-16zM646 620c0-27.6 22.4-50 50-50s50 22.4 50 50-22.4 50-50 50-50-22.4-50-50zm180 266H566v-60h260v60z"}}]},name:"audit",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},6266(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M894 462c30.9 0 43.8-39.7 18.7-58L530.8 126.2a31.81 31.81 0 00-37.6 0L111.3 404c-25.1 18.2-12.2 58 18.8 58H192v374h-72c-4.4 0-8 3.6-8 8v52c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-52c0-4.4-3.6-8-8-8h-72V462h62zM512 196.7l271.1 197.2H240.9L512 196.7zM264 462h117v374H264V462zm189 0h117v374H453V462zm307 374H642V462h118v374z"}}]},name:"bank",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},69149(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M888 792H200V168c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v688c0 4.4 3.6 8 8 8h752c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm-600-80h56c4.4 0 8-3.6 8-8V560c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8zm152 0h56c4.4 0 8-3.6 8-8V384c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v320c0 4.4 3.6 8 8 8zm152 0h56c4.4 0 8-3.6 8-8V462c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v242c0 4.4 3.6 8 8 8zm152 0h56c4.4 0 8-3.6 8-8V304c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v400c0 4.4 3.6 8 8 8z"}}]},name:"bar-chart",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},65235(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M816 768h-24V428c0-141.1-104.3-257.7-240-277.1V112c0-22.1-17.9-40-40-40s-40 17.9-40 40v38.9c-135.7 19.4-240 136-240 277.1v340h-24c-17.7 0-32 14.3-32 32v32c0 4.4 3.6 8 8 8h216c0 61.8 50.2 112 112 112s112-50.2 112-112h216c4.4 0 8-3.6 8-8v-32c0-17.7-14.3-32-32-32zM512 888c-26.5 0-48-21.5-48-48h96c0 26.5-21.5 48-48 48zM304 768V428c0-55.6 21.6-107.8 60.9-147.1S456.4 220 512 220c55.6 0 107.8 21.6 147.1 60.9S720 372.4 720 428v340H304z"}}]},name:"bell",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},46420(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm193.5 301.7l-210.6 292a31.8 31.8 0 01-51.7 0L318.5 484.9c-3.8-5.3 0-12.7 6.5-12.7h46.9c10.2 0 19.9 4.9 25.9 13.3l71.2 98.8 157.2-218c6-8.3 15.6-13.3 25.9-13.3H699c6.5 0 10.3 7.4 6.5 12.7z"}}]},name:"check-circle",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},87281(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M699 353h-46.9c-10.2 0-19.9 4.9-25.9 13.3L469 584.3l-71.2-98.8c-6-8.3-15.6-13.3-25.9-13.3H325c-6.5 0-10.3 7.4-6.5 12.7l124.6 172.8a31.8 31.8 0 0051.7 0l210.6-292c3.9-5.3.1-12.7-6.4-12.7z"}},{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"}}]},name:"check-circle",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},51237(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M912 190h-69.9c-9.8 0-19.1 4.5-25.1 12.2L404.7 724.5 207 474a32 32 0 00-25.1-12.2H112c-6.7 0-10.4 7.7-6.3 12.9l273.9 347c12.8 16.2 37.4 16.2 50.3 0l488.4-618.9c4.1-5.1.4-12.8-6.3-12.8z"}}]},name:"check",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},90958(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"}},{tag:"path",attrs:{d:"M686.7 638.6L544.1 535.5V288c0-4.4-3.6-8-8-8H488c-4.4 0-8 3.6-8 8v275.4c0 2.6 1.2 5 3.3 6.5l165.4 120.6c3.6 2.6 8.6 1.8 11.2-1.7l28.6-39c2.6-3.7 1.8-8.7-1.8-11.2z"}}]},name:"clock-circle",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},39159(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64c247.4 0 448 200.6 448 448S759.4 960 512 960 64 759.4 64 512 264.6 64 512 64zm127.98 274.82h-.04l-.08.06L512 466.75 384.14 338.88c-.04-.05-.06-.06-.08-.06a.12.12 0 00-.07 0c-.03 0-.05.01-.09.05l-45.02 45.02a.2.2 0 00-.05.09.12.12 0 000 .07v.02a.27.27 0 00.06.06L466.75 512 338.88 639.86c-.05.04-.06.06-.06.08a.12.12 0 000 .07c0 .03.01.05.05.09l45.02 45.02a.2.2 0 00.09.05.12.12 0 00.07 0c.02 0 .04-.01.08-.05L512 557.25l127.86 127.87c.04.04.06.05.08.05a.12.12 0 00.07 0c.03 0 .05-.01.09-.05l45.02-45.02a.2.2 0 00.05-.09.12.12 0 000-.07v-.02a.27.27 0 00-.05-.06L557.25 512l127.87-127.86c.04-.04.05-.06.05-.08a.12.12 0 000-.07c0-.03-.01-.05-.05-.09l-45.02-45.02a.2.2 0 00-.09-.05.12.12 0 00-.07 0z"}}]},name:"close-circle",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},3727(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64c247.4 0 448 200.6 448 448S759.4 960 512 960 64 759.4 64 512 264.6 64 512 64zm0 76c-205.4 0-372 166.6-372 372s166.6 372 372 372 372-166.6 372-372-166.6-372-372-372zm128.01 198.83c.03 0 .05.01.09.06l45.02 45.01a.2.2 0 01.05.09.12.12 0 010 .07c0 .02-.01.04-.05.08L557.25 512l127.87 127.86a.27.27 0 01.05.06v.02a.12.12 0 010 .07c0 .03-.01.05-.05.09l-45.02 45.02a.2.2 0 01-.09.05.12.12 0 01-.07 0c-.02 0-.04-.01-.08-.05L512 557.25 384.14 685.12c-.04.04-.06.05-.08.05a.12.12 0 01-.07 0c-.03 0-.05-.01-.09-.05l-45.02-45.02a.2.2 0 01-.05-.09.12.12 0 010-.07c0-.02.01-.04.06-.08L466.75 512 338.88 384.14a.27.27 0 01-.05-.06l-.01-.02a.12.12 0 010-.07c0-.03.01-.05.05-.09l45.02-45.02a.2.2 0 01.09-.05.12.12 0 01.07 0c.02 0 .04.01.08.06L512 466.75l127.86-127.86c.04-.05.06-.06.08-.06a.12.12 0 01.07 0z"}}]},name:"close-circle",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},5100(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M799.86 166.31c.02 0 .04.02.08.06l57.69 57.7c.04.03.05.05.06.08a.12.12 0 010 .06c0 .03-.02.05-.06.09L569.93 512l287.7 287.7c.04.04.05.06.06.09a.12.12 0 010 .07c0 .02-.02.04-.06.08l-57.7 57.69c-.03.04-.05.05-.07.06a.12.12 0 01-.07 0c-.03 0-.05-.02-.09-.06L512 569.93l-287.7 287.7c-.04.04-.06.05-.09.06a.12.12 0 01-.07 0c-.02 0-.04-.02-.08-.06l-57.69-57.7c-.04-.03-.05-.05-.06-.07a.12.12 0 010-.07c0-.03.02-.05.06-.09L454.07 512l-287.7-287.7c-.04-.04-.05-.06-.06-.09a.12.12 0 010-.07c0-.02.02-.04.06-.08l57.7-57.69c.03-.04.05-.05.07-.06a.12.12 0 01.07 0c.03 0 .05.02.09.06L512 454.07l287.7-287.7c.04-.04.06-.05.09-.06a.12.12 0 01.07 0z"}}]},name:"close",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},99221(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372zm198.4-588.1a32 32 0 00-24.5.5L414.9 415 296.4 686c-3.6 8.2-3.6 17.5 0 25.7 3.4 7.8 9.7 13.9 17.7 17 3.8 1.5 7.7 2.2 11.7 2.2 4.4 0 8.7-.9 12.8-2.7l271-118.6 118.5-271a32.06 32.06 0 00-17.7-42.7zM576.8 534.4l26.2 26.2-42.4 42.4-26.2-26.2L380 644.4 447.5 490 422 464.4l42.4-42.4 25.5 25.5L644.4 380l-67.6 154.4zM464.4 422L422 464.4l25.5 25.6 86.9 86.8 26.2 26.2 42.4-42.4-26.2-26.2-86.8-86.9z"}}]},name:"compass",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},66052(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 64H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zm-40 824H232V687h97.9c11.6 32.8 32 62.3 59.1 84.7 34.5 28.5 78.2 44.3 123 44.3s88.5-15.7 123-44.3c27.1-22.4 47.5-51.9 59.1-84.7H792v-63H643.6l-5.2 24.7C626.4 708.5 573.2 752 512 752s-114.4-43.5-126.5-103.3l-5.2-24.7H232V136h560v752zM320 341h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H320c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm0 160h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H320c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8z"}}]},name:"container",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},44022(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 64H296c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h496v688c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V96c0-17.7-14.3-32-32-32zM704 192H192c-17.7 0-32 14.3-32 32v530.7c0 8.5 3.4 16.6 9.4 22.6l173.3 173.3c2.2 2.2 4.7 4 7.4 5.5v1.9h4.2c3.5 1.3 7.2 2 11 2H704c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32zM350 856.2L263.9 770H350v86.2zM664 888H414V746c0-22.1-17.9-40-40-40H232V264h432v624z"}}]},name:"copy",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},55156(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M924.8 385.6a446.7 446.7 0 00-96-142.4 446.7 446.7 0 00-142.4-96C631.1 123.8 572.5 112 512 112s-119.1 11.8-174.4 35.2a446.7 446.7 0 00-142.4 96 446.7 446.7 0 00-96 142.4C75.8 440.9 64 499.5 64 560c0 132.7 58.3 257.7 159.9 343.1l1.7 1.4c5.8 4.8 13.1 7.5 20.6 7.5h531.7c7.5 0 14.8-2.7 20.6-7.5l1.7-1.4C901.7 817.7 960 692.7 960 560c0-60.5-11.9-119.1-35.2-174.4zM761.4 836H262.6A371.12 371.12 0 01140 560c0-99.4 38.7-192.8 109-263 70.3-70.3 163.7-109 263-109 99.4 0 192.8 38.7 263 109 70.3 70.3 109 163.7 109 263 0 105.6-44.5 205.5-122.6 276zM623.5 421.5a8.03 8.03 0 00-11.3 0L527.7 506c-18.7-5-39.4-.2-54.1 14.5a55.95 55.95 0 000 79.2 55.95 55.95 0 0079.2 0 55.87 55.87 0 0014.5-54.1l84.5-84.5c3.1-3.1 3.1-8.2 0-11.3l-28.3-28.3zM490 320h44c4.4 0 8-3.6 8-8v-80c0-4.4-3.6-8-8-8h-44c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8zm260 218v44c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8v-44c0-4.4-3.6-8-8-8h-80c-4.4 0-8 3.6-8 8zm12.7-197.2l-31.1-31.1a8.03 8.03 0 00-11.3 0l-56.6 56.6a8.03 8.03 0 000 11.3l31.1 31.1c3.1 3.1 8.2 3.1 11.3 0l56.6-56.6c3.1-3.1 3.1-8.2 0-11.3zm-458.6-31.1a8.03 8.03 0 00-11.3 0l-31.1 31.1a8.03 8.03 0 000 11.3l56.6 56.6c3.1 3.1 8.2 3.1 11.3 0l31.1-31.1c3.1-3.1 3.1-8.2 0-11.3l-56.6-56.6zM262 530h-80c-4.4 0-8 3.6-8 8v44c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8v-44c0-4.4-3.6-8-8-8z"}}]},name:"dashboard",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},53159(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 64H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zm-600 72h560v208H232V136zm560 480H232V408h560v208zm0 272H232V680h560v208zM304 240a40 40 0 1080 0 40 40 0 10-80 0zm0 272a40 40 0 1080 0 40 40 0 10-80 0zm0 272a40 40 0 1080 0 40 40 0 10-80 0z"}}]},name:"database",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},46029(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M360 184h-8c4.4 0 8-3.6 8-8v8h304v-8c0 4.4 3.6 8 8 8h-8v72h72v-80c0-35.3-28.7-64-64-64H352c-35.3 0-64 28.7-64 64v80h72v-72zm504 72H160c-17.7 0-32 14.3-32 32v32c0 4.4 3.6 8 8 8h60.4l24.7 523c1.6 34.1 29.8 61 63.9 61h454c34.2 0 62.3-26.8 63.9-61l24.7-523H888c4.4 0 8-3.6 8-8v-32c0-17.7-14.3-32-32-32zM731.3 840H292.7l-24.2-512h487l-24.2 512z"}}]},name:"delete",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},37864(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M533.2 492.3L277.9 166.1c-3-3.9-7.7-6.1-12.6-6.1H188c-6.7 0-10.4 7.7-6.3 12.9L447.1 512 181.7 851.1A7.98 7.98 0 00188 864h77.3c4.9 0 9.6-2.3 12.6-6.1l255.3-326.1c9.1-11.7 9.1-27.9 0-39.5zm304 0L581.9 166.1c-3-3.9-7.7-6.1-12.6-6.1H492c-6.7 0-10.4 7.7-6.3 12.9L751.1 512 485.7 851.1A7.98 7.98 0 00492 864h77.3c4.9 0 9.6-2.3 12.6-6.1l255.3-326.1c9.1-11.7 9.1-27.9 0-39.5z"}}]},name:"double-right",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},98459(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M884 256h-75c-5.1 0-9.9 2.5-12.9 6.6L512 654.2 227.9 262.6c-3-4.1-7.8-6.6-12.9-6.6h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3.1-12.7-6.4-12.7z"}}]},name:"down",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},87039(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M176 511a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0z"}}]},name:"ellipsis",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},51399(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm-32 232c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V296zm32 440a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"exclamation-circle",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},17011(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 472a40 40 0 1080 0 40 40 0 10-80 0zm367 352.9L696.3 352V178H768v-68H256v68h71.7v174L145 824.9c-2.8 7.4-4.3 15.2-4.3 23.1 0 35.3 28.7 64 64 64h614.6c7.9 0 15.7-1.5 23.1-4.3 33-12.7 49.4-49.8 36.6-82.8zM395.7 364.7V180h232.6v184.7L719.2 600c-20.7-5.3-42.1-8-63.9-8-61.2 0-119.2 21.5-165.3 60a188.78 188.78 0 01-121.3 43.9c-32.7 0-64.1-8.3-91.8-23.7l118.8-307.5zM210.5 844l41.7-107.8c35.7 18.1 75.4 27.8 116.6 27.8 61.2 0 119.2-21.5 165.3-60 33.9-28.2 76.3-43.9 121.3-43.9 35 0 68.4 9.5 97.6 27.1L813.5 844h-603z"}}]},name:"experiment",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},76639(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M942.2 486.2Q889.47 375.11 816.7 305l-50.88 50.88C807.31 395.53 843.45 447.4 874.7 512 791.5 684.2 673.4 766 512 766q-72.67 0-133.87-22.38L323 798.75Q408 838 512 838q288.3 0 430.2-300.3a60.29 60.29 0 000-51.5zm-63.57-320.64L836 122.88a8 8 0 00-11.32 0L715.31 232.2Q624.86 186 512 186q-288.3 0-430.2 300.3a60.3 60.3 0 000 51.5q56.69 119.4 136.5 191.41L112.48 835a8 8 0 000 11.31L155.17 889a8 8 0 0011.31 0l712.15-712.12a8 8 0 000-11.32zM149.3 512C232.6 339.8 350.7 258 512 258c54.54 0 104.13 9.36 149.12 28.39l-70.3 70.3a176 176 0 00-238.13 238.13l-83.42 83.42C223.1 637.49 183.3 582.28 149.3 512zm246.7 0a112.11 112.11 0 01146.2-106.69L401.31 546.2A112 112 0 01396 512z"}},{tag:"path",attrs:{d:"M508 624c-3.46 0-6.87-.16-10.25-.47l-52.82 52.82a176.09 176.09 0 00227.42-227.42l-52.82 52.82c.31 3.38.47 6.79.47 10.25a111.94 111.94 0 01-112 112z"}}]},name:"eye-invisible",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},7532(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M942.2 486.2C847.4 286.5 704.1 186 512 186c-192.2 0-335.4 100.5-430.2 300.3a60.3 60.3 0 000 51.5C176.6 737.5 319.9 838 512 838c192.2 0 335.4-100.5 430.2-300.3 7.7-16.2 7.7-35 0-51.5zM512 766c-161.3 0-279.4-81.8-362.7-254C232.6 339.8 350.7 258 512 258c161.3 0 279.4 81.8 362.7 254C791.5 684.2 673.4 766 512 766zm-4-430c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm0 288c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112z"}}]},name:"eye",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},69047(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M688 312v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8zm-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H296zm376 116c-119.3 0-216 96.7-216 216s96.7 216 216 216 216-96.7 216-216-96.7-216-216-216zm107.5 323.5C750.8 868.2 712.6 884 672 884s-78.8-15.8-107.5-44.5C535.8 810.8 520 772.6 520 732s15.8-78.8 44.5-107.5C593.2 595.8 631.4 580 672 580s78.8 15.8 107.5 44.5C808.2 653.2 824 691.4 824 732s-15.8 78.8-44.5 107.5zM761 656h-44.3c-2.6 0-5 1.2-6.5 3.3l-63.5 87.8-23.1-31.9a7.92 7.92 0 00-6.5-3.3H573c-6.5 0-10.3 7.4-6.5 12.7l73.8 102.1c3.2 4.4 9.7 4.4 12.9 0l114.2-158c3.9-5.3.1-12.7-6.4-12.7zM440 852H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h272c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8z"}}]},name:"file-done",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},30341(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M854.6 288.6L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM790.2 326H602V137.8L790.2 326zm1.8 562H232V136h302v216a42 42 0 0042 42h216v494z"}}]},name:"file",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},73488(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M644.7 669.2a7.92 7.92 0 00-6.5-3.3H594c-6.5 0-10.3 7.4-6.5 12.7l73.8 102.1c3.2 4.4 9.7 4.4 12.9 0l114.2-158c3.8-5.3 0-12.7-6.5-12.7h-44.3c-2.6 0-5 1.2-6.5 3.3l-63.5 87.8-22.9-31.9zM688 306v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8zm-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H296zm184 458H208V148h560v296c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h312c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm402.6-320.8l-192-66.7c-.9-.3-1.7-.4-2.6-.4s-1.8.1-2.6.4l-192 66.7a7.96 7.96 0 00-5.4 7.5v251.1c0 2.5 1.1 4.8 3.1 6.3l192 150.2c1.4 1.1 3.2 1.7 4.9 1.7s3.5-.6 4.9-1.7l192-150.2c1.9-1.5 3.1-3.8 3.1-6.3V538.7c0-3.4-2.2-6.4-5.4-7.5zM826 763.7L688 871.6 550 763.7V577l138-48 138 48v186.7z"}}]},name:"file-protect",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},95363(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M688 312v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8zm-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H296zm144 452H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h272c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm445.7 51.5l-93.3-93.3C814.7 780.7 828 743.9 828 704c0-97.2-78.8-176-176-176s-176 78.8-176 176 78.8 176 176 176c35.8 0 69-10.7 96.8-29l94.7 94.7c1.6 1.6 3.6 2.3 5.6 2.3s4.1-.8 5.6-2.3l31-31a7.9 7.9 0 000-11.2zM652 816c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112z"}}]},name:"file-search",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},53078(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M854.6 288.6L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM790.2 326H602V137.8L790.2 326zm1.8 562H232V136h302v216a42 42 0 0042 42h216v494zM504 618H320c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM312 490v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H320c-4.4 0-8 3.6-8 8z"}}]},name:"file-text",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},74315(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M904 512h-56c-4.4 0-8 3.6-8 8v320H184V184h320c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V520c0-4.4-3.6-8-8-8z"}},{tag:"path",attrs:{d:"M355.9 534.9L354 653.8c-.1 8.9 7.1 16.2 16 16.2h.4l118-2.9c2-.1 4-.9 5.4-2.3l415.9-415c3.1-3.1 3.1-8.2 0-11.3L785.4 114.3c-1.6-1.6-3.6-2.3-5.7-2.3s-4.1.8-5.7 2.3l-415.8 415a8.3 8.3 0 00-2.3 5.6zm63.5 23.6L779.7 199l45.2 45.1-360.5 359.7-45.7 1.1.7-46.4z"}}]},name:"form",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},33705(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540),a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"defs",attrs:{},children:[{tag:"style",attrs:{}}]},{tag:"path",attrs:{d:"M312.1 591.5c3.1 3.1 8.2 3.1 11.3 0l101.8-101.8 86.1 86.2c3.1 3.1 8.2 3.1 11.3 0l226.3-226.5c3.1-3.1 3.1-8.2 0-11.3l-36.8-36.8a8.03 8.03 0 00-11.3 0L517 485.3l-86.1-86.2a8.03 8.03 0 00-11.3 0L275.3 543.4a8.03 8.03 0 000 11.3l36.8 36.8z"}},{tag:"path",attrs:{d:"M904 160H548V96c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v64H120c-17.7 0-32 14.3-32 32v520c0 17.7 14.3 32 32 32h356.4v32L311.6 884.1a7.92 7.92 0 00-2.3 11l30.3 47.2v.1c2.4 3.7 7.4 4.7 11.1 2.3L512 838.9l161.3 105.8c3.7 2.4 8.7 1.4 11.1-2.3v-.1l30.3-47.2a8 8 0 00-2.3-11L548 776.3V744h356c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32zm-40 512H160V232h704v440z"}}]},name:"fund-projection-screen",theme:"outlined"},i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},58976(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M928 160H96c-17.7 0-32 14.3-32 32v640c0 17.7 14.3 32 32 32h832c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32zm-40 632H136V232h752v560zM610.3 476h123.4c1.3 0 2.3-3.6 2.3-8v-48c0-4.4-1-8-2.3-8H610.3c-1.3 0-2.3 3.6-2.3 8v48c0 4.4 1 8 2.3 8zm4.8 144h185.7c3.9 0 7.1-3.6 7.1-8v-48c0-4.4-3.2-8-7.1-8H615.1c-3.9 0-7.1 3.6-7.1 8v48c0 4.4 3.2 8 7.1 8zM224 673h43.9c4.2 0 7.6-3.3 7.9-7.5 3.8-50.5 46-90.5 97.2-90.5s93.4 40 97.2 90.5c.3 4.2 3.7 7.5 7.9 7.5H522a8 8 0 008-8.4c-2.8-53.3-32-99.7-74.6-126.1a111.8 111.8 0 0029.1-75.5c0-61.9-49.9-112-111.4-112s-111.4 50.1-111.4 112c0 29.1 11 55.5 29.1 75.5a158.09 158.09 0 00-74.6 126.1c-.4 4.6 3.2 8.4 7.8 8.4zm149-262c28.5 0 51.7 23.3 51.7 52s-23.2 52-51.7 52-51.7-23.3-51.7-52 23.2-52 51.7-52z"}}]},name:"idcard",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},15874(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm32 664c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V456c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272zm-32-344a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"info-circle",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},68866(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"}},{tag:"path",attrs:{d:"M464 336a48 48 0 1096 0 48 48 0 10-96 0zm72 112h-48c-4.4 0-8 3.6-8 8v272c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V456c0-4.4-3.6-8-8-8z"}}]},name:"info-circle",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},24123(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M608 112c-167.9 0-304 136.1-304 304 0 70.3 23.9 135 63.9 186.5l-41.1 41.1-62.3-62.3a8.15 8.15 0 00-11.4 0l-39.8 39.8a8.15 8.15 0 000 11.4l62.3 62.3-44.9 44.9-62.3-62.3a8.15 8.15 0 00-11.4 0l-39.8 39.8a8.15 8.15 0 000 11.4l62.3 62.3-65.3 65.3a8.03 8.03 0 000 11.3l42.3 42.3c3.1 3.1 8.2 3.1 11.3 0l253.6-253.6A304.06 304.06 0 00608 720c167.9 0 304-136.1 304-304S775.9 112 608 112zm161.2 465.2C726.2 620.3 668.9 644 608 644c-60.9 0-118.2-23.7-161.2-66.8-43.1-43-66.8-100.3-66.8-161.2 0-60.9 23.7-118.2 66.8-161.2 43-43.1 100.3-66.8 161.2-66.8 60.9 0 118.2 23.7 161.2 66.8 43.1 43 66.8 100.3 66.8 161.2 0 60.9-23.7 118.2-66.8 161.2z"}}]},name:"key",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},36296(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M724 218.3V141c0-6.7-7.7-10.4-12.9-6.3L260.3 486.8a31.86 31.86 0 000 50.3l450.8 352.1c5.3 4.1 12.9.4 12.9-6.3v-77.3c0-4.9-2.3-9.6-6.1-12.6l-360-281 360-281.1c3.8-3 6.1-7.7 6.1-12.6z"}}]},name:"left",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},71161(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M888 792H200V168c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v688c0 4.4 3.6 8 8 8h752c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM305.8 637.7c3.1 3.1 8.1 3.1 11.3 0l138.3-137.6L583 628.5c3.1 3.1 8.2 3.1 11.3 0l275.4-275.3c3.1-3.1 3.1-8.2 0-11.3l-39.6-39.6a8.03 8.03 0 00-11.3 0l-230 229.9L461.4 404a8.03 8.03 0 00-11.3 0L266.3 586.7a8.03 8.03 0 000 11.3l39.5 39.7z"}}]},name:"line-chart",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},66514(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"}}]},name:"loading",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},20506(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M868 732h-70.3c-4.8 0-9.3 2.1-12.3 5.8-7 8.5-14.5 16.7-22.4 24.5a353.84 353.84 0 01-112.7 75.9A352.8 352.8 0 01512.4 866c-47.9 0-94.3-9.4-137.9-27.8a353.84 353.84 0 01-112.7-75.9 353.28 353.28 0 01-76-112.5C167.3 606.2 158 559.9 158 512s9.4-94.2 27.8-137.8c17.8-42.1 43.4-80 76-112.5s70.5-58.1 112.7-75.9c43.6-18.4 90-27.8 137.9-27.8 47.9 0 94.3 9.3 137.9 27.8 42.2 17.8 80.1 43.4 112.7 75.9 7.9 7.9 15.3 16.1 22.4 24.5 3 3.7 7.6 5.8 12.3 5.8H868c6.3 0 10.2-7 6.7-12.3C798 160.5 663.8 81.6 511.3 82 271.7 82.6 79.6 277.1 82 516.4 84.4 751.9 276.2 942 512.4 942c152.1 0 285.7-78.8 362.3-197.7 3.4-5.3-.4-12.3-6.7-12.3zm88.9-226.3L815 393.7c-5.3-4.2-13-.4-13 6.3v76H488c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h314v76c0 6.7 7.8 10.5 13 6.3l141.9-112a8 8 0 000-12.6z"}}]},name:"logout",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},86404(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM115.4 518.9L271.7 642c5.8 4.6 14.4.5 14.4-6.9V388.9c0-7.4-8.5-11.5-14.4-6.9L115.4 505.1a8.74 8.74 0 000 13.8z"}}]},name:"menu-fold",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},565(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM142.4 642.1L298.7 519a8.84 8.84 0 000-13.9L142.4 381.9c-5.8-4.6-14.4-.5-14.4 6.9v246.3a8.9 8.9 0 0014.4 7z"}}]},name:"menu-unfold",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},82822(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M880 112c-3.8 0-7.7.7-11.6 2.3L292 345.9H128c-8.8 0-16 7.4-16 16.6v299c0 9.2 7.2 16.6 16 16.6h101.7c-3.7 11.6-5.7 23.9-5.7 36.4 0 65.9 53.8 119.5 120 119.5 55.4 0 102.1-37.6 115.9-88.4l408.6 164.2c3.9 1.5 7.8 2.3 11.6 2.3 16.9 0 32-14.2 32-33.2V145.2C912 126.2 897 112 880 112zM344 762.3c-26.5 0-48-21.4-48-47.8 0-11.2 3.9-21.9 11-30.4l84.9 34.1c-2 24.6-22.7 44.1-47.9 44.1zm496 58.4L318.8 611.3l-12.9-5.2H184V417.9h121.9l12.9-5.2L840 203.3v617.4z"}}]},name:"notification",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},13614(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M864 518H506V160c0-4.4-3.6-8-8-8h-26a398.46 398.46 0 00-282.8 117.1 398.19 398.19 0 00-85.7 127.1A397.61 397.61 0 0072 552a398.46 398.46 0 00117.1 282.8c36.7 36.7 79.5 65.6 127.1 85.7A397.61 397.61 0 00472 952a398.46 398.46 0 00282.8-117.1c36.7-36.7 65.6-79.5 85.7-127.1A397.61 397.61 0 00872 552v-26c0-4.4-3.6-8-8-8zM705.7 787.8A331.59 331.59 0 01470.4 884c-88.1-.4-170.9-34.9-233.2-97.2C174.5 724.1 140 640.7 140 552c0-88.7 34.5-172.1 97.2-234.8 54.6-54.6 124.9-87.9 200.8-95.5V586h364.3c-7.7 76.3-41.3 147-96.6 201.8zM952 462.4l-2.6-28.2c-8.5-92.1-49.4-179-115.2-244.6A399.4 399.4 0 00589 74.6L560.7 72c-4.7-.4-8.7 3.2-8.7 7.9V464c0 4.4 3.6 8 8 8l384-1c4.7 0 8.4-4 8-8.6zm-332.2-58.2V147.6a332.24 332.24 0 01166.4 89.8c45.7 45.6 77 103.6 90 166.1l-256.4.7z"}}]},name:"pie-chart",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},38623(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z"}},{tag:"path",attrs:{d:"M192 474h672q8 0 8 8v60q0 8-8 8H160q-8 0-8-8v-60q0-8 8-8z"}}]},name:"plus",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},42004(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656zM492 400h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H492c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm0 144h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H492c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm0 144h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H492c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zM340 368a40 40 0 1080 0 40 40 0 10-80 0zm0 144a40 40 0 1080 0 40 40 0 10-80 0zm0 144a40 40 0 1080 0 40 40 0 10-80 0z"}}]},name:"profile",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},27423(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M928 161H699.2c-49.1 0-97.1 14.1-138.4 40.7L512 233l-48.8-31.3A255.2 255.2 0 00324.8 161H96c-17.7 0-32 14.3-32 32v568c0 17.7 14.3 32 32 32h228.8c49.1 0 97.1 14.1 138.4 40.7l44.4 28.6c1.3.8 2.8 1.3 4.3 1.3s3-.4 4.3-1.3l44.4-28.6C602 807.1 650.1 793 699.2 793H928c17.7 0 32-14.3 32-32V193c0-17.7-14.3-32-32-32zM324.8 721H136V233h188.8c35.4 0 69.8 10.1 99.5 29.2l48.8 31.3 6.9 4.5v462c-47.6-25.6-100.8-39-155.2-39zm563.2 0H699.2c-54.4 0-107.6 13.4-155.2 39V298l6.9-4.5 48.8-31.3c29.7-19.1 64.1-29.2 99.5-29.2H888v488zM396.9 361H211.1c-3.9 0-7.1 3.4-7.1 7.5v45c0 4.1 3.2 7.5 7.1 7.5h185.7c3.9 0 7.1-3.4 7.1-7.5v-45c.1-4.1-3.1-7.5-7-7.5zm223.1 7.5v45c0 4.1 3.2 7.5 7.1 7.5h185.7c3.9 0 7.1-3.4 7.1-7.5v-45c0-4.1-3.2-7.5-7.1-7.5H627.1c-3.9 0-7.1 3.4-7.1 7.5zM396.9 501H211.1c-3.9 0-7.1 3.4-7.1 7.5v45c0 4.1 3.2 7.5 7.1 7.5h185.7c3.9 0 7.1-3.4 7.1-7.5v-45c.1-4.1-3.1-7.5-7-7.5zm416 0H627.1c-3.9 0-7.1 3.4-7.1 7.5v45c0 4.1 3.2 7.5 7.1 7.5h185.7c3.9 0 7.1-3.4 7.1-7.5v-45c.1-4.1-3.1-7.5-7-7.5z"}}]},name:"read",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},94231(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M676 565c-50.8 0-92 41.2-92 92s41.2 92 92 92 92-41.2 92-92-41.2-92-92-92zm0 126c-18.8 0-34-15.2-34-34s15.2-34 34-34 34 15.2 34 34-15.2 34-34 34zm204-523H668c0-30.9-25.1-56-56-56h-80c-30.9 0-56 25.1-56 56H264c-17.7 0-32 14.3-32 32v200h-88c-17.7 0-32 14.3-32 32v448c0 17.7 14.3 32 32 32h336c17.7 0 32-14.3 32-32v-16h368c17.7 0 32-14.3 32-32V200c0-17.7-14.3-32-32-32zm-412 64h72v-56h64v56h72v48H468v-48zm-20 616H176V616h272v232zm0-296H176v-88h272v88zm392 240H512V432c0-17.7-14.3-32-32-32H304V240h100v104h336V240h100v552zM704 408v96c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-96c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8zM592 512h48c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8z"}}]},name:"reconciliation",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},85402(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M909.1 209.3l-56.4 44.1C775.8 155.1 656.2 92 521.9 92 290 92 102.3 279.5 102 511.5 101.7 743.7 289.8 932 521.9 932c181.3 0 335.8-115 394.6-276.1 1.5-4.2-.7-8.9-4.9-10.3l-56.7-19.5a8 8 0 00-10.1 4.8c-1.8 5-3.8 10-5.9 14.9-17.3 41-42.1 77.8-73.7 109.4A344.77 344.77 0 01655.9 829c-42.3 17.9-87.4 27-133.8 27-46.5 0-91.5-9.1-133.8-27A341.5 341.5 0 01279 755.2a342.16 342.16 0 01-73.7-109.4c-17.9-42.4-27-87.4-27-133.9s9.1-91.5 27-133.9c17.3-41 42.1-77.8 73.7-109.4 31.6-31.6 68.4-56.4 109.3-73.8 42.3-17.9 87.4-27 133.8-27 46.5 0 91.5 9.1 133.8 27a341.5 341.5 0 01109.3 73.8c9.9 9.9 19.2 20.4 27.8 31.4l-60.2 47a8 8 0 003 14.1l175.6 43c5 1.2 9.9-2.6 9.9-7.7l.8-180.9c-.1-6.6-7.8-10.3-13-6.2z"}}]},name:"reload",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},88996(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"}}]},name:"right",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},18294(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M866.9 169.9L527.1 54.1C523 52.7 517.5 52 512 52s-11 .7-15.1 2.1L157.1 169.9c-8.3 2.8-15.1 12.4-15.1 21.2v482.4c0 8.8 5.7 20.4 12.6 25.9L499.3 968c3.5 2.7 8 4.1 12.6 4.1s9.2-1.4 12.6-4.1l344.7-268.6c6.9-5.4 12.6-17 12.6-25.9V191.1c.2-8.8-6.6-18.3-14.9-21.2zM694.5 340.7L481.9 633.4a16.1 16.1 0 01-26 0l-126.4-174c-3.8-5.3 0-12.7 6.5-12.7h55.2c5.1 0 10 2.5 13 6.6l64.7 89 150.9-207.8c3-4.1 7.8-6.6 13-6.6H688c6.5.1 10.3 7.5 6.5 12.8z"}}]},name:"safety-certificate",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},56304(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M866.9 169.9L527.1 54.1C523 52.7 517.5 52 512 52s-11 .7-15.1 2.1L157.1 169.9c-8.3 2.8-15.1 12.4-15.1 21.2v482.4c0 8.8 5.7 20.4 12.6 25.9L499.3 968c3.5 2.7 8 4.1 12.6 4.1s9.2-1.4 12.6-4.1l344.7-268.6c6.9-5.4 12.6-17 12.6-25.9V191.1c.2-8.8-6.6-18.3-14.9-21.2zM810 654.3L512 886.5 214 654.3V226.7l298-101.6 298 101.6v427.6zm-405.8-201c-3-4.1-7.8-6.6-13-6.6H336c-6.5 0-10.3 7.4-6.5 12.7l126.4 174a16.1 16.1 0 0026 0l212.6-292.7c3.8-5.3 0-12.7-6.5-12.7h-55.2c-5.1 0-10 2.5-13 6.6L468.9 542.4l-64.7-89.1z"}}]},name:"safety-certificate",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},38767(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M928 224H768v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56H548v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56H328v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56H96c-17.7 0-32 14.3-32 32v576c0 17.7 14.3 32 32 32h832c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32zm-40 568H136V296h120v56c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-56h148v56c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-56h148v56c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-56h120v496zM416 496H232c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 136H232c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm308.2-177.4L620.6 598.3l-52.8-73.1c-3-4.2-7.8-6.6-12.9-6.6H500c-6.5 0-10.3 7.4-6.5 12.7l114.1 158.2a15.9 15.9 0 0025.8 0l165-228.7c3.8-5.3 0-12.7-6.5-12.7H737c-5-.1-9.8 2.4-12.8 6.5z"}}]},name:"schedule",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},4811(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M909.6 854.5L649.9 594.8C690.2 542.7 712 479 712 412c0-80.2-31.3-155.4-87.9-212.1-56.6-56.7-132-87.9-212.1-87.9s-155.5 31.3-212.1 87.9C143.2 256.5 112 331.8 112 412c0 80.1 31.3 155.5 87.9 212.1C256.5 680.8 331.8 712 412 712c67 0 130.6-21.8 182.7-62l259.7 259.6a8.2 8.2 0 0011.6 0l43.6-43.5a8.2 8.2 0 000-11.6zM570.4 570.4C528 612.7 471.8 636 412 636s-116-23.3-158.4-65.6C211.3 528 188 471.8 188 412s23.3-116.1 65.6-158.4C296 211.3 352.2 188 412 188s116.1 23.2 158.4 65.6S636 352.2 636 412s-23.3 116.1-65.6 158.4z"}}]},name:"search",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},24838(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M882 272.1V144c0-17.7-14.3-32-32-32H174c-17.7 0-32 14.3-32 32v128.1c-16.7 1-30 14.9-30 31.9v131.7a177 177 0 0014.4 70.4c4.3 10.2 9.6 19.8 15.6 28.9v345c0 17.6 14.3 32 32 32h676c17.7 0 32-14.3 32-32V535a175 175 0 0015.6-28.9c9.5-22.3 14.4-46 14.4-70.4V304c0-17-13.3-30.9-30-31.9zM214 184h596v88H214v-88zm362 656.1H448V736h128v104.1zm234 0H640V704c0-17.7-14.3-32-32-32H416c-17.7 0-32 14.3-32 32v136.1H214V597.9c2.9 1.4 5.9 2.8 9 4 22.3 9.4 46 14.1 70.4 14.1s48-4.7 70.4-14.1c13.8-5.8 26.8-13.2 38.7-22.1.2-.1.4-.1.6 0a180.4 180.4 0 0038.7 22.1c22.3 9.4 46 14.1 70.4 14.1 24.4 0 48-4.7 70.4-14.1 13.8-5.8 26.8-13.2 38.7-22.1.2-.1.4-.1.6 0a180.4 180.4 0 0038.7 22.1c22.3 9.4 46 14.1 70.4 14.1 24.4 0 48-4.7 70.4-14.1 3-1.3 6-2.6 9-4v242.2zm30-404.4c0 59.8-49 108.3-109.3 108.3-40.8 0-76.4-22.1-95.2-54.9-2.9-5-8.1-8.1-13.9-8.1h-.6c-5.7 0-11 3.1-13.9 8.1A109.24 109.24 0 01512 544c-40.7 0-76.2-22-95-54.7-3-5.1-8.4-8.3-14.3-8.3s-11.4 3.2-14.3 8.3a109.63 109.63 0 01-95.1 54.7C233 544 184 495.5 184 435.7v-91.2c0-.3.2-.5.5-.5h655c.3 0 .5.2.5.5v91.2z"}}]},name:"shop",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},85558(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 112H724V72c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v40H500V72c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v40H320c-17.7 0-32 14.3-32 32v120h-96c-17.7 0-32 14.3-32 32v632c0 17.7 14.3 32 32 32h512c17.7 0 32-14.3 32-32v-96h96c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zM664 888H232V336h218v174c0 22.1 17.9 40 40 40h174v338zm0-402H514V336h.2L664 485.8v.2zm128 274h-56V456L544 264H360v-80h68v32c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-32h152v32c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-32h68v576z"}}]},name:"snippets",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},67793(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M625.9 115c-5.9 0-11.9 1.6-17.4 5.3L254 352H90c-8.8 0-16 7.2-16 16v288c0 8.8 7.2 16 16 16h164l354.5 231.7c5.5 3.6 11.6 5.3 17.4 5.3 16.7 0 32.1-13.3 32.1-32.1V147.1c0-18.8-15.4-32.1-32.1-32.1zM586 803L293.4 611.7l-18-11.7H146V424h129.4l17.9-11.7L586 221v582zm348-327H806c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16zm-41.9 261.8l-110.3-63.7a15.9 15.9 0 00-21.7 5.9l-19.9 34.5c-4.4 7.6-1.8 17.4 5.8 21.8L856.3 800a15.9 15.9 0 0021.7-5.9l19.9-34.5c4.4-7.6 1.7-17.4-5.8-21.8zM760 344a15.9 15.9 0 0021.7 5.9L892 286.2c7.6-4.4 10.2-14.2 5.8-21.8L878 230a15.9 15.9 0 00-21.7-5.9L746 287.8a15.99 15.99 0 00-5.8 21.8L760 344z"}}]},name:"sound",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},49346(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 00.6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0046.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z"}}]},name:"star",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},26571(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M847.9 592H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h605.2L612.9 851c-4.1 5.2-.4 13 6.3 13h72.5c4.9 0 9.5-2.2 12.6-6.1l168.8-214.1c16.5-21 1.6-51.8-25.2-51.8zM872 356H266.8l144.3-183c4.1-5.2.4-13-6.3-13h-72.5c-4.9 0-9.5 2.2-12.6 6.1L150.9 380.2c-16.5 21-1.6 51.8 25.1 51.8h696c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8z"}}]},name:"swap",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},84795(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M168 504.2c1-43.7 10-86.1 26.9-126 17.3-41 42.1-77.7 73.7-109.4S337 212.3 378 195c42.4-17.9 87.4-27 133.9-27s91.5 9.1 133.8 27A341.5 341.5 0 01755 268.8c9.9 9.9 19.2 20.4 27.8 31.4l-60.2 47a8 8 0 003 14.1l175.7 43c5 1.2 9.9-2.6 9.9-7.7l.8-180.9c0-6.7-7.7-10.5-12.9-6.3l-56.4 44.1C765.8 155.1 646.2 92 511.8 92 282.7 92 96.3 275.6 92 503.8a8 8 0 008 8.2h60c4.4 0 7.9-3.5 8-7.8zm756 7.8h-60c-4.4 0-7.9 3.5-8 7.8-1 43.7-10 86.1-26.9 126-17.3 41-42.1 77.8-73.7 109.4A342.45 342.45 0 01512.1 856a342.24 342.24 0 01-243.2-100.8c-9.9-9.9-19.2-20.4-27.8-31.4l60.2-47a8 8 0 00-3-14.1l-175.7-43c-5-1.2-9.9 2.6-9.9 7.7l-.7 181c0 6.7 7.7 10.5 12.9 6.3l56.4-44.1C258.2 868.9 377.8 932 512.2 932c229.2 0 415.5-183.7 419.8-411.8a8 8 0 00-8-8.2z"}}]},name:"sync",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},39576(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M824.2 699.9a301.55 301.55 0 00-86.4-60.4C783.1 602.8 812 546.8 812 484c0-110.8-92.4-201.7-203.2-200-109.1 1.7-197 90.6-197 200 0 62.8 29 118.8 74.2 155.5a300.95 300.95 0 00-86.4 60.4C345 754.6 314 826.8 312 903.8a8 8 0 008 8.2h56c4.3 0 7.9-3.4 8-7.7 1.9-58 25.4-112.3 66.7-153.5A226.62 226.62 0 01612 684c60.9 0 118.2 23.7 161.3 66.8C814.5 792 838 846.3 840 904.3c.1 4.3 3.7 7.7 8 7.7h56a8 8 0 008-8.2c-2-77-33-149.2-87.8-203.9zM612 612c-34.2 0-66.4-13.3-90.5-37.5a126.86 126.86 0 01-37.5-91.8c.3-32.8 13.4-64.5 36.3-88 24-24.6 56.1-38.3 90.4-38.7 33.9-.3 66.8 12.9 91 36.6 24.8 24.3 38.4 56.8 38.4 91.4 0 34.2-13.3 66.3-37.5 90.5A127.3 127.3 0 01612 612zM361.5 510.4c-.9-8.7-1.4-17.5-1.4-26.4 0-15.9 1.5-31.4 4.3-46.5.7-3.6-1.2-7.3-4.5-8.8-13.6-6.1-26.1-14.5-36.9-25.1a127.54 127.54 0 01-38.7-95.4c.9-32.1 13.8-62.6 36.3-85.6 24.7-25.3 57.9-39.1 93.2-38.7 31.9.3 62.7 12.6 86 34.4 7.9 7.4 14.7 15.6 20.4 24.4 2 3.1 5.9 4.4 9.3 3.2 17.6-6.1 36.2-10.4 55.3-12.4 5.6-.6 8.8-6.6 6.3-11.6-32.5-64.3-98.9-108.7-175.7-109.9-110.9-1.7-203.3 89.2-203.3 199.9 0 62.8 28.9 118.8 74.2 155.5-31.8 14.7-61.1 35-86.5 60.4-54.8 54.7-85.8 126.9-87.8 204a8 8 0 008 8.2h56.1c4.3 0 7.9-3.4 8-7.7 1.9-58 25.4-112.3 66.7-153.5 29.4-29.4 65.4-49.8 104.7-59.7 3.9-1 6.5-4.7 6-8.7z"}}]},name:"team",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},71016(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M876.6 239.5c-.5-.9-1.2-1.8-2-2.5-5-5-13.1-5-18.1 0L684.2 409.3l-67.9-67.9L788.7 169c.8-.8 1.4-1.6 2-2.5 3.6-6.1 1.6-13.9-4.5-17.5-98.2-58-226.8-44.7-311.3 39.7-67 67-89.2 162-66.5 247.4l-293 293c-3 3-2.8 7.9.3 11l169.7 169.7c3.1 3.1 8.1 3.3 11 .3l292.9-292.9c85.5 22.8 180.5.7 247.6-66.4 84.4-84.5 97.7-213.1 39.7-311.3zM786 499.8c-58.1 58.1-145.3 69.3-214.6 33.6l-8.8 8.8-.1-.1-274 274.1-79.2-79.2 230.1-230.1s0 .1.1.1l52.8-52.8c-35.7-69.3-24.5-156.5 33.6-214.6a184.2 184.2 0 01144-53.5L537 318.9a32.05 32.05 0 000 45.3l124.5 124.5a32.05 32.05 0 0045.3 0l132.8-132.8c3.7 51.8-14.4 104.8-53.6 143.9z"}}]},name:"tool",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},16776(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M890.5 755.3L537.9 269.2c-12.8-17.6-39-17.6-51.7 0L133.5 755.3A8 8 0 00140 768h75c5.1 0 9.9-2.5 12.9-6.6L512 369.8l284.1 391.6c3 4.1 7.8 6.6 12.9 6.6h75c6.5 0 10.3-7.4 6.5-12.7z"}}]},name:"up",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},88237(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M400 317.7h73.9V656c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V317.7H624c6.7 0 10.4-7.7 6.3-12.9L518.3 163a8 8 0 00-12.6 0l-112 141.7c-4.1 5.3-.4 13 6.3 13zM878 626h-60c-4.4 0-8 3.6-8 8v154H214V634c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v198c0 17.7 14.3 32 32 32h684c17.7 0 32-14.3 32-32V634c0-4.4-3.6-8-8-8z"}}]},name:"upload",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},54169(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M678.3 655.4c24.2-13 51.9-20.4 81.4-20.4h.1c3 0 4.4-3.6 2.2-5.6a371.67 371.67 0 00-103.7-65.8c-.4-.2-.8-.3-1.2-.5C719.2 518 759.6 444.7 759.6 362c0-137-110.8-248-247.5-248S264.7 225 264.7 362c0 82.7 40.4 156 102.6 201.1-.4.2-.8.3-1.2.5-44.7 18.9-84.8 46-119.3 80.6a373.42 373.42 0 00-80.4 119.5A373.6 373.6 0 00137 901.8a8 8 0 008 8.2h59.9c4.3 0 7.9-3.5 8-7.8 2-77.2 32.9-149.5 87.6-204.3C357 641.2 432.2 610 512.2 610c56.7 0 111.1 15.7 158 45.1a8.1 8.1 0 008.1.3zM512.2 534c-45.8 0-88.9-17.9-121.4-50.4A171.2 171.2 0 01340.5 362c0-45.9 17.9-89.1 50.3-121.6S466.3 190 512.2 190s88.9 17.9 121.4 50.4A171.2 171.2 0 01683.9 362c0 45.9-17.9 89.1-50.3 121.6C601.1 516.1 558 534 512.2 534zM880 772H640c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h240c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8z"}}]},name:"user-delete",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},76164(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M858.5 763.6a374 374 0 00-80.6-119.5 375.63 375.63 0 00-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 00-80.6 119.5A371.7 371.7 0 00136 901.8a8 8 0 008 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 008-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"}}]},name:"user",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},72683(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540),a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"defs",attrs:{},children:[{tag:"style",attrs:{}}]},{tag:"path",attrs:{d:"M368 724H252V608c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v116H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h116v116c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V788h116c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8z"}},{tag:"path",attrs:{d:"M912 302.3L784 376V224c0-35.3-28.7-64-64-64H128c-35.3 0-64 28.7-64 64v352h72V232h576v560H448v72h272c35.3 0 64-28.7 64-64V648l128 73.7c21.3 12.3 48-3.1 48-27.6V330c0-24.6-26.7-40-48-27.7zM888 625l-104-59.8V458.9L888 399v226z"}},{tag:"path",attrs:{d:"M320 360c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H208c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h112z"}}]},name:"video-camera-add",theme:"outlined"},i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},3827(e,t,n){"use strict";var r=n(24994).default,o=n(6305).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(94634)),i=r(n(85715)),l=r(n(43693)),c=r(n(91847)),s=o(n(96540)),d=r(n(46942)),u=n(81463),p=r(n(86386)),f=r(n(71497)),m=n(66286),g=n(2317),h=["className","icon","spin","rotate","tabIndex","onClick","twoToneColor"];(0,m.setTwoToneColor)(u.blue.primary);var b=s.forwardRef(function(e,t){var n=e.className,r=e.icon,o=e.spin,u=e.rotate,m=e.tabIndex,b=e.onClick,v=e.twoToneColor,y=(0,c.default)(e,h),x=s.useContext(p.default),$=x.prefixCls,A=void 0===$?"anticon":$,w=x.rootClassName,S=(0,d.default)(w,A,(0,l.default)((0,l.default)({},"".concat(A,"-").concat(r.name),!!r.name),"".concat(A,"-spin"),!!o||"loading"===r.name),n),C=m;void 0===C&&b&&(C=-1);var O=(0,g.normalizeTwoToneColors)(v),k=(0,i.default)(O,2),j=k[0],E=k[1];return s.createElement("span",(0,a.default)({role:"img","aria-label":r.name},y,{ref:t,tabIndex:C,onClick:b,className:S}),s.createElement(f.default,{icon:r,primaryColor:j,secondaryColor:E,style:u?{msTransform:"rotate(".concat(u,"deg)"),transform:"rotate(".concat(u,"deg)")}:void 0}))});b.displayName="AntdIcon",b.getTwoToneColor=m.getTwoToneColor,b.setTwoToneColor=m.setTwoToneColor,t.default=b},86386(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,t.default=(0,n(96540).createContext)({})},71497(e,t,n){"use strict";var r=n(24994).default,o=n(6305).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(91847)),i=r(n(12897)),l=o(n(96540)),c=n(2317),s=["icon","className","onClick","style","primaryColor","secondaryColor"],d={primaryColor:"#333",secondaryColor:"#E6E6E6",calculated:!1},u=function(e){var t=e.icon,n=e.className,r=e.onClick,o=e.style,u=e.primaryColor,p=e.secondaryColor,f=(0,a.default)(e,s),m=l.useRef(),g=d;if(u&&(g={primaryColor:u,secondaryColor:p||(0,c.getSecondaryColor)(u)}),(0,c.useInsertStyles)(m),(0,c.warning)((0,c.isIconDefinition)(t),"icon should be icon definiton, but got ".concat(t)),!(0,c.isIconDefinition)(t))return null;var h=t;return h&&"function"==typeof h.icon&&(h=(0,i.default)((0,i.default)({},h),{},{icon:h.icon(g.primaryColor,g.secondaryColor)})),(0,c.generate)(h.icon,"svg-".concat(h.name),(0,i.default)((0,i.default)({className:n,onClick:r,style:o,"data-icon":h.name,width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true"},f),{},{ref:m}))};u.displayName="IconReact",u.getTwoToneColors=function(){return(0,i.default)({},d)},u.setTwoToneColors=function(e){var t=e.primaryColor,n=e.secondaryColor;d.primaryColor=t,d.secondaryColor=n||(0,c.getSecondaryColor)(t),d.calculated=!!n},t.default=u},66286(e,t,n){"use strict";var r=n(24994).default;Object.defineProperty(t,"__esModule",{value:!0}),t.getTwoToneColor=function(){var e=a.default.getTwoToneColors();return e.calculated?[e.primaryColor,e.secondaryColor]:e.primaryColor},t.setTwoToneColor=function(e){var t=(0,i.normalizeTwoToneColors)(e),n=(0,o.default)(t,2),r=n[0],l=n[1];return a.default.setTwoToneColors({primaryColor:r,secondaryColor:l})};var o=r(n(85715)),a=r(n(71497)),i=n(2317)},64607(e,t,n){"use strict";var r=n(6305).default,o=n(24994).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=o(n(94634)),i=r(n(96540)),l=o(n(20932)),c=o(n(3827));t.default=i.forwardRef(function(e,t){return i.createElement(c.default,(0,a.default)({},e,{ref:t,icon:l.default}))})},36110(e,t,n){"use strict";var r=n(6305).default,o=n(24994).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=o(n(94634)),i=r(n(96540)),l=o(n(6711)),c=o(n(3827));t.default=i.forwardRef(function(e,t){return i.createElement(c.default,(0,a.default)({},e,{ref:t,icon:l.default}))})},2317(e,t,n){"use strict";var r=n(6305).default,o=n(24994).default;Object.defineProperty(t,"__esModule",{value:!0}),t.generate=function e(t,n,r){return r?u.default.createElement(t.tag,(0,a.default)((0,a.default)({key:n},f(t.attrs)),r),(t.children||[]).map(function(r,o){return e(r,"".concat(n,"-").concat(t.tag,"-").concat(o))})):u.default.createElement(t.tag,(0,a.default)({key:n},f(t.attrs)),(t.children||[]).map(function(r,o){return e(r,"".concat(n,"-").concat(t.tag,"-").concat(o))}))},t.getSecondaryColor=function(e){return(0,l.generate)(e)[0]},t.iconStyles=void 0,t.isIconDefinition=function(e){return"object"===(0,i.default)(e)&&"string"==typeof e.name&&"string"==typeof e.theme&&("object"===(0,i.default)(e.icon)||"function"==typeof e.icon)},t.normalizeAttrs=f,t.normalizeTwoToneColors=function(e){return e?Array.isArray(e)?e:[e]:[]},t.useInsertStyles=t.svgBaseProps=void 0,t.warning=function(e,t){(0,d.default)(e,"[@ant-design/icons] ".concat(t))};var a=o(n(12897)),i=o(n(73738)),l=n(81463),c=n(80084),s=n(63024),d=o(n(61105)),u=r(n(96540)),p=o(n(86386));function f(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.keys(e).reduce(function(t,n){var r=e[n];return"class"===n?(t.className=r,delete t.class):(delete t[n],t[n.replace(/-(.)/g,function(e,t){return t.toUpperCase()})]=r),t},{})}t.svgBaseProps={width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true",focusable:"false"};var m=t.iconStyles="\n.anticon {\n display: inline-flex;\n align-items: center;\n color: inherit;\n font-style: normal;\n line-height: 0;\n text-align: center;\n text-transform: none;\n vertical-align: -0.125em;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.anticon > * {\n line-height: 1;\n}\n\n.anticon svg {\n display: inline-block;\n}\n\n.anticon::before {\n display: none;\n}\n\n.anticon .anticon-icon {\n display: block;\n}\n\n.anticon[tabindex] {\n cursor: pointer;\n}\n\n.anticon-spin::before,\n.anticon-spin {\n display: inline-block;\n -webkit-animation: loadingCircle 1s infinite linear;\n animation: loadingCircle 1s infinite linear;\n}\n\n@-webkit-keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n";t.useInsertStyles=function(e){var t=(0,u.useContext)(p.default),n=t.csp,r=t.prefixCls,o=t.layer,a=m;r&&(a=a.replace(/anticon/g,r)),o&&(a="@layer ".concat(o," {\n").concat(a,"\n}")),(0,u.useEffect)(function(){var t=e.current,r=(0,s.getShadowRoot)(t);(0,c.updateCSS)(a,"@ant-design-icons",{prepend:!o,csp:n,attachTo:r})},[])}},13205(e,t,n){"use strict";n.d(t,{Lx:()=>T,tz:()=>B,Ay:()=>F,TY:()=>R});var r=n(83098),o=n(57046),a=n(80045),i=n(89379),l=n(48670),c=n(4888),s=n(80651),d=n(61757);let u={placeholder:"请选择时间",rangePlaceholder:["开始时间","结束时间"]},p={lang:Object.assign({placeholder:"请选择日期",yearPlaceholder:"请选择年份",quarterPlaceholder:"请选择季度",monthPlaceholder:"请选择月份",weekPlaceholder:"请选择周",rangePlaceholder:["开始日期","结束日期"],rangeYearPlaceholder:["开始年份","结束年份"],rangeMonthPlaceholder:["开始月份","结束月份"],rangeQuarterPlaceholder:["开始季度","结束季度"],rangeWeekPlaceholder:["开始周","结束周"]},d.A),timePickerLocale:Object.assign({},u)};p.lang.ok="确定";let f="${label}不是一个有效的${type}",m={locale:"zh-cn",Pagination:s.A,DatePicker:p,TimePicker:u,Calendar:p,global:{placeholder:"请选择",close:"关闭"},Table:{filterTitle:"筛选",filterConfirm:"确定",filterReset:"重置",filterEmptyText:"无筛选项",filterCheckAll:"全选",filterSearchPlaceholder:"在筛选项中搜索",emptyText:"暂无数据",selectAll:"全选当页",selectInvert:"反选当页",selectNone:"清空所有",selectionAll:"全选所有",sortTitle:"排序",expand:"展开行",collapse:"关闭行",triggerDesc:"点击降序",triggerAsc:"点击升序",cancelSort:"取消排序"},Modal:{okText:"确定",cancelText:"取消",justOkText:"知道了"},Tour:{Next:"下一步",Previous:"上一步",Finish:"结束导览"},Popconfirm:{cancelText:"取消",okText:"确定"},Transfer:{titles:["",""],searchPlaceholder:"请输入搜索内容",itemUnit:"项",itemsUnit:"项",remove:"删除",selectCurrent:"全选当页",removeCurrent:"删除当页",selectAll:"全选所有",deselectAll:"取消全选",removeAll:"删除全部",selectInvert:"反选当页"},Upload:{uploading:"文件上传中",removeFile:"删除文件",uploadError:"上传错误",previewFile:"预览文件",downloadFile:"下载文件"},Empty:{description:"暂无数据"},Icon:{icon:"图标"},Text:{edit:"编辑",copy:"复制",copied:"复制成功",expand:"展开",collapse:"收起"},Form:{optional:"(可选)",defaultValidateMessages:{default:"字段验证错误${label}",required:"请输入${label}",enum:"${label}必须是其中一个[${enum}]",whitespace:"${label}不能为空字符",date:{format:"${label}日期格式无效",parse:"${label}不能转换为日期",invalid:"${label}是一个无效日期"},types:{string:f,method:f,array:f,object:f,number:f,date:f,boolean:f,integer:f,float:f,regexp:f,email:f,url:f,hex:f},string:{len:"${label}须为${len}个字符",min:"${label}最少${min}个字符",max:"${label}最多${max}个字符",range:"${label}须在${min}-${max}字符之间"},number:{len:"${label}必须等于${len}",min:"${label}最小值为${min}",max:"${label}最大值为${max}",range:"${label}须在${min}-${max}之间"},array:{len:"须为${len}个${label}",min:"最少${min}个${label}",max:"最多${max}个${label}",range:"${label}数量须在${min}-${max}之间"},pattern:{mismatch:"${label}与模式不匹配${pattern}"}}},Image:{preview:"预览"},QRCode:{expired:"二维码过期",refresh:"点击刷新",scanned:"已扫描"},ColorPicker:{presetEmpty:"暂无",transparent:"无色",singleColor:"单色",gradientColor:"渐变色"}};var g=n(96540),h=n(14993),b=n(92177),v=n(90583),y=n(74353),x=n.n(y),$=n(9424),A=function(e,t){var n,r,o,a,l,c=(0,i.A)({},e);return(0,i.A)((0,i.A)({bgLayout:"linear-gradient(".concat(t.colorBgContainer,", ").concat(t.colorBgLayout," 28%)"),colorTextAppListIcon:t.colorTextSecondary,appListIconHoverBgColor:null==c||null==(n=c.sider)?void 0:n.colorBgMenuItemSelected,colorBgAppListIconHover:(0,$.X9)(t.colorTextBase,.04),colorTextAppListIconHover:t.colorTextBase},c),{},{header:(0,i.A)({colorBgHeader:(0,$.X9)(t.colorBgElevated,.6),colorBgScrollHeader:(0,$.X9)(t.colorBgElevated,.8),colorHeaderTitle:t.colorText,colorBgMenuItemHover:(0,$.X9)(t.colorTextBase,.03),colorBgMenuItemSelected:"transparent",colorBgMenuElevated:(null==c||null==(r=c.header)?void 0:r.colorBgHeader)!=="rgba(255, 255, 255, 0.6)"?null==(o=c.header)?void 0:o.colorBgHeader:t.colorBgElevated,colorTextMenuSelected:(0,$.X9)(t.colorTextBase,.95),colorBgRightActionsItemHover:(0,$.X9)(t.colorTextBase,.03),colorTextRightActionsItem:t.colorTextTertiary,heightLayoutHeader:56,colorTextMenu:t.colorTextSecondary,colorTextMenuSecondary:t.colorTextTertiary,colorTextMenuTitle:t.colorText,colorTextMenuActive:t.colorText},c.header),sider:(0,i.A)({paddingInlineLayoutMenu:8,paddingBlockLayoutMenu:0,colorBgCollapsedButton:t.colorBgElevated,colorTextCollapsedButtonHover:t.colorTextSecondary,colorTextCollapsedButton:(0,$.X9)(t.colorTextBase,.25),colorMenuBackground:"transparent",colorMenuItemDivider:(0,$.X9)(t.colorTextBase,.06),colorBgMenuItemHover:(0,$.X9)(t.colorTextBase,.03),colorBgMenuItemSelected:(0,$.X9)(t.colorTextBase,.04),colorTextMenuItemHover:t.colorText,colorTextMenuSelected:(0,$.X9)(t.colorTextBase,.95),colorTextMenuActive:t.colorText,colorTextMenu:t.colorTextSecondary,colorTextMenuSecondary:t.colorTextTertiary,colorTextMenuTitle:t.colorText,colorTextSubMenuSelected:(0,$.X9)(t.colorTextBase,.95)},c.sider),pageContainer:(0,i.A)({colorBgPageContainer:"transparent",paddingInlinePageContainerContent:(null==(a=c.pageContainer)?void 0:a.marginInlinePageContainerContent)||40,paddingBlockPageContainerContent:(null==(l=c.pageContainer)?void 0:l.marginBlockPageContainerContent)||32,colorBgPageContainerFixed:t.colorBgElevated},c.pageContainer)})},w=n(94414),S=n(82284),C=function(){for(var e,t={},n=arguments.length,r=Array(n),o=0;otypeof process)||true},z=g.createContext({intl:(0,i.A)((0,i.A)({},v.BG),{},{locale:"default"}),valueTypeMap:{},theme:w.emptyTheme,hashed:!0,dark:!1,token:w.defaultToken});z.Consumer;var I=function(){var e=(0,h.iX)().cache;return(0,g.useEffect)(function(){return function(){e.clear()}},[]),null},M=function(e){var t,n=e.children,r=e.dark,s=e.valueTypeMap,d=e.autoClearCache,u=void 0!==d&&d,p=e.token,f=e.prefixCls,m=e.intl,h=(0,g.useContext)(c.Ay.ConfigContext),y=h.locale,S=h.getPrefixCls,j=(0,a.A)(h,k),E=null==(t=$.JM.useToken)?void 0:t.call($.JM),M=(0,g.useContext)(z),R=f?".".concat(f):".".concat(S(),"-pro"),B="."+S(),T="".concat(R),F=(0,g.useMemo)(function(){return A(p||{},E.token||w.defaultToken)},[p,E.token]),N=(0,g.useMemo)(function(){var e,t=null==y?void 0:y.locale,n=(0,v.z8)(t),o=null!=m?m:t&&(null==(e=M.intl)?void 0:e.locale)==="default"?v.Ou[n]:M.intl||v.Ou[n];return(0,i.A)((0,i.A)({},M),{},{dark:null!=r?r:M.dark,token:C(M.token,E.token,{proComponentsCls:R,antCls:B,themeId:E.theme.id,layout:F}),intl:o||v.BG})},[null==y?void 0:y.locale,M,r,E.token,E.theme.id,R,B,F,m]),H=(0,i.A)((0,i.A)({},N.token||{}),{},{proComponentsCls:R}),L=(0,l.hV)(E.theme,[E.token,null!=H?H:{}],{salt:T,override:H}),D=(0,o.A)(L,2),_=D[0],W=D[1],q=(0,g.useMemo)(function(){return!1!==e.hashed&&!1!==M.hashed},[M.hashed,e.hashed]),V=(0,g.useMemo)(function(){return!1===e.hashed||!1===M.hashed||!1===P()?"":E.hashId?E.hashId:W},[W,M.hashed,e.hashed]);(0,g.useEffect)(function(){x().locale((null==y?void 0:y.locale)||"zh-cn")},[null==y?void 0:y.locale]);var X=(0,g.useMemo)(function(){return(0,i.A)((0,i.A)({},j.theme),{},{hashId:V,hashed:q&&P()})},[j.theme,V,q,P()]),U=(0,g.useMemo)(function(){return(0,i.A)((0,i.A)({},N),{},{valueTypeMap:s||(null==N?void 0:N.valueTypeMap),token:_,theme:E.theme,hashed:q,hashId:V})},[N,s,_,E.theme,q,V]),Y=(0,g.useMemo)(function(){return(0,O.jsx)(c.Ay,(0,i.A)((0,i.A)({},j),{},{theme:X,children:(0,O.jsx)(z.Provider,{value:U,children:(0,O.jsxs)(O.Fragment,{children:[u&&(0,O.jsx)(I,{}),n]})})}))},[j,X,U,u,n]);return u?(0,O.jsx)(b.BE,{value:{provider:function(){return new Map}},children:Y}):Y},R=function(e){var t,n=e.needDeps,o=e.dark,l=e.token,s=(0,g.useContext)(z),d=(0,g.useContext)(c.Ay.ConfigContext),u=d.locale,p=d.theme,f=(0,a.A)(d,j);if(n&&void 0!==s.hashId&&"children-needDeps"===Object.keys(e).sort().join("-"))return(0,O.jsx)(O.Fragment,{children:e.children});var h=(0,i.A)((0,i.A)({},f),{},{locale:u||m,theme:E((0,i.A)((0,i.A)({},p),{},{algorithm:(t=null!=o?o:s.dark)&&!Array.isArray(null==p?void 0:p.algorithm)?[null==p?void 0:p.algorithm,$.JM.darkAlgorithm].filter(Boolean):t&&Array.isArray(null==p?void 0:p.algorithm)?[].concat((0,r.A)((null==p?void 0:p.algorithm)||[]),[$.JM.darkAlgorithm]).filter(Boolean):null==p?void 0:p.algorithm}))});return(0,O.jsx)(c.Ay,(0,i.A)((0,i.A)({},h),{},{children:(0,O.jsx)(M,(0,i.A)((0,i.A)({},e),{},{token:l}))}))};function B(){var e=(0,g.useContext)(c.Ay.ConfigContext).locale,t=(0,g.useContext)(z).intl;return t&&"default"!==t.locale?t||v.BG:null!=e&&e.locale&&v.Ou[(0,v.z8)(e.locale)]||v.BG}z.displayName="ProProvider";var T=z;let F=z},90583(e,t,n){"use strict";n.d(t,{BG:()=>l,Ou:()=>c,z8:()=>d});var r=n(81470),o=function(e,t){return{getMessage:function(n,o){var a=(0,r.Jt)(t,n.replace(/\[(\d+)\]/g,".$1").split("."))||"";if(a)return a;if("zh-CN"===e.replace("_","-"))return o;var i=c["zh-CN"];return i?i.getMessage(n,o):o},locale:e}},a=o("mn_MN",{moneySymbol:"₮",form:{lightFilter:{more:"Илүү",clear:"Цэвэрлэх",confirm:"Баталгаажуулах",itemUnit:"Нэгжүүд"}},tableForm:{search:"Хайх",reset:"Шинэчлэх",submit:"Илгээх",collapsed:"Өргөтгөх",expand:"Хураах",inputPlaceholder:"Утга оруулна уу",selectPlaceholder:"Утга сонгоно уу"},alert:{clear:"Цэвэрлэх",selected:"Сонгогдсон",item:"Нэгж"},pagination:{total:{range:" ",total:"Нийт",item:"мөр"}},tableToolBar:{leftPin:"Зүүн тийш бэхлэх",rightPin:"Баруун тийш бэхлэх",noPin:"Бэхлэхгүй",leftFixedTitle:"Зүүн зэрэгцүүлэх",rightFixedTitle:"Баруун зэрэгцүүлэх",noFixedTitle:"Зэрэгцүүлэхгүй",reset:"Шинэчлэх",columnDisplay:"Баганаар харуулах",columnSetting:"Тохиргоо",fullScreen:"Бүтэн дэлгэцээр",exitFullScreen:"Бүтэн дэлгэц цуцлах",reload:"Шинэчлэх",density:"Хэмжээ",densityDefault:"Хэвийн",densityLarger:"Том",densityMiddle:"Дунд",densitySmall:"Жижиг"},stepsForm:{next:"Дараах",prev:"Өмнөх",submit:"Дуусгах"},loginForm:{submitText:"Нэвтрэх"},editableTable:{action:{save:"Хадгалах",cancel:"Цуцлах",delete:"Устгах",add:"Мөр нэмэх"}},switch:{open:"Нээх",close:"Хаах"}}),i=o("ar_EG",{moneySymbol:"$",form:{lightFilter:{more:"المزيد",clear:"نظف",confirm:"تأكيد",itemUnit:"عناصر"}},tableForm:{search:"ابحث",reset:"إعادة تعيين",submit:"ارسال",collapsed:"مُقلص",expand:"مُوسع",inputPlaceholder:"الرجاء الإدخال",selectPlaceholder:"الرجاء الإختيار"},alert:{clear:"نظف",selected:"محدد",item:"عنصر"},pagination:{total:{range:" ",total:"من",item:"عناصر"}},tableToolBar:{leftPin:"ثبت على اليسار",rightPin:"ثبت على اليمين",noPin:"الغاء التثبيت",leftFixedTitle:"لصق على اليسار",rightFixedTitle:"لصق على اليمين",noFixedTitle:"إلغاء الإلصاق",reset:"إعادة تعيين",columnDisplay:"الأعمدة المعروضة",columnSetting:"الإعدادات",fullScreen:"وضع كامل الشاشة",exitFullScreen:"الخروج من وضع كامل الشاشة",reload:"تحديث",density:"الكثافة",densityDefault:"افتراضي",densityLarger:"أكبر",densityMiddle:"وسط",densitySmall:"مدمج"},stepsForm:{next:"التالي",prev:"السابق",submit:"أنهى"},loginForm:{submitText:"تسجيل الدخول"},editableTable:{action:{save:"أنقذ",cancel:"إلغاء الأمر",delete:"حذف",add:"إضافة صف من البيانات"}},switch:{open:"مفتوح",close:"غلق"}}),l=o("zh_CN",{moneySymbol:"\xa5",deleteThisLine:"删除此项",copyThisLine:"复制此项",form:{lightFilter:{more:"更多筛选",clear:"清除",confirm:"确认",itemUnit:"项"}},tableForm:{search:"查询",reset:"重置",submit:"提交",collapsed:"展开",expand:"收起",inputPlaceholder:"请输入",selectPlaceholder:"请选择"},alert:{clear:"取消选择",selected:"已选择",item:"项"},pagination:{total:{range:"第",total:"条/总共",item:"条"}},tableToolBar:{leftPin:"固定在列首",rightPin:"固定在列尾",noPin:"不固定",leftFixedTitle:"固定在左侧",rightFixedTitle:"固定在右侧",noFixedTitle:"不固定",reset:"重置",columnDisplay:"列展示",columnSetting:"列设置",fullScreen:"全屏",exitFullScreen:"退出全屏",reload:"刷新",density:"密度",densityDefault:"正常",densityLarger:"宽松",densityMiddle:"中等",densitySmall:"紧凑"},stepsForm:{next:"下一步",prev:"上一步",submit:"提交"},loginForm:{submitText:"登录"},editableTable:{onlyOneLineEditor:"只能同时编辑一行",action:{save:"保存",cancel:"取消",delete:"删除",add:"添加一行数据"}},switch:{open:"打开",close:"关闭"}}),c={"mn-MN":a,"ar-EG":i,"zh-CN":l,"en-US":o("en_US",{moneySymbol:"$",deleteThisLine:"Delete this line",copyThisLine:"Copy this line",form:{lightFilter:{more:"More",clear:"Clear",confirm:"Confirm",itemUnit:"Items"}},tableForm:{search:"Query",reset:"Reset",submit:"Submit",collapsed:"Expand",expand:"Collapse",inputPlaceholder:"Please enter",selectPlaceholder:"Please select"},alert:{clear:"Clear",selected:"Selected",item:"Item"},pagination:{total:{range:" ",total:"of",item:"items"}},tableToolBar:{leftPin:"Pin to left",rightPin:"Pin to right",noPin:"Unpinned",leftFixedTitle:"Fixed to the left",rightFixedTitle:"Fixed to the right",noFixedTitle:"Not Fixed",reset:"Reset",columnDisplay:"Column Display",columnSetting:"Table Settings",fullScreen:"Full Screen",exitFullScreen:"Exit Full Screen",reload:"Refresh",density:"Density",densityDefault:"Default",densityLarger:"Larger",densityMiddle:"Middle",densitySmall:"Compact"},stepsForm:{next:"Next",prev:"Previous",submit:"Finish"},loginForm:{submitText:"Login"},editableTable:{onlyOneLineEditor:"Only one line can be edited",onlyAddOneLine:"Only one line can be added",action:{save:"Save",cancel:"Cancel",delete:"Delete",add:"add a row of data"}},switch:{open:"open",close:"close"}}),"en-GB":o("en_GB",{moneySymbol:"\xa3",form:{lightFilter:{more:"More",clear:"Clear",confirm:"Confirm",itemUnit:"Items"}},tableForm:{search:"Query",reset:"Reset",submit:"Submit",collapsed:"Expand",expand:"Collapse",inputPlaceholder:"Please enter",selectPlaceholder:"Please select"},alert:{clear:"Clear",selected:"Selected",item:"Item"},pagination:{total:{range:" ",total:"of",item:"items"}},tableToolBar:{leftPin:"Pin to left",rightPin:"Pin to right",noPin:"Unpinned",leftFixedTitle:"Fixed to the left",rightFixedTitle:"Fixed to the right",noFixedTitle:"Not Fixed",reset:"Reset",columnDisplay:"Column Display",columnSetting:"Table Settings",fullScreen:"Full Screen",exitFullScreen:"Exit Full Screen",reload:"Refresh",density:"Density",densityDefault:"Default",densityLarger:"Larger",densityMiddle:"Middle",densitySmall:"Compact"},stepsForm:{next:"Next",prev:"Previous",submit:"Finish"},loginForm:{submitText:"Login"},editableTable:{onlyOneLineEditor:"Only one line can be edited",onlyAddOneLine:"Only one line can be added",action:{save:"Save",cancel:"Cancel",delete:"Delete",add:"add a row of data"}},switch:{open:"open",close:"close"}}),"vi-VN":o("vi_VN",{moneySymbol:"₫",form:{lightFilter:{more:"Nhiều hơn",clear:"Trong",confirm:"X\xe1c nhận",itemUnit:"Mục"}},tableForm:{search:"T\xecm kiếm",reset:"L\xe0m lại",submit:"Gửi đi",collapsed:"Mở rộng",expand:"Thu gọn",inputPlaceholder:"nhập dữ liệu",selectPlaceholder:"Vui l\xf2ng chọn"},alert:{clear:"X\xf3a",selected:"đ\xe3 chọn",item:"mục"},pagination:{total:{range:" ",total:"tr\xean",item:"mặt h\xe0ng"}},tableToolBar:{leftPin:"Ghim tr\xe1i",rightPin:"Ghim phải",noPin:"Bỏ ghim",leftFixedTitle:"Cố định tr\xe1i",rightFixedTitle:"Cố định phải",noFixedTitle:"Chưa cố định",reset:"L\xe0m lại",columnDisplay:"Cột hiển thị",columnSetting:"Cấu h\xecnh",fullScreen:"Chế độ to\xe0n m\xe0n h\xecnh",exitFullScreen:"Tho\xe1t chế độ to\xe0n m\xe0n h\xecnh",reload:"L\xe0m mới",density:"Mật độ hiển thị",densityDefault:"Mặc định",densityLarger:"Mặc định",densityMiddle:"Trung b\xecnh",densitySmall:"Chật"},stepsForm:{next:"Sau",prev:"Trước",submit:"Kết th\xfac"},loginForm:{submitText:"Đăng nhập"},editableTable:{action:{save:"Cứu",cancel:"Hủy",delete:"X\xf3a",add:"th\xeam một h\xe0ng dữ liệu"}},switch:{open:"mở",close:"đ\xf3ng"}}),"it-IT":o("it_IT",{moneySymbol:"€",form:{lightFilter:{more:"pi\xf9",clear:"pulisci",confirm:"conferma",itemUnit:"elementi"}},tableForm:{search:"Filtra",reset:"Pulisci",submit:"Invia",collapsed:"Espandi",expand:"Contrai",inputPlaceholder:"Digita",selectPlaceholder:"Seleziona"},alert:{clear:"Rimuovi",selected:"Selezionati",item:"elementi"},pagination:{total:{range:" ",total:"di",item:"elementi"}},tableToolBar:{leftPin:"Fissa a sinistra",rightPin:"Fissa a destra",noPin:"Ripristina posizione",leftFixedTitle:"Fissato a sinistra",rightFixedTitle:"Fissato a destra",noFixedTitle:"Non fissato",reset:"Ripristina",columnDisplay:"Disposizione colonne",columnSetting:"Impostazioni",fullScreen:"Modalit\xe0 schermo intero",exitFullScreen:"Esci da modalit\xe0 schermo intero",reload:"Ricarica",density:"Grandezza tabella",densityDefault:"predefinito",densityLarger:"Grande",densityMiddle:"Media",densitySmall:"Compatta"},stepsForm:{next:"successivo",prev:"precedente",submit:"finisci"},loginForm:{submitText:"Accedi"},editableTable:{action:{save:"salva",cancel:"annulla",delete:"Delete",add:"add a row of data"}},switch:{open:"open",close:"chiudi"}}),"ja-JP":o("ja_JP",{moneySymbol:"\xa5",form:{lightFilter:{more:"更に",clear:"クリア",confirm:"確認",itemUnit:"アイテム"}},tableForm:{search:"検索",reset:"リセット",submit:"送信",collapsed:"拡大",expand:"折畳",inputPlaceholder:"入力してください",selectPlaceholder:"選択してください"},alert:{clear:"クリア",selected:"選択した",item:"アイテム"},pagination:{total:{range:"レコード",total:"/合計",item:" "}},tableToolBar:{leftPin:"左に固定",rightPin:"右に固定",noPin:"キャンセル",leftFixedTitle:"左に固定された項目",rightFixedTitle:"右に固定された項目",noFixedTitle:"固定されてない項目",reset:"リセット",columnDisplay:"表示列",columnSetting:"列表示設定",fullScreen:"フルスクリーン",exitFullScreen:"終了",reload:"更新",density:"行高",densityDefault:"デフォルト",densityLarger:"大",densityMiddle:"中",densitySmall:"小"},stepsForm:{next:"次へ",prev:"前へ",submit:"送信"},loginForm:{submitText:"ログイン"},editableTable:{action:{save:"保存",cancel:"キャンセル",delete:"削除",add:"追加"}},switch:{open:"開く",close:"閉じる"}}),"es-ES":o("es_ES",{moneySymbol:"€",form:{lightFilter:{more:"M\xe1s",clear:"Limpiar",confirm:"Confirmar",itemUnit:"art\xedculos"}},tableForm:{search:"Buscar",reset:"Limpiar",submit:"Submit",collapsed:"Expandir",expand:"Colapsar",inputPlaceholder:"Ingrese valor",selectPlaceholder:"Seleccione valor"},alert:{clear:"Limpiar",selected:"Seleccionado",item:"Articulo"},pagination:{total:{range:" ",total:"de",item:"art\xedculos"}},tableToolBar:{leftPin:"Pin a la izquierda",rightPin:"Pin a la derecha",noPin:"Sin Pin",leftFixedTitle:"Fijado a la izquierda",rightFixedTitle:"Fijado a la derecha",noFixedTitle:"Sin Fijar",reset:"Reiniciar",columnDisplay:"Mostrar Columna",columnSetting:"Configuraci\xf3n",fullScreen:"Pantalla Completa",exitFullScreen:"Salir Pantalla Completa",reload:"Refrescar",density:"Densidad",densityDefault:"Por Defecto",densityLarger:"Largo",densityMiddle:"Medio",densitySmall:"Compacto"},stepsForm:{next:"Siguiente",prev:"Anterior",submit:"Finalizar"},loginForm:{submitText:"Entrar"},editableTable:{action:{save:"Guardar",cancel:"Descartar",delete:"Borrar",add:"a\xf1adir una fila de datos"}},switch:{open:"abrir",close:"cerrar"}}),"ca-ES":o("ca_ES",{moneySymbol:"€",form:{lightFilter:{more:"M\xe9s",clear:"Netejar",confirm:"Confirmar",itemUnit:"Elements"}},tableForm:{search:"Cercar",reset:"Netejar",submit:"Enviar",collapsed:"Expandir",expand:"Col\xb7lapsar",inputPlaceholder:"Introdu\xefu valor",selectPlaceholder:"Seleccioneu valor"},alert:{clear:"Netejar",selected:"Seleccionat",item:"Article"},pagination:{total:{range:" ",total:"de",item:"articles"}},tableToolBar:{leftPin:"Pin a l'esquerra",rightPin:"Pin a la dreta",noPin:"Sense Pin",leftFixedTitle:"Fixat a l'esquerra",rightFixedTitle:"Fixat a la dreta",noFixedTitle:"Sense fixar",reset:"Reiniciar",columnDisplay:"Mostrar Columna",columnSetting:"Configuraci\xf3",fullScreen:"Pantalla Completa",exitFullScreen:"Sortir Pantalla Completa",reload:"Refrescar",density:"Densitat",densityDefault:"Per Defecte",densityLarger:"Llarg",densityMiddle:"Mitj\xe0",densitySmall:"Compacte"},stepsForm:{next:"Seg\xfcent",prev:"Anterior",submit:"Finalizar"},loginForm:{submitText:"Entrar"},editableTable:{action:{save:"Guardar",cancel:"Cancel\xb7lar",delete:"Eliminar",add:"afegir una fila de dades"}},switch:{open:"obert",close:"tancat"}}),"ru-RU":o("ru_RU",{moneySymbol:"₽",form:{lightFilter:{more:"Еще",clear:"Очистить",confirm:"ОК",itemUnit:"Позиции"}},tableForm:{search:"Найти",reset:"Сброс",submit:"Отправить",collapsed:"Развернуть",expand:"Свернуть",inputPlaceholder:"Введите значение",selectPlaceholder:"Выберите значение"},alert:{clear:"Очистить",selected:"Выбрано",item:"элементов"},pagination:{total:{range:" ",total:"из",item:"элементов"}},tableToolBar:{leftPin:"Закрепить слева",rightPin:"Закрепить справа",noPin:"Открепить",leftFixedTitle:"Закреплено слева",rightFixedTitle:"Закреплено справа",noFixedTitle:"Не закреплено",reset:"Сброс",columnDisplay:"Отображение столбца",columnSetting:"Настройки",fullScreen:"Полный экран",exitFullScreen:"Выйти из полноэкранного режима",reload:"Обновить",density:"Размер",densityDefault:"По умолчанию",densityLarger:"Большой",densityMiddle:"Средний",densitySmall:"Сжатый"},stepsForm:{next:"Следующий",prev:"Предыдущий",submit:"Завершить"},loginForm:{submitText:"Вход"},editableTable:{action:{save:"Сохранить",cancel:"Отменить",delete:"Удалить",add:"добавить ряд данных"}},switch:{open:"Открытый чемпионат мира по теннису",close:"По адресу:"}}),"sr-RS":o("sr_RS",{moneySymbol:"RSD",form:{lightFilter:{more:"Više",clear:"Očisti",confirm:"Potvrdi",itemUnit:"Stavke"}},tableForm:{search:"Pronađi",reset:"Resetuj",submit:"Pošalji",collapsed:"Proširi",expand:"Skupi",inputPlaceholder:"Molimo unesite",selectPlaceholder:"Molimo odaberite"},alert:{clear:"Očisti",selected:"Odabrano",item:"Stavka"},pagination:{total:{range:" ",total:"od",item:"stavki"}},tableToolBar:{leftPin:"Zakači levo",rightPin:"Zakači desno",noPin:"Nije zakačeno",leftFixedTitle:"Fiksirano levo",rightFixedTitle:"Fiksirano desno",noFixedTitle:"Nije fiksirano",reset:"Resetuj",columnDisplay:"Prikaz kolona",columnSetting:"Podešavanja",fullScreen:"Pun ekran",exitFullScreen:"Zatvori pun ekran",reload:"Osveži",density:"Veličina",densityDefault:"Podrazumevana",densityLarger:"Veća",densityMiddle:"Srednja",densitySmall:"Kompaktna"},stepsForm:{next:"Dalje",prev:"Nazad",submit:"Gotovo"},loginForm:{submitText:"Prijavi se"},editableTable:{action:{save:"Sačuvaj",cancel:"Poništi",delete:"Obriši",add:"dodajte red podataka"}},switch:{open:"Отворите",close:"Затворите"}}),"ms-MY":o("ms_MY",{moneySymbol:"RM",form:{lightFilter:{more:"Lebih banyak",clear:"Jelas",confirm:"Mengesahkan",itemUnit:"Item"}},tableForm:{search:"Cari",reset:"Menetapkan semula",submit:"Hantar",collapsed:"Kembang",expand:"Kuncup",inputPlaceholder:"Sila masuk",selectPlaceholder:"Sila pilih"},alert:{clear:"Padam",selected:"Dipilih",item:"Item"},pagination:{total:{range:" ",total:"daripada",item:"item"}},tableToolBar:{leftPin:"Pin ke kiri",rightPin:"Pin ke kanan",noPin:"Tidak pin",leftFixedTitle:"Tetap ke kiri",rightFixedTitle:"Tetap ke kanan",noFixedTitle:"Tidak Tetap",reset:"Menetapkan semula",columnDisplay:"Lajur",columnSetting:"Settings",fullScreen:"Full Screen",exitFullScreen:"Keluar Full Screen",reload:"Muat Semula",density:"Densiti",densityDefault:"Biasa",densityLarger:"Besar",densityMiddle:"Tengah",densitySmall:"Kecil"},stepsForm:{next:"Seterusnya",prev:"Sebelumnya",submit:"Selesai"},loginForm:{submitText:"Log Masuk"},editableTable:{action:{save:"Simpan",cancel:"Membatalkan",delete:"Menghapuskan",add:"tambah baris data"}},switch:{open:"Terbuka",close:"Tutup"}}),"zh-TW":o("zh_TW",{moneySymbol:"NT$",deleteThisLine:"刪除此项",copyThisLine:"複製此项",form:{lightFilter:{more:"更多篩選",clear:"清除",confirm:"確認",itemUnit:"項"}},tableForm:{search:"查詢",reset:"重置",submit:"提交",collapsed:"展開",expand:"收起",inputPlaceholder:"請輸入",selectPlaceholder:"請選擇"},alert:{clear:"取消選擇",selected:"已選擇",item:"項"},pagination:{total:{range:"第",total:"條/總共",item:"條"}},tableToolBar:{leftPin:"固定到左邊",rightPin:"固定到右邊",noPin:"不固定",leftFixedTitle:"固定在左側",rightFixedTitle:"固定在右側",noFixedTitle:"不固定",reset:"重置",columnDisplay:"列展示",columnSetting:"列設置",fullScreen:"全屏",exitFullScreen:"退出全屏",reload:"刷新",density:"密度",densityDefault:"正常",densityLarger:"寬鬆",densityMiddle:"中等",densitySmall:"緊湊"},stepsForm:{next:"下一步",prev:"上一步",submit:"完成"},loginForm:{submitText:"登入"},editableTable:{onlyOneLineEditor:"只能同時編輯一行",action:{save:"保存",cancel:"取消",delete:"刪除",add:"新增一行資料"}},switch:{open:"打開",close:"關閉"}}),"zh-HK":o("zh_HK",{moneySymbol:"HK$",deleteThisLine:"刪除此項",copyThisLine:"複製此項",form:{lightFilter:{more:"更多篩選",clear:"清除",confirm:"確認",itemUnit:"項"}},tableForm:{search:"搜尋",reset:"重設",submit:"提交",collapsed:"展開",expand:"收起",inputPlaceholder:"請輸入",selectPlaceholder:"請選擇"},alert:{clear:"取消選取",selected:"已選取",item:"項"},pagination:{total:{range:"第",total:"項/總共",item:"項"}},tableToolBar:{leftPin:"固定到左邊",rightPin:"固定到右邊",noPin:"不固定",leftFixedTitle:"固定在左側",rightFixedTitle:"固定在右側",noFixedTitle:"不固定",reset:"重設",columnDisplay:"列顯示",columnSetting:"列設定",fullScreen:"全螢幕",exitFullScreen:"退出全螢幕",reload:"重新整理",density:"密度",densityDefault:"正常",densityLarger:"寬鬆",densityMiddle:"中等",densitySmall:"緊湊"},stepsForm:{next:"下一步",prev:"上一步",submit:"完成"},loginForm:{submitText:"登入"},editableTable:{onlyOneLineEditor:"只能同時編輯一行",action:{save:"保存",cancel:"取消",delete:"刪除",add:"新增一行資料"}},switch:{open:"打開",close:"關閉"}}),"fr-FR":o("fr_FR",{moneySymbol:"€",form:{lightFilter:{more:"Plus",clear:"Effacer",confirm:"Confirmer",itemUnit:"Items"}},tableForm:{search:"Rechercher",reset:"R\xe9initialiser",submit:"Envoyer",collapsed:"Agrandir",expand:"R\xe9duire",inputPlaceholder:"Entrer une valeur",selectPlaceholder:"S\xe9lectionner une valeur"},alert:{clear:"R\xe9initialiser",selected:"S\xe9lectionn\xe9",item:"Item"},pagination:{total:{range:" ",total:"sur",item:"\xe9l\xe9ments"}},tableToolBar:{leftPin:"\xc9pingler \xe0 gauche",rightPin:"\xc9pingler \xe0 gauche",noPin:"Sans \xe9pingle",leftFixedTitle:"Fixer \xe0 gauche",rightFixedTitle:"Fixer \xe0 droite",noFixedTitle:"Non fix\xe9",reset:"R\xe9initialiser",columnDisplay:"Affichage colonne",columnSetting:"R\xe9glages",fullScreen:"Plein \xe9cran",exitFullScreen:"Quitter Plein \xe9cran",reload:"Rafraichir",density:"Densit\xe9",densityDefault:"Par d\xe9faut",densityLarger:"Larger",densityMiddle:"Moyenne",densitySmall:"Compacte"},stepsForm:{next:"Suivante",prev:"Pr\xe9c\xe9dente",submit:"Finaliser"},loginForm:{submitText:"Se connecter"},editableTable:{action:{save:"Sauvegarder",cancel:"Annuler",delete:"Supprimer",add:"ajouter une ligne de donn\xe9es"}},switch:{open:"ouvert",close:"pr\xe8s"}}),"pt-BR":o("pt_BR",{moneySymbol:"R$",form:{lightFilter:{more:"Mais",clear:"Limpar",confirm:"Confirmar",itemUnit:"Itens"}},tableForm:{search:"Filtrar",reset:"Limpar",submit:"Confirmar",collapsed:"Expandir",expand:"Colapsar",inputPlaceholder:"Por favor insira",selectPlaceholder:"Por favor selecione"},alert:{clear:"Limpar",selected:"Selecionado(s)",item:"Item(s)"},pagination:{total:{range:" ",total:"de",item:"itens"}},tableToolBar:{leftPin:"Fixar \xe0 esquerda",rightPin:"Fixar \xe0 direita",noPin:"Desfixado",leftFixedTitle:"Fixado \xe0 esquerda",rightFixedTitle:"Fixado \xe0 direita",noFixedTitle:"N\xe3o fixado",reset:"Limpar",columnDisplay:"Mostrar Coluna",columnSetting:"Configura\xe7\xf5es",fullScreen:"Tela Cheia",exitFullScreen:"Sair da Tela Cheia",reload:"Atualizar",density:"Densidade",densityDefault:"Padr\xe3o",densityLarger:"Largo",densityMiddle:"M\xe9dio",densitySmall:"Compacto"},stepsForm:{next:"Pr\xf3ximo",prev:"Anterior",submit:"Enviar"},loginForm:{submitText:"Entrar"},editableTable:{action:{save:"Salvar",cancel:"Cancelar",delete:"Apagar",add:"adicionar uma linha de dados"}},switch:{open:"abrir",close:"fechar"}}),"ko-KR":o("ko_KR",{moneySymbol:"₩",form:{lightFilter:{more:"더보기",clear:"초기화",confirm:"확인",itemUnit:"건수"}},tableForm:{search:"조회",reset:"초기화",submit:"제출",collapsed:"확장",expand:"닫기",inputPlaceholder:"입력해 주세요",selectPlaceholder:"선택해 주세요"},alert:{clear:"취소",selected:"선택",item:"건"},pagination:{total:{range:" ",total:"/ 총",item:"건"}},tableToolBar:{leftPin:"왼쪽으로 핀",rightPin:"오른쪽으로 핀",noPin:"핀 제거",leftFixedTitle:"왼쪽으로 고정",rightFixedTitle:"오른쪽으로 고정",noFixedTitle:"비고정",reset:"초기화",columnDisplay:"컬럼 표시",columnSetting:"설정",fullScreen:"전체 화면",exitFullScreen:"전체 화면 취소",reload:"새로 고침",density:"여백",densityDefault:"기본",densityLarger:"많은 여백",densityMiddle:"중간 여백",densitySmall:"좁은 여백"},stepsForm:{next:"다음",prev:"이전",submit:"종료"},loginForm:{submitText:"로그인"},editableTable:{action:{save:"저장",cancel:"취소",delete:"삭제",add:"데이터 행 추가"}},switch:{open:"열",close:"가까 운"}}),"id-ID":o("id_ID",{moneySymbol:"RP",form:{lightFilter:{more:"Lebih",clear:"Hapus",confirm:"Konfirmasi",itemUnit:"Unit"}},tableForm:{search:"Cari",reset:"Atur ulang",submit:"Kirim",collapsed:"Lebih sedikit",expand:"Lebih banyak",inputPlaceholder:"Masukkan pencarian",selectPlaceholder:"Pilih"},alert:{clear:"Hapus",selected:"Dipilih",item:"Butir"},pagination:{total:{range:" ",total:"Dari",item:"Butir"}},tableToolBar:{leftPin:"Pin kiri",rightPin:"Pin kanan",noPin:"Tidak ada pin",leftFixedTitle:"Rata kiri",rightFixedTitle:"Rata kanan",noFixedTitle:"Tidak tetap",reset:"Atur ulang",columnDisplay:"Tampilan kolom",columnSetting:"Pengaturan",fullScreen:"Layar penuh",exitFullScreen:"Keluar layar penuh",reload:"Atur ulang",density:"Kerapatan",densityDefault:"Standar",densityLarger:"Lebih besar",densityMiddle:"Sedang",densitySmall:"Rapat"},stepsForm:{next:"Selanjutnya",prev:"Sebelumnya",submit:"Selesai"},loginForm:{submitText:"Login"},editableTable:{action:{save:"simpan",cancel:"batal",delete:"hapus",add:"Tambahkan baris data"}},switch:{open:"buka",close:"tutup"}}),"de-DE":o("de_DE",{moneySymbol:"€",form:{lightFilter:{more:"Mehr",clear:"Zur\xfccksetzen",confirm:"Best\xe4tigen",itemUnit:"Eintr\xe4ge"}},tableForm:{search:"Suchen",reset:"Zur\xfccksetzen",submit:"Absenden",collapsed:"Zeige mehr",expand:"Zeige weniger",inputPlaceholder:"Bitte eingeben",selectPlaceholder:"Bitte ausw\xe4hlen"},alert:{clear:"Zur\xfccksetzen",selected:"Ausgew\xe4hlt",item:"Eintrag"},pagination:{total:{range:" ",total:"von",item:"Eintr\xe4gen"}},tableToolBar:{leftPin:"Links anheften",rightPin:"Rechts anheften",noPin:"Nicht angeheftet",leftFixedTitle:"Links fixiert",rightFixedTitle:"Rechts fixiert",noFixedTitle:"Nicht fixiert",reset:"Zur\xfccksetzen",columnDisplay:"Angezeigte Reihen",columnSetting:"Einstellungen",fullScreen:"Vollbild",exitFullScreen:"Vollbild verlassen",reload:"Aktualisieren",density:"Abstand",densityDefault:"Standard",densityLarger:"Gr\xf6\xdfer",densityMiddle:"Mittel",densitySmall:"Kompakt"},stepsForm:{next:"Weiter",prev:"Zur\xfcck",submit:"Abschlie\xdfen"},loginForm:{submitText:"Anmelden"},editableTable:{action:{save:"Retten",cancel:"Abbrechen",delete:"L\xf6schen",add:"Hinzuf\xfcgen einer Datenzeile"}},switch:{open:"offen",close:"schlie\xdfen"}}),"fa-IR":o("fa_IR",{moneySymbol:"تومان",form:{lightFilter:{more:"بیشتر",clear:"پاک کردن",confirm:"تایید",itemUnit:"مورد"}},tableForm:{search:"جستجو",reset:"بازنشانی",submit:"تایید",collapsed:"نمایش بیشتر",expand:"نمایش کمتر",inputPlaceholder:"پیدا کنید",selectPlaceholder:"انتخاب کنید"},alert:{clear:"پاک سازی",selected:"انتخاب",item:"مورد"},pagination:{total:{range:" ",total:"از",item:"مورد"}},tableToolBar:{leftPin:"سنجاق به چپ",rightPin:"سنجاق به راست",noPin:"سنجاق نشده",leftFixedTitle:"ثابت شده در چپ",rightFixedTitle:"ثابت شده در راست",noFixedTitle:"شناور",reset:"بازنشانی",columnDisplay:"نمایش همه",columnSetting:"تنظیمات",fullScreen:"تمام صفحه",exitFullScreen:"خروج از حالت تمام صفحه",reload:"تازه سازی",density:"تراکم",densityDefault:"پیش فرض",densityLarger:"بزرگ",densityMiddle:"متوسط",densitySmall:"کوچک"},stepsForm:{next:"بعدی",prev:"قبلی",submit:"اتمام"},loginForm:{submitText:"ورود"},editableTable:{action:{save:"ذخیره",cancel:"لغو",delete:"حذف",add:"یک ردیف داده اضافه کنید"}},switch:{open:"باز",close:"نزدیک"}}),"tr-TR":o("tr_TR",{moneySymbol:"₺",form:{lightFilter:{more:"Daha Fazla",clear:"Temizle",confirm:"Onayla",itemUnit:"\xd6ğeler"}},tableForm:{search:"Filtrele",reset:"Sıfırla",submit:"G\xf6nder",collapsed:"Daha fazla",expand:"Daha az",inputPlaceholder:"Filtrelemek i\xe7in bir değer girin",selectPlaceholder:"Filtrelemek i\xe7in bir değer se\xe7in"},alert:{clear:"Temizle",selected:"Se\xe7ili",item:"\xd6ğe"},pagination:{total:{range:" ",total:"Toplam",item:"\xd6ğe"}},tableToolBar:{leftPin:"Sola sabitle",rightPin:"Sağa sabitle",noPin:"Sabitlemeyi kaldır",leftFixedTitle:"Sola sabitlendi",rightFixedTitle:"Sağa sabitlendi",noFixedTitle:"Sabitlenmedi",reset:"Sıfırla",columnDisplay:"Kolon G\xf6r\xfcn\xfcm\xfc",columnSetting:"Ayarlar",fullScreen:"Tam Ekran",exitFullScreen:"Tam Ekrandan \xc7ık",reload:"Yenile",density:"Kalınlık",densityDefault:"Varsayılan",densityLarger:"B\xfcy\xfck",densityMiddle:"Orta",densitySmall:"K\xfc\xe7\xfck"},stepsForm:{next:"Sıradaki",prev:"\xd6nceki",submit:"G\xf6nder"},loginForm:{submitText:"Giriş Yap"},editableTable:{action:{save:"Kaydet",cancel:"Vazge\xe7",delete:"Sil",add:"foegje in rige gegevens ta"}},switch:{open:"a\xe7ık",close:"kapatmak"}}),"pl-PL":o("pl_PL",{moneySymbol:"zł",form:{lightFilter:{more:"Więcej",clear:"Wyczyść",confirm:"Potwierdź",itemUnit:"Ilość"}},tableForm:{search:"Szukaj",reset:"Reset",submit:"Zatwierdź",collapsed:"Pokaż wiecej",expand:"Pokaż mniej",inputPlaceholder:"Proszę podać",selectPlaceholder:"Proszę wybrać"},alert:{clear:"Wyczyść",selected:"Wybrane",item:"Wpis"},pagination:{total:{range:" ",total:"z",item:"Wpis\xf3w"}},tableToolBar:{leftPin:"Przypnij do lewej",rightPin:"Przypnij do prawej",noPin:"Odepnij",leftFixedTitle:"Przypięte do lewej",rightFixedTitle:"Przypięte do prawej",noFixedTitle:"Nieprzypięte",reset:"Reset",columnDisplay:"Wyświetlane wiersze",columnSetting:"Ustawienia",fullScreen:"Pełen ekran",exitFullScreen:"Zamknij pełen ekran",reload:"Odśwież",density:"Odstęp",densityDefault:"Standard",densityLarger:"Wiekszy",densityMiddle:"Sredni",densitySmall:"Kompaktowy"},stepsForm:{next:"Weiter",prev:"Zur\xfcck",submit:"Abschlie\xdfen"},loginForm:{submitText:"Zaloguj się"},editableTable:{action:{save:"Zapisać",cancel:"Anuluj",delete:"Usunąć",add:"dodawanie wiersza danych"}},switch:{open:"otwierać",close:"zamykać"}}),"hr-HR":o("hr_",{moneySymbol:"kn",form:{lightFilter:{more:"Više",clear:"Očisti",confirm:"Potvrdi",itemUnit:"Stavke"}},tableForm:{search:"Pretraži",reset:"Poništi",submit:"Potvrdi",collapsed:"Raširi",expand:"Skupi",inputPlaceholder:"Unesite",selectPlaceholder:"Odaberite"},alert:{clear:"Očisti",selected:"Odaberi",item:"stavke"},pagination:{total:{range:" ",total:"od",item:"stavke"}},tableToolBar:{leftPin:"Prikači lijevo",rightPin:"Prikači desno",noPin:"Bez prikačenja",leftFixedTitle:"Fiksiraj lijevo",rightFixedTitle:"Fiksiraj desno",noFixedTitle:"Bez fiksiranja",reset:"Resetiraj",columnDisplay:"Prikaz stupaca",columnSetting:"Postavke",fullScreen:"Puni zaslon",exitFullScreen:"Izađi iz punog zaslona",reload:"Ponovno učitaj",density:"Veličina",densityDefault:"Zadano",densityLarger:"Veliko",densityMiddle:"Srednje",densitySmall:"Malo"},stepsForm:{next:"Sljedeći",prev:"Prethodni",submit:"Kraj"},loginForm:{submitText:"Prijava"},editableTable:{action:{save:"Spremi",cancel:"Odustani",delete:"Obriši",add:"dodajte red podataka"}},switch:{open:"otvori",close:"zatvori"}}),"th-TH":o("th_TH",{moneySymbol:"฿",deleteThisLine:"ลบบรรทัดนี้",copyThisLine:"คัดลอกบรรทัดนี้",form:{lightFilter:{more:"มากกว่า",clear:"ชัดเจน",confirm:"ยืนยัน",itemUnit:"รายการ"}},tableForm:{search:"สอบถาม",reset:"รีเซ็ต",submit:"ส่ง",collapsed:"ขยาย",expand:"ทรุด",inputPlaceholder:"กรุณาป้อน",selectPlaceholder:"โปรดเลือก"},alert:{clear:"ชัดเจน",selected:"เลือกแล้ว",item:"รายการ"},pagination:{total:{range:" ",total:"ของ",item:"รายการ"}},tableToolBar:{leftPin:"ปักหมุดไปทางซ้าย",rightPin:"ปักหมุดไปทางขวา",noPin:"เลิกตรึงแล้ว",leftFixedTitle:"แก้ไขด้านซ้าย",rightFixedTitle:"แก้ไขด้านขวา",noFixedTitle:"ไม่คงที่",reset:"รีเซ็ต",columnDisplay:"การแสดงคอลัมน์",columnSetting:"การตั้งค่า",fullScreen:"เต็มจอ",exitFullScreen:"ออกจากโหมดเต็มหน้าจอ",reload:"รีเฟรช",density:"ความหนาแน่น",densityDefault:"ค่าเริ่มต้น",densityLarger:"ขนาดใหญ่ขึ้น",densityMiddle:"กลาง",densitySmall:"กะทัดรัด"},stepsForm:{next:"ถัดไป",prev:"ก่อนหน้า",submit:"เสร็จ"},loginForm:{submitText:"เข้าสู่ระบบ"},editableTable:{onlyOneLineEditor:"แก้ไขได้เพียงบรรทัดเดียวเท่านั้น",action:{save:"บันทึก",cancel:"ยกเลิก",delete:"ลบ",add:"เพิ่มแถวของข้อมูล"}},switch:{open:"เปิด",close:"ปิด"}}),"cs-CZ":o("cs_cz",{moneySymbol:"Kč",deleteThisLine:"Smazat tento ř\xe1dek",copyThisLine:"Kop\xedrovat tento ř\xe1dek",form:{lightFilter:{more:"V\xedc",clear:"Vymazat",confirm:"Potvrdit",itemUnit:"Položky"}},tableForm:{search:"Hledat",reset:"Resetovat",submit:"Odeslat",collapsed:"Zvětšit",expand:"Zmenšit",inputPlaceholder:"Zadejte pros\xedm",selectPlaceholder:"Vyberte pros\xedm"},alert:{clear:"Vymazat",selected:"Vybr\xe1no",item:"Položka"},pagination:{total:{range:" ",total:"z",item:"položek"}},tableToolBar:{leftPin:"Připnout doleva",rightPin:"Připnout doprava",noPin:"Odepnuto",leftFixedTitle:"Fixov\xe1no nalevo",rightFixedTitle:"Fixov\xe1no napravo",noFixedTitle:"Nefixov\xe1no",reset:"Resetovat",columnDisplay:"Zobrazen\xed sloupců",columnSetting:"Nastaven\xed",fullScreen:"Cel\xe1 obrazovka",exitFullScreen:"Ukončit celou obrazovku",reload:"Obnovit",density:"Hustota",densityDefault:"V\xfdchoz\xed",densityLarger:"Větš\xed",densityMiddle:"Středn\xed",densitySmall:"Kompaktn\xed"},stepsForm:{next:"Dalš\xed",prev:"Předchoz\xed",submit:"Dokončit"},loginForm:{submitText:"Přihl\xe1sit se"},editableTable:{onlyOneLineEditor:"Upravit lze pouze jeden ř\xe1dek",action:{save:"Uložit",cancel:"Zrušit",delete:"Vymazat",add:"Přidat ř\xe1dek"}},switch:{open:"Otevř\xedt",close:"Zavř\xedt"}}),"sk-SK":o("sk_SK",{moneySymbol:"€",deleteThisLine:"Odstr\xe1niť tento riadok",copyThisLine:"Skop\xedrujte tento riadok",form:{lightFilter:{more:"Viac",clear:"Vyčistiť",confirm:"Potvrďte",itemUnit:"Položky"}},tableForm:{search:"Vyhladať",reset:"Resetovať",submit:"Odoslať",collapsed:"Rozbaliť",expand:"Zbaliť",inputPlaceholder:"Pros\xedm, zadajte",selectPlaceholder:"Pros\xedm, vyberte"},alert:{clear:"Vyčistiť",selected:"Vybran\xfd",item:"Položka"},pagination:{total:{range:" ",total:"z",item:"položiek"}},tableToolBar:{leftPin:"Pripn\xfať vľavo",rightPin:"Pripn\xfať vpravo",noPin:"Odopnut\xe9",leftFixedTitle:"Fixovan\xe9 na ľavo",rightFixedTitle:"Fixovan\xe9 na pravo",noFixedTitle:"Nefixovan\xe9",reset:"Resetovať",columnDisplay:"Zobrazenie stĺpcov",columnSetting:"Nastavenia",fullScreen:"Cel\xe1 obrazovka",exitFullScreen:"Ukončiť cel\xfa obrazovku",reload:"Obnoviť",density:"Hustota",densityDefault:"Predvolen\xe9",densityLarger:"V\xe4čšie",densityMiddle:"Stredn\xe9",densitySmall:"Kompaktn\xe9"},stepsForm:{next:"Ďalšie",prev:"Predch\xe1dzaj\xface",submit:"Potvrdiť"},loginForm:{submitText:"Prihl\xe1siť sa"},editableTable:{onlyOneLineEditor:"Upravovať možno iba jeden riadok",action:{save:"Uložiť",cancel:"Zrušiť",delete:"Odstr\xe1niť",add:"pridať riadok \xfadajov"}},switch:{open:"otvoriť",close:"zavrieť"}}),"he-IL":o("he_IL",{moneySymbol:"₪",deleteThisLine:"מחק שורה זו",copyThisLine:"העתק שורה זו",form:{lightFilter:{more:"יותר",clear:"נקה",confirm:"אישור",itemUnit:"פריטים"}},tableForm:{search:"חיפוש",reset:"איפוס",submit:"שלח",collapsed:"הרחב",expand:"כווץ",inputPlaceholder:"אנא הכנס",selectPlaceholder:"אנא בחר"},alert:{clear:"נקה",selected:"נבחר",item:"פריט"},pagination:{total:{range:" ",total:"מתוך",item:"פריטים"}},tableToolBar:{leftPin:"הצמד לשמאל",rightPin:"הצמד לימין",noPin:"לא מצורף",leftFixedTitle:"מוצמד לשמאל",rightFixedTitle:"מוצמד לימין",noFixedTitle:"לא מוצמד",reset:"איפוס",columnDisplay:"תצוגת עמודות",columnSetting:"הגדרות",fullScreen:"מסך מלא",exitFullScreen:"צא ממסך מלא",reload:"רענן",density:"רזולוציה",densityDefault:"ברירת מחדל",densityLarger:"גדול",densityMiddle:"בינוני",densitySmall:"קטן"},stepsForm:{next:"הבא",prev:"קודם",submit:"סיום"},loginForm:{submitText:"כניסה"},editableTable:{onlyOneLineEditor:"ניתן לערוך רק שורה אחת",action:{save:"שמור",cancel:"ביטול",delete:"מחיקה",add:"הוסף שורת נתונים"}},switch:{open:"פתח",close:"סגור"}}),"uk-UA":o("uk_UA",{moneySymbol:"₴",deleteThisLine:"Видатили рядок",copyThisLine:"Скопіювати рядок",form:{lightFilter:{more:"Ще",clear:"Очистити",confirm:"Ок",itemUnit:"Позиції"}},tableForm:{search:"Пошук",reset:"Очистити",submit:"Відправити",collapsed:"Розгорнути",expand:"Згорнути",inputPlaceholder:"Введіть значення",selectPlaceholder:"Оберіть значення"},alert:{clear:"Очистити",selected:"Обрано",item:"елементів"},pagination:{total:{range:" ",total:"з",item:"елементів"}},tableToolBar:{leftPin:"Закріпити зліва",rightPin:"Закріпити справа",noPin:"Відкріпити",leftFixedTitle:"Закріплено зліва",rightFixedTitle:"Закріплено справа",noFixedTitle:"Не закріплено",reset:"Скинути",columnDisplay:"Відображення стовпців",columnSetting:"Налаштування",fullScreen:"Повноекранний режим",exitFullScreen:"Вийти з повноекранного режиму",reload:"Оновити",density:"Розмір",densityDefault:"За замовчуванням",densityLarger:"Великий",densityMiddle:"Середній",densitySmall:"Стислий"},stepsForm:{next:"Наступний",prev:"Попередній",submit:"Завершити"},loginForm:{submitText:"Вхіх"},editableTable:{onlyOneLineEditor:"Тільки один рядок може бути редагований одночасно",action:{save:"Зберегти",cancel:"Відмінити",delete:"Видалити",add:"додати рядок"}},switch:{open:"Відкрито",close:"Закрито"}}),"uz-UZ":o("uz_UZ",{moneySymbol:"UZS",form:{lightFilter:{more:"Yana",clear:"Tozalash",confirm:"OK",itemUnit:"Pozitsiyalar"}},tableForm:{search:"Qidirish",reset:"Qayta tiklash",submit:"Yuborish",collapsed:"Yig‘ish",expand:"Kengaytirish",inputPlaceholder:"Qiymatni kiriting",selectPlaceholder:"Qiymatni tanlang"},alert:{clear:"Tozalash",selected:"Tanlangan",item:"elementlar"},pagination:{total:{range:" ",total:"dan",item:"elementlar"}},tableToolBar:{leftPin:"Chapga mahkamlash",rightPin:"O‘ngga mahkamlash",noPin:"Mahkamlashni olib tashlash",leftFixedTitle:"Chapga mahkamlangan",rightFixedTitle:"O‘ngga mahkamlangan",noFixedTitle:"Mahkamlashsiz",reset:"Qayta tiklash",columnDisplay:"Ustunni ko‘rsatish",columnSetting:"Sozlamalar",fullScreen:"To‘liq ekran",exitFullScreen:"To‘liq ekrandan chiqish",reload:"Yangilash",density:"O‘lcham",densityDefault:"Standart",densityLarger:"Katta",densityMiddle:"O‘rtacha",densitySmall:"Kichik"},stepsForm:{next:"Keyingi",prev:"Oldingi",submit:"Tugatish"},loginForm:{submitText:"Kirish"},editableTable:{action:{save:"Saqlash",cancel:"Bekor qilish",delete:"O‘chirish",add:"maʼlumotlar qatorini qo‘shish"}},switch:{open:"Ochish",close:"Yopish"}}),"nl-NL":o("nl_NL",{moneySymbol:"€",deleteThisLine:"Verwijder deze regel",copyThisLine:"Kopieer deze regel",form:{lightFilter:{more:"Meer filters",clear:"Wissen",confirm:"Bevestigen",itemUnit:"item"}},tableForm:{search:"Zoeken",reset:"Resetten",submit:"Indienen",collapsed:"Uitvouwen",expand:"Inklappen",inputPlaceholder:"Voer in",selectPlaceholder:"Selecteer"},alert:{clear:"Selectie annuleren",selected:"Geselecteerd",item:"item"},pagination:{total:{range:"Van",total:"items/totaal",item:"items"}},tableToolBar:{leftPin:"Vastzetten aan begin",rightPin:"Vastzetten aan einde",noPin:"Niet vastzetten",leftFixedTitle:"Vastzetten aan de linkerkant",rightFixedTitle:"Vastzetten aan de rechterkant",noFixedTitle:"Niet vastzetten",reset:"Resetten",columnDisplay:"Kolomweergave",columnSetting:"Kolominstellingen",fullScreen:"Volledig scherm",exitFullScreen:"Verlaat volledig scherm",reload:"Vernieuwen",density:"Dichtheid",densityDefault:"Normaal",densityLarger:"Ruim",densityMiddle:"Gemiddeld",densitySmall:"Compact"},stepsForm:{next:"Volgende stap",prev:"Vorige stap",submit:"Indienen"},loginForm:{submitText:"Inloggen"},editableTable:{onlyOneLineEditor:"Slechts \xe9\xe9n regel tegelijk bewerken",action:{save:"Opslaan",cancel:"Annuleren",delete:"Verwijderen",add:"Een regel toevoegen"}},switch:{open:"Openen",close:"Sluiten"}}),"ro-RO":o("ro_RO",{moneySymbol:"RON",deleteThisLine:"Șterge acest r\xe2nd",copyThisLine:"Copiază acest r\xe2nd",form:{lightFilter:{more:"Mai multe filtre",clear:"Curăță",confirm:"Confirmă",itemUnit:"elemente"}},tableForm:{search:"Caută",reset:"Resetează",submit:"Trimite",collapsed:"Extinde",expand:"Restr\xe2nge",inputPlaceholder:"Introduceți",selectPlaceholder:"Selectați"},alert:{clear:"Anulează selecția",selected:"Selectat",item:"elemente"},pagination:{total:{range:"De la",total:"elemente/total",item:"elemente"}},tableToolBar:{leftPin:"Fixează la \xeenceput",rightPin:"Fixează la sf\xe2rșit",noPin:"Nu fixa",leftFixedTitle:"Fixează \xeen st\xe2nga",rightFixedTitle:"Fixează \xeen dreapta",noFixedTitle:"Nu fixa",reset:"Resetează",columnDisplay:"Afișare coloane",columnSetting:"Setări coloane",fullScreen:"Ecran complet",exitFullScreen:"Ieși din ecran complet",reload:"Re\xeencarcă",density:"Densitate",densityDefault:"Normal",densityLarger:"Larg",densityMiddle:"Mediu",densitySmall:"Compact"},stepsForm:{next:"Pasul următor",prev:"Pasul anterior",submit:"Trimite"},loginForm:{submitText:"Autentificare"},editableTable:{onlyOneLineEditor:"Se poate edita doar un r\xe2nd simultan",action:{save:"Salvează",cancel:"Anulează",delete:"Șterge",add:"Adaugă un r\xe2nd"}},switch:{open:"Deschide",close:"\xcenchide"}}),"sv-SE":o("sv_SE",{moneySymbol:"SEK",deleteThisLine:"Radera denna rad",copyThisLine:"Kopiera denna rad",form:{lightFilter:{more:"Fler filter",clear:"Rensa",confirm:"Bekr\xe4fta",itemUnit:"objekt"}},tableForm:{search:"S\xf6k",reset:"\xc5terst\xe4ll",submit:"Skicka",collapsed:"Expandera",expand:"F\xe4ll ihop",inputPlaceholder:"V\xe4nligen ange",selectPlaceholder:"V\xe4nligen v\xe4lj"},alert:{clear:"Avbryt val",selected:"Vald",item:"objekt"},pagination:{total:{range:"Fr\xe5n",total:"objekt/totalt",item:"objekt"}},tableToolBar:{leftPin:"F\xe4st till v\xe4nster",rightPin:"F\xe4st till h\xf6ger",noPin:"Inte f\xe4st",leftFixedTitle:"F\xe4st till v\xe4nster",rightFixedTitle:"F\xe4st till h\xf6ger",noFixedTitle:"Inte f\xe4st",reset:"\xc5terst\xe4ll",columnDisplay:"Kolumnvisning",columnSetting:"Kolumninst\xe4llningar",fullScreen:"Fullsk\xe4rm",exitFullScreen:"Avsluta fullsk\xe4rm",reload:"Ladda om",density:"T\xe4thet",densityDefault:"Normal",densityLarger:"L\xf6s",densityMiddle:"Medium",densitySmall:"Kompakt"},stepsForm:{next:"N\xe4sta steg",prev:"F\xf6reg\xe5ende steg",submit:"Skicka"},loginForm:{submitText:"Logga in"},editableTable:{onlyOneLineEditor:"Endast en rad kan redigeras \xe5t g\xe5ngen",action:{save:"Spara",cancel:"Avbryt",delete:"Radera",add:"L\xe4gg till en rad"}},switch:{open:"\xd6ppna",close:"St\xe4ng"}})},s=Object.keys(c),d=function(e){var t=(e||"zh-CN").toLocaleLowerCase();return s.find(function(e){return e.toLocaleLowerCase().includes(t)})}},9424(e,t,n){"use strict";n.d(t,{X9:()=>k,rd:()=>E,Y1:()=>z,JM:()=>j,dF:()=>P,X3:()=>I});var r=n(89379),o=n(48670);function a(e,t){"string"==typeof(n=e)&&-1!==n.indexOf(".")&&1===parseFloat(n)&&(e="100%");var n,r,o="string"==typeof(r=e)&&-1!==r.indexOf("%");return(e=360===t?e:Math.min(t,Math.max(0,parseFloat(e))),o&&(e=parseInt(String(e*t),10)/100),1e-6>Math.abs(e-t))?1:e=360===t?(e<0?e%t+t:e%t)/parseFloat(String(t)):e%t/parseFloat(String(t))}function i(e){return Math.min(1,Math.max(0,e))}function l(e){return(isNaN(e=parseFloat(e))||e<0||e>1)&&(e=1),e}function c(e){return e<=1?"".concat(100*Number(e),"%"):e}function s(e){return 1===e.length?"0"+e:String(e)}function d(e,t,n){e=a(e,255);var r=Math.max(e,t=a(t,255),n=a(n,255)),o=Math.min(e,t,n),i=0,l=0,c=(r+o)/2;if(r===o)l=0,i=0;else{var s=r-o;switch(l=c>.5?s/(2-r-o):s/(r+o),r){case e:i=(t-n)/s+6*(t1&&(n-=1),n<1/6)?e+6*n*(t-e):n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function p(e,t,n){e=a(e,255);var r=Math.max(e,t=a(t,255),n=a(n,255)),o=Math.min(e,t,n),i=0,l=r-o;if(r===o)i=0;else{switch(r){case e:i=(t-n)/l+6*(t>16,g:(65280&z)>>8,b:255&z}),this.originalInput=t;var r,o,i,s,d,p,f,h,b,v,$,A,w,S,C,O,k,j,E,P,z,I,M=(S={r:0,g:0,b:0},C=1,O=null,k=null,j=null,E=!1,P=!1,"string"==typeof(r=t)&&(r=function(e){if(0===(e=e.trim().toLowerCase()).length)return!1;var t=!1;if(g[e])e=g[e],t=!0;else if("transparent"===e)return{r:0,g:0,b:0,a:0,format:"name"};var n=y.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=y.rgba.exec(e))?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=y.hsl.exec(e))?{h:n[1],s:n[2],l:n[3]}:(n=y.hsla.exec(e))?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=y.hsv.exec(e))?{h:n[1],s:n[2],v:n[3]}:(n=y.hsva.exec(e))?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=y.hex8.exec(e))?{r:m(n[1]),g:m(n[2]),b:m(n[3]),a:m(n[4])/255,format:t?"name":"hex8"}:(n=y.hex6.exec(e))?{r:m(n[1]),g:m(n[2]),b:m(n[3]),format:t?"name":"hex"}:(n=y.hex4.exec(e))?{r:m(n[1]+n[1]),g:m(n[2]+n[2]),b:m(n[3]+n[3]),a:m(n[4]+n[4])/255,format:t?"name":"hex8"}:!!(n=y.hex3.exec(e))&&{r:m(n[1]+n[1]),g:m(n[2]+n[2]),b:m(n[3]+n[3]),format:t?"name":"hex"}}(r)),"object"==typeof r&&(x(r.r)&&x(r.g)&&x(r.b)?(o=r.r,i=r.g,s=r.b,S={r:255*a(o,255),g:255*a(i,255),b:255*a(s,255)},E=!0,P="%"===String(r.r).substr(-1)?"prgb":"rgb"):x(r.h)&&x(r.s)&&x(r.v)?(O=c(r.s),k=c(r.v),d=r.h,p=O,f=k,d=6*a(d,360),p=a(p,100),f=a(f,100),h=Math.floor(d),b=d-h,v=f*(1-p),$=f*(1-b*p),A=f*(1-(1-b)*p),S={r:255*[f,$,v,v,A,f][w=h%6],g:255*[A,f,f,$,v,v][w],b:255*[v,v,A,f,f,$][w]},E=!0,P="hsv"):x(r.h)&&x(r.s)&&x(r.l)&&(O=c(r.s),j=c(r.l),S=function(e,t,n){if(e=a(e,360),t=a(t,100),n=a(n,100),0===t)o=n,i=n,r=n;else{var r,o,i,l=n<.5?n*(1+t):n+t-n*t,c=2*n-l;r=u(c,l,e+1/3),o=u(c,l,e),i=u(c,l,e-1/3)}return{r:255*r,g:255*o,b:255*i}}(r.h,O,j),E=!0,P="hsl"),Object.prototype.hasOwnProperty.call(r,"a")&&(C=r.a)),C=l(C),{ok:E,format:r.format||P,r:Math.min(255,Math.max(S.r,0)),g:Math.min(255,Math.max(S.g,0)),b:Math.min(255,Math.max(S.b,0)),a:C});this.originalInput=t,this.r=M.r,this.g=M.g,this.b=M.b,this.a=M.a,this.roundA=Math.round(100*this.a)/100,this.format=null!=(I=n.format)?I:M.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=M.ok}return e.prototype.isDark=function(){return 128>this.getBrightness()},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},e.prototype.getLuminance=function(){var e=this.toRgb(),t=e.r/255,n=e.g/255,r=e.b/255;return .2126*(t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4))+.7152*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))+.0722*(r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(e){return this.a=l(e),this.roundA=Math.round(100*this.a)/100,this},e.prototype.isMonochrome=function(){return 0===this.toHsl().s},e.prototype.toHsv=function(){var e=p(this.r,this.g,this.b);return{h:360*e.h,s:e.s,v:e.v,a:this.a}},e.prototype.toHsvString=function(){var e=p(this.r,this.g,this.b),t=Math.round(360*e.h),n=Math.round(100*e.s),r=Math.round(100*e.v);return 1===this.a?"hsv(".concat(t,", ").concat(n,"%, ").concat(r,"%)"):"hsva(".concat(t,", ").concat(n,"%, ").concat(r,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var e=d(this.r,this.g,this.b);return{h:360*e.h,s:e.s,l:e.l,a:this.a}},e.prototype.toHslString=function(){var e=d(this.r,this.g,this.b),t=Math.round(360*e.h),n=Math.round(100*e.s),r=Math.round(100*e.l);return 1===this.a?"hsl(".concat(t,", ").concat(n,"%, ").concat(r,"%)"):"hsla(".concat(t,", ").concat(n,"%, ").concat(r,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(e){return void 0===e&&(e=!1),f(this.r,this.g,this.b,e)},e.prototype.toHexString=function(e){return void 0===e&&(e=!1),"#"+this.toHex(e)},e.prototype.toHex8=function(e){var t,n,r,o,a,i;return void 0===e&&(e=!1),t=this.r,n=this.g,r=this.b,o=this.a,a=e,i=[s(Math.round(t).toString(16)),s(Math.round(n).toString(16)),s(Math.round(r).toString(16)),s(Math.round(255*parseFloat(o)).toString(16))],a&&i[0].startsWith(i[0].charAt(1))&&i[1].startsWith(i[1].charAt(1))&&i[2].startsWith(i[2].charAt(1))&&i[3].startsWith(i[3].charAt(1))?i[0].charAt(0)+i[1].charAt(0)+i[2].charAt(0)+i[3].charAt(0):i.join("")},e.prototype.toHex8String=function(e){return void 0===e&&(e=!1),"#"+this.toHex8(e)},e.prototype.toHexShortString=function(e){return void 0===e&&(e=!1),1===this.a?this.toHexString(e):this.toHex8String(e)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var e=Math.round(this.r),t=Math.round(this.g),n=Math.round(this.b);return 1===this.a?"rgb(".concat(e,", ").concat(t,", ").concat(n,")"):"rgba(".concat(e,", ").concat(t,", ").concat(n,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var e=function(e){return"".concat(Math.round(100*a(e,255)),"%")};return{r:e(this.r),g:e(this.g),b:e(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var e=function(e){return Math.round(100*a(e,255))};return 1===this.a?"rgb(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%)"):"rgba(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(0===this.a)return"transparent";if(this.a<1)return!1;for(var e="#"+f(this.r,this.g,this.b,!1),t=0,n=Object.entries(g);t=0;return!t&&r&&(e.startsWith("hex")||"name"===e)?"name"===e&&0===this.a?this.toName():this.toRgbString():("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),("hex"===e||"hex6"===e)&&(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=i(n.l),new e(n)},e.prototype.brighten=function(t){void 0===t&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(-(t/100*255)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(-(t/100*255)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(-(t/100*255)))),new e(n)},e.prototype.darken=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=i(n.l),new e(n)},e.prototype.tint=function(e){return void 0===e&&(e=10),this.mix("white",e)},e.prototype.shade=function(e){return void 0===e&&(e=10),this.mix("black",e)},e.prototype.desaturate=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=i(n.s),new e(n)},e.prototype.saturate=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=i(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){void 0===n&&(n=50);var r=this.toRgb(),o=new e(t).toRgb(),a=n/100;return new e({r:(o.r-r.r)*a+r.r,g:(o.g-r.g)*a+r.g,b:(o.b-r.b)*a+r.b,a:(o.a-r.a)*a+r.a})},e.prototype.analogous=function(t,n){void 0===t&&(t=6),void 0===n&&(n=30);var r=this.toHsl(),o=360/n,a=[this];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,a.push(new e(r));return a},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){void 0===t&&(t=6);for(var n=this.toHsv(),r=n.h,o=n.s,a=n.v,i=[],l=1/t;t--;)i.push(new e({h:r,s:o,v:a})),a=(a+l)%1;return i},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb(),o=n.a+r.a*(1-n.a);return new e({r:(n.r*n.a+r.r*r.a*(1-n.a))/o,g:(n.g*n.a+r.g*r.a*(1-n.a))/o,b:(n.b*n.a+r.b*r.a*(1-n.a))/o,a:o})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,o=[this],a=360/t,i=1;il,emptyTheme:()=>s,hashCode:()=>c,token:()=>d,useToken:()=>u});var r,o=n(89379),a=n(48670),i=n(35710),l={blue:"#1677ff",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#eb2f96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911",colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff7875",colorInfo:"#1677ff",colorTextBase:"#000",colorBgBase:"#fff",fontFamily:"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInQuint:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:4,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:!1,"blue-1":"#e6f4ff","blue-2":"#bae0ff","blue-3":"#91caff","blue-4":"#69b1ff","blue-5":"#4096ff","blue-6":"#1677ff","blue-7":"#0958d9","blue-8":"#003eb3","blue-9":"#002c8c","blue-10":"#001d66","purple-1":"#f9f0ff","purple-2":"#efdbff","purple-3":"#d3adf7","purple-4":"#b37feb","purple-5":"#9254de","purple-6":"#722ed1","purple-7":"#531dab","purple-8":"#391085","purple-9":"#22075e","purple-10":"#120338","cyan-1":"#e6fffb","cyan-2":"#b5f5ec","cyan-3":"#87e8de","cyan-4":"#5cdbd3","cyan-5":"#36cfc9","cyan-6":"#13c2c2","cyan-7":"#08979c","cyan-8":"#006d75","cyan-9":"#00474f","cyan-10":"#002329","green-1":"#f6ffed","green-2":"#d9f7be","green-3":"#b7eb8f","green-4":"#95de64","green-5":"#73d13d","green-6":"#52c41a","green-7":"#389e0d","green-8":"#237804","green-9":"#135200","green-10":"#092b00","magenta-1":"#fff0f6","magenta-2":"#ffd6e7","magenta-3":"#ffadd2","magenta-4":"#ff85c0","magenta-5":"#f759ab","magenta-6":"#eb2f96","magenta-7":"#c41d7f","magenta-8":"#9e1068","magenta-9":"#780650","magenta-10":"#520339","pink-1":"#fff0f6","pink-2":"#ffd6e7","pink-3":"#ffadd2","pink-4":"#ff85c0","pink-5":"#f759ab","pink-6":"#eb2f96","pink-7":"#c41d7f","pink-8":"#9e1068","pink-9":"#780650","pink-10":"#520339","red-1":"#fff1f0","red-2":"#ffccc7","red-3":"#ffa39e","red-4":"#ff7875","red-5":"#ff4d4f","red-6":"#f5222d","red-7":"#cf1322","red-8":"#a8071a","red-9":"#820014","red-10":"#5c0011","orange-1":"#fff7e6","orange-2":"#ffe7ba","orange-3":"#ffd591","orange-4":"#ffc069","orange-5":"#ffa940","orange-6":"#fa8c16","orange-7":"#d46b08","orange-8":"#ad4e00","orange-9":"#873800","orange-10":"#612500","yellow-1":"#feffe6","yellow-2":"#ffffb8","yellow-3":"#fffb8f","yellow-4":"#fff566","yellow-5":"#ffec3d","yellow-6":"#fadb14","yellow-7":"#d4b106","yellow-8":"#ad8b00","yellow-9":"#876800","yellow-10":"#614700","volcano-1":"#fff2e8","volcano-2":"#ffd8bf","volcano-3":"#ffbb96","volcano-4":"#ff9c6e","volcano-5":"#ff7a45","volcano-6":"#fa541c","volcano-7":"#d4380d","volcano-8":"#ad2102","volcano-9":"#871400","volcano-10":"#610b00","geekblue-1":"#f0f5ff","geekblue-2":"#d6e4ff","geekblue-3":"#adc6ff","geekblue-4":"#85a5ff","geekblue-5":"#597ef7","geekblue-6":"#2f54eb","geekblue-7":"#1d39c4","geekblue-8":"#10239e","geekblue-9":"#061178","geekblue-10":"#030852","gold-1":"#fffbe6","gold-2":"#fff1b8","gold-3":"#ffe58f","gold-4":"#ffd666","gold-5":"#ffc53d","gold-6":"#faad14","gold-7":"#d48806","gold-8":"#ad6800","gold-9":"#874d00","gold-10":"#613400","lime-1":"#fcffe6","lime-2":"#f4ffb8","lime-3":"#eaff8f","lime-4":"#d3f261","lime-5":"#bae637","lime-6":"#a0d911","lime-7":"#7cb305","lime-8":"#5b8c00","lime-9":"#3f6600","lime-10":"#254000",colorText:"rgba(0, 0, 0, 0.88)",colorTextSecondary:"rgba(0, 0, 0, 0.65)",colorTextTertiary:"rgba(0, 0, 0, 0.45)",colorTextQuaternary:"rgba(0, 0, 0, 0.25)",colorFill:"rgba(0, 0, 0, 0.15)",colorFillSecondary:"rgba(0, 0, 0, 0.06)",colorFillTertiary:"rgba(0, 0, 0, 0.04)",colorFillQuaternary:"rgba(0, 0, 0, 0.02)",colorBgLayout:"hsl(220,23%,97%)",colorBgContainer:"#ffffff",colorBgElevated:"#ffffff",colorBgSpotlight:"rgba(0, 0, 0, 0.85)",colorBorder:"#d9d9d9",colorBorderSecondary:"#f0f0f0",colorPrimaryBg:"#e6f4ff",colorPrimaryBgHover:"#bae0ff",colorPrimaryBorder:"#91caff",colorPrimaryBorderHover:"#69b1ff",colorPrimaryHover:"#4096ff",colorPrimaryActive:"#0958d9",colorPrimaryTextHover:"#4096ff",colorPrimaryText:"#1677ff",colorPrimaryTextActive:"#0958d9",colorSuccessBg:"#f6ffed",colorSuccessBgHover:"#d9f7be",colorSuccessBorder:"#b7eb8f",colorSuccessBorderHover:"#95de64",colorSuccessHover:"#95de64",colorSuccessActive:"#389e0d",colorSuccessTextHover:"#73d13d",colorSuccessText:"#52c41a",colorSuccessTextActive:"#389e0d",colorErrorBg:"#fff2f0",colorErrorBgHover:"#fff1f0",colorErrorBorder:"#ffccc7",colorErrorBorderHover:"#ffa39e",colorErrorHover:"#ffa39e",colorErrorActive:"#d9363e",colorErrorTextHover:"#ff7875",colorErrorText:"#ff4d4f",colorErrorTextActive:"#d9363e",colorWarningBg:"#fffbe6",colorWarningBgHover:"#fff1b8",colorWarningBorder:"#ffe58f",colorWarningBorderHover:"#ffd666",colorWarningHover:"#ffd666",colorWarningActive:"#d48806",colorWarningTextHover:"#ffc53d",colorWarningText:"#faad14",colorWarningTextActive:"#d48806",colorInfoBg:"#e6f4ff",colorInfoBgHover:"#bae0ff",colorInfoBorder:"#91caff",colorInfoBorderHover:"#69b1ff",colorInfoHover:"#69b1ff",colorInfoActive:"#0958d9",colorInfoTextHover:"#4096ff",colorInfoText:"#1677ff",colorInfoTextActive:"#0958d9",colorBgMask:"rgba(0, 0, 0, 0.45)",colorWhite:"#fff",sizeXXL:48,sizeXL:32,sizeLG:24,sizeMD:20,sizeMS:16,size:16,sizeSM:12,sizeXS:8,sizeXXS:4,controlHeightSM:24,controlHeightXS:16,controlHeightLG:40,motionDurationFast:"0.1s",motionDurationMid:"0.2s",motionDurationSlow:"0.3s",fontSizes:[12,14,16,20,24,30,38,46,56,68],lineHeights:[1.6666666666666667,1.5714285714285714,1.5,1.4,1.3333333333333333,1.2666666666666666,1.2105263157894737,1.173913043478261,1.1428571428571428,1.1176470588235294],lineWidthBold:2,borderRadiusXS:1,borderRadiusSM:4,borderRadiusLG:8,borderRadiusOuter:4,colorLink:"#1677ff",colorLinkHover:"#69b1ff",colorLinkActive:"#0958d9",colorFillContent:"rgba(0, 0, 0, 0.06)",colorFillContentHover:"rgba(0, 0, 0, 0.15)",colorFillAlter:"rgba(0, 0, 0, 0.02)",colorBgContainerDisabled:"rgba(0, 0, 0, 0.04)",colorBorderBg:"#ffffff",colorSplit:"rgba(5, 5, 5, 0.06)",colorTextPlaceholder:"rgba(0, 0, 0, 0.25)",colorTextDisabled:"rgba(0, 0, 0, 0.25)",colorTextHeading:"rgba(0, 0, 0, 0.88)",colorTextLabel:"rgba(0, 0, 0, 0.65)",colorTextDescription:"rgba(0, 0, 0, 0.45)",colorTextLightSolid:"#fff",colorHighlight:"#ff7875",colorBgTextHover:"rgba(0, 0, 0, 0.06)",colorBgTextActive:"rgba(0, 0, 0, 0.15)",colorIcon:"rgba(0, 0, 0, 0.45)",colorIconHover:"rgba(0, 0, 0, 0.88)",colorErrorOutline:"rgba(255, 38, 5, 0.06)",colorWarningOutline:"rgba(255, 215, 5, 0.1)",fontSizeSM:12,fontSizeLG:16,fontSizeXL:20,fontSizeHeading1:38,fontSizeHeading2:30,fontSizeHeading3:24,fontSizeHeading4:20,fontSizeHeading5:16,fontSizeIcon:12,lineHeight:1.5714285714285714,lineHeightLG:1.5,lineHeightSM:1.6666666666666667,lineHeightHeading1:1.2105263157894737,lineHeightHeading2:1.2666666666666666,lineHeightHeading3:1.3333333333333333,lineHeightHeading4:1.4,lineHeightHeading5:1.5,controlOutlineWidth:2,controlInteractiveSize:16,controlItemBgHover:"rgba(0, 0, 0, 0.04)",controlItemBgActive:"#e6f4ff",controlItemBgActiveHover:"#bae0ff",controlItemBgActiveDisabled:"rgba(0, 0, 0, 0.15)",controlTmpOutline:"rgba(0, 0, 0, 0.02)",controlOutline:"rgba(5, 145, 255, 0.1)",fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:4,paddingXS:8,paddingSM:12,padding:16,paddingMD:20,paddingLG:24,paddingXL:32,paddingContentHorizontalLG:24,paddingContentVerticalLG:16,paddingContentHorizontal:16,paddingContentVertical:12,paddingContentHorizontalSM:16,paddingContentVerticalSM:8,marginXXS:4,marginXS:8,marginSM:12,margin:16,marginMD:20,marginLG:24,marginXL:32,marginXXL:48,boxShadow:"0 1px 2px 0 rgba(0, 0, 0, 0.03),0 1px 6px -1px rgba(0, 0, 0, 0.02),0 2px 4px 0 rgba(0, 0, 0, 0.02)",boxShadowSecondary:"0 6px 16px 0 rgba(0, 0, 0, 0.08),0 3px 6px -4px rgba(0, 0, 0, 0.12),0 9px 28px 8px rgba(0, 0, 0, 0.05)",screenXS:480,screenXSMin:480,screenXSMax:479,screenSM:576,screenSMMin:576,screenSMMax:575,screenMD:768,screenMDMin:768,screenMDMax:767,screenLG:992,screenLGMin:992,screenLGMax:991,screenXL:1200,screenXLMin:1200,screenXLMax:1199,screenXXL:1600,screenXXLMin:1600,screenXXLMax:1599,boxShadowPopoverArrow:"3px 3px 7px rgba(0, 0, 0, 0.1)",boxShadowCard:"0 1px 2px -2px rgba(0, 0, 0, 0.16),0 3px 6px 0 rgba(0, 0, 0, 0.12),0 5px 12px 4px rgba(0, 0, 0, 0.09)",boxShadowDrawerRight:"-6px 0 16px 0 rgba(0, 0, 0, 0.08),-3px 0 6px -4px rgba(0, 0, 0, 0.12),-9px 0 28px 8px rgba(0, 0, 0, 0.05)",boxShadowDrawerLeft:"6px 0 16px 0 rgba(0, 0, 0, 0.08),3px 0 6px -4px rgba(0, 0, 0, 0.12),9px 0 28px 8px rgba(0, 0, 0, 0.05)",boxShadowDrawerUp:"0 6px 16px 0 rgba(0, 0, 0, 0.08),0 3px 6px -4px rgba(0, 0, 0, 0.12),0 9px 28px 8px rgba(0, 0, 0, 0.05)",boxShadowDrawerDown:"0 -6px 16px 0 rgba(0, 0, 0, 0.08),0 -3px 6px -4px rgba(0, 0, 0, 0.12),0 -9px 28px 8px rgba(0, 0, 0, 0.05)",boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)",_tokenKey:"19w80ff",_hashId:"css-dev-only-do-not-override-i2zu9q"},c=function(e){for(var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,r=0xdeadbeef^n,o=0x41c6ce57^n,a=0;a>>16,0x85ebca6b)^Math.imul(o^o>>>13,0xc2b2ae35),0x100000000*(2097151&(o=Math.imul(o^o>>>16,0x85ebca6b)^Math.imul(r^r>>>13,0xc2b2ae35)))+(r>>>0)},s=(0,a.an)(function(e){return e}),d={theme:s,token:(0,o.A)((0,o.A)({},l),null===i.A||void 0===i.A||null==(r=i.A.defaultAlgorithm)?void 0:r.call(i.A,null===i.A||void 0===i.A?void 0:i.A.defaultSeed)),hashId:"pro-".concat(c(JSON.stringify(l)))},u=function(){return d}},22393(e,t,n){"use strict";n.d(t,{A:()=>cJ});var r,o,a=n(1079),i=n(10467),l=n(82284),c=n(57046),s=n(64467),d=n(83098),u=n(89379),p=n(80045),f=n(88996),m=n(68866),g=n(4888),h=n(42443),b=n(46942),v=n.n(b),y=n(96540),x=n(9424),$=n(74848),A=y.memo(function(e){var t=e.label,n=e.tooltip,r=e.ellipsis,o=e.subTitle,a=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-core-label-tip"),i=(0,x.X3)("LabelIconTip",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(a)}),(0,s.A)({},t.componentCls,{display:"inline-flex",alignItems:"center",maxWidth:"100%","&-icon":{display:"block",marginInlineStart:"4px",cursor:"pointer","&:hover":{color:t.colorPrimary}},"&-title":{display:"inline-flex",flex:"1"},"&-subtitle ":{marginInlineStart:8,color:t.colorTextSecondary,fontWeight:"normal",fontSize:t.fontSize,whiteSpace:"nowrap"},"&-title-ellipsis":{overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis",wordBreak:"keep-all"}}))]}),l=i.wrapSSR,c=i.hashId;if(!n&&!o)return(0,$.jsx)($.Fragment,{children:t});var d="string"==typeof n||y.isValidElement(n)?{title:n}:n,p=(null==d?void 0:d.icon)||(0,$.jsx)(m.A,{});return l((0,$.jsxs)("div",{className:v()(a,c),onMouseDown:function(e){return e.stopPropagation()},onMouseLeave:function(e){return e.stopPropagation()},onMouseMove:function(e){return e.stopPropagation()},children:[(0,$.jsx)("div",{className:v()("".concat(a,"-title"),c,(0,s.A)({},"".concat(a,"-title-ellipsis"),r)),children:t}),o&&(0,$.jsx)("div",{className:"".concat(a,"-subtitle ").concat(c).trim(),children:o}),n&&(0,$.jsx)(h.A,(0,u.A)((0,u.A)({},d),{},{children:(0,$.jsx)("span",{className:"".concat(a,"-icon ").concat(c).trim(),children:p})}))]}))}),w=n(21637),S=n(78551),C=n(12533),O=n(19853),k=function(e){var t=e.componentCls,n=e.antCls;return(0,s.A)({},"".concat(t,"-actions"),(0,s.A)((0,s.A)({marginBlock:0,marginInline:0,paddingBlock:0,paddingInline:0,listStyle:"none",display:"flex",gap:e.marginXS,background:e.colorBgContainer,borderBlockStart:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit),minHeight:42},"& > *",{alignItems:"center",justifyContent:"center",flex:1,display:"flex",cursor:"pointer",color:e.colorTextSecondary,transition:"color 0.3s","&:hover":{color:e.colorPrimaryHover}}),"& > li > div",{flex:1,width:"100%",marginBlock:e.marginSM,marginInline:0,color:e.colorTextSecondary,textAlign:"center",a:{color:e.colorTextSecondary,transition:"color 0.3s","&:hover":{color:e.colorPrimaryHover}},div:(0,s.A)((0,s.A)({position:"relative",display:"block",minWidth:32,fontSize:e.fontSize,lineHeight:e.lineHeight,cursor:"pointer","&:hover":{color:e.colorPrimaryHover,transition:"color 0.3s"}},"a:not(".concat(n,"-btn),\n > .anticon"),{display:"inline-block",width:"100%",color:e.colorTextSecondary,lineHeight:"22px",transition:"color 0.3s","&:hover":{color:e.colorPrimaryHover}}),".anticon",{fontSize:e.cardActionIconSize,lineHeight:"22px"}),"&:not(:last-child)":{borderInlineEnd:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit)}}))};let j=function(e){var t=e.actions,n=e.prefixCls,r=(0,x.X3)("ProCardActions",function(e){return[k((0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(n),cardActionIconSize:16}))]}),o=r.wrapSSR,a=r.hashId;return o(Array.isArray(t)&&null!=t&&t.length?(0,$.jsx)("ul",{className:v()("".concat(n,"-actions"),a),children:t.map(function(e,r){return(0,$.jsx)("li",{style:{width:"".concat(100/t.length,"%"),padding:0,margin:0},className:v()("".concat(n,"-actions-item"),a),children:e},"action-".concat(r))})}):(0,$.jsx)("ul",{className:v()("".concat(n,"-actions"),a),children:t}))};var E=n(47152),P=n(16370),z=n(48670),I=new z.Mo("card-loading",{"0%":{backgroundPosition:"0 50%"},"50%":{backgroundPosition:"100% 50%"},"100%":{backgroundPosition:"0 50%"}});let M=function(e){var t,n=e.style,r=e.prefix;return(0,(t=r||"ant-pro-card",(0,x.X3)("ProCardLoading",function(e){var n;return[(n=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(t)}),(0,s.A)({},n.componentCls,(0,s.A)((0,s.A)({"&-loading":{overflow:"hidden"},"&-loading &-body":{userSelect:"none"}},"".concat(n.componentCls,"-loading-content"),{width:"100%",p:{marginBlock:0,marginInline:0}}),"".concat(n.componentCls,"-loading-block"),{height:"14px",marginBlock:"4px",background:"linear-gradient(90deg, rgba(54, 61, 64, 0.2), rgba(54, 61, 64, 0.4), rgba(54, 61, 64, 0.2))",backgroundSize:"600% 600%",borderRadius:n.borderRadius,animationName:I,animationDuration:"1.4s",animationTimingFunction:"ease",animationIterationCount:"infinite"})))]})).wrapSSR)((0,$.jsxs)("div",{className:"".concat(r,"-loading-content"),style:n,children:[(0,$.jsx)(E.A,{gutter:8,children:(0,$.jsx)(P.A,{span:22,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})})}),(0,$.jsxs)(E.A,{gutter:8,children:[(0,$.jsx)(P.A,{span:8,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})}),(0,$.jsx)(P.A,{span:15,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})})]}),(0,$.jsxs)(E.A,{gutter:8,children:[(0,$.jsx)(P.A,{span:6,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})}),(0,$.jsx)(P.A,{span:18,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})})]}),(0,$.jsxs)(E.A,{gutter:8,children:[(0,$.jsx)(P.A,{span:13,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})}),(0,$.jsx)(P.A,{span:9,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})})]}),(0,$.jsxs)(E.A,{gutter:8,children:[(0,$.jsx)(P.A,{span:4,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})}),(0,$.jsx)(P.A,{span:3,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})}),(0,$.jsx)(P.A,{span:16,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})})]})]}))};var R=n(11031),B=n(82546),T=n(68210),F=["tab","children"],N=["key","tab","tabKey","disabled","destroyInactiveTabPane","children","className","style","cardProps"],H=function(e){return{backgroundColor:e.controlItemBgActive,borderColor:e.controlOutline}},L=function(e){var t=e.componentCls;return(0,s.A)((0,s.A)((0,s.A)({},t,(0,u.A)((0,u.A)({position:"relative",display:"flex",flexDirection:"column",boxSizing:"border-box",width:"100%",marginBlock:0,marginInline:0,paddingBlock:0,paddingInline:0,backgroundColor:e.colorBgContainer,borderRadius:e.borderRadius,transition:"all 0.3s"},null===x.dF||void 0===x.dF?void 0:(0,x.dF)(e)),{},(0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)({"&-box-shadow":{boxShadow:"0 1px 2px -2px #00000029, 0 3px 6px #0000001f, 0 5px 12px 4px #00000017",borderColor:"transparent"},"&-col":{width:"100%"},"&-border":{border:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit)},"&-hoverable":(0,s.A)({cursor:"pointer",transition:"box-shadow 0.3s, border-color 0.3s","&:hover":{borderColor:"transparent",boxShadow:"0 1px 2px -2px #00000029, 0 3px 6px #0000001f, 0 5px 12px 4px #00000017"}},"&".concat(t,"-checked:hover"),{borderColor:e.controlOutline}),"&-checked":(0,u.A)((0,u.A)({},H(e)),{},{"&::after":{visibility:"visible",position:"absolute",insetBlockStart:2,insetInlineEnd:2,opacity:1,width:0,height:0,border:"6px solid ".concat(e.colorPrimary),borderBlockEnd:"6px solid transparent",borderInlineStart:"6px solid transparent",borderStartEndRadius:2,content:'""'}}),"&:focus":(0,u.A)({},H(e)),"&&-ghost":(0,s.A)({backgroundColor:"transparent"},"> ".concat(t),{"&-header":{paddingInlineEnd:0,paddingBlockEnd:e.padding,paddingInlineStart:0},"&-body":{paddingBlock:0,paddingInline:0,backgroundColor:"transparent"}}),"&&-split > &-body":{paddingBlock:0,paddingInline:0},"&&-contain-card > &-body":{display:"flex"}},"".concat(t,"-body-direction-column"),{flexDirection:"column"}),"".concat(t,"-body-wrap"),{flexWrap:"wrap"}),"&&-collapse",(0,s.A)({},"> ".concat(t),{"&-header":{paddingBlockEnd:e.padding,borderBlockEnd:0},"&-body":{display:"none"}})),"".concat(t,"-header"),{display:"flex",alignItems:"center",justifyContent:"space-between",paddingInline:e.paddingLG,paddingBlock:e.padding,paddingBlockEnd:0,"&-border":{"&":{paddingBlockEnd:e.padding},borderBlockEnd:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit)},"&-collapsible":{cursor:"pointer"}}),"".concat(t,"-title"),{color:e.colorText,fontWeight:500,fontSize:e.fontSizeLG,lineHeight:e.lineHeight}),"".concat(t,"-extra"),{color:e.colorText}),"".concat(t,"-type-inner"),(0,s.A)({},"".concat(t,"-header"),{backgroundColor:e.colorFillAlter})),"".concat(t,"-collapsible-icon"),{marginInlineEnd:e.marginXS,color:e.colorIconHover,":hover":{color:e.colorPrimaryHover},"& svg":{transition:"transform ".concat(e.motionDurationMid)}}),"".concat(t,"-body"),{display:"block",boxSizing:"border-box",height:"100%",paddingInline:e.paddingLG,paddingBlock:e.padding,"&-center":{display:"flex",alignItems:"center",justifyContent:"center"}}),"&&-size-small",(0,s.A)((0,s.A)({},t,{"&-header":{paddingInline:e.paddingSM,paddingBlock:e.paddingXS,paddingBlockEnd:0,"&-border":{paddingBlockEnd:e.paddingXS}},"&-title":{fontSize:e.fontSize},"&-body":{paddingInline:e.paddingSM,paddingBlock:e.paddingSM}}),"".concat(t,"-header").concat(t,"-header-collapsible"),{paddingBlock:e.paddingXS})))),"".concat(t,"-col"),(0,s.A)((0,s.A)({},"&".concat(t,"-split-vertical"),{borderInlineEnd:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit)}),"&".concat(t,"-split-horizontal"),{borderBlockEnd:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit)})),"".concat(t,"-tabs"),(0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)({},"".concat(e.antCls,"-tabs-top > ").concat(e.antCls,"-tabs-nav"),(0,s.A)({marginBlockEnd:0},"".concat(e.antCls,"-tabs-nav-list"),{marginBlockStart:e.marginXS,paddingInlineStart:e.padding})),"".concat(e.antCls,"-tabs-bottom > ").concat(e.antCls,"-tabs-nav"),(0,s.A)({marginBlockEnd:0},"".concat(e.antCls,"-tabs-nav-list"),{paddingInlineStart:e.padding})),"".concat(e.antCls,"-tabs-left"),(0,s.A)({},"".concat(e.antCls,"-tabs-content-holder"),(0,s.A)({},"".concat(e.antCls,"-tabs-content"),(0,s.A)({},"".concat(e.antCls,"-tabs-tabpane"),{paddingInlineStart:0})))),"".concat(e.antCls,"-tabs-left > ").concat(e.antCls,"-tabs-nav"),(0,s.A)({marginInlineEnd:0},"".concat(e.antCls,"-tabs-nav-list"),{paddingBlockStart:e.padding})),"".concat(e.antCls,"-tabs-right"),(0,s.A)({},"".concat(e.antCls,"-tabs-content-holder"),(0,s.A)({},"".concat(e.antCls,"-tabs-content"),(0,s.A)({},"".concat(e.antCls,"-tabs-tabpane"),{paddingInlineStart:0})))),"".concat(e.antCls,"-tabs-right > ").concat(e.antCls,"-tabs-nav"),(0,s.A)({},"".concat(e.antCls,"-tabs-nav-list"),{paddingBlockStart:e.padding})))},D=function(e,t){var n=t.componentCls;return 0===e?(0,s.A)({},"".concat(n,"-col-0"),{display:"none"}):(0,s.A)({},"".concat(n,"-col-").concat(e),{flexShrink:0,width:"".concat(e/24*100,"%")})},_=["className","style","bodyStyle","headStyle","title","subTitle","extra","wrap","layout","loading","gutter","tooltip","split","headerBordered","bordered","boxShadow","children","size","actions","ghost","hoverable","direction","collapsed","collapsible","collapsibleIconRender","colStyle","defaultCollapsed","onCollapse","checked","onChecked","tabs","type"];let W=y.forwardRef(function(e,t){var n,r,o,a,i,d,m=e.className,h=e.style,b=e.bodyStyle,k=e.headStyle,E=e.title,P=e.subTitle,z=e.extra,I=e.wrap,R=e.layout,N=e.loading,H=e.gutter,q=e.tooltip,V=e.split,X=e.headerBordered,U=e.bordered,Y=e.boxShadow,G=e.children,K=e.size,Q=e.actions,J=e.ghost,Z=e.hoverable,ee=e.direction,et=e.collapsed,en=e.collapsible,er=void 0!==en&&en,eo=e.collapsibleIconRender,ea=e.colStyle,ei=e.defaultCollapsed,el=e.onCollapse,ec=e.checked,es=e.onChecked,ed=e.tabs,eu=e.type,ep=(0,p.A)(e,_),ef=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls,em=(0,S.A)()||{lg:!0,md:!0,sm:!0,xl:!1,xs:!1,xxl:!1},eg=(0,C.A)(void 0!==ei&&ei,{value:et,onChange:el}),eh=(0,c.A)(eg,2),eb=eh[0],ev=eh[1],ey=["xxl","xl","lg","md","sm","xs"],ex=(n=null==ed?void 0:ed.items,r=G,o=ed,n?n.map(function(e){return(0,u.A)((0,u.A)({},e),{},{children:(0,$.jsx)(W,(0,u.A)((0,u.A)({},null==o?void 0:o.cardProps),{},{children:e.children}))})}):((0,T.g9)(!o,"Tabs.TabPane is deprecated. Please use `items` directly."),(0,B.A)(r).map(function(e){if(y.isValidElement(e)){var t=e.key,n=e.props||{},r=n.tab,a=n.children,i=(0,p.A)(n,F);return(0,u.A)((0,u.A)({key:String(t)},i),{},{children:(0,$.jsx)(W,(0,u.A)((0,u.A)({},null==o?void 0:o.cardProps),{},{children:a})),label:r})}return null}).filter(function(e){return e}))),e$=function(e,t){return e?t:{}},eA=function(e){var t=e;if("object"===(0,l.A)(e))for(var n=0;n=0&&o<=24)),l=eC((0,$.jsx)("div",{style:(0,u.A)((0,u.A)((0,u.A)((0,u.A)({},a),e$(eE>0,{paddingInlineEnd:eE/2,paddingInlineStart:eE/2})),e$(eP>0,{paddingBlockStart:eP/2,paddingBlockEnd:eP/2})),ea),className:i,children:y.cloneElement(e)}));return y.cloneElement(l,{key:"pro-card-col-".concat((null==e?void 0:e.key)||t)})}return e}),eR=v()("".concat(ew),m,eO,(d={},(0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)(d,"".concat(ew,"-border"),void 0!==U&&U),"".concat(ew,"-box-shadow"),void 0!==Y&&Y),"".concat(ew,"-contain-card"),ez),"".concat(ew,"-loading"),N),"".concat(ew,"-split"),"vertical"===V||"horizontal"===V),"".concat(ew,"-ghost"),void 0!==J&&J),"".concat(ew,"-hoverable"),void 0!==Z&&Z),"".concat(ew,"-size-").concat(K),K),"".concat(ew,"-type-").concat(eu),eu),"".concat(ew,"-collapse"),eb),(0,s.A)(d,"".concat(ew,"-checked"),ec))),eB=v()("".concat(ew,"-body"),eO,(0,s.A)((0,s.A)((0,s.A)({},"".concat(ew,"-body-center"),"center"===R),"".concat(ew,"-body-direction-column"),"horizontal"===V||"column"===ee),"".concat(ew,"-body-wrap"),void 0!==I&&I&&ez)),eT=y.isValidElement(N)?N:(0,$.jsx)(M,{prefix:ew,style:(null==b?void 0:b.padding)===0||(null==b?void 0:b.padding)==="0px"?{padding:24}:void 0}),eF=er&&void 0===et&&(eo?eo({collapsed:eb}):(0,$.jsx)(f.A,{onClick:function(){"icon"===er&&ev(!eb)},rotate:eb?void 0:90,className:"".concat(ew,"-collapsible-icon ").concat(eO).trim()}));return eC((0,$.jsxs)("div",(0,u.A)((0,u.A)({className:eR,style:h,ref:t,onClick:function(e){var t;null==es||es(e),null==ep||null==(t=ep.onClick)||t.call(ep,e)}},(0,O.A)(ep,["prefixCls","colSpan"])),{},{children:[(E||z||eF)&&(0,$.jsxs)("div",{className:v()("".concat(ew,"-header"),eO,(0,s.A)((0,s.A)({},"".concat(ew,"-header-border"),void 0!==X&&X||"inner"===eu),"".concat(ew,"-header-collapsible"),eF)),style:k,onClick:function(){("header"===er||!0===er)&&ev(!eb)},children:[(0,$.jsxs)("div",{className:"".concat(ew,"-title ").concat(eO).trim(),children:[eF,(0,$.jsx)(A,{label:E,tooltip:q,subTitle:P})]}),z&&(0,$.jsx)("div",{className:"".concat(ew,"-extra ").concat(eO).trim(),onClick:function(e){return e.stopPropagation()},children:z})]}),ed?(0,$.jsx)("div",{className:"".concat(ew,"-tabs ").concat(eO).trim(),children:(0,$.jsx)(w.A,(0,u.A)((0,u.A)({onChange:ed.onChange},(0,O.A)(ed,["cardProps"])),{},{items:ex,children:N?eT:G}))}):(0,$.jsx)("div",{className:eB,style:b,children:N?eT:eM}),Q?(0,$.jsx)(j,{actions:Q,prefixCls:ew}):null]})))});var q=function(e){var t=e.componentCls;return(0,s.A)({},t,{"&-divider":{flex:"none",width:e.lineWidth,marginInline:e.marginXS,marginBlock:e.marginLG,backgroundColor:e.colorSplit,"&-horizontal":{width:"initial",height:e.lineWidth,marginInline:e.marginLG,marginBlock:e.marginXS}},"&&-size-small &-divider":{marginBlock:e.marginLG,marginInline:e.marginXS,"&-horizontal":{marginBlock:e.marginXS,marginInline:e.marginLG}}})};W.isProCard=!0,W.Divider=function(e){var t=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-card"),n="".concat(t,"-divider"),r=(0,x.X3)("ProCardDivider",function(e){return[q((0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(t)}))]}),o=r.wrapSSR,a=r.hashId,i=e.className,l=e.style,c=e.type,d=v()(n,i,a,(0,s.A)({},"".concat(n,"-").concat(c),c));return o((0,$.jsx)("div",{className:d,style:void 0===l?{}:l}))},W.TabPane=function(e){var t=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls;if(R.A.startsWith("5"))return(0,$.jsx)($.Fragment,{});var n=e.key,r=e.tab,o=e.tabKey,a=e.disabled,i=e.destroyInactiveTabPane,l=e.children,c=e.className,s=e.style,d=e.cardProps,f=(0,p.A)(e,N),m=t("pro-card-tabpane"),h=v()(m,c);return(0,$.jsx)(w.A.TabPane,(0,u.A)((0,u.A)({tabKey:o,tab:r,className:h,style:s,disabled:a,destroyInactiveTabPane:i},f),{},{children:(0,$.jsx)(W,(0,u.A)((0,u.A)({},d),{},{children:l}))}),n)},W.Group=function(e){return(0,$.jsx)(W,(0,u.A)({bodyStyle:{padding:0}},e))};var V=["children","Wrapper"],X=["children","Wrapper"],U=(0,y.createContext)({grid:!1,colProps:void 0,rowProps:void 0}),Y=function(e){var t=e.grid,n=e.rowProps,r=e.colProps;return{grid:!!t,RowWrapper:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=e.children,o=e.Wrapper,a=(0,p.A)(e,V);return t?(0,$.jsx)(E.A,(0,u.A)((0,u.A)((0,u.A)({gutter:8},n),a),{},{children:r})):o?(0,$.jsx)(o,{children:r}):r},ColWrapper:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.children,o=e.Wrapper,a=(0,p.A)(e,X),i=(0,y.useMemo)(function(){var e=(0,u.A)((0,u.A)({},r),a);return void 0===e.span&&void 0===e.xs&&(e.xs=24),e},[a]);return t?(0,$.jsx)(P.A,(0,u.A)((0,u.A)({},i),{},{children:n})):o?(0,$.jsx)(o,{children:n}):n}}},G=function(e){var t=(0,y.useMemo)(function(){return"object"===(0,l.A)(e)?e:{grid:e}},[e]),n=(0,y.useContext)(U),r=n.grid,o=n.colProps;return(0,y.useMemo)(function(){return Y({grid:!!(r||t.grid),rowProps:null==t?void 0:t.rowProps,colProps:(null==t?void 0:t.colProps)||o,Wrapper:null==t?void 0:t.Wrapper})},[null==t?void 0:t.Wrapper,t.grid,r,JSON.stringify([o,null==t?void 0:t.colProps,null==t?void 0:t.rowProps])])},K=n(26380),Q=n(13205);function J(e){if("function"==typeof e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r0&&void 0!==arguments[0]?arguments[0]:21;if("u"2)||void 0===arguments[2]||arguments[2],r=Object.keys(t).reduce(function(e,n){var r=t[n];return ep(r)||(e[n]=r),e},{});if(Object.keys(r).length<1||"u"typeof window){if("object"===(0,l.A)(s)&&(null===s||!(y.isValidElement(s)||s.constructor===RegExp||s instanceof Map||s instanceof Set||s instanceof HTMLElement||s instanceof Blob||s instanceof File||Array.isArray(s))&&1)){var f=e(s,c);if(Object.keys(f).length<1)return;i=(0,eu.A)(i,[n],f);return}p()}}),n?i:t)};return o=Array.isArray(e)&&Array.isArray(o)?(0,d.A)(a(e)):ef({},a(e),o)},eg=n(74353),eh=n.n(eg),eb=n(41816),ev=n.n(eb);eh().extend(ev());var ey={time:"HH:mm:ss",timeRange:"HH:mm:ss",date:"YYYY-MM-DD",dateWeek:"YYYY-wo",dateMonth:"YYYY-MM",dateQuarter:"YYYY-[Q]Q",dateYear:"YYYY",dateRange:"YYYY-MM-DD",dateTime:"YYYY-MM-DD HH:mm:ss",dateTimeRange:"YYYY-MM-DD HH:mm:ss"};function ex(e){return"[object Object]"===Object.prototype.toString.call(e)}var e$=function(e){return!!(null!=e&&e._isAMomentObject)},eA=function(e,t,n){if(!t)return e;if(eh().isDayjs(e)||e$(e)){if("number"===t)return e.valueOf();if("string"===t)return e.format(ey[n]||"YYYY-MM-DD HH:mm:ss");if("string"==typeof t&&"string"!==t)return e.format(t);if("function"==typeof t)return t(e,n)}return e},ew=function e(t,n,r,o,a){var i={};return"u"=F)return null;var t=f.Icon,n=f.tooltipText;return(0,$.jsx)(h.A,{title:n,children:(0,$.jsx)(void 0===t?eT:t,{className:v()("".concat(A,"-action-icon action-down"),H),onClick:(0,i.A)((0,a.A)().mark(function t(){return(0,a.A)().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,w.move(E,e);case 2:case"end":return t.stop()}},t)}))})},"down")},[d,A,H,w,l]),el=(0,y.useMemo)(function(){return[er,eo,ea,ei].filter(function(e){return null!=e})},[er,eo,ea,ei]),ec=(null==C?void 0:C(j,w,el,F))||el,es=ec.length>0&&"read"!==W?(0,$.jsx)("div",{className:v()("".concat(A,"-action"),(0,s.A)({},"".concat(A,"-action-small"),"small"===L),H),children:ec}):null,ed={name:N.name,field:j,index:E,record:null==P||null==(n=P.getFieldValue)?void 0:n.call(P,[D.listName,z,j.name].filter(function(e){return void 0!==e}).flat(1)),fields:O,operation:w,meta:k},ep=G().grid,ef=(null==m?void 0:m(en,ed))||en,em=(null==b?void 0:b({listDom:(0,$.jsx)("div",{className:v()("".concat(A,"-container"),I,H),style:(0,u.A)({width:ep?"100%":void 0},M),children:ef}),action:es},ed))||(0,$.jsxs)("div",{className:v()("".concat(A,"-item"),H,(0,s.A)((0,s.A)({},"".concat(A,"-item-default"),void 0===x),"".concat(A,"-item-show-label"),x)),style:{display:"flex",alignItems:"flex-end"},children:[(0,$.jsx)("div",{className:v()("".concat(A,"-container"),I,H),style:(0,u.A)({width:ep?"100%":void 0},M),children:ef}),es]});return(0,$.jsx)(eq.Provider,{value:(0,u.A)((0,u.A)({},j),{},{listName:[D.listName,z,j.name].filter(function(e){return void 0!==e}).flat(1)}),children:em})},e_=function(e){var t=(0,Q.tz)(),n=e.creatorButtonProps,r=e.prefixCls,o=e.children,l=e.creatorRecord,s=e.action,d=e.fields,p=e.actionGuard,f=e.max,m=e.fieldExtraRender,g=e.meta,h=e.containerClassName,b=e.containerStyle,v=e.onAfterAdd,x=e.onAfterRemove,A=(0,y.useContext)(Q.Lx).hashId,w=(0,y.useRef)(new Map),S=(0,y.useState)(!1),C=(0,c.A)(S,2),k=C[0],j=C[1],E=(0,y.useMemo)(function(){return d.map(function(e){null!=(t=w.current)&&t.has(e.key.toString())||null==(r=w.current)||r.set(e.key.toString(),ei());var t,n,r,o=null==(n=w.current)?void 0:n.get(e.key.toString());return(0,u.A)((0,u.A)({},e),{},{uuid:o})})},[d]),P=(0,y.useMemo)(function(){var e=(0,u.A)({},s),t=E.length;return null!=p&&p.beforeAddRow?e.add=(0,i.A)((0,a.A)().mark(function e(){var n,r,o,i,l=arguments;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:for(r=Array(n=l.length),o=0;o0&&void 0!==arguments[0]?arguments[0]:[],n=eG(t);if(!n)throw Error("nameList is require");var r=null==(e=F())?void 0:e.getFieldValue(n),o=n?(0,eu.A)({},n,r):r,a=(0,d.A)(n);return a.shift(),(0,ed.A)(l(o,C,a),n)},getFieldFormatValueObject:function(e){var t,n=eG(e),r=null==(t=F())?void 0:t.getFieldValue(n);return l(n?(0,eu.A)({},n,r):r,C,n)},validateFieldsReturnFormatValue:(e=(0,i.A)((0,a.A)().mark(function e(t){var n,r;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(!(!Array.isArray(t)&&t)){e.next=2;break}throw Error("nameList must be array");case 2:return e.next=4,null==(n=F())?void 0:n.validateFields(t);case 4:return r=l(e.sent,C),e.abrupt("return",r||{});case 7:case"end":return e.stop()}},e)})),function(t){return e.apply(this,arguments)})}},[C,l]),H=(0,y.useMemo)(function(){return y.Children.toArray(n).map(function(e,t){return 0===t&&y.isValidElement(e)&&k?y.cloneElement(e,(0,u.A)((0,u.A)({},e.props),{},{autoFocus:k})):e})},[k,n]),L=(0,y.useMemo)(function(){return"boolean"!=typeof o&&o?o:{}},[o]),D=(0,y.useMemo)(function(){if(!1!==o)return(0,$.jsx)(ej,(0,u.A)((0,u.A)({},L),{},{onReset:function(){var e,t,n,r=l(null==(e=R.current)?void 0:e.getFieldsValue(),C);null==L||null==(t=L.onReset)||t.call(L,r),null==w||w(r),x&&A(eY(x,Object.keys(l(null==(n=R.current)?void 0:n.getFieldsValue(),!1)).reduce(function(e,t){return(0,u.A)((0,u.A)({},e),{},(0,s.A)({},t,r[t]||void 0))},v)||{},"set"))},submitButtonProps:(0,u.A)({loading:h},L.submitButtonProps)}),"submitter")},[o,L,h,l,C,w,x,v,A]),_=(0,y.useMemo)(function(){var e=j?(0,$.jsx)(B,{children:H}):H;return r?r(e,D,R.current):e},[j,B,H,r,D]),W=ee(e.initialValues);return(0,y.useEffect)(function(){if(!x&&e.initialValues&&W&&!z.request){var t=en(e.initialValues,W);(0,T.g9)(t,"initialValues 只在 form 初始化时生效,如果你需要异步加载推荐使用 request,或者 initialValues ?
: null "),(0,T.g9)(t,"The initialValues only take effect when the form is initialized, if you need to load asynchronously recommended request, or the initialValues ? : null ")}},[e.initialValues]),(0,y.useImperativeHandle)(c,function(){return(0,u.A)((0,u.A)({},R.current),N)},[N,R.current]),(0,y.useEffect)(function(){var e,t,n=l(null==(e=R.current)||null==(t=e.getFieldsValue)?void 0:t.call(e,!0),C);null==f||f(n,(0,u.A)((0,u.A)({},R.current),N))},[]),(0,$.jsx)(er.Provider,{value:(0,u.A)((0,u.A)({},N),{},{formRef:R}),children:(0,$.jsx)(g.Ay,{componentSize:z.size||M,children:(0,$.jsxs)(U.Provider,{value:{grid:j,colProps:P},children:[!1!==z.component&&(0,$.jsx)("input",{type:"text",style:{display:"none"}}),_]})})})}var eQ=0;function eJ(e){var t,n,r,o,l,d,f,m,h,b,A=e.extraUrlParams,w=void 0===A?{}:A,S=e.syncToUrl,k=e.isKeyPressSubmit,j=e.syncToUrlAsImportant,E=e.syncToInitialValues,P=void 0===E||E,z=(e.children,e.contentRender,e.submitter,e.fieldProps),I=e.proFieldProps,M=e.formItemProps,R=e.groupProps,B=e.dateFormatter,T=void 0===B?"string":B,F=e.formRef,N=(e.onInit,e.form),H=e.formComponentType,L=(e.onReset,e.grid,e.rowProps,e.colProps,e.omitNil),D=void 0===L||L,_=e.request,W=e.params,q=e.initialValues,V=e.formKey,X=void 0===V?eQ:V,U=(e.readonly,e.onLoadingChange),Y=e.loading,G=(0,p.A)(e,eU),J=(0,y.useRef)({}),ee=(0,C.A)(!1,{onChange:U,value:Y}),et=(0,c.A)(ee,2),en=et[0],er=et[1],eo=(0,eS.$)({},{disabled:!S}),ea=(0,c.A)(eo,2),es=ea[0],ed=ea[1],ep=(0,y.useRef)(ei());(0,y.useEffect)(function(){eQ+=0},[]);var ef=(t={request:_,params:W,proFieldKey:X},n=(0,y.useRef)(null),r=(0,y.useState)(function(){return t.proFieldKey?t.proFieldKey.toString():(ec+=1).toString()}),o=(0,c.A)(r,1)[0],l=(0,y.useRef)(o),d=(0,i.A)((0,a.A)().mark(function e(){var r,o,i;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return null==(r=n.current)||r.abort(),n.current=new AbortController,e.next=5,Promise.race([null==(o=t.request)?void 0:o.call(t,t.params,t),new Promise(function(e,t){var r;null==(r=n.current)||null==(r=r.signal)||r.addEventListener("abort",function(){t(Error("aborted"))})})]);case 5:return i=e.sent,e.abrupt("return",i);case 7:case"end":return e.stop()}},e)})),f=function(){return d.apply(this,arguments)},(0,y.useEffect)(function(){return function(){ec+=1}},[]),h=(m=(0,el.Ay)([l.current,t.params],f,{revalidateOnFocus:!1,shouldRetryOnError:!1,revalidateOnReconnect:!1})).data,b=m.error,[h||b]),eg=(0,c.A)(ef,1)[0],eh=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-form"),eb=(0,x.X3)("ProForm",function(e){return(0,s.A)({},".".concat(eh),(0,s.A)({},"> div:not(".concat(e.proComponentsCls,"-form-light-filter)"),{".pro-field":{maxWidth:"100%","@media screen and (max-width: 575px)":{maxWidth:"calc(93vw - 48px)"},"&-xs":{width:104},"&-s":{width:216},"&-sm":{width:216},"&-m":{width:328},"&-md":{width:328},"&-l":{width:440},"&-lg":{width:440},"&-xl":{width:552}}}))}),ev=eb.wrapSSR,ey=eb.hashId,ex=(0,y.useState)(function(){return S?eY(S,es,"get"):{}}),e$=(0,c.A)(ex,2),eA=e$[0],ek=e$[1],ej=(0,y.useRef)({}),eE=(0,y.useRef)({}),eP=Z(function(e,t,n){return em(ew(e,T,eE.current,t,n),ej.current,t)});(0,y.useEffect)(function(){P||ek({})},[P]);var ez=Z(function(){return(0,u.A)((0,u.A)({},es),w)});(0,y.useEffect)(function(){S&&ed(eY(S,ez(),"set"))},[w,ez,S]);var eI=(0,y.useMemo)(function(){if("u">typeof window&&H&&["DrawerForm"].includes(H))return function(e){return e.parentNode||document.body}},[H]),eM=Z((0,i.A)((0,a.A)().mark(function e(){var t,n,r,o,i,l,c;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(G.onFinish){e.next=2;break}return e.abrupt("return");case 2:if(!en){e.next=4;break}return e.abrupt("return");case 4:return e.prev=4,r=null==J||null==(t=J.current)||null==(n=t.getFieldsFormatValue)?void 0:n.call(t),(o=G.onFinish(r))instanceof Promise&&er(!0),e.next=10,o;case 10:S&&(c=Object.keys(null==J||null==(i=J.current)||null==(l=i.getFieldsFormatValue)?void 0:l.call(i,void 0,!1)).reduce(function(e,t){var n;return(0,u.A)((0,u.A)({},e),{},(0,s.A)({},t,null!=(n=r[t])?n:void 0))},w),Object.keys(es).forEach(function(e){!1===c[e]||0===c[e]||c[e]||(c[e]=void 0)}),ed(eY(S,c,"set"))),er(!1),e.next=18;break;case 14:e.prev=14,e.t0=e.catch(4),console.log(e.t0),er(!1);case 18:case"end":return e.stop()}},e,null,[[4,14]])})));return((0,y.useImperativeHandle)(F,function(){return J.current},[!eg]),!eg&&e.request)?(0,$.jsx)("div",{style:{paddingTop:50,paddingBottom:50,textAlign:"center"},children:(0,$.jsx)(eC.A,{})}):ev((0,$.jsx)(eN.Provider,{value:{mode:e.readonly?"read":"edit"},children:(0,$.jsx)(Q.TY,{needDeps:!0,children:(0,$.jsx)(eO.Provider,{value:{formRef:J,fieldProps:z,proFieldProps:I,formItemProps:M,groupProps:R,formComponentType:H,getPopupContainer:eI,formKey:ep.current,setFieldValueType:function(e,t){var n=t.valueType,r=t.dateFormat,o=t.transform;Array.isArray(e)&&(ej.current=(0,eu.A)(ej.current,e,o),eE.current=(0,eu.A)(eE.current,e,{valueType:void 0===n?"text":n,dateFormat:r}))}},children:(0,$.jsx)(eq.Provider,{value:{},children:(0,$.jsx)(K.A,(0,u.A)((0,u.A)({onKeyPress:function(e){if(k&&"Enter"===e.key){var t;null==(t=J.current)||t.submit()}},autoComplete:"off",form:N},(0,O.A)(G,["ref","labelWidth","autoFocusFirstInput"])),{},{ref:function(e){J.current&&(J.current.nativeElement=null==e?void 0:e.nativeElement)},initialValues:void 0!==j&&j?(0,u.A)((0,u.A)((0,u.A)({},q),eg),eA):(0,u.A)((0,u.A)((0,u.A)({},eA),q),eg),onValuesChange:function(e,t){var n;null==G||null==(n=G.onValuesChange)||n.call(G,eP(e,!!D),eP(t,!!D))},className:v()(e.className,eh,ey),onFinish:eM,children:(0,$.jsx)(eK,(0,u.A)((0,u.A)({transformKey:eP,autoComplete:"off",loading:en,onUrlSearchChange:ed},e),{},{formRef:J,initialValues:(0,u.A)((0,u.A)({},q),eg)}))}))})})})}))}var eZ=n(73133),e0=y.forwardRef(function(e,t){var n=y.useContext(eO).groupProps,r=(0,u.A)((0,u.A)({},n),e),o=r.children,a=r.collapsible,i=r.defaultCollapsed,l=r.style,d=r.labelLayout,p=r.title,m=void 0===p?e.label:p,h=r.tooltip,b=r.align,w=void 0===b?"start":b,S=r.direction,O=r.size,k=void 0===O?32:O,j=r.titleStyle,E=r.titleRender,P=r.spaceProps,z=r.extra,I=r.autoFocus,M=(0,C.A)(function(){return i||!1},{value:e.collapsed,onChange:e.onCollapse}),R=(0,c.A)(M,2),B=R[0],T=R[1],F=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls,N=G(e),H=N.ColWrapper,L=N.RowWrapper,D=F("pro-form-group"),_=(0,x.X3)("ProFormGroup",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(D)}),(0,s.A)({},t.componentCls,{"&-title":{marginBlockEnd:t.marginXL,fontWeight:"bold"},"&-container":(0,s.A)({flexWrap:"wrap",maxWidth:"100%"},"> div".concat(t.antCls,"-space-item"),{maxWidth:"100%"}),"&-twoLine":(0,s.A)((0,s.A)((0,s.A)((0,s.A)({display:"block",width:"100%"},"".concat(t.componentCls,"-title"),{width:"100%",margin:"8px 0"}),"".concat(t.componentCls,"-container"),{paddingInlineStart:16}),"".concat(t.antCls,"-space-item,").concat(t.antCls,"-form-item"),{width:"100%"}),"".concat(t.antCls,"-form-item"),{"&-control":{display:"flex",alignItems:"center",justifyContent:"flex-end","&-input":{alignItems:"center",justifyContent:"flex-end","&-content":{flex:"none"}}}})}))]}),W=_.wrapSSR,q=_.hashId,V=a&&(0,$.jsx)(f.A,{style:{marginInlineEnd:8},rotate:B?void 0:90}),X=(0,$.jsx)(A,{label:V?(0,$.jsxs)("div",{children:[V,m]}):m,tooltip:h}),U=(0,y.useCallback)(function(e){var t=e.children;return(0,$.jsx)(eZ.A,(0,u.A)((0,u.A)({},P),{},{className:v()("".concat(D,"-container ").concat(q),null==P?void 0:P.className),size:k,align:w,direction:S,style:(0,u.A)({rowGap:0},null==P?void 0:P.style),children:t}))},[w,D,S,q,k,P]),Y=E?E(X,e):X,K=(0,y.useMemo)(function(){var e=[],t=y.Children.toArray(o).map(function(t,n){var r;return y.isValidElement(t)&&null!=t&&null!=(r=t.props)&&r.hidden?(e.push(t),null):0===n&&y.isValidElement(t)&&I?y.cloneElement(t,(0,u.A)((0,u.A)({},t.props),{},{autoFocus:I})):t});return[(0,$.jsx)(L,{Wrapper:U,children:t},"children"),e.length>0?(0,$.jsx)("div",{style:{display:"none"},children:e}):null]},[o,L,U,I]),Q=(0,c.A)(K,2),J=Q[0],Z=Q[1];return W((0,$.jsx)(H,{children:(0,$.jsxs)("div",{className:v()(D,q,(0,s.A)({},"".concat(D,"-twoLine"),"twoLine"===d)),style:l,ref:t,children:[Z,(m||h||z)&&(0,$.jsx)("div",{className:"".concat(D,"-title ").concat(q).trim(),style:j,onClick:function(){T(!B)},children:z?(0,$.jsxs)("div",{style:{display:"flex",width:"100%",alignItems:"center",justifyContent:"space-between"},children:[Y,(0,$.jsx)("span",{onClick:function(e){return e.stopPropagation()},children:z})]}):Y}),(0,$.jsx)("div",{style:{display:a&&B?"none":void 0},children:J})]})}))});function e1(e,t){var n=Z(e),r=(0,y.useRef)(),o=(0,y.useCallback)(function(){r.current&&(clearTimeout(r.current),r.current=null)},[]),l=(0,y.useCallback)((0,i.A)((0,a.A)().mark(function e(){var l,c,s,d=arguments;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:for(c=Array(l=d.length),s=0;s=]*?(\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+))?(?:-([\da-z\-]+(?:\.[\da-z\-]+)*))?(?:\+[\da-z\-]+(?:\.[\da-z\-]+)*)?)?)?$/i,tr=function(e){return"*"===e||"x"===e||"X"===e},to=function(e){var t=parseInt(e,10);return isNaN(t)?e:t},ta=function(e,t){if(tr(e)||tr(t))return 0;var n,r,o=(n=to(e),r=to(t),(0,l.A)(n)!==(0,l.A)(r)?[String(n),String(r)]:[n,r]),a=(0,c.A)(o,2),i=a[0],s=a[1];return i>s?1:i-1?{open:e,onOpenChange:t}:{visible:e,onVisibleChange:t})},tu=function(e){var t=e.children,n=e.label,r=e.footer,o=e.open,a=e.onOpenChange,i=e.disabled,l=e.onVisibleChange,c=e.visible,d=e.footerRender,p=e.placement,f=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-core-field-dropdown"),m=(0,x.X3)("FilterDropdown",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(f)}),(0,s.A)((0,s.A)((0,s.A)({},"".concat(t.componentCls,"-label"),{cursor:"pointer"}),"".concat(t.componentCls,"-overlay"),{minWidth:"200px",marginBlockStart:"4px"}),"".concat(t.componentCls,"-content"),{paddingBlock:16,paddingInline:16}))]}),h=m.wrapSSR,b=m.hashId,A=td(o||c||!1,a||l),w=(0,y.useRef)(null);return h((0,$.jsx)(te.A,(0,u.A)((0,u.A)({placement:p,trigger:["click"]},A),{},{styles:{body:{padding:0}},content:(0,$.jsxs)("div",{ref:w,className:v()("".concat(f,"-overlay"),(0,s.A)((0,s.A)({},"".concat(f,"-overlay-").concat(p),p),"hashId",b)),children:[(0,$.jsx)(g.Ay,{getPopupContainer:function(){return w.current||document.body},children:(0,$.jsx)("div",{className:"".concat(f,"-content ").concat(b).trim(),children:t})}),r&&(0,$.jsx)(tt,(0,u.A)({disabled:i,footerRender:d},r))]}),children:(0,$.jsx)("span",{className:"".concat(f,"-label ").concat(b).trim(),children:n})})))},tp=n(39159),tf=n(98459),tm=y.forwardRef(function(e,t){var n,r,o,a=e.label,i=e.onClear,l=e.value,c=e.disabled,d=e.onLabelClick,p=e.ellipsis,f=e.placeholder,m=e.className,h=e.formatter,b=e.bordered,A=e.style,w=e.downIcon,S=e.allowClear,C=void 0===S||S,O=e.valueMaxLength,k=void 0===O?41:O,j=((null===g.Ay||void 0===g.Ay||null==(n=g.Ay.useConfig)?void 0:n.call(g.Ay))||{componentSize:"middle"}).componentSize,E=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-core-field-label"),P=(0,x.X3)("FieldLabel",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(E)}),(0,s.A)({},t.componentCls,(0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)({display:"inline-flex",gap:t.marginXXS,alignItems:"center",height:"30px",paddingBlock:0,paddingInline:8,fontSize:t.fontSize,lineHeight:"30px",borderRadius:"2px",cursor:"pointer","&:hover":{backgroundColor:t.colorBgTextHover},"&-active":(0,s.A)({paddingBlock:0,paddingInline:8,backgroundColor:t.colorBgTextHover},"&".concat(t.componentCls,"-allow-clear:hover:not(").concat(t.componentCls,"-disabled)"),(0,s.A)((0,s.A)({},"".concat(t.componentCls,"-arrow"),{display:"none"}),"".concat(t.componentCls,"-close"),{display:"inline-flex"}))},"".concat(t.antCls,"-select"),(0,s.A)({},"".concat(t.antCls,"-select-clear"),{borderRadius:"50%"})),"".concat(t.antCls,"-picker"),(0,s.A)({},"".concat(t.antCls,"-picker-clear"),{borderRadius:"50%"})),"&-icon",(0,s.A)((0,s.A)({color:t.colorIcon,transition:"color 0.3s",fontSize:12,verticalAlign:"middle"},"&".concat(t.componentCls,"-close"),{display:"none",fontSize:12,alignItems:"center",justifyContent:"center",color:t.colorTextPlaceholder,borderRadius:"50%"}),"&:hover",{color:t.colorIconHover})),"&-disabled",(0,s.A)({color:t.colorTextPlaceholder,cursor:"not-allowed"},"".concat(t.componentCls,"-icon"),{color:t.colorTextPlaceholder})),"&-small",(0,s.A)((0,s.A)((0,s.A)({height:"24px",paddingBlock:0,paddingInline:4,fontSize:t.fontSizeSM,lineHeight:"24px"},"&".concat(t.componentCls,"-active"),{paddingBlock:0,paddingInline:8}),"".concat(t.componentCls,"-icon"),{paddingBlock:0,paddingInline:0}),"".concat(t.componentCls,"-close"),{marginBlockStart:"-2px",paddingBlock:4,paddingInline:4,fontSize:"6px"})),"&-bordered",{height:"32px",paddingBlock:0,paddingInline:8,border:"".concat(t.lineWidth,"px solid ").concat(t.colorBorder),borderRadius:"@border-radius-base"}),"&-bordered&-small",{height:"24px",paddingBlock:0,paddingInline:8}),"&-bordered&-active",{backgroundColor:t.colorBgContainer})))]}),z=P.wrapSSR,I=P.hashId,M=(0,Q.tz)(),R=(0,y.useRef)(null),B=(0,y.useRef)(null);(0,y.useImperativeHandle)(t,function(){return{labelRef:B,clearRef:R}});var T=function(e){return h?h(e):Array.isArray(e)?e.every(function(e){return"string"==typeof e})?e.join(","):e.map(function(t,n){var r=n===e.length-1?"":",";return"string"==typeof t?(0,$.jsxs)("span",{children:[t,r]},n):(0,$.jsxs)("span",{style:{display:"flex"},children:[t,r]},n)}):e};return z((0,$.jsxs)("span",{className:v()(E,I,"".concat(E,"-").concat(null!=(r=null!=(o=e.size)?o:j)?r:"middle"),(0,s.A)((0,s.A)((0,s.A)((0,s.A)({},"".concat(E,"-active"),(Array.isArray(l)?l.length>0:!!l)||0===l),"".concat(E,"-disabled"),c),"".concat(E,"-bordered"),b),"".concat(E,"-allow-clear"),C),m),style:A,ref:B,onClick:function(){var t;null==e||null==(t=e.onClick)||t.call(e)},children:[function(e,t){if(null!=t&&""!==t&&(!Array.isArray(t)||t.length)){var n,r,o,a,i=e?(0,$.jsxs)("span",{onClick:function(){null==d||d()},className:"".concat(E,"-text"),children:[e,": "]}):"",l=T(t);if(!p)return(0,$.jsxs)("span",{style:{display:"inline-flex",alignItems:"center"},children:[i,T(t)]});var c=(n=Array.isArray(t)&&t.length>1,r=M.getMessage("form.lightFilter.itemUnit","项"),"string"==typeof l&&l.length>k&&n?"...".concat(t.length).concat(r):"");return(0,$.jsxs)("span",{title:"string"==typeof l?l:void 0,style:{display:"inline-flex",alignItems:"center"},children:[i,(0,$.jsx)("span",{style:{paddingInlineStart:4,display:"flex"},children:"string"==typeof l?null==l||null==(o=l.toString())||null==(a=o.slice)?void 0:a.call(o,0,k):l}),c]})}return e||f}(a,l),(l||0===l)&&C&&(0,$.jsx)(tp.A,{role:"button",title:M.getMessage("form.lightFilter.clear","清除"),className:v()("".concat(E,"-icon"),I,"".concat(E,"-close")),onClick:function(e){c||null==i||i(),e.stopPropagation()},ref:R}),!1!==w?null!=w?w:(0,$.jsx)(tf.A,{className:v()("".concat(E,"-icon"),I,"".concat(E,"-arrow"))}):null]}))}),tg=["label","size","disabled","onChange","className","style","children","valuePropName","placeholder","labelFormatter","bordered","footerRender","allowClear","otherFieldProps","valueType","placement"],th=function(e){var t=e.label,n=e.size,r=e.disabled,o=e.onChange,a=e.className,i=e.style,d=e.children,f=e.valuePropName,m=e.placeholder,h=e.labelFormatter,b=e.bordered,A=e.footerRender,w=e.allowClear,S=e.otherFieldProps,O=e.valueType,k=e.placement,j=(0,p.A)(e,tg),E=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-field-light-wrapper"),P=(0,x.X3)("LightWrapper",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(E)}),(0,s.A)((0,s.A)({},"".concat(t.componentCls,"-collapse-label"),{paddingInline:1,paddingBlock:1}),"".concat(t.componentCls,"-container"),(0,s.A)({},"".concat(t.antCls,"-form-item"),{marginBlockEnd:0})))]}),z=P.wrapSSR,I=P.hashId,M=(0,y.useState)(e[f]),R=(0,c.A)(M,2),B=R[0],T=R[1],F=(0,C.A)(!1),N=(0,c.A)(F,2),H=N[0],L=N[1],D=function(){for(var e,t=arguments.length,n=Array(t),r=0;r(e=>{let{componentCls:t,iconCls:n,antCls:r,zIndexPopup:o,colorText:a,colorWarning:i,marginXXS:l,marginXS:c,fontSize:s,fontWeightStrong:d,colorTextHeading:u}=e;return{[t]:{zIndex:o,[`&${r}-popover`]:{fontSize:s},[`${t}-message`]:{marginBottom:c,display:"flex",flexWrap:"nowrap",alignItems:"start",[`> ${t}-message-icon ${n}`]:{color:i,fontSize:s,lineHeight:1,marginInlineEnd:c},[`${t}-title`]:{fontWeight:d,color:u,"&:only-child":{fontWeight:"normal"}},[`${t}-description`]:{marginTop:l,color:a}},[`${t}-buttons`]:{textAlign:"end",whiteSpace:"nowrap",button:{marginInlineStart:c}}}}})(e),e=>{let{zIndexPopupBase:t}=e;return{zIndexPopup:t+60}},{resetStyle:!1});var tF=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let tN=e=>{let{prefixCls:t,okButtonProps:n,cancelButtonProps:r,title:o,description:a,cancelText:i,okText:l,okType:c="primary",icon:s=y.createElement(tk.A,null),showCancel:d=!0,close:u,onConfirm:p,onCancel:f,onPopupClick:m}=e,{getPrefixCls:g}=y.useContext(tj.QO),[h]=(0,tI.A)("Popconfirm",tM.A.Popconfirm),b=(0,tP.b)(o),v=(0,tP.b)(a);return y.createElement("div",{className:`${t}-inner-content`,onClick:m},y.createElement("div",{className:`${t}-message`},s&&y.createElement("span",{className:`${t}-message-icon`},s),y.createElement("div",{className:`${t}-message-text`},b&&y.createElement("div",{className:`${t}-title`},b),v&&y.createElement("div",{className:`${t}-description`},v))),y.createElement("div",{className:`${t}-buttons`},d&&y.createElement(ek.Ay,Object.assign({onClick:f,size:"small"},r),i||(null==h?void 0:h.cancelText)),y.createElement(tE.A,{buttonProps:Object.assign(Object.assign({size:"small"},(0,tz.DU)(c)),n),actionFn:p,close:u,prefixCls:g("btn"),quitOnNullishReturnValue:!0,emitEvent:!0},l||(null==h?void 0:h.okText))))};var tH=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let tL=y.forwardRef((e,t)=>{var n,r;let{prefixCls:o,placement:a="top",trigger:i="click",okType:l="primary",icon:c=y.createElement(tk.A,null),children:s,overlayClassName:d,onOpenChange:u,onVisibleChange:p,overlayStyle:f,styles:m,classNames:g}=e,h=tH(e,["prefixCls","placement","trigger","okType","icon","children","overlayClassName","onOpenChange","onVisibleChange","overlayStyle","styles","classNames"]),{getPrefixCls:b,className:x,style:$,classNames:A,styles:w}=(0,tj.TP)("popconfirm"),[S,k]=(0,C.A)(!1,{value:null!=(n=e.open)?n:e.visible,defaultValue:null!=(r=e.defaultOpen)?r:e.defaultVisible}),j=(e,t)=>{k(e,!0),null==p||p(e),null==u||u(e,t)},E=b("popconfirm",o),P=v()(E,x,d,A.root,null==g?void 0:g.root),z=v()(A.body,null==g?void 0:g.body),[I]=tT(E);return I(y.createElement(te.A,Object.assign({},(0,O.A)(h,["title"]),{trigger:i,placement:a,onOpenChange:(t,n)=>{let{disabled:r=!1}=e;r||j(t,n)},open:S,ref:t,classNames:{root:P,body:z},styles:{root:Object.assign(Object.assign(Object.assign(Object.assign({},w.root),$),f),null==m?void 0:m.root),body:Object.assign(Object.assign({},w.body),null==m?void 0:m.body)},content:y.createElement(tN,Object.assign({okType:l,icon:c},e,{prefixCls:E,close:e=>{j(!1,e)},onConfirm:t=>{var n;return null==(n=e.onConfirm)?void 0:n.call(void 0,t)},onCancel:t=>{var n;j(!1,t),null==(n=e.onCancel)||n.call(void 0,t)}})),"data-popover-inject":!0}),s))});tL._InternalPanelDoNotUseOrYouWillBeFired=e=>{let{prefixCls:t,placement:n,className:r,style:o}=e,a=tF(e,["prefixCls","placement","className","style"]),{getPrefixCls:i}=y.useContext(tj.QO),l=i("popconfirm",t),[c]=tT(l);return c(y.createElement(tR.Ay,{placement:n,className:v()(l,r),style:o,content:y.createElement(tN,Object.assign({prefixCls:l},a))}))};var tD=n(64957),t_=["map_row_parentKey"],tW=["map_row_parentKey","map_row_key"],tq=["map_row_key"],tV=function(e){return(tO.Ay.warn||tO.Ay.warning)(e)},tX=function(e){return Array.isArray(e)?e.join(","):e};function tU(e,t){var n,r,o,a,i=e.getRowKey,c=e.row,d=e.data,f=e.childrenColumnName,m=void 0===f?"children":f,g=null==(a=tX(e.key))?void 0:a.toString(),h=new Map;return"top"===t&&h.set(g,(0,u.A)((0,u.A)({},h.get(g)),c)),function e(t,n,r){t.forEach(function(t,o){var a=10*(r||0)+o,c=i(t,a).toString();t&&"object"===(0,l.A)(t)&&m in t&&e(t[m]||[],c,a);var s=(0,u.A)((0,u.A)({},t),{},{map_row_key:c,children:void 0,map_row_parentKey:n});delete s.children,n||delete s.map_row_parentKey,h.set(c,s)})}(d),"update"===t&&h.set(g,(0,u.A)((0,u.A)({},h.get(g)),c)),"delete"===t&&h.delete(g),n=new Map,r=[],(o=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];h.forEach(function(t){if(t.map_row_parentKey&&!t.map_row_key){var r,o=t.map_row_parentKey,a=(0,p.A)(t,t_);n.has(o)||n.set(o,[]),e&&(null==(r=n.get(o))||r.push(a))}})})("top"===t),h.forEach(function(e){if(e.map_row_parentKey&&e.map_row_key){var t,r=e.map_row_parentKey,o=e.map_row_key,a=(0,p.A)(e,tW);n.has(o)&&(a[m]=n.get(o)),n.has(r)||n.set(r,[]),null==(t=n.get(r))||t.push(a)}}),o("update"===t),h.forEach(function(e){if(!e.map_row_parentKey){var t=e.map_row_key,o=(0,p.A)(e,tq);if(t&&n.has(t)){var a=(0,u.A)((0,u.A)({},o),{},(0,s.A)({},m,n.get(t)));r.push(a);return}r.push(o)}}),r}function tY(e,t){var n,r=e.recordKey,o=e.onSave,l=e.row,s=e.children,d=e.newLineConfig,u=e.editorType,p=e.tableName,f=(0,y.useContext)(er),m=K.A.useFormInstance(),g=(0,C.A)(!1),h=(0,c.A)(g,2),b=h[0],v=h[1],x=Z((0,i.A)((0,a.A)().mark(function e(){var t,n,i,c,s,g,h,b;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,n="Map"===u,i=[p,Array.isArray(r)?r[0]:r].map(function(e){return null==e?void 0:e.toString()}).flat(1).filter(Boolean),v(!0),e.next=6,m.validateFields(i,{recursive:!0});case 6:return c=(null==f||null==(t=f.getFieldFormatValue)?void 0:t.call(f,i))||m.getFieldValue(i),Array.isArray(r)&&r.length>1&&(s=(0,tC.A)(r).slice(1),g=(0,ed.A)(c,s),(0,eu.A)(c,s,g)),h=n?(0,eu.A)({},i,c):c,e.next=11,null==o?void 0:o(r,ef({},l,h),l,d);case 11:return b=e.sent,v(!1),e.abrupt("return",b);case 16:throw e.prev=16,e.t0=e.catch(0),console.log(e.t0),v(!1),e.t0;case 21:case"end":return e.stop()}},e,null,[[0,16]])})));return(0,y.useImperativeHandle)(t,function(){return{save:x}},[x]),(0,$.jsxs)("a",{onClick:(n=(0,i.A)((0,a.A)().mark(function e(t){return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t.stopPropagation(),t.preventDefault(),e.prev=2,e.next=5,x();case 5:e.next=9;break;case 7:e.prev=7,e.t0=e.catch(2);case 9:case"end":return e.stop()}},e,null,[[2,7]])})),function(e){return n.apply(this,arguments)}),children:[b?(0,$.jsx)(eH.A,{style:{marginInlineEnd:8}}):null,s||"保存"]},"save")}var tG=function(e){var t=e.recordKey,n=e.onDelete,r=e.preEditRowRef,o=e.row,l=e.children,s=e.deletePopconfirmMessage,d=(0,C.A)(function(){return!1}),u=(0,c.A)(d,2),p=u[0],f=u[1],m=Z((0,i.A)((0,a.A)().mark(function e(){var i;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,f(!0),e.next=4,null==n?void 0:n(t,o);case 4:return i=e.sent,f(!1),e.abrupt("return",i);case 9:return e.prev=9,e.t0=e.catch(0),console.log(e.t0),f(!1),e.abrupt("return",null);case 14:return e.prev=14,r&&(r.current=null),e.finish(14);case 17:case"end":return e.stop()}},e,null,[[0,9,14,17]])})));return!1!==l?(0,$.jsx)(tL,{title:s,onConfirm:function(){return m()},children:(0,$.jsxs)("a",{children:[p?(0,$.jsx)(eH.A,{style:{marginInlineEnd:8}}):null,l||"删除"]})},"delete"):null},tK=function(e){var t,n=e.recordKey,r=e.tableName,o=e.newLineConfig,l=e.editorType,c=e.onCancel,s=e.cancelEditable,d=e.row,u=e.cancelText,p=e.preEditRowRef,f=(0,y.useContext)(er),m=K.A.useFormInstance();return(0,$.jsx)("a",{onClick:(t=(0,i.A)((0,a.A)().mark(function t(i){var u,g,h,b,v,y,x;return(0,a.A)().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return i.stopPropagation(),i.preventDefault(),g="Map"===l,h=[r,n].flat(1).filter(Boolean),b=(null==f||null==(u=f.getFieldFormatValue)?void 0:u.call(f,h))||(null==m?void 0:m.getFieldValue(h)),v=g?(0,eu.A)({},h,b):b,t.next=8,null==c?void 0:c(n,v,d,o);case 8:return y=t.sent,t.next=11,s(n);case 11:if((null==p?void 0:p.current)===null){t.next=15;break}m.setFieldsValue((0,eu.A)({},h,null==p?void 0:p.current)),t.next=17;break;case 15:return t.next=17,null==(x=e.onDelete)?void 0:x.call(e,n,d);case 17:return p&&(p.current=null),t.abrupt("return",y);case 19:case"end":return t.stop()}},t)})),function(e){return t.apply(this,arguments)}),children:u||"取消"},"cancel")},tQ=(0,n(272).jK)({bigint:!0,circularValue:"Magic circle!",deterministic:!1,maximumDepth:4}),tJ=n(23029),tZ=n(92901),t0=n(9417),t1=n(85501),t2=n(6903),t4=n(38940),t6=function(e){(0,t1.A)(n,e);var t=(0,t2.A)(n);function n(){var e;(0,tJ.A)(this,n);for(var r=arguments.length,o=Array(r),a=0;a0&&void 0!==arguments[0]?arguments[0]:{},l=(0,y.useRef)(),s=(0,y.useRef)(null),d=(0,y.useRef)(),u=(0,y.useRef)(),p=(0,y.useState)(""),f=(0,c.A)(p,2),m=f[0],g=f[1],h=(0,y.useRef)([]),b=(0,C.A)(function(){return i.size||i.defaultSize||"middle"},{value:i.size,onChange:i.onSizeChange}),v=(0,c.A)(b,2),x=v[0],$=v[1],A=(0,y.useMemo)(function(){if(null!=i&&null!=(e=i.columnsState)&&e.defaultValue)return i.columnsState.defaultValue;var e,t,n={};return null==(t=i.columns)||t.forEach(function(e,t){var r=e.key,o=e.dataIndex,a=e.fixed,i=e.disable,l=ne(null!=r?r:o,t);l&&(n[l]={show:!0,fixed:a,disable:i})}),n},[i.columns]),w=(0,C.A)(function(){var e=i.columnsState||{},t=e.persistenceType,n=e.persistenceKey;if(n&&t&&"u">typeof window){var r=window[t];try{var o,a,l,c,s=null==r?void 0:r.getItem(n);if(s){if(null!=i&&null!=(l=i.columnsState)&&l.defaultValue)return(0,es.A)({},null==i||null==(c=i.columnsState)?void 0:c.defaultValue,JSON.parse(s));return JSON.parse(s)}}catch(e){console.warn(e)}}return i.columnsStateMap||(null==(o=i.columnsState)?void 0:o.value)||(null==(a=i.columnsState)?void 0:a.defaultValue)||A},{value:(null==(e=i.columnsState)?void 0:e.value)||i.columnsStateMap,onChange:(null==(t=i.columnsState)?void 0:t.onChange)||i.onColumnsStateChange}),S=(0,c.A)(w,2),O=S[0],k=S[1];(0,y.useEffect)(function(){var e=i.columnsState||{},t=e.persistenceType,n=e.persistenceKey;if(n&&t&&"u">typeof window){var r=window[t];try{var o,a,l=null==r?void 0:r.getItem(n);l?null!=i&&null!=(o=i.columnsState)&&o.defaultValue?k((0,es.A)({},null==i||null==(a=i.columnsState)?void 0:a.defaultValue,JSON.parse(l))):k(JSON.parse(l)):k(A)}catch(e){console.warn(e)}}},[null==(n=i.columnsState)?void 0:n.persistenceKey,null==(r=i.columnsState)?void 0:r.persistenceType,A]),(0,T.g9)(!i.columnsStateMap,"columnsStateMap已经废弃,请使用 columnsState.value 替换"),(0,T.g9)(!i.columnsStateMap,"columnsStateMap has been discarded, please use columnsState.value replacement");var j=(0,y.useCallback)(function(){var e=i.columnsState||{},t=e.persistenceType,n=e.persistenceKey;if(n&&t&&"u">typeof window){var r=window[t];try{null==r||r.removeItem(n)}catch(e){console.warn(e)}}},[i.columnsState]);(0,y.useEffect)(function(){if(null!=(e=i.columnsState)&&e.persistenceKey&&null!=(t=i.columnsState)&&t.persistenceType&&"u">typeof window){var e,t,n=i.columnsState,r=n.persistenceType,o=n.persistenceKey,a=window[r];try{null==a||a.setItem(o,JSON.stringify(O))}catch(e){console.warn(e),j()}}},[null==(o=i.columnsState)?void 0:o.persistenceKey,O,null==(a=i.columnsState)?void 0:a.persistenceType]);var E={action:l.current,setAction:function(e){l.current=e},sortKeyColumns:h.current,setSortKeyColumns:function(e){h.current=e},propsRef:u,columnsMap:O,keyWords:m,setKeyWords:function(e){return g(e)},setTableSize:$,tableSize:x,prefixName:d.current,setPrefixName:function(e){d.current=e},setColumnsMap:k,columns:i.columns,rootDomRef:s,clearPersistenceStorage:j,defaultColumnKeyMap:A};return Object.defineProperty(E,"prefixName",{get:function(){return d.current}}),Object.defineProperty(E,"sortKeyColumns",{get:function(){return h.current}}),Object.defineProperty(E,"action",{get:function(){return l.current}}),E}(e.initValue);return(0,$.jsx)(nn.Provider,{value:t,children:e.children})},no=function(e){var t=e.intl,n=e.onCleanSelected;return[(0,$.jsx)("a",{onClick:n,children:t.getMessage("alert.clear","清空")},"0")]};let na=function(e){var t=e.selectedRowKeys,n=void 0===t?[]:t,r=e.onCleanSelected,o=e.alwaysShowAlert,a=e.selectedRows,i=e.alertInfoRender,l=void 0===i?function(e){var t=e.intl;return(0,$.jsxs)(eZ.A,{children:[t.getMessage("alert.selected","已选择"),n.length,t.getMessage("alert.item","项"),"\xa0\xa0"]})}:i,c=e.alertOptionRender,d=void 0===c?no:c,p=(0,Q.tz)(),f=d&&d({onCleanSelected:r,selectedRowKeys:n,selectedRows:a,intl:p}),m=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-table-alert"),h=(0,x.X3)("ProTableAlert",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(m)}),(0,s.A)({},t.componentCls,{marginBlockEnd:16,backgroundColor:(0,x.X9)(t.colorTextBase,.02),borderRadius:t.borderRadius,border:"none","&-container":{paddingBlock:t.paddingSM,paddingInline:t.paddingLG},"&-info":{display:"flex",alignItems:"center",transition:"all 0.3s",color:t.colorTextTertiary,"&-content":{flex:1},"&-option":{minWidth:48,paddingInlineStart:16}}}))]}),b=h.wrapSSR,v=h.hashId;if(!1===l)return null;var A=l({intl:p,selectedRowKeys:n,selectedRows:a,onCleanSelected:r});return!1===A||n.length<1&&!o?null:b((0,$.jsx)("div",{className:"".concat(m," ").concat(v).trim(),children:(0,$.jsx)("div",{className:"".concat(m,"-container ").concat(v).trim(),children:(0,$.jsxs)("div",{className:"".concat(m,"-info ").concat(v).trim(),children:[(0,$.jsx)("div",{className:"".concat(m,"-info-content ").concat(v).trim(),children:A}),f?(0,$.jsx)("div",{className:"".concat(m,"-info-option ").concat(v).trim(),children:f}):null]})})}))};var ni=function(e){var t=(0,y.useRef)(e);return t.current=e,t},nl="u">typeof process&&null!=process.versions&&null!=process.versions.node,nc=function(){return"u">typeof window&&void 0!==window.document&&void 0!==window.matchMedia&&!nl},ns=n(64464),nd=n(56855),nu=n(8719),np=n(62897),nf=n(60275),nm=n(23723),ng=n(72616),nh=n(28557),nb=n(70064),nv=n(42441);let ny=e=>{var t,n,r,o;let a,{prefixCls:i,ariaId:l,title:c,footer:s,extra:d,closable:u,loading:p,onClose:f,headerStyle:m,bodyStyle:g,footerStyle:h,children:b,classNames:x,styles:$}=e,A=(0,tj.TP)("drawer");a=!1===u?void 0:void 0===u||!0===u?"start":(null==u?void 0:u.placement)==="end"?"end":"start";let w=y.useCallback(e=>y.createElement("button",{type:"button",onClick:f,className:v()(`${i}-close`,{[`${i}-close-${a}`]:"end"===a})},e),[f,i,a]),[S,C]=(0,nb.$)((0,nb.d)(e),(0,nb.d)(A),{closable:!0,closeIconRender:w});return y.createElement(y.Fragment,null,c||S?y.createElement("div",{style:Object.assign(Object.assign(Object.assign({},null==(r=A.styles)?void 0:r.header),m),null==$?void 0:$.header),className:v()(`${i}-header`,{[`${i}-header-close-only`]:S&&!c&&!d},null==(o=A.classNames)?void 0:o.header,null==x?void 0:x.header)},y.createElement("div",{className:`${i}-header-title`},"start"===a&&C,c&&y.createElement("div",{className:`${i}-title`,id:l},c)),d&&y.createElement("div",{className:`${i}-extra`},d),"end"===a&&C):null,y.createElement("div",{className:v()(`${i}-body`,null==x?void 0:x.body,null==(t=A.classNames)?void 0:t.body),style:Object.assign(Object.assign(Object.assign({},null==(n=A.styles)?void 0:n.body),g),null==$?void 0:$.body)},p?y.createElement(nv.A,{active:!0,title:!1,paragraph:{rows:5},className:`${i}-body-skeleton`}):b),(()=>{var e,t;if(!s)return null;let n=`${i}-footer`;return y.createElement("div",{className:v()(n,null==(e=A.classNames)?void 0:e.footer,null==x?void 0:x.footer),style:Object.assign(Object.assign(Object.assign({},null==(t=A.styles)?void 0:t.footer),h),null==$?void 0:$.footer)},s)})())};var nx=n(25905),n$=n(10224);let nA=(e,t)=>({"&-enter, &-appear":Object.assign(Object.assign({},e),{"&-active":t}),"&-leave":Object.assign(Object.assign({},t),{"&-active":e})}),nw=(e,t)=>Object.assign({"&-enter, &-appear, &-leave":{"&-start":{transition:"none"},"&-active":{transition:`all ${t}`}}},nA({opacity:e},{opacity:1})),nS=(0,tB.OF)("Drawer",e=>{let t=(0,n$.oX)(e,{});return[(e=>{let{borderRadiusSM:t,componentCls:n,zIndexPopup:r,colorBgMask:o,colorBgElevated:a,motionDurationSlow:i,motionDurationMid:l,paddingXS:c,padding:s,paddingLG:d,fontSizeLG:u,lineHeightLG:p,lineWidth:f,lineType:m,colorSplit:g,marginXS:h,colorIcon:b,colorIconHover:v,colorBgTextHover:y,colorBgTextActive:x,colorText:$,fontWeightStrong:A,footerPaddingBlock:w,footerPaddingInline:S,calc:C}=e,O=`${n}-content-wrapper`;return{[n]:{position:"fixed",inset:0,zIndex:r,pointerEvents:"none",color:$,"&-pure":{position:"relative",background:a,display:"flex",flexDirection:"column",[`&${n}-left`]:{boxShadow:e.boxShadowDrawerLeft},[`&${n}-right`]:{boxShadow:e.boxShadowDrawerRight},[`&${n}-top`]:{boxShadow:e.boxShadowDrawerUp},[`&${n}-bottom`]:{boxShadow:e.boxShadowDrawerDown}},"&-inline":{position:"absolute"},[`${n}-mask`]:{position:"absolute",inset:0,zIndex:r,background:o,pointerEvents:"auto"},[O]:{position:"absolute",zIndex:r,maxWidth:"100vw",transition:`all ${i}`,"&-hidden":{display:"none"}},[`&-left > ${O}`]:{top:0,bottom:0,left:{_skip_check_:!0,value:0},boxShadow:e.boxShadowDrawerLeft},[`&-right > ${O}`]:{top:0,right:{_skip_check_:!0,value:0},bottom:0,boxShadow:e.boxShadowDrawerRight},[`&-top > ${O}`]:{top:0,insetInline:0,boxShadow:e.boxShadowDrawerUp},[`&-bottom > ${O}`]:{bottom:0,insetInline:0,boxShadow:e.boxShadowDrawerDown},[`${n}-content`]:{display:"flex",flexDirection:"column",width:"100%",height:"100%",overflow:"auto",background:a,pointerEvents:"auto"},[`${n}-header`]:{display:"flex",flex:0,alignItems:"center",padding:`${(0,z.zA)(s)} ${(0,z.zA)(d)}`,fontSize:u,lineHeight:p,borderBottom:`${(0,z.zA)(f)} ${m} ${g}`,"&-title":{display:"flex",flex:1,alignItems:"center",minWidth:0,minHeight:0}},[`${n}-extra`]:{flex:"none"},[`${n}-close`]:Object.assign({display:"inline-flex",width:C(u).add(c).equal(),height:C(u).add(c).equal(),borderRadius:t,justifyContent:"center",alignItems:"center",color:b,fontWeight:A,fontSize:u,fontStyle:"normal",lineHeight:1,textAlign:"center",textTransform:"none",textDecoration:"none",background:"transparent",border:0,cursor:"pointer",transition:`all ${l}`,textRendering:"auto",[`&${n}-close-end`]:{marginInlineStart:h},[`&:not(${n}-close-end)`]:{marginInlineEnd:h},"&:hover":{color:v,backgroundColor:y,textDecoration:"none"},"&:active":{backgroundColor:x}},(0,nx.K8)(e)),[`${n}-title`]:{flex:1,margin:0,fontWeight:e.fontWeightStrong,fontSize:u,lineHeight:p},[`${n}-body`]:{flex:1,minWidth:0,minHeight:0,padding:d,overflow:"auto",[`${n}-body-skeleton`]:{width:"100%",height:"100%",display:"flex",justifyContent:"center"}},[`${n}-footer`]:{flexShrink:0,padding:`${(0,z.zA)(w)} ${(0,z.zA)(S)}`,borderTop:`${(0,z.zA)(f)} ${m} ${g}`},"&-rtl":{direction:"rtl"}}}})(t),(e=>{let{componentCls:t,motionDurationSlow:n}=e;return{[t]:{[`${t}-mask-motion`]:nw(0,n),[`${t}-panel-motion`]:["left","right","top","bottom"].reduce((e,t)=>{let r;return Object.assign(Object.assign({},e),{[`&-${t}`]:[nw(.7,n),nA({transform:(r="100%",({left:`translateX(-${r})`,right:`translateX(${r})`,top:`translateY(-${r})`,bottom:`translateY(${r})`})[t])},{transform:"none"})]})},{})}}})(t)]},e=>({zIndexPopup:e.zIndexPopupBase,footerPaddingBlock:e.paddingXS,footerPaddingInline:e.padding}));var nC=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let nO={distance:180},nk=e=>{let{rootClassName:t,width:n,height:r,size:o="default",mask:a=!0,push:i=nO,open:l,afterOpenChange:c,onClose:s,prefixCls:d,getContainer:u,panelRef:p=null,style:f,className:m,"aria-labelledby":g,visible:h,afterVisibleChange:b,maskStyle:x,drawerStyle:$,contentWrapperStyle:A,destroyOnClose:w,destroyOnHidden:S}=e,C=nC(e,["rootClassName","width","height","size","mask","push","open","afterOpenChange","onClose","prefixCls","getContainer","panelRef","style","className","aria-labelledby","visible","afterVisibleChange","maskStyle","drawerStyle","contentWrapperStyle","destroyOnClose","destroyOnHidden"]),O=(0,nd.A)(),k=C.title?O:void 0,{getPopupContainer:j,getPrefixCls:E,direction:P,className:z,style:I,classNames:M,styles:R}=(0,tj.TP)("drawer"),B=E("drawer",d),[T,F,N]=nS(B),H=void 0===u&&j?()=>j(document.body):u,L=v()({"no-mask":!a,[`${B}-rtl`]:"rtl"===P},t,F,N),D=y.useMemo(()=>null!=n?n:"large"===o?736:378,[n,o]),_=y.useMemo(()=>null!=r?r:"large"===o?736:378,[r,o]),W={motionName:(0,nm.b)(B,"mask-motion"),motionAppear:!0,motionEnter:!0,motionLeave:!0,motionDeadline:500},q=(0,nh.f)(),V=(0,nu.K4)(p,q),[X,U]=(0,nf.YK)("Drawer",C.zIndex),{classNames:Y={},styles:G={}}=C;return T(y.createElement(np.A,{form:!0,space:!0},y.createElement(ng.A.Provider,{value:U},y.createElement(ns.A,Object.assign({prefixCls:B,onClose:s,maskMotion:W,motion:e=>({motionName:(0,nm.b)(B,`panel-motion-${e}`),motionAppear:!0,motionEnter:!0,motionLeave:!0,motionDeadline:500})},C,{classNames:{mask:v()(Y.mask,M.mask),content:v()(Y.content,M.content),wrapper:v()(Y.wrapper,M.wrapper)},styles:{mask:Object.assign(Object.assign(Object.assign({},G.mask),x),R.mask),content:Object.assign(Object.assign(Object.assign({},G.content),$),R.content),wrapper:Object.assign(Object.assign(Object.assign({},G.wrapper),A),R.wrapper)},open:null!=l?l:h,mask:a,push:i,width:D,height:_,style:Object.assign(Object.assign({},I),f),className:v()(z,m),rootClassName:L,getContainer:H,afterOpenChange:null!=c?c:b,panelRef:V,zIndex:X,"aria-labelledby":null!=g?g:k,destroyOnClose:null!=S?S:w}),y.createElement(ny,Object.assign({prefixCls:B},C,{ariaId:k,onClose:s}))))))};nk._InternalPanelDoNotUseOrYouWillBeFired=e=>{let{prefixCls:t,style:n,className:r,placement:o="right"}=e,a=nC(e,["prefixCls","style","className","placement"]),{getPrefixCls:i}=y.useContext(tj.QO),l=i("drawer",t),[c,s,d]=nS(l),u=v()(l,`${l}-pure`,`${l}-${o}`,s,d,r);return c(y.createElement("div",{className:u,style:n},y.createElement(ny,Object.assign({prefixCls:l},a))))};var nj=n(40961),nE=["children","trigger","onVisibleChange","drawerProps","onFinish","submitTimeout","title","width","resize","onOpenChange","visible","open"];let nP={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M880.1 154H143.9c-24.5 0-39.8 26.7-27.5 48L349 597.4V838c0 17.7 14.2 32 31.8 32h262.4c17.6 0 31.8-14.3 31.8-32V597.4L907.7 202c12.2-21.3-3.1-48-27.6-48zM603.4 798H420.6V642h182.9v156zm9.6-236.6l-9.5 16.6h-183l-9.5-16.6L212.7 226h598.6L613 561.4z"}}]},name:"filter",theme:"outlined"};var nz=y.forwardRef(function(e,t){return y.createElement(eM.A,(0,ez.A)({},e,{ref:t,icon:nP}))}),nI=["size","collapse","collapseLabel","initialValues","onValuesChange","form","placement","formRef","bordered","ignoreRules","footerRender"],nM=function(e){var t=e.items,n=e.prefixCls,r=e.size,o=void 0===r?"middle":r,a=e.collapse,i=e.collapseLabel,l=e.onValuesChange,d=e.bordered,p=e.values,f=e.footerRender,m=e.placement,g=(0,Q.tz)(),h="".concat(n,"-light-filter"),b=(0,x.X3)("LightFilter",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(h)}),(0,s.A)({},t.componentCls,{lineHeight:"30px","&::before":{display:"block",height:0,visibility:"hidden",content:"'.'"},"&-small":{lineHeight:t.lineHeight},"&-container":{display:"flex",flexWrap:"wrap",gap:t.marginXS},"&-item":(0,s.A)({whiteSpace:"nowrap"},"".concat(t.antCls,"-form-item"),{marginBlock:0}),"&-line":{minWidth:"198px"},"&-line:not(:first-child)":{marginBlockStart:"16px",marginBlockEnd:8},"&-collapse-icon":{width:t.controlHeight,height:t.controlHeight,borderRadius:"50%",display:"flex",alignItems:"center",justifyContent:"center"},"&-effective":(0,s.A)({},"".concat(t.componentCls,"-collapse-icon"),{backgroundColor:t.colorBgTextHover})}))]}),A=b.wrapSSR,w=b.hashId,S=(0,y.useState)(!1),C=(0,c.A)(S,2),O=C[0],k=C[1],j=(0,y.useState)(function(){return(0,u.A)({},p)}),E=(0,c.A)(j,2),P=E[0],z=E[1];(0,y.useEffect)(function(){z((0,u.A)({},p))},[p]);var I=(0,y.useMemo)(function(){var e=[],n=[];return t.forEach(function(t){(t.props||{}).secondary||a?e.push(t):n.push(t)}),{collapseItems:e,outsideItems:n}},[e.items]),M=I.collapseItems,R=I.outsideItems;return A((0,$.jsx)("div",{className:v()(h,w,"".concat(h,"-").concat(o),(0,s.A)({},"".concat(h,"-effective"),Object.keys(p).some(function(e){return Array.isArray(p[e])?p[e].length>0:p[e]}))),children:(0,$.jsxs)("div",{className:"".concat(h,"-container ").concat(w).trim(),children:[R.map(function(e,t){if(!(null!=e&&e.props))return e;var n=e.key,r=((null==e?void 0:e.props)||{}).fieldProps,o=null!=r&&r.placement?null==r?void 0:r.placement:m;return(0,$.jsx)("div",{className:"".concat(h,"-item ").concat(w).trim(),children:y.cloneElement(e,{fieldProps:(0,u.A)((0,u.A)({},e.props.fieldProps),{},{placement:o}),proFieldProps:(0,u.A)((0,u.A)({},e.props.proFieldProps),{},{light:!0,label:e.props.label,bordered:d}),bordered:d})},n||t)}),M.length?(0,$.jsx)("div",{className:"".concat(h,"-item ").concat(w).trim(),children:(0,$.jsx)(tu,{padding:24,open:O,onOpenChange:function(e){k(e)},placement:m,label:i||(a?(0,$.jsx)(nz,{className:"".concat(h,"-collapse-icon ").concat(w).trim()}):(0,$.jsx)(tm,{size:o,label:g.getMessage("form.lightFilter.more","更多筛选")})),footerRender:f,footer:{onConfirm:function(){l((0,u.A)({},P)),k(!1)},onClear:function(){var e={};M.forEach(function(t){e[t.props.name]=void 0}),l(e)}},children:M.map(function(e){var t=e.key,n=e.props,r=n.name,o=n.fieldProps,a=(0,u.A)((0,u.A)({},o),{},{onChange:function(e){return z((0,u.A)((0,u.A)({},P),{},(0,s.A)({},r,null!=e&&e.target?e.target.value:e))),!1}});P.hasOwnProperty(r)&&(a[e.props.valuePropName||"value"]=P[r]);var i=null!=o&&o.placement?null==o?void 0:o.placement:m;return(0,$.jsx)("div",{className:"".concat(h,"-line ").concat(w).trim(),children:y.cloneElement(e,{fieldProps:(0,u.A)((0,u.A)({},a),{},{placement:i})})},t)})})},"more"):null]})}))},nR=n(18182),nB=["children","trigger","onVisibleChange","onOpenChange","modalProps","onFinish","submitTimeout","title","width","visible","open"],nT=n(6807),nF=function(e){if(e&&!0!==e)return e},nN=function(e,t,n,r){return e?(0,$.jsxs)($.Fragment,{children:[n.getMessage("tableForm.collapsed","展开"),r&&"(".concat(r,")"),(0,$.jsx)(tf.A,{style:{marginInlineStart:"0.5em",transition:"0.3s all",transform:"rotate(".concat(.5*!e,"turn)")}})]}):(0,$.jsxs)($.Fragment,{children:[n.getMessage("tableForm.expand","收起"),(0,$.jsx)(tf.A,{style:{marginInlineStart:"0.5em",transition:"0.3s all",transform:"rotate(".concat(.5*!e,"turn)")}})]})};let nH=function(e){var t=e.setCollapsed,n=e.collapsed,r=void 0!==n&&n,o=e.submitter,a=e.style,i=e.hiddenNum,l=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls,c=(0,Q.tz)(),s=(0,y.useContext)(Q.Lx).hashId,d=nF(e.collapseRender)||nN;return(0,$.jsxs)(eZ.A,{style:a,size:16,children:[o,!1!==e.collapseRender&&(0,$.jsx)("a",{className:"".concat(l("pro-query-filter-collapse-button")," ").concat(s).trim(),onClick:function(){return t(!r)},children:null==d?void 0:d(r,e,c,i)})]})};var nL=["collapsed","layout","defaultCollapsed","defaultColsNumber","defaultFormItemsNumber","span","searchGutter","searchText","resetText","optionRender","collapseRender","onReset","onCollapse","labelWidth","style","split","preserve","ignoreRules","showHiddenNum","submitterColSpanProps"],nD={xs:513,sm:513,md:785,lg:992,xl:1057,xxl:1/0},n_={vertical:[[513,1,"vertical"],[785,2,"vertical"],[1057,3,"vertical"],[1/0,4,"vertical"]],default:[[513,1,"vertical"],[701,2,"vertical"],[1062,3,"horizontal"],[1352,3,"horizontal"],[1/0,4,"horizontal"]]},nW=function(e,t,n){if(n&&"number"==typeof n)return{span:n,layout:e};var r=((n?["xs","sm","md","lg","xl","xxl"].map(function(e){return[nD[e],24/n[e],"horizontal"]}):n_[e||"default"])||n_.default).find(function(e){return tO)&&!!n;M+=1;var u=y.isValidElement(t)&&(t.key||"".concat(null==(i=t.props)?void 0:i.name))||n;return y.isValidElement(t)&&d?e.preserve?{itemDom:y.cloneElement(t,{hidden:!0,key:u||n}),hidden:!0,colSpan:s}:{itemDom:null,colSpan:0,hidden:!0}:{itemDom:t,colSpan:s,hidden:!1}}),N=F.map(function(t,n){var r,o,a=t.itemDom,i=t.colSpan;if(null==a||null==(r=a.props)?void 0:r.hidden)return a;var c=y.isValidElement(a)&&(a.key||"".concat(null==(o=a.props)?void 0:o.name))||n;return(24-T%2424?24-(null!=(r=null==(o=e.submitterColSpanProps)?void 0:o.span)?r:S.span):24-a},[T,T%24+(null!=(n=null==(r=e.submitterColSpanProps)?void 0:r.span)?n:S.span),null==(o=e.submitterColSpanProps)?void 0:o.span]),_=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls("pro-query-filter");return(0,$.jsxs)(E.A,{gutter:k,justify:"start",className:v()("".concat(_,"-row"),l),children:[N,z&&(0,$.jsx)(P.A,(0,u.A)((0,u.A)({span:S.span,offset:D,className:v()(null==(a=e.submitterColSpanProps)?void 0:a.className)},e.submitterColSpanProps),{},{style:{textAlign:"end"},children:(0,$.jsx)(K.A.Item,{label:" ",colon:!1,shouldUpdate:!1,className:"".concat(_,"-actions ").concat(l).trim(),children:(0,$.jsx)(nH,{hiddenNum:H,collapsed:m,collapseRender:!!L&&x,submitter:z,setCollapsed:h},"pro-form-query-filter-actions")})}),"submitter")]},"resize-observer-row")},nV=nc()?null==(o=document)||null==(o=o.body)?void 0:o.clientWidth:1024,nX=n(51237),nU=n(5100),nY=n(90701),nG=n(829),nK=n(49032);let nQ=(e,t)=>{let n=`${t.componentCls}-item`,r=`${e}IconColor`,o=`${e}TitleColor`,a=`${e}DescriptionColor`,i=`${e}TailColor`,l=`${e}IconBgColor`,c=`${e}IconBorderColor`,s=`${e}DotColor`;return{[`${n}-${e} ${n}-icon`]:{backgroundColor:t[l],borderColor:t[c],[`> ${t.componentCls}-icon`]:{color:t[r],[`${t.componentCls}-icon-dot`]:{background:t[s]}}},[`${n}-${e}${n}-custom ${n}-icon`]:{[`> ${t.componentCls}-icon`]:{color:t[s]}},[`${n}-${e} > ${n}-container > ${n}-content > ${n}-title`]:{color:t[o],"&::after":{backgroundColor:t[i]}},[`${n}-${e} > ${n}-container > ${n}-content > ${n}-description`]:{color:t[a]},[`${n}-${e} > ${n}-container > ${n}-tail::after`]:{backgroundColor:t[i]}}},nJ=(0,tB.OF)("Steps",e=>{let{colorTextDisabled:t,controlHeightLG:n,colorTextLightSolid:r,colorText:o,colorPrimary:a,colorTextDescription:i,colorTextQuaternary:l,colorError:c,colorBorderSecondary:s,colorSplit:d}=e;return(e=>{let{componentCls:t}=e;return{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,nx.dF)(e)),{display:"flex",width:"100%",fontSize:0,textAlign:"initial"}),(e=>{let{componentCls:t,motionDurationSlow:n}=e,r=`${t}-item`,o=`${r}-icon`;return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({[r]:{position:"relative",display:"inline-block",flex:1,overflow:"hidden",verticalAlign:"top","&:last-child":{flex:"none",[`> ${r}-container > ${r}-tail, > ${r}-container > ${r}-content > ${r}-title::after`]:{display:"none"}}},[`${r}-container`]:{outline:"none",[`&:focus-visible ${o}`]:(0,nx.jk)(e)},[`${o}, ${r}-content`]:{display:"inline-block",verticalAlign:"top"},[o]:{width:e.iconSize,height:e.iconSize,marginTop:0,marginBottom:0,marginInlineStart:0,marginInlineEnd:e.marginXS,fontSize:e.iconFontSize,fontFamily:e.fontFamily,lineHeight:(0,z.zA)(e.iconSize),textAlign:"center",borderRadius:e.iconSize,border:`${(0,z.zA)(e.lineWidth)} ${e.lineType} transparent`,transition:`background-color ${n}, border-color ${n}`,[`${t}-icon`]:{position:"relative",top:e.iconTop,color:e.colorPrimary,lineHeight:1}},[`${r}-tail`]:{position:"absolute",top:e.calc(e.iconSize).div(2).equal(),insetInlineStart:0,width:"100%","&::after":{display:"inline-block",width:"100%",height:e.lineWidth,background:e.colorSplit,borderRadius:e.lineWidth,transition:`background ${n}`,content:'""'}},[`${r}-title`]:{position:"relative",display:"inline-block",paddingInlineEnd:e.padding,color:e.colorText,fontSize:e.fontSizeLG,lineHeight:(0,z.zA)(e.titleLineHeight),"&::after":{position:"absolute",top:e.calc(e.titleLineHeight).div(2).equal(),insetInlineStart:"100%",display:"block",width:9999,height:e.lineWidth,background:e.processTailColor,content:'""'}},[`${r}-subtitle`]:{display:"inline",marginInlineStart:e.marginXS,color:e.colorTextDescription,fontWeight:"normal",fontSize:e.fontSize},[`${r}-description`]:{color:e.colorTextDescription,fontSize:e.fontSize}},nQ("wait",e)),nQ("process",e)),{[`${r}-process > ${r}-container > ${r}-title`]:{fontWeight:e.fontWeightStrong}}),nQ("finish",e)),nQ("error",e)),{[`${r}${t}-next-error > ${t}-item-title::after`]:{background:e.colorError},[`${r}-disabled`]:{cursor:"not-allowed"}})})(e)),(e=>{let{componentCls:t,motionDurationSlow:n}=e;return{[`& ${t}-item`]:{[`&:not(${t}-item-active)`]:{[`& > ${t}-item-container[role='button']`]:{cursor:"pointer",[`${t}-item`]:{[`&-title, &-subtitle, &-description, &-icon ${t}-icon`]:{transition:`color ${n}`}},"&:hover":{[`${t}-item`]:{"&-title, &-subtitle, &-description":{color:e.colorPrimary}}}},[`&:not(${t}-item-process)`]:{[`& > ${t}-item-container[role='button']:hover`]:{[`${t}-item`]:{"&-icon":{borderColor:e.colorPrimary,[`${t}-icon`]:{color:e.colorPrimary}}}}}}},[`&${t}-horizontal:not(${t}-label-vertical)`]:{[`${t}-item`]:{paddingInlineStart:e.padding,whiteSpace:"nowrap","&:first-child":{paddingInlineStart:0},[`&:last-child ${t}-item-title`]:{paddingInlineEnd:0},"&-tail":{display:"none"},"&-description":{maxWidth:e.descriptionMaxWidth,whiteSpace:"normal"}}}}})(e)),(e=>{let{componentCls:t,customIconTop:n,customIconSize:r,customIconFontSize:o}=e;return{[`${t}-item-custom`]:{[`> ${t}-item-container > ${t}-item-icon`]:{height:"auto",background:"none",border:0,[`> ${t}-icon`]:{top:n,width:r,height:r,fontSize:o,lineHeight:(0,z.zA)(r)}}},[`&:not(${t}-vertical)`]:{[`${t}-item-custom`]:{[`${t}-item-icon`]:{width:"auto",background:"none"}}}}})(e)),(e=>{let{componentCls:t,iconSizeSM:n,fontSizeSM:r,fontSize:o,colorTextDescription:a}=e;return{[`&${t}-small`]:{[`&${t}-horizontal:not(${t}-label-vertical) ${t}-item`]:{paddingInlineStart:e.paddingSM,"&:first-child":{paddingInlineStart:0}},[`${t}-item-icon`]:{width:n,height:n,marginTop:0,marginBottom:0,marginInline:`0 ${(0,z.zA)(e.marginXS)}`,fontSize:r,lineHeight:(0,z.zA)(n),textAlign:"center",borderRadius:n},[`${t}-item-title`]:{paddingInlineEnd:e.paddingSM,fontSize:o,lineHeight:(0,z.zA)(n),"&::after":{top:e.calc(n).div(2).equal()}},[`${t}-item-description`]:{color:a,fontSize:o},[`${t}-item-tail`]:{top:e.calc(n).div(2).sub(e.paddingXXS).equal()},[`${t}-item-custom ${t}-item-icon`]:{width:"inherit",height:"inherit",lineHeight:"inherit",background:"none",border:0,borderRadius:0,[`> ${t}-icon`]:{fontSize:n,lineHeight:(0,z.zA)(n),transform:"none"}}}}})(e)),(e=>{let{componentCls:t,iconSizeSM:n,iconSize:r}=e;return{[`&${t}-vertical`]:{display:"flex",flexDirection:"column",[`> ${t}-item`]:{display:"block",flex:"1 0 auto",paddingInlineStart:0,overflow:"visible",[`${t}-item-icon`]:{float:"left",marginInlineEnd:e.margin},[`${t}-item-content`]:{display:"block",minHeight:e.calc(e.controlHeight).mul(1.5).equal(),overflow:"hidden"},[`${t}-item-title`]:{lineHeight:(0,z.zA)(r)},[`${t}-item-description`]:{paddingBottom:e.paddingSM}},[`> ${t}-item > ${t}-item-container > ${t}-item-tail`]:{position:"absolute",top:0,insetInlineStart:e.calc(r).div(2).sub(e.lineWidth).equal(),width:e.lineWidth,height:"100%",padding:`${(0,z.zA)(e.calc(e.marginXXS).mul(1.5).add(r).equal())} 0 ${(0,z.zA)(e.calc(e.marginXXS).mul(1.5).equal())}`,"&::after":{width:e.lineWidth,height:"100%"}},[`> ${t}-item:not(:last-child) > ${t}-item-container > ${t}-item-tail`]:{display:"block"},[` > ${t}-item > ${t}-item-container > ${t}-item-content > ${t}-item-title`]:{"&::after":{display:"none"}},[`&${t}-small ${t}-item-container`]:{[`${t}-item-tail`]:{position:"absolute",top:0,insetInlineStart:e.calc(n).div(2).sub(e.lineWidth).equal(),padding:`${(0,z.zA)(e.calc(e.marginXXS).mul(1.5).add(n).equal())} 0 ${(0,z.zA)(e.calc(e.marginXXS).mul(1.5).equal())}`},[`${t}-item-title`]:{lineHeight:(0,z.zA)(n)}}}}})(e)),(e=>{let{componentCls:t}=e,n=`${t}-item`;return{[`${t}-horizontal`]:{[`${n}-tail`]:{transform:"translateY(-50%)"}}}})(e)),(e=>{let{componentCls:t,iconSize:n,lineHeight:r,iconSizeSM:o}=e;return{[`&${t}-label-vertical`]:{[`${t}-item`]:{overflow:"visible","&-tail":{marginInlineStart:e.calc(n).div(2).add(e.controlHeightLG).equal(),padding:`0 ${(0,z.zA)(e.paddingLG)}`},"&-content":{display:"block",width:e.calc(n).div(2).add(e.controlHeightLG).mul(2).equal(),marginTop:e.marginSM,textAlign:"center"},"&-icon":{display:"inline-block",marginInlineStart:e.controlHeightLG},"&-title":{paddingInlineEnd:0,paddingInlineStart:0,"&::after":{display:"none"}},"&-subtitle":{display:"block",marginBottom:e.marginXXS,marginInlineStart:0,lineHeight:r}},[`&${t}-small:not(${t}-dot)`]:{[`${t}-item`]:{"&-icon":{marginInlineStart:e.calc(n).sub(o).div(2).add(e.controlHeightLG).equal()}}}}}})(e)),(e=>{let{componentCls:t,descriptionMaxWidth:n,lineHeight:r,dotCurrentSize:o,dotSize:a,motionDurationSlow:i}=e;return{[`&${t}-dot, &${t}-dot${t}-small`]:{[`${t}-item`]:{"&-title":{lineHeight:r},"&-tail":{top:e.calc(e.dotSize).sub(e.calc(e.lineWidth).mul(3).equal()).div(2).equal(),width:"100%",marginTop:0,marginBottom:0,marginInline:`${(0,z.zA)(e.calc(n).div(2).equal())} 0`,padding:0,"&::after":{width:`calc(100% - ${(0,z.zA)(e.calc(e.marginSM).mul(2).equal())})`,height:e.calc(e.lineWidth).mul(3).equal(),marginInlineStart:e.marginSM}},"&-icon":{width:a,height:a,marginInlineStart:e.calc(e.descriptionMaxWidth).sub(a).div(2).equal(),paddingInlineEnd:0,lineHeight:(0,z.zA)(a),background:"transparent",border:0,[`${t}-icon-dot`]:{position:"relative",float:"left",width:"100%",height:"100%",borderRadius:100,transition:`all ${i}`,"&::after":{position:"absolute",top:e.calc(e.marginSM).mul(-1).equal(),insetInlineStart:e.calc(a).sub(e.calc(e.controlHeightLG).mul(1.5).equal()).div(2).equal(),width:e.calc(e.controlHeightLG).mul(1.5).equal(),height:e.controlHeight,background:"transparent",content:'""'}}},"&-content":{width:n},[`&-process ${t}-item-icon`]:{position:"relative",top:e.calc(a).sub(o).div(2).equal(),width:o,height:o,lineHeight:(0,z.zA)(o),background:"none",marginInlineStart:e.calc(e.descriptionMaxWidth).sub(o).div(2).equal()},[`&-process ${t}-icon`]:{[`&:first-child ${t}-icon-dot`]:{insetInlineStart:0}}}},[`&${t}-vertical${t}-dot`]:{[`${t}-item-icon`]:{marginTop:e.calc(e.controlHeight).sub(a).div(2).equal(),marginInlineStart:0,background:"none"},[`${t}-item-process ${t}-item-icon`]:{marginTop:e.calc(e.controlHeight).sub(o).div(2).equal(),top:0,insetInlineStart:e.calc(a).sub(o).div(2).equal(),marginInlineStart:0},[`${t}-item > ${t}-item-container > ${t}-item-tail`]:{top:e.calc(e.controlHeight).sub(a).div(2).equal(),insetInlineStart:0,margin:0,padding:`${(0,z.zA)(e.calc(a).add(e.paddingXS).equal())} 0 ${(0,z.zA)(e.paddingXS)}`,"&::after":{marginInlineStart:e.calc(a).sub(e.lineWidth).div(2).equal()}},[`&${t}-small`]:{[`${t}-item-icon`]:{marginTop:e.calc(e.controlHeightSM).sub(a).div(2).equal()},[`${t}-item-process ${t}-item-icon`]:{marginTop:e.calc(e.controlHeightSM).sub(o).div(2).equal()},[`${t}-item > ${t}-item-container > ${t}-item-tail`]:{top:e.calc(e.controlHeightSM).sub(a).div(2).equal()}},[`${t}-item:first-child ${t}-icon-dot`]:{insetInlineStart:0},[`${t}-item-content`]:{width:"inherit"}}}})(e)),(e=>{let{componentCls:t,navContentMaxWidth:n,navArrowColor:r,stepsNavActiveColor:o,motionDurationSlow:a}=e;return{[`&${t}-navigation`]:{paddingTop:e.paddingSM,[`&${t}-small`]:{[`${t}-item`]:{"&-container":{marginInlineStart:e.calc(e.marginSM).mul(-1).equal()}}},[`${t}-item`]:{overflow:"visible",textAlign:"center","&-container":{display:"inline-block",height:"100%",marginInlineStart:e.calc(e.margin).mul(-1).equal(),paddingBottom:e.paddingSM,textAlign:"start",transition:`opacity ${a}`,[`${t}-item-content`]:{maxWidth:n},[`${t}-item-title`]:Object.assign(Object.assign({maxWidth:"100%",paddingInlineEnd:0},nx.L9),{"&::after":{display:"none"}})},[`&:not(${t}-item-active)`]:{[`${t}-item-container[role='button']`]:{cursor:"pointer","&:hover":{opacity:.85}}},"&:last-child":{flex:1,"&::after":{display:"none"}},"&::after":{position:"absolute",top:`calc(50% - ${(0,z.zA)(e.calc(e.paddingSM).div(2).equal())})`,insetInlineStart:"100%",display:"inline-block",width:e.fontSizeIcon,height:e.fontSizeIcon,borderTop:`${(0,z.zA)(e.lineWidth)} ${e.lineType} ${r}`,borderBottom:"none",borderInlineStart:"none",borderInlineEnd:`${(0,z.zA)(e.lineWidth)} ${e.lineType} ${r}`,transform:"translateY(-50%) translateX(-50%) rotate(45deg)",content:'""'},"&::before":{position:"absolute",bottom:0,insetInlineStart:"50%",display:"inline-block",width:0,height:e.lineWidthBold,backgroundColor:o,transition:`width ${a}, inset-inline-start ${a}`,transitionTimingFunction:"ease-out",content:'""'}},[`${t}-item${t}-item-active::before`]:{insetInlineStart:0,width:"100%"}},[`&${t}-navigation${t}-vertical`]:{[`> ${t}-item`]:{marginInlineEnd:0,"&::before":{display:"none"},[`&${t}-item-active::before`]:{top:0,insetInlineEnd:0,insetInlineStart:"unset",display:"block",width:e.calc(e.lineWidth).mul(3).equal(),height:`calc(100% - ${(0,z.zA)(e.marginLG)})`},"&::after":{position:"relative",insetInlineStart:"50%",display:"block",width:e.calc(e.controlHeight).mul(.25).equal(),height:e.calc(e.controlHeight).mul(.25).equal(),marginBottom:e.marginXS,textAlign:"center",transform:"translateY(-50%) translateX(-50%) rotate(135deg)"},"&:last-child":{"&::after":{display:"none"}},[`> ${t}-item-container > ${t}-item-tail`]:{visibility:"hidden"}}},[`&${t}-navigation${t}-horizontal`]:{[`> ${t}-item > ${t}-item-container > ${t}-item-tail`]:{visibility:"hidden"}}}})(e)),(e=>{let{componentCls:t}=e;return{[`&${t}-rtl`]:{direction:"rtl",[`${t}-item`]:{"&-subtitle":{float:"left"}},[`&${t}-navigation`]:{[`${t}-item::after`]:{transform:"rotate(-45deg)"}},[`&${t}-vertical`]:{[`> ${t}-item`]:{"&::after":{transform:"rotate(225deg)"},[`${t}-item-icon`]:{float:"right"}}},[`&${t}-dot`]:{[`${t}-item-icon ${t}-icon-dot, &${t}-small ${t}-item-icon ${t}-icon-dot`]:{float:"right"}}}}})(e)),(e=>{let{antCls:t,componentCls:n,iconSize:r,iconSizeSM:o,processIconColor:a,marginXXS:i,lineWidthBold:l,lineWidth:c,paddingXXS:s}=e,d=e.calc(r).add(e.calc(l).mul(4).equal()).equal(),u=e.calc(o).add(e.calc(e.lineWidth).mul(4).equal()).equal();return{[`&${n}-with-progress`]:{[`${n}-item`]:{paddingTop:s,[`&-process ${n}-item-container ${n}-item-icon ${n}-icon`]:{color:a}},[`&${n}-vertical > ${n}-item `]:{paddingInlineStart:s,[`> ${n}-item-container > ${n}-item-tail`]:{top:i,insetInlineStart:e.calc(r).div(2).sub(c).add(s).equal()}},[`&, &${n}-small`]:{[`&${n}-horizontal ${n}-item:first-child`]:{paddingBottom:s,paddingInlineStart:s}},[`&${n}-small${n}-vertical > ${n}-item > ${n}-item-container > ${n}-item-tail`]:{insetInlineStart:e.calc(o).div(2).sub(c).add(s).equal()},[`&${n}-label-vertical ${n}-item ${n}-item-tail`]:{top:e.calc(r).div(2).add(s).equal()},[`${n}-item-icon`]:{position:"relative",[`${t}-progress`]:{position:"absolute",insetInlineStart:"50%",top:"50%",transform:"translate(-50%, -50%)","&-inner":{width:`${(0,z.zA)(d)} !important`,height:`${(0,z.zA)(d)} !important`}}},[`&${n}-small`]:{[`&${n}-label-vertical ${n}-item ${n}-item-tail`]:{top:e.calc(o).div(2).add(s).equal()},[`${n}-item-icon ${t}-progress-inner`]:{width:`${(0,z.zA)(u)} !important`,height:`${(0,z.zA)(u)} !important`}}}}})(e)),(e=>{let{componentCls:t,inlineDotSize:n,inlineTitleColor:r,inlineTailColor:o}=e,a=e.calc(e.paddingXS).add(e.lineWidth).equal(),i={[`${t}-item-container ${t}-item-content ${t}-item-title`]:{color:r}};return{[`&${t}-inline`]:{width:"auto",display:"inline-flex",[`${t}-item`]:{flex:"none","&-container":{padding:`${(0,z.zA)(a)} ${(0,z.zA)(e.paddingXXS)} 0`,margin:`0 ${(0,z.zA)(e.calc(e.marginXXS).div(2).equal())}`,borderRadius:e.borderRadiusSM,cursor:"pointer",transition:`background-color ${e.motionDurationMid}`,"&:hover":{background:e.controlItemBgHover},"&[role='button']:hover":{opacity:1}},"&-icon":{width:n,height:n,marginInlineStart:`calc(50% - ${(0,z.zA)(e.calc(n).div(2).equal())})`,[`> ${t}-icon`]:{top:0},[`${t}-icon-dot`]:{borderRadius:e.calc(e.fontSizeSM).div(4).equal(),"&::after":{display:"none"}}},"&-content":{width:"auto",marginTop:e.calc(e.marginXS).sub(e.lineWidth).equal()},"&-title":{color:r,fontSize:e.fontSizeSM,lineHeight:e.lineHeightSM,fontWeight:"normal",marginBottom:e.calc(e.marginXXS).div(2).equal()},"&-description":{display:"none"},"&-tail":{marginInlineStart:0,top:e.calc(n).div(2).add(a).equal(),transform:"translateY(-50%)","&:after":{width:"100%",height:e.lineWidth,borderRadius:0,marginInlineStart:0,background:o}},[`&:first-child ${t}-item-tail`]:{width:"50%",marginInlineStart:"50%"},[`&:last-child ${t}-item-tail`]:{display:"block",width:"50%"},"&-wait":Object.assign({[`${t}-item-icon ${t}-icon ${t}-icon-dot`]:{backgroundColor:e.colorBorderBg,border:`${(0,z.zA)(e.lineWidth)} ${e.lineType} ${o}`}},i),"&-finish":Object.assign({[`${t}-item-tail::after`]:{backgroundColor:o},[`${t}-item-icon ${t}-icon ${t}-icon-dot`]:{backgroundColor:o,border:`${(0,z.zA)(e.lineWidth)} ${e.lineType} ${o}`}},i),"&-error":i,"&-active, &-process":Object.assign({[`${t}-item-icon`]:{width:n,height:n,marginInlineStart:`calc(50% - ${(0,z.zA)(e.calc(n).div(2).equal())})`,top:0}},i),[`&:not(${t}-item-active) > ${t}-item-container[role='button']:hover`]:{[`${t}-item-title`]:{color:r}}}}}})(e))}})((0,n$.oX)(e,{processIconColor:r,processTitleColor:o,processDescriptionColor:o,processIconBgColor:a,processIconBorderColor:a,processDotColor:a,processTailColor:d,waitTitleColor:i,waitDescriptionColor:i,waitTailColor:d,waitDotColor:t,finishIconColor:a,finishTitleColor:o,finishDescriptionColor:i,finishTailColor:a,finishDotColor:a,errorIconColor:r,errorTitleColor:c,errorDescriptionColor:c,errorTailColor:d,errorIconBgColor:c,errorIconBorderColor:c,errorDotColor:c,stepsNavActiveColor:a,stepsProgressSize:n,inlineDotSize:6,inlineTitleColor:l,inlineTailColor:s}))},e=>({titleLineHeight:e.controlHeight,customIconSize:e.controlHeight,customIconTop:0,customIconFontSize:e.controlHeightSM,iconSize:e.controlHeight,iconTop:-.5,iconFontSize:e.fontSize,iconSizeSM:e.fontSizeHeading3,dotSize:e.controlHeight/4,dotCurrentSize:e.controlHeightLG/4,navArrowColor:e.colorTextDisabled,navContentMaxWidth:"unset",descriptionMaxWidth:140,waitIconColor:e.wireframe?e.colorTextDisabled:e.colorTextLabel,waitIconBgColor:e.wireframe?e.colorBgContainer:e.colorFillContent,waitIconBorderColor:e.wireframe?e.colorTextDisabled:"transparent",finishIconBgColor:e.wireframe?e.colorBgContainer:e.controlItemBgActive,finishIconBorderColor:e.wireframe?e.colorPrimary:e.controlItemBgActive}));var nZ=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let n0=e=>{var t,n;let{percent:r,size:o,className:a,rootClassName:i,direction:l,items:c,responsive:s=!0,current:d=0,children:u,style:p}=e,f=nZ(e,["percent","size","className","rootClassName","direction","items","responsive","current","children","style"]),{xs:m}=(0,S.A)(s),{getPrefixCls:g,direction:b,className:x,style:$}=(0,tj.TP)("steps"),A=y.useMemo(()=>s&&m?"vertical":l,[s,m,l]),w=(0,nG.A)(o),C=g("steps",e.prefixCls),[O,k,j]=nJ(C),E="inline"===e.type,P=g("",e.iconPrefix),z=(t=c,n=u,t?t:(0,B.A)(n).map(e=>{if(y.isValidElement(e)){let{props:t}=e;return Object.assign({},t)}return null}).filter(e=>e)),I=E?void 0:r,M=Object.assign(Object.assign({},$),p),R=v()(x,{[`${C}-rtl`]:"rtl"===b,[`${C}-with-progress`]:void 0!==I},a,i,k,j),T={finish:y.createElement(nX.A,{className:`${C}-finish-icon`}),error:y.createElement(nU.A,{className:`${C}-error-icon`})};return O(y.createElement(nY.A,Object.assign({icons:T},f,{style:M,current:d,size:w,items:z,itemRender:E?(e,t)=>e.description?y.createElement(h.A,{title:e.description},t):t:void 0,stepIcon:({node:e,status:t})=>"process"===t&&void 0!==I?y.createElement("div",{className:`${C}-progress-icon`},y.createElement(nK.A,{type:"circle",percent:I,size:"small"===w?32:40,strokeWidth:4,format:()=>null}),e):e,direction:A,prefixCls:C,iconPrefix:P,className:R})))};n0.Step=nY.A.Step;var n1=["onFinish","step","formRef","title","stepProps"],n2=["current","onCurrentChange","submitter","stepsFormRender","stepsRender","stepFormRender","stepsProps","onFinish","formProps","containerStyle","formRef","formMapRef","layoutRender"],n4=y.createContext(void 0),n6={horizontal:function(e){var t=e.stepsDom,n=e.formDom;return(0,$.jsxs)($.Fragment,{children:[(0,$.jsx)(E.A,{gutter:{xs:8,sm:16,md:24},children:(0,$.jsx)(P.A,{span:24,children:t})}),(0,$.jsx)(E.A,{gutter:{xs:8,sm:16,md:24},children:(0,$.jsx)(P.A,{span:24,children:n})})]})},vertical:function(e){var t=e.stepsDom,n=e.formDom;return(0,$.jsxs)(E.A,{align:"stretch",wrap:!0,gutter:{xs:8,sm:16,md:24},children:[(0,$.jsx)(P.A,{xxl:4,xl:6,lg:7,md:8,sm:10,xs:12,children:y.cloneElement(t,{style:{height:"100%"}})}),(0,$.jsx)(P.A,{children:(0,$.jsx)("div",{style:{display:"flex",alignItems:"center",width:"100%",height:"100%"},children:n})})]})}},n8=y.createContext(null);function n3(e){var t,n=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-steps-form"),r=(0,x.X3)("StepsForm",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(n)}),(0,s.A)({},t.componentCls,{"&-container":{width:"max-content",minWidth:"420px",maxWidth:"100%",margin:"auto"},"&-steps-container":(0,s.A)({maxWidth:"1160px",margin:"auto"},"".concat(t.antCls,"-steps-vertical"),{height:"100%"}),"&-step":{display:"none",marginBlockStart:"32px","&-active":{display:"block"},"> form":{maxWidth:"100%"}}}))]}),o=r.wrapSSR,l=r.hashId;e.current,e.onCurrentChange;var f=e.submitter,m=e.stepsFormRender,h=e.stepsRender,b=e.stepFormRender,A=e.stepsProps,w=e.onFinish,S=e.formProps,O=e.containerStyle,k=e.formRef,j=e.formMapRef,E=e.layoutRender,P=(0,p.A)(e,n2),z=(0,y.useRef)(new Map),I=(0,y.useRef)(new Map),M=(0,y.useRef)([]),T=(0,y.useState)([]),F=(0,c.A)(T,2),N=F[0],H=F[1],L=(0,y.useState)(!1),D=(0,c.A)(L,2),_=D[0],W=D[1],q=(0,Q.tz)(),V=(0,C.A)(0,{value:e.current,onChange:e.onCurrentChange}),X=(0,c.A)(V,2),U=X[0],Y=X[1],G=(0,y.useMemo)(function(){return n6[(null==A?void 0:A.direction)||"horizontal"]},[null==A?void 0:A.direction]),J=(0,y.useMemo)(function(){return U===N.length-1},[N.length,U]),ee=(0,y.useCallback)(function(e,t){I.current.has(e)||H(function(t){return[].concat((0,d.A)(t),[e])}),I.current.set(e,t)},[]),et=(0,y.useCallback)(function(e){H(function(t){return t.filter(function(t){return t!==e})}),I.current.delete(e),z.current.delete(e)},[]);(0,y.useImperativeHandle)(j,function(){return M.current},[M.current]),(0,y.useImperativeHandle)(k,function(){var e;return null==(e=M.current[U||0])?void 0:e.current},[U,M.current]);var en=(0,y.useCallback)((t=(0,i.A)((0,a.A)().mark(function e(t,n){var r;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(z.current.set(t,n),!(!J||!w)){e.next=3;break}return e.abrupt("return");case 3:return W(!0),r=ef.apply(void 0,[{}].concat((0,d.A)(Array.from(z.current.values())))),e.prev=5,e.next=8,w(r);case 8:e.sent&&(Y(0),M.current.forEach(function(e){var t;return null==(t=e.current)?void 0:t.resetFields()})),e.next=15;break;case 12:e.prev=12,e.t0=e.catch(5),console.log(e.t0);case 15:return e.prev=15,W(!1),e.finish(15);case 18:case"end":return e.stop()}},e,null,[[5,12,15,18]])})),function(e,n){return t.apply(this,arguments)}),[J,w,W,Y]),er=(0,y.useMemo)(function(){var e=tc(R.A,"4.24.0")>-1,t=e?{items:N.map(function(e){var t=I.current.get(e);return(0,u.A)({key:e,title:null==t?void 0:t.title},null==t?void 0:t.stepProps)})}:{};return(0,$.jsx)("div",{className:"".concat(n,"-steps-container ").concat(l).trim(),style:{maxWidth:Math.min(320*N.length,1160)},children:(0,$.jsx)(n0,(0,u.A)((0,u.A)((0,u.A)({},A),t),{},{current:U,onChange:void 0,children:!e&&N.map(function(e){var t=I.current.get(e);return(0,$.jsx)(n0.Step,(0,u.A)({title:null==t?void 0:t.title},null==t?void 0:t.stepProps),e)})}))})},[N,l,n,U,A]),eo=Z(function(){var e;null==(e=M.current[U].current)||e.submit()}),ea=Z(function(){U<1||Y(U-1)}),ei=(0,y.useMemo)(function(){return!1!==f&&(0,$.jsx)(ek.Ay,(0,u.A)((0,u.A)({type:"primary",loading:_},null==f?void 0:f.submitButtonProps),{},{onClick:function(){var e;null==f||null==(e=f.onSubmit)||e.call(f),eo()},children:q.getMessage("stepsForm.next","下一步")}),"next")},[q,_,eo,f]),el=(0,y.useMemo)(function(){return!1!==f&&(0,$.jsx)(ek.Ay,(0,u.A)((0,u.A)({},null==f?void 0:f.resetButtonProps),{},{onClick:function(){var e;ea(),null==f||null==(e=f.onReset)||e.call(f)},children:q.getMessage("stepsForm.prev","上一步")}),"pre")},[q,ea,f]),ec=(0,y.useMemo)(function(){return!1!==f&&(0,$.jsx)(ek.Ay,(0,u.A)((0,u.A)({type:"primary",loading:_},null==f?void 0:f.submitButtonProps),{},{onClick:function(){var e;null==f||null==(e=f.onSubmit)||e.call(f),eo()},children:q.getMessage("stepsForm.submit","提交")}),"submit")},[q,_,eo,f]),es=Z(function(){U>N.length-2||Y(U+1)}),ed=(0,y.useMemo)(function(){var e=[],t=U||0;if(t<1?1===N.length?e.push(ec):e.push(ei):t+1===N.length?e.push(el,ec):e.push(el,ei),e=e.filter(y.isValidElement),f&&f.render){var n,r={form:null==(n=M.current[U])?void 0:n.current,onSubmit:eo,step:U,onPre:ea};return f.render(r,e)}return f&&(null==f?void 0:f.render)===!1?null:e},[N.length,ei,eo,el,ea,U,ec,f]),eu=(0,y.useMemo)(function(){return(0,B.A)(e.children).map(function(e,t){var r=e.props,o=r.name||"".concat(t),a=U===t,i=a?{contentRender:b,submitter:!1}:{};return(0,$.jsx)("div",{className:v()("".concat(n,"-step"),l,(0,s.A)({},"".concat(n,"-step-active"),a)),children:(0,$.jsx)(n8.Provider,{value:(0,u.A)((0,u.A)((0,u.A)((0,u.A)({},i),S),r),{},{name:o,step:t}),children:e})},o)})},[S,l,n,e.children,U,b]),ep=(0,y.useMemo)(function(){return h?h(N.map(function(e){var t;return{key:e,title:null==(t=I.current.get(e))?void 0:t.title}}),er):er},[N,er,h]),em=(0,y.useMemo)(function(){return(0,$.jsxs)("div",{className:"".concat(n,"-container ").concat(l).trim(),style:O,children:[eu,m?null:(0,$.jsx)(eZ.A,{children:ed})]})},[O,eu,l,n,m,ed]),eg=(0,y.useMemo)(function(){var e={stepsDom:ep,formDom:em};if(m)if(E)return m(E(e),ed);else return m(G(e),ed);return E?E(e):G(e)},[ep,em,G,m,ed,E]);return o((0,$.jsx)("div",{className:v()(n,l),children:(0,$.jsx)(K.A.Provider,(0,u.A)((0,u.A)({},P),{},{children:(0,$.jsx)(n4.Provider,{value:{loading:_,setLoading:W,regForm:ee,keyArray:N,next:es,formArrayRef:M,formMapRef:I,lastStep:J,unRegForm:et,onFormFinish:en},children:eg})}))}))}function n5(e){return(0,$.jsx)(Q.TY,{needDeps:!0,children:(0,$.jsx)(n3,(0,u.A)({},e))})}n5.StepForm=function(e){var t,n=(0,y.useRef)(),r=(0,y.useContext)(n4),o=(0,y.useContext)(n8),l=(0,u.A)((0,u.A)({},e),o),c=l.onFinish,s=l.step,d=l.formRef,f=(l.title,l.stepProps,(0,p.A)(l,n1));return(0,T.g9)(!f.submitter,"StepForm 不包含提交按钮,请在 StepsForm 上"),(0,y.useImperativeHandle)(d,function(){return n.current},[null==d?void 0:d.current]),(0,y.useEffect)(function(){if(l.name||l.step){var e=(l.name||l.step).toString();return null==r||r.regForm(e,l),function(){null==r||r.unRegForm(e)}}},[]),r&&null!=r&&r.formArrayRef&&(r.formArrayRef.current[s||0]=n),(0,$.jsx)(eJ,(0,u.A)({formRef:n,onFinish:(t=(0,i.A)((0,a.A)().mark(function e(t){return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(f.name&&(null==r||r.onFormFinish(f.name,t)),!c){e.next=9;break}return null==r||r.setLoading(!0),e.next=5,null==c?void 0:c(t);case 5:return e.sent&&(null==r||r.next()),null==r||r.setLoading(!1),e.abrupt("return");case 9:null!=r&&r.lastStep||null==r||r.next();case 10:case"end":return e.stop()}},e)})),function(e){return t.apply(this,arguments)}),onInit:function(e,t){var o;n.current=t,r&&null!=r&&r.formArrayRef&&(r.formArrayRef.current[s||0]=n),null==f||null==(o=f.onInit)||o.call(f,e,t)},layout:"vertical"},(0,O.A)(f,["layoutType","columns"])))},n5.useForm=K.A.useForm;var n7=["steps","columns","forceUpdate","grid"],n9=["name","originDependencies","children","ignoreFormListField"],re=function(e){var t=e.name,n=e.originDependencies,r=void 0===n?t:n,o=e.children,a=e.ignoreFormListField,i=(0,p.A)(e,n9),l=(0,y.useContext)(er),c=(0,y.useContext)(eq),s=(0,y.useMemo)(function(){return t.map(function(e){var t,n=[e];return!a&&void 0!==c.name&&null!=(t=c.listName)&&t.length&&n.unshift(c.listName),n.flat(1)})},[c.listName,c.name,a,null==t?void 0:t.toString()]);return(0,$.jsx)(K.A.Item,(0,u.A)((0,u.A)({},i),{},{noStyle:!0,shouldUpdate:function(e,t,n){if("boolean"==typeof i.shouldUpdate)return i.shouldUpdate;if("function"==typeof i.shouldUpdate){var r;return null==(r=i.shouldUpdate)?void 0:r.call(i,e,t,n)}return s.some(function(n){return!en((0,ed.A)(e,n),(0,ed.A)(t,n))})},children:function(e){for(var n={},a=0;a1&&void 0!==arguments[1]&&arguments[1],n="".concat("valueType request plain renderFormItem render text formItemProps valueEnum"," ").concat("fieldProps isDefaultDom groupProps contentRender submitterProps submitter").split(/[\s\n]+/),r={};return Object.keys(e||{}).forEach(function(o){(!n.includes(o)||t)&&(r[o]=e[o])}),r}var rr=n(68101),ro=n(52193),ra=n(54121),ri=n(40682),rl=n(31108);let rc=new z.Mo("antStatusProcessing",{"0%":{transform:"scale(0.8)",opacity:.5},"100%":{transform:"scale(2.4)",opacity:0}}),rs=new z.Mo("antZoomBadgeIn",{"0%":{transform:"scale(0) translate(50%, -50%)",opacity:0},"100%":{transform:"scale(1) translate(50%, -50%)"}}),rd=new z.Mo("antZoomBadgeOut",{"0%":{transform:"scale(1) translate(50%, -50%)"},"100%":{transform:"scale(0) translate(50%, -50%)",opacity:0}}),ru=new z.Mo("antNoWrapperZoomBadgeIn",{"0%":{transform:"scale(0)",opacity:0},"100%":{transform:"scale(1)"}}),rp=new z.Mo("antNoWrapperZoomBadgeOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0)",opacity:0}}),rf=new z.Mo("antBadgeLoadingCircle",{"0%":{transformOrigin:"50%"},"100%":{transform:"translate(50%, -50%) rotate(360deg)",transformOrigin:"50%"}}),rm=e=>{let{fontHeight:t,lineWidth:n,marginXS:r,colorBorderBg:o}=e,a=e.colorTextLightSolid,i=e.colorError,l=e.colorErrorHover;return(0,n$.oX)(e,{badgeFontHeight:t,badgeShadowSize:n,badgeTextColor:a,badgeColor:i,badgeColorHover:l,badgeShadowColor:o,badgeProcessingDuration:"1.2s",badgeRibbonOffset:r,badgeRibbonCornerTransform:"scaleY(0.75)",badgeRibbonCornerFilter:"brightness(75%)"})},rg=e=>{let{fontSize:t,lineHeight:n,fontSizeSM:r,lineWidth:o}=e;return{indicatorZIndex:"auto",indicatorHeight:Math.round(t*n)-2*o,indicatorHeightSM:t,dotSize:r/2,textFontSize:r,textFontSizeSM:r,textFontWeight:"normal",statusSize:r/2}},rh=(0,tB.OF)("Badge",e=>(e=>{let{componentCls:t,iconCls:n,antCls:r,badgeShadowSize:o,textFontSize:a,textFontSizeSM:i,statusSize:l,dotSize:c,textFontWeight:s,indicatorHeight:d,indicatorHeightSM:u,marginXS:p,calc:f}=e,m=`${r}-scroll-number`,g=(0,rl.A)(e,(e,{darkColor:n})=>({[`&${t} ${t}-color-${e}`]:{background:n,[`&:not(${t}-count)`]:{color:n},"a:hover &":{background:n}}}));return{[t]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,nx.dF)(e)),{position:"relative",display:"inline-block",width:"fit-content",lineHeight:1,[`${t}-count`]:{display:"inline-flex",justifyContent:"center",zIndex:e.indicatorZIndex,minWidth:d,height:d,color:e.badgeTextColor,fontWeight:s,fontSize:a,lineHeight:(0,z.zA)(d),whiteSpace:"nowrap",textAlign:"center",background:e.badgeColor,borderRadius:f(d).div(2).equal(),boxShadow:`0 0 0 ${(0,z.zA)(o)} ${e.badgeShadowColor}`,transition:`background ${e.motionDurationMid}`,a:{color:e.badgeTextColor},"a:hover":{color:e.badgeTextColor},"a:hover &":{background:e.badgeColorHover}},[`${t}-count-sm`]:{minWidth:u,height:u,fontSize:i,lineHeight:(0,z.zA)(u),borderRadius:f(u).div(2).equal()},[`${t}-multiple-words`]:{padding:`0 ${(0,z.zA)(e.paddingXS)}`,bdi:{unicodeBidi:"plaintext"}},[`${t}-dot`]:{zIndex:e.indicatorZIndex,width:c,minWidth:c,height:c,background:e.badgeColor,borderRadius:"100%",boxShadow:`0 0 0 ${(0,z.zA)(o)} ${e.badgeShadowColor}`},[`${t}-count, ${t}-dot, ${m}-custom-component`]:{position:"absolute",top:0,insetInlineEnd:0,transform:"translate(50%, -50%)",transformOrigin:"100% 0%",[`&${n}-spin`]:{animationName:rf,animationDuration:"1s",animationIterationCount:"infinite",animationTimingFunction:"linear"}},[`&${t}-status`]:{lineHeight:"inherit",verticalAlign:"baseline",[`${t}-status-dot`]:{position:"relative",top:-1,display:"inline-block",width:l,height:l,verticalAlign:"middle",borderRadius:"50%"},[`${t}-status-success`]:{backgroundColor:e.colorSuccess},[`${t}-status-processing`]:{overflow:"visible",color:e.colorInfo,backgroundColor:e.colorInfo,borderColor:"currentcolor","&::after":{position:"absolute",top:0,insetInlineStart:0,width:"100%",height:"100%",borderWidth:o,borderStyle:"solid",borderColor:"inherit",borderRadius:"50%",animationName:rc,animationDuration:e.badgeProcessingDuration,animationIterationCount:"infinite",animationTimingFunction:"ease-in-out",content:'""'}},[`${t}-status-default`]:{backgroundColor:e.colorTextPlaceholder},[`${t}-status-error`]:{backgroundColor:e.colorError},[`${t}-status-warning`]:{backgroundColor:e.colorWarning},[`${t}-status-text`]:{marginInlineStart:p,color:e.colorText,fontSize:e.fontSize}}}),g),{[`${t}-zoom-appear, ${t}-zoom-enter`]:{animationName:rs,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack,animationFillMode:"both"},[`${t}-zoom-leave`]:{animationName:rd,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack,animationFillMode:"both"},[`&${t}-not-a-wrapper`]:{[`${t}-zoom-appear, ${t}-zoom-enter`]:{animationName:ru,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack},[`${t}-zoom-leave`]:{animationName:rp,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack},[`&:not(${t}-status)`]:{verticalAlign:"middle"},[`${m}-custom-component, ${t}-count`]:{transform:"none"},[`${m}-custom-component, ${m}`]:{position:"relative",top:"auto",display:"block",transformOrigin:"50% 50%"}},[m]:{overflow:"hidden",transition:`all ${e.motionDurationMid} ${e.motionEaseOutBack}`,[`${m}-only`]:{position:"relative",display:"inline-block",height:d,transition:`all ${e.motionDurationSlow} ${e.motionEaseOutBack}`,WebkitTransformStyle:"preserve-3d",WebkitBackfaceVisibility:"hidden",[`> p${m}-only-unit`]:{height:d,margin:0,WebkitTransformStyle:"preserve-3d",WebkitBackfaceVisibility:"hidden"}},[`${m}-symbol`]:{verticalAlign:"top"}},"&-rtl":{direction:"rtl",[`${t}-count, ${t}-dot, ${m}-custom-component`]:{transform:"translate(-50%, -50%)"}}})}})(rm(e)),rg),rb=(0,tB.OF)(["Badge","Ribbon"],e=>(e=>{let{antCls:t,badgeFontHeight:n,marginXS:r,badgeRibbonOffset:o,calc:a}=e,i=`${t}-ribbon`,l=`${t}-ribbon-wrapper`,c=(0,rl.A)(e,(e,{darkColor:t})=>({[`&${i}-color-${e}`]:{background:t,color:t}}));return{[l]:{position:"relative"},[i]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,nx.dF)(e)),{position:"absolute",top:r,padding:`0 ${(0,z.zA)(e.paddingXS)}`,color:e.colorPrimary,lineHeight:(0,z.zA)(n),whiteSpace:"nowrap",backgroundColor:e.colorPrimary,borderRadius:e.borderRadiusSM,[`${i}-text`]:{color:e.badgeTextColor},[`${i}-corner`]:{position:"absolute",top:"100%",width:o,height:o,color:"currentcolor",border:`${(0,z.zA)(a(o).div(2).equal())} solid`,transform:e.badgeRibbonCornerTransform,transformOrigin:"top",filter:e.badgeRibbonCornerFilter}}),c),{[`&${i}-placement-end`]:{insetInlineEnd:a(o).mul(-1).equal(),borderEndEndRadius:0,[`${i}-corner`]:{insetInlineEnd:0,borderInlineEndColor:"transparent",borderBlockEndColor:"transparent"}},[`&${i}-placement-start`]:{insetInlineStart:a(o).mul(-1).equal(),borderEndStartRadius:0,[`${i}-corner`]:{insetInlineStart:0,borderBlockEndColor:"transparent",borderInlineStartColor:"transparent"}},"&-rtl":{direction:"rtl"}})}})(rm(e)),rg),rv=e=>{let t,{prefixCls:n,value:r,current:o,offset:a=0}=e;return a&&(t={position:"absolute",top:`${a}00%`,left:0}),y.createElement("span",{style:t,className:v()(`${n}-only-unit`,{current:o})},r)},ry=e=>{let t,n,{prefixCls:r,count:o,value:a}=e,i=Number(a),l=Math.abs(o),[c,s]=y.useState(i),[d,u]=y.useState(l),p=()=>{s(i),u(l)};if(y.useEffect(()=>{let e=setTimeout(p,1e3);return()=>clearTimeout(e)},[i]),c===i||Number.isNaN(i)||Number.isNaN(c))t=[y.createElement(rv,Object.assign({},e,{key:i,current:!0}))],n={transition:"none"};else{t=[];let r=i+10,o=[];for(let e=i;e<=r;e+=1)o.push(e);let a=de%10===c);t=(a<0?o.slice(0,s+1):o.slice(s)).map((t,n)=>y.createElement(rv,Object.assign({},e,{key:t,value:t%10,offset:a<0?n-s:n,current:n===s}))),n={transform:`translateY(${-function(e,t,n){let r=e,o=0;for(;(r+10)%10!==t;)r+=n,o+=n;return o}(c,i,a)}00%)`}}return y.createElement("span",{className:`${r}-only`,style:n,onTransitionEnd:p},t)};var rx=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let r$=y.forwardRef((e,t)=>{let{prefixCls:n,count:r,className:o,motionClassName:a,style:i,title:l,show:c,component:s="sup",children:d}=e,u=rx(e,["prefixCls","count","className","motionClassName","style","title","show","component","children"]),{getPrefixCls:p}=y.useContext(tj.QO),f=p("scroll-number",n),m=Object.assign(Object.assign({},u),{"data-show":c,style:i,className:v()(f,o,a),title:l}),g=r;if(r&&Number(r)%1==0){let e=String(r).split("");g=y.createElement("bdi",null,e.map((t,n)=>y.createElement(ry,{prefixCls:f,count:Number(r),value:t,key:e.length-n})))}return((null==i?void 0:i.borderColor)&&(m.style=Object.assign(Object.assign({},i),{boxShadow:`0 0 0 1px ${i.borderColor} inset`})),d)?(0,ri.Ob)(d,e=>({className:v()(`${f}-custom-component`,null==e?void 0:e.className,a)})):y.createElement(s,Object.assign({},m,{ref:t}),g)});var rA=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let rw=y.forwardRef((e,t)=>{var n,r,o,a,i;let{prefixCls:l,scrollNumberPrefixCls:c,children:s,status:d,text:u,color:p,count:f=null,overflowCount:m=99,dot:g=!1,size:h="default",title:b,offset:x,style:$,className:A,rootClassName:w,classNames:S,styles:C,showZero:O=!1}=e,k=rA(e,["prefixCls","scrollNumberPrefixCls","children","status","text","color","count","overflowCount","dot","size","title","offset","style","className","rootClassName","classNames","styles","showZero"]),{getPrefixCls:j,direction:E,badge:P}=y.useContext(tj.QO),z=j("badge",l),[I,M,R]=rh(z),B=f>m?`${m}+`:f,T="0"===B||0===B||"0"===u||0===u,F=null===f||T&&!O,N=(null!=d||null!=p)&&F,H=null!=d||!T,L=g&&!T,D=L?"":B,_=(0,y.useMemo)(()=>((null==D||""===D)&&(null==u||""===u)||T&&!O)&&!L,[D,T,O,L,u]),W=(0,y.useRef)(f);_||(W.current=f);let q=W.current,V=(0,y.useRef)(D);_||(V.current=D);let X=V.current,U=(0,y.useRef)(L);_||(U.current=L);let Y=(0,y.useMemo)(()=>{if(!x)return Object.assign(Object.assign({},null==P?void 0:P.style),$);let e={marginTop:x[1]};return"rtl"===E?e.left=Number.parseInt(x[0],10):e.right=-Number.parseInt(x[0],10),Object.assign(Object.assign(Object.assign({},e),null==P?void 0:P.style),$)},[E,x,$,null==P?void 0:P.style]),G=null!=b?b:"string"==typeof q||"number"==typeof q?q:void 0,K=!_&&(0===u?O:!!u&&!0!==u),Q=K?y.createElement("span",{className:`${z}-status-text`},u):null,J=q&&"object"==typeof q?(0,ri.Ob)(q,e=>({style:Object.assign(Object.assign({},Y),e.style)})):void 0,Z=(0,ra.nP)(p,!1),ee=v()(null==S?void 0:S.indicator,null==(n=null==P?void 0:P.classNames)?void 0:n.indicator,{[`${z}-status-dot`]:N,[`${z}-status-${d}`]:!!d,[`${z}-color-${p}`]:Z}),et={};p&&!Z&&(et.color=p,et.background=p);let en=v()(z,{[`${z}-status`]:N,[`${z}-not-a-wrapper`]:!s,[`${z}-rtl`]:"rtl"===E},A,w,null==P?void 0:P.className,null==(r=null==P?void 0:P.classNames)?void 0:r.root,null==S?void 0:S.root,M,R);if(!s&&N&&(u||H||!F)){let e=Y.color;return I(y.createElement("span",Object.assign({},k,{className:en,style:Object.assign(Object.assign(Object.assign({},null==C?void 0:C.root),null==(o=null==P?void 0:P.styles)?void 0:o.root),Y)}),y.createElement("span",{className:ee,style:Object.assign(Object.assign(Object.assign({},null==C?void 0:C.indicator),null==(a=null==P?void 0:P.styles)?void 0:a.indicator),et)}),K&&y.createElement("span",{style:{color:e},className:`${z}-status-text`},u)))}return I(y.createElement("span",Object.assign({ref:t},k,{className:en,style:Object.assign(Object.assign({},null==(i=null==P?void 0:P.styles)?void 0:i.root),null==C?void 0:C.root)}),s,y.createElement(ro.Ay,{visible:!_,motionName:`${z}-zoom`,motionAppear:!1,motionDeadline:1e3},({className:e})=>{var t,n;let r=j("scroll-number",c),o=U.current,a=v()(null==S?void 0:S.indicator,null==(t=null==P?void 0:P.classNames)?void 0:t.indicator,{[`${z}-dot`]:o,[`${z}-count`]:!o,[`${z}-count-sm`]:"small"===h,[`${z}-multiple-words`]:!o&&X&&X.toString().length>1,[`${z}-status-${d}`]:!!d,[`${z}-color-${p}`]:Z}),i=Object.assign(Object.assign(Object.assign({},null==C?void 0:C.indicator),null==(n=null==P?void 0:P.styles)?void 0:n.indicator),Y);return p&&!Z&&((i=i||{}).background=p),y.createElement(r$,{prefixCls:r,show:!_,motionClassName:e,className:a,count:X,title:G,style:i,key:"scrollNumber"},J)}),Q))});rw.Ribbon=e=>{let{className:t,prefixCls:n,style:r,color:o,children:a,text:i,placement:l="end",rootClassName:c}=e,{getPrefixCls:s,direction:d}=y.useContext(tj.QO),u=s("ribbon",n),p=`${u}-wrapper`,[f,m,g]=rb(u,p),h=(0,ra.nP)(o,!1),b=v()(u,`${u}-placement-${l}`,{[`${u}-rtl`]:"rtl"===d,[`${u}-color-${o}`]:h},t),x={},$={};return o&&!h&&(x.background=o,$.color=o),f(y.createElement("div",{className:v()(p,c,m,g)},a,y.createElement("div",{className:v()(b,m),style:Object.assign(Object.assign({},x),r)},y.createElement("span",{className:`${u}-text`},i),y.createElement("div",{className:`${u}-corner`,style:$}))))};var rS=function(e){var t=e.color,n=e.children;return(0,$.jsx)(rw,{color:t,text:n})},rC=function(e){var t;return"map"===("string"===(t=Object.prototype.toString.call(e).match(/^\[object (.*)\]$/)[1].toLowerCase())&&"object"===(0,l.A)(e)?"object":null===e?"null":void 0===e?"undefined":t)?e:new Map(Object.entries(e||{}))},rO={Success:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"success",text:t})},Error:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"error",text:t})},Default:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"default",text:t})},Processing:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"processing",text:t})},Warning:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"warning",text:t})},success:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"success",text:t})},error:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"error",text:t})},default:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"default",text:t})},processing:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"processing",text:t})},warning:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"warning",text:t})}},rk=function e(t,n,r){if(Array.isArray(t))return(0,$.jsx)(eZ.A,{split:",",size:2,wrap:!0,children:t.map(function(t,r){return e(t,n,r)})},r);var o=rC(n);if(!o.has(t)&&!o.has("".concat(t)))return(null==t?void 0:t.label)||t;var a=o.get(t)||o.get("".concat(t));if(!a)return(0,$.jsx)(y.Fragment,{children:(null==t?void 0:t.label)||t},r);var i=a.status,l=a.color,c=rO[i||"Init"];return c?(0,$.jsx)(c,{children:a.text},r):l?(0,$.jsx)(rS,{color:l,children:a.text},r):(0,$.jsx)(y.Fragment,{children:a.text||a},r)},rj=function(e){return void 0===e?{}:0>=tc(R.A,"5.13.0")?{bordered:e}:{variant:e?void 0:"borderless"}},rE=n(60209),rP=n(4811),rz=n(36492),rI=n(95725),rM=["label","prefixCls","onChange","value","mode","children","defaultValue","size","showSearch","disabled","style","className","bordered","options","onSearch","allowClear","labelInValue","fieldNames","lightLabel","labelTrigger","optionFilterProp","optionLabelProp","valueMaxLength","fetchDataOnSearch","fetchData"],rR=function(e,t){return"object"!==(0,l.A)(t)?e[t]||t:e[null==t?void 0:t.value]||t.label};let rB=y.forwardRef(function(e,t){var n=e.label,r=e.prefixCls,o=e.onChange,a=e.value,i=e.mode,l=(e.children,e.defaultValue,e.size),d=e.showSearch,f=e.disabled,m=e.style,h=e.className,b=e.bordered,A=e.options,w=e.onSearch,S=e.allowClear,C=e.labelInValue,O=e.fieldNames,k=e.lightLabel,j=e.labelTrigger,E=e.optionFilterProp,P=e.optionLabelProp,z=void 0===P?"":P,I=e.valueMaxLength,M=e.fetchDataOnSearch,R=void 0!==M&&M,T=e.fetchData,F=(0,p.A)(e,rM),N=e.placeholder,H=void 0===N?n:N,L=O||{},D=L.label,_=void 0===D?"label":D,W=L.value,q=void 0===W?"value":W,V=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-field-select-light-select"),X=(0,y.useState)(!1),U=(0,c.A)(X,2),Y=U[0],G=U[1],K=(0,y.useState)(""),Q=(0,c.A)(K,2),J=Q[0],Z=Q[1],ee=(0,x.X3)("LightSelect",function(e){return(0,s.A)({},".".concat(V),(0,s.A)((0,s.A)({},"".concat(e.antCls,"-select"),{position:"absolute",width:"153px",height:"28px",visibility:"hidden","&-selector":{height:28}}),"&.".concat(V,"-searchable"),(0,s.A)({},"".concat(e.antCls,"-select"),{width:"200px","&-selector":{height:28}})))}),et=ee.wrapSSR,en=ee.hashId,er=(0,y.useMemo)(function(){var e={};return null==A||A.forEach(function(t){var n=t[z]||t[_],r=t[q];e[r]=n||r}),e},[_,A,q,z]),eo=(0,y.useMemo)(function(){return Reflect.has(F,"open")?null==F?void 0:F.open:Y},[Y,F]),ea=Array.isArray(a)?a.map(function(e){return rR(er,e)}):rR(er,a);return et((0,$.jsxs)("div",{className:v()(V,en,(0,s.A)({},"".concat(V,"-searchable"),d),"".concat(V,"-container-").concat(F.placement||"bottomLeft"),h),style:m,onClick:function(e){if(!f){var t;(null==k||null==(t=k.current)||null==(t=t.labelRef)||null==(t=t.current)?void 0:t.contains(e.target))&&G(!Y)}},children:[(0,$.jsx)(rz.A,(0,u.A)((0,u.A)((0,u.A)({},F),{},{allowClear:S,value:a,mode:i,labelInValue:C,size:l,disabled:f,onChange:function(e,t){null==o||o(e,t),"multiple"!==i&&G(!1)}},rj(b)),{},{showSearch:d,onSearch:d?function(e){R&&T&&T(e),null==w||w(e)}:void 0,style:m,dropdownRender:function(e){return(0,$.jsxs)("div",{ref:t,children:[d&&(0,$.jsx)("div",{style:{margin:"4px 8px"},children:(0,$.jsx)(rI.A,{value:J,allowClear:!!S,onChange:function(e){Z(e.target.value),R&&T&&T(e.target.value),null==w||w(e.target.value)},onKeyDown:function(e){"Backspace"===e.key?e.stopPropagation():("ArrowUp"===e.key||"ArrowDown"===e.key)&&e.preventDefault()},style:{width:"100%"},prefix:(0,$.jsx)(rP.A,{})})}),e]})},open:eo,onDropdownVisibleChange:function(e){var t;e||Z(""),j||G(e),null==F||null==(t=F.onDropdownVisibleChange)||t.call(F,e)},prefixCls:r,options:w||!J?A:null==A?void 0:A.filter(function(e){var t,n;return E?(0,B.A)(e[E]).join("").toLowerCase().includes(J):(null==(t=String(e[_]))||null==(t=t.toLowerCase())?void 0:t.includes(null==J?void 0:J.toLowerCase()))||(null==(n=e[q])||null==(n=n.toString())||null==(n=n.toLowerCase())?void 0:n.includes(null==J?void 0:J.toLowerCase()))})})),(0,$.jsx)(tm,{ellipsis:!0,label:n,placeholder:H,disabled:f,bordered:b,allowClear:!!S,value:ea||(null==a?void 0:a.label)||a,onClear:function(){null==o||o(void 0,void 0)},ref:k,valueMaxLength:void 0===I?41:I})]}))});var rT=["optionItemRender","mode","onSearch","onFocus","onChange","autoClearSearchValue","searchOnFocus","resetAfterSelect","fetchDataOnSearch","optionFilterProp","optionLabelProp","className","disabled","options","fetchData","resetData","prefixCls","onClear","searchValue","showSearch","fieldNames","defaultSearchValue","preserveOriginalLabel"],rF=["className","optionType"];let rN=y.forwardRef(function(e,t){var n=e.optionItemRender,r=e.mode,o=e.onSearch,a=e.onFocus,i=e.onChange,l=e.autoClearSearchValue,d=void 0===l||l,f=e.searchOnFocus,m=void 0!==f&&f,h=e.resetAfterSelect,b=void 0!==h&&h,x=e.fetchDataOnSearch,A=void 0===x||x,w=e.optionFilterProp,S=void 0===w?"label":w,C=e.optionLabelProp,O=e.className,k=e.disabled,j=e.options,E=e.fetchData,P=e.resetData,z=e.prefixCls,I=e.onClear,M=e.searchValue,R=e.showSearch,B=e.fieldNames,T=e.defaultSearchValue,F=e.preserveOriginalLabel,N=void 0!==F&&F,H=(0,p.A)(e,rT),L=B||{},D=L.label,_=void 0===D?"label":D,W=L.value,q=void 0===W?"value":W,V=L.options,X=void 0===V?"options":V,U=(0,y.useState)(null!=M?M:T),Y=(0,c.A)(U,2),G=Y[0],K=Y[1],Q=(0,y.useRef)();(0,y.useImperativeHandle)(t,function(){return Q.current}),(0,y.useEffect)(function(){if(H.autoFocus){var e;null==Q||null==(e=Q.current)||e.focus()}},[H.autoFocus]),(0,y.useEffect)(function(){K(M)},[M]);var J=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-filed-search-select",z),Z=v()(J,O,(0,s.A)({},"".concat(J,"-disabled"),k));return(0,$.jsx)(rz.A,(0,u.A)((0,u.A)({ref:Q,className:Z,allowClear:!0,autoClearSearchValue:d,disabled:k,mode:r,showSearch:R,searchValue:G,optionFilterProp:S,optionLabelProp:void 0===C?"label":C,onClear:function(){null==I||I(),E(void 0),R&&K(void 0)}},H),{},{filterOption:!1!=H.filterOption&&function(e,t){var n,r;return H.filterOption&&"function"==typeof H.filterOption?H.filterOption(e,(0,u.A)((0,u.A)({},t),{},{label:null==t?void 0:t.data_title})):!!(null!=t&&null!=(n=t.data_title)&&n.toString().toLowerCase().includes(e.toLowerCase())||null!=t&&null!=(r=t[S])&&r.toString().toLowerCase().includes(e.toLowerCase()))},onSearch:R?function(e){A&&E(e),null==o||o(e),K(e)}:void 0,onChange:function(t,n){R&&d&&(E(void 0),null==o||o(""),K(void 0));for(var a=arguments.length,l=Array(a>2?a-2:0),c=2;c0?t.map(function(e,t){var r=null==n?void 0:n[t],o=null==r?void 0:r["data-item"];return(0,u.A)((0,u.A)((0,u.A)({},o||{}),e),{},{label:N&&o?o.label:e.label})}):[];null==i||i.apply(void 0,[f,n].concat(l)),b&&P()},onFocus:function(e){m&&E(G),null==a||a(e)},options:function e(t){return t.map(function(t,r){var o,a=t.className,i=t.optionType,l=(0,p.A)(t,rF),c=t[_],s=t[q],d=null!=(o=t[X])?o:[];return"optGroup"===i||t.options?(0,u.A)((0,u.A)({label:c},l),{},{data_title:c,title:c,key:null!=s?s:"".concat(null==c?void 0:c.toString(),"-").concat(r,"-").concat(ei()),children:e(d)}):(0,u.A)((0,u.A)({title:c},l),{},{data_title:c,value:null!=s?s:r,key:null!=s?s:"".concat(null==c?void 0:c.toString(),"-").concat(r,"-").concat(ei()),"data-item":t,className:"".concat(J,"-option ").concat(a||"").trim(),label:(null==n?void 0:n(t))||c})})}(j||[])}))});var rH=["value","text"],rL=["mode","valueEnum","render","renderFormItem","request","fieldProps","plain","children","light","proFieldKey","params","label","bordered","id","lightLabel","labelTrigger"],rD=function(e){for(var t=e.label,n=e.words,r=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls,o=r("pro-select-item-option-content-light"),a=r("pro-select-item-option-content"),i=(0,x.X3)("Highlight",function(e){return(0,s.A)((0,s.A)({},".".concat(o),{color:e.colorPrimary}),".".concat(a),{flex:"auto",overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"})}).wrapSSR,l=RegExp(n.map(function(e){return e.replace(/[-[\]/{}()*+?.\\^$|]/g,"\\$&")}).join("|"),"gi"),c=t,d=[];c.length;){var u=l.exec(c);if(!u){d.push(c);break}var p=u.index,f=u[0].length+p;d.push(c.slice(0,p),y.createElement("span",{className:o},c.slice(p,f))),c=c.slice(f)}return i(y.createElement.apply(y,["div",{title:t,className:a}].concat(d)))};function r_(e,t){var n,r;return!!(!t||null!=e&&null!=(n=e.label)&&n.toString().toLowerCase().includes(t.toLowerCase())||null!=e&&null!=(r=e.value)&&r.toString().toLowerCase().includes(t.toLowerCase())||(e.children||e.options)&&[].concat((0,d.A)(e.children||[]),[e.options||[]]).find(function(e){return r_(e,t)}))||!1}var rW=function(e){var t=[],n=rC(e);return n.forEach(function(e,r){var o=n.get(r)||n.get("".concat(r));if(o){if("object"===(0,l.A)(o)&&null!=o&&o.text)return void t.push({text:null==o?void 0:o.text,value:r,label:null==o?void 0:o.text,disabled:o.disabled});t.push({text:o,value:r})}}),t},rq=function(e){var t,n,r,o,a=e.cacheForSwr,i=e.fieldProps,l=(0,y.useState)(e.defaultKeyWords),s=(0,c.A)(l,2),f=s[0],m=s[1],g=(0,y.useState)(function(){return e.proFieldKey?e.proFieldKey.toString():e.request?ei():"no-fetch"}),h=(0,c.A)(g,1)[0],b=(0,y.useRef)(h),v=Z(function(e){return rW(rC(e)).map(function(e){var t=e.value,n=e.text,r=(0,p.A)(e,rH);return(0,u.A)({label:n,value:t,key:t},r)})}),x=e8(function(){if(i){var e=(null==i?void 0:i.options)||(null==i?void 0:i.treeData);if(e){var t=i.fieldNames||{},n=t.children,r=t.label,o=t.value,a=function e(t,a){if(null!=t&&t.length)for(var i=t.length,l=0;l1&&void 0!==arguments[1]?arguments[1]:100,n=arguments.length>2?arguments[2]:void 0,r=(0,y.useState)(e),o=(0,c.A)(r,2),a=o[0],i=o[1],l=ni(e);return(0,y.useEffect)(function(){var e=setTimeout(function(){i(l.current)},t);return function(){return clearTimeout(e)}},n?[t].concat((0,d.A)(n)):void 0),a}([b.current,e.params,f],null!=(t=null!=(n=e.debounceTime)?n:null==e||null==(r=e.fieldProps)?void 0:r.debounceTime)?t:0,[e.params,f]),k=(0,el.Ay)(function(){return e.request?O:null},function(t){var n=(0,c.A)(t,3),r=n[1],o=n[2];return e.request((0,u.A)((0,u.A)({},r),{},{keyWords:o}),e)},{revalidateIfStale:!a,revalidateOnReconnect:a,shouldRetryOnError:!1,revalidateOnFocus:!1}),j=k.data,E=k.mutate,P=k.isValidating,z=(0,y.useMemo)(function(){var t,n,r=null==w?void 0:w.map(function(e){if("string"==typeof e)return{label:e,value:e};if(e.children||e.options){var t=[].concat((0,d.A)(e.children||[]),(0,d.A)(e.options||[])).filter(function(e){return r_(e,f)});return(0,u.A)((0,u.A)({},e),{},{children:t,options:t})}return e});return(null==(t=e.fieldProps)?void 0:t.filterOption)===!0||(null==(n=e.fieldProps)?void 0:n.filterOption)===void 0?null==r?void 0:r.filter(function(e){return!!e&&(!f||r_(e,f))}):r},[w,f,null==(o=e.fieldProps)?void 0:o.filterOption]),I=function(e){if(!(null!=i&&i.fieldNames))return e;var t=i.fieldNames,n=t.label,r=t.value;return(0,u.A)((0,u.A)({},e),{},{label:e[void 0===n?"label":n],value:e[void 0===r?"value":r]})};return[P,(e.request?null==j?void 0:j.map(function(e){return I(e)}):void 0)||z,function(e){m(e)},function(){m(void 0),E([],!1)}]};let rV=y.forwardRef(function(e,t){var n=e.mode,r=e.valueEnum,o=e.render,a=e.renderFormItem,i=(e.request,e.fieldProps),l=(e.plain,e.children,e.light),s=(e.proFieldKey,e.params,e.label),d=e.bordered,f=e.id,m=e.lightLabel,h=e.labelTrigger,b=(0,p.A)(e,rL),v=(0,y.useRef)(),x=(0,Q.tz)(),A=(0,y.useRef)("");(0,y.useEffect)(function(){A.current=null==i?void 0:i.searchValue},[null==i?void 0:i.searchValue]);var w=rq(e),S=(0,c.A)(w,4),C=S[0],O=S[1],k=S[2],j=S[3],E=((null===g.Ay||void 0===g.Ay||null==(z=g.Ay.useConfig)?void 0:z.call(g.Ay))||{componentSize:"middle"}).componentSize;(0,y.useImperativeHandle)(t,function(){return(0,u.A)((0,u.A)({},v.current||{}),{},{fetchData:function(e){return k(e)}})},[k]);var P=(0,y.useMemo)(function(){if("read"===n){var e=(null==i?void 0:i.fieldNames)||{},t=e.value,r=void 0===t?"value":t,o=e.label,a=void 0===o?"label":o,l=e.options,c=void 0===l?"options":l;return function e(t){var n=new Map;if(!(null!=t&&t.length))return n;for(var o=t.length,i=0;i{let{lineWidth:t,calc:n}=e;return(e=>{let{componentCls:t}=e,n=e.calc(e.controlHeight).sub(e.calc(e.trackPadding).mul(2)).equal(),r=e.calc(e.controlHeightLG).sub(e.calc(e.trackPadding).mul(2)).equal(),o=e.calc(e.controlHeightSM).sub(e.calc(e.trackPadding).mul(2)).equal();return{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,nx.dF)(e)),{display:"inline-block",padding:e.trackPadding,color:e.itemColor,background:e.trackBg,borderRadius:e.borderRadius,transition:`all ${e.motionDurationMid}`}),(0,nx.K8)(e)),{[`${t}-group`]:{position:"relative",display:"flex",alignItems:"stretch",justifyItems:"flex-start",flexDirection:"row",width:"100%"},[`&${t}-rtl`]:{direction:"rtl"},[`&${t}-vertical`]:{[`${t}-group`]:{flexDirection:"column"},[`${t}-thumb`]:{width:"100%",height:0,padding:`0 ${(0,z.zA)(e.paddingXXS)}`}},[`&${t}-block`]:{display:"flex"},[`&${t}-block ${t}-item`]:{flex:1,minWidth:0},[`${t}-item`]:{position:"relative",textAlign:"center",cursor:"pointer",transition:`color ${e.motionDurationMid}`,borderRadius:e.borderRadiusSM,transform:"translateZ(0)","&-selected":Object.assign(Object.assign({},on(e)),{color:e.itemSelectedColor}),"&-focused":(0,nx.jk)(e),"&::after":{content:'""',position:"absolute",zIndex:-1,width:"100%",height:"100%",top:0,insetInlineStart:0,borderRadius:"inherit",opacity:0,transition:`opacity ${e.motionDurationMid}, background-color ${e.motionDurationMid}`,pointerEvents:"none"},[`&:not(${t}-item-selected):not(${t}-item-disabled)`]:{"&:hover, &:active":{color:e.itemHoverColor},"&:hover::after":{opacity:1,backgroundColor:e.itemHoverBg},"&:active::after":{opacity:1,backgroundColor:e.itemActiveBg}},"&-label":Object.assign({minHeight:n,lineHeight:(0,z.zA)(n),padding:`0 ${(0,z.zA)(e.segmentedPaddingHorizontal)}`},or),"&-icon + *":{marginInlineStart:e.calc(e.marginSM).div(2).equal()},"&-input":{position:"absolute",insetBlockStart:0,insetInlineStart:0,width:0,height:0,opacity:0,pointerEvents:"none"}},[`${t}-thumb`]:Object.assign(Object.assign({},on(e)),{position:"absolute",insetBlockStart:0,insetInlineStart:0,width:0,height:"100%",padding:`${(0,z.zA)(e.paddingXXS)} 0`,borderRadius:e.borderRadiusSM,[`& ~ ${t}-item:not(${t}-item-selected):not(${t}-item-disabled)::after`]:{backgroundColor:"transparent"}}),[`&${t}-lg`]:{borderRadius:e.borderRadiusLG,[`${t}-item-label`]:{minHeight:r,lineHeight:(0,z.zA)(r),padding:`0 ${(0,z.zA)(e.segmentedPaddingHorizontal)}`,fontSize:e.fontSizeLG},[`${t}-item, ${t}-thumb`]:{borderRadius:e.borderRadius}},[`&${t}-sm`]:{borderRadius:e.borderRadiusSM,[`${t}-item-label`]:{minHeight:o,lineHeight:(0,z.zA)(o),padding:`0 ${(0,z.zA)(e.segmentedPaddingHorizontalSM)}`},[`${t}-item, ${t}-thumb`]:{borderRadius:e.borderRadiusXS}}}),ot(`&-disabled ${t}-item`,e)),ot(`${t}-item-disabled`,e)),{[`${t}-thumb-motion-appear-active`]:{transition:`transform ${e.motionDurationSlow} ${e.motionEaseInOut}, width ${e.motionDurationSlow} ${e.motionEaseInOut}`,willChange:"transform, width"},[`&${t}-shape-round`]:{borderRadius:9999,[`${t}-item, ${t}-thumb`]:{borderRadius:9999}}})}})((0,n$.oX)(e,{segmentedPaddingHorizontal:n(e.controlPaddingHorizontal).sub(t).equal(),segmentedPaddingHorizontalSM:n(e.controlPaddingHorizontalSM).sub(t).equal()}))},e=>{let{colorTextLabel:t,colorText:n,colorFillSecondary:r,colorBgElevated:o,colorFill:a,lineWidthBold:i,colorBgLayout:l}=e;return{trackPadding:i,trackBg:l,itemColor:t,itemHoverColor:n,itemHoverBg:r,itemSelectedBg:o,itemActiveBg:a,itemSelectedColor:n}});var oa=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let oi=y.forwardRef((e,t)=>{let n=(0,nd.A)(),{prefixCls:r,className:o,rootClassName:a,block:i,options:l=[],size:c="middle",style:s,vertical:d,shape:u="default",name:p=n}=e,f=oa(e,["prefixCls","className","rootClassName","block","options","size","style","vertical","shape","name"]),{getPrefixCls:m,direction:g,className:h,style:b}=(0,tj.TP)("segmented"),x=m("segmented",r),[$,A,w]=oo(x),S=(0,nG.A)(c),C=y.useMemo(()=>l.map(e=>{if("object"==typeof e&&(null==e?void 0:e.icon)){let{icon:t,label:n}=e;return Object.assign(Object.assign({},oa(e,["icon","label"])),{label:y.createElement(y.Fragment,null,y.createElement("span",{className:`${x}-item-icon`},t),n&&y.createElement("span",null,n))})}return e}),[l,x]),O=v()(o,a,h,{[`${x}-block`]:i,[`${x}-sm`]:"small"===S,[`${x}-lg`]:"large"===S,[`${x}-vertical`]:d,[`${x}-shape-${u}`]:"round"===u},A,w),k=Object.assign(Object.assign({},b),s);return $(y.createElement(oe.A,Object.assign({},f,{name:p,className:O,style:k,options:C,ref:t,prefixCls:x,direction:g,vertical:d})))}),ol=y.createContext({}),oc=y.createContext({});var os=n(36058);let od=({prefixCls:e,value:t,onChange:n})=>y.createElement("div",{className:`${e}-clear`,onClick:()=>{if(n&&t&&!t.cleared){let e=t.toHsb();e.a=0;let r=(0,os.Z6)(e);r.cleared=!0,n(r)}}});var ou=n(63718);let op=({prefixCls:e,min:t=0,max:n=100,value:r,onChange:o,className:a,formatter:i})=>{let l=`${e}-steppers`,[c,s]=(0,y.useState)(0),d=Number.isNaN(r)?c:r;return y.createElement(ou.A,{className:v()(l,a),min:t,max:n,value:d,formatter:i,size:"small",onChange:e=>{s(e||0),null==o||o(e)}})},of=({prefixCls:e,value:t,onChange:n})=>{let r=`${e}-alpha-input`,[o,a]=(0,y.useState)(()=>(0,os.Z6)(t||"#000")),i=t||o;return y.createElement(op,{value:(0,os.Gp)(i),prefixCls:e,formatter:e=>`${e}%`,className:r,onChange:e=>{let t=i.toHsb();t.a=(e||0)/100;let r=(0,os.Z6)(t);a(r),null==n||n(r)}})};var om=n(64531);let og=/(^#[\da-f]{6}$)|(^#[\da-f]{8}$)/i,oh=({prefixCls:e,value:t,onChange:n})=>{let r=`${e}-hex-input`,[o,a]=(0,y.useState)(()=>t?(0,r3.Ol)(t.toHexString()):void 0);return(0,y.useEffect)(()=>{t&&a((0,r3.Ol)(t.toHexString()))},[t]),y.createElement(om.A,{className:r,value:o,prefix:"#",onChange:e=>{let t,r=e.target.value;a((0,r3.Ol)(r)),t=(0,r3.Ol)(r,!0),og.test(`#${t}`)&&(null==n||n((0,os.Z6)(r)))},size:"small"})},ob=({prefixCls:e,value:t,onChange:n})=>{let r=`${e}-hsb-input`,[o,a]=(0,y.useState)(()=>(0,os.Z6)(t||"#000")),i=t||o,l=(e,t)=>{let r=i.toHsb();r[t]="h"===t?e:(e||0)/100;let o=(0,os.Z6)(r);a(o),null==n||n(o)};return y.createElement("div",{className:r},y.createElement(op,{max:360,min:0,value:Number(i.toHsb().h),prefixCls:e,className:r,formatter:e=>(0,os.W)(e||0).toString(),onChange:e=>l(Number(e),"h")}),y.createElement(op,{max:100,min:0,value:100*Number(i.toHsb().s),prefixCls:e,className:r,formatter:e=>`${(0,os.W)(e||0)}%`,onChange:e=>l(Number(e),"s")}),y.createElement(op,{max:100,min:0,value:100*Number(i.toHsb().b),prefixCls:e,className:r,formatter:e=>`${(0,os.W)(e||0)}%`,onChange:e=>l(Number(e),"b")}))},ov=({prefixCls:e,value:t,onChange:n})=>{let r=`${e}-rgb-input`,[o,a]=(0,y.useState)(()=>(0,os.Z6)(t||"#000")),i=t||o,l=(e,t)=>{let r=i.toRgb();r[t]=e||0;let o=(0,os.Z6)(r);a(o),null==n||n(o)};return y.createElement("div",{className:r},y.createElement(op,{max:255,min:0,value:Number(i.toRgb().r),prefixCls:e,className:r,onChange:e=>l(Number(e),"r")}),y.createElement(op,{max:255,min:0,value:Number(i.toRgb().g),prefixCls:e,className:r,onChange:e=>l(Number(e),"g")}),y.createElement(op,{max:255,min:0,value:Number(i.toRgb().b),prefixCls:e,className:r,onChange:e=>l(Number(e),"b")}))},oy=["hex","hsb","rgb"].map(e=>({value:e,label:e.toUpperCase()})),ox=e=>{let{prefixCls:t,format:n,value:r,disabledAlpha:o,onFormatChange:a,onChange:i,disabledFormat:l}=e,[c,s]=(0,C.A)("hex",{value:n,onChange:a}),d=`${t}-input`,u=(0,y.useMemo)(()=>{let e={value:r,prefixCls:t,onChange:i};switch(c){case"hsb":return y.createElement(ob,Object.assign({},e));case"rgb":return y.createElement(ov,Object.assign({},e));default:return y.createElement(oh,Object.assign({},e))}},[c,t,r,i]);return y.createElement("div",{className:`${d}-container`},!l&&y.createElement(rz.A,{value:c,variant:"borderless",getPopupContainer:e=>e,popupMatchSelectWidth:68,placement:"bottomRight",onChange:e=>{s(e)},className:`${t}-format-select`,size:"small",options:oy}),y.createElement("div",{className:d},u),!o&&y.createElement(of,{prefixCls:t,value:r,onChange:i}))};var o$=n(91428),oA=n(26956),ow=n(25371);let oS=(0,y.createContext)({}),oC=y.forwardRef((e,t)=>{let{open:n,draggingDelete:r,value:o}=e,a=(0,y.useRef)(null),i=n&&!r,l=(0,y.useRef)(null);function c(){ow.A.cancel(l.current),l.current=null}return y.useEffect(()=>(i?l.current=(0,ow.A)(()=>{var e;null==(e=a.current)||e.forceAlign(),l.current=null}):c(),c),[i,e.title,o]),y.createElement(h.A,Object.assign({ref:(0,nu.K4)(a,t)},e,{open:i}))});var oO=n(78250);let ok=(e,t)=>{let{componentCls:n,railSize:r,handleSize:o,dotSize:a,marginFull:i,calc:l}=e,c=t?"width":"height",s=t?"height":"width",d=t?"insetBlockStart":"insetInlineStart",u=t?"top":"insetInlineStart",p=l(r).mul(3).sub(o).div(2).equal(),f=l(o).sub(r).div(2).equal(),m=t?{borderWidth:`${(0,z.zA)(f)} 0`,transform:`translateY(${(0,z.zA)(l(f).mul(-1).equal())})`}:{borderWidth:`0 ${(0,z.zA)(f)}`,transform:`translateX(${(0,z.zA)(e.calc(f).mul(-1).equal())})`};return{[t?"paddingBlock":"paddingInline"]:r,[s]:l(r).mul(3).equal(),[`${n}-rail`]:{[c]:"100%",[s]:r},[`${n}-track,${n}-tracks`]:{[s]:r},[`${n}-track-draggable`]:Object.assign({},m),[`${n}-handle`]:{[d]:p},[`${n}-mark`]:{insetInlineStart:0,top:0,[u]:l(r).mul(3).add(t?0:i).equal(),[c]:"100%"},[`${n}-step`]:{insetInlineStart:0,top:0,[u]:r,[c]:"100%",[s]:r},[`${n}-dot`]:{position:"absolute",[d]:l(r).sub(a).div(2).equal()}}},oj=(0,tB.OF)("Slider",e=>{let t=(0,n$.oX)(e,{marginPart:e.calc(e.controlHeight).sub(e.controlSize).div(2).equal(),marginFull:e.calc(e.controlSize).div(2).equal(),marginPartWithMark:e.calc(e.controlHeightLG).sub(e.controlSize).equal()});return[(e=>{let{componentCls:t,antCls:n,controlSize:r,dotSize:o,marginFull:a,marginPart:i,colorFillContentHover:l,handleColorDisabled:c,calc:s,handleSize:d,handleSizeHover:u,handleActiveColor:p,handleActiveOutlineColor:f,handleLineWidth:m,handleLineWidthHover:g,motionDurationMid:h}=e;return{[t]:Object.assign(Object.assign({},(0,nx.dF)(e)),{position:"relative",height:r,margin:`${(0,z.zA)(i)} ${(0,z.zA)(a)}`,padding:0,cursor:"pointer",touchAction:"none","&-vertical":{margin:`${(0,z.zA)(a)} ${(0,z.zA)(i)}`},[`${t}-rail`]:{position:"absolute",backgroundColor:e.railBg,borderRadius:e.borderRadiusXS,transition:`background-color ${h}`},[`${t}-track,${t}-tracks`]:{position:"absolute",transition:`background-color ${h}`},[`${t}-track`]:{backgroundColor:e.trackBg,borderRadius:e.borderRadiusXS},[`${t}-track-draggable`]:{boxSizing:"content-box",backgroundClip:"content-box",border:"solid rgba(0,0,0,0)"},"&:hover":{[`${t}-rail`]:{backgroundColor:e.railHoverBg},[`${t}-track`]:{backgroundColor:e.trackHoverBg},[`${t}-dot`]:{borderColor:l},[`${t}-handle::after`]:{boxShadow:`0 0 0 ${(0,z.zA)(m)} ${e.colorPrimaryBorderHover}`},[`${t}-dot-active`]:{borderColor:e.dotActiveBorderColor}},[`${t}-handle`]:{position:"absolute",width:d,height:d,outline:"none",userSelect:"none","&-dragging-delete":{opacity:0},"&::before":{content:'""',position:"absolute",insetInlineStart:s(m).mul(-1).equal(),insetBlockStart:s(m).mul(-1).equal(),width:s(d).add(s(m).mul(2)).equal(),height:s(d).add(s(m).mul(2)).equal(),backgroundColor:"transparent"},"&::after":{content:'""',position:"absolute",insetBlockStart:0,insetInlineStart:0,width:d,height:d,backgroundColor:e.colorBgElevated,boxShadow:`0 0 0 ${(0,z.zA)(m)} ${e.handleColor}`,outline:"0px solid transparent",borderRadius:"50%",cursor:"pointer",transition:` +(self.webpackChunkjjb_micro_app_safetyEval=self.webpackChunkjjb_micro_app_safetyEval||[]).push([["934"],{84054(e,t,n){"use strict";n.d(t,{A:()=>d});var r=n(59452),o=n(68645),a=n(86663),i=n(96540),l=n(56347);let c={parseNumbers:!1,parseBooleans:!1},s={skipNull:!1,skipEmptyString:!1},d=(e,t)=>{var n,d;let{navigateMode:u="push",parseOptions:p,stringifyOptions:f}=t||{},m=Object.assign(Object.assign({},c),p),g=Object.assign(Object.assign({},s),f),h=l.useLocation(),b=null==(n=l.useHistory)?void 0:n.call(l),v=null==(d=l.useNavigate)?void 0:d.call(l),y=(0,r.A)(),x=(0,i.useRef)("function"==typeof e?e():e||{}),$=(0,i.useMemo)(()=>(0,a.parse)(h.search,m),[h.search]),A=(0,i.useMemo)(()=>Object.assign(Object.assign({},x.current),$),[$]);return[A,(0,o.A)(e=>{let t="function"==typeof e?e(A):e;y(),b&&b[u]({hash:h.hash,search:(0,a.stringify)(Object.assign(Object.assign({},$),t),g)||"?"},h.state),v&&v({hash:h.hash,search:(0,a.stringify)(Object.assign(Object.assign({},$),t),g)||"?"},{replace:"replace"===u,state:h.state})})]}},81463(e,t,n){"use strict";n.r(t),n.d(t,{yellowDark:()=>E,grey:()=>A,generate:()=>c,presetPalettes:()=>S,presetPrimaryColors:()=>s,green:()=>h,goldDark:()=>j,blueDark:()=>M,orangeDark:()=>k,lime:()=>g,greenDark:()=>z,gray:()=>w,red:()=>d,presetDarkPalettes:()=>N,cyan:()=>b,volcanoDark:()=>O,limeDark:()=>P,cyanDark:()=>I,yellow:()=>m,magentaDark:()=>T,greyDark:()=>F,geekblueDark:()=>R,gold:()=>f,purple:()=>x,volcano:()=>u,orange:()=>p,magenta:()=>$,geekblue:()=>y,purpleDark:()=>B,redDark:()=>C,blue:()=>v});var r=n(78250),o=[{index:7,amount:15},{index:6,amount:25},{index:5,amount:30},{index:5,amount:45},{index:5,amount:65},{index:5,amount:85},{index:4,amount:90},{index:3,amount:95},{index:2,amount:97},{index:1,amount:98}];function a(e,t,n){var r;return(r=Math.round(e.h)>=60&&240>=Math.round(e.h)?n?Math.round(e.h)-2*t:Math.round(e.h)+2*t:n?Math.round(e.h)+2*t:Math.round(e.h)-2*t)<0?r+=360:r>=360&&(r-=360),r}function i(e,t,n){var r;return 0===e.h&&0===e.s?e.s:((r=n?e.s-.16*t:4===t?e.s+.16:e.s+.05*t)>1&&(r=1),n&&5===t&&r>.1&&(r=.1),r<.06&&(r=.06),Math.round(100*r)/100)}function l(e,t,n){return Math.round(100*Math.max(0,Math.min(1,n?e.v+.05*t:e.v-.15*t)))/100}function c(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=[],c=new r.Y(e),s=c.toHsv(),d=5;d>0;d-=1){var u=new r.Y({h:a(s,d,!0),s:i(s,d,!0),v:l(s,d,!0)});n.push(u)}n.push(c);for(var p=1;p<=4;p+=1){var f=new r.Y({h:a(s,p),s:i(s,p),v:l(s,p)});n.push(f)}return"dark"===t.theme?o.map(function(e){var o=e.index,a=e.amount;return new r.Y(t.backgroundColor||"#141414").mix(n[o],a).toHexString()}):n.map(function(e){return e.toHexString()})}var s={red:"#F5222D",volcano:"#FA541C",orange:"#FA8C16",gold:"#FAAD14",yellow:"#FADB14",lime:"#A0D911",green:"#52C41A",cyan:"#13C2C2",blue:"#1677FF",geekblue:"#2F54EB",purple:"#722ED1",magenta:"#EB2F96",grey:"#666666"},d=["#fff1f0","#ffccc7","#ffa39e","#ff7875","#ff4d4f","#f5222d","#cf1322","#a8071a","#820014","#5c0011"];d.primary=d[5];var u=["#fff2e8","#ffd8bf","#ffbb96","#ff9c6e","#ff7a45","#fa541c","#d4380d","#ad2102","#871400","#610b00"];u.primary=u[5];var p=["#fff7e6","#ffe7ba","#ffd591","#ffc069","#ffa940","#fa8c16","#d46b08","#ad4e00","#873800","#612500"];p.primary=p[5];var f=["#fffbe6","#fff1b8","#ffe58f","#ffd666","#ffc53d","#faad14","#d48806","#ad6800","#874d00","#613400"];f.primary=f[5];var m=["#feffe6","#ffffb8","#fffb8f","#fff566","#ffec3d","#fadb14","#d4b106","#ad8b00","#876800","#614700"];m.primary=m[5];var g=["#fcffe6","#f4ffb8","#eaff8f","#d3f261","#bae637","#a0d911","#7cb305","#5b8c00","#3f6600","#254000"];g.primary=g[5];var h=["#f6ffed","#d9f7be","#b7eb8f","#95de64","#73d13d","#52c41a","#389e0d","#237804","#135200","#092b00"];h.primary=h[5];var b=["#e6fffb","#b5f5ec","#87e8de","#5cdbd3","#36cfc9","#13c2c2","#08979c","#006d75","#00474f","#002329"];b.primary=b[5];var v=["#e6f4ff","#bae0ff","#91caff","#69b1ff","#4096ff","#1677ff","#0958d9","#003eb3","#002c8c","#001d66"];v.primary=v[5];var y=["#f0f5ff","#d6e4ff","#adc6ff","#85a5ff","#597ef7","#2f54eb","#1d39c4","#10239e","#061178","#030852"];y.primary=y[5];var x=["#f9f0ff","#efdbff","#d3adf7","#b37feb","#9254de","#722ed1","#531dab","#391085","#22075e","#120338"];x.primary=x[5];var $=["#fff0f6","#ffd6e7","#ffadd2","#ff85c0","#f759ab","#eb2f96","#c41d7f","#9e1068","#780650","#520339"];$.primary=$[5];var A=["#a6a6a6","#999999","#8c8c8c","#808080","#737373","#666666","#404040","#1a1a1a","#000000","#000000"];A.primary=A[5];var w=A,S={red:d,volcano:u,orange:p,gold:f,yellow:m,lime:g,green:h,cyan:b,blue:v,geekblue:y,purple:x,magenta:$,grey:A},C=["#2a1215","#431418","#58181c","#791a1f","#a61d24","#d32029","#e84749","#f37370","#f89f9a","#fac8c3"];C.primary=C[5];var O=["#2b1611","#441d12","#592716","#7c3118","#aa3e19","#d84a1b","#e87040","#f3956a","#f8b692","#fad4bc"];O.primary=O[5];var k=["#2b1d11","#442a11","#593815","#7c4a15","#aa6215","#d87a16","#e89a3c","#f3b765","#f8cf8d","#fae3b7"];k.primary=k[5];var j=["#2b2111","#443111","#594214","#7c5914","#aa7714","#d89614","#e8b339","#f3cc62","#f8df8b","#faedb5"];j.primary=j[5];var E=["#2b2611","#443b11","#595014","#7c6e14","#aa9514","#d8bd14","#e8d639","#f3ea62","#f8f48b","#fafab5"];E.primary=E[5];var P=["#1f2611","#2e3c10","#3e4f13","#536d13","#6f9412","#8bbb11","#a9d134","#c9e75d","#e4f88b","#f0fab5"];P.primary=P[5];var z=["#162312","#1d3712","#274916","#306317","#3c8618","#49aa19","#6abe39","#8fd460","#b2e58b","#d5f2bb"];z.primary=z[5];var I=["#112123","#113536","#144848","#146262","#138585","#13a8a8","#33bcb7","#58d1c9","#84e2d8","#b2f1e8"];I.primary=I[5];var M=["#111a2c","#112545","#15325b","#15417e","#1554ad","#1668dc","#3c89e8","#65a9f3","#8dc5f8","#b7dcfa"];M.primary=M[5];var R=["#131629","#161d40","#1c2755","#203175","#263ea0","#2b4acb","#5273e0","#7f9ef3","#a8c1f8","#d2e0fa"];R.primary=R[5];var B=["#1a1325","#24163a","#301c4d","#3e2069","#51258f","#642ab5","#854eca","#ab7ae0","#cda8f0","#ebd7fa"];B.primary=B[5];var T=["#291321","#40162f","#551c3b","#75204f","#a02669","#cb2b83","#e0529c","#f37fb7","#f8a8cc","#fad2e3"];T.primary=T[5];var F=["#151515","#1f1f1f","#2d2d2d","#393939","#494949","#5a5a5a","#6a6a6a","#7b7b7b","#888888","#969696"];F.primary=F[5];var N={red:C,volcano:O,orange:k,gold:j,yellow:E,lime:P,green:z,cyan:I,blue:M,geekblue:R,purple:B,magenta:T,grey:F}},10224(e,t,n){"use strict";n.d(t,{oX:()=>C,L_:()=>I});var r=n(82284),o=n(57046),a=n(64467),i=n(89379),l=n(96540),c=n(48670),s=n(23029),d=n(92901),u=n(9417),p=n(85501),f=n(6903),m=(0,d.A)(function e(){(0,s.A)(this,e)}),g="CALC_UNIT",h=RegExp(g,"g");function b(e){return"number"==typeof e?"".concat(e).concat(g):e}var v=function(e){(0,p.A)(n,e);var t=(0,f.A)(n);function n(e,o){(0,s.A)(this,n),i=t.call(this),(0,a.A)((0,u.A)(i),"result",""),(0,a.A)((0,u.A)(i),"unitlessCssVar",void 0),(0,a.A)((0,u.A)(i),"lowPriority",void 0);var i,l=(0,r.A)(e);return i.unitlessCssVar=o,e instanceof n?i.result="(".concat(e.result,")"):"number"===l?i.result=b(e):"string"===l&&(i.result=e),i}return(0,d.A)(n,[{key:"add",value:function(e){return e instanceof n?this.result="".concat(this.result," + ").concat(e.getResult()):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," + ").concat(b(e))),this.lowPriority=!0,this}},{key:"sub",value:function(e){return e instanceof n?this.result="".concat(this.result," - ").concat(e.getResult()):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," - ").concat(b(e))),this.lowPriority=!0,this}},{key:"mul",value:function(e){return this.lowPriority&&(this.result="(".concat(this.result,")")),e instanceof n?this.result="".concat(this.result," * ").concat(e.getResult(!0)):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," * ").concat(e)),this.lowPriority=!1,this}},{key:"div",value:function(e){return this.lowPriority&&(this.result="(".concat(this.result,")")),e instanceof n?this.result="".concat(this.result," / ").concat(e.getResult(!0)):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," / ").concat(e)),this.lowPriority=!1,this}},{key:"getResult",value:function(e){return this.lowPriority||e?"(".concat(this.result,")"):this.result}},{key:"equal",value:function(e){var t=this,n=(e||{}).unit,r=!0;return("boolean"==typeof n?r=n:Array.from(this.unitlessCssVar).some(function(e){return t.result.includes(e)})&&(r=!1),this.result=this.result.replace(h,r?"px":""),void 0!==this.lowPriority)?"calc(".concat(this.result,")"):this.result}}]),n}(m),y=function(e){(0,p.A)(n,e);var t=(0,f.A)(n);function n(e){var r;return(0,s.A)(this,n),r=t.call(this),(0,a.A)((0,u.A)(r),"result",0),e instanceof n?r.result=e.result:"number"==typeof e&&(r.result=e),r}return(0,d.A)(n,[{key:"add",value:function(e){return e instanceof n?this.result+=e.result:"number"==typeof e&&(this.result+=e),this}},{key:"sub",value:function(e){return e instanceof n?this.result-=e.result:"number"==typeof e&&(this.result-=e),this}},{key:"mul",value:function(e){return e instanceof n?this.result*=e.result:"number"==typeof e&&(this.result*=e),this}},{key:"div",value:function(e){return e instanceof n?this.result/=e.result:"number"==typeof e&&(this.result/=e),this}},{key:"equal",value:function(){return this.result}}]),n}(m);let x=function(e,t){var n="css"===e?v:y;return function(e){return new n(e,t)}},$=function(e,t){return"".concat([t,e.replace(/([A-Z]+)([A-Z][a-z]+)/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2")].filter(Boolean).join("-"))};n(81470);let A=function(e,t,n,r){var a=(0,i.A)({},t[e]);null!=r&&r.deprecatedTokens&&r.deprecatedTokens.forEach(function(e){var t=(0,o.A)(e,2),n=t[0],r=t[1];(null!=a&&a[n]||null!=a&&a[r])&&(null!=a[r]||(a[r]=null==a?void 0:a[n]))});var l=(0,i.A)((0,i.A)({},n),a);return Object.keys(l).forEach(function(e){l[e]===t[e]&&delete l[e]}),l};var w="u">typeof CSSINJS_STATISTIC,S=!0;function C(){for(var e=arguments.length,t=Array(e),n=0;ntypeof Proxy&&(t=new Set,n=new Proxy(e,{get:function(e,n){if(S){var r;null==(r=t)||r.add(n)}return e[n]}}),r=function(e,n){var r;O[e]={global:Array.from(t),component:(0,i.A)((0,i.A)({},null==(r=O[e])?void 0:r.component),n)}}),{token:n,keys:t,flush:r}},E=function(e,t,n){if("function"==typeof n){var r;return n(C(t,null!=(r=t[e])?r:{}))}return null!=n?n:{}};var P=new(function(){function e(){(0,s.A)(this,e),(0,a.A)(this,"map",new Map),(0,a.A)(this,"objectIDMap",new WeakMap),(0,a.A)(this,"nextID",0),(0,a.A)(this,"lastAccessBeat",new Map),(0,a.A)(this,"accessBeat",0)}return(0,d.A)(e,[{key:"set",value:function(e,t){this.clear();var n=this.getCompositeKey(e);this.map.set(n,t),this.lastAccessBeat.set(n,Date.now())}},{key:"get",value:function(e){var t=this.getCompositeKey(e),n=this.map.get(t);return this.lastAccessBeat.set(t,Date.now()),this.accessBeat+=1,n}},{key:"getCompositeKey",value:function(e){var t=this;return e.map(function(e){return e&&"object"===(0,r.A)(e)?"obj_".concat(t.getObjectID(e)):"".concat((0,r.A)(e),"_").concat(e)}).join("|")}},{key:"getObjectID",value:function(e){if(this.objectIDMap.has(e))return this.objectIDMap.get(e);var t=this.nextID;return this.objectIDMap.set(e,t),this.nextID+=1,t}},{key:"clear",value:function(){var e=this;if(this.accessBeat>1e4){var t=Date.now();this.lastAccessBeat.forEach(function(n,r){t-n>6e5&&(e.map.delete(r),e.lastAccessBeat.delete(r))}),this.accessBeat=0}}}]),e}());let z=function(){return{}},I=function(e){var t=e.useCSP,n=void 0===t?z:t,s=e.useToken,d=e.usePrefix,u=e.getResetStyles,p=e.getCommonStyle,f=e.getCompUnitless;function m(t,a,f){var m=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},g=Array.isArray(t)?t:[t,t],h=(0,o.A)(g,1)[0],b=g.join("-"),v=e.layer||{name:"antd"};return function(e){var t,o,g=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e,y=s(),w=y.theme,S=y.realToken,O=y.hashId,k=y.token,z=y.cssVar,I=d(),M=I.rootPrefixCls,R=I.iconPrefixCls,B=n(),T=z?"css":"js",F=(t=function(){var e=new Set;return z&&Object.keys(m.unitless||{}).forEach(function(t){e.add((0,c.Ki)(t,z.prefix)),e.add((0,c.Ki)(t,$(h,z.prefix)))}),x(T,e)},o=[T,h,null==z?void 0:z.prefix],l.useMemo(function(){var e=P.get(o);if(e)return e;var n=t();return P.set(o,n),n},o)),N="js"===T?{max:Math.max,min:Math.min}:{max:function(){for(var e=arguments.length,t=Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:e,n=j(e,t),r=(0,o.A)(n,2)[1],a=P(t),i=(0,o.A)(a,2);return[i[0],r,i[1]]}},genSubStyleComponent:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=m(e,t,n,(0,i.A)({resetStyle:!1,order:-998},r));return function(e){var t=e.prefixCls,n=e.rootCls,r=void 0===n?t:n;return o(t,r),null}},genComponentStyleHook:m}}},48670(e,t,n){"use strict";n.d(t,{lO:()=>V,hV:()=>U,IV:()=>ec,Mo:()=>eu,zA:()=>R,an:()=>k,Ki:()=>T,J:()=>y,RC:()=>ed});var r,o=n(64467),a=n(57046),i=n(83098),l=n(89379),c=n(76795),s=n(85089),d=n(96540),u=n.t(d,2);n(28104),n(43210);var p=n(23029),f=n(92901);function m(e){return e.join("%")}var g=function(){function e(t){(0,p.A)(this,e),(0,o.A)(this,"instanceId",void 0),(0,o.A)(this,"cache",new Map),(0,o.A)(this,"extracted",new Set),this.instanceId=t}return(0,f.A)(e,[{key:"get",value:function(e){return this.opGet(m(e))}},{key:"opGet",value:function(e){return this.cache.get(e)||null}},{key:"update",value:function(e,t){return this.opUpdate(m(e),t)}},{key:"opUpdate",value:function(e,t){var n=t(this.cache.get(e));null===n?this.cache.delete(e):this.cache.set(e,n)}}]),e}(),h="data-token-hash",b="data-css-hash",v="__cssinjs_instance__";let y=d.createContext({hashPriority:"low",cache:function(){var e=Math.random().toString(12).slice(2);if("u">typeof document&&document.head&&document.body){var t=document.body.querySelectorAll("style[".concat(b,"]"))||[],n=document.head.firstChild;Array.from(t).forEach(function(t){t[v]=t[v]||e,t[v]===e&&document.head.insertBefore(t,n)});var r={};Array.from(document.querySelectorAll("style[".concat(b,"]"))).forEach(function(t){var n,o=t.getAttribute(b);r[o]?t[v]===e&&(null==(n=t.parentNode)||n.removeChild(t)):r[o]=!0})}return new g(e)}(),defaultCache:!0});var x=n(82284),$=n(20998),A=function(){function e(){(0,p.A)(this,e),(0,o.A)(this,"cache",void 0),(0,o.A)(this,"keys",void 0),(0,o.A)(this,"cacheCallTimes",void 0),this.cache=new Map,this.keys=[],this.cacheCallTimes=0}return(0,f.A)(e,[{key:"size",value:function(){return this.keys.length}},{key:"internalGet",value:function(e){var t,n,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o={map:this.cache};return e.forEach(function(e){if(o){var t;o=null==(t=o)||null==(t=t.map)?void 0:t.get(e)}else o=void 0}),null!=(t=o)&&t.value&&r&&(o.value[1]=this.cacheCallTimes++),null==(n=o)?void 0:n.value}},{key:"get",value:function(e){var t;return null==(t=this.internalGet(e,!0))?void 0:t[0]}},{key:"has",value:function(e){return!!this.internalGet(e)}},{key:"set",value:function(t,n){var r=this;if(!this.has(t)){if(this.size()+1>e.MAX_CACHE_SIZE+e.MAX_CACHE_OFFSET){var o=this.keys.reduce(function(e,t){var n=(0,a.A)(e,2)[1];return r.internalGet(t)[1]0,"[Ant Design CSS-in-JS] Theme should have at least one derivative function."),S+=1}return(0,f.A)(e,[{key:"getDerivativeToken",value:function(e){return this.derivatives.reduce(function(t,n){return n(e,t)},void 0)}}]),e}(),O=new A;function k(e){var t=Array.isArray(e)?e:[e];return O.has(t)||O.set(t,new C(t)),O.get(t)}var j=new WeakMap,E={},P=new WeakMap;function z(e){var t=P.get(e)||"";return t||(Object.keys(e).forEach(function(n){var r=e[n];t+=n,r instanceof C?t+=r.id:r&&"object"===(0,x.A)(r)?t+=z(r):t+=r}),t=(0,c.A)(t),P.set(e,t)),t}function I(e,t){return(0,c.A)("".concat(t,"_").concat(z(e)))}"random-".concat(Date.now(),"-").concat(Math.random()).replace(/\./g,"");var M=(0,$.A)();function R(e){return"number"==typeof e?"".concat(e,"px"):e}function B(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},a=arguments.length>4&&void 0!==arguments[4]&&arguments[4];if(a)return e;var i=(0,l.A)((0,l.A)({},r),{},(0,o.A)((0,o.A)({},h,t),b,n)),c=Object.keys(i).map(function(e){var t=i[e];return t?"".concat(e,'="').concat(t,'"'):null}).filter(function(e){return e}).join(" ");return"")}var T=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return"--".concat(t?"".concat(t,"-"):"").concat(e).replace(/([a-z0-9])([A-Z])/g,"$1-$2").replace(/([A-Z]+)([A-Z][a-z0-9]+)/g,"$1-$2").replace(/([a-z])([A-Z0-9])/g,"$1-$2").toLowerCase()},F=function(e,t,n){var r,o={},i={};return Object.entries(e).forEach(function(e){var t=(0,a.A)(e,2),r=t[0],l=t[1];if(null!=n&&null!=(c=n.preserve)&&c[r])i[r]=l;else if(("string"==typeof l||"number"==typeof l)&&!(null!=n&&null!=(s=n.ignore)&&s[r])){var c,s,d,u=T(r,null==n?void 0:n.prefix);o[u]="number"!=typeof l||null!=n&&null!=(d=n.unitless)&&d[r]?String(l):"".concat(l,"px"),i[r]="var(".concat(u,")")}}),[i,(r={scope:null==n?void 0:n.scope},Object.keys(o).length?".".concat(t).concat(null!=r&&r.scope?".".concat(r.scope):"","{").concat(Object.entries(o).map(function(e){var t=(0,a.A)(e,2),n=t[0],r=t[1];return"".concat(n,":").concat(r,";")}).join(""),"}"):"")]},N=n(30981),H=(0,l.A)({},u).useInsertionEffect,L=H?function(e,t,n){return H(function(){return e(),t()},n)}:function(e,t,n){d.useMemo(e,n),(0,N.A)(function(){return t(!0)},n)},D=void 0!==(0,l.A)({},u).useInsertionEffect?function(e){var t=[],n=!1;return d.useEffect(function(){return n=!1,function(){n=!0,t.length&&t.forEach(function(e){return e()})}},e),function(e){n||t.push(e)}}:function(){return function(e){e()}};function _(e,t,n,r,o){var l=d.useContext(y).cache,c=m([e].concat((0,i.A)(t))),s=D([c]),u=function(e){l.opUpdate(c,function(t){var r=(0,a.A)(t||[void 0,void 0],2),o=r[0],i=[void 0===o?0:o,r[1]||n()];return e?e(i):i})};d.useMemo(function(){u()},[c]);var p=l.opGet(c)[1];return L(function(){null==o||o(p)},function(e){return u(function(t){var n=(0,a.A)(t,2),r=n[0],i=n[1];return e&&0===r&&(null==o||o(p)),[r+1,i]}),function(){l.opUpdate(c,function(t){var n=(0,a.A)(t||[],2),o=n[0],i=void 0===o?0:o,d=n[1];return 0==i-1?(s(function(){(e||!l.opGet(c))&&(null==r||r(d,!1))}),null):[i-1,d]})}},[c]),p}var W={},q=new Map,V=function(e,t,n,r){var o=n.getDerivativeToken(e),a=(0,l.A)((0,l.A)({},o),t);return r&&(a=r(a)),a},X="token";function U(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,d.useContext)(y),o=r.cache.instanceId,u=r.container,p=n.salt,f=void 0===p?"":p,m=n.override,g=void 0===m?W:m,x=n.formatToken,$=n.getComputedToken,A=n.cssVar,w=function(e,t){for(var n=j,r=0;r0&&n.forEach(function(e){"u">typeof document&&document.querySelectorAll("style[".concat(h,'="').concat(e,'"]')).forEach(function(e){if(e[v]===o){var t;null==(t=e.parentNode)||t.removeChild(e)}}),q.delete(e)})},function(e){var t=(0,a.A)(e,4),n=t[0],r=t[3];if(A&&r){var i=(0,s.BD)(r,(0,c.A)("css-variables-".concat(n._themeKey)),{mark:b,prepend:"queue",attachTo:u,priority:-999});i[v]=o,i.setAttribute(h,n._themeKey)}})}var Y=n(58168),G=n(17103),K=n(50483),Q=n(89350),J="data-ant-cssinjs-cache-path",Z="_FILE_STYLE__",ee=!0,et="_multi_value_";function en(e){return(0,K.l)((0,Q.wE)(e),K.A).replace(/\{%%%\:[^;];}/g,";")}function er(e,t,n){if(!t)return e;var r=".".concat(t),o="low"===n?":where(".concat(r,")"):r;return e.split(",").map(function(e){var t,n=e.trim().split(/\s+/),r=n[0]||"",a=(null==(t=r.match(/^\w+/))?void 0:t[0])||"";return[r="".concat(a).concat(o).concat(r.slice(a.length))].concat((0,i.A)(n.slice(1))).join(" ")}).join(",")}var eo=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{root:!0,parentSelectors:[]},o=r.root,c=r.injectHash,s=r.parentSelectors,d=n.hashId,u=n.layer,p=(n.path,n.hashPriority),f=n.transformers,m=void 0===f?[]:f,g=(n.linters,""),h={};function b(t){var r=t.getName(d);if(!h[r]){var o=e(t.style,n,{root:!1,parentSelectors:s}),i=(0,a.A)(o,1)[0];h[r]="@keyframes ".concat(t.getName(d)).concat(i)}}return(function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return t.forEach(function(t){Array.isArray(t)?e(t,n):t&&n.push(t)}),n})(Array.isArray(t)?t:[t]).forEach(function(t){var r="string"!=typeof t||o?t:{};if("string"==typeof r)g+="".concat(r,"\n");else if(r._keyframe)b(r);else{var u=m.reduce(function(e,t){var n;return(null==t||null==(n=t.visit)?void 0:n.call(t,e))||e},r);Object.keys(u).forEach(function(t){var r=u[t];if("object"!==(0,x.A)(r)||!r||"animationName"===t&&r._keyframe||"object"===(0,x.A)(r)&&r&&("_skip_check_"in r||et in r)){function f(e,t){var n=e.replace(/[A-Z]/g,function(e){return"-".concat(e.toLowerCase())}),r=t;G.A[e]||"number"!=typeof r||0===r||(r="".concat(r,"px")),"animationName"===e&&null!=t&&t._keyframe&&(b(t),r=t.getName(d)),g+="".concat(n,":").concat(r,";")}var m,v=null!=(m=null==r?void 0:r.value)?m:r;"object"===(0,x.A)(r)&&null!=r&&r[et]&&Array.isArray(v)?v.forEach(function(e){f(t,e)}):f(t,v)}else{var y=!1,$=t.trim(),A=!1;(o||c)&&d?$.startsWith("@")?y=!0:$="&"===$?er("",d,p):er(t,d,p):o&&!d&&("&"===$||""===$)&&($="",A=!0);var w=e(r,n,{root:A,injectHash:y,parentSelectors:[].concat((0,i.A)(s),[$])}),S=(0,a.A)(w,2),C=S[0],O=S[1];h=(0,l.A)((0,l.A)({},h),O),g+="".concat($).concat(C)}})}}),o?u&&(g&&(g="@layer ".concat(u.name," {").concat(g,"}")),u.dependencies&&(h["@layer ".concat(u.name)]=u.dependencies.map(function(e){return"@layer ".concat(e,", ").concat(u.name,";")}).join("\n"))):g="{".concat(g,"}"),[g,h]};function ea(e,t){return(0,c.A)("".concat(e.join("%")).concat(t))}function ei(){return null}var el="style";function ec(e,t){var n=e.token,c=e.path,u=e.hashId,p=e.layer,f=e.nonce,m=e.clientOnly,g=e.order,x=void 0===g?0:g,A=d.useContext(y),w=A.autoClear,S=(A.mock,A.defaultCache),C=A.hashPriority,O=A.container,k=A.ssrInline,j=A.transformers,E=A.linters,P=A.cache,z=A.layer,I=n._tokenKey,R=[I];z&&R.push("layer"),R.push.apply(R,(0,i.A)(c));var B=_(el,R,function(){var e=R.join("|");if(function(e){if(!r&&(r={},(0,$.A)())){var t,n=document.createElement("div");n.className=J,n.style.position="fixed",n.style.visibility="hidden",n.style.top="-9999px",document.body.appendChild(n);var o=getComputedStyle(n).content||"";(o=o.replace(/^"/,"").replace(/"$/,"")).split(";").forEach(function(e){var t=e.split(":"),n=(0,a.A)(t,2),o=n[0],i=n[1];r[o]=i});var i=document.querySelector("style[".concat(J,"]"));i&&(ee=!1,null==(t=i.parentNode)||t.removeChild(i)),document.body.removeChild(n)}return!!r[e]}(e)){var n=function(e){var t=r[e],n=null;if(t&&(0,$.A)())if(ee)n=Z;else{var o=document.querySelector("style[".concat(b,'="').concat(r[e],'"]'));o?n=o.innerHTML:delete r[e]}return[n,t]}(e),o=(0,a.A)(n,2),i=o[0],l=o[1];if(i)return[i,I,l,{},m,x]}var s=eo(t(),{hashId:u,hashPriority:C,layer:z?p:void 0,path:c.join("-"),transformers:j,linters:E}),d=(0,a.A)(s,2),f=d[0],g=d[1],h=en(f),v=ea(R,h);return[h,I,v,g,m,x]},function(e,t){var n=(0,a.A)(e,3)[2];(t||w)&&M&&(0,s.m6)(n,{mark:b,attachTo:O})},function(e){var t=(0,a.A)(e,4),n=t[0],r=(t[1],t[2]),o=t[3];if(M&&n!==Z){var i={mark:b,prepend:!z&&"queue",attachTo:O,priority:x},c="function"==typeof f?f():f;c&&(i.csp={nonce:c});var d=[],u=[];Object.keys(o).forEach(function(e){e.startsWith("@layer")?d.push(e):u.push(e)}),d.forEach(function(e){(0,s.BD)(en(o[e]),"_layer-".concat(e),(0,l.A)((0,l.A)({},i),{},{prepend:!0}))});var p=(0,s.BD)(n,r,i);p[v]=P.instanceId,p.setAttribute(h,I),u.forEach(function(e){(0,s.BD)(en(o[e]),"_effect-".concat(e),i)})}}),T=(0,a.A)(B,3),F=T[0],N=T[1],H=T[2];return function(e){var t;return t=k&&!M&&S?d.createElement("style",(0,Y.A)({},(0,o.A)((0,o.A)({},h,N),b,H),{dangerouslySetInnerHTML:{__html:F}})):d.createElement(ei,null),d.createElement(d.Fragment,null,t,e)}}var es="cssVar";let ed=function(e,t){var n=e.key,r=e.prefix,o=e.unitless,l=e.ignore,c=e.token,u=e.scope,p=void 0===u?"":u,f=(0,d.useContext)(y),m=f.cache.instanceId,g=f.container,x=c._tokenKey,$=[].concat((0,i.A)(e.path),[n,p,x]);return _(es,$,function(){var e=F(t(),n,{prefix:r,unitless:o,ignore:l,scope:p}),i=(0,a.A)(e,2),c=i[0],s=i[1],d=ea($,s);return[c,s,d,n]},function(e){var t=(0,a.A)(e,3)[2];M&&(0,s.m6)(t,{mark:b,attachTo:g})},function(e){var t=(0,a.A)(e,3),r=t[1],o=t[2];if(r){var i=(0,s.BD)(r,o,{mark:b,prepend:"queue",attachTo:g,priority:-999});i[v]=m,i.setAttribute(h,n)}})};(0,o.A)((0,o.A)((0,o.A)({},el,function(e,t,n){var r=(0,a.A)(e,6),o=r[0],i=r[1],l=r[2],c=r[3],s=r[4],d=r[5],u=(n||{}).plain;if(s)return null;var p=o,f={"data-rc-order":"prependQueue","data-rc-priority":"".concat(d)};return p=B(o,i,l,f,u),c&&Object.keys(c).forEach(function(e){if(!t[e]){t[e]=!0;var n=B(en(c[e]),i,"_effect-".concat(e),f,u);e.startsWith("@layer")?p=n+p:p+=n}}),[d,l,p]}),X,function(e,t,n){var r=(0,a.A)(e,5),o=r[2],i=r[3],l=r[4],c=(n||{}).plain;if(!i)return null;var s=o._tokenKey,d=B(i,l,s,{"data-rc-order":"prependQueue","data-rc-priority":"".concat(-999)},c);return[-999,s,d]}),es,function(e,t,n){var r=(0,a.A)(e,4),o=r[1],i=r[2],l=r[3],c=(n||{}).plain;if(!o)return null;var s=B(o,l,i,{"data-rc-order":"prependQueue","data-rc-priority":"".concat(-999)},c);return[-999,i,s]});let eu=function(){function e(t,n){(0,p.A)(this,e),(0,o.A)(this,"name",void 0),(0,o.A)(this,"style",void 0),(0,o.A)(this,"_keyframe",!0),this.name=t,this.style=n}return(0,f.A)(e,[{key:"getName",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return e?"".concat(e,"-").concat(this.name):this.name}}]),e}();function ep(e){return e.notSplit=!0,e}ep(["borderTop","borderBottom"]),ep(["borderTop"]),ep(["borderBottom"]),ep(["borderLeft","borderRight"]),ep(["borderLeft"]),ep(["borderRight"])},78250(e,t,n){"use strict";n.d(t,{Y:()=>c});var r=n(64467);let o=Math.round;function a(e,t){let n=e.replace(/^[^(]*\((.*)/,"$1").replace(/\).*/,"").match(/\d*\.?\d+%?/g)||[],r=n.map(e=>parseFloat(e));for(let e=0;e<3;e+=1)r[e]=t(r[e]||0,n[e]||"",e);return n[3]?r[3]=n[3].includes("%")?r[3]/100:r[3]:r[3]=1,r}let i=(e,t,n)=>0===n?e:e/100;function l(e,t){let n=t||255;return e>n?n:e<0?0:e}class c{constructor(e){function t(t){return t[0]in e&&t[1]in e&&t[2]in e}if((0,r.A)(this,"isValid",!0),(0,r.A)(this,"r",0),(0,r.A)(this,"g",0),(0,r.A)(this,"b",0),(0,r.A)(this,"a",1),(0,r.A)(this,"_h",void 0),(0,r.A)(this,"_s",void 0),(0,r.A)(this,"_l",void 0),(0,r.A)(this,"_v",void 0),(0,r.A)(this,"_max",void 0),(0,r.A)(this,"_min",void 0),(0,r.A)(this,"_brightness",void 0),e)if("string"==typeof e){const t=e.trim();function n(e){return t.startsWith(e)}/^#?[A-F\d]{3,8}$/i.test(t)?this.fromHexString(t):n("rgb")?this.fromRgbString(t):n("hsl")?this.fromHslString(t):(n("hsv")||n("hsb"))&&this.fromHsvString(t)}else if(e instanceof c)this.r=e.r,this.g=e.g,this.b=e.b,this.a=e.a,this._h=e._h,this._s=e._s,this._l=e._l,this._v=e._v;else if(t("rgb"))this.r=l(e.r),this.g=l(e.g),this.b=l(e.b),this.a="number"==typeof e.a?l(e.a,1):1;else if(t("hsl"))this.fromHsl(e);else if(t("hsv"))this.fromHsv(e);else throw Error("@ant-design/fast-color: unsupported input "+JSON.stringify(e))}setR(e){return this._sc("r",e)}setG(e){return this._sc("g",e)}setB(e){return this._sc("b",e)}setA(e){return this._sc("a",e,1)}setHue(e){let t=this.toHsv();return t.h=e,this._c(t)}getLuminance(){function e(e){let t=e/255;return t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4)}return .2126*e(this.r)+.7152*e(this.g)+.0722*e(this.b)}getHue(){if(void 0===this._h){let e=this.getMax()-this.getMin();0===e?this._h=0:this._h=o(60*(this.r===this.getMax()?(this.g-this.b)/e+6*(this.g1&&(r=1),this._c({h:t,s:n,l:r,a:this.a})}mix(e,t=50){let n=this._c(e),r=t/100,a=e=>(n[e]-this[e])*r+this[e],i={r:o(a("r")),g:o(a("g")),b:o(a("b")),a:o(100*a("a"))/100};return this._c(i)}tint(e=10){return this.mix({r:255,g:255,b:255,a:1},e)}shade(e=10){return this.mix({r:0,g:0,b:0,a:1},e)}onBackground(e){let t=this._c(e),n=this.a+t.a*(1-this.a),r=e=>o((this[e]*this.a+t[e]*t.a*(1-this.a))/n);return this._c({r:r("r"),g:r("g"),b:r("b"),a:n})}isDark(){return 128>this.getBrightness()}isLight(){return this.getBrightness()>=128}equals(e){return this.r===e.r&&this.g===e.g&&this.b===e.b&&this.a===e.a}clone(){return this._c(this)}toHexString(){let e="#",t=(this.r||0).toString(16);e+=2===t.length?t:"0"+t;let n=(this.g||0).toString(16);e+=2===n.length?n:"0"+n;let r=(this.b||0).toString(16);if(e+=2===r.length?r:"0"+r,"number"==typeof this.a&&this.a>=0&&this.a<1){let t=o(255*this.a).toString(16);e+=2===t.length?t:"0"+t}return e}toHsl(){return{h:this.getHue(),s:this.getSaturation(),l:this.getLightness(),a:this.a}}toHslString(){let e=this.getHue(),t=o(100*this.getSaturation()),n=o(100*this.getLightness());return 1!==this.a?`hsla(${e},${t}%,${n}%,${this.a})`:`hsl(${e},${t}%,${n}%)`}toHsv(){return{h:this.getHue(),s:this.getSaturation(),v:this.getValue(),a:this.a}}toRgb(){return{r:this.r,g:this.g,b:this.b,a:this.a}}toRgbString(){return 1!==this.a?`rgba(${this.r},${this.g},${this.b},${this.a})`:`rgb(${this.r},${this.g},${this.b})`}toString(){return this.toRgbString()}_sc(e,t,n){let r=this.clone();return r[e]=l(t,n),r}_c(e){return new this.constructor(e)}getMax(){return void 0===this._max&&(this._max=Math.max(this.r,this.g,this.b)),this._max}getMin(){return void 0===this._min&&(this._min=Math.min(this.r,this.g,this.b)),this._min}fromHexString(e){let t=e.replace("#","");function n(e,n){return parseInt(t[e]+t[n||e],16)}t.length<6?(this.r=n(0),this.g=n(1),this.b=n(2),this.a=t[3]?n(3)/255:1):(this.r=n(0,1),this.g=n(2,3),this.b=n(4,5),this.a=t[6]?n(6,7)/255:1)}fromHsl({h:e,s:t,l:n,a:r}){if(this._h=e%360,this._s=t,this._l=n,this.a="number"==typeof r?r:1,t<=0){let e=o(255*n);this.r=e,this.g=e,this.b=e}let a=0,i=0,l=0,c=e/60,s=(1-Math.abs(2*n-1))*t,d=s*(1-Math.abs(c%2-1));c>=0&&c<1?(a=s,i=d):c>=1&&c<2?(a=d,i=s):c>=2&&c<3?(i=s,l=d):c>=3&&c<4?(i=d,l=s):c>=4&&c<5?(a=d,l=s):c>=5&&c<6&&(a=s,l=d);let u=n-s/2;this.r=o((a+u)*255),this.g=o((i+u)*255),this.b=o((l+u)*255)}fromHsv({h:e,s:t,v:n,a:r}){this._h=e%360,this._s=t,this._v=n,this.a="number"==typeof r?r:1;let a=o(255*n);if(this.r=a,this.g=a,this.b=a,t<=0)return;let i=e/60,l=Math.floor(i),c=i-l,s=o(n*(1-t)*255),d=o(n*(1-t*c)*255),u=o(n*(1-t*(1-c))*255);switch(l){case 0:this.g=u,this.b=s;break;case 1:this.r=d,this.b=s;break;case 2:this.r=s,this.b=u;break;case 3:this.r=s,this.g=d;break;case 4:this.r=u,this.g=s;break;default:this.g=s,this.b=d}}fromHsvString(e){let t=a(e,i);this.fromHsv({h:t[0],s:t[1],v:t[2],a:t[3]})}fromHslString(e){let t=a(e,i);this.fromHsl({h:t[0],s:t[1],l:t[2],a:t[3]})}fromRgbString(e){let t=a(e,(e,t)=>t.includes("%")?o(e/100*255):e);this.r=t[0],this.g=t[1],this.b=t[2],this.a=t[3]}}},20932(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M872 474H286.9l350.2-304c5.6-4.9 2.2-14-5.2-14h-88.5c-3.9 0-7.6 1.4-10.5 3.9L155 487.8a31.96 31.96 0 000 48.3L535.1 866c1.5 1.3 3.3 2 5.2 2h91.5c7.4 0 10.8-9.2 5.2-14L286.9 550H872c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8z"}}]},name:"arrow-left",theme:"outlined"}},6711(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M869 487.8L491.2 159.9c-2.9-2.5-6.6-3.9-10.5-3.9h-88.5c-7.4 0-10.8 9.2-5.2 14l350.2 304H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h585.1L386.9 854c-5.6 4.9-2.2 14 5.2 14h91.5c1.9 0 3.8-.7 5.2-2L869 536.2a32.07 32.07 0 000-48.4z"}}]},name:"arrow-right",theme:"outlined"}},83690(e,t,n){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;let o=(r=n(64607))&&r.__esModule?r:{default:r};t.default=o,e.exports=o},58717(e,t,n){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;let o=(r=n(36110))&&r.__esModule?r:{default:r};t.default=o,e.exports=o},67928(e,t,n){"use strict";n.d(t,{A:()=>j});var r=n(58168),o=n(57046),a=n(64467),i=n(80045),l=n(96540),c=n(46942),s=n.n(c),d=n(81463),u=n(61053),p=n(89379),f=n(82284),m=n(85089),g=n(72633),h=n(68210);function b(e){return"object"===(0,f.A)(e)&&"string"==typeof e.name&&"string"==typeof e.theme&&("object"===(0,f.A)(e.icon)||"function"==typeof e.icon)}function v(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.keys(e).reduce(function(t,n){var r=e[n];return"class"===n?(t.className=r,delete t.class):(delete t[n],t[n.replace(/-(.)/g,function(e,t){return t.toUpperCase()})]=r),t},{})}function y(e){return(0,d.generate)(e)[0]}function x(e){return e?Array.isArray(e)?e:[e]:[]}var $=function(e){var t=(0,l.useContext)(u.A),n=t.csp,r=t.prefixCls,o=t.layer,a="\n.anticon {\n display: inline-flex;\n align-items: center;\n color: inherit;\n font-style: normal;\n line-height: 0;\n text-align: center;\n text-transform: none;\n vertical-align: -0.125em;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.anticon > * {\n line-height: 1;\n}\n\n.anticon svg {\n display: inline-block;\n}\n\n.anticon::before {\n display: none;\n}\n\n.anticon .anticon-icon {\n display: block;\n}\n\n.anticon[tabindex] {\n cursor: pointer;\n}\n\n.anticon-spin::before,\n.anticon-spin {\n display: inline-block;\n -webkit-animation: loadingCircle 1s infinite linear;\n animation: loadingCircle 1s infinite linear;\n}\n\n@-webkit-keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n";r&&(a=a.replace(/anticon/g,r)),o&&(a="@layer ".concat(o," {\n").concat(a,"\n}")),(0,l.useEffect)(function(){var t=e.current,r=(0,g.j)(t);(0,m.BD)(a,"@ant-design-icons",{prepend:!o,csp:n,attachTo:r})},[])},A=["icon","className","onClick","style","primaryColor","secondaryColor"],w={primaryColor:"#333",secondaryColor:"#E6E6E6",calculated:!1},S=function(e){var t,n,r=e.icon,o=e.className,a=e.onClick,c=e.style,s=e.primaryColor,d=e.secondaryColor,u=(0,i.A)(e,A),f=l.useRef(),m=w;if(s&&(m={primaryColor:s,secondaryColor:d||y(s)}),$(f),t=b(r),n="icon should be icon definiton, but got ".concat(r),(0,h.Ay)(t,"[@ant-design/icons] ".concat(n)),!b(r))return null;var g=r;return g&&"function"==typeof g.icon&&(g=(0,p.A)((0,p.A)({},g),{},{icon:g.icon(m.primaryColor,m.secondaryColor)})),function e(t,n,r){return r?l.createElement(t.tag,(0,p.A)((0,p.A)({key:n},v(t.attrs)),r),(t.children||[]).map(function(r,o){return e(r,"".concat(n,"-").concat(t.tag,"-").concat(o))})):l.createElement(t.tag,(0,p.A)({key:n},v(t.attrs)),(t.children||[]).map(function(r,o){return e(r,"".concat(n,"-").concat(t.tag,"-").concat(o))}))}(g.icon,"svg-".concat(g.name),(0,p.A)((0,p.A)({className:o,onClick:a,style:c,"data-icon":g.name,width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true"},u),{},{ref:f}))};function C(e){var t=x(e),n=(0,o.A)(t,2),r=n[0],a=n[1];return S.setTwoToneColors({primaryColor:r,secondaryColor:a})}S.displayName="IconReact",S.getTwoToneColors=function(){return(0,p.A)({},w)},S.setTwoToneColors=function(e){var t=e.primaryColor,n=e.secondaryColor;w.primaryColor=t,w.secondaryColor=n||y(t),w.calculated=!!n};var O=["className","icon","spin","rotate","tabIndex","onClick","twoToneColor"];C(d.blue.primary);var k=l.forwardRef(function(e,t){var n=e.className,c=e.icon,d=e.spin,p=e.rotate,f=e.tabIndex,m=e.onClick,g=e.twoToneColor,h=(0,i.A)(e,O),b=l.useContext(u.A),v=b.prefixCls,y=void 0===v?"anticon":v,$=b.rootClassName,A=s()($,y,(0,a.A)((0,a.A)({},"".concat(y,"-").concat(c.name),!!c.name),"".concat(y,"-spin"),!!d||"loading"===c.name),n),w=f;void 0===w&&m&&(w=-1);var C=x(g),k=(0,o.A)(C,2),j=k[0],E=k[1];return l.createElement("span",(0,r.A)({role:"img","aria-label":c.name},h,{ref:t,tabIndex:w,onClick:m,className:A}),l.createElement(S,{icon:c,primaryColor:j,secondaryColor:E,style:p?{msTransform:"rotate(".concat(p,"deg)"),transform:"rotate(".concat(p,"deg)")}:void 0}))});k.displayName="AntdIcon",k.getTwoToneColor=function(){var e=S.getTwoToneColors();return e.calculated?[e.primaryColor,e.secondaryColor]:e.primaryColor},k.setTwoToneColor=C;let j=k},61053(e,t,n){"use strict";n.d(t,{A:()=>r});let r=(0,n(96540).createContext)({})},6663(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M908 640H804V488c0-4.4-3.6-8-8-8H548v-96h108c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16v288c0 8.8 7.2 16 16 16h108v96H228c-4.4 0-8 3.6-8 8v152H116c-8.8 0-16 7.2-16 16v288c0 8.8 7.2 16 16 16h288c8.8 0 16-7.2 16-16V656c0-8.8-7.2-16-16-16H292v-88h440v88H620c-8.8 0-16 7.2-16 16v288c0 8.8 7.2 16 16 16h288c8.8 0 16-7.2 16-16V656c0-8.8-7.2-16-16-16zm-564 76v168H176V716h168zm84-408V140h168v168H428zm420 576H680V716h168v168z"}}]},name:"apartment",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},49776(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M464 144H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H212V212h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16zm-52 268H612V212h200v200zM464 544H160c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H212V612h200v200zm452-268H560c-8.8 0-16 7.2-16 16v304c0 8.8 7.2 16 16 16h304c8.8 0 16-7.2 16-16V560c0-8.8-7.2-16-16-16zm-52 268H612V612h200v200z"}}]},name:"appstore",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},40666(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M296 250c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H296zm184 144H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm-48 458H208V148h560v320c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h264c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm440-88H728v-36.6c46.3-13.8 80-56.6 80-107.4 0-61.9-50.1-112-112-112s-112 50.1-112 112c0 50.7 33.7 93.6 80 107.4V764H520c-8.8 0-16 7.2-16 16v152c0 8.8 7.2 16 16 16h352c8.8 0 16-7.2 16-16V780c0-8.8-7.2-16-16-16zM646 620c0-27.6 22.4-50 50-50s50 22.4 50 50-22.4 50-50 50-50-22.4-50-50zm180 266H566v-60h260v60z"}}]},name:"audit",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},6266(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M894 462c30.9 0 43.8-39.7 18.7-58L530.8 126.2a31.81 31.81 0 00-37.6 0L111.3 404c-25.1 18.2-12.2 58 18.8 58H192v374h-72c-4.4 0-8 3.6-8 8v52c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-52c0-4.4-3.6-8-8-8h-72V462h62zM512 196.7l271.1 197.2H240.9L512 196.7zM264 462h117v374H264V462zm189 0h117v374H453V462zm307 374H642V462h118v374z"}}]},name:"bank",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},69149(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M888 792H200V168c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v688c0 4.4 3.6 8 8 8h752c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm-600-80h56c4.4 0 8-3.6 8-8V560c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v144c0 4.4 3.6 8 8 8zm152 0h56c4.4 0 8-3.6 8-8V384c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v320c0 4.4 3.6 8 8 8zm152 0h56c4.4 0 8-3.6 8-8V462c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v242c0 4.4 3.6 8 8 8zm152 0h56c4.4 0 8-3.6 8-8V304c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v400c0 4.4 3.6 8 8 8z"}}]},name:"bar-chart",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},65235(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M816 768h-24V428c0-141.1-104.3-257.7-240-277.1V112c0-22.1-17.9-40-40-40s-40 17.9-40 40v38.9c-135.7 19.4-240 136-240 277.1v340h-24c-17.7 0-32 14.3-32 32v32c0 4.4 3.6 8 8 8h216c0 61.8 50.2 112 112 112s112-50.2 112-112h216c4.4 0 8-3.6 8-8v-32c0-17.7-14.3-32-32-32zM512 888c-26.5 0-48-21.5-48-48h96c0 26.5-21.5 48-48 48zM304 768V428c0-55.6 21.6-107.8 60.9-147.1S456.4 220 512 220c55.6 0 107.8 21.6 147.1 60.9S720 372.4 720 428v340H304z"}}]},name:"bell",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},46420(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm193.5 301.7l-210.6 292a31.8 31.8 0 01-51.7 0L318.5 484.9c-3.8-5.3 0-12.7 6.5-12.7h46.9c10.2 0 19.9 4.9 25.9 13.3l71.2 98.8 157.2-218c6-8.3 15.6-13.3 25.9-13.3H699c6.5 0 10.3 7.4 6.5 12.7z"}}]},name:"check-circle",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},87281(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M699 353h-46.9c-10.2 0-19.9 4.9-25.9 13.3L469 584.3l-71.2-98.8c-6-8.3-15.6-13.3-25.9-13.3H325c-6.5 0-10.3 7.4-6.5 12.7l124.6 172.8a31.8 31.8 0 0051.7 0l210.6-292c3.9-5.3.1-12.7-6.4-12.7z"}},{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"}}]},name:"check-circle",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},51237(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M912 190h-69.9c-9.8 0-19.1 4.5-25.1 12.2L404.7 724.5 207 474a32 32 0 00-25.1-12.2H112c-6.7 0-10.4 7.7-6.3 12.9l273.9 347c12.8 16.2 37.4 16.2 50.3 0l488.4-618.9c4.1-5.1.4-12.8-6.3-12.8z"}}]},name:"check",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},90958(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"}},{tag:"path",attrs:{d:"M686.7 638.6L544.1 535.5V288c0-4.4-3.6-8-8-8H488c-4.4 0-8 3.6-8 8v275.4c0 2.6 1.2 5 3.3 6.5l165.4 120.6c3.6 2.6 8.6 1.8 11.2-1.7l28.6-39c2.6-3.7 1.8-8.7-1.8-11.2z"}}]},name:"clock-circle",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},39159(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64c247.4 0 448 200.6 448 448S759.4 960 512 960 64 759.4 64 512 264.6 64 512 64zm127.98 274.82h-.04l-.08.06L512 466.75 384.14 338.88c-.04-.05-.06-.06-.08-.06a.12.12 0 00-.07 0c-.03 0-.05.01-.09.05l-45.02 45.02a.2.2 0 00-.05.09.12.12 0 000 .07v.02a.27.27 0 00.06.06L466.75 512 338.88 639.86c-.05.04-.06.06-.06.08a.12.12 0 000 .07c0 .03.01.05.05.09l45.02 45.02a.2.2 0 00.09.05.12.12 0 00.07 0c.02 0 .04-.01.08-.05L512 557.25l127.86 127.87c.04.04.06.05.08.05a.12.12 0 00.07 0c.03 0 .05-.01.09-.05l45.02-45.02a.2.2 0 00.05-.09.12.12 0 000-.07v-.02a.27.27 0 00-.05-.06L557.25 512l127.87-127.86c.04-.04.05-.06.05-.08a.12.12 0 000-.07c0-.03-.01-.05-.05-.09l-45.02-45.02a.2.2 0 00-.09-.05.12.12 0 00-.07 0z"}}]},name:"close-circle",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},3727(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64c247.4 0 448 200.6 448 448S759.4 960 512 960 64 759.4 64 512 264.6 64 512 64zm0 76c-205.4 0-372 166.6-372 372s166.6 372 372 372 372-166.6 372-372-166.6-372-372-372zm128.01 198.83c.03 0 .05.01.09.06l45.02 45.01a.2.2 0 01.05.09.12.12 0 010 .07c0 .02-.01.04-.05.08L557.25 512l127.87 127.86a.27.27 0 01.05.06v.02a.12.12 0 010 .07c0 .03-.01.05-.05.09l-45.02 45.02a.2.2 0 01-.09.05.12.12 0 01-.07 0c-.02 0-.04-.01-.08-.05L512 557.25 384.14 685.12c-.04.04-.06.05-.08.05a.12.12 0 01-.07 0c-.03 0-.05-.01-.09-.05l-45.02-45.02a.2.2 0 01-.05-.09.12.12 0 010-.07c0-.02.01-.04.06-.08L466.75 512 338.88 384.14a.27.27 0 01-.05-.06l-.01-.02a.12.12 0 010-.07c0-.03.01-.05.05-.09l45.02-45.02a.2.2 0 01.09-.05.12.12 0 01.07 0c.02 0 .04.01.08.06L512 466.75l127.86-127.86c.04-.05.06-.06.08-.06a.12.12 0 01.07 0z"}}]},name:"close-circle",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},5100(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M799.86 166.31c.02 0 .04.02.08.06l57.69 57.7c.04.03.05.05.06.08a.12.12 0 010 .06c0 .03-.02.05-.06.09L569.93 512l287.7 287.7c.04.04.05.06.06.09a.12.12 0 010 .07c0 .02-.02.04-.06.08l-57.7 57.69c-.03.04-.05.05-.07.06a.12.12 0 01-.07 0c-.03 0-.05-.02-.09-.06L512 569.93l-287.7 287.7c-.04.04-.06.05-.09.06a.12.12 0 01-.07 0c-.02 0-.04-.02-.08-.06l-57.69-57.7c-.04-.03-.05-.05-.06-.07a.12.12 0 010-.07c0-.03.02-.05.06-.09L454.07 512l-287.7-287.7c-.04-.04-.05-.06-.06-.09a.12.12 0 010-.07c0-.02.02-.04.06-.08l57.7-57.69c.03-.04.05-.05.07-.06a.12.12 0 01.07 0c.03 0 .05.02.09.06L512 454.07l287.7-287.7c.04-.04.06-.05.09-.06a.12.12 0 01.07 0z"}}]},name:"close",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},99221(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372zm198.4-588.1a32 32 0 00-24.5.5L414.9 415 296.4 686c-3.6 8.2-3.6 17.5 0 25.7 3.4 7.8 9.7 13.9 17.7 17 3.8 1.5 7.7 2.2 11.7 2.2 4.4 0 8.7-.9 12.8-2.7l271-118.6 118.5-271a32.06 32.06 0 00-17.7-42.7zM576.8 534.4l26.2 26.2-42.4 42.4-26.2-26.2L380 644.4 447.5 490 422 464.4l42.4-42.4 25.5 25.5L644.4 380l-67.6 154.4zM464.4 422L422 464.4l25.5 25.6 86.9 86.8 26.2 26.2 42.4-42.4-26.2-26.2-86.8-86.9z"}}]},name:"compass",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},66052(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 64H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zm-40 824H232V687h97.9c11.6 32.8 32 62.3 59.1 84.7 34.5 28.5 78.2 44.3 123 44.3s88.5-15.7 123-44.3c27.1-22.4 47.5-51.9 59.1-84.7H792v-63H643.6l-5.2 24.7C626.4 708.5 573.2 752 512 752s-114.4-43.5-126.5-103.3l-5.2-24.7H232V136h560v752zM320 341h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H320c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm0 160h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H320c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8z"}}]},name:"container",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},44022(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 64H296c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h496v688c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V96c0-17.7-14.3-32-32-32zM704 192H192c-17.7 0-32 14.3-32 32v530.7c0 8.5 3.4 16.6 9.4 22.6l173.3 173.3c2.2 2.2 4.7 4 7.4 5.5v1.9h4.2c3.5 1.3 7.2 2 11 2H704c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32zM350 856.2L263.9 770H350v86.2zM664 888H414V746c0-22.1-17.9-40-40-40H232V264h432v624z"}}]},name:"copy",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},55156(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M924.8 385.6a446.7 446.7 0 00-96-142.4 446.7 446.7 0 00-142.4-96C631.1 123.8 572.5 112 512 112s-119.1 11.8-174.4 35.2a446.7 446.7 0 00-142.4 96 446.7 446.7 0 00-96 142.4C75.8 440.9 64 499.5 64 560c0 132.7 58.3 257.7 159.9 343.1l1.7 1.4c5.8 4.8 13.1 7.5 20.6 7.5h531.7c7.5 0 14.8-2.7 20.6-7.5l1.7-1.4C901.7 817.7 960 692.7 960 560c0-60.5-11.9-119.1-35.2-174.4zM761.4 836H262.6A371.12 371.12 0 01140 560c0-99.4 38.7-192.8 109-263 70.3-70.3 163.7-109 263-109 99.4 0 192.8 38.7 263 109 70.3 70.3 109 163.7 109 263 0 105.6-44.5 205.5-122.6 276zM623.5 421.5a8.03 8.03 0 00-11.3 0L527.7 506c-18.7-5-39.4-.2-54.1 14.5a55.95 55.95 0 000 79.2 55.95 55.95 0 0079.2 0 55.87 55.87 0 0014.5-54.1l84.5-84.5c3.1-3.1 3.1-8.2 0-11.3l-28.3-28.3zM490 320h44c4.4 0 8-3.6 8-8v-80c0-4.4-3.6-8-8-8h-44c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8zm260 218v44c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8v-44c0-4.4-3.6-8-8-8h-80c-4.4 0-8 3.6-8 8zm12.7-197.2l-31.1-31.1a8.03 8.03 0 00-11.3 0l-56.6 56.6a8.03 8.03 0 000 11.3l31.1 31.1c3.1 3.1 8.2 3.1 11.3 0l56.6-56.6c3.1-3.1 3.1-8.2 0-11.3zm-458.6-31.1a8.03 8.03 0 00-11.3 0l-31.1 31.1a8.03 8.03 0 000 11.3l56.6 56.6c3.1 3.1 8.2 3.1 11.3 0l31.1-31.1c3.1-3.1 3.1-8.2 0-11.3l-56.6-56.6zM262 530h-80c-4.4 0-8 3.6-8 8v44c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8v-44c0-4.4-3.6-8-8-8z"}}]},name:"dashboard",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},53159(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 64H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zm-600 72h560v208H232V136zm560 480H232V408h560v208zm0 272H232V680h560v208zM304 240a40 40 0 1080 0 40 40 0 10-80 0zm0 272a40 40 0 1080 0 40 40 0 10-80 0zm0 272a40 40 0 1080 0 40 40 0 10-80 0z"}}]},name:"database",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},46029(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M360 184h-8c4.4 0 8-3.6 8-8v8h304v-8c0 4.4 3.6 8 8 8h-8v72h72v-80c0-35.3-28.7-64-64-64H352c-35.3 0-64 28.7-64 64v80h72v-72zm504 72H160c-17.7 0-32 14.3-32 32v32c0 4.4 3.6 8 8 8h60.4l24.7 523c1.6 34.1 29.8 61 63.9 61h454c34.2 0 62.3-26.8 63.9-61l24.7-523H888c4.4 0 8-3.6 8-8v-32c0-17.7-14.3-32-32-32zM731.3 840H292.7l-24.2-512h487l-24.2 512z"}}]},name:"delete",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},37864(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M533.2 492.3L277.9 166.1c-3-3.9-7.7-6.1-12.6-6.1H188c-6.7 0-10.4 7.7-6.3 12.9L447.1 512 181.7 851.1A7.98 7.98 0 00188 864h77.3c4.9 0 9.6-2.3 12.6-6.1l255.3-326.1c9.1-11.7 9.1-27.9 0-39.5zm304 0L581.9 166.1c-3-3.9-7.7-6.1-12.6-6.1H492c-6.7 0-10.4 7.7-6.3 12.9L751.1 512 485.7 851.1A7.98 7.98 0 00492 864h77.3c4.9 0 9.6-2.3 12.6-6.1l255.3-326.1c9.1-11.7 9.1-27.9 0-39.5z"}}]},name:"double-right",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},98459(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M884 256h-75c-5.1 0-9.9 2.5-12.9 6.6L512 654.2 227.9 262.6c-3-4.1-7.8-6.6-12.9-6.6h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3.1-12.7-6.4-12.7z"}}]},name:"down",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},87039(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M176 511a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0z"}}]},name:"ellipsis",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},51399(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm-32 232c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V296zm32 440a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"exclamation-circle",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},17011(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 472a40 40 0 1080 0 40 40 0 10-80 0zm367 352.9L696.3 352V178H768v-68H256v68h71.7v174L145 824.9c-2.8 7.4-4.3 15.2-4.3 23.1 0 35.3 28.7 64 64 64h614.6c7.9 0 15.7-1.5 23.1-4.3 33-12.7 49.4-49.8 36.6-82.8zM395.7 364.7V180h232.6v184.7L719.2 600c-20.7-5.3-42.1-8-63.9-8-61.2 0-119.2 21.5-165.3 60a188.78 188.78 0 01-121.3 43.9c-32.7 0-64.1-8.3-91.8-23.7l118.8-307.5zM210.5 844l41.7-107.8c35.7 18.1 75.4 27.8 116.6 27.8 61.2 0 119.2-21.5 165.3-60 33.9-28.2 76.3-43.9 121.3-43.9 35 0 68.4 9.5 97.6 27.1L813.5 844h-603z"}}]},name:"experiment",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},76639(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M942.2 486.2Q889.47 375.11 816.7 305l-50.88 50.88C807.31 395.53 843.45 447.4 874.7 512 791.5 684.2 673.4 766 512 766q-72.67 0-133.87-22.38L323 798.75Q408 838 512 838q288.3 0 430.2-300.3a60.29 60.29 0 000-51.5zm-63.57-320.64L836 122.88a8 8 0 00-11.32 0L715.31 232.2Q624.86 186 512 186q-288.3 0-430.2 300.3a60.3 60.3 0 000 51.5q56.69 119.4 136.5 191.41L112.48 835a8 8 0 000 11.31L155.17 889a8 8 0 0011.31 0l712.15-712.12a8 8 0 000-11.32zM149.3 512C232.6 339.8 350.7 258 512 258c54.54 0 104.13 9.36 149.12 28.39l-70.3 70.3a176 176 0 00-238.13 238.13l-83.42 83.42C223.1 637.49 183.3 582.28 149.3 512zm246.7 0a112.11 112.11 0 01146.2-106.69L401.31 546.2A112 112 0 01396 512z"}},{tag:"path",attrs:{d:"M508 624c-3.46 0-6.87-.16-10.25-.47l-52.82 52.82a176.09 176.09 0 00227.42-227.42l-52.82 52.82c.31 3.38.47 6.79.47 10.25a111.94 111.94 0 01-112 112z"}}]},name:"eye-invisible",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},7532(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M942.2 486.2C847.4 286.5 704.1 186 512 186c-192.2 0-335.4 100.5-430.2 300.3a60.3 60.3 0 000 51.5C176.6 737.5 319.9 838 512 838c192.2 0 335.4-100.5 430.2-300.3 7.7-16.2 7.7-35 0-51.5zM512 766c-161.3 0-279.4-81.8-362.7-254C232.6 339.8 350.7 258 512 258c161.3 0 279.4 81.8 362.7 254C791.5 684.2 673.4 766 512 766zm-4-430c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm0 288c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112z"}}]},name:"eye",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},69047(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M688 312v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8zm-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H296zm376 116c-119.3 0-216 96.7-216 216s96.7 216 216 216 216-96.7 216-216-96.7-216-216-216zm107.5 323.5C750.8 868.2 712.6 884 672 884s-78.8-15.8-107.5-44.5C535.8 810.8 520 772.6 520 732s15.8-78.8 44.5-107.5C593.2 595.8 631.4 580 672 580s78.8 15.8 107.5 44.5C808.2 653.2 824 691.4 824 732s-15.8 78.8-44.5 107.5zM761 656h-44.3c-2.6 0-5 1.2-6.5 3.3l-63.5 87.8-23.1-31.9a7.92 7.92 0 00-6.5-3.3H573c-6.5 0-10.3 7.4-6.5 12.7l73.8 102.1c3.2 4.4 9.7 4.4 12.9 0l114.2-158c3.9-5.3.1-12.7-6.4-12.7zM440 852H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h272c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8z"}}]},name:"file-done",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},30341(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M854.6 288.6L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM790.2 326H602V137.8L790.2 326zm1.8 562H232V136h302v216a42 42 0 0042 42h216v494z"}}]},name:"file",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},73488(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M644.7 669.2a7.92 7.92 0 00-6.5-3.3H594c-6.5 0-10.3 7.4-6.5 12.7l73.8 102.1c3.2 4.4 9.7 4.4 12.9 0l114.2-158c3.8-5.3 0-12.7-6.5-12.7h-44.3c-2.6 0-5 1.2-6.5 3.3l-63.5 87.8-22.9-31.9zM688 306v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8zm-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H296zm184 458H208V148h560v296c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h312c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm402.6-320.8l-192-66.7c-.9-.3-1.7-.4-2.6-.4s-1.8.1-2.6.4l-192 66.7a7.96 7.96 0 00-5.4 7.5v251.1c0 2.5 1.1 4.8 3.1 6.3l192 150.2c1.4 1.1 3.2 1.7 4.9 1.7s3.5-.6 4.9-1.7l192-150.2c1.9-1.5 3.1-3.8 3.1-6.3V538.7c0-3.4-2.2-6.4-5.4-7.5zM826 763.7L688 871.6 550 763.7V577l138-48 138 48v186.7z"}}]},name:"file-protect",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},95363(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M688 312v-48c0-4.4-3.6-8-8-8H296c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8zm-392 88c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H296zm144 452H208V148h560v344c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V108c0-17.7-14.3-32-32-32H168c-17.7 0-32 14.3-32 32v784c0 17.7 14.3 32 32 32h272c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm445.7 51.5l-93.3-93.3C814.7 780.7 828 743.9 828 704c0-97.2-78.8-176-176-176s-176 78.8-176 176 78.8 176 176 176c35.8 0 69-10.7 96.8-29l94.7 94.7c1.6 1.6 3.6 2.3 5.6 2.3s4.1-.8 5.6-2.3l31-31a7.9 7.9 0 000-11.2zM652 816c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112z"}}]},name:"file-search",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},53078(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M854.6 288.6L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM790.2 326H602V137.8L790.2 326zm1.8 562H232V136h302v216a42 42 0 0042 42h216v494zM504 618H320c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM312 490v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H320c-4.4 0-8 3.6-8 8z"}}]},name:"file-text",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},74315(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M904 512h-56c-4.4 0-8 3.6-8 8v320H184V184h320c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V520c0-4.4-3.6-8-8-8z"}},{tag:"path",attrs:{d:"M355.9 534.9L354 653.8c-.1 8.9 7.1 16.2 16 16.2h.4l118-2.9c2-.1 4-.9 5.4-2.3l415.9-415c3.1-3.1 3.1-8.2 0-11.3L785.4 114.3c-1.6-1.6-3.6-2.3-5.7-2.3s-4.1.8-5.7 2.3l-415.8 415a8.3 8.3 0 00-2.3 5.6zm63.5 23.6L779.7 199l45.2 45.1-360.5 359.7-45.7 1.1.7-46.4z"}}]},name:"form",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},33705(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540),a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"defs",attrs:{},children:[{tag:"style",attrs:{}}]},{tag:"path",attrs:{d:"M312.1 591.5c3.1 3.1 8.2 3.1 11.3 0l101.8-101.8 86.1 86.2c3.1 3.1 8.2 3.1 11.3 0l226.3-226.5c3.1-3.1 3.1-8.2 0-11.3l-36.8-36.8a8.03 8.03 0 00-11.3 0L517 485.3l-86.1-86.2a8.03 8.03 0 00-11.3 0L275.3 543.4a8.03 8.03 0 000 11.3l36.8 36.8z"}},{tag:"path",attrs:{d:"M904 160H548V96c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v64H120c-17.7 0-32 14.3-32 32v520c0 17.7 14.3 32 32 32h356.4v32L311.6 884.1a7.92 7.92 0 00-2.3 11l30.3 47.2v.1c2.4 3.7 7.4 4.7 11.1 2.3L512 838.9l161.3 105.8c3.7 2.4 8.7 1.4 11.1-2.3v-.1l30.3-47.2a8 8 0 00-2.3-11L548 776.3V744h356c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32zm-40 512H160V232h704v440z"}}]},name:"fund-projection-screen",theme:"outlined"},i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},58976(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M928 160H96c-17.7 0-32 14.3-32 32v640c0 17.7 14.3 32 32 32h832c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32zm-40 632H136V232h752v560zM610.3 476h123.4c1.3 0 2.3-3.6 2.3-8v-48c0-4.4-1-8-2.3-8H610.3c-1.3 0-2.3 3.6-2.3 8v48c0 4.4 1 8 2.3 8zm4.8 144h185.7c3.9 0 7.1-3.6 7.1-8v-48c0-4.4-3.2-8-7.1-8H615.1c-3.9 0-7.1 3.6-7.1 8v48c0 4.4 3.2 8 7.1 8zM224 673h43.9c4.2 0 7.6-3.3 7.9-7.5 3.8-50.5 46-90.5 97.2-90.5s93.4 40 97.2 90.5c.3 4.2 3.7 7.5 7.9 7.5H522a8 8 0 008-8.4c-2.8-53.3-32-99.7-74.6-126.1a111.8 111.8 0 0029.1-75.5c0-61.9-49.9-112-111.4-112s-111.4 50.1-111.4 112c0 29.1 11 55.5 29.1 75.5a158.09 158.09 0 00-74.6 126.1c-.4 4.6 3.2 8.4 7.8 8.4zm149-262c28.5 0 51.7 23.3 51.7 52s-23.2 52-51.7 52-51.7-23.3-51.7-52 23.2-52 51.7-52z"}}]},name:"idcard",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},15874(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm32 664c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V456c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272zm-32-344a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"info-circle",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},68866(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"}},{tag:"path",attrs:{d:"M464 336a48 48 0 1096 0 48 48 0 10-96 0zm72 112h-48c-4.4 0-8 3.6-8 8v272c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V456c0-4.4-3.6-8-8-8z"}}]},name:"info-circle",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},24123(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M608 112c-167.9 0-304 136.1-304 304 0 70.3 23.9 135 63.9 186.5l-41.1 41.1-62.3-62.3a8.15 8.15 0 00-11.4 0l-39.8 39.8a8.15 8.15 0 000 11.4l62.3 62.3-44.9 44.9-62.3-62.3a8.15 8.15 0 00-11.4 0l-39.8 39.8a8.15 8.15 0 000 11.4l62.3 62.3-65.3 65.3a8.03 8.03 0 000 11.3l42.3 42.3c3.1 3.1 8.2 3.1 11.3 0l253.6-253.6A304.06 304.06 0 00608 720c167.9 0 304-136.1 304-304S775.9 112 608 112zm161.2 465.2C726.2 620.3 668.9 644 608 644c-60.9 0-118.2-23.7-161.2-66.8-43.1-43-66.8-100.3-66.8-161.2 0-60.9 23.7-118.2 66.8-161.2 43-43.1 100.3-66.8 161.2-66.8 60.9 0 118.2 23.7 161.2 66.8 43.1 43 66.8 100.3 66.8 161.2 0 60.9-23.7 118.2-66.8 161.2z"}}]},name:"key",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},36296(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M724 218.3V141c0-6.7-7.7-10.4-12.9-6.3L260.3 486.8a31.86 31.86 0 000 50.3l450.8 352.1c5.3 4.1 12.9.4 12.9-6.3v-77.3c0-4.9-2.3-9.6-6.1-12.6l-360-281 360-281.1c3.8-3 6.1-7.7 6.1-12.6z"}}]},name:"left",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},71161(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M888 792H200V168c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v688c0 4.4 3.6 8 8 8h752c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM305.8 637.7c3.1 3.1 8.1 3.1 11.3 0l138.3-137.6L583 628.5c3.1 3.1 8.2 3.1 11.3 0l275.4-275.3c3.1-3.1 3.1-8.2 0-11.3l-39.6-39.6a8.03 8.03 0 00-11.3 0l-230 229.9L461.4 404a8.03 8.03 0 00-11.3 0L266.3 586.7a8.03 8.03 0 000 11.3l39.5 39.7z"}}]},name:"line-chart",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},66514(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"}}]},name:"loading",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},20506(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M868 732h-70.3c-4.8 0-9.3 2.1-12.3 5.8-7 8.5-14.5 16.7-22.4 24.5a353.84 353.84 0 01-112.7 75.9A352.8 352.8 0 01512.4 866c-47.9 0-94.3-9.4-137.9-27.8a353.84 353.84 0 01-112.7-75.9 353.28 353.28 0 01-76-112.5C167.3 606.2 158 559.9 158 512s9.4-94.2 27.8-137.8c17.8-42.1 43.4-80 76-112.5s70.5-58.1 112.7-75.9c43.6-18.4 90-27.8 137.9-27.8 47.9 0 94.3 9.3 137.9 27.8 42.2 17.8 80.1 43.4 112.7 75.9 7.9 7.9 15.3 16.1 22.4 24.5 3 3.7 7.6 5.8 12.3 5.8H868c6.3 0 10.2-7 6.7-12.3C798 160.5 663.8 81.6 511.3 82 271.7 82.6 79.6 277.1 82 516.4 84.4 751.9 276.2 942 512.4 942c152.1 0 285.7-78.8 362.3-197.7 3.4-5.3-.4-12.3-6.7-12.3zm88.9-226.3L815 393.7c-5.3-4.2-13-.4-13 6.3v76H488c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h314v76c0 6.7 7.8 10.5 13 6.3l141.9-112a8 8 0 000-12.6z"}}]},name:"logout",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},86404(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM115.4 518.9L271.7 642c5.8 4.6 14.4.5 14.4-6.9V388.9c0-7.4-8.5-11.5-14.4-6.9L115.4 505.1a8.74 8.74 0 000 13.8z"}}]},name:"menu-fold",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},565(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM142.4 642.1L298.7 519a8.84 8.84 0 000-13.9L142.4 381.9c-5.8-4.6-14.4-.5-14.4 6.9v246.3a8.9 8.9 0 0014.4 7z"}}]},name:"menu-unfold",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},82822(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M880 112c-3.8 0-7.7.7-11.6 2.3L292 345.9H128c-8.8 0-16 7.4-16 16.6v299c0 9.2 7.2 16.6 16 16.6h101.7c-3.7 11.6-5.7 23.9-5.7 36.4 0 65.9 53.8 119.5 120 119.5 55.4 0 102.1-37.6 115.9-88.4l408.6 164.2c3.9 1.5 7.8 2.3 11.6 2.3 16.9 0 32-14.2 32-33.2V145.2C912 126.2 897 112 880 112zM344 762.3c-26.5 0-48-21.4-48-47.8 0-11.2 3.9-21.9 11-30.4l84.9 34.1c-2 24.6-22.7 44.1-47.9 44.1zm496 58.4L318.8 611.3l-12.9-5.2H184V417.9h121.9l12.9-5.2L840 203.3v617.4z"}}]},name:"notification",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},13614(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M864 518H506V160c0-4.4-3.6-8-8-8h-26a398.46 398.46 0 00-282.8 117.1 398.19 398.19 0 00-85.7 127.1A397.61 397.61 0 0072 552a398.46 398.46 0 00117.1 282.8c36.7 36.7 79.5 65.6 127.1 85.7A397.61 397.61 0 00472 952a398.46 398.46 0 00282.8-117.1c36.7-36.7 65.6-79.5 85.7-127.1A397.61 397.61 0 00872 552v-26c0-4.4-3.6-8-8-8zM705.7 787.8A331.59 331.59 0 01470.4 884c-88.1-.4-170.9-34.9-233.2-97.2C174.5 724.1 140 640.7 140 552c0-88.7 34.5-172.1 97.2-234.8 54.6-54.6 124.9-87.9 200.8-95.5V586h364.3c-7.7 76.3-41.3 147-96.6 201.8zM952 462.4l-2.6-28.2c-8.5-92.1-49.4-179-115.2-244.6A399.4 399.4 0 00589 74.6L560.7 72c-4.7-.4-8.7 3.2-8.7 7.9V464c0 4.4 3.6 8 8 8l384-1c4.7 0 8.4-4 8-8.6zm-332.2-58.2V147.6a332.24 332.24 0 01166.4 89.8c45.7 45.6 77 103.6 90 166.1l-256.4.7z"}}]},name:"pie-chart",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},38623(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z"}},{tag:"path",attrs:{d:"M192 474h672q8 0 8 8v60q0 8-8 8H160q-8 0-8-8v-60q0-8 8-8z"}}]},name:"plus",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},42004(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656zM492 400h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H492c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm0 144h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H492c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zm0 144h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H492c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8zM340 368a40 40 0 1080 0 40 40 0 10-80 0zm0 144a40 40 0 1080 0 40 40 0 10-80 0zm0 144a40 40 0 1080 0 40 40 0 10-80 0z"}}]},name:"profile",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},27423(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M928 161H699.2c-49.1 0-97.1 14.1-138.4 40.7L512 233l-48.8-31.3A255.2 255.2 0 00324.8 161H96c-17.7 0-32 14.3-32 32v568c0 17.7 14.3 32 32 32h228.8c49.1 0 97.1 14.1 138.4 40.7l44.4 28.6c1.3.8 2.8 1.3 4.3 1.3s3-.4 4.3-1.3l44.4-28.6C602 807.1 650.1 793 699.2 793H928c17.7 0 32-14.3 32-32V193c0-17.7-14.3-32-32-32zM324.8 721H136V233h188.8c35.4 0 69.8 10.1 99.5 29.2l48.8 31.3 6.9 4.5v462c-47.6-25.6-100.8-39-155.2-39zm563.2 0H699.2c-54.4 0-107.6 13.4-155.2 39V298l6.9-4.5 48.8-31.3c29.7-19.1 64.1-29.2 99.5-29.2H888v488zM396.9 361H211.1c-3.9 0-7.1 3.4-7.1 7.5v45c0 4.1 3.2 7.5 7.1 7.5h185.7c3.9 0 7.1-3.4 7.1-7.5v-45c.1-4.1-3.1-7.5-7-7.5zm223.1 7.5v45c0 4.1 3.2 7.5 7.1 7.5h185.7c3.9 0 7.1-3.4 7.1-7.5v-45c0-4.1-3.2-7.5-7.1-7.5H627.1c-3.9 0-7.1 3.4-7.1 7.5zM396.9 501H211.1c-3.9 0-7.1 3.4-7.1 7.5v45c0 4.1 3.2 7.5 7.1 7.5h185.7c3.9 0 7.1-3.4 7.1-7.5v-45c.1-4.1-3.1-7.5-7-7.5zm416 0H627.1c-3.9 0-7.1 3.4-7.1 7.5v45c0 4.1 3.2 7.5 7.1 7.5h185.7c3.9 0 7.1-3.4 7.1-7.5v-45c.1-4.1-3.1-7.5-7-7.5z"}}]},name:"read",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},94231(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M676 565c-50.8 0-92 41.2-92 92s41.2 92 92 92 92-41.2 92-92-41.2-92-92-92zm0 126c-18.8 0-34-15.2-34-34s15.2-34 34-34 34 15.2 34 34-15.2 34-34 34zm204-523H668c0-30.9-25.1-56-56-56h-80c-30.9 0-56 25.1-56 56H264c-17.7 0-32 14.3-32 32v200h-88c-17.7 0-32 14.3-32 32v448c0 17.7 14.3 32 32 32h336c17.7 0 32-14.3 32-32v-16h368c17.7 0 32-14.3 32-32V200c0-17.7-14.3-32-32-32zm-412 64h72v-56h64v56h72v48H468v-48zm-20 616H176V616h272v232zm0-296H176v-88h272v88zm392 240H512V432c0-17.7-14.3-32-32-32H304V240h100v104h336V240h100v552zM704 408v96c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-96c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8zM592 512h48c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8z"}}]},name:"reconciliation",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},85402(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M909.1 209.3l-56.4 44.1C775.8 155.1 656.2 92 521.9 92 290 92 102.3 279.5 102 511.5 101.7 743.7 289.8 932 521.9 932c181.3 0 335.8-115 394.6-276.1 1.5-4.2-.7-8.9-4.9-10.3l-56.7-19.5a8 8 0 00-10.1 4.8c-1.8 5-3.8 10-5.9 14.9-17.3 41-42.1 77.8-73.7 109.4A344.77 344.77 0 01655.9 829c-42.3 17.9-87.4 27-133.8 27-46.5 0-91.5-9.1-133.8-27A341.5 341.5 0 01279 755.2a342.16 342.16 0 01-73.7-109.4c-17.9-42.4-27-87.4-27-133.9s9.1-91.5 27-133.9c17.3-41 42.1-77.8 73.7-109.4 31.6-31.6 68.4-56.4 109.3-73.8 42.3-17.9 87.4-27 133.8-27 46.5 0 91.5 9.1 133.8 27a341.5 341.5 0 01109.3 73.8c9.9 9.9 19.2 20.4 27.8 31.4l-60.2 47a8 8 0 003 14.1l175.6 43c5 1.2 9.9-2.6 9.9-7.7l.8-180.9c-.1-6.6-7.8-10.3-13-6.2z"}}]},name:"reload",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},88996(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"}}]},name:"right",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},18294(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M866.9 169.9L527.1 54.1C523 52.7 517.5 52 512 52s-11 .7-15.1 2.1L157.1 169.9c-8.3 2.8-15.1 12.4-15.1 21.2v482.4c0 8.8 5.7 20.4 12.6 25.9L499.3 968c3.5 2.7 8 4.1 12.6 4.1s9.2-1.4 12.6-4.1l344.7-268.6c6.9-5.4 12.6-17 12.6-25.9V191.1c.2-8.8-6.6-18.3-14.9-21.2zM694.5 340.7L481.9 633.4a16.1 16.1 0 01-26 0l-126.4-174c-3.8-5.3 0-12.7 6.5-12.7h55.2c5.1 0 10 2.5 13 6.6l64.7 89 150.9-207.8c3-4.1 7.8-6.6 13-6.6H688c6.5.1 10.3 7.5 6.5 12.8z"}}]},name:"safety-certificate",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},56304(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M866.9 169.9L527.1 54.1C523 52.7 517.5 52 512 52s-11 .7-15.1 2.1L157.1 169.9c-8.3 2.8-15.1 12.4-15.1 21.2v482.4c0 8.8 5.7 20.4 12.6 25.9L499.3 968c3.5 2.7 8 4.1 12.6 4.1s9.2-1.4 12.6-4.1l344.7-268.6c6.9-5.4 12.6-17 12.6-25.9V191.1c.2-8.8-6.6-18.3-14.9-21.2zM810 654.3L512 886.5 214 654.3V226.7l298-101.6 298 101.6v427.6zm-405.8-201c-3-4.1-7.8-6.6-13-6.6H336c-6.5 0-10.3 7.4-6.5 12.7l126.4 174a16.1 16.1 0 0026 0l212.6-292.7c3.8-5.3 0-12.7-6.5-12.7h-55.2c-5.1 0-10 2.5-13 6.6L468.9 542.4l-64.7-89.1z"}}]},name:"safety-certificate",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},38767(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M928 224H768v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56H548v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56H328v-56c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v56H96c-17.7 0-32 14.3-32 32v576c0 17.7 14.3 32 32 32h832c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32zm-40 568H136V296h120v56c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-56h148v56c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-56h148v56c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-56h120v496zM416 496H232c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm0 136H232c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zm308.2-177.4L620.6 598.3l-52.8-73.1c-3-4.2-7.8-6.6-12.9-6.6H500c-6.5 0-10.3 7.4-6.5 12.7l114.1 158.2a15.9 15.9 0 0025.8 0l165-228.7c3.8-5.3 0-12.7-6.5-12.7H737c-5-.1-9.8 2.4-12.8 6.5z"}}]},name:"schedule",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},4811(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M909.6 854.5L649.9 594.8C690.2 542.7 712 479 712 412c0-80.2-31.3-155.4-87.9-212.1-56.6-56.7-132-87.9-212.1-87.9s-155.5 31.3-212.1 87.9C143.2 256.5 112 331.8 112 412c0 80.1 31.3 155.5 87.9 212.1C256.5 680.8 331.8 712 412 712c67 0 130.6-21.8 182.7-62l259.7 259.6a8.2 8.2 0 0011.6 0l43.6-43.5a8.2 8.2 0 000-11.6zM570.4 570.4C528 612.7 471.8 636 412 636s-116-23.3-158.4-65.6C211.3 528 188 471.8 188 412s23.3-116.1 65.6-158.4C296 211.3 352.2 188 412 188s116.1 23.2 158.4 65.6S636 352.2 636 412s-23.3 116.1-65.6 158.4z"}}]},name:"search",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},24838(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M882 272.1V144c0-17.7-14.3-32-32-32H174c-17.7 0-32 14.3-32 32v128.1c-16.7 1-30 14.9-30 31.9v131.7a177 177 0 0014.4 70.4c4.3 10.2 9.6 19.8 15.6 28.9v345c0 17.6 14.3 32 32 32h676c17.7 0 32-14.3 32-32V535a175 175 0 0015.6-28.9c9.5-22.3 14.4-46 14.4-70.4V304c0-17-13.3-30.9-30-31.9zM214 184h596v88H214v-88zm362 656.1H448V736h128v104.1zm234 0H640V704c0-17.7-14.3-32-32-32H416c-17.7 0-32 14.3-32 32v136.1H214V597.9c2.9 1.4 5.9 2.8 9 4 22.3 9.4 46 14.1 70.4 14.1s48-4.7 70.4-14.1c13.8-5.8 26.8-13.2 38.7-22.1.2-.1.4-.1.6 0a180.4 180.4 0 0038.7 22.1c22.3 9.4 46 14.1 70.4 14.1 24.4 0 48-4.7 70.4-14.1 13.8-5.8 26.8-13.2 38.7-22.1.2-.1.4-.1.6 0a180.4 180.4 0 0038.7 22.1c22.3 9.4 46 14.1 70.4 14.1 24.4 0 48-4.7 70.4-14.1 3-1.3 6-2.6 9-4v242.2zm30-404.4c0 59.8-49 108.3-109.3 108.3-40.8 0-76.4-22.1-95.2-54.9-2.9-5-8.1-8.1-13.9-8.1h-.6c-5.7 0-11 3.1-13.9 8.1A109.24 109.24 0 01512 544c-40.7 0-76.2-22-95-54.7-3-5.1-8.4-8.3-14.3-8.3s-11.4 3.2-14.3 8.3a109.63 109.63 0 01-95.1 54.7C233 544 184 495.5 184 435.7v-91.2c0-.3.2-.5.5-.5h655c.3 0 .5.2.5.5v91.2z"}}]},name:"shop",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},85558(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 112H724V72c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v40H500V72c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v40H320c-17.7 0-32 14.3-32 32v120h-96c-17.7 0-32 14.3-32 32v632c0 17.7 14.3 32 32 32h512c17.7 0 32-14.3 32-32v-96h96c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zM664 888H232V336h218v174c0 22.1 17.9 40 40 40h174v338zm0-402H514V336h.2L664 485.8v.2zm128 274h-56V456L544 264H360v-80h68v32c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-32h152v32c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-32h68v576z"}}]},name:"snippets",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},67793(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M625.9 115c-5.9 0-11.9 1.6-17.4 5.3L254 352H90c-8.8 0-16 7.2-16 16v288c0 8.8 7.2 16 16 16h164l354.5 231.7c5.5 3.6 11.6 5.3 17.4 5.3 16.7 0 32.1-13.3 32.1-32.1V147.1c0-18.8-15.4-32.1-32.1-32.1zM586 803L293.4 611.7l-18-11.7H146V424h129.4l17.9-11.7L586 221v582zm348-327H806c-8.8 0-16 7.2-16 16v40c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-40c0-8.8-7.2-16-16-16zm-41.9 261.8l-110.3-63.7a15.9 15.9 0 00-21.7 5.9l-19.9 34.5c-4.4 7.6-1.8 17.4 5.8 21.8L856.3 800a15.9 15.9 0 0021.7-5.9l19.9-34.5c4.4-7.6 1.7-17.4-5.8-21.8zM760 344a15.9 15.9 0 0021.7 5.9L892 286.2c7.6-4.4 10.2-14.2 5.8-21.8L878 230a15.9 15.9 0 00-21.7-5.9L746 287.8a15.99 15.99 0 00-5.8 21.8L760 344z"}}]},name:"sound",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},49346(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 00.6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0046.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z"}}]},name:"star",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},26571(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M847.9 592H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h605.2L612.9 851c-4.1 5.2-.4 13 6.3 13h72.5c4.9 0 9.5-2.2 12.6-6.1l168.8-214.1c16.5-21 1.6-51.8-25.2-51.8zM872 356H266.8l144.3-183c4.1-5.2.4-13-6.3-13h-72.5c-4.9 0-9.5 2.2-12.6 6.1L150.9 380.2c-16.5 21-1.6 51.8 25.1 51.8h696c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8z"}}]},name:"swap",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},84795(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M168 504.2c1-43.7 10-86.1 26.9-126 17.3-41 42.1-77.7 73.7-109.4S337 212.3 378 195c42.4-17.9 87.4-27 133.9-27s91.5 9.1 133.8 27A341.5 341.5 0 01755 268.8c9.9 9.9 19.2 20.4 27.8 31.4l-60.2 47a8 8 0 003 14.1l175.7 43c5 1.2 9.9-2.6 9.9-7.7l.8-180.9c0-6.7-7.7-10.5-12.9-6.3l-56.4 44.1C765.8 155.1 646.2 92 511.8 92 282.7 92 96.3 275.6 92 503.8a8 8 0 008 8.2h60c4.4 0 7.9-3.5 8-7.8zm756 7.8h-60c-4.4 0-7.9 3.5-8 7.8-1 43.7-10 86.1-26.9 126-17.3 41-42.1 77.8-73.7 109.4A342.45 342.45 0 01512.1 856a342.24 342.24 0 01-243.2-100.8c-9.9-9.9-19.2-20.4-27.8-31.4l60.2-47a8 8 0 00-3-14.1l-175.7-43c-5-1.2-9.9 2.6-9.9 7.7l-.7 181c0 6.7 7.7 10.5 12.9 6.3l56.4-44.1C258.2 868.9 377.8 932 512.2 932c229.2 0 415.5-183.7 419.8-411.8a8 8 0 00-8-8.2z"}}]},name:"sync",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},39576(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M824.2 699.9a301.55 301.55 0 00-86.4-60.4C783.1 602.8 812 546.8 812 484c0-110.8-92.4-201.7-203.2-200-109.1 1.7-197 90.6-197 200 0 62.8 29 118.8 74.2 155.5a300.95 300.95 0 00-86.4 60.4C345 754.6 314 826.8 312 903.8a8 8 0 008 8.2h56c4.3 0 7.9-3.4 8-7.7 1.9-58 25.4-112.3 66.7-153.5A226.62 226.62 0 01612 684c60.9 0 118.2 23.7 161.3 66.8C814.5 792 838 846.3 840 904.3c.1 4.3 3.7 7.7 8 7.7h56a8 8 0 008-8.2c-2-77-33-149.2-87.8-203.9zM612 612c-34.2 0-66.4-13.3-90.5-37.5a126.86 126.86 0 01-37.5-91.8c.3-32.8 13.4-64.5 36.3-88 24-24.6 56.1-38.3 90.4-38.7 33.9-.3 66.8 12.9 91 36.6 24.8 24.3 38.4 56.8 38.4 91.4 0 34.2-13.3 66.3-37.5 90.5A127.3 127.3 0 01612 612zM361.5 510.4c-.9-8.7-1.4-17.5-1.4-26.4 0-15.9 1.5-31.4 4.3-46.5.7-3.6-1.2-7.3-4.5-8.8-13.6-6.1-26.1-14.5-36.9-25.1a127.54 127.54 0 01-38.7-95.4c.9-32.1 13.8-62.6 36.3-85.6 24.7-25.3 57.9-39.1 93.2-38.7 31.9.3 62.7 12.6 86 34.4 7.9 7.4 14.7 15.6 20.4 24.4 2 3.1 5.9 4.4 9.3 3.2 17.6-6.1 36.2-10.4 55.3-12.4 5.6-.6 8.8-6.6 6.3-11.6-32.5-64.3-98.9-108.7-175.7-109.9-110.9-1.7-203.3 89.2-203.3 199.9 0 62.8 28.9 118.8 74.2 155.5-31.8 14.7-61.1 35-86.5 60.4-54.8 54.7-85.8 126.9-87.8 204a8 8 0 008 8.2h56.1c4.3 0 7.9-3.4 8-7.7 1.9-58 25.4-112.3 66.7-153.5 29.4-29.4 65.4-49.8 104.7-59.7 3.9-1 6.5-4.7 6-8.7z"}}]},name:"team",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},71016(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M876.6 239.5c-.5-.9-1.2-1.8-2-2.5-5-5-13.1-5-18.1 0L684.2 409.3l-67.9-67.9L788.7 169c.8-.8 1.4-1.6 2-2.5 3.6-6.1 1.6-13.9-4.5-17.5-98.2-58-226.8-44.7-311.3 39.7-67 67-89.2 162-66.5 247.4l-293 293c-3 3-2.8 7.9.3 11l169.7 169.7c3.1 3.1 8.1 3.3 11 .3l292.9-292.9c85.5 22.8 180.5.7 247.6-66.4 84.4-84.5 97.7-213.1 39.7-311.3zM786 499.8c-58.1 58.1-145.3 69.3-214.6 33.6l-8.8 8.8-.1-.1-274 274.1-79.2-79.2 230.1-230.1s0 .1.1.1l52.8-52.8c-35.7-69.3-24.5-156.5 33.6-214.6a184.2 184.2 0 01144-53.5L537 318.9a32.05 32.05 0 000 45.3l124.5 124.5a32.05 32.05 0 0045.3 0l132.8-132.8c3.7 51.8-14.4 104.8-53.6 143.9z"}}]},name:"tool",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},16776(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M890.5 755.3L537.9 269.2c-12.8-17.6-39-17.6-51.7 0L133.5 755.3A8 8 0 00140 768h75c5.1 0 9.9-2.5 12.9-6.6L512 369.8l284.1 391.6c3 4.1 7.8 6.6 12.9 6.6h75c6.5 0 10.3-7.4 6.5-12.7z"}}]},name:"up",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},88237(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M400 317.7h73.9V656c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V317.7H624c6.7 0 10.4-7.7 6.3-12.9L518.3 163a8 8 0 00-12.6 0l-112 141.7c-4.1 5.3-.4 13 6.3 13zM878 626h-60c-4.4 0-8 3.6-8 8v154H214V634c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v198c0 17.7 14.3 32 32 32h684c17.7 0 32-14.3 32-32V634c0-4.4-3.6-8-8-8z"}}]},name:"upload",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},54169(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M678.3 655.4c24.2-13 51.9-20.4 81.4-20.4h.1c3 0 4.4-3.6 2.2-5.6a371.67 371.67 0 00-103.7-65.8c-.4-.2-.8-.3-1.2-.5C719.2 518 759.6 444.7 759.6 362c0-137-110.8-248-247.5-248S264.7 225 264.7 362c0 82.7 40.4 156 102.6 201.1-.4.2-.8.3-1.2.5-44.7 18.9-84.8 46-119.3 80.6a373.42 373.42 0 00-80.4 119.5A373.6 373.6 0 00137 901.8a8 8 0 008 8.2h59.9c4.3 0 7.9-3.5 8-7.8 2-77.2 32.9-149.5 87.6-204.3C357 641.2 432.2 610 512.2 610c56.7 0 111.1 15.7 158 45.1a8.1 8.1 0 008.1.3zM512.2 534c-45.8 0-88.9-17.9-121.4-50.4A171.2 171.2 0 01340.5 362c0-45.9 17.9-89.1 50.3-121.6S466.3 190 512.2 190s88.9 17.9 121.4 50.4A171.2 171.2 0 01683.9 362c0 45.9-17.9 89.1-50.3 121.6C601.1 516.1 558 534 512.2 534zM880 772H640c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h240c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8z"}}]},name:"user-delete",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},76164(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M858.5 763.6a374 374 0 00-80.6-119.5 375.63 375.63 0 00-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 00-80.6 119.5A371.7 371.7 0 00136 901.8a8 8 0 008 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 008-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"}}]},name:"user",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},72683(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(96540),a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"defs",attrs:{},children:[{tag:"style",attrs:{}}]},{tag:"path",attrs:{d:"M368 724H252V608c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v116H72c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h116v116c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V788h116c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8z"}},{tag:"path",attrs:{d:"M912 302.3L784 376V224c0-35.3-28.7-64-64-64H128c-35.3 0-64 28.7-64 64v352h72V232h576v560H448v72h272c35.3 0 64-28.7 64-64V648l128 73.7c21.3 12.3 48-3.1 48-27.6V330c0-24.6-26.7-40-48-27.7zM888 625l-104-59.8V458.9L888 399v226z"}},{tag:"path",attrs:{d:"M320 360c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H208c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h112z"}}]},name:"video-camera-add",theme:"outlined"},i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},3827(e,t,n){"use strict";var r=n(24994).default,o=n(6305).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(94634)),i=r(n(85715)),l=r(n(43693)),c=r(n(91847)),s=o(n(96540)),d=r(n(46942)),u=n(81463),p=r(n(86386)),f=r(n(71497)),m=n(66286),g=n(2317),h=["className","icon","spin","rotate","tabIndex","onClick","twoToneColor"];(0,m.setTwoToneColor)(u.blue.primary);var b=s.forwardRef(function(e,t){var n=e.className,r=e.icon,o=e.spin,u=e.rotate,m=e.tabIndex,b=e.onClick,v=e.twoToneColor,y=(0,c.default)(e,h),x=s.useContext(p.default),$=x.prefixCls,A=void 0===$?"anticon":$,w=x.rootClassName,S=(0,d.default)(w,A,(0,l.default)((0,l.default)({},"".concat(A,"-").concat(r.name),!!r.name),"".concat(A,"-spin"),!!o||"loading"===r.name),n),C=m;void 0===C&&b&&(C=-1);var O=(0,g.normalizeTwoToneColors)(v),k=(0,i.default)(O,2),j=k[0],E=k[1];return s.createElement("span",(0,a.default)({role:"img","aria-label":r.name},y,{ref:t,tabIndex:C,onClick:b,className:S}),s.createElement(f.default,{icon:r,primaryColor:j,secondaryColor:E,style:u?{msTransform:"rotate(".concat(u,"deg)"),transform:"rotate(".concat(u,"deg)")}:void 0}))});b.displayName="AntdIcon",b.getTwoToneColor=m.getTwoToneColor,b.setTwoToneColor=m.setTwoToneColor,t.default=b},86386(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,t.default=(0,n(96540).createContext)({})},71497(e,t,n){"use strict";var r=n(24994).default,o=n(6305).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(n(91847)),i=r(n(12897)),l=o(n(96540)),c=n(2317),s=["icon","className","onClick","style","primaryColor","secondaryColor"],d={primaryColor:"#333",secondaryColor:"#E6E6E6",calculated:!1},u=function(e){var t=e.icon,n=e.className,r=e.onClick,o=e.style,u=e.primaryColor,p=e.secondaryColor,f=(0,a.default)(e,s),m=l.useRef(),g=d;if(u&&(g={primaryColor:u,secondaryColor:p||(0,c.getSecondaryColor)(u)}),(0,c.useInsertStyles)(m),(0,c.warning)((0,c.isIconDefinition)(t),"icon should be icon definiton, but got ".concat(t)),!(0,c.isIconDefinition)(t))return null;var h=t;return h&&"function"==typeof h.icon&&(h=(0,i.default)((0,i.default)({},h),{},{icon:h.icon(g.primaryColor,g.secondaryColor)})),(0,c.generate)(h.icon,"svg-".concat(h.name),(0,i.default)((0,i.default)({className:n,onClick:r,style:o,"data-icon":h.name,width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true"},f),{},{ref:m}))};u.displayName="IconReact",u.getTwoToneColors=function(){return(0,i.default)({},d)},u.setTwoToneColors=function(e){var t=e.primaryColor,n=e.secondaryColor;d.primaryColor=t,d.secondaryColor=n||(0,c.getSecondaryColor)(t),d.calculated=!!n},t.default=u},66286(e,t,n){"use strict";var r=n(24994).default;Object.defineProperty(t,"__esModule",{value:!0}),t.getTwoToneColor=function(){var e=a.default.getTwoToneColors();return e.calculated?[e.primaryColor,e.secondaryColor]:e.primaryColor},t.setTwoToneColor=function(e){var t=(0,i.normalizeTwoToneColors)(e),n=(0,o.default)(t,2),r=n[0],l=n[1];return a.default.setTwoToneColors({primaryColor:r,secondaryColor:l})};var o=r(n(85715)),a=r(n(71497)),i=n(2317)},64607(e,t,n){"use strict";var r=n(6305).default,o=n(24994).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=o(n(94634)),i=r(n(96540)),l=o(n(20932)),c=o(n(3827));t.default=i.forwardRef(function(e,t){return i.createElement(c.default,(0,a.default)({},e,{ref:t,icon:l.default}))})},36110(e,t,n){"use strict";var r=n(6305).default,o=n(24994).default;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=o(n(94634)),i=r(n(96540)),l=o(n(6711)),c=o(n(3827));t.default=i.forwardRef(function(e,t){return i.createElement(c.default,(0,a.default)({},e,{ref:t,icon:l.default}))})},2317(e,t,n){"use strict";var r=n(6305).default,o=n(24994).default;Object.defineProperty(t,"__esModule",{value:!0}),t.generate=function e(t,n,r){return r?u.default.createElement(t.tag,(0,a.default)((0,a.default)({key:n},f(t.attrs)),r),(t.children||[]).map(function(r,o){return e(r,"".concat(n,"-").concat(t.tag,"-").concat(o))})):u.default.createElement(t.tag,(0,a.default)({key:n},f(t.attrs)),(t.children||[]).map(function(r,o){return e(r,"".concat(n,"-").concat(t.tag,"-").concat(o))}))},t.getSecondaryColor=function(e){return(0,l.generate)(e)[0]},t.iconStyles=void 0,t.isIconDefinition=function(e){return"object"===(0,i.default)(e)&&"string"==typeof e.name&&"string"==typeof e.theme&&("object"===(0,i.default)(e.icon)||"function"==typeof e.icon)},t.normalizeAttrs=f,t.normalizeTwoToneColors=function(e){return e?Array.isArray(e)?e:[e]:[]},t.useInsertStyles=t.svgBaseProps=void 0,t.warning=function(e,t){(0,d.default)(e,"[@ant-design/icons] ".concat(t))};var a=o(n(12897)),i=o(n(73738)),l=n(81463),c=n(80084),s=n(63024),d=o(n(61105)),u=r(n(96540)),p=o(n(86386));function f(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.keys(e).reduce(function(t,n){var r=e[n];return"class"===n?(t.className=r,delete t.class):(delete t[n],t[n.replace(/-(.)/g,function(e,t){return t.toUpperCase()})]=r),t},{})}t.svgBaseProps={width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true",focusable:"false"};var m=t.iconStyles="\n.anticon {\n display: inline-flex;\n align-items: center;\n color: inherit;\n font-style: normal;\n line-height: 0;\n text-align: center;\n text-transform: none;\n vertical-align: -0.125em;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.anticon > * {\n line-height: 1;\n}\n\n.anticon svg {\n display: inline-block;\n}\n\n.anticon::before {\n display: none;\n}\n\n.anticon .anticon-icon {\n display: block;\n}\n\n.anticon[tabindex] {\n cursor: pointer;\n}\n\n.anticon-spin::before,\n.anticon-spin {\n display: inline-block;\n -webkit-animation: loadingCircle 1s infinite linear;\n animation: loadingCircle 1s infinite linear;\n}\n\n@-webkit-keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n";t.useInsertStyles=function(e){var t=(0,u.useContext)(p.default),n=t.csp,r=t.prefixCls,o=t.layer,a=m;r&&(a=a.replace(/anticon/g,r)),o&&(a="@layer ".concat(o," {\n").concat(a,"\n}")),(0,u.useEffect)(function(){var t=e.current,r=(0,s.getShadowRoot)(t);(0,c.updateCSS)(a,"@ant-design-icons",{prepend:!o,csp:n,attachTo:r})},[])}},13205(e,t,n){"use strict";n.d(t,{Lx:()=>T,tz:()=>B,Ay:()=>F,TY:()=>R});var r=n(83098),o=n(57046),a=n(80045),i=n(89379),l=n(48670),c=n(4888),s=n(80651),d=n(61757);let u={placeholder:"请选择时间",rangePlaceholder:["开始时间","结束时间"]},p={lang:Object.assign({placeholder:"请选择日期",yearPlaceholder:"请选择年份",quarterPlaceholder:"请选择季度",monthPlaceholder:"请选择月份",weekPlaceholder:"请选择周",rangePlaceholder:["开始日期","结束日期"],rangeYearPlaceholder:["开始年份","结束年份"],rangeMonthPlaceholder:["开始月份","结束月份"],rangeQuarterPlaceholder:["开始季度","结束季度"],rangeWeekPlaceholder:["开始周","结束周"]},d.A),timePickerLocale:Object.assign({},u)};p.lang.ok="确定";let f="${label}不是一个有效的${type}",m={locale:"zh-cn",Pagination:s.A,DatePicker:p,TimePicker:u,Calendar:p,global:{placeholder:"请选择",close:"关闭"},Table:{filterTitle:"筛选",filterConfirm:"确定",filterReset:"重置",filterEmptyText:"无筛选项",filterCheckAll:"全选",filterSearchPlaceholder:"在筛选项中搜索",emptyText:"暂无数据",selectAll:"全选当页",selectInvert:"反选当页",selectNone:"清空所有",selectionAll:"全选所有",sortTitle:"排序",expand:"展开行",collapse:"关闭行",triggerDesc:"点击降序",triggerAsc:"点击升序",cancelSort:"取消排序"},Modal:{okText:"确定",cancelText:"取消",justOkText:"知道了"},Tour:{Next:"下一步",Previous:"上一步",Finish:"结束导览"},Popconfirm:{cancelText:"取消",okText:"确定"},Transfer:{titles:["",""],searchPlaceholder:"请输入搜索内容",itemUnit:"项",itemsUnit:"项",remove:"删除",selectCurrent:"全选当页",removeCurrent:"删除当页",selectAll:"全选所有",deselectAll:"取消全选",removeAll:"删除全部",selectInvert:"反选当页"},Upload:{uploading:"文件上传中",removeFile:"删除文件",uploadError:"上传错误",previewFile:"预览文件",downloadFile:"下载文件"},Empty:{description:"暂无数据"},Icon:{icon:"图标"},Text:{edit:"编辑",copy:"复制",copied:"复制成功",expand:"展开",collapse:"收起"},Form:{optional:"(可选)",defaultValidateMessages:{default:"字段验证错误${label}",required:"请输入${label}",enum:"${label}必须是其中一个[${enum}]",whitespace:"${label}不能为空字符",date:{format:"${label}日期格式无效",parse:"${label}不能转换为日期",invalid:"${label}是一个无效日期"},types:{string:f,method:f,array:f,object:f,number:f,date:f,boolean:f,integer:f,float:f,regexp:f,email:f,url:f,hex:f},string:{len:"${label}须为${len}个字符",min:"${label}最少${min}个字符",max:"${label}最多${max}个字符",range:"${label}须在${min}-${max}字符之间"},number:{len:"${label}必须等于${len}",min:"${label}最小值为${min}",max:"${label}最大值为${max}",range:"${label}须在${min}-${max}之间"},array:{len:"须为${len}个${label}",min:"最少${min}个${label}",max:"最多${max}个${label}",range:"${label}数量须在${min}-${max}之间"},pattern:{mismatch:"${label}与模式不匹配${pattern}"}}},Image:{preview:"预览"},QRCode:{expired:"二维码过期",refresh:"点击刷新",scanned:"已扫描"},ColorPicker:{presetEmpty:"暂无",transparent:"无色",singleColor:"单色",gradientColor:"渐变色"}};var g=n(96540),h=n(14993),b=n(92177),v=n(90583),y=n(74353),x=n.n(y),$=n(9424),A=function(e,t){var n,r,o,a,l,c=(0,i.A)({},e);return(0,i.A)((0,i.A)({bgLayout:"linear-gradient(".concat(t.colorBgContainer,", ").concat(t.colorBgLayout," 28%)"),colorTextAppListIcon:t.colorTextSecondary,appListIconHoverBgColor:null==c||null==(n=c.sider)?void 0:n.colorBgMenuItemSelected,colorBgAppListIconHover:(0,$.X9)(t.colorTextBase,.04),colorTextAppListIconHover:t.colorTextBase},c),{},{header:(0,i.A)({colorBgHeader:(0,$.X9)(t.colorBgElevated,.6),colorBgScrollHeader:(0,$.X9)(t.colorBgElevated,.8),colorHeaderTitle:t.colorText,colorBgMenuItemHover:(0,$.X9)(t.colorTextBase,.03),colorBgMenuItemSelected:"transparent",colorBgMenuElevated:(null==c||null==(r=c.header)?void 0:r.colorBgHeader)!=="rgba(255, 255, 255, 0.6)"?null==(o=c.header)?void 0:o.colorBgHeader:t.colorBgElevated,colorTextMenuSelected:(0,$.X9)(t.colorTextBase,.95),colorBgRightActionsItemHover:(0,$.X9)(t.colorTextBase,.03),colorTextRightActionsItem:t.colorTextTertiary,heightLayoutHeader:56,colorTextMenu:t.colorTextSecondary,colorTextMenuSecondary:t.colorTextTertiary,colorTextMenuTitle:t.colorText,colorTextMenuActive:t.colorText},c.header),sider:(0,i.A)({paddingInlineLayoutMenu:8,paddingBlockLayoutMenu:0,colorBgCollapsedButton:t.colorBgElevated,colorTextCollapsedButtonHover:t.colorTextSecondary,colorTextCollapsedButton:(0,$.X9)(t.colorTextBase,.25),colorMenuBackground:"transparent",colorMenuItemDivider:(0,$.X9)(t.colorTextBase,.06),colorBgMenuItemHover:(0,$.X9)(t.colorTextBase,.03),colorBgMenuItemSelected:(0,$.X9)(t.colorTextBase,.04),colorTextMenuItemHover:t.colorText,colorTextMenuSelected:(0,$.X9)(t.colorTextBase,.95),colorTextMenuActive:t.colorText,colorTextMenu:t.colorTextSecondary,colorTextMenuSecondary:t.colorTextTertiary,colorTextMenuTitle:t.colorText,colorTextSubMenuSelected:(0,$.X9)(t.colorTextBase,.95)},c.sider),pageContainer:(0,i.A)({colorBgPageContainer:"transparent",paddingInlinePageContainerContent:(null==(a=c.pageContainer)?void 0:a.marginInlinePageContainerContent)||40,paddingBlockPageContainerContent:(null==(l=c.pageContainer)?void 0:l.marginBlockPageContainerContent)||32,colorBgPageContainerFixed:t.colorBgElevated},c.pageContainer)})},w=n(94414),S=n(82284),C=function(){for(var e,t={},n=arguments.length,r=Array(n),o=0;otypeof process)||true},z=g.createContext({intl:(0,i.A)((0,i.A)({},v.BG),{},{locale:"default"}),valueTypeMap:{},theme:w.emptyTheme,hashed:!0,dark:!1,token:w.defaultToken});z.Consumer;var I=function(){var e=(0,h.iX)().cache;return(0,g.useEffect)(function(){return function(){e.clear()}},[]),null},M=function(e){var t,n=e.children,r=e.dark,s=e.valueTypeMap,d=e.autoClearCache,u=void 0!==d&&d,p=e.token,f=e.prefixCls,m=e.intl,h=(0,g.useContext)(c.Ay.ConfigContext),y=h.locale,S=h.getPrefixCls,j=(0,a.A)(h,k),E=null==(t=$.JM.useToken)?void 0:t.call($.JM),M=(0,g.useContext)(z),R=f?".".concat(f):".".concat(S(),"-pro"),B="."+S(),T="".concat(R),F=(0,g.useMemo)(function(){return A(p||{},E.token||w.defaultToken)},[p,E.token]),N=(0,g.useMemo)(function(){var e,t=null==y?void 0:y.locale,n=(0,v.z8)(t),o=null!=m?m:t&&(null==(e=M.intl)?void 0:e.locale)==="default"?v.Ou[n]:M.intl||v.Ou[n];return(0,i.A)((0,i.A)({},M),{},{dark:null!=r?r:M.dark,token:C(M.token,E.token,{proComponentsCls:R,antCls:B,themeId:E.theme.id,layout:F}),intl:o||v.BG})},[null==y?void 0:y.locale,M,r,E.token,E.theme.id,R,B,F,m]),H=(0,i.A)((0,i.A)({},N.token||{}),{},{proComponentsCls:R}),L=(0,l.hV)(E.theme,[E.token,null!=H?H:{}],{salt:T,override:H}),D=(0,o.A)(L,2),_=D[0],W=D[1],q=(0,g.useMemo)(function(){return!1!==e.hashed&&!1!==M.hashed},[M.hashed,e.hashed]),V=(0,g.useMemo)(function(){return!1===e.hashed||!1===M.hashed||!1===P()?"":E.hashId?E.hashId:W},[W,M.hashed,e.hashed]);(0,g.useEffect)(function(){x().locale((null==y?void 0:y.locale)||"zh-cn")},[null==y?void 0:y.locale]);var X=(0,g.useMemo)(function(){return(0,i.A)((0,i.A)({},j.theme),{},{hashId:V,hashed:q&&P()})},[j.theme,V,q,P()]),U=(0,g.useMemo)(function(){return(0,i.A)((0,i.A)({},N),{},{valueTypeMap:s||(null==N?void 0:N.valueTypeMap),token:_,theme:E.theme,hashed:q,hashId:V})},[N,s,_,E.theme,q,V]),Y=(0,g.useMemo)(function(){return(0,O.jsx)(c.Ay,(0,i.A)((0,i.A)({},j),{},{theme:X,children:(0,O.jsx)(z.Provider,{value:U,children:(0,O.jsxs)(O.Fragment,{children:[u&&(0,O.jsx)(I,{}),n]})})}))},[j,X,U,u,n]);return u?(0,O.jsx)(b.BE,{value:{provider:function(){return new Map}},children:Y}):Y},R=function(e){var t,n=e.needDeps,o=e.dark,l=e.token,s=(0,g.useContext)(z),d=(0,g.useContext)(c.Ay.ConfigContext),u=d.locale,p=d.theme,f=(0,a.A)(d,j);if(n&&void 0!==s.hashId&&"children-needDeps"===Object.keys(e).sort().join("-"))return(0,O.jsx)(O.Fragment,{children:e.children});var h=(0,i.A)((0,i.A)({},f),{},{locale:u||m,theme:E((0,i.A)((0,i.A)({},p),{},{algorithm:(t=null!=o?o:s.dark)&&!Array.isArray(null==p?void 0:p.algorithm)?[null==p?void 0:p.algorithm,$.JM.darkAlgorithm].filter(Boolean):t&&Array.isArray(null==p?void 0:p.algorithm)?[].concat((0,r.A)((null==p?void 0:p.algorithm)||[]),[$.JM.darkAlgorithm]).filter(Boolean):null==p?void 0:p.algorithm}))});return(0,O.jsx)(c.Ay,(0,i.A)((0,i.A)({},h),{},{children:(0,O.jsx)(M,(0,i.A)((0,i.A)({},e),{},{token:l}))}))};function B(){var e=(0,g.useContext)(c.Ay.ConfigContext).locale,t=(0,g.useContext)(z).intl;return t&&"default"!==t.locale?t||v.BG:null!=e&&e.locale&&v.Ou[(0,v.z8)(e.locale)]||v.BG}z.displayName="ProProvider";var T=z;let F=z},90583(e,t,n){"use strict";n.d(t,{BG:()=>l,Ou:()=>c,z8:()=>d});var r=n(81470),o=function(e,t){return{getMessage:function(n,o){var a=(0,r.Jt)(t,n.replace(/\[(\d+)\]/g,".$1").split("."))||"";if(a)return a;if("zh-CN"===e.replace("_","-"))return o;var i=c["zh-CN"];return i?i.getMessage(n,o):o},locale:e}},a=o("mn_MN",{moneySymbol:"₮",form:{lightFilter:{more:"Илүү",clear:"Цэвэрлэх",confirm:"Баталгаажуулах",itemUnit:"Нэгжүүд"}},tableForm:{search:"Хайх",reset:"Шинэчлэх",submit:"Илгээх",collapsed:"Өргөтгөх",expand:"Хураах",inputPlaceholder:"Утга оруулна уу",selectPlaceholder:"Утга сонгоно уу"},alert:{clear:"Цэвэрлэх",selected:"Сонгогдсон",item:"Нэгж"},pagination:{total:{range:" ",total:"Нийт",item:"мөр"}},tableToolBar:{leftPin:"Зүүн тийш бэхлэх",rightPin:"Баруун тийш бэхлэх",noPin:"Бэхлэхгүй",leftFixedTitle:"Зүүн зэрэгцүүлэх",rightFixedTitle:"Баруун зэрэгцүүлэх",noFixedTitle:"Зэрэгцүүлэхгүй",reset:"Шинэчлэх",columnDisplay:"Баганаар харуулах",columnSetting:"Тохиргоо",fullScreen:"Бүтэн дэлгэцээр",exitFullScreen:"Бүтэн дэлгэц цуцлах",reload:"Шинэчлэх",density:"Хэмжээ",densityDefault:"Хэвийн",densityLarger:"Том",densityMiddle:"Дунд",densitySmall:"Жижиг"},stepsForm:{next:"Дараах",prev:"Өмнөх",submit:"Дуусгах"},loginForm:{submitText:"Нэвтрэх"},editableTable:{action:{save:"Хадгалах",cancel:"Цуцлах",delete:"Устгах",add:"Мөр нэмэх"}},switch:{open:"Нээх",close:"Хаах"}}),i=o("ar_EG",{moneySymbol:"$",form:{lightFilter:{more:"المزيد",clear:"نظف",confirm:"تأكيد",itemUnit:"عناصر"}},tableForm:{search:"ابحث",reset:"إعادة تعيين",submit:"ارسال",collapsed:"مُقلص",expand:"مُوسع",inputPlaceholder:"الرجاء الإدخال",selectPlaceholder:"الرجاء الإختيار"},alert:{clear:"نظف",selected:"محدد",item:"عنصر"},pagination:{total:{range:" ",total:"من",item:"عناصر"}},tableToolBar:{leftPin:"ثبت على اليسار",rightPin:"ثبت على اليمين",noPin:"الغاء التثبيت",leftFixedTitle:"لصق على اليسار",rightFixedTitle:"لصق على اليمين",noFixedTitle:"إلغاء الإلصاق",reset:"إعادة تعيين",columnDisplay:"الأعمدة المعروضة",columnSetting:"الإعدادات",fullScreen:"وضع كامل الشاشة",exitFullScreen:"الخروج من وضع كامل الشاشة",reload:"تحديث",density:"الكثافة",densityDefault:"افتراضي",densityLarger:"أكبر",densityMiddle:"وسط",densitySmall:"مدمج"},stepsForm:{next:"التالي",prev:"السابق",submit:"أنهى"},loginForm:{submitText:"تسجيل الدخول"},editableTable:{action:{save:"أنقذ",cancel:"إلغاء الأمر",delete:"حذف",add:"إضافة صف من البيانات"}},switch:{open:"مفتوح",close:"غلق"}}),l=o("zh_CN",{moneySymbol:"\xa5",deleteThisLine:"删除此项",copyThisLine:"复制此项",form:{lightFilter:{more:"更多筛选",clear:"清除",confirm:"确认",itemUnit:"项"}},tableForm:{search:"查询",reset:"重置",submit:"提交",collapsed:"展开",expand:"收起",inputPlaceholder:"请输入",selectPlaceholder:"请选择"},alert:{clear:"取消选择",selected:"已选择",item:"项"},pagination:{total:{range:"第",total:"条/总共",item:"条"}},tableToolBar:{leftPin:"固定在列首",rightPin:"固定在列尾",noPin:"不固定",leftFixedTitle:"固定在左侧",rightFixedTitle:"固定在右侧",noFixedTitle:"不固定",reset:"重置",columnDisplay:"列展示",columnSetting:"列设置",fullScreen:"全屏",exitFullScreen:"退出全屏",reload:"刷新",density:"密度",densityDefault:"正常",densityLarger:"宽松",densityMiddle:"中等",densitySmall:"紧凑"},stepsForm:{next:"下一步",prev:"上一步",submit:"提交"},loginForm:{submitText:"登录"},editableTable:{onlyOneLineEditor:"只能同时编辑一行",action:{save:"保存",cancel:"取消",delete:"删除",add:"添加一行数据"}},switch:{open:"打开",close:"关闭"}}),c={"mn-MN":a,"ar-EG":i,"zh-CN":l,"en-US":o("en_US",{moneySymbol:"$",deleteThisLine:"Delete this line",copyThisLine:"Copy this line",form:{lightFilter:{more:"More",clear:"Clear",confirm:"Confirm",itemUnit:"Items"}},tableForm:{search:"Query",reset:"Reset",submit:"Submit",collapsed:"Expand",expand:"Collapse",inputPlaceholder:"Please enter",selectPlaceholder:"Please select"},alert:{clear:"Clear",selected:"Selected",item:"Item"},pagination:{total:{range:" ",total:"of",item:"items"}},tableToolBar:{leftPin:"Pin to left",rightPin:"Pin to right",noPin:"Unpinned",leftFixedTitle:"Fixed to the left",rightFixedTitle:"Fixed to the right",noFixedTitle:"Not Fixed",reset:"Reset",columnDisplay:"Column Display",columnSetting:"Table Settings",fullScreen:"Full Screen",exitFullScreen:"Exit Full Screen",reload:"Refresh",density:"Density",densityDefault:"Default",densityLarger:"Larger",densityMiddle:"Middle",densitySmall:"Compact"},stepsForm:{next:"Next",prev:"Previous",submit:"Finish"},loginForm:{submitText:"Login"},editableTable:{onlyOneLineEditor:"Only one line can be edited",onlyAddOneLine:"Only one line can be added",action:{save:"Save",cancel:"Cancel",delete:"Delete",add:"add a row of data"}},switch:{open:"open",close:"close"}}),"en-GB":o("en_GB",{moneySymbol:"\xa3",form:{lightFilter:{more:"More",clear:"Clear",confirm:"Confirm",itemUnit:"Items"}},tableForm:{search:"Query",reset:"Reset",submit:"Submit",collapsed:"Expand",expand:"Collapse",inputPlaceholder:"Please enter",selectPlaceholder:"Please select"},alert:{clear:"Clear",selected:"Selected",item:"Item"},pagination:{total:{range:" ",total:"of",item:"items"}},tableToolBar:{leftPin:"Pin to left",rightPin:"Pin to right",noPin:"Unpinned",leftFixedTitle:"Fixed to the left",rightFixedTitle:"Fixed to the right",noFixedTitle:"Not Fixed",reset:"Reset",columnDisplay:"Column Display",columnSetting:"Table Settings",fullScreen:"Full Screen",exitFullScreen:"Exit Full Screen",reload:"Refresh",density:"Density",densityDefault:"Default",densityLarger:"Larger",densityMiddle:"Middle",densitySmall:"Compact"},stepsForm:{next:"Next",prev:"Previous",submit:"Finish"},loginForm:{submitText:"Login"},editableTable:{onlyOneLineEditor:"Only one line can be edited",onlyAddOneLine:"Only one line can be added",action:{save:"Save",cancel:"Cancel",delete:"Delete",add:"add a row of data"}},switch:{open:"open",close:"close"}}),"vi-VN":o("vi_VN",{moneySymbol:"₫",form:{lightFilter:{more:"Nhiều hơn",clear:"Trong",confirm:"X\xe1c nhận",itemUnit:"Mục"}},tableForm:{search:"T\xecm kiếm",reset:"L\xe0m lại",submit:"Gửi đi",collapsed:"Mở rộng",expand:"Thu gọn",inputPlaceholder:"nhập dữ liệu",selectPlaceholder:"Vui l\xf2ng chọn"},alert:{clear:"X\xf3a",selected:"đ\xe3 chọn",item:"mục"},pagination:{total:{range:" ",total:"tr\xean",item:"mặt h\xe0ng"}},tableToolBar:{leftPin:"Ghim tr\xe1i",rightPin:"Ghim phải",noPin:"Bỏ ghim",leftFixedTitle:"Cố định tr\xe1i",rightFixedTitle:"Cố định phải",noFixedTitle:"Chưa cố định",reset:"L\xe0m lại",columnDisplay:"Cột hiển thị",columnSetting:"Cấu h\xecnh",fullScreen:"Chế độ to\xe0n m\xe0n h\xecnh",exitFullScreen:"Tho\xe1t chế độ to\xe0n m\xe0n h\xecnh",reload:"L\xe0m mới",density:"Mật độ hiển thị",densityDefault:"Mặc định",densityLarger:"Mặc định",densityMiddle:"Trung b\xecnh",densitySmall:"Chật"},stepsForm:{next:"Sau",prev:"Trước",submit:"Kết th\xfac"},loginForm:{submitText:"Đăng nhập"},editableTable:{action:{save:"Cứu",cancel:"Hủy",delete:"X\xf3a",add:"th\xeam một h\xe0ng dữ liệu"}},switch:{open:"mở",close:"đ\xf3ng"}}),"it-IT":o("it_IT",{moneySymbol:"€",form:{lightFilter:{more:"pi\xf9",clear:"pulisci",confirm:"conferma",itemUnit:"elementi"}},tableForm:{search:"Filtra",reset:"Pulisci",submit:"Invia",collapsed:"Espandi",expand:"Contrai",inputPlaceholder:"Digita",selectPlaceholder:"Seleziona"},alert:{clear:"Rimuovi",selected:"Selezionati",item:"elementi"},pagination:{total:{range:" ",total:"di",item:"elementi"}},tableToolBar:{leftPin:"Fissa a sinistra",rightPin:"Fissa a destra",noPin:"Ripristina posizione",leftFixedTitle:"Fissato a sinistra",rightFixedTitle:"Fissato a destra",noFixedTitle:"Non fissato",reset:"Ripristina",columnDisplay:"Disposizione colonne",columnSetting:"Impostazioni",fullScreen:"Modalit\xe0 schermo intero",exitFullScreen:"Esci da modalit\xe0 schermo intero",reload:"Ricarica",density:"Grandezza tabella",densityDefault:"predefinito",densityLarger:"Grande",densityMiddle:"Media",densitySmall:"Compatta"},stepsForm:{next:"successivo",prev:"precedente",submit:"finisci"},loginForm:{submitText:"Accedi"},editableTable:{action:{save:"salva",cancel:"annulla",delete:"Delete",add:"add a row of data"}},switch:{open:"open",close:"chiudi"}}),"ja-JP":o("ja_JP",{moneySymbol:"\xa5",form:{lightFilter:{more:"更に",clear:"クリア",confirm:"確認",itemUnit:"アイテム"}},tableForm:{search:"検索",reset:"リセット",submit:"送信",collapsed:"拡大",expand:"折畳",inputPlaceholder:"入力してください",selectPlaceholder:"選択してください"},alert:{clear:"クリア",selected:"選択した",item:"アイテム"},pagination:{total:{range:"レコード",total:"/合計",item:" "}},tableToolBar:{leftPin:"左に固定",rightPin:"右に固定",noPin:"キャンセル",leftFixedTitle:"左に固定された項目",rightFixedTitle:"右に固定された項目",noFixedTitle:"固定されてない項目",reset:"リセット",columnDisplay:"表示列",columnSetting:"列表示設定",fullScreen:"フルスクリーン",exitFullScreen:"終了",reload:"更新",density:"行高",densityDefault:"デフォルト",densityLarger:"大",densityMiddle:"中",densitySmall:"小"},stepsForm:{next:"次へ",prev:"前へ",submit:"送信"},loginForm:{submitText:"ログイン"},editableTable:{action:{save:"保存",cancel:"キャンセル",delete:"削除",add:"追加"}},switch:{open:"開く",close:"閉じる"}}),"es-ES":o("es_ES",{moneySymbol:"€",form:{lightFilter:{more:"M\xe1s",clear:"Limpiar",confirm:"Confirmar",itemUnit:"art\xedculos"}},tableForm:{search:"Buscar",reset:"Limpiar",submit:"Submit",collapsed:"Expandir",expand:"Colapsar",inputPlaceholder:"Ingrese valor",selectPlaceholder:"Seleccione valor"},alert:{clear:"Limpiar",selected:"Seleccionado",item:"Articulo"},pagination:{total:{range:" ",total:"de",item:"art\xedculos"}},tableToolBar:{leftPin:"Pin a la izquierda",rightPin:"Pin a la derecha",noPin:"Sin Pin",leftFixedTitle:"Fijado a la izquierda",rightFixedTitle:"Fijado a la derecha",noFixedTitle:"Sin Fijar",reset:"Reiniciar",columnDisplay:"Mostrar Columna",columnSetting:"Configuraci\xf3n",fullScreen:"Pantalla Completa",exitFullScreen:"Salir Pantalla Completa",reload:"Refrescar",density:"Densidad",densityDefault:"Por Defecto",densityLarger:"Largo",densityMiddle:"Medio",densitySmall:"Compacto"},stepsForm:{next:"Siguiente",prev:"Anterior",submit:"Finalizar"},loginForm:{submitText:"Entrar"},editableTable:{action:{save:"Guardar",cancel:"Descartar",delete:"Borrar",add:"a\xf1adir una fila de datos"}},switch:{open:"abrir",close:"cerrar"}}),"ca-ES":o("ca_ES",{moneySymbol:"€",form:{lightFilter:{more:"M\xe9s",clear:"Netejar",confirm:"Confirmar",itemUnit:"Elements"}},tableForm:{search:"Cercar",reset:"Netejar",submit:"Enviar",collapsed:"Expandir",expand:"Col\xb7lapsar",inputPlaceholder:"Introdu\xefu valor",selectPlaceholder:"Seleccioneu valor"},alert:{clear:"Netejar",selected:"Seleccionat",item:"Article"},pagination:{total:{range:" ",total:"de",item:"articles"}},tableToolBar:{leftPin:"Pin a l'esquerra",rightPin:"Pin a la dreta",noPin:"Sense Pin",leftFixedTitle:"Fixat a l'esquerra",rightFixedTitle:"Fixat a la dreta",noFixedTitle:"Sense fixar",reset:"Reiniciar",columnDisplay:"Mostrar Columna",columnSetting:"Configuraci\xf3",fullScreen:"Pantalla Completa",exitFullScreen:"Sortir Pantalla Completa",reload:"Refrescar",density:"Densitat",densityDefault:"Per Defecte",densityLarger:"Llarg",densityMiddle:"Mitj\xe0",densitySmall:"Compacte"},stepsForm:{next:"Seg\xfcent",prev:"Anterior",submit:"Finalizar"},loginForm:{submitText:"Entrar"},editableTable:{action:{save:"Guardar",cancel:"Cancel\xb7lar",delete:"Eliminar",add:"afegir una fila de dades"}},switch:{open:"obert",close:"tancat"}}),"ru-RU":o("ru_RU",{moneySymbol:"₽",form:{lightFilter:{more:"Еще",clear:"Очистить",confirm:"ОК",itemUnit:"Позиции"}},tableForm:{search:"Найти",reset:"Сброс",submit:"Отправить",collapsed:"Развернуть",expand:"Свернуть",inputPlaceholder:"Введите значение",selectPlaceholder:"Выберите значение"},alert:{clear:"Очистить",selected:"Выбрано",item:"элементов"},pagination:{total:{range:" ",total:"из",item:"элементов"}},tableToolBar:{leftPin:"Закрепить слева",rightPin:"Закрепить справа",noPin:"Открепить",leftFixedTitle:"Закреплено слева",rightFixedTitle:"Закреплено справа",noFixedTitle:"Не закреплено",reset:"Сброс",columnDisplay:"Отображение столбца",columnSetting:"Настройки",fullScreen:"Полный экран",exitFullScreen:"Выйти из полноэкранного режима",reload:"Обновить",density:"Размер",densityDefault:"По умолчанию",densityLarger:"Большой",densityMiddle:"Средний",densitySmall:"Сжатый"},stepsForm:{next:"Следующий",prev:"Предыдущий",submit:"Завершить"},loginForm:{submitText:"Вход"},editableTable:{action:{save:"Сохранить",cancel:"Отменить",delete:"Удалить",add:"добавить ряд данных"}},switch:{open:"Открытый чемпионат мира по теннису",close:"По адресу:"}}),"sr-RS":o("sr_RS",{moneySymbol:"RSD",form:{lightFilter:{more:"Više",clear:"Očisti",confirm:"Potvrdi",itemUnit:"Stavke"}},tableForm:{search:"Pronađi",reset:"Resetuj",submit:"Pošalji",collapsed:"Proširi",expand:"Skupi",inputPlaceholder:"Molimo unesite",selectPlaceholder:"Molimo odaberite"},alert:{clear:"Očisti",selected:"Odabrano",item:"Stavka"},pagination:{total:{range:" ",total:"od",item:"stavki"}},tableToolBar:{leftPin:"Zakači levo",rightPin:"Zakači desno",noPin:"Nije zakačeno",leftFixedTitle:"Fiksirano levo",rightFixedTitle:"Fiksirano desno",noFixedTitle:"Nije fiksirano",reset:"Resetuj",columnDisplay:"Prikaz kolona",columnSetting:"Podešavanja",fullScreen:"Pun ekran",exitFullScreen:"Zatvori pun ekran",reload:"Osveži",density:"Veličina",densityDefault:"Podrazumevana",densityLarger:"Veća",densityMiddle:"Srednja",densitySmall:"Kompaktna"},stepsForm:{next:"Dalje",prev:"Nazad",submit:"Gotovo"},loginForm:{submitText:"Prijavi se"},editableTable:{action:{save:"Sačuvaj",cancel:"Poništi",delete:"Obriši",add:"dodajte red podataka"}},switch:{open:"Отворите",close:"Затворите"}}),"ms-MY":o("ms_MY",{moneySymbol:"RM",form:{lightFilter:{more:"Lebih banyak",clear:"Jelas",confirm:"Mengesahkan",itemUnit:"Item"}},tableForm:{search:"Cari",reset:"Menetapkan semula",submit:"Hantar",collapsed:"Kembang",expand:"Kuncup",inputPlaceholder:"Sila masuk",selectPlaceholder:"Sila pilih"},alert:{clear:"Padam",selected:"Dipilih",item:"Item"},pagination:{total:{range:" ",total:"daripada",item:"item"}},tableToolBar:{leftPin:"Pin ke kiri",rightPin:"Pin ke kanan",noPin:"Tidak pin",leftFixedTitle:"Tetap ke kiri",rightFixedTitle:"Tetap ke kanan",noFixedTitle:"Tidak Tetap",reset:"Menetapkan semula",columnDisplay:"Lajur",columnSetting:"Settings",fullScreen:"Full Screen",exitFullScreen:"Keluar Full Screen",reload:"Muat Semula",density:"Densiti",densityDefault:"Biasa",densityLarger:"Besar",densityMiddle:"Tengah",densitySmall:"Kecil"},stepsForm:{next:"Seterusnya",prev:"Sebelumnya",submit:"Selesai"},loginForm:{submitText:"Log Masuk"},editableTable:{action:{save:"Simpan",cancel:"Membatalkan",delete:"Menghapuskan",add:"tambah baris data"}},switch:{open:"Terbuka",close:"Tutup"}}),"zh-TW":o("zh_TW",{moneySymbol:"NT$",deleteThisLine:"刪除此项",copyThisLine:"複製此项",form:{lightFilter:{more:"更多篩選",clear:"清除",confirm:"確認",itemUnit:"項"}},tableForm:{search:"查詢",reset:"重置",submit:"提交",collapsed:"展開",expand:"收起",inputPlaceholder:"請輸入",selectPlaceholder:"請選擇"},alert:{clear:"取消選擇",selected:"已選擇",item:"項"},pagination:{total:{range:"第",total:"條/總共",item:"條"}},tableToolBar:{leftPin:"固定到左邊",rightPin:"固定到右邊",noPin:"不固定",leftFixedTitle:"固定在左側",rightFixedTitle:"固定在右側",noFixedTitle:"不固定",reset:"重置",columnDisplay:"列展示",columnSetting:"列設置",fullScreen:"全屏",exitFullScreen:"退出全屏",reload:"刷新",density:"密度",densityDefault:"正常",densityLarger:"寬鬆",densityMiddle:"中等",densitySmall:"緊湊"},stepsForm:{next:"下一步",prev:"上一步",submit:"完成"},loginForm:{submitText:"登入"},editableTable:{onlyOneLineEditor:"只能同時編輯一行",action:{save:"保存",cancel:"取消",delete:"刪除",add:"新增一行資料"}},switch:{open:"打開",close:"關閉"}}),"zh-HK":o("zh_HK",{moneySymbol:"HK$",deleteThisLine:"刪除此項",copyThisLine:"複製此項",form:{lightFilter:{more:"更多篩選",clear:"清除",confirm:"確認",itemUnit:"項"}},tableForm:{search:"搜尋",reset:"重設",submit:"提交",collapsed:"展開",expand:"收起",inputPlaceholder:"請輸入",selectPlaceholder:"請選擇"},alert:{clear:"取消選取",selected:"已選取",item:"項"},pagination:{total:{range:"第",total:"項/總共",item:"項"}},tableToolBar:{leftPin:"固定到左邊",rightPin:"固定到右邊",noPin:"不固定",leftFixedTitle:"固定在左側",rightFixedTitle:"固定在右側",noFixedTitle:"不固定",reset:"重設",columnDisplay:"列顯示",columnSetting:"列設定",fullScreen:"全螢幕",exitFullScreen:"退出全螢幕",reload:"重新整理",density:"密度",densityDefault:"正常",densityLarger:"寬鬆",densityMiddle:"中等",densitySmall:"緊湊"},stepsForm:{next:"下一步",prev:"上一步",submit:"完成"},loginForm:{submitText:"登入"},editableTable:{onlyOneLineEditor:"只能同時編輯一行",action:{save:"保存",cancel:"取消",delete:"刪除",add:"新增一行資料"}},switch:{open:"打開",close:"關閉"}}),"fr-FR":o("fr_FR",{moneySymbol:"€",form:{lightFilter:{more:"Plus",clear:"Effacer",confirm:"Confirmer",itemUnit:"Items"}},tableForm:{search:"Rechercher",reset:"R\xe9initialiser",submit:"Envoyer",collapsed:"Agrandir",expand:"R\xe9duire",inputPlaceholder:"Entrer une valeur",selectPlaceholder:"S\xe9lectionner une valeur"},alert:{clear:"R\xe9initialiser",selected:"S\xe9lectionn\xe9",item:"Item"},pagination:{total:{range:" ",total:"sur",item:"\xe9l\xe9ments"}},tableToolBar:{leftPin:"\xc9pingler \xe0 gauche",rightPin:"\xc9pingler \xe0 gauche",noPin:"Sans \xe9pingle",leftFixedTitle:"Fixer \xe0 gauche",rightFixedTitle:"Fixer \xe0 droite",noFixedTitle:"Non fix\xe9",reset:"R\xe9initialiser",columnDisplay:"Affichage colonne",columnSetting:"R\xe9glages",fullScreen:"Plein \xe9cran",exitFullScreen:"Quitter Plein \xe9cran",reload:"Rafraichir",density:"Densit\xe9",densityDefault:"Par d\xe9faut",densityLarger:"Larger",densityMiddle:"Moyenne",densitySmall:"Compacte"},stepsForm:{next:"Suivante",prev:"Pr\xe9c\xe9dente",submit:"Finaliser"},loginForm:{submitText:"Se connecter"},editableTable:{action:{save:"Sauvegarder",cancel:"Annuler",delete:"Supprimer",add:"ajouter une ligne de donn\xe9es"}},switch:{open:"ouvert",close:"pr\xe8s"}}),"pt-BR":o("pt_BR",{moneySymbol:"R$",form:{lightFilter:{more:"Mais",clear:"Limpar",confirm:"Confirmar",itemUnit:"Itens"}},tableForm:{search:"Filtrar",reset:"Limpar",submit:"Confirmar",collapsed:"Expandir",expand:"Colapsar",inputPlaceholder:"Por favor insira",selectPlaceholder:"Por favor selecione"},alert:{clear:"Limpar",selected:"Selecionado(s)",item:"Item(s)"},pagination:{total:{range:" ",total:"de",item:"itens"}},tableToolBar:{leftPin:"Fixar \xe0 esquerda",rightPin:"Fixar \xe0 direita",noPin:"Desfixado",leftFixedTitle:"Fixado \xe0 esquerda",rightFixedTitle:"Fixado \xe0 direita",noFixedTitle:"N\xe3o fixado",reset:"Limpar",columnDisplay:"Mostrar Coluna",columnSetting:"Configura\xe7\xf5es",fullScreen:"Tela Cheia",exitFullScreen:"Sair da Tela Cheia",reload:"Atualizar",density:"Densidade",densityDefault:"Padr\xe3o",densityLarger:"Largo",densityMiddle:"M\xe9dio",densitySmall:"Compacto"},stepsForm:{next:"Pr\xf3ximo",prev:"Anterior",submit:"Enviar"},loginForm:{submitText:"Entrar"},editableTable:{action:{save:"Salvar",cancel:"Cancelar",delete:"Apagar",add:"adicionar uma linha de dados"}},switch:{open:"abrir",close:"fechar"}}),"ko-KR":o("ko_KR",{moneySymbol:"₩",form:{lightFilter:{more:"더보기",clear:"초기화",confirm:"확인",itemUnit:"건수"}},tableForm:{search:"조회",reset:"초기화",submit:"제출",collapsed:"확장",expand:"닫기",inputPlaceholder:"입력해 주세요",selectPlaceholder:"선택해 주세요"},alert:{clear:"취소",selected:"선택",item:"건"},pagination:{total:{range:" ",total:"/ 총",item:"건"}},tableToolBar:{leftPin:"왼쪽으로 핀",rightPin:"오른쪽으로 핀",noPin:"핀 제거",leftFixedTitle:"왼쪽으로 고정",rightFixedTitle:"오른쪽으로 고정",noFixedTitle:"비고정",reset:"초기화",columnDisplay:"컬럼 표시",columnSetting:"설정",fullScreen:"전체 화면",exitFullScreen:"전체 화면 취소",reload:"새로 고침",density:"여백",densityDefault:"기본",densityLarger:"많은 여백",densityMiddle:"중간 여백",densitySmall:"좁은 여백"},stepsForm:{next:"다음",prev:"이전",submit:"종료"},loginForm:{submitText:"로그인"},editableTable:{action:{save:"저장",cancel:"취소",delete:"삭제",add:"데이터 행 추가"}},switch:{open:"열",close:"가까 운"}}),"id-ID":o("id_ID",{moneySymbol:"RP",form:{lightFilter:{more:"Lebih",clear:"Hapus",confirm:"Konfirmasi",itemUnit:"Unit"}},tableForm:{search:"Cari",reset:"Atur ulang",submit:"Kirim",collapsed:"Lebih sedikit",expand:"Lebih banyak",inputPlaceholder:"Masukkan pencarian",selectPlaceholder:"Pilih"},alert:{clear:"Hapus",selected:"Dipilih",item:"Butir"},pagination:{total:{range:" ",total:"Dari",item:"Butir"}},tableToolBar:{leftPin:"Pin kiri",rightPin:"Pin kanan",noPin:"Tidak ada pin",leftFixedTitle:"Rata kiri",rightFixedTitle:"Rata kanan",noFixedTitle:"Tidak tetap",reset:"Atur ulang",columnDisplay:"Tampilan kolom",columnSetting:"Pengaturan",fullScreen:"Layar penuh",exitFullScreen:"Keluar layar penuh",reload:"Atur ulang",density:"Kerapatan",densityDefault:"Standar",densityLarger:"Lebih besar",densityMiddle:"Sedang",densitySmall:"Rapat"},stepsForm:{next:"Selanjutnya",prev:"Sebelumnya",submit:"Selesai"},loginForm:{submitText:"Login"},editableTable:{action:{save:"simpan",cancel:"batal",delete:"hapus",add:"Tambahkan baris data"}},switch:{open:"buka",close:"tutup"}}),"de-DE":o("de_DE",{moneySymbol:"€",form:{lightFilter:{more:"Mehr",clear:"Zur\xfccksetzen",confirm:"Best\xe4tigen",itemUnit:"Eintr\xe4ge"}},tableForm:{search:"Suchen",reset:"Zur\xfccksetzen",submit:"Absenden",collapsed:"Zeige mehr",expand:"Zeige weniger",inputPlaceholder:"Bitte eingeben",selectPlaceholder:"Bitte ausw\xe4hlen"},alert:{clear:"Zur\xfccksetzen",selected:"Ausgew\xe4hlt",item:"Eintrag"},pagination:{total:{range:" ",total:"von",item:"Eintr\xe4gen"}},tableToolBar:{leftPin:"Links anheften",rightPin:"Rechts anheften",noPin:"Nicht angeheftet",leftFixedTitle:"Links fixiert",rightFixedTitle:"Rechts fixiert",noFixedTitle:"Nicht fixiert",reset:"Zur\xfccksetzen",columnDisplay:"Angezeigte Reihen",columnSetting:"Einstellungen",fullScreen:"Vollbild",exitFullScreen:"Vollbild verlassen",reload:"Aktualisieren",density:"Abstand",densityDefault:"Standard",densityLarger:"Gr\xf6\xdfer",densityMiddle:"Mittel",densitySmall:"Kompakt"},stepsForm:{next:"Weiter",prev:"Zur\xfcck",submit:"Abschlie\xdfen"},loginForm:{submitText:"Anmelden"},editableTable:{action:{save:"Retten",cancel:"Abbrechen",delete:"L\xf6schen",add:"Hinzuf\xfcgen einer Datenzeile"}},switch:{open:"offen",close:"schlie\xdfen"}}),"fa-IR":o("fa_IR",{moneySymbol:"تومان",form:{lightFilter:{more:"بیشتر",clear:"پاک کردن",confirm:"تایید",itemUnit:"مورد"}},tableForm:{search:"جستجو",reset:"بازنشانی",submit:"تایید",collapsed:"نمایش بیشتر",expand:"نمایش کمتر",inputPlaceholder:"پیدا کنید",selectPlaceholder:"انتخاب کنید"},alert:{clear:"پاک سازی",selected:"انتخاب",item:"مورد"},pagination:{total:{range:" ",total:"از",item:"مورد"}},tableToolBar:{leftPin:"سنجاق به چپ",rightPin:"سنجاق به راست",noPin:"سنجاق نشده",leftFixedTitle:"ثابت شده در چپ",rightFixedTitle:"ثابت شده در راست",noFixedTitle:"شناور",reset:"بازنشانی",columnDisplay:"نمایش همه",columnSetting:"تنظیمات",fullScreen:"تمام صفحه",exitFullScreen:"خروج از حالت تمام صفحه",reload:"تازه سازی",density:"تراکم",densityDefault:"پیش فرض",densityLarger:"بزرگ",densityMiddle:"متوسط",densitySmall:"کوچک"},stepsForm:{next:"بعدی",prev:"قبلی",submit:"اتمام"},loginForm:{submitText:"ورود"},editableTable:{action:{save:"ذخیره",cancel:"لغو",delete:"حذف",add:"یک ردیف داده اضافه کنید"}},switch:{open:"باز",close:"نزدیک"}}),"tr-TR":o("tr_TR",{moneySymbol:"₺",form:{lightFilter:{more:"Daha Fazla",clear:"Temizle",confirm:"Onayla",itemUnit:"\xd6ğeler"}},tableForm:{search:"Filtrele",reset:"Sıfırla",submit:"G\xf6nder",collapsed:"Daha fazla",expand:"Daha az",inputPlaceholder:"Filtrelemek i\xe7in bir değer girin",selectPlaceholder:"Filtrelemek i\xe7in bir değer se\xe7in"},alert:{clear:"Temizle",selected:"Se\xe7ili",item:"\xd6ğe"},pagination:{total:{range:" ",total:"Toplam",item:"\xd6ğe"}},tableToolBar:{leftPin:"Sola sabitle",rightPin:"Sağa sabitle",noPin:"Sabitlemeyi kaldır",leftFixedTitle:"Sola sabitlendi",rightFixedTitle:"Sağa sabitlendi",noFixedTitle:"Sabitlenmedi",reset:"Sıfırla",columnDisplay:"Kolon G\xf6r\xfcn\xfcm\xfc",columnSetting:"Ayarlar",fullScreen:"Tam Ekran",exitFullScreen:"Tam Ekrandan \xc7ık",reload:"Yenile",density:"Kalınlık",densityDefault:"Varsayılan",densityLarger:"B\xfcy\xfck",densityMiddle:"Orta",densitySmall:"K\xfc\xe7\xfck"},stepsForm:{next:"Sıradaki",prev:"\xd6nceki",submit:"G\xf6nder"},loginForm:{submitText:"Giriş Yap"},editableTable:{action:{save:"Kaydet",cancel:"Vazge\xe7",delete:"Sil",add:"foegje in rige gegevens ta"}},switch:{open:"a\xe7ık",close:"kapatmak"}}),"pl-PL":o("pl_PL",{moneySymbol:"zł",form:{lightFilter:{more:"Więcej",clear:"Wyczyść",confirm:"Potwierdź",itemUnit:"Ilość"}},tableForm:{search:"Szukaj",reset:"Reset",submit:"Zatwierdź",collapsed:"Pokaż wiecej",expand:"Pokaż mniej",inputPlaceholder:"Proszę podać",selectPlaceholder:"Proszę wybrać"},alert:{clear:"Wyczyść",selected:"Wybrane",item:"Wpis"},pagination:{total:{range:" ",total:"z",item:"Wpis\xf3w"}},tableToolBar:{leftPin:"Przypnij do lewej",rightPin:"Przypnij do prawej",noPin:"Odepnij",leftFixedTitle:"Przypięte do lewej",rightFixedTitle:"Przypięte do prawej",noFixedTitle:"Nieprzypięte",reset:"Reset",columnDisplay:"Wyświetlane wiersze",columnSetting:"Ustawienia",fullScreen:"Pełen ekran",exitFullScreen:"Zamknij pełen ekran",reload:"Odśwież",density:"Odstęp",densityDefault:"Standard",densityLarger:"Wiekszy",densityMiddle:"Sredni",densitySmall:"Kompaktowy"},stepsForm:{next:"Weiter",prev:"Zur\xfcck",submit:"Abschlie\xdfen"},loginForm:{submitText:"Zaloguj się"},editableTable:{action:{save:"Zapisać",cancel:"Anuluj",delete:"Usunąć",add:"dodawanie wiersza danych"}},switch:{open:"otwierać",close:"zamykać"}}),"hr-HR":o("hr_",{moneySymbol:"kn",form:{lightFilter:{more:"Više",clear:"Očisti",confirm:"Potvrdi",itemUnit:"Stavke"}},tableForm:{search:"Pretraži",reset:"Poništi",submit:"Potvrdi",collapsed:"Raširi",expand:"Skupi",inputPlaceholder:"Unesite",selectPlaceholder:"Odaberite"},alert:{clear:"Očisti",selected:"Odaberi",item:"stavke"},pagination:{total:{range:" ",total:"od",item:"stavke"}},tableToolBar:{leftPin:"Prikači lijevo",rightPin:"Prikači desno",noPin:"Bez prikačenja",leftFixedTitle:"Fiksiraj lijevo",rightFixedTitle:"Fiksiraj desno",noFixedTitle:"Bez fiksiranja",reset:"Resetiraj",columnDisplay:"Prikaz stupaca",columnSetting:"Postavke",fullScreen:"Puni zaslon",exitFullScreen:"Izađi iz punog zaslona",reload:"Ponovno učitaj",density:"Veličina",densityDefault:"Zadano",densityLarger:"Veliko",densityMiddle:"Srednje",densitySmall:"Malo"},stepsForm:{next:"Sljedeći",prev:"Prethodni",submit:"Kraj"},loginForm:{submitText:"Prijava"},editableTable:{action:{save:"Spremi",cancel:"Odustani",delete:"Obriši",add:"dodajte red podataka"}},switch:{open:"otvori",close:"zatvori"}}),"th-TH":o("th_TH",{moneySymbol:"฿",deleteThisLine:"ลบบรรทัดนี้",copyThisLine:"คัดลอกบรรทัดนี้",form:{lightFilter:{more:"มากกว่า",clear:"ชัดเจน",confirm:"ยืนยัน",itemUnit:"รายการ"}},tableForm:{search:"สอบถาม",reset:"รีเซ็ต",submit:"ส่ง",collapsed:"ขยาย",expand:"ทรุด",inputPlaceholder:"กรุณาป้อน",selectPlaceholder:"โปรดเลือก"},alert:{clear:"ชัดเจน",selected:"เลือกแล้ว",item:"รายการ"},pagination:{total:{range:" ",total:"ของ",item:"รายการ"}},tableToolBar:{leftPin:"ปักหมุดไปทางซ้าย",rightPin:"ปักหมุดไปทางขวา",noPin:"เลิกตรึงแล้ว",leftFixedTitle:"แก้ไขด้านซ้าย",rightFixedTitle:"แก้ไขด้านขวา",noFixedTitle:"ไม่คงที่",reset:"รีเซ็ต",columnDisplay:"การแสดงคอลัมน์",columnSetting:"การตั้งค่า",fullScreen:"เต็มจอ",exitFullScreen:"ออกจากโหมดเต็มหน้าจอ",reload:"รีเฟรช",density:"ความหนาแน่น",densityDefault:"ค่าเริ่มต้น",densityLarger:"ขนาดใหญ่ขึ้น",densityMiddle:"กลาง",densitySmall:"กะทัดรัด"},stepsForm:{next:"ถัดไป",prev:"ก่อนหน้า",submit:"เสร็จ"},loginForm:{submitText:"เข้าสู่ระบบ"},editableTable:{onlyOneLineEditor:"แก้ไขได้เพียงบรรทัดเดียวเท่านั้น",action:{save:"บันทึก",cancel:"ยกเลิก",delete:"ลบ",add:"เพิ่มแถวของข้อมูล"}},switch:{open:"เปิด",close:"ปิด"}}),"cs-CZ":o("cs_cz",{moneySymbol:"Kč",deleteThisLine:"Smazat tento ř\xe1dek",copyThisLine:"Kop\xedrovat tento ř\xe1dek",form:{lightFilter:{more:"V\xedc",clear:"Vymazat",confirm:"Potvrdit",itemUnit:"Položky"}},tableForm:{search:"Hledat",reset:"Resetovat",submit:"Odeslat",collapsed:"Zvětšit",expand:"Zmenšit",inputPlaceholder:"Zadejte pros\xedm",selectPlaceholder:"Vyberte pros\xedm"},alert:{clear:"Vymazat",selected:"Vybr\xe1no",item:"Položka"},pagination:{total:{range:" ",total:"z",item:"položek"}},tableToolBar:{leftPin:"Připnout doleva",rightPin:"Připnout doprava",noPin:"Odepnuto",leftFixedTitle:"Fixov\xe1no nalevo",rightFixedTitle:"Fixov\xe1no napravo",noFixedTitle:"Nefixov\xe1no",reset:"Resetovat",columnDisplay:"Zobrazen\xed sloupců",columnSetting:"Nastaven\xed",fullScreen:"Cel\xe1 obrazovka",exitFullScreen:"Ukončit celou obrazovku",reload:"Obnovit",density:"Hustota",densityDefault:"V\xfdchoz\xed",densityLarger:"Větš\xed",densityMiddle:"Středn\xed",densitySmall:"Kompaktn\xed"},stepsForm:{next:"Dalš\xed",prev:"Předchoz\xed",submit:"Dokončit"},loginForm:{submitText:"Přihl\xe1sit se"},editableTable:{onlyOneLineEditor:"Upravit lze pouze jeden ř\xe1dek",action:{save:"Uložit",cancel:"Zrušit",delete:"Vymazat",add:"Přidat ř\xe1dek"}},switch:{open:"Otevř\xedt",close:"Zavř\xedt"}}),"sk-SK":o("sk_SK",{moneySymbol:"€",deleteThisLine:"Odstr\xe1niť tento riadok",copyThisLine:"Skop\xedrujte tento riadok",form:{lightFilter:{more:"Viac",clear:"Vyčistiť",confirm:"Potvrďte",itemUnit:"Položky"}},tableForm:{search:"Vyhladať",reset:"Resetovať",submit:"Odoslať",collapsed:"Rozbaliť",expand:"Zbaliť",inputPlaceholder:"Pros\xedm, zadajte",selectPlaceholder:"Pros\xedm, vyberte"},alert:{clear:"Vyčistiť",selected:"Vybran\xfd",item:"Položka"},pagination:{total:{range:" ",total:"z",item:"položiek"}},tableToolBar:{leftPin:"Pripn\xfať vľavo",rightPin:"Pripn\xfať vpravo",noPin:"Odopnut\xe9",leftFixedTitle:"Fixovan\xe9 na ľavo",rightFixedTitle:"Fixovan\xe9 na pravo",noFixedTitle:"Nefixovan\xe9",reset:"Resetovať",columnDisplay:"Zobrazenie stĺpcov",columnSetting:"Nastavenia",fullScreen:"Cel\xe1 obrazovka",exitFullScreen:"Ukončiť cel\xfa obrazovku",reload:"Obnoviť",density:"Hustota",densityDefault:"Predvolen\xe9",densityLarger:"V\xe4čšie",densityMiddle:"Stredn\xe9",densitySmall:"Kompaktn\xe9"},stepsForm:{next:"Ďalšie",prev:"Predch\xe1dzaj\xface",submit:"Potvrdiť"},loginForm:{submitText:"Prihl\xe1siť sa"},editableTable:{onlyOneLineEditor:"Upravovať možno iba jeden riadok",action:{save:"Uložiť",cancel:"Zrušiť",delete:"Odstr\xe1niť",add:"pridať riadok \xfadajov"}},switch:{open:"otvoriť",close:"zavrieť"}}),"he-IL":o("he_IL",{moneySymbol:"₪",deleteThisLine:"מחק שורה זו",copyThisLine:"העתק שורה זו",form:{lightFilter:{more:"יותר",clear:"נקה",confirm:"אישור",itemUnit:"פריטים"}},tableForm:{search:"חיפוש",reset:"איפוס",submit:"שלח",collapsed:"הרחב",expand:"כווץ",inputPlaceholder:"אנא הכנס",selectPlaceholder:"אנא בחר"},alert:{clear:"נקה",selected:"נבחר",item:"פריט"},pagination:{total:{range:" ",total:"מתוך",item:"פריטים"}},tableToolBar:{leftPin:"הצמד לשמאל",rightPin:"הצמד לימין",noPin:"לא מצורף",leftFixedTitle:"מוצמד לשמאל",rightFixedTitle:"מוצמד לימין",noFixedTitle:"לא מוצמד",reset:"איפוס",columnDisplay:"תצוגת עמודות",columnSetting:"הגדרות",fullScreen:"מסך מלא",exitFullScreen:"צא ממסך מלא",reload:"רענן",density:"רזולוציה",densityDefault:"ברירת מחדל",densityLarger:"גדול",densityMiddle:"בינוני",densitySmall:"קטן"},stepsForm:{next:"הבא",prev:"קודם",submit:"סיום"},loginForm:{submitText:"כניסה"},editableTable:{onlyOneLineEditor:"ניתן לערוך רק שורה אחת",action:{save:"שמור",cancel:"ביטול",delete:"מחיקה",add:"הוסף שורת נתונים"}},switch:{open:"פתח",close:"סגור"}}),"uk-UA":o("uk_UA",{moneySymbol:"₴",deleteThisLine:"Видатили рядок",copyThisLine:"Скопіювати рядок",form:{lightFilter:{more:"Ще",clear:"Очистити",confirm:"Ок",itemUnit:"Позиції"}},tableForm:{search:"Пошук",reset:"Очистити",submit:"Відправити",collapsed:"Розгорнути",expand:"Згорнути",inputPlaceholder:"Введіть значення",selectPlaceholder:"Оберіть значення"},alert:{clear:"Очистити",selected:"Обрано",item:"елементів"},pagination:{total:{range:" ",total:"з",item:"елементів"}},tableToolBar:{leftPin:"Закріпити зліва",rightPin:"Закріпити справа",noPin:"Відкріпити",leftFixedTitle:"Закріплено зліва",rightFixedTitle:"Закріплено справа",noFixedTitle:"Не закріплено",reset:"Скинути",columnDisplay:"Відображення стовпців",columnSetting:"Налаштування",fullScreen:"Повноекранний режим",exitFullScreen:"Вийти з повноекранного режиму",reload:"Оновити",density:"Розмір",densityDefault:"За замовчуванням",densityLarger:"Великий",densityMiddle:"Середній",densitySmall:"Стислий"},stepsForm:{next:"Наступний",prev:"Попередній",submit:"Завершити"},loginForm:{submitText:"Вхіх"},editableTable:{onlyOneLineEditor:"Тільки один рядок може бути редагований одночасно",action:{save:"Зберегти",cancel:"Відмінити",delete:"Видалити",add:"додати рядок"}},switch:{open:"Відкрито",close:"Закрито"}}),"uz-UZ":o("uz_UZ",{moneySymbol:"UZS",form:{lightFilter:{more:"Yana",clear:"Tozalash",confirm:"OK",itemUnit:"Pozitsiyalar"}},tableForm:{search:"Qidirish",reset:"Qayta tiklash",submit:"Yuborish",collapsed:"Yig‘ish",expand:"Kengaytirish",inputPlaceholder:"Qiymatni kiriting",selectPlaceholder:"Qiymatni tanlang"},alert:{clear:"Tozalash",selected:"Tanlangan",item:"elementlar"},pagination:{total:{range:" ",total:"dan",item:"elementlar"}},tableToolBar:{leftPin:"Chapga mahkamlash",rightPin:"O‘ngga mahkamlash",noPin:"Mahkamlashni olib tashlash",leftFixedTitle:"Chapga mahkamlangan",rightFixedTitle:"O‘ngga mahkamlangan",noFixedTitle:"Mahkamlashsiz",reset:"Qayta tiklash",columnDisplay:"Ustunni ko‘rsatish",columnSetting:"Sozlamalar",fullScreen:"To‘liq ekran",exitFullScreen:"To‘liq ekrandan chiqish",reload:"Yangilash",density:"O‘lcham",densityDefault:"Standart",densityLarger:"Katta",densityMiddle:"O‘rtacha",densitySmall:"Kichik"},stepsForm:{next:"Keyingi",prev:"Oldingi",submit:"Tugatish"},loginForm:{submitText:"Kirish"},editableTable:{action:{save:"Saqlash",cancel:"Bekor qilish",delete:"O‘chirish",add:"maʼlumotlar qatorini qo‘shish"}},switch:{open:"Ochish",close:"Yopish"}}),"nl-NL":o("nl_NL",{moneySymbol:"€",deleteThisLine:"Verwijder deze regel",copyThisLine:"Kopieer deze regel",form:{lightFilter:{more:"Meer filters",clear:"Wissen",confirm:"Bevestigen",itemUnit:"item"}},tableForm:{search:"Zoeken",reset:"Resetten",submit:"Indienen",collapsed:"Uitvouwen",expand:"Inklappen",inputPlaceholder:"Voer in",selectPlaceholder:"Selecteer"},alert:{clear:"Selectie annuleren",selected:"Geselecteerd",item:"item"},pagination:{total:{range:"Van",total:"items/totaal",item:"items"}},tableToolBar:{leftPin:"Vastzetten aan begin",rightPin:"Vastzetten aan einde",noPin:"Niet vastzetten",leftFixedTitle:"Vastzetten aan de linkerkant",rightFixedTitle:"Vastzetten aan de rechterkant",noFixedTitle:"Niet vastzetten",reset:"Resetten",columnDisplay:"Kolomweergave",columnSetting:"Kolominstellingen",fullScreen:"Volledig scherm",exitFullScreen:"Verlaat volledig scherm",reload:"Vernieuwen",density:"Dichtheid",densityDefault:"Normaal",densityLarger:"Ruim",densityMiddle:"Gemiddeld",densitySmall:"Compact"},stepsForm:{next:"Volgende stap",prev:"Vorige stap",submit:"Indienen"},loginForm:{submitText:"Inloggen"},editableTable:{onlyOneLineEditor:"Slechts \xe9\xe9n regel tegelijk bewerken",action:{save:"Opslaan",cancel:"Annuleren",delete:"Verwijderen",add:"Een regel toevoegen"}},switch:{open:"Openen",close:"Sluiten"}}),"ro-RO":o("ro_RO",{moneySymbol:"RON",deleteThisLine:"Șterge acest r\xe2nd",copyThisLine:"Copiază acest r\xe2nd",form:{lightFilter:{more:"Mai multe filtre",clear:"Curăță",confirm:"Confirmă",itemUnit:"elemente"}},tableForm:{search:"Caută",reset:"Resetează",submit:"Trimite",collapsed:"Extinde",expand:"Restr\xe2nge",inputPlaceholder:"Introduceți",selectPlaceholder:"Selectați"},alert:{clear:"Anulează selecția",selected:"Selectat",item:"elemente"},pagination:{total:{range:"De la",total:"elemente/total",item:"elemente"}},tableToolBar:{leftPin:"Fixează la \xeenceput",rightPin:"Fixează la sf\xe2rșit",noPin:"Nu fixa",leftFixedTitle:"Fixează \xeen st\xe2nga",rightFixedTitle:"Fixează \xeen dreapta",noFixedTitle:"Nu fixa",reset:"Resetează",columnDisplay:"Afișare coloane",columnSetting:"Setări coloane",fullScreen:"Ecran complet",exitFullScreen:"Ieși din ecran complet",reload:"Re\xeencarcă",density:"Densitate",densityDefault:"Normal",densityLarger:"Larg",densityMiddle:"Mediu",densitySmall:"Compact"},stepsForm:{next:"Pasul următor",prev:"Pasul anterior",submit:"Trimite"},loginForm:{submitText:"Autentificare"},editableTable:{onlyOneLineEditor:"Se poate edita doar un r\xe2nd simultan",action:{save:"Salvează",cancel:"Anulează",delete:"Șterge",add:"Adaugă un r\xe2nd"}},switch:{open:"Deschide",close:"\xcenchide"}}),"sv-SE":o("sv_SE",{moneySymbol:"SEK",deleteThisLine:"Radera denna rad",copyThisLine:"Kopiera denna rad",form:{lightFilter:{more:"Fler filter",clear:"Rensa",confirm:"Bekr\xe4fta",itemUnit:"objekt"}},tableForm:{search:"S\xf6k",reset:"\xc5terst\xe4ll",submit:"Skicka",collapsed:"Expandera",expand:"F\xe4ll ihop",inputPlaceholder:"V\xe4nligen ange",selectPlaceholder:"V\xe4nligen v\xe4lj"},alert:{clear:"Avbryt val",selected:"Vald",item:"objekt"},pagination:{total:{range:"Fr\xe5n",total:"objekt/totalt",item:"objekt"}},tableToolBar:{leftPin:"F\xe4st till v\xe4nster",rightPin:"F\xe4st till h\xf6ger",noPin:"Inte f\xe4st",leftFixedTitle:"F\xe4st till v\xe4nster",rightFixedTitle:"F\xe4st till h\xf6ger",noFixedTitle:"Inte f\xe4st",reset:"\xc5terst\xe4ll",columnDisplay:"Kolumnvisning",columnSetting:"Kolumninst\xe4llningar",fullScreen:"Fullsk\xe4rm",exitFullScreen:"Avsluta fullsk\xe4rm",reload:"Ladda om",density:"T\xe4thet",densityDefault:"Normal",densityLarger:"L\xf6s",densityMiddle:"Medium",densitySmall:"Kompakt"},stepsForm:{next:"N\xe4sta steg",prev:"F\xf6reg\xe5ende steg",submit:"Skicka"},loginForm:{submitText:"Logga in"},editableTable:{onlyOneLineEditor:"Endast en rad kan redigeras \xe5t g\xe5ngen",action:{save:"Spara",cancel:"Avbryt",delete:"Radera",add:"L\xe4gg till en rad"}},switch:{open:"\xd6ppna",close:"St\xe4ng"}})},s=Object.keys(c),d=function(e){var t=(e||"zh-CN").toLocaleLowerCase();return s.find(function(e){return e.toLocaleLowerCase().includes(t)})}},9424(e,t,n){"use strict";n.d(t,{X9:()=>k,rd:()=>E,Y1:()=>z,JM:()=>j,dF:()=>P,X3:()=>I});var r=n(89379),o=n(48670);function a(e,t){"string"==typeof(n=e)&&-1!==n.indexOf(".")&&1===parseFloat(n)&&(e="100%");var n,r,o="string"==typeof(r=e)&&-1!==r.indexOf("%");return(e=360===t?e:Math.min(t,Math.max(0,parseFloat(e))),o&&(e=parseInt(String(e*t),10)/100),1e-6>Math.abs(e-t))?1:e=360===t?(e<0?e%t+t:e%t)/parseFloat(String(t)):e%t/parseFloat(String(t))}function i(e){return Math.min(1,Math.max(0,e))}function l(e){return(isNaN(e=parseFloat(e))||e<0||e>1)&&(e=1),e}function c(e){return e<=1?"".concat(100*Number(e),"%"):e}function s(e){return 1===e.length?"0"+e:String(e)}function d(e,t,n){e=a(e,255);var r=Math.max(e,t=a(t,255),n=a(n,255)),o=Math.min(e,t,n),i=0,l=0,c=(r+o)/2;if(r===o)l=0,i=0;else{var s=r-o;switch(l=c>.5?s/(2-r-o):s/(r+o),r){case e:i=(t-n)/s+6*(t1&&(n-=1),n<1/6)?e+6*n*(t-e):n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function p(e,t,n){e=a(e,255);var r=Math.max(e,t=a(t,255),n=a(n,255)),o=Math.min(e,t,n),i=0,l=r-o;if(r===o)i=0;else{switch(r){case e:i=(t-n)/l+6*(t>16,g:(65280&z)>>8,b:255&z}),this.originalInput=t;var r,o,i,s,d,p,f,h,b,v,$,A,w,S,C,O,k,j,E,P,z,I,M=(S={r:0,g:0,b:0},C=1,O=null,k=null,j=null,E=!1,P=!1,"string"==typeof(r=t)&&(r=function(e){if(0===(e=e.trim().toLowerCase()).length)return!1;var t=!1;if(g[e])e=g[e],t=!0;else if("transparent"===e)return{r:0,g:0,b:0,a:0,format:"name"};var n=y.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=y.rgba.exec(e))?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=y.hsl.exec(e))?{h:n[1],s:n[2],l:n[3]}:(n=y.hsla.exec(e))?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=y.hsv.exec(e))?{h:n[1],s:n[2],v:n[3]}:(n=y.hsva.exec(e))?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=y.hex8.exec(e))?{r:m(n[1]),g:m(n[2]),b:m(n[3]),a:m(n[4])/255,format:t?"name":"hex8"}:(n=y.hex6.exec(e))?{r:m(n[1]),g:m(n[2]),b:m(n[3]),format:t?"name":"hex"}:(n=y.hex4.exec(e))?{r:m(n[1]+n[1]),g:m(n[2]+n[2]),b:m(n[3]+n[3]),a:m(n[4]+n[4])/255,format:t?"name":"hex8"}:!!(n=y.hex3.exec(e))&&{r:m(n[1]+n[1]),g:m(n[2]+n[2]),b:m(n[3]+n[3]),format:t?"name":"hex"}}(r)),"object"==typeof r&&(x(r.r)&&x(r.g)&&x(r.b)?(o=r.r,i=r.g,s=r.b,S={r:255*a(o,255),g:255*a(i,255),b:255*a(s,255)},E=!0,P="%"===String(r.r).substr(-1)?"prgb":"rgb"):x(r.h)&&x(r.s)&&x(r.v)?(O=c(r.s),k=c(r.v),d=r.h,p=O,f=k,d=6*a(d,360),p=a(p,100),f=a(f,100),h=Math.floor(d),b=d-h,v=f*(1-p),$=f*(1-b*p),A=f*(1-(1-b)*p),S={r:255*[f,$,v,v,A,f][w=h%6],g:255*[A,f,f,$,v,v][w],b:255*[v,v,A,f,f,$][w]},E=!0,P="hsv"):x(r.h)&&x(r.s)&&x(r.l)&&(O=c(r.s),j=c(r.l),S=function(e,t,n){if(e=a(e,360),t=a(t,100),n=a(n,100),0===t)o=n,i=n,r=n;else{var r,o,i,l=n<.5?n*(1+t):n+t-n*t,c=2*n-l;r=u(c,l,e+1/3),o=u(c,l,e),i=u(c,l,e-1/3)}return{r:255*r,g:255*o,b:255*i}}(r.h,O,j),E=!0,P="hsl"),Object.prototype.hasOwnProperty.call(r,"a")&&(C=r.a)),C=l(C),{ok:E,format:r.format||P,r:Math.min(255,Math.max(S.r,0)),g:Math.min(255,Math.max(S.g,0)),b:Math.min(255,Math.max(S.b,0)),a:C});this.originalInput=t,this.r=M.r,this.g=M.g,this.b=M.b,this.a=M.a,this.roundA=Math.round(100*this.a)/100,this.format=null!=(I=n.format)?I:M.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=M.ok}return e.prototype.isDark=function(){return 128>this.getBrightness()},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},e.prototype.getLuminance=function(){var e=this.toRgb(),t=e.r/255,n=e.g/255,r=e.b/255;return .2126*(t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4))+.7152*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))+.0722*(r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(e){return this.a=l(e),this.roundA=Math.round(100*this.a)/100,this},e.prototype.isMonochrome=function(){return 0===this.toHsl().s},e.prototype.toHsv=function(){var e=p(this.r,this.g,this.b);return{h:360*e.h,s:e.s,v:e.v,a:this.a}},e.prototype.toHsvString=function(){var e=p(this.r,this.g,this.b),t=Math.round(360*e.h),n=Math.round(100*e.s),r=Math.round(100*e.v);return 1===this.a?"hsv(".concat(t,", ").concat(n,"%, ").concat(r,"%)"):"hsva(".concat(t,", ").concat(n,"%, ").concat(r,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var e=d(this.r,this.g,this.b);return{h:360*e.h,s:e.s,l:e.l,a:this.a}},e.prototype.toHslString=function(){var e=d(this.r,this.g,this.b),t=Math.round(360*e.h),n=Math.round(100*e.s),r=Math.round(100*e.l);return 1===this.a?"hsl(".concat(t,", ").concat(n,"%, ").concat(r,"%)"):"hsla(".concat(t,", ").concat(n,"%, ").concat(r,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(e){return void 0===e&&(e=!1),f(this.r,this.g,this.b,e)},e.prototype.toHexString=function(e){return void 0===e&&(e=!1),"#"+this.toHex(e)},e.prototype.toHex8=function(e){var t,n,r,o,a,i;return void 0===e&&(e=!1),t=this.r,n=this.g,r=this.b,o=this.a,a=e,i=[s(Math.round(t).toString(16)),s(Math.round(n).toString(16)),s(Math.round(r).toString(16)),s(Math.round(255*parseFloat(o)).toString(16))],a&&i[0].startsWith(i[0].charAt(1))&&i[1].startsWith(i[1].charAt(1))&&i[2].startsWith(i[2].charAt(1))&&i[3].startsWith(i[3].charAt(1))?i[0].charAt(0)+i[1].charAt(0)+i[2].charAt(0)+i[3].charAt(0):i.join("")},e.prototype.toHex8String=function(e){return void 0===e&&(e=!1),"#"+this.toHex8(e)},e.prototype.toHexShortString=function(e){return void 0===e&&(e=!1),1===this.a?this.toHexString(e):this.toHex8String(e)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var e=Math.round(this.r),t=Math.round(this.g),n=Math.round(this.b);return 1===this.a?"rgb(".concat(e,", ").concat(t,", ").concat(n,")"):"rgba(".concat(e,", ").concat(t,", ").concat(n,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var e=function(e){return"".concat(Math.round(100*a(e,255)),"%")};return{r:e(this.r),g:e(this.g),b:e(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var e=function(e){return Math.round(100*a(e,255))};return 1===this.a?"rgb(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%)"):"rgba(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(0===this.a)return"transparent";if(this.a<1)return!1;for(var e="#"+f(this.r,this.g,this.b,!1),t=0,n=Object.entries(g);t=0;return!t&&r&&(e.startsWith("hex")||"name"===e)?"name"===e&&0===this.a?this.toName():this.toRgbString():("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),("hex"===e||"hex6"===e)&&(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=i(n.l),new e(n)},e.prototype.brighten=function(t){void 0===t&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(-(t/100*255)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(-(t/100*255)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(-(t/100*255)))),new e(n)},e.prototype.darken=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=i(n.l),new e(n)},e.prototype.tint=function(e){return void 0===e&&(e=10),this.mix("white",e)},e.prototype.shade=function(e){return void 0===e&&(e=10),this.mix("black",e)},e.prototype.desaturate=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=i(n.s),new e(n)},e.prototype.saturate=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=i(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){void 0===n&&(n=50);var r=this.toRgb(),o=new e(t).toRgb(),a=n/100;return new e({r:(o.r-r.r)*a+r.r,g:(o.g-r.g)*a+r.g,b:(o.b-r.b)*a+r.b,a:(o.a-r.a)*a+r.a})},e.prototype.analogous=function(t,n){void 0===t&&(t=6),void 0===n&&(n=30);var r=this.toHsl(),o=360/n,a=[this];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,a.push(new e(r));return a},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){void 0===t&&(t=6);for(var n=this.toHsv(),r=n.h,o=n.s,a=n.v,i=[],l=1/t;t--;)i.push(new e({h:r,s:o,v:a})),a=(a+l)%1;return i},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb(),o=n.a+r.a*(1-n.a);return new e({r:(n.r*n.a+r.r*r.a*(1-n.a))/o,g:(n.g*n.a+r.g*r.a*(1-n.a))/o,b:(n.b*n.a+r.b*r.a*(1-n.a))/o,a:o})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,o=[this],a=360/t,i=1;il,emptyTheme:()=>s,hashCode:()=>c,token:()=>d,useToken:()=>u});var r,o=n(89379),a=n(48670),i=n(35710),l={blue:"#1677ff",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#eb2f96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911",colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff7875",colorInfo:"#1677ff",colorTextBase:"#000",colorBgBase:"#fff",fontFamily:"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInQuint:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:4,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:!1,"blue-1":"#e6f4ff","blue-2":"#bae0ff","blue-3":"#91caff","blue-4":"#69b1ff","blue-5":"#4096ff","blue-6":"#1677ff","blue-7":"#0958d9","blue-8":"#003eb3","blue-9":"#002c8c","blue-10":"#001d66","purple-1":"#f9f0ff","purple-2":"#efdbff","purple-3":"#d3adf7","purple-4":"#b37feb","purple-5":"#9254de","purple-6":"#722ed1","purple-7":"#531dab","purple-8":"#391085","purple-9":"#22075e","purple-10":"#120338","cyan-1":"#e6fffb","cyan-2":"#b5f5ec","cyan-3":"#87e8de","cyan-4":"#5cdbd3","cyan-5":"#36cfc9","cyan-6":"#13c2c2","cyan-7":"#08979c","cyan-8":"#006d75","cyan-9":"#00474f","cyan-10":"#002329","green-1":"#f6ffed","green-2":"#d9f7be","green-3":"#b7eb8f","green-4":"#95de64","green-5":"#73d13d","green-6":"#52c41a","green-7":"#389e0d","green-8":"#237804","green-9":"#135200","green-10":"#092b00","magenta-1":"#fff0f6","magenta-2":"#ffd6e7","magenta-3":"#ffadd2","magenta-4":"#ff85c0","magenta-5":"#f759ab","magenta-6":"#eb2f96","magenta-7":"#c41d7f","magenta-8":"#9e1068","magenta-9":"#780650","magenta-10":"#520339","pink-1":"#fff0f6","pink-2":"#ffd6e7","pink-3":"#ffadd2","pink-4":"#ff85c0","pink-5":"#f759ab","pink-6":"#eb2f96","pink-7":"#c41d7f","pink-8":"#9e1068","pink-9":"#780650","pink-10":"#520339","red-1":"#fff1f0","red-2":"#ffccc7","red-3":"#ffa39e","red-4":"#ff7875","red-5":"#ff4d4f","red-6":"#f5222d","red-7":"#cf1322","red-8":"#a8071a","red-9":"#820014","red-10":"#5c0011","orange-1":"#fff7e6","orange-2":"#ffe7ba","orange-3":"#ffd591","orange-4":"#ffc069","orange-5":"#ffa940","orange-6":"#fa8c16","orange-7":"#d46b08","orange-8":"#ad4e00","orange-9":"#873800","orange-10":"#612500","yellow-1":"#feffe6","yellow-2":"#ffffb8","yellow-3":"#fffb8f","yellow-4":"#fff566","yellow-5":"#ffec3d","yellow-6":"#fadb14","yellow-7":"#d4b106","yellow-8":"#ad8b00","yellow-9":"#876800","yellow-10":"#614700","volcano-1":"#fff2e8","volcano-2":"#ffd8bf","volcano-3":"#ffbb96","volcano-4":"#ff9c6e","volcano-5":"#ff7a45","volcano-6":"#fa541c","volcano-7":"#d4380d","volcano-8":"#ad2102","volcano-9":"#871400","volcano-10":"#610b00","geekblue-1":"#f0f5ff","geekblue-2":"#d6e4ff","geekblue-3":"#adc6ff","geekblue-4":"#85a5ff","geekblue-5":"#597ef7","geekblue-6":"#2f54eb","geekblue-7":"#1d39c4","geekblue-8":"#10239e","geekblue-9":"#061178","geekblue-10":"#030852","gold-1":"#fffbe6","gold-2":"#fff1b8","gold-3":"#ffe58f","gold-4":"#ffd666","gold-5":"#ffc53d","gold-6":"#faad14","gold-7":"#d48806","gold-8":"#ad6800","gold-9":"#874d00","gold-10":"#613400","lime-1":"#fcffe6","lime-2":"#f4ffb8","lime-3":"#eaff8f","lime-4":"#d3f261","lime-5":"#bae637","lime-6":"#a0d911","lime-7":"#7cb305","lime-8":"#5b8c00","lime-9":"#3f6600","lime-10":"#254000",colorText:"rgba(0, 0, 0, 0.88)",colorTextSecondary:"rgba(0, 0, 0, 0.65)",colorTextTertiary:"rgba(0, 0, 0, 0.45)",colorTextQuaternary:"rgba(0, 0, 0, 0.25)",colorFill:"rgba(0, 0, 0, 0.15)",colorFillSecondary:"rgba(0, 0, 0, 0.06)",colorFillTertiary:"rgba(0, 0, 0, 0.04)",colorFillQuaternary:"rgba(0, 0, 0, 0.02)",colorBgLayout:"hsl(220,23%,97%)",colorBgContainer:"#ffffff",colorBgElevated:"#ffffff",colorBgSpotlight:"rgba(0, 0, 0, 0.85)",colorBorder:"#d9d9d9",colorBorderSecondary:"#f0f0f0",colorPrimaryBg:"#e6f4ff",colorPrimaryBgHover:"#bae0ff",colorPrimaryBorder:"#91caff",colorPrimaryBorderHover:"#69b1ff",colorPrimaryHover:"#4096ff",colorPrimaryActive:"#0958d9",colorPrimaryTextHover:"#4096ff",colorPrimaryText:"#1677ff",colorPrimaryTextActive:"#0958d9",colorSuccessBg:"#f6ffed",colorSuccessBgHover:"#d9f7be",colorSuccessBorder:"#b7eb8f",colorSuccessBorderHover:"#95de64",colorSuccessHover:"#95de64",colorSuccessActive:"#389e0d",colorSuccessTextHover:"#73d13d",colorSuccessText:"#52c41a",colorSuccessTextActive:"#389e0d",colorErrorBg:"#fff2f0",colorErrorBgHover:"#fff1f0",colorErrorBorder:"#ffccc7",colorErrorBorderHover:"#ffa39e",colorErrorHover:"#ffa39e",colorErrorActive:"#d9363e",colorErrorTextHover:"#ff7875",colorErrorText:"#ff4d4f",colorErrorTextActive:"#d9363e",colorWarningBg:"#fffbe6",colorWarningBgHover:"#fff1b8",colorWarningBorder:"#ffe58f",colorWarningBorderHover:"#ffd666",colorWarningHover:"#ffd666",colorWarningActive:"#d48806",colorWarningTextHover:"#ffc53d",colorWarningText:"#faad14",colorWarningTextActive:"#d48806",colorInfoBg:"#e6f4ff",colorInfoBgHover:"#bae0ff",colorInfoBorder:"#91caff",colorInfoBorderHover:"#69b1ff",colorInfoHover:"#69b1ff",colorInfoActive:"#0958d9",colorInfoTextHover:"#4096ff",colorInfoText:"#1677ff",colorInfoTextActive:"#0958d9",colorBgMask:"rgba(0, 0, 0, 0.45)",colorWhite:"#fff",sizeXXL:48,sizeXL:32,sizeLG:24,sizeMD:20,sizeMS:16,size:16,sizeSM:12,sizeXS:8,sizeXXS:4,controlHeightSM:24,controlHeightXS:16,controlHeightLG:40,motionDurationFast:"0.1s",motionDurationMid:"0.2s",motionDurationSlow:"0.3s",fontSizes:[12,14,16,20,24,30,38,46,56,68],lineHeights:[1.6666666666666667,1.5714285714285714,1.5,1.4,1.3333333333333333,1.2666666666666666,1.2105263157894737,1.173913043478261,1.1428571428571428,1.1176470588235294],lineWidthBold:2,borderRadiusXS:1,borderRadiusSM:4,borderRadiusLG:8,borderRadiusOuter:4,colorLink:"#1677ff",colorLinkHover:"#69b1ff",colorLinkActive:"#0958d9",colorFillContent:"rgba(0, 0, 0, 0.06)",colorFillContentHover:"rgba(0, 0, 0, 0.15)",colorFillAlter:"rgba(0, 0, 0, 0.02)",colorBgContainerDisabled:"rgba(0, 0, 0, 0.04)",colorBorderBg:"#ffffff",colorSplit:"rgba(5, 5, 5, 0.06)",colorTextPlaceholder:"rgba(0, 0, 0, 0.25)",colorTextDisabled:"rgba(0, 0, 0, 0.25)",colorTextHeading:"rgba(0, 0, 0, 0.88)",colorTextLabel:"rgba(0, 0, 0, 0.65)",colorTextDescription:"rgba(0, 0, 0, 0.45)",colorTextLightSolid:"#fff",colorHighlight:"#ff7875",colorBgTextHover:"rgba(0, 0, 0, 0.06)",colorBgTextActive:"rgba(0, 0, 0, 0.15)",colorIcon:"rgba(0, 0, 0, 0.45)",colorIconHover:"rgba(0, 0, 0, 0.88)",colorErrorOutline:"rgba(255, 38, 5, 0.06)",colorWarningOutline:"rgba(255, 215, 5, 0.1)",fontSizeSM:12,fontSizeLG:16,fontSizeXL:20,fontSizeHeading1:38,fontSizeHeading2:30,fontSizeHeading3:24,fontSizeHeading4:20,fontSizeHeading5:16,fontSizeIcon:12,lineHeight:1.5714285714285714,lineHeightLG:1.5,lineHeightSM:1.6666666666666667,lineHeightHeading1:1.2105263157894737,lineHeightHeading2:1.2666666666666666,lineHeightHeading3:1.3333333333333333,lineHeightHeading4:1.4,lineHeightHeading5:1.5,controlOutlineWidth:2,controlInteractiveSize:16,controlItemBgHover:"rgba(0, 0, 0, 0.04)",controlItemBgActive:"#e6f4ff",controlItemBgActiveHover:"#bae0ff",controlItemBgActiveDisabled:"rgba(0, 0, 0, 0.15)",controlTmpOutline:"rgba(0, 0, 0, 0.02)",controlOutline:"rgba(5, 145, 255, 0.1)",fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:4,paddingXS:8,paddingSM:12,padding:16,paddingMD:20,paddingLG:24,paddingXL:32,paddingContentHorizontalLG:24,paddingContentVerticalLG:16,paddingContentHorizontal:16,paddingContentVertical:12,paddingContentHorizontalSM:16,paddingContentVerticalSM:8,marginXXS:4,marginXS:8,marginSM:12,margin:16,marginMD:20,marginLG:24,marginXL:32,marginXXL:48,boxShadow:"0 1px 2px 0 rgba(0, 0, 0, 0.03),0 1px 6px -1px rgba(0, 0, 0, 0.02),0 2px 4px 0 rgba(0, 0, 0, 0.02)",boxShadowSecondary:"0 6px 16px 0 rgba(0, 0, 0, 0.08),0 3px 6px -4px rgba(0, 0, 0, 0.12),0 9px 28px 8px rgba(0, 0, 0, 0.05)",screenXS:480,screenXSMin:480,screenXSMax:479,screenSM:576,screenSMMin:576,screenSMMax:575,screenMD:768,screenMDMin:768,screenMDMax:767,screenLG:992,screenLGMin:992,screenLGMax:991,screenXL:1200,screenXLMin:1200,screenXLMax:1199,screenXXL:1600,screenXXLMin:1600,screenXXLMax:1599,boxShadowPopoverArrow:"3px 3px 7px rgba(0, 0, 0, 0.1)",boxShadowCard:"0 1px 2px -2px rgba(0, 0, 0, 0.16),0 3px 6px 0 rgba(0, 0, 0, 0.12),0 5px 12px 4px rgba(0, 0, 0, 0.09)",boxShadowDrawerRight:"-6px 0 16px 0 rgba(0, 0, 0, 0.08),-3px 0 6px -4px rgba(0, 0, 0, 0.12),-9px 0 28px 8px rgba(0, 0, 0, 0.05)",boxShadowDrawerLeft:"6px 0 16px 0 rgba(0, 0, 0, 0.08),3px 0 6px -4px rgba(0, 0, 0, 0.12),9px 0 28px 8px rgba(0, 0, 0, 0.05)",boxShadowDrawerUp:"0 6px 16px 0 rgba(0, 0, 0, 0.08),0 3px 6px -4px rgba(0, 0, 0, 0.12),0 9px 28px 8px rgba(0, 0, 0, 0.05)",boxShadowDrawerDown:"0 -6px 16px 0 rgba(0, 0, 0, 0.08),0 -3px 6px -4px rgba(0, 0, 0, 0.12),0 -9px 28px 8px rgba(0, 0, 0, 0.05)",boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)",_tokenKey:"19w80ff",_hashId:"css-dev-only-do-not-override-i2zu9q"},c=function(e){for(var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,r=0xdeadbeef^n,o=0x41c6ce57^n,a=0;a>>16,0x85ebca6b)^Math.imul(o^o>>>13,0xc2b2ae35),0x100000000*(2097151&(o=Math.imul(o^o>>>16,0x85ebca6b)^Math.imul(r^r>>>13,0xc2b2ae35)))+(r>>>0)},s=(0,a.an)(function(e){return e}),d={theme:s,token:(0,o.A)((0,o.A)({},l),null===i.A||void 0===i.A||null==(r=i.A.defaultAlgorithm)?void 0:r.call(i.A,null===i.A||void 0===i.A?void 0:i.A.defaultSeed)),hashId:"pro-".concat(c(JSON.stringify(l)))},u=function(){return d}},22393(e,t,n){"use strict";n.d(t,{A:()=>cJ});var r,o,a=n(1079),i=n(10467),l=n(82284),c=n(57046),s=n(64467),d=n(83098),u=n(89379),p=n(80045),f=n(88996),m=n(68866),g=n(4888),h=n(42443),b=n(46942),v=n.n(b),y=n(96540),x=n(9424),$=n(74848),A=y.memo(function(e){var t=e.label,n=e.tooltip,r=e.ellipsis,o=e.subTitle,a=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-core-label-tip"),i=(0,x.X3)("LabelIconTip",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(a)}),(0,s.A)({},t.componentCls,{display:"inline-flex",alignItems:"center",maxWidth:"100%","&-icon":{display:"block",marginInlineStart:"4px",cursor:"pointer","&:hover":{color:t.colorPrimary}},"&-title":{display:"inline-flex",flex:"1"},"&-subtitle ":{marginInlineStart:8,color:t.colorTextSecondary,fontWeight:"normal",fontSize:t.fontSize,whiteSpace:"nowrap"},"&-title-ellipsis":{overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis",wordBreak:"keep-all"}}))]}),l=i.wrapSSR,c=i.hashId;if(!n&&!o)return(0,$.jsx)($.Fragment,{children:t});var d="string"==typeof n||y.isValidElement(n)?{title:n}:n,p=(null==d?void 0:d.icon)||(0,$.jsx)(m.A,{});return l((0,$.jsxs)("div",{className:v()(a,c),onMouseDown:function(e){return e.stopPropagation()},onMouseLeave:function(e){return e.stopPropagation()},onMouseMove:function(e){return e.stopPropagation()},children:[(0,$.jsx)("div",{className:v()("".concat(a,"-title"),c,(0,s.A)({},"".concat(a,"-title-ellipsis"),r)),children:t}),o&&(0,$.jsx)("div",{className:"".concat(a,"-subtitle ").concat(c).trim(),children:o}),n&&(0,$.jsx)(h.A,(0,u.A)((0,u.A)({},d),{},{children:(0,$.jsx)("span",{className:"".concat(a,"-icon ").concat(c).trim(),children:p})}))]}))}),w=n(21637),S=n(78551),C=n(12533),O=n(19853),k=function(e){var t=e.componentCls,n=e.antCls;return(0,s.A)({},"".concat(t,"-actions"),(0,s.A)((0,s.A)({marginBlock:0,marginInline:0,paddingBlock:0,paddingInline:0,listStyle:"none",display:"flex",gap:e.marginXS,background:e.colorBgContainer,borderBlockStart:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit),minHeight:42},"& > *",{alignItems:"center",justifyContent:"center",flex:1,display:"flex",cursor:"pointer",color:e.colorTextSecondary,transition:"color 0.3s","&:hover":{color:e.colorPrimaryHover}}),"& > li > div",{flex:1,width:"100%",marginBlock:e.marginSM,marginInline:0,color:e.colorTextSecondary,textAlign:"center",a:{color:e.colorTextSecondary,transition:"color 0.3s","&:hover":{color:e.colorPrimaryHover}},div:(0,s.A)((0,s.A)({position:"relative",display:"block",minWidth:32,fontSize:e.fontSize,lineHeight:e.lineHeight,cursor:"pointer","&:hover":{color:e.colorPrimaryHover,transition:"color 0.3s"}},"a:not(".concat(n,"-btn),\n > .anticon"),{display:"inline-block",width:"100%",color:e.colorTextSecondary,lineHeight:"22px",transition:"color 0.3s","&:hover":{color:e.colorPrimaryHover}}),".anticon",{fontSize:e.cardActionIconSize,lineHeight:"22px"}),"&:not(:last-child)":{borderInlineEnd:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit)}}))};let j=function(e){var t=e.actions,n=e.prefixCls,r=(0,x.X3)("ProCardActions",function(e){return[k((0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(n),cardActionIconSize:16}))]}),o=r.wrapSSR,a=r.hashId;return o(Array.isArray(t)&&null!=t&&t.length?(0,$.jsx)("ul",{className:v()("".concat(n,"-actions"),a),children:t.map(function(e,r){return(0,$.jsx)("li",{style:{width:"".concat(100/t.length,"%"),padding:0,margin:0},className:v()("".concat(n,"-actions-item"),a),children:e},"action-".concat(r))})}):(0,$.jsx)("ul",{className:v()("".concat(n,"-actions"),a),children:t}))};var E=n(47152),P=n(16370),z=n(48670),I=new z.Mo("card-loading",{"0%":{backgroundPosition:"0 50%"},"50%":{backgroundPosition:"100% 50%"},"100%":{backgroundPosition:"0 50%"}});let M=function(e){var t,n=e.style,r=e.prefix;return(0,(t=r||"ant-pro-card",(0,x.X3)("ProCardLoading",function(e){var n;return[(n=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(t)}),(0,s.A)({},n.componentCls,(0,s.A)((0,s.A)({"&-loading":{overflow:"hidden"},"&-loading &-body":{userSelect:"none"}},"".concat(n.componentCls,"-loading-content"),{width:"100%",p:{marginBlock:0,marginInline:0}}),"".concat(n.componentCls,"-loading-block"),{height:"14px",marginBlock:"4px",background:"linear-gradient(90deg, rgba(54, 61, 64, 0.2), rgba(54, 61, 64, 0.4), rgba(54, 61, 64, 0.2))",backgroundSize:"600% 600%",borderRadius:n.borderRadius,animationName:I,animationDuration:"1.4s",animationTimingFunction:"ease",animationIterationCount:"infinite"})))]})).wrapSSR)((0,$.jsxs)("div",{className:"".concat(r,"-loading-content"),style:n,children:[(0,$.jsx)(E.A,{gutter:8,children:(0,$.jsx)(P.A,{span:22,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})})}),(0,$.jsxs)(E.A,{gutter:8,children:[(0,$.jsx)(P.A,{span:8,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})}),(0,$.jsx)(P.A,{span:15,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})})]}),(0,$.jsxs)(E.A,{gutter:8,children:[(0,$.jsx)(P.A,{span:6,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})}),(0,$.jsx)(P.A,{span:18,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})})]}),(0,$.jsxs)(E.A,{gutter:8,children:[(0,$.jsx)(P.A,{span:13,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})}),(0,$.jsx)(P.A,{span:9,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})})]}),(0,$.jsxs)(E.A,{gutter:8,children:[(0,$.jsx)(P.A,{span:4,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})}),(0,$.jsx)(P.A,{span:3,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})}),(0,$.jsx)(P.A,{span:16,children:(0,$.jsx)("div",{className:"".concat(r,"-loading-block")})})]})]}))};var R=n(11031),B=n(82546),T=n(68210),F=["tab","children"],N=["key","tab","tabKey","disabled","destroyInactiveTabPane","children","className","style","cardProps"],H=function(e){return{backgroundColor:e.controlItemBgActive,borderColor:e.controlOutline}},L=function(e){var t=e.componentCls;return(0,s.A)((0,s.A)((0,s.A)({},t,(0,u.A)((0,u.A)({position:"relative",display:"flex",flexDirection:"column",boxSizing:"border-box",width:"100%",marginBlock:0,marginInline:0,paddingBlock:0,paddingInline:0,backgroundColor:e.colorBgContainer,borderRadius:e.borderRadius,transition:"all 0.3s"},null===x.dF||void 0===x.dF?void 0:(0,x.dF)(e)),{},(0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)({"&-box-shadow":{boxShadow:"0 1px 2px -2px #00000029, 0 3px 6px #0000001f, 0 5px 12px 4px #00000017",borderColor:"transparent"},"&-col":{width:"100%"},"&-border":{border:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit)},"&-hoverable":(0,s.A)({cursor:"pointer",transition:"box-shadow 0.3s, border-color 0.3s","&:hover":{borderColor:"transparent",boxShadow:"0 1px 2px -2px #00000029, 0 3px 6px #0000001f, 0 5px 12px 4px #00000017"}},"&".concat(t,"-checked:hover"),{borderColor:e.controlOutline}),"&-checked":(0,u.A)((0,u.A)({},H(e)),{},{"&::after":{visibility:"visible",position:"absolute",insetBlockStart:2,insetInlineEnd:2,opacity:1,width:0,height:0,border:"6px solid ".concat(e.colorPrimary),borderBlockEnd:"6px solid transparent",borderInlineStart:"6px solid transparent",borderStartEndRadius:2,content:'""'}}),"&:focus":(0,u.A)({},H(e)),"&&-ghost":(0,s.A)({backgroundColor:"transparent"},"> ".concat(t),{"&-header":{paddingInlineEnd:0,paddingBlockEnd:e.padding,paddingInlineStart:0},"&-body":{paddingBlock:0,paddingInline:0,backgroundColor:"transparent"}}),"&&-split > &-body":{paddingBlock:0,paddingInline:0},"&&-contain-card > &-body":{display:"flex"}},"".concat(t,"-body-direction-column"),{flexDirection:"column"}),"".concat(t,"-body-wrap"),{flexWrap:"wrap"}),"&&-collapse",(0,s.A)({},"> ".concat(t),{"&-header":{paddingBlockEnd:e.padding,borderBlockEnd:0},"&-body":{display:"none"}})),"".concat(t,"-header"),{display:"flex",alignItems:"center",justifyContent:"space-between",paddingInline:e.paddingLG,paddingBlock:e.padding,paddingBlockEnd:0,"&-border":{"&":{paddingBlockEnd:e.padding},borderBlockEnd:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit)},"&-collapsible":{cursor:"pointer"}}),"".concat(t,"-title"),{color:e.colorText,fontWeight:500,fontSize:e.fontSizeLG,lineHeight:e.lineHeight}),"".concat(t,"-extra"),{color:e.colorText}),"".concat(t,"-type-inner"),(0,s.A)({},"".concat(t,"-header"),{backgroundColor:e.colorFillAlter})),"".concat(t,"-collapsible-icon"),{marginInlineEnd:e.marginXS,color:e.colorIconHover,":hover":{color:e.colorPrimaryHover},"& svg":{transition:"transform ".concat(e.motionDurationMid)}}),"".concat(t,"-body"),{display:"block",boxSizing:"border-box",height:"100%",paddingInline:e.paddingLG,paddingBlock:e.padding,"&-center":{display:"flex",alignItems:"center",justifyContent:"center"}}),"&&-size-small",(0,s.A)((0,s.A)({},t,{"&-header":{paddingInline:e.paddingSM,paddingBlock:e.paddingXS,paddingBlockEnd:0,"&-border":{paddingBlockEnd:e.paddingXS}},"&-title":{fontSize:e.fontSize},"&-body":{paddingInline:e.paddingSM,paddingBlock:e.paddingSM}}),"".concat(t,"-header").concat(t,"-header-collapsible"),{paddingBlock:e.paddingXS})))),"".concat(t,"-col"),(0,s.A)((0,s.A)({},"&".concat(t,"-split-vertical"),{borderInlineEnd:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit)}),"&".concat(t,"-split-horizontal"),{borderBlockEnd:"".concat(e.lineWidth,"px ").concat(e.lineType," ").concat(e.colorSplit)})),"".concat(t,"-tabs"),(0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)({},"".concat(e.antCls,"-tabs-top > ").concat(e.antCls,"-tabs-nav"),(0,s.A)({marginBlockEnd:0},"".concat(e.antCls,"-tabs-nav-list"),{marginBlockStart:e.marginXS,paddingInlineStart:e.padding})),"".concat(e.antCls,"-tabs-bottom > ").concat(e.antCls,"-tabs-nav"),(0,s.A)({marginBlockEnd:0},"".concat(e.antCls,"-tabs-nav-list"),{paddingInlineStart:e.padding})),"".concat(e.antCls,"-tabs-left"),(0,s.A)({},"".concat(e.antCls,"-tabs-content-holder"),(0,s.A)({},"".concat(e.antCls,"-tabs-content"),(0,s.A)({},"".concat(e.antCls,"-tabs-tabpane"),{paddingInlineStart:0})))),"".concat(e.antCls,"-tabs-left > ").concat(e.antCls,"-tabs-nav"),(0,s.A)({marginInlineEnd:0},"".concat(e.antCls,"-tabs-nav-list"),{paddingBlockStart:e.padding})),"".concat(e.antCls,"-tabs-right"),(0,s.A)({},"".concat(e.antCls,"-tabs-content-holder"),(0,s.A)({},"".concat(e.antCls,"-tabs-content"),(0,s.A)({},"".concat(e.antCls,"-tabs-tabpane"),{paddingInlineStart:0})))),"".concat(e.antCls,"-tabs-right > ").concat(e.antCls,"-tabs-nav"),(0,s.A)({},"".concat(e.antCls,"-tabs-nav-list"),{paddingBlockStart:e.padding})))},D=function(e,t){var n=t.componentCls;return 0===e?(0,s.A)({},"".concat(n,"-col-0"),{display:"none"}):(0,s.A)({},"".concat(n,"-col-").concat(e),{flexShrink:0,width:"".concat(e/24*100,"%")})},_=["className","style","bodyStyle","headStyle","title","subTitle","extra","wrap","layout","loading","gutter","tooltip","split","headerBordered","bordered","boxShadow","children","size","actions","ghost","hoverable","direction","collapsed","collapsible","collapsibleIconRender","colStyle","defaultCollapsed","onCollapse","checked","onChecked","tabs","type"];let W=y.forwardRef(function(e,t){var n,r,o,a,i,d,m=e.className,h=e.style,b=e.bodyStyle,k=e.headStyle,E=e.title,P=e.subTitle,z=e.extra,I=e.wrap,R=e.layout,N=e.loading,H=e.gutter,q=e.tooltip,V=e.split,X=e.headerBordered,U=e.bordered,Y=e.boxShadow,G=e.children,K=e.size,Q=e.actions,J=e.ghost,Z=e.hoverable,ee=e.direction,et=e.collapsed,en=e.collapsible,er=void 0!==en&&en,eo=e.collapsibleIconRender,ea=e.colStyle,ei=e.defaultCollapsed,el=e.onCollapse,ec=e.checked,es=e.onChecked,ed=e.tabs,eu=e.type,ep=(0,p.A)(e,_),ef=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls,em=(0,S.A)()||{lg:!0,md:!0,sm:!0,xl:!1,xs:!1,xxl:!1},eg=(0,C.A)(void 0!==ei&&ei,{value:et,onChange:el}),eh=(0,c.A)(eg,2),eb=eh[0],ev=eh[1],ey=["xxl","xl","lg","md","sm","xs"],ex=(n=null==ed?void 0:ed.items,r=G,o=ed,n?n.map(function(e){return(0,u.A)((0,u.A)({},e),{},{children:(0,$.jsx)(W,(0,u.A)((0,u.A)({},null==o?void 0:o.cardProps),{},{children:e.children}))})}):((0,T.g9)(!o,"Tabs.TabPane is deprecated. Please use `items` directly."),(0,B.A)(r).map(function(e){if(y.isValidElement(e)){var t=e.key,n=e.props||{},r=n.tab,a=n.children,i=(0,p.A)(n,F);return(0,u.A)((0,u.A)({key:String(t)},i),{},{children:(0,$.jsx)(W,(0,u.A)((0,u.A)({},null==o?void 0:o.cardProps),{},{children:a})),label:r})}return null}).filter(function(e){return e}))),e$=function(e,t){return e?t:{}},eA=function(e){var t=e;if("object"===(0,l.A)(e))for(var n=0;n=0&&o<=24)),l=eC((0,$.jsx)("div",{style:(0,u.A)((0,u.A)((0,u.A)((0,u.A)({},a),e$(eE>0,{paddingInlineEnd:eE/2,paddingInlineStart:eE/2})),e$(eP>0,{paddingBlockStart:eP/2,paddingBlockEnd:eP/2})),ea),className:i,children:y.cloneElement(e)}));return y.cloneElement(l,{key:"pro-card-col-".concat((null==e?void 0:e.key)||t)})}return e}),eR=v()("".concat(ew),m,eO,(d={},(0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)(d,"".concat(ew,"-border"),void 0!==U&&U),"".concat(ew,"-box-shadow"),void 0!==Y&&Y),"".concat(ew,"-contain-card"),ez),"".concat(ew,"-loading"),N),"".concat(ew,"-split"),"vertical"===V||"horizontal"===V),"".concat(ew,"-ghost"),void 0!==J&&J),"".concat(ew,"-hoverable"),void 0!==Z&&Z),"".concat(ew,"-size-").concat(K),K),"".concat(ew,"-type-").concat(eu),eu),"".concat(ew,"-collapse"),eb),(0,s.A)(d,"".concat(ew,"-checked"),ec))),eB=v()("".concat(ew,"-body"),eO,(0,s.A)((0,s.A)((0,s.A)({},"".concat(ew,"-body-center"),"center"===R),"".concat(ew,"-body-direction-column"),"horizontal"===V||"column"===ee),"".concat(ew,"-body-wrap"),void 0!==I&&I&&ez)),eT=y.isValidElement(N)?N:(0,$.jsx)(M,{prefix:ew,style:(null==b?void 0:b.padding)===0||(null==b?void 0:b.padding)==="0px"?{padding:24}:void 0}),eF=er&&void 0===et&&(eo?eo({collapsed:eb}):(0,$.jsx)(f.A,{onClick:function(){"icon"===er&&ev(!eb)},rotate:eb?void 0:90,className:"".concat(ew,"-collapsible-icon ").concat(eO).trim()}));return eC((0,$.jsxs)("div",(0,u.A)((0,u.A)({className:eR,style:h,ref:t,onClick:function(e){var t;null==es||es(e),null==ep||null==(t=ep.onClick)||t.call(ep,e)}},(0,O.A)(ep,["prefixCls","colSpan"])),{},{children:[(E||z||eF)&&(0,$.jsxs)("div",{className:v()("".concat(ew,"-header"),eO,(0,s.A)((0,s.A)({},"".concat(ew,"-header-border"),void 0!==X&&X||"inner"===eu),"".concat(ew,"-header-collapsible"),eF)),style:k,onClick:function(){("header"===er||!0===er)&&ev(!eb)},children:[(0,$.jsxs)("div",{className:"".concat(ew,"-title ").concat(eO).trim(),children:[eF,(0,$.jsx)(A,{label:E,tooltip:q,subTitle:P})]}),z&&(0,$.jsx)("div",{className:"".concat(ew,"-extra ").concat(eO).trim(),onClick:function(e){return e.stopPropagation()},children:z})]}),ed?(0,$.jsx)("div",{className:"".concat(ew,"-tabs ").concat(eO).trim(),children:(0,$.jsx)(w.A,(0,u.A)((0,u.A)({onChange:ed.onChange},(0,O.A)(ed,["cardProps"])),{},{items:ex,children:N?eT:G}))}):(0,$.jsx)("div",{className:eB,style:b,children:N?eT:eM}),Q?(0,$.jsx)(j,{actions:Q,prefixCls:ew}):null]})))});var q=function(e){var t=e.componentCls;return(0,s.A)({},t,{"&-divider":{flex:"none",width:e.lineWidth,marginInline:e.marginXS,marginBlock:e.marginLG,backgroundColor:e.colorSplit,"&-horizontal":{width:"initial",height:e.lineWidth,marginInline:e.marginLG,marginBlock:e.marginXS}},"&&-size-small &-divider":{marginBlock:e.marginLG,marginInline:e.marginXS,"&-horizontal":{marginBlock:e.marginXS,marginInline:e.marginLG}}})};W.isProCard=!0,W.Divider=function(e){var t=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-card"),n="".concat(t,"-divider"),r=(0,x.X3)("ProCardDivider",function(e){return[q((0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(t)}))]}),o=r.wrapSSR,a=r.hashId,i=e.className,l=e.style,c=e.type,d=v()(n,i,a,(0,s.A)({},"".concat(n,"-").concat(c),c));return o((0,$.jsx)("div",{className:d,style:void 0===l?{}:l}))},W.TabPane=function(e){var t=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls;if(R.A.startsWith("5"))return(0,$.jsx)($.Fragment,{});var n=e.key,r=e.tab,o=e.tabKey,a=e.disabled,i=e.destroyInactiveTabPane,l=e.children,c=e.className,s=e.style,d=e.cardProps,f=(0,p.A)(e,N),m=t("pro-card-tabpane"),h=v()(m,c);return(0,$.jsx)(w.A.TabPane,(0,u.A)((0,u.A)({tabKey:o,tab:r,className:h,style:s,disabled:a,destroyInactiveTabPane:i},f),{},{children:(0,$.jsx)(W,(0,u.A)((0,u.A)({},d),{},{children:l}))}),n)},W.Group=function(e){return(0,$.jsx)(W,(0,u.A)({bodyStyle:{padding:0}},e))};var V=["children","Wrapper"],X=["children","Wrapper"],U=(0,y.createContext)({grid:!1,colProps:void 0,rowProps:void 0}),Y=function(e){var t=e.grid,n=e.rowProps,r=e.colProps;return{grid:!!t,RowWrapper:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=e.children,o=e.Wrapper,a=(0,p.A)(e,V);return t?(0,$.jsx)(E.A,(0,u.A)((0,u.A)((0,u.A)({gutter:8},n),a),{},{children:r})):o?(0,$.jsx)(o,{children:r}):r},ColWrapper:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.children,o=e.Wrapper,a=(0,p.A)(e,X),i=(0,y.useMemo)(function(){var e=(0,u.A)((0,u.A)({},r),a);return void 0===e.span&&void 0===e.xs&&(e.xs=24),e},[a]);return t?(0,$.jsx)(P.A,(0,u.A)((0,u.A)({},i),{},{children:n})):o?(0,$.jsx)(o,{children:n}):n}}},G=function(e){var t=(0,y.useMemo)(function(){return"object"===(0,l.A)(e)?e:{grid:e}},[e]),n=(0,y.useContext)(U),r=n.grid,o=n.colProps;return(0,y.useMemo)(function(){return Y({grid:!!(r||t.grid),rowProps:null==t?void 0:t.rowProps,colProps:(null==t?void 0:t.colProps)||o,Wrapper:null==t?void 0:t.Wrapper})},[null==t?void 0:t.Wrapper,t.grid,r,JSON.stringify([o,null==t?void 0:t.colProps,null==t?void 0:t.rowProps])])},K=n(26380),Q=n(13205);function J(e){if("function"==typeof e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r0&&void 0!==arguments[0]?arguments[0]:21;if("u"2)||void 0===arguments[2]||arguments[2],r=Object.keys(t).reduce(function(e,n){var r=t[n];return ep(r)||(e[n]=r),e},{});if(Object.keys(r).length<1||"u"typeof window){if("object"===(0,l.A)(s)&&(null===s||!(y.isValidElement(s)||s.constructor===RegExp||s instanceof Map||s instanceof Set||s instanceof HTMLElement||s instanceof Blob||s instanceof File||Array.isArray(s))&&1)){var f=e(s,c);if(Object.keys(f).length<1)return;i=(0,eu.A)(i,[n],f);return}p()}}),n?i:t)};return o=Array.isArray(e)&&Array.isArray(o)?(0,d.A)(a(e)):ef({},a(e),o)},eg=n(74353),eh=n.n(eg),eb=n(41816),ev=n.n(eb);eh().extend(ev());var ey={time:"HH:mm:ss",timeRange:"HH:mm:ss",date:"YYYY-MM-DD",dateWeek:"YYYY-wo",dateMonth:"YYYY-MM",dateQuarter:"YYYY-[Q]Q",dateYear:"YYYY",dateRange:"YYYY-MM-DD",dateTime:"YYYY-MM-DD HH:mm:ss",dateTimeRange:"YYYY-MM-DD HH:mm:ss"};function ex(e){return"[object Object]"===Object.prototype.toString.call(e)}var e$=function(e){return!!(null!=e&&e._isAMomentObject)},eA=function(e,t,n){if(!t)return e;if(eh().isDayjs(e)||e$(e)){if("number"===t)return e.valueOf();if("string"===t)return e.format(ey[n]||"YYYY-MM-DD HH:mm:ss");if("string"==typeof t&&"string"!==t)return e.format(t);if("function"==typeof t)return t(e,n)}return e},ew=function e(t,n,r,o,a){var i={};return"u"=F)return null;var t=f.Icon,n=f.tooltipText;return(0,$.jsx)(h.A,{title:n,children:(0,$.jsx)(void 0===t?eT:t,{className:v()("".concat(A,"-action-icon action-down"),H),onClick:(0,i.A)((0,a.A)().mark(function t(){return(0,a.A)().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,w.move(E,e);case 2:case"end":return t.stop()}},t)}))})},"down")},[d,A,H,w,l]),el=(0,y.useMemo)(function(){return[er,eo,ea,ei].filter(function(e){return null!=e})},[er,eo,ea,ei]),ec=(null==C?void 0:C(j,w,el,F))||el,es=ec.length>0&&"read"!==W?(0,$.jsx)("div",{className:v()("".concat(A,"-action"),(0,s.A)({},"".concat(A,"-action-small"),"small"===L),H),children:ec}):null,ed={name:N.name,field:j,index:E,record:null==P||null==(n=P.getFieldValue)?void 0:n.call(P,[D.listName,z,j.name].filter(function(e){return void 0!==e}).flat(1)),fields:O,operation:w,meta:k},ep=G().grid,ef=(null==m?void 0:m(en,ed))||en,em=(null==b?void 0:b({listDom:(0,$.jsx)("div",{className:v()("".concat(A,"-container"),I,H),style:(0,u.A)({width:ep?"100%":void 0},M),children:ef}),action:es},ed))||(0,$.jsxs)("div",{className:v()("".concat(A,"-item"),H,(0,s.A)((0,s.A)({},"".concat(A,"-item-default"),void 0===x),"".concat(A,"-item-show-label"),x)),style:{display:"flex",alignItems:"flex-end"},children:[(0,$.jsx)("div",{className:v()("".concat(A,"-container"),I,H),style:(0,u.A)({width:ep?"100%":void 0},M),children:ef}),es]});return(0,$.jsx)(eq.Provider,{value:(0,u.A)((0,u.A)({},j),{},{listName:[D.listName,z,j.name].filter(function(e){return void 0!==e}).flat(1)}),children:em})},e_=function(e){var t=(0,Q.tz)(),n=e.creatorButtonProps,r=e.prefixCls,o=e.children,l=e.creatorRecord,s=e.action,d=e.fields,p=e.actionGuard,f=e.max,m=e.fieldExtraRender,g=e.meta,h=e.containerClassName,b=e.containerStyle,v=e.onAfterAdd,x=e.onAfterRemove,A=(0,y.useContext)(Q.Lx).hashId,w=(0,y.useRef)(new Map),S=(0,y.useState)(!1),C=(0,c.A)(S,2),k=C[0],j=C[1],E=(0,y.useMemo)(function(){return d.map(function(e){null!=(t=w.current)&&t.has(e.key.toString())||null==(r=w.current)||r.set(e.key.toString(),ei());var t,n,r,o=null==(n=w.current)?void 0:n.get(e.key.toString());return(0,u.A)((0,u.A)({},e),{},{uuid:o})})},[d]),P=(0,y.useMemo)(function(){var e=(0,u.A)({},s),t=E.length;return null!=p&&p.beforeAddRow?e.add=(0,i.A)((0,a.A)().mark(function e(){var n,r,o,i,l=arguments;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:for(r=Array(n=l.length),o=0;o0&&void 0!==arguments[0]?arguments[0]:[],n=eG(t);if(!n)throw Error("nameList is require");var r=null==(e=F())?void 0:e.getFieldValue(n),o=n?(0,eu.A)({},n,r):r,a=(0,d.A)(n);return a.shift(),(0,ed.A)(l(o,C,a),n)},getFieldFormatValueObject:function(e){var t,n=eG(e),r=null==(t=F())?void 0:t.getFieldValue(n);return l(n?(0,eu.A)({},n,r):r,C,n)},validateFieldsReturnFormatValue:(e=(0,i.A)((0,a.A)().mark(function e(t){var n,r;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(!(!Array.isArray(t)&&t)){e.next=2;break}throw Error("nameList must be array");case 2:return e.next=4,null==(n=F())?void 0:n.validateFields(t);case 4:return r=l(e.sent,C),e.abrupt("return",r||{});case 7:case"end":return e.stop()}},e)})),function(t){return e.apply(this,arguments)})}},[C,l]),H=(0,y.useMemo)(function(){return y.Children.toArray(n).map(function(e,t){return 0===t&&y.isValidElement(e)&&k?y.cloneElement(e,(0,u.A)((0,u.A)({},e.props),{},{autoFocus:k})):e})},[k,n]),L=(0,y.useMemo)(function(){return"boolean"!=typeof o&&o?o:{}},[o]),D=(0,y.useMemo)(function(){if(!1!==o)return(0,$.jsx)(ej,(0,u.A)((0,u.A)({},L),{},{onReset:function(){var e,t,n,r=l(null==(e=R.current)?void 0:e.getFieldsValue(),C);null==L||null==(t=L.onReset)||t.call(L,r),null==w||w(r),x&&A(eY(x,Object.keys(l(null==(n=R.current)?void 0:n.getFieldsValue(),!1)).reduce(function(e,t){return(0,u.A)((0,u.A)({},e),{},(0,s.A)({},t,r[t]||void 0))},v)||{},"set"))},submitButtonProps:(0,u.A)({loading:h},L.submitButtonProps)}),"submitter")},[o,L,h,l,C,w,x,v,A]),_=(0,y.useMemo)(function(){var e=j?(0,$.jsx)(B,{children:H}):H;return r?r(e,D,R.current):e},[j,B,H,r,D]),W=ee(e.initialValues);return(0,y.useEffect)(function(){if(!x&&e.initialValues&&W&&!z.request){var t=en(e.initialValues,W);(0,T.g9)(t,"initialValues 只在 form 初始化时生效,如果你需要异步加载推荐使用 request,或者 initialValues ? : null "),(0,T.g9)(t,"The initialValues only take effect when the form is initialized, if you need to load asynchronously recommended request, or the initialValues ? : null ")}},[e.initialValues]),(0,y.useImperativeHandle)(c,function(){return(0,u.A)((0,u.A)({},R.current),N)},[N,R.current]),(0,y.useEffect)(function(){var e,t,n=l(null==(e=R.current)||null==(t=e.getFieldsValue)?void 0:t.call(e,!0),C);null==f||f(n,(0,u.A)((0,u.A)({},R.current),N))},[]),(0,$.jsx)(er.Provider,{value:(0,u.A)((0,u.A)({},N),{},{formRef:R}),children:(0,$.jsx)(g.Ay,{componentSize:z.size||M,children:(0,$.jsxs)(U.Provider,{value:{grid:j,colProps:P},children:[!1!==z.component&&(0,$.jsx)("input",{type:"text",style:{display:"none"}}),_]})})})}var eQ=0;function eJ(e){var t,n,r,o,l,d,f,m,h,b,A=e.extraUrlParams,w=void 0===A?{}:A,S=e.syncToUrl,k=e.isKeyPressSubmit,j=e.syncToUrlAsImportant,E=e.syncToInitialValues,P=void 0===E||E,z=(e.children,e.contentRender,e.submitter,e.fieldProps),I=e.proFieldProps,M=e.formItemProps,R=e.groupProps,B=e.dateFormatter,T=void 0===B?"string":B,F=e.formRef,N=(e.onInit,e.form),H=e.formComponentType,L=(e.onReset,e.grid,e.rowProps,e.colProps,e.omitNil),D=void 0===L||L,_=e.request,W=e.params,q=e.initialValues,V=e.formKey,X=void 0===V?eQ:V,U=(e.readonly,e.onLoadingChange),Y=e.loading,G=(0,p.A)(e,eU),J=(0,y.useRef)({}),ee=(0,C.A)(!1,{onChange:U,value:Y}),et=(0,c.A)(ee,2),en=et[0],er=et[1],eo=(0,eS.$)({},{disabled:!S}),ea=(0,c.A)(eo,2),es=ea[0],ed=ea[1],ep=(0,y.useRef)(ei());(0,y.useEffect)(function(){eQ+=0},[]);var ef=(t={request:_,params:W,proFieldKey:X},n=(0,y.useRef)(null),r=(0,y.useState)(function(){return t.proFieldKey?t.proFieldKey.toString():(ec+=1).toString()}),o=(0,c.A)(r,1)[0],l=(0,y.useRef)(o),d=(0,i.A)((0,a.A)().mark(function e(){var r,o,i;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return null==(r=n.current)||r.abort(),n.current=new AbortController,e.next=5,Promise.race([null==(o=t.request)?void 0:o.call(t,t.params,t),new Promise(function(e,t){var r;null==(r=n.current)||null==(r=r.signal)||r.addEventListener("abort",function(){t(Error("aborted"))})})]);case 5:return i=e.sent,e.abrupt("return",i);case 7:case"end":return e.stop()}},e)})),f=function(){return d.apply(this,arguments)},(0,y.useEffect)(function(){return function(){ec+=1}},[]),h=(m=(0,el.Ay)([l.current,t.params],f,{revalidateOnFocus:!1,shouldRetryOnError:!1,revalidateOnReconnect:!1})).data,b=m.error,[h||b]),eg=(0,c.A)(ef,1)[0],eh=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-form"),eb=(0,x.X3)("ProForm",function(e){return(0,s.A)({},".".concat(eh),(0,s.A)({},"> div:not(".concat(e.proComponentsCls,"-form-light-filter)"),{".pro-field":{maxWidth:"100%","@media screen and (max-width: 575px)":{maxWidth:"calc(93vw - 48px)"},"&-xs":{width:104},"&-s":{width:216},"&-sm":{width:216},"&-m":{width:328},"&-md":{width:328},"&-l":{width:440},"&-lg":{width:440},"&-xl":{width:552}}}))}),ev=eb.wrapSSR,ey=eb.hashId,ex=(0,y.useState)(function(){return S?eY(S,es,"get"):{}}),e$=(0,c.A)(ex,2),eA=e$[0],ek=e$[1],ej=(0,y.useRef)({}),eE=(0,y.useRef)({}),eP=Z(function(e,t,n){return em(ew(e,T,eE.current,t,n),ej.current,t)});(0,y.useEffect)(function(){P||ek({})},[P]);var ez=Z(function(){return(0,u.A)((0,u.A)({},es),w)});(0,y.useEffect)(function(){S&&ed(eY(S,ez(),"set"))},[w,ez,S]);var eI=(0,y.useMemo)(function(){if("u">typeof window&&H&&["DrawerForm"].includes(H))return function(e){return e.parentNode||document.body}},[H]),eM=Z((0,i.A)((0,a.A)().mark(function e(){var t,n,r,o,i,l,c;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(G.onFinish){e.next=2;break}return e.abrupt("return");case 2:if(!en){e.next=4;break}return e.abrupt("return");case 4:return e.prev=4,r=null==J||null==(t=J.current)||null==(n=t.getFieldsFormatValue)?void 0:n.call(t),(o=G.onFinish(r))instanceof Promise&&er(!0),e.next=10,o;case 10:S&&(c=Object.keys(null==J||null==(i=J.current)||null==(l=i.getFieldsFormatValue)?void 0:l.call(i,void 0,!1)).reduce(function(e,t){var n;return(0,u.A)((0,u.A)({},e),{},(0,s.A)({},t,null!=(n=r[t])?n:void 0))},w),Object.keys(es).forEach(function(e){!1===c[e]||0===c[e]||c[e]||(c[e]=void 0)}),ed(eY(S,c,"set"))),er(!1),e.next=18;break;case 14:e.prev=14,e.t0=e.catch(4),console.log(e.t0),er(!1);case 18:case"end":return e.stop()}},e,null,[[4,14]])})));return((0,y.useImperativeHandle)(F,function(){return J.current},[!eg]),!eg&&e.request)?(0,$.jsx)("div",{style:{paddingTop:50,paddingBottom:50,textAlign:"center"},children:(0,$.jsx)(eC.A,{})}):ev((0,$.jsx)(eN.Provider,{value:{mode:e.readonly?"read":"edit"},children:(0,$.jsx)(Q.TY,{needDeps:!0,children:(0,$.jsx)(eO.Provider,{value:{formRef:J,fieldProps:z,proFieldProps:I,formItemProps:M,groupProps:R,formComponentType:H,getPopupContainer:eI,formKey:ep.current,setFieldValueType:function(e,t){var n=t.valueType,r=t.dateFormat,o=t.transform;Array.isArray(e)&&(ej.current=(0,eu.A)(ej.current,e,o),eE.current=(0,eu.A)(eE.current,e,{valueType:void 0===n?"text":n,dateFormat:r}))}},children:(0,$.jsx)(eq.Provider,{value:{},children:(0,$.jsx)(K.A,(0,u.A)((0,u.A)({onKeyPress:function(e){if(k&&"Enter"===e.key){var t;null==(t=J.current)||t.submit()}},autoComplete:"off",form:N},(0,O.A)(G,["ref","labelWidth","autoFocusFirstInput"])),{},{ref:function(e){J.current&&(J.current.nativeElement=null==e?void 0:e.nativeElement)},initialValues:void 0!==j&&j?(0,u.A)((0,u.A)((0,u.A)({},q),eg),eA):(0,u.A)((0,u.A)((0,u.A)({},eA),q),eg),onValuesChange:function(e,t){var n;null==G||null==(n=G.onValuesChange)||n.call(G,eP(e,!!D),eP(t,!!D))},className:v()(e.className,eh,ey),onFinish:eM,children:(0,$.jsx)(eK,(0,u.A)((0,u.A)({transformKey:eP,autoComplete:"off",loading:en,onUrlSearchChange:ed},e),{},{formRef:J,initialValues:(0,u.A)((0,u.A)({},q),eg)}))}))})})})}))}var eZ=n(73133),e0=y.forwardRef(function(e,t){var n=y.useContext(eO).groupProps,r=(0,u.A)((0,u.A)({},n),e),o=r.children,a=r.collapsible,i=r.defaultCollapsed,l=r.style,d=r.labelLayout,p=r.title,m=void 0===p?e.label:p,h=r.tooltip,b=r.align,w=void 0===b?"start":b,S=r.direction,O=r.size,k=void 0===O?32:O,j=r.titleStyle,E=r.titleRender,P=r.spaceProps,z=r.extra,I=r.autoFocus,M=(0,C.A)(function(){return i||!1},{value:e.collapsed,onChange:e.onCollapse}),R=(0,c.A)(M,2),B=R[0],T=R[1],F=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls,N=G(e),H=N.ColWrapper,L=N.RowWrapper,D=F("pro-form-group"),_=(0,x.X3)("ProFormGroup",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(D)}),(0,s.A)({},t.componentCls,{"&-title":{marginBlockEnd:t.marginXL,fontWeight:"bold"},"&-container":(0,s.A)({flexWrap:"wrap",maxWidth:"100%"},"> div".concat(t.antCls,"-space-item"),{maxWidth:"100%"}),"&-twoLine":(0,s.A)((0,s.A)((0,s.A)((0,s.A)({display:"block",width:"100%"},"".concat(t.componentCls,"-title"),{width:"100%",margin:"8px 0"}),"".concat(t.componentCls,"-container"),{paddingInlineStart:16}),"".concat(t.antCls,"-space-item,").concat(t.antCls,"-form-item"),{width:"100%"}),"".concat(t.antCls,"-form-item"),{"&-control":{display:"flex",alignItems:"center",justifyContent:"flex-end","&-input":{alignItems:"center",justifyContent:"flex-end","&-content":{flex:"none"}}}})}))]}),W=_.wrapSSR,q=_.hashId,V=a&&(0,$.jsx)(f.A,{style:{marginInlineEnd:8},rotate:B?void 0:90}),X=(0,$.jsx)(A,{label:V?(0,$.jsxs)("div",{children:[V,m]}):m,tooltip:h}),U=(0,y.useCallback)(function(e){var t=e.children;return(0,$.jsx)(eZ.A,(0,u.A)((0,u.A)({},P),{},{className:v()("".concat(D,"-container ").concat(q),null==P?void 0:P.className),size:k,align:w,direction:S,style:(0,u.A)({rowGap:0},null==P?void 0:P.style),children:t}))},[w,D,S,q,k,P]),Y=E?E(X,e):X,K=(0,y.useMemo)(function(){var e=[],t=y.Children.toArray(o).map(function(t,n){var r;return y.isValidElement(t)&&null!=t&&null!=(r=t.props)&&r.hidden?(e.push(t),null):0===n&&y.isValidElement(t)&&I?y.cloneElement(t,(0,u.A)((0,u.A)({},t.props),{},{autoFocus:I})):t});return[(0,$.jsx)(L,{Wrapper:U,children:t},"children"),e.length>0?(0,$.jsx)("div",{style:{display:"none"},children:e}):null]},[o,L,U,I]),Q=(0,c.A)(K,2),J=Q[0],Z=Q[1];return W((0,$.jsx)(H,{children:(0,$.jsxs)("div",{className:v()(D,q,(0,s.A)({},"".concat(D,"-twoLine"),"twoLine"===d)),style:l,ref:t,children:[Z,(m||h||z)&&(0,$.jsx)("div",{className:"".concat(D,"-title ").concat(q).trim(),style:j,onClick:function(){T(!B)},children:z?(0,$.jsxs)("div",{style:{display:"flex",width:"100%",alignItems:"center",justifyContent:"space-between"},children:[Y,(0,$.jsx)("span",{onClick:function(e){return e.stopPropagation()},children:z})]}):Y}),(0,$.jsx)("div",{style:{display:a&&B?"none":void 0},children:J})]})}))});function e1(e,t){var n=Z(e),r=(0,y.useRef)(),o=(0,y.useCallback)(function(){r.current&&(clearTimeout(r.current),r.current=null)},[]),l=(0,y.useCallback)((0,i.A)((0,a.A)().mark(function e(){var l,c,s,d=arguments;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:for(c=Array(l=d.length),s=0;s=]*?(\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+))?(?:-([\da-z\-]+(?:\.[\da-z\-]+)*))?(?:\+[\da-z\-]+(?:\.[\da-z\-]+)*)?)?)?$/i,tr=function(e){return"*"===e||"x"===e||"X"===e},to=function(e){var t=parseInt(e,10);return isNaN(t)?e:t},ta=function(e,t){if(tr(e)||tr(t))return 0;var n,r,o=(n=to(e),r=to(t),(0,l.A)(n)!==(0,l.A)(r)?[String(n),String(r)]:[n,r]),a=(0,c.A)(o,2),i=a[0],s=a[1];return i>s?1:i-1?{open:e,onOpenChange:t}:{visible:e,onVisibleChange:t})},tu=function(e){var t=e.children,n=e.label,r=e.footer,o=e.open,a=e.onOpenChange,i=e.disabled,l=e.onVisibleChange,c=e.visible,d=e.footerRender,p=e.placement,f=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-core-field-dropdown"),m=(0,x.X3)("FilterDropdown",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(f)}),(0,s.A)((0,s.A)((0,s.A)({},"".concat(t.componentCls,"-label"),{cursor:"pointer"}),"".concat(t.componentCls,"-overlay"),{minWidth:"200px",marginBlockStart:"4px"}),"".concat(t.componentCls,"-content"),{paddingBlock:16,paddingInline:16}))]}),h=m.wrapSSR,b=m.hashId,A=td(o||c||!1,a||l),w=(0,y.useRef)(null);return h((0,$.jsx)(te.A,(0,u.A)((0,u.A)({placement:p,trigger:["click"]},A),{},{styles:{body:{padding:0}},content:(0,$.jsxs)("div",{ref:w,className:v()("".concat(f,"-overlay"),(0,s.A)((0,s.A)({},"".concat(f,"-overlay-").concat(p),p),"hashId",b)),children:[(0,$.jsx)(g.Ay,{getPopupContainer:function(){return w.current||document.body},children:(0,$.jsx)("div",{className:"".concat(f,"-content ").concat(b).trim(),children:t})}),r&&(0,$.jsx)(tt,(0,u.A)({disabled:i,footerRender:d},r))]}),children:(0,$.jsx)("span",{className:"".concat(f,"-label ").concat(b).trim(),children:n})})))},tp=n(39159),tf=n(98459),tm=y.forwardRef(function(e,t){var n,r,o,a=e.label,i=e.onClear,l=e.value,c=e.disabled,d=e.onLabelClick,p=e.ellipsis,f=e.placeholder,m=e.className,h=e.formatter,b=e.bordered,A=e.style,w=e.downIcon,S=e.allowClear,C=void 0===S||S,O=e.valueMaxLength,k=void 0===O?41:O,j=((null===g.Ay||void 0===g.Ay||null==(n=g.Ay.useConfig)?void 0:n.call(g.Ay))||{componentSize:"middle"}).componentSize,E=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-core-field-label"),P=(0,x.X3)("FieldLabel",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(E)}),(0,s.A)({},t.componentCls,(0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)((0,s.A)({display:"inline-flex",gap:t.marginXXS,alignItems:"center",height:"30px",paddingBlock:0,paddingInline:8,fontSize:t.fontSize,lineHeight:"30px",borderRadius:"2px",cursor:"pointer","&:hover":{backgroundColor:t.colorBgTextHover},"&-active":(0,s.A)({paddingBlock:0,paddingInline:8,backgroundColor:t.colorBgTextHover},"&".concat(t.componentCls,"-allow-clear:hover:not(").concat(t.componentCls,"-disabled)"),(0,s.A)((0,s.A)({},"".concat(t.componentCls,"-arrow"),{display:"none"}),"".concat(t.componentCls,"-close"),{display:"inline-flex"}))},"".concat(t.antCls,"-select"),(0,s.A)({},"".concat(t.antCls,"-select-clear"),{borderRadius:"50%"})),"".concat(t.antCls,"-picker"),(0,s.A)({},"".concat(t.antCls,"-picker-clear"),{borderRadius:"50%"})),"&-icon",(0,s.A)((0,s.A)({color:t.colorIcon,transition:"color 0.3s",fontSize:12,verticalAlign:"middle"},"&".concat(t.componentCls,"-close"),{display:"none",fontSize:12,alignItems:"center",justifyContent:"center",color:t.colorTextPlaceholder,borderRadius:"50%"}),"&:hover",{color:t.colorIconHover})),"&-disabled",(0,s.A)({color:t.colorTextPlaceholder,cursor:"not-allowed"},"".concat(t.componentCls,"-icon"),{color:t.colorTextPlaceholder})),"&-small",(0,s.A)((0,s.A)((0,s.A)({height:"24px",paddingBlock:0,paddingInline:4,fontSize:t.fontSizeSM,lineHeight:"24px"},"&".concat(t.componentCls,"-active"),{paddingBlock:0,paddingInline:8}),"".concat(t.componentCls,"-icon"),{paddingBlock:0,paddingInline:0}),"".concat(t.componentCls,"-close"),{marginBlockStart:"-2px",paddingBlock:4,paddingInline:4,fontSize:"6px"})),"&-bordered",{height:"32px",paddingBlock:0,paddingInline:8,border:"".concat(t.lineWidth,"px solid ").concat(t.colorBorder),borderRadius:"@border-radius-base"}),"&-bordered&-small",{height:"24px",paddingBlock:0,paddingInline:8}),"&-bordered&-active",{backgroundColor:t.colorBgContainer})))]}),z=P.wrapSSR,I=P.hashId,M=(0,Q.tz)(),R=(0,y.useRef)(null),B=(0,y.useRef)(null);(0,y.useImperativeHandle)(t,function(){return{labelRef:B,clearRef:R}});var T=function(e){return h?h(e):Array.isArray(e)?e.every(function(e){return"string"==typeof e})?e.join(","):e.map(function(t,n){var r=n===e.length-1?"":",";return"string"==typeof t?(0,$.jsxs)("span",{children:[t,r]},n):(0,$.jsxs)("span",{style:{display:"flex"},children:[t,r]},n)}):e};return z((0,$.jsxs)("span",{className:v()(E,I,"".concat(E,"-").concat(null!=(r=null!=(o=e.size)?o:j)?r:"middle"),(0,s.A)((0,s.A)((0,s.A)((0,s.A)({},"".concat(E,"-active"),(Array.isArray(l)?l.length>0:!!l)||0===l),"".concat(E,"-disabled"),c),"".concat(E,"-bordered"),b),"".concat(E,"-allow-clear"),C),m),style:A,ref:B,onClick:function(){var t;null==e||null==(t=e.onClick)||t.call(e)},children:[function(e,t){if(null!=t&&""!==t&&(!Array.isArray(t)||t.length)){var n,r,o,a,i=e?(0,$.jsxs)("span",{onClick:function(){null==d||d()},className:"".concat(E,"-text"),children:[e,": "]}):"",l=T(t);if(!p)return(0,$.jsxs)("span",{style:{display:"inline-flex",alignItems:"center"},children:[i,T(t)]});var c=(n=Array.isArray(t)&&t.length>1,r=M.getMessage("form.lightFilter.itemUnit","项"),"string"==typeof l&&l.length>k&&n?"...".concat(t.length).concat(r):"");return(0,$.jsxs)("span",{title:"string"==typeof l?l:void 0,style:{display:"inline-flex",alignItems:"center"},children:[i,(0,$.jsx)("span",{style:{paddingInlineStart:4,display:"flex"},children:"string"==typeof l?null==l||null==(o=l.toString())||null==(a=o.slice)?void 0:a.call(o,0,k):l}),c]})}return e||f}(a,l),(l||0===l)&&C&&(0,$.jsx)(tp.A,{role:"button",title:M.getMessage("form.lightFilter.clear","清除"),className:v()("".concat(E,"-icon"),I,"".concat(E,"-close")),onClick:function(e){c||null==i||i(),e.stopPropagation()},ref:R}),!1!==w?null!=w?w:(0,$.jsx)(tf.A,{className:v()("".concat(E,"-icon"),I,"".concat(E,"-arrow"))}):null]}))}),tg=["label","size","disabled","onChange","className","style","children","valuePropName","placeholder","labelFormatter","bordered","footerRender","allowClear","otherFieldProps","valueType","placement"],th=function(e){var t=e.label,n=e.size,r=e.disabled,o=e.onChange,a=e.className,i=e.style,d=e.children,f=e.valuePropName,m=e.placeholder,h=e.labelFormatter,b=e.bordered,A=e.footerRender,w=e.allowClear,S=e.otherFieldProps,O=e.valueType,k=e.placement,j=(0,p.A)(e,tg),E=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-field-light-wrapper"),P=(0,x.X3)("LightWrapper",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(E)}),(0,s.A)((0,s.A)({},"".concat(t.componentCls,"-collapse-label"),{paddingInline:1,paddingBlock:1}),"".concat(t.componentCls,"-container"),(0,s.A)({},"".concat(t.antCls,"-form-item"),{marginBlockEnd:0})))]}),z=P.wrapSSR,I=P.hashId,M=(0,y.useState)(e[f]),R=(0,c.A)(M,2),B=R[0],T=R[1],F=(0,C.A)(!1),N=(0,c.A)(F,2),H=N[0],L=N[1],D=function(){for(var e,t=arguments.length,n=Array(t),r=0;r(e=>{let{componentCls:t,iconCls:n,antCls:r,zIndexPopup:o,colorText:a,colorWarning:i,marginXXS:l,marginXS:c,fontSize:s,fontWeightStrong:d,colorTextHeading:u}=e;return{[t]:{zIndex:o,[`&${r}-popover`]:{fontSize:s},[`${t}-message`]:{marginBottom:c,display:"flex",flexWrap:"nowrap",alignItems:"start",[`> ${t}-message-icon ${n}`]:{color:i,fontSize:s,lineHeight:1,marginInlineEnd:c},[`${t}-title`]:{fontWeight:d,color:u,"&:only-child":{fontWeight:"normal"}},[`${t}-description`]:{marginTop:l,color:a}},[`${t}-buttons`]:{textAlign:"end",whiteSpace:"nowrap",button:{marginInlineStart:c}}}}})(e),e=>{let{zIndexPopupBase:t}=e;return{zIndexPopup:t+60}},{resetStyle:!1});var tF=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let tN=e=>{let{prefixCls:t,okButtonProps:n,cancelButtonProps:r,title:o,description:a,cancelText:i,okText:l,okType:c="primary",icon:s=y.createElement(tk.A,null),showCancel:d=!0,close:u,onConfirm:p,onCancel:f,onPopupClick:m}=e,{getPrefixCls:g}=y.useContext(tj.QO),[h]=(0,tI.A)("Popconfirm",tM.A.Popconfirm),b=(0,tP.b)(o),v=(0,tP.b)(a);return y.createElement("div",{className:`${t}-inner-content`,onClick:m},y.createElement("div",{className:`${t}-message`},s&&y.createElement("span",{className:`${t}-message-icon`},s),y.createElement("div",{className:`${t}-message-text`},b&&y.createElement("div",{className:`${t}-title`},b),v&&y.createElement("div",{className:`${t}-description`},v))),y.createElement("div",{className:`${t}-buttons`},d&&y.createElement(ek.Ay,Object.assign({onClick:f,size:"small"},r),i||(null==h?void 0:h.cancelText)),y.createElement(tE.A,{buttonProps:Object.assign(Object.assign({size:"small"},(0,tz.DU)(c)),n),actionFn:p,close:u,prefixCls:g("btn"),quitOnNullishReturnValue:!0,emitEvent:!0},l||(null==h?void 0:h.okText))))};var tH=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let tL=y.forwardRef((e,t)=>{var n,r;let{prefixCls:o,placement:a="top",trigger:i="click",okType:l="primary",icon:c=y.createElement(tk.A,null),children:s,overlayClassName:d,onOpenChange:u,onVisibleChange:p,overlayStyle:f,styles:m,classNames:g}=e,h=tH(e,["prefixCls","placement","trigger","okType","icon","children","overlayClassName","onOpenChange","onVisibleChange","overlayStyle","styles","classNames"]),{getPrefixCls:b,className:x,style:$,classNames:A,styles:w}=(0,tj.TP)("popconfirm"),[S,k]=(0,C.A)(!1,{value:null!=(n=e.open)?n:e.visible,defaultValue:null!=(r=e.defaultOpen)?r:e.defaultVisible}),j=(e,t)=>{k(e,!0),null==p||p(e),null==u||u(e,t)},E=b("popconfirm",o),P=v()(E,x,d,A.root,null==g?void 0:g.root),z=v()(A.body,null==g?void 0:g.body),[I]=tT(E);return I(y.createElement(te.A,Object.assign({},(0,O.A)(h,["title"]),{trigger:i,placement:a,onOpenChange:(t,n)=>{let{disabled:r=!1}=e;r||j(t,n)},open:S,ref:t,classNames:{root:P,body:z},styles:{root:Object.assign(Object.assign(Object.assign(Object.assign({},w.root),$),f),null==m?void 0:m.root),body:Object.assign(Object.assign({},w.body),null==m?void 0:m.body)},content:y.createElement(tN,Object.assign({okType:l,icon:c},e,{prefixCls:E,close:e=>{j(!1,e)},onConfirm:t=>{var n;return null==(n=e.onConfirm)?void 0:n.call(void 0,t)},onCancel:t=>{var n;j(!1,t),null==(n=e.onCancel)||n.call(void 0,t)}})),"data-popover-inject":!0}),s))});tL._InternalPanelDoNotUseOrYouWillBeFired=e=>{let{prefixCls:t,placement:n,className:r,style:o}=e,a=tF(e,["prefixCls","placement","className","style"]),{getPrefixCls:i}=y.useContext(tj.QO),l=i("popconfirm",t),[c]=tT(l);return c(y.createElement(tR.Ay,{placement:n,className:v()(l,r),style:o,content:y.createElement(tN,Object.assign({prefixCls:l},a))}))};var tD=n(64957),t_=["map_row_parentKey"],tW=["map_row_parentKey","map_row_key"],tq=["map_row_key"],tV=function(e){return(tO.Ay.warn||tO.Ay.warning)(e)},tX=function(e){return Array.isArray(e)?e.join(","):e};function tU(e,t){var n,r,o,a,i=e.getRowKey,c=e.row,d=e.data,f=e.childrenColumnName,m=void 0===f?"children":f,g=null==(a=tX(e.key))?void 0:a.toString(),h=new Map;return"top"===t&&h.set(g,(0,u.A)((0,u.A)({},h.get(g)),c)),function e(t,n,r){t.forEach(function(t,o){var a=10*(r||0)+o,c=i(t,a).toString();t&&"object"===(0,l.A)(t)&&m in t&&e(t[m]||[],c,a);var s=(0,u.A)((0,u.A)({},t),{},{map_row_key:c,children:void 0,map_row_parentKey:n});delete s.children,n||delete s.map_row_parentKey,h.set(c,s)})}(d),"update"===t&&h.set(g,(0,u.A)((0,u.A)({},h.get(g)),c)),"delete"===t&&h.delete(g),n=new Map,r=[],(o=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];h.forEach(function(t){if(t.map_row_parentKey&&!t.map_row_key){var r,o=t.map_row_parentKey,a=(0,p.A)(t,t_);n.has(o)||n.set(o,[]),e&&(null==(r=n.get(o))||r.push(a))}})})("top"===t),h.forEach(function(e){if(e.map_row_parentKey&&e.map_row_key){var t,r=e.map_row_parentKey,o=e.map_row_key,a=(0,p.A)(e,tW);n.has(o)&&(a[m]=n.get(o)),n.has(r)||n.set(r,[]),null==(t=n.get(r))||t.push(a)}}),o("update"===t),h.forEach(function(e){if(!e.map_row_parentKey){var t=e.map_row_key,o=(0,p.A)(e,tq);if(t&&n.has(t)){var a=(0,u.A)((0,u.A)({},o),{},(0,s.A)({},m,n.get(t)));r.push(a);return}r.push(o)}}),r}function tY(e,t){var n,r=e.recordKey,o=e.onSave,l=e.row,s=e.children,d=e.newLineConfig,u=e.editorType,p=e.tableName,f=(0,y.useContext)(er),m=K.A.useFormInstance(),g=(0,C.A)(!1),h=(0,c.A)(g,2),b=h[0],v=h[1],x=Z((0,i.A)((0,a.A)().mark(function e(){var t,n,i,c,s,g,h,b;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,n="Map"===u,i=[p,Array.isArray(r)?r[0]:r].map(function(e){return null==e?void 0:e.toString()}).flat(1).filter(Boolean),v(!0),e.next=6,m.validateFields(i,{recursive:!0});case 6:return c=(null==f||null==(t=f.getFieldFormatValue)?void 0:t.call(f,i))||m.getFieldValue(i),Array.isArray(r)&&r.length>1&&(s=(0,tC.A)(r).slice(1),g=(0,ed.A)(c,s),(0,eu.A)(c,s,g)),h=n?(0,eu.A)({},i,c):c,e.next=11,null==o?void 0:o(r,ef({},l,h),l,d);case 11:return b=e.sent,v(!1),e.abrupt("return",b);case 16:throw e.prev=16,e.t0=e.catch(0),console.log(e.t0),v(!1),e.t0;case 21:case"end":return e.stop()}},e,null,[[0,16]])})));return(0,y.useImperativeHandle)(t,function(){return{save:x}},[x]),(0,$.jsxs)("a",{onClick:(n=(0,i.A)((0,a.A)().mark(function e(t){return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t.stopPropagation(),t.preventDefault(),e.prev=2,e.next=5,x();case 5:e.next=9;break;case 7:e.prev=7,e.t0=e.catch(2);case 9:case"end":return e.stop()}},e,null,[[2,7]])})),function(e){return n.apply(this,arguments)}),children:[b?(0,$.jsx)(eH.A,{style:{marginInlineEnd:8}}):null,s||"保存"]},"save")}var tG=function(e){var t=e.recordKey,n=e.onDelete,r=e.preEditRowRef,o=e.row,l=e.children,s=e.deletePopconfirmMessage,d=(0,C.A)(function(){return!1}),u=(0,c.A)(d,2),p=u[0],f=u[1],m=Z((0,i.A)((0,a.A)().mark(function e(){var i;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,f(!0),e.next=4,null==n?void 0:n(t,o);case 4:return i=e.sent,f(!1),e.abrupt("return",i);case 9:return e.prev=9,e.t0=e.catch(0),console.log(e.t0),f(!1),e.abrupt("return",null);case 14:return e.prev=14,r&&(r.current=null),e.finish(14);case 17:case"end":return e.stop()}},e,null,[[0,9,14,17]])})));return!1!==l?(0,$.jsx)(tL,{title:s,onConfirm:function(){return m()},children:(0,$.jsxs)("a",{children:[p?(0,$.jsx)(eH.A,{style:{marginInlineEnd:8}}):null,l||"删除"]})},"delete"):null},tK=function(e){var t,n=e.recordKey,r=e.tableName,o=e.newLineConfig,l=e.editorType,c=e.onCancel,s=e.cancelEditable,d=e.row,u=e.cancelText,p=e.preEditRowRef,f=(0,y.useContext)(er),m=K.A.useFormInstance();return(0,$.jsx)("a",{onClick:(t=(0,i.A)((0,a.A)().mark(function t(i){var u,g,h,b,v,y,x;return(0,a.A)().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return i.stopPropagation(),i.preventDefault(),g="Map"===l,h=[r,n].flat(1).filter(Boolean),b=(null==f||null==(u=f.getFieldFormatValue)?void 0:u.call(f,h))||(null==m?void 0:m.getFieldValue(h)),v=g?(0,eu.A)({},h,b):b,t.next=8,null==c?void 0:c(n,v,d,o);case 8:return y=t.sent,t.next=11,s(n);case 11:if((null==p?void 0:p.current)===null){t.next=15;break}m.setFieldsValue((0,eu.A)({},h,null==p?void 0:p.current)),t.next=17;break;case 15:return t.next=17,null==(x=e.onDelete)?void 0:x.call(e,n,d);case 17:return p&&(p.current=null),t.abrupt("return",y);case 19:case"end":return t.stop()}},t)})),function(e){return t.apply(this,arguments)}),children:u||"取消"},"cancel")},tQ=(0,n(272).jK)({bigint:!0,circularValue:"Magic circle!",deterministic:!1,maximumDepth:4}),tJ=n(23029),tZ=n(92901),t0=n(9417),t1=n(85501),t2=n(6903),t4=n(38940),t6=function(e){(0,t1.A)(n,e);var t=(0,t2.A)(n);function n(){var e;(0,tJ.A)(this,n);for(var r=arguments.length,o=Array(r),a=0;a0&&void 0!==arguments[0]?arguments[0]:{},l=(0,y.useRef)(),s=(0,y.useRef)(null),d=(0,y.useRef)(),u=(0,y.useRef)(),p=(0,y.useState)(""),f=(0,c.A)(p,2),m=f[0],g=f[1],h=(0,y.useRef)([]),b=(0,C.A)(function(){return i.size||i.defaultSize||"middle"},{value:i.size,onChange:i.onSizeChange}),v=(0,c.A)(b,2),x=v[0],$=v[1],A=(0,y.useMemo)(function(){if(null!=i&&null!=(e=i.columnsState)&&e.defaultValue)return i.columnsState.defaultValue;var e,t,n={};return null==(t=i.columns)||t.forEach(function(e,t){var r=e.key,o=e.dataIndex,a=e.fixed,i=e.disable,l=ne(null!=r?r:o,t);l&&(n[l]={show:!0,fixed:a,disable:i})}),n},[i.columns]),w=(0,C.A)(function(){var e=i.columnsState||{},t=e.persistenceType,n=e.persistenceKey;if(n&&t&&"u">typeof window){var r=window[t];try{var o,a,l,c,s=null==r?void 0:r.getItem(n);if(s){if(null!=i&&null!=(l=i.columnsState)&&l.defaultValue)return(0,es.A)({},null==i||null==(c=i.columnsState)?void 0:c.defaultValue,JSON.parse(s));return JSON.parse(s)}}catch(e){console.warn(e)}}return i.columnsStateMap||(null==(o=i.columnsState)?void 0:o.value)||(null==(a=i.columnsState)?void 0:a.defaultValue)||A},{value:(null==(e=i.columnsState)?void 0:e.value)||i.columnsStateMap,onChange:(null==(t=i.columnsState)?void 0:t.onChange)||i.onColumnsStateChange}),S=(0,c.A)(w,2),O=S[0],k=S[1];(0,y.useEffect)(function(){var e=i.columnsState||{},t=e.persistenceType,n=e.persistenceKey;if(n&&t&&"u">typeof window){var r=window[t];try{var o,a,l=null==r?void 0:r.getItem(n);l?null!=i&&null!=(o=i.columnsState)&&o.defaultValue?k((0,es.A)({},null==i||null==(a=i.columnsState)?void 0:a.defaultValue,JSON.parse(l))):k(JSON.parse(l)):k(A)}catch(e){console.warn(e)}}},[null==(n=i.columnsState)?void 0:n.persistenceKey,null==(r=i.columnsState)?void 0:r.persistenceType,A]),(0,T.g9)(!i.columnsStateMap,"columnsStateMap已经废弃,请使用 columnsState.value 替换"),(0,T.g9)(!i.columnsStateMap,"columnsStateMap has been discarded, please use columnsState.value replacement");var j=(0,y.useCallback)(function(){var e=i.columnsState||{},t=e.persistenceType,n=e.persistenceKey;if(n&&t&&"u">typeof window){var r=window[t];try{null==r||r.removeItem(n)}catch(e){console.warn(e)}}},[i.columnsState]);(0,y.useEffect)(function(){if(null!=(e=i.columnsState)&&e.persistenceKey&&null!=(t=i.columnsState)&&t.persistenceType&&"u">typeof window){var e,t,n=i.columnsState,r=n.persistenceType,o=n.persistenceKey,a=window[r];try{null==a||a.setItem(o,JSON.stringify(O))}catch(e){console.warn(e),j()}}},[null==(o=i.columnsState)?void 0:o.persistenceKey,O,null==(a=i.columnsState)?void 0:a.persistenceType]);var E={action:l.current,setAction:function(e){l.current=e},sortKeyColumns:h.current,setSortKeyColumns:function(e){h.current=e},propsRef:u,columnsMap:O,keyWords:m,setKeyWords:function(e){return g(e)},setTableSize:$,tableSize:x,prefixName:d.current,setPrefixName:function(e){d.current=e},setColumnsMap:k,columns:i.columns,rootDomRef:s,clearPersistenceStorage:j,defaultColumnKeyMap:A};return Object.defineProperty(E,"prefixName",{get:function(){return d.current}}),Object.defineProperty(E,"sortKeyColumns",{get:function(){return h.current}}),Object.defineProperty(E,"action",{get:function(){return l.current}}),E}(e.initValue);return(0,$.jsx)(nn.Provider,{value:t,children:e.children})},no=function(e){var t=e.intl,n=e.onCleanSelected;return[(0,$.jsx)("a",{onClick:n,children:t.getMessage("alert.clear","清空")},"0")]};let na=function(e){var t=e.selectedRowKeys,n=void 0===t?[]:t,r=e.onCleanSelected,o=e.alwaysShowAlert,a=e.selectedRows,i=e.alertInfoRender,l=void 0===i?function(e){var t=e.intl;return(0,$.jsxs)(eZ.A,{children:[t.getMessage("alert.selected","已选择"),n.length,t.getMessage("alert.item","项"),"\xa0\xa0"]})}:i,c=e.alertOptionRender,d=void 0===c?no:c,p=(0,Q.tz)(),f=d&&d({onCleanSelected:r,selectedRowKeys:n,selectedRows:a,intl:p}),m=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-table-alert"),h=(0,x.X3)("ProTableAlert",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(m)}),(0,s.A)({},t.componentCls,{marginBlockEnd:16,backgroundColor:(0,x.X9)(t.colorTextBase,.02),borderRadius:t.borderRadius,border:"none","&-container":{paddingBlock:t.paddingSM,paddingInline:t.paddingLG},"&-info":{display:"flex",alignItems:"center",transition:"all 0.3s",color:t.colorTextTertiary,"&-content":{flex:1},"&-option":{minWidth:48,paddingInlineStart:16}}}))]}),b=h.wrapSSR,v=h.hashId;if(!1===l)return null;var A=l({intl:p,selectedRowKeys:n,selectedRows:a,onCleanSelected:r});return!1===A||n.length<1&&!o?null:b((0,$.jsx)("div",{className:"".concat(m," ").concat(v).trim(),children:(0,$.jsx)("div",{className:"".concat(m,"-container ").concat(v).trim(),children:(0,$.jsxs)("div",{className:"".concat(m,"-info ").concat(v).trim(),children:[(0,$.jsx)("div",{className:"".concat(m,"-info-content ").concat(v).trim(),children:A}),f?(0,$.jsx)("div",{className:"".concat(m,"-info-option ").concat(v).trim(),children:f}):null]})})}))};var ni=function(e){var t=(0,y.useRef)(e);return t.current=e,t},nl="u">typeof process&&null!=process.versions&&null!=process.versions.node,nc=function(){return"u">typeof window&&void 0!==window.document&&void 0!==window.matchMedia&&!nl},ns=n(64464),nd=n(56855),nu=n(8719),np=n(62897),nf=n(60275),nm=n(23723),ng=n(72616),nh=n(28557),nb=n(70064),nv=n(42441);let ny=e=>{var t,n,r,o;let a,{prefixCls:i,ariaId:l,title:c,footer:s,extra:d,closable:u,loading:p,onClose:f,headerStyle:m,bodyStyle:g,footerStyle:h,children:b,classNames:x,styles:$}=e,A=(0,tj.TP)("drawer");a=!1===u?void 0:void 0===u||!0===u?"start":(null==u?void 0:u.placement)==="end"?"end":"start";let w=y.useCallback(e=>y.createElement("button",{type:"button",onClick:f,className:v()(`${i}-close`,{[`${i}-close-${a}`]:"end"===a})},e),[f,i,a]),[S,C]=(0,nb.$)((0,nb.d)(e),(0,nb.d)(A),{closable:!0,closeIconRender:w});return y.createElement(y.Fragment,null,c||S?y.createElement("div",{style:Object.assign(Object.assign(Object.assign({},null==(r=A.styles)?void 0:r.header),m),null==$?void 0:$.header),className:v()(`${i}-header`,{[`${i}-header-close-only`]:S&&!c&&!d},null==(o=A.classNames)?void 0:o.header,null==x?void 0:x.header)},y.createElement("div",{className:`${i}-header-title`},"start"===a&&C,c&&y.createElement("div",{className:`${i}-title`,id:l},c)),d&&y.createElement("div",{className:`${i}-extra`},d),"end"===a&&C):null,y.createElement("div",{className:v()(`${i}-body`,null==x?void 0:x.body,null==(t=A.classNames)?void 0:t.body),style:Object.assign(Object.assign(Object.assign({},null==(n=A.styles)?void 0:n.body),g),null==$?void 0:$.body)},p?y.createElement(nv.A,{active:!0,title:!1,paragraph:{rows:5},className:`${i}-body-skeleton`}):b),(()=>{var e,t;if(!s)return null;let n=`${i}-footer`;return y.createElement("div",{className:v()(n,null==(e=A.classNames)?void 0:e.footer,null==x?void 0:x.footer),style:Object.assign(Object.assign(Object.assign({},null==(t=A.styles)?void 0:t.footer),h),null==$?void 0:$.footer)},s)})())};var nx=n(25905),n$=n(10224);let nA=(e,t)=>({"&-enter, &-appear":Object.assign(Object.assign({},e),{"&-active":t}),"&-leave":Object.assign(Object.assign({},t),{"&-active":e})}),nw=(e,t)=>Object.assign({"&-enter, &-appear, &-leave":{"&-start":{transition:"none"},"&-active":{transition:`all ${t}`}}},nA({opacity:e},{opacity:1})),nS=(0,tB.OF)("Drawer",e=>{let t=(0,n$.oX)(e,{});return[(e=>{let{borderRadiusSM:t,componentCls:n,zIndexPopup:r,colorBgMask:o,colorBgElevated:a,motionDurationSlow:i,motionDurationMid:l,paddingXS:c,padding:s,paddingLG:d,fontSizeLG:u,lineHeightLG:p,lineWidth:f,lineType:m,colorSplit:g,marginXS:h,colorIcon:b,colorIconHover:v,colorBgTextHover:y,colorBgTextActive:x,colorText:$,fontWeightStrong:A,footerPaddingBlock:w,footerPaddingInline:S,calc:C}=e,O=`${n}-content-wrapper`;return{[n]:{position:"fixed",inset:0,zIndex:r,pointerEvents:"none",color:$,"&-pure":{position:"relative",background:a,display:"flex",flexDirection:"column",[`&${n}-left`]:{boxShadow:e.boxShadowDrawerLeft},[`&${n}-right`]:{boxShadow:e.boxShadowDrawerRight},[`&${n}-top`]:{boxShadow:e.boxShadowDrawerUp},[`&${n}-bottom`]:{boxShadow:e.boxShadowDrawerDown}},"&-inline":{position:"absolute"},[`${n}-mask`]:{position:"absolute",inset:0,zIndex:r,background:o,pointerEvents:"auto"},[O]:{position:"absolute",zIndex:r,maxWidth:"100vw",transition:`all ${i}`,"&-hidden":{display:"none"}},[`&-left > ${O}`]:{top:0,bottom:0,left:{_skip_check_:!0,value:0},boxShadow:e.boxShadowDrawerLeft},[`&-right > ${O}`]:{top:0,right:{_skip_check_:!0,value:0},bottom:0,boxShadow:e.boxShadowDrawerRight},[`&-top > ${O}`]:{top:0,insetInline:0,boxShadow:e.boxShadowDrawerUp},[`&-bottom > ${O}`]:{bottom:0,insetInline:0,boxShadow:e.boxShadowDrawerDown},[`${n}-content`]:{display:"flex",flexDirection:"column",width:"100%",height:"100%",overflow:"auto",background:a,pointerEvents:"auto"},[`${n}-header`]:{display:"flex",flex:0,alignItems:"center",padding:`${(0,z.zA)(s)} ${(0,z.zA)(d)}`,fontSize:u,lineHeight:p,borderBottom:`${(0,z.zA)(f)} ${m} ${g}`,"&-title":{display:"flex",flex:1,alignItems:"center",minWidth:0,minHeight:0}},[`${n}-extra`]:{flex:"none"},[`${n}-close`]:Object.assign({display:"inline-flex",width:C(u).add(c).equal(),height:C(u).add(c).equal(),borderRadius:t,justifyContent:"center",alignItems:"center",color:b,fontWeight:A,fontSize:u,fontStyle:"normal",lineHeight:1,textAlign:"center",textTransform:"none",textDecoration:"none",background:"transparent",border:0,cursor:"pointer",transition:`all ${l}`,textRendering:"auto",[`&${n}-close-end`]:{marginInlineStart:h},[`&:not(${n}-close-end)`]:{marginInlineEnd:h},"&:hover":{color:v,backgroundColor:y,textDecoration:"none"},"&:active":{backgroundColor:x}},(0,nx.K8)(e)),[`${n}-title`]:{flex:1,margin:0,fontWeight:e.fontWeightStrong,fontSize:u,lineHeight:p},[`${n}-body`]:{flex:1,minWidth:0,minHeight:0,padding:d,overflow:"auto",[`${n}-body-skeleton`]:{width:"100%",height:"100%",display:"flex",justifyContent:"center"}},[`${n}-footer`]:{flexShrink:0,padding:`${(0,z.zA)(w)} ${(0,z.zA)(S)}`,borderTop:`${(0,z.zA)(f)} ${m} ${g}`},"&-rtl":{direction:"rtl"}}}})(t),(e=>{let{componentCls:t,motionDurationSlow:n}=e;return{[t]:{[`${t}-mask-motion`]:nw(0,n),[`${t}-panel-motion`]:["left","right","top","bottom"].reduce((e,t)=>{let r;return Object.assign(Object.assign({},e),{[`&-${t}`]:[nw(.7,n),nA({transform:(r="100%",({left:`translateX(-${r})`,right:`translateX(${r})`,top:`translateY(-${r})`,bottom:`translateY(${r})`})[t])},{transform:"none"})]})},{})}}})(t)]},e=>({zIndexPopup:e.zIndexPopupBase,footerPaddingBlock:e.paddingXS,footerPaddingInline:e.padding}));var nC=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let nO={distance:180},nk=e=>{let{rootClassName:t,width:n,height:r,size:o="default",mask:a=!0,push:i=nO,open:l,afterOpenChange:c,onClose:s,prefixCls:d,getContainer:u,panelRef:p=null,style:f,className:m,"aria-labelledby":g,visible:h,afterVisibleChange:b,maskStyle:x,drawerStyle:$,contentWrapperStyle:A,destroyOnClose:w,destroyOnHidden:S}=e,C=nC(e,["rootClassName","width","height","size","mask","push","open","afterOpenChange","onClose","prefixCls","getContainer","panelRef","style","className","aria-labelledby","visible","afterVisibleChange","maskStyle","drawerStyle","contentWrapperStyle","destroyOnClose","destroyOnHidden"]),O=(0,nd.A)(),k=C.title?O:void 0,{getPopupContainer:j,getPrefixCls:E,direction:P,className:z,style:I,classNames:M,styles:R}=(0,tj.TP)("drawer"),B=E("drawer",d),[T,F,N]=nS(B),H=void 0===u&&j?()=>j(document.body):u,L=v()({"no-mask":!a,[`${B}-rtl`]:"rtl"===P},t,F,N),D=y.useMemo(()=>null!=n?n:"large"===o?736:378,[n,o]),_=y.useMemo(()=>null!=r?r:"large"===o?736:378,[r,o]),W={motionName:(0,nm.b)(B,"mask-motion"),motionAppear:!0,motionEnter:!0,motionLeave:!0,motionDeadline:500},q=(0,nh.f)(),V=(0,nu.K4)(p,q),[X,U]=(0,nf.YK)("Drawer",C.zIndex),{classNames:Y={},styles:G={}}=C;return T(y.createElement(np.A,{form:!0,space:!0},y.createElement(ng.A.Provider,{value:U},y.createElement(ns.A,Object.assign({prefixCls:B,onClose:s,maskMotion:W,motion:e=>({motionName:(0,nm.b)(B,`panel-motion-${e}`),motionAppear:!0,motionEnter:!0,motionLeave:!0,motionDeadline:500})},C,{classNames:{mask:v()(Y.mask,M.mask),content:v()(Y.content,M.content),wrapper:v()(Y.wrapper,M.wrapper)},styles:{mask:Object.assign(Object.assign(Object.assign({},G.mask),x),R.mask),content:Object.assign(Object.assign(Object.assign({},G.content),$),R.content),wrapper:Object.assign(Object.assign(Object.assign({},G.wrapper),A),R.wrapper)},open:null!=l?l:h,mask:a,push:i,width:D,height:_,style:Object.assign(Object.assign({},I),f),className:v()(z,m),rootClassName:L,getContainer:H,afterOpenChange:null!=c?c:b,panelRef:V,zIndex:X,"aria-labelledby":null!=g?g:k,destroyOnClose:null!=S?S:w}),y.createElement(ny,Object.assign({prefixCls:B},C,{ariaId:k,onClose:s}))))))};nk._InternalPanelDoNotUseOrYouWillBeFired=e=>{let{prefixCls:t,style:n,className:r,placement:o="right"}=e,a=nC(e,["prefixCls","style","className","placement"]),{getPrefixCls:i}=y.useContext(tj.QO),l=i("drawer",t),[c,s,d]=nS(l),u=v()(l,`${l}-pure`,`${l}-${o}`,s,d,r);return c(y.createElement("div",{className:u,style:n},y.createElement(ny,Object.assign({prefixCls:l},a))))};var nj=n(40961),nE=["children","trigger","onVisibleChange","drawerProps","onFinish","submitTimeout","title","width","resize","onOpenChange","visible","open"];let nP={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M880.1 154H143.9c-24.5 0-39.8 26.7-27.5 48L349 597.4V838c0 17.7 14.2 32 31.8 32h262.4c17.6 0 31.8-14.3 31.8-32V597.4L907.7 202c12.2-21.3-3.1-48-27.6-48zM603.4 798H420.6V642h182.9v156zm9.6-236.6l-9.5 16.6h-183l-9.5-16.6L212.7 226h598.6L613 561.4z"}}]},name:"filter",theme:"outlined"};var nz=y.forwardRef(function(e,t){return y.createElement(eM.A,(0,ez.A)({},e,{ref:t,icon:nP}))}),nI=["size","collapse","collapseLabel","initialValues","onValuesChange","form","placement","formRef","bordered","ignoreRules","footerRender"],nM=function(e){var t=e.items,n=e.prefixCls,r=e.size,o=void 0===r?"middle":r,a=e.collapse,i=e.collapseLabel,l=e.onValuesChange,d=e.bordered,p=e.values,f=e.footerRender,m=e.placement,g=(0,Q.tz)(),h="".concat(n,"-light-filter"),b=(0,x.X3)("LightFilter",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(h)}),(0,s.A)({},t.componentCls,{lineHeight:"30px","&::before":{display:"block",height:0,visibility:"hidden",content:"'.'"},"&-small":{lineHeight:t.lineHeight},"&-container":{display:"flex",flexWrap:"wrap",gap:t.marginXS},"&-item":(0,s.A)({whiteSpace:"nowrap"},"".concat(t.antCls,"-form-item"),{marginBlock:0}),"&-line":{minWidth:"198px"},"&-line:not(:first-child)":{marginBlockStart:"16px",marginBlockEnd:8},"&-collapse-icon":{width:t.controlHeight,height:t.controlHeight,borderRadius:"50%",display:"flex",alignItems:"center",justifyContent:"center"},"&-effective":(0,s.A)({},"".concat(t.componentCls,"-collapse-icon"),{backgroundColor:t.colorBgTextHover})}))]}),A=b.wrapSSR,w=b.hashId,S=(0,y.useState)(!1),C=(0,c.A)(S,2),O=C[0],k=C[1],j=(0,y.useState)(function(){return(0,u.A)({},p)}),E=(0,c.A)(j,2),P=E[0],z=E[1];(0,y.useEffect)(function(){z((0,u.A)({},p))},[p]);var I=(0,y.useMemo)(function(){var e=[],n=[];return t.forEach(function(t){(t.props||{}).secondary||a?e.push(t):n.push(t)}),{collapseItems:e,outsideItems:n}},[e.items]),M=I.collapseItems,R=I.outsideItems;return A((0,$.jsx)("div",{className:v()(h,w,"".concat(h,"-").concat(o),(0,s.A)({},"".concat(h,"-effective"),Object.keys(p).some(function(e){return Array.isArray(p[e])?p[e].length>0:p[e]}))),children:(0,$.jsxs)("div",{className:"".concat(h,"-container ").concat(w).trim(),children:[R.map(function(e,t){if(!(null!=e&&e.props))return e;var n=e.key,r=((null==e?void 0:e.props)||{}).fieldProps,o=null!=r&&r.placement?null==r?void 0:r.placement:m;return(0,$.jsx)("div",{className:"".concat(h,"-item ").concat(w).trim(),children:y.cloneElement(e,{fieldProps:(0,u.A)((0,u.A)({},e.props.fieldProps),{},{placement:o}),proFieldProps:(0,u.A)((0,u.A)({},e.props.proFieldProps),{},{light:!0,label:e.props.label,bordered:d}),bordered:d})},n||t)}),M.length?(0,$.jsx)("div",{className:"".concat(h,"-item ").concat(w).trim(),children:(0,$.jsx)(tu,{padding:24,open:O,onOpenChange:function(e){k(e)},placement:m,label:i||(a?(0,$.jsx)(nz,{className:"".concat(h,"-collapse-icon ").concat(w).trim()}):(0,$.jsx)(tm,{size:o,label:g.getMessage("form.lightFilter.more","更多筛选")})),footerRender:f,footer:{onConfirm:function(){l((0,u.A)({},P)),k(!1)},onClear:function(){var e={};M.forEach(function(t){e[t.props.name]=void 0}),l(e)}},children:M.map(function(e){var t=e.key,n=e.props,r=n.name,o=n.fieldProps,a=(0,u.A)((0,u.A)({},o),{},{onChange:function(e){return z((0,u.A)((0,u.A)({},P),{},(0,s.A)({},r,null!=e&&e.target?e.target.value:e))),!1}});P.hasOwnProperty(r)&&(a[e.props.valuePropName||"value"]=P[r]);var i=null!=o&&o.placement?null==o?void 0:o.placement:m;return(0,$.jsx)("div",{className:"".concat(h,"-line ").concat(w).trim(),children:y.cloneElement(e,{fieldProps:(0,u.A)((0,u.A)({},a),{},{placement:i})})},t)})})},"more"):null]})}))},nR=n(18182),nB=["children","trigger","onVisibleChange","onOpenChange","modalProps","onFinish","submitTimeout","title","width","visible","open"],nT=n(6807),nF=function(e){if(e&&!0!==e)return e},nN=function(e,t,n,r){return e?(0,$.jsxs)($.Fragment,{children:[n.getMessage("tableForm.collapsed","展开"),r&&"(".concat(r,")"),(0,$.jsx)(tf.A,{style:{marginInlineStart:"0.5em",transition:"0.3s all",transform:"rotate(".concat(.5*!e,"turn)")}})]}):(0,$.jsxs)($.Fragment,{children:[n.getMessage("tableForm.expand","收起"),(0,$.jsx)(tf.A,{style:{marginInlineStart:"0.5em",transition:"0.3s all",transform:"rotate(".concat(.5*!e,"turn)")}})]})};let nH=function(e){var t=e.setCollapsed,n=e.collapsed,r=void 0!==n&&n,o=e.submitter,a=e.style,i=e.hiddenNum,l=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls,c=(0,Q.tz)(),s=(0,y.useContext)(Q.Lx).hashId,d=nF(e.collapseRender)||nN;return(0,$.jsxs)(eZ.A,{style:a,size:16,children:[o,!1!==e.collapseRender&&(0,$.jsx)("a",{className:"".concat(l("pro-query-filter-collapse-button")," ").concat(s).trim(),onClick:function(){return t(!r)},children:null==d?void 0:d(r,e,c,i)})]})};var nL=["collapsed","layout","defaultCollapsed","defaultColsNumber","defaultFormItemsNumber","span","searchGutter","searchText","resetText","optionRender","collapseRender","onReset","onCollapse","labelWidth","style","split","preserve","ignoreRules","showHiddenNum","submitterColSpanProps"],nD={xs:513,sm:513,md:785,lg:992,xl:1057,xxl:1/0},n_={vertical:[[513,1,"vertical"],[785,2,"vertical"],[1057,3,"vertical"],[1/0,4,"vertical"]],default:[[513,1,"vertical"],[701,2,"vertical"],[1062,3,"horizontal"],[1352,3,"horizontal"],[1/0,4,"horizontal"]]},nW=function(e,t,n){if(n&&"number"==typeof n)return{span:n,layout:e};var r=((n?["xs","sm","md","lg","xl","xxl"].map(function(e){return[nD[e],24/n[e],"horizontal"]}):n_[e||"default"])||n_.default).find(function(e){return tO)&&!!n;M+=1;var u=y.isValidElement(t)&&(t.key||"".concat(null==(i=t.props)?void 0:i.name))||n;return y.isValidElement(t)&&d?e.preserve?{itemDom:y.cloneElement(t,{hidden:!0,key:u||n}),hidden:!0,colSpan:s}:{itemDom:null,colSpan:0,hidden:!0}:{itemDom:t,colSpan:s,hidden:!1}}),N=F.map(function(t,n){var r,o,a=t.itemDom,i=t.colSpan;if(null==a||null==(r=a.props)?void 0:r.hidden)return a;var c=y.isValidElement(a)&&(a.key||"".concat(null==(o=a.props)?void 0:o.name))||n;return(24-T%2424?24-(null!=(r=null==(o=e.submitterColSpanProps)?void 0:o.span)?r:S.span):24-a},[T,T%24+(null!=(n=null==(r=e.submitterColSpanProps)?void 0:r.span)?n:S.span),null==(o=e.submitterColSpanProps)?void 0:o.span]),_=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls("pro-query-filter");return(0,$.jsxs)(E.A,{gutter:k,justify:"start",className:v()("".concat(_,"-row"),l),children:[N,z&&(0,$.jsx)(P.A,(0,u.A)((0,u.A)({span:S.span,offset:D,className:v()(null==(a=e.submitterColSpanProps)?void 0:a.className)},e.submitterColSpanProps),{},{style:{textAlign:"end"},children:(0,$.jsx)(K.A.Item,{label:" ",colon:!1,shouldUpdate:!1,className:"".concat(_,"-actions ").concat(l).trim(),children:(0,$.jsx)(nH,{hiddenNum:H,collapsed:m,collapseRender:!!L&&x,submitter:z,setCollapsed:h},"pro-form-query-filter-actions")})}),"submitter")]},"resize-observer-row")},nV=nc()?null==(o=document)||null==(o=o.body)?void 0:o.clientWidth:1024,nX=n(51237),nU=n(5100),nY=n(90701),nG=n(829),nK=n(49032);let nQ=(e,t)=>{let n=`${t.componentCls}-item`,r=`${e}IconColor`,o=`${e}TitleColor`,a=`${e}DescriptionColor`,i=`${e}TailColor`,l=`${e}IconBgColor`,c=`${e}IconBorderColor`,s=`${e}DotColor`;return{[`${n}-${e} ${n}-icon`]:{backgroundColor:t[l],borderColor:t[c],[`> ${t.componentCls}-icon`]:{color:t[r],[`${t.componentCls}-icon-dot`]:{background:t[s]}}},[`${n}-${e}${n}-custom ${n}-icon`]:{[`> ${t.componentCls}-icon`]:{color:t[s]}},[`${n}-${e} > ${n}-container > ${n}-content > ${n}-title`]:{color:t[o],"&::after":{backgroundColor:t[i]}},[`${n}-${e} > ${n}-container > ${n}-content > ${n}-description`]:{color:t[a]},[`${n}-${e} > ${n}-container > ${n}-tail::after`]:{backgroundColor:t[i]}}},nJ=(0,tB.OF)("Steps",e=>{let{colorTextDisabled:t,controlHeightLG:n,colorTextLightSolid:r,colorText:o,colorPrimary:a,colorTextDescription:i,colorTextQuaternary:l,colorError:c,colorBorderSecondary:s,colorSplit:d}=e;return(e=>{let{componentCls:t}=e;return{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,nx.dF)(e)),{display:"flex",width:"100%",fontSize:0,textAlign:"initial"}),(e=>{let{componentCls:t,motionDurationSlow:n}=e,r=`${t}-item`,o=`${r}-icon`;return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({[r]:{position:"relative",display:"inline-block",flex:1,overflow:"hidden",verticalAlign:"top","&:last-child":{flex:"none",[`> ${r}-container > ${r}-tail, > ${r}-container > ${r}-content > ${r}-title::after`]:{display:"none"}}},[`${r}-container`]:{outline:"none",[`&:focus-visible ${o}`]:(0,nx.jk)(e)},[`${o}, ${r}-content`]:{display:"inline-block",verticalAlign:"top"},[o]:{width:e.iconSize,height:e.iconSize,marginTop:0,marginBottom:0,marginInlineStart:0,marginInlineEnd:e.marginXS,fontSize:e.iconFontSize,fontFamily:e.fontFamily,lineHeight:(0,z.zA)(e.iconSize),textAlign:"center",borderRadius:e.iconSize,border:`${(0,z.zA)(e.lineWidth)} ${e.lineType} transparent`,transition:`background-color ${n}, border-color ${n}`,[`${t}-icon`]:{position:"relative",top:e.iconTop,color:e.colorPrimary,lineHeight:1}},[`${r}-tail`]:{position:"absolute",top:e.calc(e.iconSize).div(2).equal(),insetInlineStart:0,width:"100%","&::after":{display:"inline-block",width:"100%",height:e.lineWidth,background:e.colorSplit,borderRadius:e.lineWidth,transition:`background ${n}`,content:'""'}},[`${r}-title`]:{position:"relative",display:"inline-block",paddingInlineEnd:e.padding,color:e.colorText,fontSize:e.fontSizeLG,lineHeight:(0,z.zA)(e.titleLineHeight),"&::after":{position:"absolute",top:e.calc(e.titleLineHeight).div(2).equal(),insetInlineStart:"100%",display:"block",width:9999,height:e.lineWidth,background:e.processTailColor,content:'""'}},[`${r}-subtitle`]:{display:"inline",marginInlineStart:e.marginXS,color:e.colorTextDescription,fontWeight:"normal",fontSize:e.fontSize},[`${r}-description`]:{color:e.colorTextDescription,fontSize:e.fontSize}},nQ("wait",e)),nQ("process",e)),{[`${r}-process > ${r}-container > ${r}-title`]:{fontWeight:e.fontWeightStrong}}),nQ("finish",e)),nQ("error",e)),{[`${r}${t}-next-error > ${t}-item-title::after`]:{background:e.colorError},[`${r}-disabled`]:{cursor:"not-allowed"}})})(e)),(e=>{let{componentCls:t,motionDurationSlow:n}=e;return{[`& ${t}-item`]:{[`&:not(${t}-item-active)`]:{[`& > ${t}-item-container[role='button']`]:{cursor:"pointer",[`${t}-item`]:{[`&-title, &-subtitle, &-description, &-icon ${t}-icon`]:{transition:`color ${n}`}},"&:hover":{[`${t}-item`]:{"&-title, &-subtitle, &-description":{color:e.colorPrimary}}}},[`&:not(${t}-item-process)`]:{[`& > ${t}-item-container[role='button']:hover`]:{[`${t}-item`]:{"&-icon":{borderColor:e.colorPrimary,[`${t}-icon`]:{color:e.colorPrimary}}}}}}},[`&${t}-horizontal:not(${t}-label-vertical)`]:{[`${t}-item`]:{paddingInlineStart:e.padding,whiteSpace:"nowrap","&:first-child":{paddingInlineStart:0},[`&:last-child ${t}-item-title`]:{paddingInlineEnd:0},"&-tail":{display:"none"},"&-description":{maxWidth:e.descriptionMaxWidth,whiteSpace:"normal"}}}}})(e)),(e=>{let{componentCls:t,customIconTop:n,customIconSize:r,customIconFontSize:o}=e;return{[`${t}-item-custom`]:{[`> ${t}-item-container > ${t}-item-icon`]:{height:"auto",background:"none",border:0,[`> ${t}-icon`]:{top:n,width:r,height:r,fontSize:o,lineHeight:(0,z.zA)(r)}}},[`&:not(${t}-vertical)`]:{[`${t}-item-custom`]:{[`${t}-item-icon`]:{width:"auto",background:"none"}}}}})(e)),(e=>{let{componentCls:t,iconSizeSM:n,fontSizeSM:r,fontSize:o,colorTextDescription:a}=e;return{[`&${t}-small`]:{[`&${t}-horizontal:not(${t}-label-vertical) ${t}-item`]:{paddingInlineStart:e.paddingSM,"&:first-child":{paddingInlineStart:0}},[`${t}-item-icon`]:{width:n,height:n,marginTop:0,marginBottom:0,marginInline:`0 ${(0,z.zA)(e.marginXS)}`,fontSize:r,lineHeight:(0,z.zA)(n),textAlign:"center",borderRadius:n},[`${t}-item-title`]:{paddingInlineEnd:e.paddingSM,fontSize:o,lineHeight:(0,z.zA)(n),"&::after":{top:e.calc(n).div(2).equal()}},[`${t}-item-description`]:{color:a,fontSize:o},[`${t}-item-tail`]:{top:e.calc(n).div(2).sub(e.paddingXXS).equal()},[`${t}-item-custom ${t}-item-icon`]:{width:"inherit",height:"inherit",lineHeight:"inherit",background:"none",border:0,borderRadius:0,[`> ${t}-icon`]:{fontSize:n,lineHeight:(0,z.zA)(n),transform:"none"}}}}})(e)),(e=>{let{componentCls:t,iconSizeSM:n,iconSize:r}=e;return{[`&${t}-vertical`]:{display:"flex",flexDirection:"column",[`> ${t}-item`]:{display:"block",flex:"1 0 auto",paddingInlineStart:0,overflow:"visible",[`${t}-item-icon`]:{float:"left",marginInlineEnd:e.margin},[`${t}-item-content`]:{display:"block",minHeight:e.calc(e.controlHeight).mul(1.5).equal(),overflow:"hidden"},[`${t}-item-title`]:{lineHeight:(0,z.zA)(r)},[`${t}-item-description`]:{paddingBottom:e.paddingSM}},[`> ${t}-item > ${t}-item-container > ${t}-item-tail`]:{position:"absolute",top:0,insetInlineStart:e.calc(r).div(2).sub(e.lineWidth).equal(),width:e.lineWidth,height:"100%",padding:`${(0,z.zA)(e.calc(e.marginXXS).mul(1.5).add(r).equal())} 0 ${(0,z.zA)(e.calc(e.marginXXS).mul(1.5).equal())}`,"&::after":{width:e.lineWidth,height:"100%"}},[`> ${t}-item:not(:last-child) > ${t}-item-container > ${t}-item-tail`]:{display:"block"},[` > ${t}-item > ${t}-item-container > ${t}-item-content > ${t}-item-title`]:{"&::after":{display:"none"}},[`&${t}-small ${t}-item-container`]:{[`${t}-item-tail`]:{position:"absolute",top:0,insetInlineStart:e.calc(n).div(2).sub(e.lineWidth).equal(),padding:`${(0,z.zA)(e.calc(e.marginXXS).mul(1.5).add(n).equal())} 0 ${(0,z.zA)(e.calc(e.marginXXS).mul(1.5).equal())}`},[`${t}-item-title`]:{lineHeight:(0,z.zA)(n)}}}}})(e)),(e=>{let{componentCls:t}=e,n=`${t}-item`;return{[`${t}-horizontal`]:{[`${n}-tail`]:{transform:"translateY(-50%)"}}}})(e)),(e=>{let{componentCls:t,iconSize:n,lineHeight:r,iconSizeSM:o}=e;return{[`&${t}-label-vertical`]:{[`${t}-item`]:{overflow:"visible","&-tail":{marginInlineStart:e.calc(n).div(2).add(e.controlHeightLG).equal(),padding:`0 ${(0,z.zA)(e.paddingLG)}`},"&-content":{display:"block",width:e.calc(n).div(2).add(e.controlHeightLG).mul(2).equal(),marginTop:e.marginSM,textAlign:"center"},"&-icon":{display:"inline-block",marginInlineStart:e.controlHeightLG},"&-title":{paddingInlineEnd:0,paddingInlineStart:0,"&::after":{display:"none"}},"&-subtitle":{display:"block",marginBottom:e.marginXXS,marginInlineStart:0,lineHeight:r}},[`&${t}-small:not(${t}-dot)`]:{[`${t}-item`]:{"&-icon":{marginInlineStart:e.calc(n).sub(o).div(2).add(e.controlHeightLG).equal()}}}}}})(e)),(e=>{let{componentCls:t,descriptionMaxWidth:n,lineHeight:r,dotCurrentSize:o,dotSize:a,motionDurationSlow:i}=e;return{[`&${t}-dot, &${t}-dot${t}-small`]:{[`${t}-item`]:{"&-title":{lineHeight:r},"&-tail":{top:e.calc(e.dotSize).sub(e.calc(e.lineWidth).mul(3).equal()).div(2).equal(),width:"100%",marginTop:0,marginBottom:0,marginInline:`${(0,z.zA)(e.calc(n).div(2).equal())} 0`,padding:0,"&::after":{width:`calc(100% - ${(0,z.zA)(e.calc(e.marginSM).mul(2).equal())})`,height:e.calc(e.lineWidth).mul(3).equal(),marginInlineStart:e.marginSM}},"&-icon":{width:a,height:a,marginInlineStart:e.calc(e.descriptionMaxWidth).sub(a).div(2).equal(),paddingInlineEnd:0,lineHeight:(0,z.zA)(a),background:"transparent",border:0,[`${t}-icon-dot`]:{position:"relative",float:"left",width:"100%",height:"100%",borderRadius:100,transition:`all ${i}`,"&::after":{position:"absolute",top:e.calc(e.marginSM).mul(-1).equal(),insetInlineStart:e.calc(a).sub(e.calc(e.controlHeightLG).mul(1.5).equal()).div(2).equal(),width:e.calc(e.controlHeightLG).mul(1.5).equal(),height:e.controlHeight,background:"transparent",content:'""'}}},"&-content":{width:n},[`&-process ${t}-item-icon`]:{position:"relative",top:e.calc(a).sub(o).div(2).equal(),width:o,height:o,lineHeight:(0,z.zA)(o),background:"none",marginInlineStart:e.calc(e.descriptionMaxWidth).sub(o).div(2).equal()},[`&-process ${t}-icon`]:{[`&:first-child ${t}-icon-dot`]:{insetInlineStart:0}}}},[`&${t}-vertical${t}-dot`]:{[`${t}-item-icon`]:{marginTop:e.calc(e.controlHeight).sub(a).div(2).equal(),marginInlineStart:0,background:"none"},[`${t}-item-process ${t}-item-icon`]:{marginTop:e.calc(e.controlHeight).sub(o).div(2).equal(),top:0,insetInlineStart:e.calc(a).sub(o).div(2).equal(),marginInlineStart:0},[`${t}-item > ${t}-item-container > ${t}-item-tail`]:{top:e.calc(e.controlHeight).sub(a).div(2).equal(),insetInlineStart:0,margin:0,padding:`${(0,z.zA)(e.calc(a).add(e.paddingXS).equal())} 0 ${(0,z.zA)(e.paddingXS)}`,"&::after":{marginInlineStart:e.calc(a).sub(e.lineWidth).div(2).equal()}},[`&${t}-small`]:{[`${t}-item-icon`]:{marginTop:e.calc(e.controlHeightSM).sub(a).div(2).equal()},[`${t}-item-process ${t}-item-icon`]:{marginTop:e.calc(e.controlHeightSM).sub(o).div(2).equal()},[`${t}-item > ${t}-item-container > ${t}-item-tail`]:{top:e.calc(e.controlHeightSM).sub(a).div(2).equal()}},[`${t}-item:first-child ${t}-icon-dot`]:{insetInlineStart:0},[`${t}-item-content`]:{width:"inherit"}}}})(e)),(e=>{let{componentCls:t,navContentMaxWidth:n,navArrowColor:r,stepsNavActiveColor:o,motionDurationSlow:a}=e;return{[`&${t}-navigation`]:{paddingTop:e.paddingSM,[`&${t}-small`]:{[`${t}-item`]:{"&-container":{marginInlineStart:e.calc(e.marginSM).mul(-1).equal()}}},[`${t}-item`]:{overflow:"visible",textAlign:"center","&-container":{display:"inline-block",height:"100%",marginInlineStart:e.calc(e.margin).mul(-1).equal(),paddingBottom:e.paddingSM,textAlign:"start",transition:`opacity ${a}`,[`${t}-item-content`]:{maxWidth:n},[`${t}-item-title`]:Object.assign(Object.assign({maxWidth:"100%",paddingInlineEnd:0},nx.L9),{"&::after":{display:"none"}})},[`&:not(${t}-item-active)`]:{[`${t}-item-container[role='button']`]:{cursor:"pointer","&:hover":{opacity:.85}}},"&:last-child":{flex:1,"&::after":{display:"none"}},"&::after":{position:"absolute",top:`calc(50% - ${(0,z.zA)(e.calc(e.paddingSM).div(2).equal())})`,insetInlineStart:"100%",display:"inline-block",width:e.fontSizeIcon,height:e.fontSizeIcon,borderTop:`${(0,z.zA)(e.lineWidth)} ${e.lineType} ${r}`,borderBottom:"none",borderInlineStart:"none",borderInlineEnd:`${(0,z.zA)(e.lineWidth)} ${e.lineType} ${r}`,transform:"translateY(-50%) translateX(-50%) rotate(45deg)",content:'""'},"&::before":{position:"absolute",bottom:0,insetInlineStart:"50%",display:"inline-block",width:0,height:e.lineWidthBold,backgroundColor:o,transition:`width ${a}, inset-inline-start ${a}`,transitionTimingFunction:"ease-out",content:'""'}},[`${t}-item${t}-item-active::before`]:{insetInlineStart:0,width:"100%"}},[`&${t}-navigation${t}-vertical`]:{[`> ${t}-item`]:{marginInlineEnd:0,"&::before":{display:"none"},[`&${t}-item-active::before`]:{top:0,insetInlineEnd:0,insetInlineStart:"unset",display:"block",width:e.calc(e.lineWidth).mul(3).equal(),height:`calc(100% - ${(0,z.zA)(e.marginLG)})`},"&::after":{position:"relative",insetInlineStart:"50%",display:"block",width:e.calc(e.controlHeight).mul(.25).equal(),height:e.calc(e.controlHeight).mul(.25).equal(),marginBottom:e.marginXS,textAlign:"center",transform:"translateY(-50%) translateX(-50%) rotate(135deg)"},"&:last-child":{"&::after":{display:"none"}},[`> ${t}-item-container > ${t}-item-tail`]:{visibility:"hidden"}}},[`&${t}-navigation${t}-horizontal`]:{[`> ${t}-item > ${t}-item-container > ${t}-item-tail`]:{visibility:"hidden"}}}})(e)),(e=>{let{componentCls:t}=e;return{[`&${t}-rtl`]:{direction:"rtl",[`${t}-item`]:{"&-subtitle":{float:"left"}},[`&${t}-navigation`]:{[`${t}-item::after`]:{transform:"rotate(-45deg)"}},[`&${t}-vertical`]:{[`> ${t}-item`]:{"&::after":{transform:"rotate(225deg)"},[`${t}-item-icon`]:{float:"right"}}},[`&${t}-dot`]:{[`${t}-item-icon ${t}-icon-dot, &${t}-small ${t}-item-icon ${t}-icon-dot`]:{float:"right"}}}}})(e)),(e=>{let{antCls:t,componentCls:n,iconSize:r,iconSizeSM:o,processIconColor:a,marginXXS:i,lineWidthBold:l,lineWidth:c,paddingXXS:s}=e,d=e.calc(r).add(e.calc(l).mul(4).equal()).equal(),u=e.calc(o).add(e.calc(e.lineWidth).mul(4).equal()).equal();return{[`&${n}-with-progress`]:{[`${n}-item`]:{paddingTop:s,[`&-process ${n}-item-container ${n}-item-icon ${n}-icon`]:{color:a}},[`&${n}-vertical > ${n}-item `]:{paddingInlineStart:s,[`> ${n}-item-container > ${n}-item-tail`]:{top:i,insetInlineStart:e.calc(r).div(2).sub(c).add(s).equal()}},[`&, &${n}-small`]:{[`&${n}-horizontal ${n}-item:first-child`]:{paddingBottom:s,paddingInlineStart:s}},[`&${n}-small${n}-vertical > ${n}-item > ${n}-item-container > ${n}-item-tail`]:{insetInlineStart:e.calc(o).div(2).sub(c).add(s).equal()},[`&${n}-label-vertical ${n}-item ${n}-item-tail`]:{top:e.calc(r).div(2).add(s).equal()},[`${n}-item-icon`]:{position:"relative",[`${t}-progress`]:{position:"absolute",insetInlineStart:"50%",top:"50%",transform:"translate(-50%, -50%)","&-inner":{width:`${(0,z.zA)(d)} !important`,height:`${(0,z.zA)(d)} !important`}}},[`&${n}-small`]:{[`&${n}-label-vertical ${n}-item ${n}-item-tail`]:{top:e.calc(o).div(2).add(s).equal()},[`${n}-item-icon ${t}-progress-inner`]:{width:`${(0,z.zA)(u)} !important`,height:`${(0,z.zA)(u)} !important`}}}}})(e)),(e=>{let{componentCls:t,inlineDotSize:n,inlineTitleColor:r,inlineTailColor:o}=e,a=e.calc(e.paddingXS).add(e.lineWidth).equal(),i={[`${t}-item-container ${t}-item-content ${t}-item-title`]:{color:r}};return{[`&${t}-inline`]:{width:"auto",display:"inline-flex",[`${t}-item`]:{flex:"none","&-container":{padding:`${(0,z.zA)(a)} ${(0,z.zA)(e.paddingXXS)} 0`,margin:`0 ${(0,z.zA)(e.calc(e.marginXXS).div(2).equal())}`,borderRadius:e.borderRadiusSM,cursor:"pointer",transition:`background-color ${e.motionDurationMid}`,"&:hover":{background:e.controlItemBgHover},"&[role='button']:hover":{opacity:1}},"&-icon":{width:n,height:n,marginInlineStart:`calc(50% - ${(0,z.zA)(e.calc(n).div(2).equal())})`,[`> ${t}-icon`]:{top:0},[`${t}-icon-dot`]:{borderRadius:e.calc(e.fontSizeSM).div(4).equal(),"&::after":{display:"none"}}},"&-content":{width:"auto",marginTop:e.calc(e.marginXS).sub(e.lineWidth).equal()},"&-title":{color:r,fontSize:e.fontSizeSM,lineHeight:e.lineHeightSM,fontWeight:"normal",marginBottom:e.calc(e.marginXXS).div(2).equal()},"&-description":{display:"none"},"&-tail":{marginInlineStart:0,top:e.calc(n).div(2).add(a).equal(),transform:"translateY(-50%)","&:after":{width:"100%",height:e.lineWidth,borderRadius:0,marginInlineStart:0,background:o}},[`&:first-child ${t}-item-tail`]:{width:"50%",marginInlineStart:"50%"},[`&:last-child ${t}-item-tail`]:{display:"block",width:"50%"},"&-wait":Object.assign({[`${t}-item-icon ${t}-icon ${t}-icon-dot`]:{backgroundColor:e.colorBorderBg,border:`${(0,z.zA)(e.lineWidth)} ${e.lineType} ${o}`}},i),"&-finish":Object.assign({[`${t}-item-tail::after`]:{backgroundColor:o},[`${t}-item-icon ${t}-icon ${t}-icon-dot`]:{backgroundColor:o,border:`${(0,z.zA)(e.lineWidth)} ${e.lineType} ${o}`}},i),"&-error":i,"&-active, &-process":Object.assign({[`${t}-item-icon`]:{width:n,height:n,marginInlineStart:`calc(50% - ${(0,z.zA)(e.calc(n).div(2).equal())})`,top:0}},i),[`&:not(${t}-item-active) > ${t}-item-container[role='button']:hover`]:{[`${t}-item-title`]:{color:r}}}}}})(e))}})((0,n$.oX)(e,{processIconColor:r,processTitleColor:o,processDescriptionColor:o,processIconBgColor:a,processIconBorderColor:a,processDotColor:a,processTailColor:d,waitTitleColor:i,waitDescriptionColor:i,waitTailColor:d,waitDotColor:t,finishIconColor:a,finishTitleColor:o,finishDescriptionColor:i,finishTailColor:a,finishDotColor:a,errorIconColor:r,errorTitleColor:c,errorDescriptionColor:c,errorTailColor:d,errorIconBgColor:c,errorIconBorderColor:c,errorDotColor:c,stepsNavActiveColor:a,stepsProgressSize:n,inlineDotSize:6,inlineTitleColor:l,inlineTailColor:s}))},e=>({titleLineHeight:e.controlHeight,customIconSize:e.controlHeight,customIconTop:0,customIconFontSize:e.controlHeightSM,iconSize:e.controlHeight,iconTop:-.5,iconFontSize:e.fontSize,iconSizeSM:e.fontSizeHeading3,dotSize:e.controlHeight/4,dotCurrentSize:e.controlHeightLG/4,navArrowColor:e.colorTextDisabled,navContentMaxWidth:"unset",descriptionMaxWidth:140,waitIconColor:e.wireframe?e.colorTextDisabled:e.colorTextLabel,waitIconBgColor:e.wireframe?e.colorBgContainer:e.colorFillContent,waitIconBorderColor:e.wireframe?e.colorTextDisabled:"transparent",finishIconBgColor:e.wireframe?e.colorBgContainer:e.controlItemBgActive,finishIconBorderColor:e.wireframe?e.colorPrimary:e.controlItemBgActive}));var nZ=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let n0=e=>{var t,n;let{percent:r,size:o,className:a,rootClassName:i,direction:l,items:c,responsive:s=!0,current:d=0,children:u,style:p}=e,f=nZ(e,["percent","size","className","rootClassName","direction","items","responsive","current","children","style"]),{xs:m}=(0,S.A)(s),{getPrefixCls:g,direction:b,className:x,style:$}=(0,tj.TP)("steps"),A=y.useMemo(()=>s&&m?"vertical":l,[s,m,l]),w=(0,nG.A)(o),C=g("steps",e.prefixCls),[O,k,j]=nJ(C),E="inline"===e.type,P=g("",e.iconPrefix),z=(t=c,n=u,t?t:(0,B.A)(n).map(e=>{if(y.isValidElement(e)){let{props:t}=e;return Object.assign({},t)}return null}).filter(e=>e)),I=E?void 0:r,M=Object.assign(Object.assign({},$),p),R=v()(x,{[`${C}-rtl`]:"rtl"===b,[`${C}-with-progress`]:void 0!==I},a,i,k,j),T={finish:y.createElement(nX.A,{className:`${C}-finish-icon`}),error:y.createElement(nU.A,{className:`${C}-error-icon`})};return O(y.createElement(nY.A,Object.assign({icons:T},f,{style:M,current:d,size:w,items:z,itemRender:E?(e,t)=>e.description?y.createElement(h.A,{title:e.description},t):t:void 0,stepIcon:({node:e,status:t})=>"process"===t&&void 0!==I?y.createElement("div",{className:`${C}-progress-icon`},y.createElement(nK.A,{type:"circle",percent:I,size:"small"===w?32:40,strokeWidth:4,format:()=>null}),e):e,direction:A,prefixCls:C,iconPrefix:P,className:R})))};n0.Step=nY.A.Step;var n1=["onFinish","step","formRef","title","stepProps"],n2=["current","onCurrentChange","submitter","stepsFormRender","stepsRender","stepFormRender","stepsProps","onFinish","formProps","containerStyle","formRef","formMapRef","layoutRender"],n4=y.createContext(void 0),n6={horizontal:function(e){var t=e.stepsDom,n=e.formDom;return(0,$.jsxs)($.Fragment,{children:[(0,$.jsx)(E.A,{gutter:{xs:8,sm:16,md:24},children:(0,$.jsx)(P.A,{span:24,children:t})}),(0,$.jsx)(E.A,{gutter:{xs:8,sm:16,md:24},children:(0,$.jsx)(P.A,{span:24,children:n})})]})},vertical:function(e){var t=e.stepsDom,n=e.formDom;return(0,$.jsxs)(E.A,{align:"stretch",wrap:!0,gutter:{xs:8,sm:16,md:24},children:[(0,$.jsx)(P.A,{xxl:4,xl:6,lg:7,md:8,sm:10,xs:12,children:y.cloneElement(t,{style:{height:"100%"}})}),(0,$.jsx)(P.A,{children:(0,$.jsx)("div",{style:{display:"flex",alignItems:"center",width:"100%",height:"100%"},children:n})})]})}},n8=y.createContext(null);function n3(e){var t,n=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-steps-form"),r=(0,x.X3)("StepsForm",function(e){var t;return[(t=(0,u.A)((0,u.A)({},e),{},{componentCls:".".concat(n)}),(0,s.A)({},t.componentCls,{"&-container":{width:"max-content",minWidth:"420px",maxWidth:"100%",margin:"auto"},"&-steps-container":(0,s.A)({maxWidth:"1160px",margin:"auto"},"".concat(t.antCls,"-steps-vertical"),{height:"100%"}),"&-step":{display:"none",marginBlockStart:"32px","&-active":{display:"block"},"> form":{maxWidth:"100%"}}}))]}),o=r.wrapSSR,l=r.hashId;e.current,e.onCurrentChange;var f=e.submitter,m=e.stepsFormRender,h=e.stepsRender,b=e.stepFormRender,A=e.stepsProps,w=e.onFinish,S=e.formProps,O=e.containerStyle,k=e.formRef,j=e.formMapRef,E=e.layoutRender,P=(0,p.A)(e,n2),z=(0,y.useRef)(new Map),I=(0,y.useRef)(new Map),M=(0,y.useRef)([]),T=(0,y.useState)([]),F=(0,c.A)(T,2),N=F[0],H=F[1],L=(0,y.useState)(!1),D=(0,c.A)(L,2),_=D[0],W=D[1],q=(0,Q.tz)(),V=(0,C.A)(0,{value:e.current,onChange:e.onCurrentChange}),X=(0,c.A)(V,2),U=X[0],Y=X[1],G=(0,y.useMemo)(function(){return n6[(null==A?void 0:A.direction)||"horizontal"]},[null==A?void 0:A.direction]),J=(0,y.useMemo)(function(){return U===N.length-1},[N.length,U]),ee=(0,y.useCallback)(function(e,t){I.current.has(e)||H(function(t){return[].concat((0,d.A)(t),[e])}),I.current.set(e,t)},[]),et=(0,y.useCallback)(function(e){H(function(t){return t.filter(function(t){return t!==e})}),I.current.delete(e),z.current.delete(e)},[]);(0,y.useImperativeHandle)(j,function(){return M.current},[M.current]),(0,y.useImperativeHandle)(k,function(){var e;return null==(e=M.current[U||0])?void 0:e.current},[U,M.current]);var en=(0,y.useCallback)((t=(0,i.A)((0,a.A)().mark(function e(t,n){var r;return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(z.current.set(t,n),!(!J||!w)){e.next=3;break}return e.abrupt("return");case 3:return W(!0),r=ef.apply(void 0,[{}].concat((0,d.A)(Array.from(z.current.values())))),e.prev=5,e.next=8,w(r);case 8:e.sent&&(Y(0),M.current.forEach(function(e){var t;return null==(t=e.current)?void 0:t.resetFields()})),e.next=15;break;case 12:e.prev=12,e.t0=e.catch(5),console.log(e.t0);case 15:return e.prev=15,W(!1),e.finish(15);case 18:case"end":return e.stop()}},e,null,[[5,12,15,18]])})),function(e,n){return t.apply(this,arguments)}),[J,w,W,Y]),er=(0,y.useMemo)(function(){var e=tc(R.A,"4.24.0")>-1,t=e?{items:N.map(function(e){var t=I.current.get(e);return(0,u.A)({key:e,title:null==t?void 0:t.title},null==t?void 0:t.stepProps)})}:{};return(0,$.jsx)("div",{className:"".concat(n,"-steps-container ").concat(l).trim(),style:{maxWidth:Math.min(320*N.length,1160)},children:(0,$.jsx)(n0,(0,u.A)((0,u.A)((0,u.A)({},A),t),{},{current:U,onChange:void 0,children:!e&&N.map(function(e){var t=I.current.get(e);return(0,$.jsx)(n0.Step,(0,u.A)({title:null==t?void 0:t.title},null==t?void 0:t.stepProps),e)})}))})},[N,l,n,U,A]),eo=Z(function(){var e;null==(e=M.current[U].current)||e.submit()}),ea=Z(function(){U<1||Y(U-1)}),ei=(0,y.useMemo)(function(){return!1!==f&&(0,$.jsx)(ek.Ay,(0,u.A)((0,u.A)({type:"primary",loading:_},null==f?void 0:f.submitButtonProps),{},{onClick:function(){var e;null==f||null==(e=f.onSubmit)||e.call(f),eo()},children:q.getMessage("stepsForm.next","下一步")}),"next")},[q,_,eo,f]),el=(0,y.useMemo)(function(){return!1!==f&&(0,$.jsx)(ek.Ay,(0,u.A)((0,u.A)({},null==f?void 0:f.resetButtonProps),{},{onClick:function(){var e;ea(),null==f||null==(e=f.onReset)||e.call(f)},children:q.getMessage("stepsForm.prev","上一步")}),"pre")},[q,ea,f]),ec=(0,y.useMemo)(function(){return!1!==f&&(0,$.jsx)(ek.Ay,(0,u.A)((0,u.A)({type:"primary",loading:_},null==f?void 0:f.submitButtonProps),{},{onClick:function(){var e;null==f||null==(e=f.onSubmit)||e.call(f),eo()},children:q.getMessage("stepsForm.submit","提交")}),"submit")},[q,_,eo,f]),es=Z(function(){U>N.length-2||Y(U+1)}),ed=(0,y.useMemo)(function(){var e=[],t=U||0;if(t<1?1===N.length?e.push(ec):e.push(ei):t+1===N.length?e.push(el,ec):e.push(el,ei),e=e.filter(y.isValidElement),f&&f.render){var n,r={form:null==(n=M.current[U])?void 0:n.current,onSubmit:eo,step:U,onPre:ea};return f.render(r,e)}return f&&(null==f?void 0:f.render)===!1?null:e},[N.length,ei,eo,el,ea,U,ec,f]),eu=(0,y.useMemo)(function(){return(0,B.A)(e.children).map(function(e,t){var r=e.props,o=r.name||"".concat(t),a=U===t,i=a?{contentRender:b,submitter:!1}:{};return(0,$.jsx)("div",{className:v()("".concat(n,"-step"),l,(0,s.A)({},"".concat(n,"-step-active"),a)),children:(0,$.jsx)(n8.Provider,{value:(0,u.A)((0,u.A)((0,u.A)((0,u.A)({},i),S),r),{},{name:o,step:t}),children:e})},o)})},[S,l,n,e.children,U,b]),ep=(0,y.useMemo)(function(){return h?h(N.map(function(e){var t;return{key:e,title:null==(t=I.current.get(e))?void 0:t.title}}),er):er},[N,er,h]),em=(0,y.useMemo)(function(){return(0,$.jsxs)("div",{className:"".concat(n,"-container ").concat(l).trim(),style:O,children:[eu,m?null:(0,$.jsx)(eZ.A,{children:ed})]})},[O,eu,l,n,m,ed]),eg=(0,y.useMemo)(function(){var e={stepsDom:ep,formDom:em};if(m)if(E)return m(E(e),ed);else return m(G(e),ed);return E?E(e):G(e)},[ep,em,G,m,ed,E]);return o((0,$.jsx)("div",{className:v()(n,l),children:(0,$.jsx)(K.A.Provider,(0,u.A)((0,u.A)({},P),{},{children:(0,$.jsx)(n4.Provider,{value:{loading:_,setLoading:W,regForm:ee,keyArray:N,next:es,formArrayRef:M,formMapRef:I,lastStep:J,unRegForm:et,onFormFinish:en},children:eg})}))}))}function n5(e){return(0,$.jsx)(Q.TY,{needDeps:!0,children:(0,$.jsx)(n3,(0,u.A)({},e))})}n5.StepForm=function(e){var t,n=(0,y.useRef)(),r=(0,y.useContext)(n4),o=(0,y.useContext)(n8),l=(0,u.A)((0,u.A)({},e),o),c=l.onFinish,s=l.step,d=l.formRef,f=(l.title,l.stepProps,(0,p.A)(l,n1));return(0,T.g9)(!f.submitter,"StepForm 不包含提交按钮,请在 StepsForm 上"),(0,y.useImperativeHandle)(d,function(){return n.current},[null==d?void 0:d.current]),(0,y.useEffect)(function(){if(l.name||l.step){var e=(l.name||l.step).toString();return null==r||r.regForm(e,l),function(){null==r||r.unRegForm(e)}}},[]),r&&null!=r&&r.formArrayRef&&(r.formArrayRef.current[s||0]=n),(0,$.jsx)(eJ,(0,u.A)({formRef:n,onFinish:(t=(0,i.A)((0,a.A)().mark(function e(t){return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(f.name&&(null==r||r.onFormFinish(f.name,t)),!c){e.next=9;break}return null==r||r.setLoading(!0),e.next=5,null==c?void 0:c(t);case 5:return e.sent&&(null==r||r.next()),null==r||r.setLoading(!1),e.abrupt("return");case 9:null!=r&&r.lastStep||null==r||r.next();case 10:case"end":return e.stop()}},e)})),function(e){return t.apply(this,arguments)}),onInit:function(e,t){var o;n.current=t,r&&null!=r&&r.formArrayRef&&(r.formArrayRef.current[s||0]=n),null==f||null==(o=f.onInit)||o.call(f,e,t)},layout:"vertical"},(0,O.A)(f,["layoutType","columns"])))},n5.useForm=K.A.useForm;var n7=["steps","columns","forceUpdate","grid"],n9=["name","originDependencies","children","ignoreFormListField"],re=function(e){var t=e.name,n=e.originDependencies,r=void 0===n?t:n,o=e.children,a=e.ignoreFormListField,i=(0,p.A)(e,n9),l=(0,y.useContext)(er),c=(0,y.useContext)(eq),s=(0,y.useMemo)(function(){return t.map(function(e){var t,n=[e];return!a&&void 0!==c.name&&null!=(t=c.listName)&&t.length&&n.unshift(c.listName),n.flat(1)})},[c.listName,c.name,a,null==t?void 0:t.toString()]);return(0,$.jsx)(K.A.Item,(0,u.A)((0,u.A)({},i),{},{noStyle:!0,shouldUpdate:function(e,t,n){if("boolean"==typeof i.shouldUpdate)return i.shouldUpdate;if("function"==typeof i.shouldUpdate){var r;return null==(r=i.shouldUpdate)?void 0:r.call(i,e,t,n)}return s.some(function(n){return!en((0,ed.A)(e,n),(0,ed.A)(t,n))})},children:function(e){for(var n={},a=0;a1&&void 0!==arguments[1]&&arguments[1],n="".concat("valueType request plain renderFormItem render text formItemProps valueEnum"," ").concat("fieldProps isDefaultDom groupProps contentRender submitterProps submitter").split(/[\s\n]+/),r={};return Object.keys(e||{}).forEach(function(o){(!n.includes(o)||t)&&(r[o]=e[o])}),r}var rr=n(68101),ro=n(52193),ra=n(54121),ri=n(40682),rl=n(31108);let rc=new z.Mo("antStatusProcessing",{"0%":{transform:"scale(0.8)",opacity:.5},"100%":{transform:"scale(2.4)",opacity:0}}),rs=new z.Mo("antZoomBadgeIn",{"0%":{transform:"scale(0) translate(50%, -50%)",opacity:0},"100%":{transform:"scale(1) translate(50%, -50%)"}}),rd=new z.Mo("antZoomBadgeOut",{"0%":{transform:"scale(1) translate(50%, -50%)"},"100%":{transform:"scale(0) translate(50%, -50%)",opacity:0}}),ru=new z.Mo("antNoWrapperZoomBadgeIn",{"0%":{transform:"scale(0)",opacity:0},"100%":{transform:"scale(1)"}}),rp=new z.Mo("antNoWrapperZoomBadgeOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0)",opacity:0}}),rf=new z.Mo("antBadgeLoadingCircle",{"0%":{transformOrigin:"50%"},"100%":{transform:"translate(50%, -50%) rotate(360deg)",transformOrigin:"50%"}}),rm=e=>{let{fontHeight:t,lineWidth:n,marginXS:r,colorBorderBg:o}=e,a=e.colorTextLightSolid,i=e.colorError,l=e.colorErrorHover;return(0,n$.oX)(e,{badgeFontHeight:t,badgeShadowSize:n,badgeTextColor:a,badgeColor:i,badgeColorHover:l,badgeShadowColor:o,badgeProcessingDuration:"1.2s",badgeRibbonOffset:r,badgeRibbonCornerTransform:"scaleY(0.75)",badgeRibbonCornerFilter:"brightness(75%)"})},rg=e=>{let{fontSize:t,lineHeight:n,fontSizeSM:r,lineWidth:o}=e;return{indicatorZIndex:"auto",indicatorHeight:Math.round(t*n)-2*o,indicatorHeightSM:t,dotSize:r/2,textFontSize:r,textFontSizeSM:r,textFontWeight:"normal",statusSize:r/2}},rh=(0,tB.OF)("Badge",e=>(e=>{let{componentCls:t,iconCls:n,antCls:r,badgeShadowSize:o,textFontSize:a,textFontSizeSM:i,statusSize:l,dotSize:c,textFontWeight:s,indicatorHeight:d,indicatorHeightSM:u,marginXS:p,calc:f}=e,m=`${r}-scroll-number`,g=(0,rl.A)(e,(e,{darkColor:n})=>({[`&${t} ${t}-color-${e}`]:{background:n,[`&:not(${t}-count)`]:{color:n},"a:hover &":{background:n}}}));return{[t]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,nx.dF)(e)),{position:"relative",display:"inline-block",width:"fit-content",lineHeight:1,[`${t}-count`]:{display:"inline-flex",justifyContent:"center",zIndex:e.indicatorZIndex,minWidth:d,height:d,color:e.badgeTextColor,fontWeight:s,fontSize:a,lineHeight:(0,z.zA)(d),whiteSpace:"nowrap",textAlign:"center",background:e.badgeColor,borderRadius:f(d).div(2).equal(),boxShadow:`0 0 0 ${(0,z.zA)(o)} ${e.badgeShadowColor}`,transition:`background ${e.motionDurationMid}`,a:{color:e.badgeTextColor},"a:hover":{color:e.badgeTextColor},"a:hover &":{background:e.badgeColorHover}},[`${t}-count-sm`]:{minWidth:u,height:u,fontSize:i,lineHeight:(0,z.zA)(u),borderRadius:f(u).div(2).equal()},[`${t}-multiple-words`]:{padding:`0 ${(0,z.zA)(e.paddingXS)}`,bdi:{unicodeBidi:"plaintext"}},[`${t}-dot`]:{zIndex:e.indicatorZIndex,width:c,minWidth:c,height:c,background:e.badgeColor,borderRadius:"100%",boxShadow:`0 0 0 ${(0,z.zA)(o)} ${e.badgeShadowColor}`},[`${t}-count, ${t}-dot, ${m}-custom-component`]:{position:"absolute",top:0,insetInlineEnd:0,transform:"translate(50%, -50%)",transformOrigin:"100% 0%",[`&${n}-spin`]:{animationName:rf,animationDuration:"1s",animationIterationCount:"infinite",animationTimingFunction:"linear"}},[`&${t}-status`]:{lineHeight:"inherit",verticalAlign:"baseline",[`${t}-status-dot`]:{position:"relative",top:-1,display:"inline-block",width:l,height:l,verticalAlign:"middle",borderRadius:"50%"},[`${t}-status-success`]:{backgroundColor:e.colorSuccess},[`${t}-status-processing`]:{overflow:"visible",color:e.colorInfo,backgroundColor:e.colorInfo,borderColor:"currentcolor","&::after":{position:"absolute",top:0,insetInlineStart:0,width:"100%",height:"100%",borderWidth:o,borderStyle:"solid",borderColor:"inherit",borderRadius:"50%",animationName:rc,animationDuration:e.badgeProcessingDuration,animationIterationCount:"infinite",animationTimingFunction:"ease-in-out",content:'""'}},[`${t}-status-default`]:{backgroundColor:e.colorTextPlaceholder},[`${t}-status-error`]:{backgroundColor:e.colorError},[`${t}-status-warning`]:{backgroundColor:e.colorWarning},[`${t}-status-text`]:{marginInlineStart:p,color:e.colorText,fontSize:e.fontSize}}}),g),{[`${t}-zoom-appear, ${t}-zoom-enter`]:{animationName:rs,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack,animationFillMode:"both"},[`${t}-zoom-leave`]:{animationName:rd,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack,animationFillMode:"both"},[`&${t}-not-a-wrapper`]:{[`${t}-zoom-appear, ${t}-zoom-enter`]:{animationName:ru,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack},[`${t}-zoom-leave`]:{animationName:rp,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack},[`&:not(${t}-status)`]:{verticalAlign:"middle"},[`${m}-custom-component, ${t}-count`]:{transform:"none"},[`${m}-custom-component, ${m}`]:{position:"relative",top:"auto",display:"block",transformOrigin:"50% 50%"}},[m]:{overflow:"hidden",transition:`all ${e.motionDurationMid} ${e.motionEaseOutBack}`,[`${m}-only`]:{position:"relative",display:"inline-block",height:d,transition:`all ${e.motionDurationSlow} ${e.motionEaseOutBack}`,WebkitTransformStyle:"preserve-3d",WebkitBackfaceVisibility:"hidden",[`> p${m}-only-unit`]:{height:d,margin:0,WebkitTransformStyle:"preserve-3d",WebkitBackfaceVisibility:"hidden"}},[`${m}-symbol`]:{verticalAlign:"top"}},"&-rtl":{direction:"rtl",[`${t}-count, ${t}-dot, ${m}-custom-component`]:{transform:"translate(-50%, -50%)"}}})}})(rm(e)),rg),rb=(0,tB.OF)(["Badge","Ribbon"],e=>(e=>{let{antCls:t,badgeFontHeight:n,marginXS:r,badgeRibbonOffset:o,calc:a}=e,i=`${t}-ribbon`,l=`${t}-ribbon-wrapper`,c=(0,rl.A)(e,(e,{darkColor:t})=>({[`&${i}-color-${e}`]:{background:t,color:t}}));return{[l]:{position:"relative"},[i]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,nx.dF)(e)),{position:"absolute",top:r,padding:`0 ${(0,z.zA)(e.paddingXS)}`,color:e.colorPrimary,lineHeight:(0,z.zA)(n),whiteSpace:"nowrap",backgroundColor:e.colorPrimary,borderRadius:e.borderRadiusSM,[`${i}-text`]:{color:e.badgeTextColor},[`${i}-corner`]:{position:"absolute",top:"100%",width:o,height:o,color:"currentcolor",border:`${(0,z.zA)(a(o).div(2).equal())} solid`,transform:e.badgeRibbonCornerTransform,transformOrigin:"top",filter:e.badgeRibbonCornerFilter}}),c),{[`&${i}-placement-end`]:{insetInlineEnd:a(o).mul(-1).equal(),borderEndEndRadius:0,[`${i}-corner`]:{insetInlineEnd:0,borderInlineEndColor:"transparent",borderBlockEndColor:"transparent"}},[`&${i}-placement-start`]:{insetInlineStart:a(o).mul(-1).equal(),borderEndStartRadius:0,[`${i}-corner`]:{insetInlineStart:0,borderBlockEndColor:"transparent",borderInlineStartColor:"transparent"}},"&-rtl":{direction:"rtl"}})}})(rm(e)),rg),rv=e=>{let t,{prefixCls:n,value:r,current:o,offset:a=0}=e;return a&&(t={position:"absolute",top:`${a}00%`,left:0}),y.createElement("span",{style:t,className:v()(`${n}-only-unit`,{current:o})},r)},ry=e=>{let t,n,{prefixCls:r,count:o,value:a}=e,i=Number(a),l=Math.abs(o),[c,s]=y.useState(i),[d,u]=y.useState(l),p=()=>{s(i),u(l)};if(y.useEffect(()=>{let e=setTimeout(p,1e3);return()=>clearTimeout(e)},[i]),c===i||Number.isNaN(i)||Number.isNaN(c))t=[y.createElement(rv,Object.assign({},e,{key:i,current:!0}))],n={transition:"none"};else{t=[];let r=i+10,o=[];for(let e=i;e<=r;e+=1)o.push(e);let a=de%10===c);t=(a<0?o.slice(0,s+1):o.slice(s)).map((t,n)=>y.createElement(rv,Object.assign({},e,{key:t,value:t%10,offset:a<0?n-s:n,current:n===s}))),n={transform:`translateY(${-function(e,t,n){let r=e,o=0;for(;(r+10)%10!==t;)r+=n,o+=n;return o}(c,i,a)}00%)`}}return y.createElement("span",{className:`${r}-only`,style:n,onTransitionEnd:p},t)};var rx=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let r$=y.forwardRef((e,t)=>{let{prefixCls:n,count:r,className:o,motionClassName:a,style:i,title:l,show:c,component:s="sup",children:d}=e,u=rx(e,["prefixCls","count","className","motionClassName","style","title","show","component","children"]),{getPrefixCls:p}=y.useContext(tj.QO),f=p("scroll-number",n),m=Object.assign(Object.assign({},u),{"data-show":c,style:i,className:v()(f,o,a),title:l}),g=r;if(r&&Number(r)%1==0){let e=String(r).split("");g=y.createElement("bdi",null,e.map((t,n)=>y.createElement(ry,{prefixCls:f,count:Number(r),value:t,key:e.length-n})))}return((null==i?void 0:i.borderColor)&&(m.style=Object.assign(Object.assign({},i),{boxShadow:`0 0 0 1px ${i.borderColor} inset`})),d)?(0,ri.Ob)(d,e=>({className:v()(`${f}-custom-component`,null==e?void 0:e.className,a)})):y.createElement(s,Object.assign({},m,{ref:t}),g)});var rA=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let rw=y.forwardRef((e,t)=>{var n,r,o,a,i;let{prefixCls:l,scrollNumberPrefixCls:c,children:s,status:d,text:u,color:p,count:f=null,overflowCount:m=99,dot:g=!1,size:h="default",title:b,offset:x,style:$,className:A,rootClassName:w,classNames:S,styles:C,showZero:O=!1}=e,k=rA(e,["prefixCls","scrollNumberPrefixCls","children","status","text","color","count","overflowCount","dot","size","title","offset","style","className","rootClassName","classNames","styles","showZero"]),{getPrefixCls:j,direction:E,badge:P}=y.useContext(tj.QO),z=j("badge",l),[I,M,R]=rh(z),B=f>m?`${m}+`:f,T="0"===B||0===B||"0"===u||0===u,F=null===f||T&&!O,N=(null!=d||null!=p)&&F,H=null!=d||!T,L=g&&!T,D=L?"":B,_=(0,y.useMemo)(()=>((null==D||""===D)&&(null==u||""===u)||T&&!O)&&!L,[D,T,O,L,u]),W=(0,y.useRef)(f);_||(W.current=f);let q=W.current,V=(0,y.useRef)(D);_||(V.current=D);let X=V.current,U=(0,y.useRef)(L);_||(U.current=L);let Y=(0,y.useMemo)(()=>{if(!x)return Object.assign(Object.assign({},null==P?void 0:P.style),$);let e={marginTop:x[1]};return"rtl"===E?e.left=Number.parseInt(x[0],10):e.right=-Number.parseInt(x[0],10),Object.assign(Object.assign(Object.assign({},e),null==P?void 0:P.style),$)},[E,x,$,null==P?void 0:P.style]),G=null!=b?b:"string"==typeof q||"number"==typeof q?q:void 0,K=!_&&(0===u?O:!!u&&!0!==u),Q=K?y.createElement("span",{className:`${z}-status-text`},u):null,J=q&&"object"==typeof q?(0,ri.Ob)(q,e=>({style:Object.assign(Object.assign({},Y),e.style)})):void 0,Z=(0,ra.nP)(p,!1),ee=v()(null==S?void 0:S.indicator,null==(n=null==P?void 0:P.classNames)?void 0:n.indicator,{[`${z}-status-dot`]:N,[`${z}-status-${d}`]:!!d,[`${z}-color-${p}`]:Z}),et={};p&&!Z&&(et.color=p,et.background=p);let en=v()(z,{[`${z}-status`]:N,[`${z}-not-a-wrapper`]:!s,[`${z}-rtl`]:"rtl"===E},A,w,null==P?void 0:P.className,null==(r=null==P?void 0:P.classNames)?void 0:r.root,null==S?void 0:S.root,M,R);if(!s&&N&&(u||H||!F)){let e=Y.color;return I(y.createElement("span",Object.assign({},k,{className:en,style:Object.assign(Object.assign(Object.assign({},null==C?void 0:C.root),null==(o=null==P?void 0:P.styles)?void 0:o.root),Y)}),y.createElement("span",{className:ee,style:Object.assign(Object.assign(Object.assign({},null==C?void 0:C.indicator),null==(a=null==P?void 0:P.styles)?void 0:a.indicator),et)}),K&&y.createElement("span",{style:{color:e},className:`${z}-status-text`},u)))}return I(y.createElement("span",Object.assign({ref:t},k,{className:en,style:Object.assign(Object.assign({},null==(i=null==P?void 0:P.styles)?void 0:i.root),null==C?void 0:C.root)}),s,y.createElement(ro.Ay,{visible:!_,motionName:`${z}-zoom`,motionAppear:!1,motionDeadline:1e3},({className:e})=>{var t,n;let r=j("scroll-number",c),o=U.current,a=v()(null==S?void 0:S.indicator,null==(t=null==P?void 0:P.classNames)?void 0:t.indicator,{[`${z}-dot`]:o,[`${z}-count`]:!o,[`${z}-count-sm`]:"small"===h,[`${z}-multiple-words`]:!o&&X&&X.toString().length>1,[`${z}-status-${d}`]:!!d,[`${z}-color-${p}`]:Z}),i=Object.assign(Object.assign(Object.assign({},null==C?void 0:C.indicator),null==(n=null==P?void 0:P.styles)?void 0:n.indicator),Y);return p&&!Z&&((i=i||{}).background=p),y.createElement(r$,{prefixCls:r,show:!_,motionClassName:e,className:a,count:X,title:G,style:i,key:"scrollNumber"},J)}),Q))});rw.Ribbon=e=>{let{className:t,prefixCls:n,style:r,color:o,children:a,text:i,placement:l="end",rootClassName:c}=e,{getPrefixCls:s,direction:d}=y.useContext(tj.QO),u=s("ribbon",n),p=`${u}-wrapper`,[f,m,g]=rb(u,p),h=(0,ra.nP)(o,!1),b=v()(u,`${u}-placement-${l}`,{[`${u}-rtl`]:"rtl"===d,[`${u}-color-${o}`]:h},t),x={},$={};return o&&!h&&(x.background=o,$.color=o),f(y.createElement("div",{className:v()(p,c,m,g)},a,y.createElement("div",{className:v()(b,m),style:Object.assign(Object.assign({},x),r)},y.createElement("span",{className:`${u}-text`},i),y.createElement("div",{className:`${u}-corner`,style:$}))))};var rS=function(e){var t=e.color,n=e.children;return(0,$.jsx)(rw,{color:t,text:n})},rC=function(e){var t;return"map"===("string"===(t=Object.prototype.toString.call(e).match(/^\[object (.*)\]$/)[1].toLowerCase())&&"object"===(0,l.A)(e)?"object":null===e?"null":void 0===e?"undefined":t)?e:new Map(Object.entries(e||{}))},rO={Success:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"success",text:t})},Error:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"error",text:t})},Default:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"default",text:t})},Processing:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"processing",text:t})},Warning:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"warning",text:t})},success:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"success",text:t})},error:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"error",text:t})},default:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"default",text:t})},processing:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"processing",text:t})},warning:function(e){var t=e.children;return(0,$.jsx)(rw,{status:"warning",text:t})}},rk=function e(t,n,r){if(Array.isArray(t))return(0,$.jsx)(eZ.A,{split:",",size:2,wrap:!0,children:t.map(function(t,r){return e(t,n,r)})},r);var o=rC(n);if(!o.has(t)&&!o.has("".concat(t)))return(null==t?void 0:t.label)||t;var a=o.get(t)||o.get("".concat(t));if(!a)return(0,$.jsx)(y.Fragment,{children:(null==t?void 0:t.label)||t},r);var i=a.status,l=a.color,c=rO[i||"Init"];return c?(0,$.jsx)(c,{children:a.text},r):l?(0,$.jsx)(rS,{color:l,children:a.text},r):(0,$.jsx)(y.Fragment,{children:a.text||a},r)},rj=function(e){return void 0===e?{}:0>=tc(R.A,"5.13.0")?{bordered:e}:{variant:e?void 0:"borderless"}},rE=n(60209),rP=n(4811),rz=n(36492),rI=n(95725),rM=["label","prefixCls","onChange","value","mode","children","defaultValue","size","showSearch","disabled","style","className","bordered","options","onSearch","allowClear","labelInValue","fieldNames","lightLabel","labelTrigger","optionFilterProp","optionLabelProp","valueMaxLength","fetchDataOnSearch","fetchData"],rR=function(e,t){return"object"!==(0,l.A)(t)?e[t]||t:e[null==t?void 0:t.value]||t.label};let rB=y.forwardRef(function(e,t){var n=e.label,r=e.prefixCls,o=e.onChange,a=e.value,i=e.mode,l=(e.children,e.defaultValue,e.size),d=e.showSearch,f=e.disabled,m=e.style,h=e.className,b=e.bordered,A=e.options,w=e.onSearch,S=e.allowClear,C=e.labelInValue,O=e.fieldNames,k=e.lightLabel,j=e.labelTrigger,E=e.optionFilterProp,P=e.optionLabelProp,z=void 0===P?"":P,I=e.valueMaxLength,M=e.fetchDataOnSearch,R=void 0!==M&&M,T=e.fetchData,F=(0,p.A)(e,rM),N=e.placeholder,H=void 0===N?n:N,L=O||{},D=L.label,_=void 0===D?"label":D,W=L.value,q=void 0===W?"value":W,V=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-field-select-light-select"),X=(0,y.useState)(!1),U=(0,c.A)(X,2),Y=U[0],G=U[1],K=(0,y.useState)(""),Q=(0,c.A)(K,2),J=Q[0],Z=Q[1],ee=(0,x.X3)("LightSelect",function(e){return(0,s.A)({},".".concat(V),(0,s.A)((0,s.A)({},"".concat(e.antCls,"-select"),{position:"absolute",width:"153px",height:"28px",visibility:"hidden","&-selector":{height:28}}),"&.".concat(V,"-searchable"),(0,s.A)({},"".concat(e.antCls,"-select"),{width:"200px","&-selector":{height:28}})))}),et=ee.wrapSSR,en=ee.hashId,er=(0,y.useMemo)(function(){var e={};return null==A||A.forEach(function(t){var n=t[z]||t[_],r=t[q];e[r]=n||r}),e},[_,A,q,z]),eo=(0,y.useMemo)(function(){return Reflect.has(F,"open")?null==F?void 0:F.open:Y},[Y,F]),ea=Array.isArray(a)?a.map(function(e){return rR(er,e)}):rR(er,a);return et((0,$.jsxs)("div",{className:v()(V,en,(0,s.A)({},"".concat(V,"-searchable"),d),"".concat(V,"-container-").concat(F.placement||"bottomLeft"),h),style:m,onClick:function(e){if(!f){var t;(null==k||null==(t=k.current)||null==(t=t.labelRef)||null==(t=t.current)?void 0:t.contains(e.target))&&G(!Y)}},children:[(0,$.jsx)(rz.A,(0,u.A)((0,u.A)((0,u.A)({},F),{},{allowClear:S,value:a,mode:i,labelInValue:C,size:l,disabled:f,onChange:function(e,t){null==o||o(e,t),"multiple"!==i&&G(!1)}},rj(b)),{},{showSearch:d,onSearch:d?function(e){R&&T&&T(e),null==w||w(e)}:void 0,style:m,dropdownRender:function(e){return(0,$.jsxs)("div",{ref:t,children:[d&&(0,$.jsx)("div",{style:{margin:"4px 8px"},children:(0,$.jsx)(rI.A,{value:J,allowClear:!!S,onChange:function(e){Z(e.target.value),R&&T&&T(e.target.value),null==w||w(e.target.value)},onKeyDown:function(e){"Backspace"===e.key?e.stopPropagation():("ArrowUp"===e.key||"ArrowDown"===e.key)&&e.preventDefault()},style:{width:"100%"},prefix:(0,$.jsx)(rP.A,{})})}),e]})},open:eo,onDropdownVisibleChange:function(e){var t;e||Z(""),j||G(e),null==F||null==(t=F.onDropdownVisibleChange)||t.call(F,e)},prefixCls:r,options:w||!J?A:null==A?void 0:A.filter(function(e){var t,n;return E?(0,B.A)(e[E]).join("").toLowerCase().includes(J):(null==(t=String(e[_]))||null==(t=t.toLowerCase())?void 0:t.includes(null==J?void 0:J.toLowerCase()))||(null==(n=e[q])||null==(n=n.toString())||null==(n=n.toLowerCase())?void 0:n.includes(null==J?void 0:J.toLowerCase()))})})),(0,$.jsx)(tm,{ellipsis:!0,label:n,placeholder:H,disabled:f,bordered:b,allowClear:!!S,value:ea||(null==a?void 0:a.label)||a,onClear:function(){null==o||o(void 0,void 0)},ref:k,valueMaxLength:void 0===I?41:I})]}))});var rT=["optionItemRender","mode","onSearch","onFocus","onChange","autoClearSearchValue","searchOnFocus","resetAfterSelect","fetchDataOnSearch","optionFilterProp","optionLabelProp","className","disabled","options","fetchData","resetData","prefixCls","onClear","searchValue","showSearch","fieldNames","defaultSearchValue","preserveOriginalLabel"],rF=["className","optionType"];let rN=y.forwardRef(function(e,t){var n=e.optionItemRender,r=e.mode,o=e.onSearch,a=e.onFocus,i=e.onChange,l=e.autoClearSearchValue,d=void 0===l||l,f=e.searchOnFocus,m=void 0!==f&&f,h=e.resetAfterSelect,b=void 0!==h&&h,x=e.fetchDataOnSearch,A=void 0===x||x,w=e.optionFilterProp,S=void 0===w?"label":w,C=e.optionLabelProp,O=e.className,k=e.disabled,j=e.options,E=e.fetchData,P=e.resetData,z=e.prefixCls,I=e.onClear,M=e.searchValue,R=e.showSearch,B=e.fieldNames,T=e.defaultSearchValue,F=e.preserveOriginalLabel,N=void 0!==F&&F,H=(0,p.A)(e,rT),L=B||{},D=L.label,_=void 0===D?"label":D,W=L.value,q=void 0===W?"value":W,V=L.options,X=void 0===V?"options":V,U=(0,y.useState)(null!=M?M:T),Y=(0,c.A)(U,2),G=Y[0],K=Y[1],Q=(0,y.useRef)();(0,y.useImperativeHandle)(t,function(){return Q.current}),(0,y.useEffect)(function(){if(H.autoFocus){var e;null==Q||null==(e=Q.current)||e.focus()}},[H.autoFocus]),(0,y.useEffect)(function(){K(M)},[M]);var J=(0,(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls)("pro-filed-search-select",z),Z=v()(J,O,(0,s.A)({},"".concat(J,"-disabled"),k));return(0,$.jsx)(rz.A,(0,u.A)((0,u.A)({ref:Q,className:Z,allowClear:!0,autoClearSearchValue:d,disabled:k,mode:r,showSearch:R,searchValue:G,optionFilterProp:S,optionLabelProp:void 0===C?"label":C,onClear:function(){null==I||I(),E(void 0),R&&K(void 0)}},H),{},{filterOption:!1!=H.filterOption&&function(e,t){var n,r;return H.filterOption&&"function"==typeof H.filterOption?H.filterOption(e,(0,u.A)((0,u.A)({},t),{},{label:null==t?void 0:t.data_title})):!!(null!=t&&null!=(n=t.data_title)&&n.toString().toLowerCase().includes(e.toLowerCase())||null!=t&&null!=(r=t[S])&&r.toString().toLowerCase().includes(e.toLowerCase()))},onSearch:R?function(e){A&&E(e),null==o||o(e),K(e)}:void 0,onChange:function(t,n){R&&d&&(E(void 0),null==o||o(""),K(void 0));for(var a=arguments.length,l=Array(a>2?a-2:0),c=2;c0?t.map(function(e,t){var r=null==n?void 0:n[t],o=null==r?void 0:r["data-item"];return(0,u.A)((0,u.A)((0,u.A)({},o||{}),e),{},{label:N&&o?o.label:e.label})}):[];null==i||i.apply(void 0,[f,n].concat(l)),b&&P()},onFocus:function(e){m&&E(G),null==a||a(e)},options:function e(t){return t.map(function(t,r){var o,a=t.className,i=t.optionType,l=(0,p.A)(t,rF),c=t[_],s=t[q],d=null!=(o=t[X])?o:[];return"optGroup"===i||t.options?(0,u.A)((0,u.A)({label:c},l),{},{data_title:c,title:c,key:null!=s?s:"".concat(null==c?void 0:c.toString(),"-").concat(r,"-").concat(ei()),children:e(d)}):(0,u.A)((0,u.A)({title:c},l),{},{data_title:c,value:null!=s?s:r,key:null!=s?s:"".concat(null==c?void 0:c.toString(),"-").concat(r,"-").concat(ei()),"data-item":t,className:"".concat(J,"-option ").concat(a||"").trim(),label:(null==n?void 0:n(t))||c})})}(j||[])}))});var rH=["value","text"],rL=["mode","valueEnum","render","renderFormItem","request","fieldProps","plain","children","light","proFieldKey","params","label","bordered","id","lightLabel","labelTrigger"],rD=function(e){for(var t=e.label,n=e.words,r=(0,y.useContext)(g.Ay.ConfigContext).getPrefixCls,o=r("pro-select-item-option-content-light"),a=r("pro-select-item-option-content"),i=(0,x.X3)("Highlight",function(e){return(0,s.A)((0,s.A)({},".".concat(o),{color:e.colorPrimary}),".".concat(a),{flex:"auto",overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"})}).wrapSSR,l=RegExp(n.map(function(e){return e.replace(/[-[\]/{}()*+?.\\^$|]/g,"\\$&")}).join("|"),"gi"),c=t,d=[];c.length;){var u=l.exec(c);if(!u){d.push(c);break}var p=u.index,f=u[0].length+p;d.push(c.slice(0,p),y.createElement("span",{className:o},c.slice(p,f))),c=c.slice(f)}return i(y.createElement.apply(y,["div",{title:t,className:a}].concat(d)))};function r_(e,t){var n,r;return!!(!t||null!=e&&null!=(n=e.label)&&n.toString().toLowerCase().includes(t.toLowerCase())||null!=e&&null!=(r=e.value)&&r.toString().toLowerCase().includes(t.toLowerCase())||(e.children||e.options)&&[].concat((0,d.A)(e.children||[]),[e.options||[]]).find(function(e){return r_(e,t)}))||!1}var rW=function(e){var t=[],n=rC(e);return n.forEach(function(e,r){var o=n.get(r)||n.get("".concat(r));if(o){if("object"===(0,l.A)(o)&&null!=o&&o.text)return void t.push({text:null==o?void 0:o.text,value:r,label:null==o?void 0:o.text,disabled:o.disabled});t.push({text:o,value:r})}}),t},rq=function(e){var t,n,r,o,a=e.cacheForSwr,i=e.fieldProps,l=(0,y.useState)(e.defaultKeyWords),s=(0,c.A)(l,2),f=s[0],m=s[1],g=(0,y.useState)(function(){return e.proFieldKey?e.proFieldKey.toString():e.request?ei():"no-fetch"}),h=(0,c.A)(g,1)[0],b=(0,y.useRef)(h),v=Z(function(e){return rW(rC(e)).map(function(e){var t=e.value,n=e.text,r=(0,p.A)(e,rH);return(0,u.A)({label:n,value:t,key:t},r)})}),x=e8(function(){if(i){var e=(null==i?void 0:i.options)||(null==i?void 0:i.treeData);if(e){var t=i.fieldNames||{},n=t.children,r=t.label,o=t.value,a=function e(t,a){if(null!=t&&t.length)for(var i=t.length,l=0;l1&&void 0!==arguments[1]?arguments[1]:100,n=arguments.length>2?arguments[2]:void 0,r=(0,y.useState)(e),o=(0,c.A)(r,2),a=o[0],i=o[1],l=ni(e);return(0,y.useEffect)(function(){var e=setTimeout(function(){i(l.current)},t);return function(){return clearTimeout(e)}},n?[t].concat((0,d.A)(n)):void 0),a}([b.current,e.params,f],null!=(t=null!=(n=e.debounceTime)?n:null==e||null==(r=e.fieldProps)?void 0:r.debounceTime)?t:0,[e.params,f]),k=(0,el.Ay)(function(){return e.request?O:null},function(t){var n=(0,c.A)(t,3),r=n[1],o=n[2];return e.request((0,u.A)((0,u.A)({},r),{},{keyWords:o}),e)},{revalidateIfStale:!a,revalidateOnReconnect:a,shouldRetryOnError:!1,revalidateOnFocus:!1}),j=k.data,E=k.mutate,P=k.isValidating,z=(0,y.useMemo)(function(){var t,n,r=null==w?void 0:w.map(function(e){if("string"==typeof e)return{label:e,value:e};if(e.children||e.options){var t=[].concat((0,d.A)(e.children||[]),(0,d.A)(e.options||[])).filter(function(e){return r_(e,f)});return(0,u.A)((0,u.A)({},e),{},{children:t,options:t})}return e});return(null==(t=e.fieldProps)?void 0:t.filterOption)===!0||(null==(n=e.fieldProps)?void 0:n.filterOption)===void 0?null==r?void 0:r.filter(function(e){return!!e&&(!f||r_(e,f))}):r},[w,f,null==(o=e.fieldProps)?void 0:o.filterOption]),I=function(e){if(!(null!=i&&i.fieldNames))return e;var t=i.fieldNames,n=t.label,r=t.value;return(0,u.A)((0,u.A)({},e),{},{label:e[void 0===n?"label":n],value:e[void 0===r?"value":r]})};return[P,(e.request?null==j?void 0:j.map(function(e){return I(e)}):void 0)||z,function(e){m(e)},function(){m(void 0),E([],!1)}]};let rV=y.forwardRef(function(e,t){var n=e.mode,r=e.valueEnum,o=e.render,a=e.renderFormItem,i=(e.request,e.fieldProps),l=(e.plain,e.children,e.light),s=(e.proFieldKey,e.params,e.label),d=e.bordered,f=e.id,m=e.lightLabel,h=e.labelTrigger,b=(0,p.A)(e,rL),v=(0,y.useRef)(),x=(0,Q.tz)(),A=(0,y.useRef)("");(0,y.useEffect)(function(){A.current=null==i?void 0:i.searchValue},[null==i?void 0:i.searchValue]);var w=rq(e),S=(0,c.A)(w,4),C=S[0],O=S[1],k=S[2],j=S[3],E=((null===g.Ay||void 0===g.Ay||null==(z=g.Ay.useConfig)?void 0:z.call(g.Ay))||{componentSize:"middle"}).componentSize;(0,y.useImperativeHandle)(t,function(){return(0,u.A)((0,u.A)({},v.current||{}),{},{fetchData:function(e){return k(e)}})},[k]);var P=(0,y.useMemo)(function(){if("read"===n){var e=(null==i?void 0:i.fieldNames)||{},t=e.value,r=void 0===t?"value":t,o=e.label,a=void 0===o?"label":o,l=e.options,c=void 0===l?"options":l;return function e(t){var n=new Map;if(!(null!=t&&t.length))return n;for(var o=t.length,i=0;i{let{lineWidth:t,calc:n}=e;return(e=>{let{componentCls:t}=e,n=e.calc(e.controlHeight).sub(e.calc(e.trackPadding).mul(2)).equal(),r=e.calc(e.controlHeightLG).sub(e.calc(e.trackPadding).mul(2)).equal(),o=e.calc(e.controlHeightSM).sub(e.calc(e.trackPadding).mul(2)).equal();return{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,nx.dF)(e)),{display:"inline-block",padding:e.trackPadding,color:e.itemColor,background:e.trackBg,borderRadius:e.borderRadius,transition:`all ${e.motionDurationMid}`}),(0,nx.K8)(e)),{[`${t}-group`]:{position:"relative",display:"flex",alignItems:"stretch",justifyItems:"flex-start",flexDirection:"row",width:"100%"},[`&${t}-rtl`]:{direction:"rtl"},[`&${t}-vertical`]:{[`${t}-group`]:{flexDirection:"column"},[`${t}-thumb`]:{width:"100%",height:0,padding:`0 ${(0,z.zA)(e.paddingXXS)}`}},[`&${t}-block`]:{display:"flex"},[`&${t}-block ${t}-item`]:{flex:1,minWidth:0},[`${t}-item`]:{position:"relative",textAlign:"center",cursor:"pointer",transition:`color ${e.motionDurationMid}`,borderRadius:e.borderRadiusSM,transform:"translateZ(0)","&-selected":Object.assign(Object.assign({},on(e)),{color:e.itemSelectedColor}),"&-focused":(0,nx.jk)(e),"&::after":{content:'""',position:"absolute",zIndex:-1,width:"100%",height:"100%",top:0,insetInlineStart:0,borderRadius:"inherit",opacity:0,transition:`opacity ${e.motionDurationMid}, background-color ${e.motionDurationMid}`,pointerEvents:"none"},[`&:not(${t}-item-selected):not(${t}-item-disabled)`]:{"&:hover, &:active":{color:e.itemHoverColor},"&:hover::after":{opacity:1,backgroundColor:e.itemHoverBg},"&:active::after":{opacity:1,backgroundColor:e.itemActiveBg}},"&-label":Object.assign({minHeight:n,lineHeight:(0,z.zA)(n),padding:`0 ${(0,z.zA)(e.segmentedPaddingHorizontal)}`},or),"&-icon + *":{marginInlineStart:e.calc(e.marginSM).div(2).equal()},"&-input":{position:"absolute",insetBlockStart:0,insetInlineStart:0,width:0,height:0,opacity:0,pointerEvents:"none"}},[`${t}-thumb`]:Object.assign(Object.assign({},on(e)),{position:"absolute",insetBlockStart:0,insetInlineStart:0,width:0,height:"100%",padding:`${(0,z.zA)(e.paddingXXS)} 0`,borderRadius:e.borderRadiusSM,[`& ~ ${t}-item:not(${t}-item-selected):not(${t}-item-disabled)::after`]:{backgroundColor:"transparent"}}),[`&${t}-lg`]:{borderRadius:e.borderRadiusLG,[`${t}-item-label`]:{minHeight:r,lineHeight:(0,z.zA)(r),padding:`0 ${(0,z.zA)(e.segmentedPaddingHorizontal)}`,fontSize:e.fontSizeLG},[`${t}-item, ${t}-thumb`]:{borderRadius:e.borderRadius}},[`&${t}-sm`]:{borderRadius:e.borderRadiusSM,[`${t}-item-label`]:{minHeight:o,lineHeight:(0,z.zA)(o),padding:`0 ${(0,z.zA)(e.segmentedPaddingHorizontalSM)}`},[`${t}-item, ${t}-thumb`]:{borderRadius:e.borderRadiusXS}}}),ot(`&-disabled ${t}-item`,e)),ot(`${t}-item-disabled`,e)),{[`${t}-thumb-motion-appear-active`]:{transition:`transform ${e.motionDurationSlow} ${e.motionEaseInOut}, width ${e.motionDurationSlow} ${e.motionEaseInOut}`,willChange:"transform, width"},[`&${t}-shape-round`]:{borderRadius:9999,[`${t}-item, ${t}-thumb`]:{borderRadius:9999}}})}})((0,n$.oX)(e,{segmentedPaddingHorizontal:n(e.controlPaddingHorizontal).sub(t).equal(),segmentedPaddingHorizontalSM:n(e.controlPaddingHorizontalSM).sub(t).equal()}))},e=>{let{colorTextLabel:t,colorText:n,colorFillSecondary:r,colorBgElevated:o,colorFill:a,lineWidthBold:i,colorBgLayout:l}=e;return{trackPadding:i,trackBg:l,itemColor:t,itemHoverColor:n,itemHoverBg:r,itemSelectedBg:o,itemActiveBg:a,itemSelectedColor:n}});var oa=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let oi=y.forwardRef((e,t)=>{let n=(0,nd.A)(),{prefixCls:r,className:o,rootClassName:a,block:i,options:l=[],size:c="middle",style:s,vertical:d,shape:u="default",name:p=n}=e,f=oa(e,["prefixCls","className","rootClassName","block","options","size","style","vertical","shape","name"]),{getPrefixCls:m,direction:g,className:h,style:b}=(0,tj.TP)("segmented"),x=m("segmented",r),[$,A,w]=oo(x),S=(0,nG.A)(c),C=y.useMemo(()=>l.map(e=>{if("object"==typeof e&&(null==e?void 0:e.icon)){let{icon:t,label:n}=e;return Object.assign(Object.assign({},oa(e,["icon","label"])),{label:y.createElement(y.Fragment,null,y.createElement("span",{className:`${x}-item-icon`},t),n&&y.createElement("span",null,n))})}return e}),[l,x]),O=v()(o,a,h,{[`${x}-block`]:i,[`${x}-sm`]:"small"===S,[`${x}-lg`]:"large"===S,[`${x}-vertical`]:d,[`${x}-shape-${u}`]:"round"===u},A,w),k=Object.assign(Object.assign({},b),s);return $(y.createElement(oe.A,Object.assign({},f,{name:p,className:O,style:k,options:C,ref:t,prefixCls:x,direction:g,vertical:d})))}),ol=y.createContext({}),oc=y.createContext({});var os=n(36058);let od=({prefixCls:e,value:t,onChange:n})=>y.createElement("div",{className:`${e}-clear`,onClick:()=>{if(n&&t&&!t.cleared){let e=t.toHsb();e.a=0;let r=(0,os.Z6)(e);r.cleared=!0,n(r)}}});var ou=n(63718);let op=({prefixCls:e,min:t=0,max:n=100,value:r,onChange:o,className:a,formatter:i})=>{let l=`${e}-steppers`,[c,s]=(0,y.useState)(0),d=Number.isNaN(r)?c:r;return y.createElement(ou.A,{className:v()(l,a),min:t,max:n,value:d,formatter:i,size:"small",onChange:e=>{s(e||0),null==o||o(e)}})},of=({prefixCls:e,value:t,onChange:n})=>{let r=`${e}-alpha-input`,[o,a]=(0,y.useState)(()=>(0,os.Z6)(t||"#000")),i=t||o;return y.createElement(op,{value:(0,os.Gp)(i),prefixCls:e,formatter:e=>`${e}%`,className:r,onChange:e=>{let t=i.toHsb();t.a=(e||0)/100;let r=(0,os.Z6)(t);a(r),null==n||n(r)}})};var om=n(64531);let og=/(^#[\da-f]{6}$)|(^#[\da-f]{8}$)/i,oh=({prefixCls:e,value:t,onChange:n})=>{let r=`${e}-hex-input`,[o,a]=(0,y.useState)(()=>t?(0,r3.Ol)(t.toHexString()):void 0);return(0,y.useEffect)(()=>{t&&a((0,r3.Ol)(t.toHexString()))},[t]),y.createElement(om.A,{className:r,value:o,prefix:"#",onChange:e=>{let t,r=e.target.value;a((0,r3.Ol)(r)),t=(0,r3.Ol)(r,!0),og.test(`#${t}`)&&(null==n||n((0,os.Z6)(r)))},size:"small"})},ob=({prefixCls:e,value:t,onChange:n})=>{let r=`${e}-hsb-input`,[o,a]=(0,y.useState)(()=>(0,os.Z6)(t||"#000")),i=t||o,l=(e,t)=>{let r=i.toHsb();r[t]="h"===t?e:(e||0)/100;let o=(0,os.Z6)(r);a(o),null==n||n(o)};return y.createElement("div",{className:r},y.createElement(op,{max:360,min:0,value:Number(i.toHsb().h),prefixCls:e,className:r,formatter:e=>(0,os.W)(e||0).toString(),onChange:e=>l(Number(e),"h")}),y.createElement(op,{max:100,min:0,value:100*Number(i.toHsb().s),prefixCls:e,className:r,formatter:e=>`${(0,os.W)(e||0)}%`,onChange:e=>l(Number(e),"s")}),y.createElement(op,{max:100,min:0,value:100*Number(i.toHsb().b),prefixCls:e,className:r,formatter:e=>`${(0,os.W)(e||0)}%`,onChange:e=>l(Number(e),"b")}))},ov=({prefixCls:e,value:t,onChange:n})=>{let r=`${e}-rgb-input`,[o,a]=(0,y.useState)(()=>(0,os.Z6)(t||"#000")),i=t||o,l=(e,t)=>{let r=i.toRgb();r[t]=e||0;let o=(0,os.Z6)(r);a(o),null==n||n(o)};return y.createElement("div",{className:r},y.createElement(op,{max:255,min:0,value:Number(i.toRgb().r),prefixCls:e,className:r,onChange:e=>l(Number(e),"r")}),y.createElement(op,{max:255,min:0,value:Number(i.toRgb().g),prefixCls:e,className:r,onChange:e=>l(Number(e),"g")}),y.createElement(op,{max:255,min:0,value:Number(i.toRgb().b),prefixCls:e,className:r,onChange:e=>l(Number(e),"b")}))},oy=["hex","hsb","rgb"].map(e=>({value:e,label:e.toUpperCase()})),ox=e=>{let{prefixCls:t,format:n,value:r,disabledAlpha:o,onFormatChange:a,onChange:i,disabledFormat:l}=e,[c,s]=(0,C.A)("hex",{value:n,onChange:a}),d=`${t}-input`,u=(0,y.useMemo)(()=>{let e={value:r,prefixCls:t,onChange:i};switch(c){case"hsb":return y.createElement(ob,Object.assign({},e));case"rgb":return y.createElement(ov,Object.assign({},e));default:return y.createElement(oh,Object.assign({},e))}},[c,t,r,i]);return y.createElement("div",{className:`${d}-container`},!l&&y.createElement(rz.A,{value:c,variant:"borderless",getPopupContainer:e=>e,popupMatchSelectWidth:68,placement:"bottomRight",onChange:e=>{s(e)},className:`${t}-format-select`,size:"small",options:oy}),y.createElement("div",{className:d},u),!o&&y.createElement(of,{prefixCls:t,value:r,onChange:i}))};var o$=n(91428),oA=n(26956),ow=n(25371);let oS=(0,y.createContext)({}),oC=y.forwardRef((e,t)=>{let{open:n,draggingDelete:r,value:o}=e,a=(0,y.useRef)(null),i=n&&!r,l=(0,y.useRef)(null);function c(){ow.A.cancel(l.current),l.current=null}return y.useEffect(()=>(i?l.current=(0,ow.A)(()=>{var e;null==(e=a.current)||e.forceAlign(),l.current=null}):c(),c),[i,e.title,o]),y.createElement(h.A,Object.assign({ref:(0,nu.K4)(a,t)},e,{open:i}))});var oO=n(78250);let ok=(e,t)=>{let{componentCls:n,railSize:r,handleSize:o,dotSize:a,marginFull:i,calc:l}=e,c=t?"width":"height",s=t?"height":"width",d=t?"insetBlockStart":"insetInlineStart",u=t?"top":"insetInlineStart",p=l(r).mul(3).sub(o).div(2).equal(),f=l(o).sub(r).div(2).equal(),m=t?{borderWidth:`${(0,z.zA)(f)} 0`,transform:`translateY(${(0,z.zA)(l(f).mul(-1).equal())})`}:{borderWidth:`0 ${(0,z.zA)(f)}`,transform:`translateX(${(0,z.zA)(e.calc(f).mul(-1).equal())})`};return{[t?"paddingBlock":"paddingInline"]:r,[s]:l(r).mul(3).equal(),[`${n}-rail`]:{[c]:"100%",[s]:r},[`${n}-track,${n}-tracks`]:{[s]:r},[`${n}-track-draggable`]:Object.assign({},m),[`${n}-handle`]:{[d]:p},[`${n}-mark`]:{insetInlineStart:0,top:0,[u]:l(r).mul(3).add(t?0:i).equal(),[c]:"100%"},[`${n}-step`]:{insetInlineStart:0,top:0,[u]:r,[c]:"100%",[s]:r},[`${n}-dot`]:{position:"absolute",[d]:l(r).sub(a).div(2).equal()}}},oj=(0,tB.OF)("Slider",e=>{let t=(0,n$.oX)(e,{marginPart:e.calc(e.controlHeight).sub(e.controlSize).div(2).equal(),marginFull:e.calc(e.controlSize).div(2).equal(),marginPartWithMark:e.calc(e.controlHeightLG).sub(e.controlSize).equal()});return[(e=>{let{componentCls:t,antCls:n,controlSize:r,dotSize:o,marginFull:a,marginPart:i,colorFillContentHover:l,handleColorDisabled:c,calc:s,handleSize:d,handleSizeHover:u,handleActiveColor:p,handleActiveOutlineColor:f,handleLineWidth:m,handleLineWidthHover:g,motionDurationMid:h}=e;return{[t]:Object.assign(Object.assign({},(0,nx.dF)(e)),{position:"relative",height:r,margin:`${(0,z.zA)(i)} ${(0,z.zA)(a)}`,padding:0,cursor:"pointer",touchAction:"none","&-vertical":{margin:`${(0,z.zA)(a)} ${(0,z.zA)(i)}`},[`${t}-rail`]:{position:"absolute",backgroundColor:e.railBg,borderRadius:e.borderRadiusXS,transition:`background-color ${h}`},[`${t}-track,${t}-tracks`]:{position:"absolute",transition:`background-color ${h}`},[`${t}-track`]:{backgroundColor:e.trackBg,borderRadius:e.borderRadiusXS},[`${t}-track-draggable`]:{boxSizing:"content-box",backgroundClip:"content-box",border:"solid rgba(0,0,0,0)"},"&:hover":{[`${t}-rail`]:{backgroundColor:e.railHoverBg},[`${t}-track`]:{backgroundColor:e.trackHoverBg},[`${t}-dot`]:{borderColor:l},[`${t}-handle::after`]:{boxShadow:`0 0 0 ${(0,z.zA)(m)} ${e.colorPrimaryBorderHover}`},[`${t}-dot-active`]:{borderColor:e.dotActiveBorderColor}},[`${t}-handle`]:{position:"absolute",width:d,height:d,outline:"none",userSelect:"none","&-dragging-delete":{opacity:0},"&::before":{content:'""',position:"absolute",insetInlineStart:s(m).mul(-1).equal(),insetBlockStart:s(m).mul(-1).equal(),width:s(d).add(s(m).mul(2)).equal(),height:s(d).add(s(m).mul(2)).equal(),backgroundColor:"transparent"},"&::after":{content:'""',position:"absolute",insetBlockStart:0,insetInlineStart:0,width:d,height:d,backgroundColor:e.colorBgElevated,boxShadow:`0 0 0 ${(0,z.zA)(m)} ${e.handleColor}`,outline:"0px solid transparent",borderRadius:"50%",cursor:"pointer",transition:` inset-inline-start ${h}, inset-block-start ${h}, width ${h}, @@ -16,10 +16,10 @@ }; ${o.library} return Object.assign(module.exports, exports); - `)();o.parameter&&(a.parameter=o.parameter),t({name:e.name,status:!0,module:a})}catch(n){console.error(`[Import:ERR] in ${e.name} appear ${n.message}`),t({name:e.name,status:!1,module:{}})}},r.send()})}n.d(t,{XK:()=>r}),n(96540)},57971(e,t,n){"use strict";n.d(t,{a:()=>a});var r=n(96540),o=n(57006);function a(e){let t="object"==typeof e&&null!==e&&("debug"in e||"disabled"in e),n=!!t&&e.disabled,a=e=>{let t=r.forwardRef((t,a)=>{let[i,l]=r.useState([]);return r.useEffect(()=>{n||o.http.Get("/system/operation/menus/list/current/buttons-perms",{path:window.location.pathname},{token:window.sessionStorage.getItem("token")}).then(e=>l(e.data||[]))},[]),r.createElement(e,{...t,ref:a,permissionList:i,permission:n?()=>!0:e=>Array.isArray(e)?i.some(t=>e.includes(t)):i.includes(e)})});return t.displayName=`Permission(${e.displayName||e.name||"Component"})`,t};return t?e=>a(e):a(e)}},46285(e,t,n){"use strict";let r,o,a,i;n.r(t),n.d(t,{Patch:()=>tF,Delete:()=>tB,Post:()=>tR,request:()=>tI,Put:()=>tT,Get:()=>tM,HTTP_URL_REG:()=>tj});var l,c,s,d,u={};function p(e,t){return function(){return e.apply(t,arguments)}}n.r(u),n.d(u,{hasBrowserEnv:()=>eE,hasStandardBrowserEnv:()=>ez,hasStandardBrowserWebWorkerEnv:()=>eI,navigator:()=>eP,origin:()=>eM});let{toString:f}=Object.prototype,{getPrototypeOf:m}=Object,{iterator:g,toStringTag:h}=Symbol,b=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),v=(e,t)=>{let n=e,r=[];for(;null!=n&&n!==Object.prototype&&-1===r.indexOf(n);){if(r.push(n),b(n,t))return!0;n=m(n)}return!1},y=(r=Object.create(null),e=>{let t=f.call(e);return r[t]||(r[t]=t.slice(8,-1).toLowerCase())}),x=e=>(e=e.toLowerCase(),t=>y(t)===e),$=e=>t=>typeof t===e,{isArray:A}=Array,w=$("undefined");function S(e){return null!==e&&!w(e)&&null!==e.constructor&&!w(e.constructor)&&k(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}let C=x("ArrayBuffer"),O=$("string"),k=$("function"),j=$("number"),E=e=>null!==e&&"object"==typeof e,P=e=>{if(!E(e))return!1;let t=m(e);return(null===t||t===Object.prototype||null===m(t))&&!v(e,h)&&!v(e,g)},z=x("Date"),I=x("File"),M=x("Blob"),R=x("FileList"),B="u">typeof globalThis?globalThis:"u">typeof self?self:"u">typeof window?window:"u">typeof global?global:{},T=void 0!==B.FormData?B.FormData:void 0,F=x("URLSearchParams"),[N,H,L,D]=["ReadableStream","Request","Response","Headers"].map(x);function _(e,t,{allOwnKeys:n=!1}={}){let r,o;if(null!=e)if("object"!=typeof e&&(e=[e]),A(e))for(r=0,o=e.length;r0;)if(t===(n=r[o]).toLowerCase())return n;return null}let q="u">typeof globalThis?globalThis:"u">typeof self?self:"u">typeof window?window:global,V=e=>!w(e)&&e!==q,X=(o="u">typeof Uint8Array&&m(Uint8Array),e=>o&&e instanceof o),U=x("HTMLFormElement"),{propertyIsEnumerable:Y}=Object.prototype,G=x("RegExp"),K=(e,t)=>{let n=Object.getOwnPropertyDescriptors(e),r={};_(n,(n,o)=>{let a;!1!==(a=t(n,o,e))&&(r[o]=a||n)}),Object.defineProperties(e,r)},Q=x("AsyncFunction"),J=(l="function"==typeof setImmediate,c=k(q.postMessage),l?setImmediate:c?(s=`axios@${Math.random()}`,d=[],q.addEventListener("message",({source:e,data:t})=>{e===q&&t===s&&d.length&&d.shift()()},!1),e=>{d.push(e),q.postMessage(s,"*")}):e=>setTimeout(e)),Z="u">typeof queueMicrotask?queueMicrotask.bind(q):"u">typeof process&&process.nextTick||J,ee=e=>null!=e&&k(e[g]),et={isArray:A,isArrayBuffer:C,isBuffer:S,isFormData:e=>{if(!e)return!1;if(T&&e instanceof T)return!0;let t=m(e);if(!t||t===Object.prototype||!k(e.append))return!1;let n=y(e);return"formdata"===n||"object"===n&&k(e.toString)&&"[object FormData]"===e.toString()},isArrayBufferView:function(e){return"u">typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&C(e.buffer)},isString:O,isNumber:j,isBoolean:e=>!0===e||!1===e,isObject:E,isPlainObject:P,isEmptyObject:e=>{if(!E(e)||S(e))return!1;try{return 0===Object.keys(e).length&&Object.getPrototypeOf(e)===Object.prototype}catch(e){return!1}},isReadableStream:N,isRequest:H,isResponse:L,isHeaders:D,isUndefined:w,isDate:z,isFile:I,isReactNativeBlob:e=>!!(e&&void 0!==e.uri),isReactNative:e=>e&&void 0!==e.getParts,isBlob:M,isRegExp:G,isFunction:k,isStream:e=>E(e)&&k(e.pipe),isURLSearchParams:F,isTypedArray:X,isFileList:R,forEach:_,merge:function e(...t){let{caseless:n,skipUndefined:r}=V(this)&&this||{},o={},a=(t,a)=>{if("__proto__"===a||"constructor"===a||"prototype"===a)return;let i=n&&"string"==typeof a&&W(o,a)||a,l=b(o,i)?o[i]:void 0;P(l)&&P(t)?o[i]=e(l,t):P(t)?o[i]=e({},t):A(t)?o[i]=t.slice():r&&w(t)||(o[i]=t)};for(let e=0,n=t.length;e(_(t,(t,r)=>{n&&k(t)?Object.defineProperty(e,r,{__proto__:null,value:p(t,n),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(e,r,{__proto__:null,value:t,writable:!0,enumerable:!0,configurable:!0})},{allOwnKeys:r}),e),trim:e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:e=>(65279===e.charCodeAt(0)&&(e=e.slice(1)),e),inherits:(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),Object.defineProperty(e.prototype,"constructor",{__proto__:null,value:e,writable:!0,enumerable:!1,configurable:!0}),Object.defineProperty(e,"super",{__proto__:null,value:t.prototype}),n&&Object.assign(e.prototype,n)},toFlatObject:(e,t,n,r)=>{let o,a,i,l={};if(t=t||{},null==e)return t;do{for(a=(o=Object.getOwnPropertyNames(e)).length;a-- >0;)i=o[a],(!r||r(i,e,t))&&!l[i]&&(t[i]=e[i],l[i]=!0);e=!1!==n&&m(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},kindOf:y,kindOfTest:x,endsWith:(e,t,n)=>{e=String(e),(void 0===n||n>e.length)&&(n=e.length),n-=t.length;let r=e.indexOf(t,n);return -1!==r&&r===n},toArray:e=>{if(!e)return null;if(A(e))return e;let t=e.length;if(!j(t))return null;let n=Array(t);for(;t-- >0;)n[t]=e[t];return n},forEachEntry:(e,t)=>{let n,r=(e&&e[g]).call(e);for(;(n=r.next())&&!n.done;){let r=n.value;t.call(e,r[0],r[1])}},matchAll:(e,t)=>{let n,r=[];for(;null!==(n=e.exec(t));)r.push(n);return r},isHTMLForm:U,hasOwnProperty:b,hasOwnProp:b,hasOwnInPrototypeChain:v,getSafeProp:(e,t)=>null!=e&&v(e,t)?e[t]:void 0,reduceDescriptors:K,freezeMethods:e=>{K(e,(t,n)=>{if(k(e)&&["arguments","caller","callee"].includes(n))return!1;if(k(e[n])){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},toObjectSet:(e,t)=>{let n={};return(A(e)?e:String(e).split(t)).forEach(e=>{n[e]=!0}),n},toCamelCase:e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(e,t,n){return t.toUpperCase()+n}),noop:()=>{},toFiniteNumber:(e,t)=>null!=e&&Number.isFinite(e*=1)?e:t,findKey:W,global:q,isContextDefined:V,isSpecCompliantForm:function(e){return!!(e&&k(e.append)&&"FormData"===e[h]&&e[g])},toJSONObject:e=>{let t=new WeakSet,n=e=>{if(E(e)){if(t.has(e))return;if(S(e))return e;if(!("toJSON"in e)){t.add(e);let r=A(e)?[]:{};return _(e,(e,t)=>{let o=n(e);w(o)||(r[t]=o)}),t.delete(e),r}}return e};return n(e)},isAsyncFn:Q,isThenable:e=>e&&(E(e)||k(e))&&k(e.then)&&k(e.catch),setImmediate:J,asap:Z,isIterable:ee,isSafeIterable:e=>null!=e&&v(e,g)&&ee(e)},en=et.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),er=RegExp("[\\u0000-\\u0008\\u000a-\\u001f\\u007f]+","g"),eo=RegExp("[^\\u0009\\u0020-\\u007e\\u0080-\\u00ff]+","g");function ea(e,t){return et.isArray(e)?e.map(e=>ea(e,t)):function(e){let t=0,n=e.length;for(;tt;){let t=e.charCodeAt(n-1);if(9!==t&&32!==t)break;n-=1}return 0===t&&n===e.length?e:e.slice(t,n)}(String(e).replace(t,""))}function ei(e){let t=Object.create(null);return et.forEach(e.toJSON(),(e,n)=>{t[n]=ea(e,eo)}),t}let el=Symbol("internals");function ec(e){return e&&String(e).trim().toLowerCase()}function es(e){return!1===e||null==e?e:et.isArray(e)?e.map(es):ea(String(e),er)}function ed(e,t,n,r,o){if(et.isFunction(r))return r.call(this,t,n);if(o&&(t=n),et.isString(t)){if(et.isString(r))return -1!==t.indexOf(r);if(et.isRegExp(r))return r.test(t)}}class eu{constructor(e){e&&this.set(e)}set(e,t,n){let r=this;function o(e,t,n){let o=ec(t);if(!o)return;let a=et.findKey(r,o);a&&void 0!==r[a]&&!0!==n&&(void 0!==n||!1===r[a])||(r[a||t]=es(e))}let a=(e,t)=>et.forEach(e,(e,n)=>o(e,n,t));if(et.isPlainObject(e)||e instanceof this.constructor)a(e,t);else{let r;if(et.isString(e)&&(e=e.trim())&&(r=e,!/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(r.trim()))){var i;let n,r,o,l;a((l={},(i=e)&&i.split("\n").forEach(function(e){o=e.indexOf(":"),n=e.substring(0,o).trim().toLowerCase(),r=e.substring(o+1).trim(),!n||l[n]&&en[n]||("set-cookie"===n?l[n]?l[n].push(r):l[n]=[r]:l[n]=l[n]?l[n]+", "+r:r)}),l),t)}else if(et.isObject(e)&&et.isSafeIterable(e)){let n=Object.create(null),r,o;for(let t of e){if(!et.isArray(t))throw TypeError("Object iterator must return a key-value pair");o=t[0],et.hasOwnProp(n,o)?(r=n[o],n[o]=et.isArray(r)?[...r,t[1]]:[r,t[1]]):n[o]=t[1]}a(n,t)}else null!=e&&o(t,e,n)}return this}get(e,t){if(e=ec(e)){let n=et.findKey(this,e);if(n){let e=this[n];if(!t)return e;if(!0===t){let t,n=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;for(;t=r.exec(e);)n[t[1]]=t[2];return n}if(et.isFunction(t))return t.call(this,e,n);if(et.isRegExp(t))return t.exec(e);throw TypeError("parser must be boolean|regexp|function")}}}has(e,t){if(e=ec(e)){let n=et.findKey(this,e);return!!(n&&void 0!==this[n]&&(!t||ed(this,this[n],n,t)))}return!1}delete(e,t){let n=this,r=!1;function o(e){if(e=ec(e)){let o=et.findKey(n,e);o&&(!t||ed(n,n[o],o,t))&&(delete n[o],r=!0)}}return et.isArray(e)?e.forEach(o):o(e),r}clear(e){let t=Object.keys(this),n=t.length,r=!1;for(;n--;){let o=t[n];(!e||ed(this,this[o],o,e,!0))&&(delete this[o],r=!0)}return r}normalize(e){let t=this,n={};return et.forEach(this,(r,o)=>{let a=et.findKey(n,o);if(a){t[a]=es(r),delete t[o];return}let i=e?o.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,t,n)=>t.toUpperCase()+n):String(o).trim();i!==o&&delete t[o],t[i]=es(r),n[i]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){let t=Object.create(null);return et.forEach(this,(n,r)=>{null!=n&&!1!==n&&(t[r]=e&&et.isArray(n)?n.join(", "):n)}),t}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,t])=>e+": "+t).join("\n")}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...t){let n=new this(e);return t.forEach(e=>n.set(e)),n}static accessor(e){let t=(this[el]=this[el]={accessors:{}}).accessors,n=this.prototype;function r(e){let r=ec(e);if(!t[r]){let o;o=et.toCamelCase(" "+e),["get","set","has"].forEach(t=>{Object.defineProperty(n,t+o,{__proto__:null,value:function(n,r,o){return this[t].call(this,e,n,r,o)},configurable:!0})}),t[r]=!0}}return et.isArray(e)?e.forEach(r):r(e),this}}eu.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),et.reduceDescriptors(eu.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(e){this[n]=e}}}),et.freezeMethods(eu);class ep extends Error{static from(e,t,n,r,o,a){let i=new ep(e.message,t||e.code,n,r,o);return Object.defineProperty(i,"cause",{__proto__:null,value:e,writable:!0,enumerable:!1,configurable:!0}),i.name=e.name,null!=e.status&&null==i.status&&(i.status=e.status),a&&Object.assign(i,a),i}constructor(e,t,n,r,o){super(e),Object.defineProperty(this,"message",{__proto__:null,value:e,enumerable:!0,writable:!0,configurable:!0}),this.name="AxiosError",this.isAxiosError=!0,t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),o&&(this.response=o,this.status=o.status)}toJSON(){let e,t,n,r=this.config,o=r&&et.hasOwnProp(r,"redact")?r.redact:void 0,a=et.isArray(o)&&o.length>0?(e=new Set(o.map(e=>String(e).toLowerCase())),t=[],(n=r=>{let o;if(null===r||"object"!=typeof r||et.isBuffer(r))return r;if(-1===t.indexOf(r)){if(r instanceof eu&&(r=r.toJSON()),t.push(r),et.isArray(r))o=[],r.forEach((e,t)=>{let r=n(e);et.isUndefined(r)||(o[t]=r)});else{if(!et.isPlainObject(r)&&function(e){if(et.hasOwnProp(e,"toJSON"))return!0;let t=Object.getPrototypeOf(e);for(;t&&t!==Object.prototype;){if(et.hasOwnProp(t,"toJSON"))return!0;t=Object.getPrototypeOf(t)}return!1}(r))return t.pop(),r;for(let[t,a]of(o=Object.create(null),Object.entries(r))){let r=e.has(t.toLowerCase())?"[REDACTED ****]":n(a);et.isUndefined(r)||(o[t]=r)}}return t.pop(),o}})(r)):et.toJSONObject(r);return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a,code:this.code,status:this.status}}}ep.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE",ep.ERR_BAD_OPTION="ERR_BAD_OPTION",ep.ECONNABORTED="ECONNABORTED",ep.ETIMEDOUT="ETIMEDOUT",ep.ECONNREFUSED="ECONNREFUSED",ep.ERR_NETWORK="ERR_NETWORK",ep.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS",ep.ERR_DEPRECATED="ERR_DEPRECATED",ep.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE",ep.ERR_BAD_REQUEST="ERR_BAD_REQUEST",ep.ERR_CANCELED="ERR_CANCELED",ep.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT",ep.ERR_INVALID_URL="ERR_INVALID_URL",ep.ERR_FORM_DATA_DEPTH_EXCEEDED="ERR_FORM_DATA_DEPTH_EXCEEDED";let ef=ep;function em(e){return et.isPlainObject(e)||et.isArray(e)}function eg(e){return et.endsWith(e,"[]")?e.slice(0,-2):e}function eh(e,t,n){return e?e.concat(t).map(function(e,t){return e=eg(e),!n&&t?"["+e+"]":e}).join(n?".":""):t}let eb=et.toFlatObject(et,{},null,function(e){return/^is[A-Z]/.test(e)}),ev=function(e,t,n){if(!et.isObject(e))throw TypeError("target must be an object");t=t||new FormData;let r=(n=et.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(e,t){return!et.isUndefined(t[e])})).metaTokens,o=n.visitor||f,a=n.dots,i=n.indexes,l=n.Blob||"u">typeof Blob&&Blob,c=void 0===n.maxDepth?100:n.maxDepth,s=l&&et.isSpecCompliantForm(t),d=[];if(!et.isFunction(o))throw TypeError("visitor must be a function");function u(e){if(null===e)return"";if(et.isDate(e))return e.toISOString();if(et.isBoolean(e))return e.toString();if(!s&&et.isBlob(e))throw new ef("Blob is not supported. Use a Buffer instead.");if(et.isArrayBuffer(e)||et.isTypedArray(e)){if(s&&"function"==typeof l)return new l([e]);if("u">typeof Buffer)return Buffer.from(e);throw new ef("Blob is not supported. Use a Buffer instead.",ef.ERR_NOT_SUPPORT)}return e}function p(e){if(e>c)throw new ef("Object is too deeply nested ("+e+" levels). Max depth: "+c,ef.ERR_FORM_DATA_DEPTH_EXCEEDED)}function f(e,n,o){let l=e;if(et.isReactNative(t)&&et.isReactNativeBlob(e))return t.append(eh(o,n,a),u(e)),!1;if(e&&!o&&"object"==typeof e)if(et.endsWith(n,"{}"))n=r?n:n.slice(0,-2),e=function(e){if(c===1/0)return JSON.stringify(e);let t=[];return JSON.stringify(e,function(e,n){if(!et.isObject(n))return n;for(;t.length&&t[t.length-1]!==this;)t.pop();return t.push(n),p(1+t.length-1),n})}(e);else{var s;if(et.isArray(e)&&(s=e,et.isArray(s)&&!s.some(em))||(et.isFileList(e)||et.endsWith(n,"[]"))&&(l=et.toArray(e)))return n=eg(n),l.forEach(function(e,r){et.isUndefined(e)||null===e||t.append(!0===i?eh([n],r,a):null===i?n:n+"[]",u(e))}),!1}return!!em(e)||(t.append(eh(o,n,a),u(e)),!1)}let m=Object.assign(eb,{defaultVisitor:f,convertValue:u,isVisitable:em});if(!et.isObject(e))throw TypeError("data must be an object");return!function e(n,r,a=0){if(!et.isUndefined(n)){if(p(a),-1!==d.indexOf(n))throw Error("Circular reference detected in "+r.join("."));d.push(n),et.forEach(n,function(n,i){!0===(!(et.isUndefined(n)||null===n)&&o.call(t,n,et.isString(i)?i.trim():i,r,m))&&e(n,r?r.concat(i):[i],a+1)}),d.pop()}}(e),t};function ey(e){let t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"};return encodeURIComponent(e).replace(/[!'()~]|%20/g,function(e){return t[e]})}function ex(e,t){this._pairs=[],e&&ev(e,this,t)}let e$=ex.prototype;function eA(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function ew(e,t,n){let r;if(!t)return e;e=e||"";let o=et.isFunction(n)?{serialize:n}:n,a=et.getSafeProp(o,"encode")||eA,i=et.getSafeProp(o,"serialize");if(r=i?i(t,o):et.isURLSearchParams(t)?t.toString():new ex(t,o).toString(a)){let t=e.indexOf("#");-1!==t&&(e=e.slice(0,t)),e+=(-1===e.indexOf("?")?"?":"&")+r}return e}e$.append=function(e,t){this._pairs.push([e,t])},e$.toString=function(e){let t=e?t=>e.call(this,t,ey):ey;return this._pairs.map(function(e){return t(e[0])+"="+t(e[1])},"").join("&")};let eS=class{constructor(){this.handlers=[]}use(e,t,n){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){et.forEach(this.handlers,function(t){null!==t&&e(t)})}},eC={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0,advertiseZstdAcceptEncoding:!1,validateStatusUndefinedResolves:!0},eO="u">typeof URLSearchParams?URLSearchParams:ex,ek="u">typeof FormData?FormData:null,ej="u">typeof Blob?Blob:null,eE="u">typeof window&&"u">typeof document,eP="object"==typeof navigator&&navigator||void 0,ez=eE&&(!eP||0>["ReactNative","NativeScript","NS"].indexOf(eP.product)),eI="u">typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts,eM=eE&&window.location.href||"http://localhost",eR={...u,isBrowser:!0,classes:{URLSearchParams:eO,FormData:ek,Blob:ej},protocols:["http","https","file","blob","url","data"]};function eB(e){if(e>100)throw new ef("FormData field is too deeply nested ("+e+" levels). Max depth: 100",ef.ERR_FORM_DATA_DEPTH_EXCEEDED)}let eT=function(e){if(et.isFormData(e)&&et.isFunction(e.entries)){let t={};return et.forEachEntry(e,(e,n)=>{!function e(t,n,r,o){eB(o);let a=t[o++];if("__proto__"===a)return!0;let i=Number.isFinite(+a),l=o>=t.length;return(a=!a&&et.isArray(r)?r.length:a,l)?et.hasOwnProp(r,a)?r[a]=et.isArray(r[a])?r[a].concat(n):[r[a],n]:r[a]=n:(et.hasOwnProp(r,a)&&et.isObject(r[a])||(r[a]=[]),e(t,n,r[a],o)&&et.isArray(r[a])&&(r[a]=function(e){let t,n,r={},o=Object.keys(e),a=o.length;for(t=0;tnull!=e&&et.hasOwnProp(e,t)?e[t]:void 0,eN={transitional:eC,adapter:["xhr","http","fetch"],transformRequest:[function(e,t){let n,r=t.getContentType()||"",o=r.indexOf("application/json")>-1,a=et.isObject(e);if(a&&et.isHTMLForm(e)&&(e=new FormData(e)),et.isFormData(e))return o?JSON.stringify(eT(e)):e;if(et.isArrayBuffer(e)||et.isBuffer(e)||et.isStream(e)||et.isFile(e)||et.isBlob(e)||et.isReadableStream(e))return e;if(et.isArrayBufferView(e))return e.buffer;if(et.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();if(a){let t=eF(this,"formSerializer");if(r.indexOf("application/x-www-form-urlencoded")>-1)return ev(e,new eR.classes.URLSearchParams,{visitor:function(e,t,n,r){return eR.isNode&&et.isBuffer(e)?(this.append(t,e.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)},...t}).toString();if((n=et.isFileList(e))||r.indexOf("multipart/form-data")>-1){let r=eF(this,"env"),o=r&&r.FormData;return ev(n?{"files[]":e}:e,o&&new o,t)}}if(a||o){t.setContentType("application/json",!1);var i=e;if(et.isString(i))try{return(0,JSON.parse)(i),et.trim(i)}catch(e){if("SyntaxError"!==e.name)throw e}return(0,JSON.stringify)(i)}return e}],transformResponse:[function(e){let t=eF(this,"transitional")||eN.transitional,n=t&&t.forcedJSONParsing,r=eF(this,"responseType"),o="json"===r;if(et.isResponse(e)||et.isReadableStream(e))return e;if(e&&et.isString(e)&&(n&&!r||o)){let n=t&&t.silentJSONParsing;try{return JSON.parse(e,eF(this,"parseReviver"))}catch(e){if(!n&&o){if("SyntaxError"===e.name)throw ef.from(e,ef.ERR_BAD_RESPONSE,this,null,eF(this,"response"));throw e}}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:eR.classes.FormData,Blob:eR.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};function eH(e,t){let n=this||eN,r=t||n,o=eu.from(r.headers),a=r.data;return et.forEach(e,function(e){a=e.call(n,a,o.normalize(),t?t.status:void 0)}),o.normalize(),a}function eL(e){return!!(e&&e.__CANCEL__)}et.forEach(["delete","get","head","post","put","patch","query"],e=>{eN.headers[e]={}});let eD=class extends ef{constructor(e,t,n){super(null==e?"canceled":e,ef.ERR_CANCELED,t,n),this.name="CanceledError",this.__CANCEL__=!0}};function e_(e,t,n){let r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new ef("Request failed with status code "+n.status,n.status>=400&&n.status<500?ef.ERR_BAD_REQUEST:ef.ERR_BAD_RESPONSE,n.config,n.request,n))}let eW=function(e,t){let n,r=Array(e=e||10),o=Array(e),a=0,i=0;return t=void 0!==t?t:1e3,function(l){let c=Date.now(),s=o[i];n||(n=c),r[a]=l,o[a]=c;let d=i,u=0;for(;d!==a;)u+=r[d++],d%=e;if((a=(a+1)%e)===i&&(i=(i+1)%e),c-n{o=a,n=null,r&&(clearTimeout(r),r=null),e(...t)};return[(...e)=>{let t=Date.now(),l=t-o;l>=a?i(e,t):(n=e,r||(r=setTimeout(()=>{r=null,i(n)},a-l)))},()=>n&&i(n)]},eV=(e,t,n=3)=>{let r=0,o=eW(50,250);return eq(n=>{if(!n||"number"!=typeof n.loaded)return;let a=n.loaded,i=n.lengthComputable?n.total:void 0,l=null!=i?Math.min(a,i):a,c=Math.max(0,l-r),s=o(c);r=Math.max(r,l),e({loaded:l,total:i,progress:i?l/i:void 0,bytes:c,rate:s||void 0,estimated:s&&i?(i-l)/s:void 0,event:n,lengthComputable:null!=i,[t?"download":"upload"]:!0})},n)},eX=(e,t)=>{let n=null!=e;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},eU=e=>(...t)=>et.asap(()=>e(...t)),eY=eR.hasStandardBrowserEnv?(a=new URL(eR.origin),i=eR.navigator&&/(msie|trident)/i.test(eR.navigator.userAgent),e=>(e=new URL(e,eR.origin),a.protocol===e.protocol&&a.host===e.host&&(i||a.port===e.port))):()=>!0,eG=eR.hasStandardBrowserEnv?{write(e,t,n,r,o,a,i){if("u"null,remove(){}},eK=/^https?:(?!\/\/)/i,eQ=/[\t\n\r]/g;function eJ(e,t){if("string"==typeof e&&eK.test((function(e){let t=0;for(;t=e.charCodeAt(t);)t++;return e.slice(t)})(e).replace(eQ,"")))throw new ef('Invalid URL: missing "//" after protocol',ef.ERR_INVALID_URL,t)}function eZ(e,t,n,r){eJ(t,r);let o=!("string"==typeof t&&/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t));return e&&(o||!1===n)?(eJ(e,r),t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e):t}let e0=e=>e instanceof eu?{...e}:e;function e1(e,t){e=e||{},t=t||{};let n=Object.create(null);function r(e,t,n,r){return et.isPlainObject(e)&&et.isPlainObject(t)?et.merge.call({caseless:r},e,t):et.isPlainObject(t)?et.merge({},t):et.isArray(t)?t.slice():t}function o(e,t,n,o){return et.isUndefined(t)?et.isUndefined(e)?void 0:r(void 0,e,n,o):r(e,t,n,o)}function a(e,t){if(!et.isUndefined(t))return r(void 0,t)}function i(e,t){return et.isUndefined(t)?et.isUndefined(e)?void 0:r(void 0,e):r(void 0,t)}function l(n,o,a){return et.hasOwnProp(t,a)?r(n,o):et.hasOwnProp(e,a)?r(void 0,n):void 0}Object.defineProperty(n,"hasOwnProperty",{__proto__:null,value:Object.prototype.hasOwnProperty,enumerable:!1,writable:!0,configurable:!0});let c={url:a,method:a,data:a,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,allowedSocketPaths:i,responseEncoding:i,validateStatus:l,headers:(e,t,n)=>o(e0(e),e0(t),n,!0)};return et.forEach(Object.keys({...e,...t}),function(r){if("__proto__"===r||"constructor"===r||"prototype"===r)return;let a=et.hasOwnProp(c,r)?c[r]:o,i=a(et.hasOwnProp(e,r)?e[r]:void 0,et.hasOwnProp(t,r)?t[r]:void 0,r);et.isUndefined(i)&&a!==l||(n[r]=i)}),et.hasOwnProp(t,"validateStatus")&&et.isUndefined(t.validateStatus)&&!1===function(n){let r=et.hasOwnProp(t,"transitional")?t.transitional:void 0;if(!et.isUndefined(r)){if(!et.isPlainObject(r))return;else if(et.hasOwnProp(r,n))return r[n]}let o=et.hasOwnProp(e,"transitional")?e.transitional:void 0;if(et.isPlainObject(o)&&et.hasOwnProp(o,n))return o[n]}("validateStatusUndefinedResolves")&&(et.hasOwnProp(e,"validateStatus")?n.validateStatus=r(void 0,e.validateStatus):delete n.validateStatus),n}let e2=["content-type","content-length"],e4=function(e){let t=e1({},e),n=e=>et.hasOwnProp(t,e)?t[e]:void 0,r=n("data"),o=n("withXSRFToken"),a=n("xsrfHeaderName"),i=n("xsrfCookieName"),l=n("headers"),c=n("auth"),s=n("baseURL"),d=n("allowAbsoluteUrls"),u=n("url");if(t.headers=l=eu.from(l),t.url=ew(eZ(s,u,d,t),n("params"),n("paramsSerializer")),c){let t=et.getSafeProp(c,"username")||"",n=et.getSafeProp(c,"password")||"";try{l.set("Authorization","Basic "+btoa(t+":"+(n?encodeURIComponent(n).replace(/%([0-9A-F]{2})/gi,(e,t)=>String.fromCharCode(parseInt(t,16))):"")))}catch(t){throw ef.from(t,ef.ERR_BAD_OPTION_VALUE,e)}}if(et.isFormData(r))if(eR.hasStandardBrowserEnv||eR.hasStandardBrowserWebWorkerEnv||et.isReactNative(r))l.setContentType(void 0);else{var p,f;et.isFunction(r.getHeaders)&&(p=l,f=r.getHeaders(),"content-only"!==n("formDataHeaderPolicy")?p.set(f):Object.entries(f||{}).forEach(([e,t])=>{e2.includes(e.toLowerCase())&&p.set(e,t)}))}if(eR.hasStandardBrowserEnv&&(et.isFunction(o)&&(o=o(t)),!0===o||null==o&&eY(t.url))){let e=a&&i&&eG.read(i);e&&l.set(a,e)}return t},e6="u">typeof XMLHttpRequest&&function(e){return new Promise(function(t,n){var r;let o,a,i,l,c,s,d=e4(e),u=d.data,p=eu.from(d.headers).normalize(),{responseType:f,onUploadProgress:m,onDownloadProgress:g}=d;function h(){l&&l(),c&&c(),d.cancelToken&&d.cancelToken.unsubscribe(o),d.signal&&d.signal.removeEventListener("abort",o)}let b=new XMLHttpRequest;function v(){if(!b)return;let r=eu.from("getAllResponseHeaders"in b&&b.getAllResponseHeaders());e_(function(e){t(e),h()},function(e){n(e),h()},{data:f&&"text"!==f&&"json"!==f?b.response:b.responseText,status:b.status,statusText:b.statusText,headers:r,config:e,request:b}),b=null}b.open(d.method.toUpperCase(),d.url,!0),b.timeout=d.timeout,"onloadend"in b?b.onloadend=v:b.onreadystatechange=function(){!b||4!==b.readyState||(0!==b.status||b.responseURL&&b.responseURL.startsWith("file:"))&&setTimeout(v)},b.onabort=function(){b&&(n(new ef("Request aborted",ef.ECONNABORTED,e,b)),h(),b=null)},b.onerror=function(t){let r=new ef(t&&t.message?t.message:"Network Error",ef.ERR_NETWORK,e,b);r.event=t||null,n(r),h(),b=null},b.ontimeout=function(){let t=d.timeout?"timeout of "+d.timeout+"ms exceeded":"timeout exceeded",r=d.transitional||eC;d.timeoutErrorMessage&&(t=d.timeoutErrorMessage),n(new ef(t,r.clarifyTimeoutError?ef.ETIMEDOUT:ef.ECONNABORTED,e,b)),h(),b=null},void 0===u&&p.setContentType(null),"setRequestHeader"in b&&et.forEach(ei(p),function(e,t){b.setRequestHeader(t,e)}),et.isUndefined(d.withCredentials)||(b.withCredentials=!!d.withCredentials),f&&"json"!==f&&(b.responseType=d.responseType),g&&([i,c]=eV(g,!0),b.addEventListener("progress",i)),m&&b.upload&&([a,l]=eV(m),b.upload.addEventListener("progress",a),b.upload.addEventListener("loadend",l)),(d.cancelToken||d.signal)&&(o=t=>{b&&(n(!t||t.type?new eD(null,e,b):t),b.abort(),h(),b=null)},d.cancelToken&&d.cancelToken.subscribe(o),d.signal&&(d.signal.aborted?o():d.signal.addEventListener("abort",o)));let y=(r=d.url,(s=/^([-+\w]{1,25}):(?:\/\/)?/.exec(r))&&s[1]||"");if(y&&!eR.protocols.includes(y)){n(new ef("Unsupported protocol "+y+":",ef.ERR_BAD_REQUEST,e)),h();return}b.send(u||null)})},e8=function*(e,t){let n,r=e.byteLength;if(!t||r{let o,a=e3(e,t),i=0,l=e=>{!o&&(o=!0,r&&r(e))};return new ReadableStream({async pull(e){try{let{done:t,value:r}=await a.next();if(t){l(),e.close();return}let o=r.byteLength;if(n){let e=i+=o;n(e)}e.enqueue(new Uint8Array(r))}catch(e){throw l(e),e}},cancel:e=>(l(e),a.return())},{highWaterMark:2})},e9=e=>e>=48&&e<=57||e>=65&&e<=70||e>=97&&e<=102,te=(e,t,n)=>t+2{if(!et.isString(e))return e;try{return decodeURIComponent(e)}catch(t){return e}},tr=(e,...t)=>{try{return!!e(...t)}catch(e){return!1}},to=e=>{let t,n=void 0!==et.global&&null!==et.global?et.global:globalThis,{ReadableStream:r,TextEncoder:o}=n,{fetch:a,Request:i,Response:l}=e=et.merge.call({skipUndefined:!0},{Request:n.Request,Response:n.Response},e),c=a?tt(a):"function"==typeof fetch,s=tt(i),d=tt(l);if(!c)return!1;let u=c&&tt(r),p=c&&("function"==typeof o?(t=new o,e=>t.encode(e)):async e=>new Uint8Array(await new i(e).arrayBuffer())),f=s&&u&&tr(()=>{let e=!1,t=new i(eR.origin,{body:new r,method:"POST",get duplex(){return e=!0,"half"}}),n=t.headers.has("Content-Type");return null!=t.body&&t.body.cancel(),e&&!n}),m=d&&u&&tr(()=>et.isReadableStream(new l("").body)),g={stream:m&&(e=>e.body)};c&&["text","arrayBuffer","blob","formData","stream"].forEach(e=>{g[e]||(g[e]=(t,n)=>{let r=t&&t[e];if(r)return r.call(t);throw new ef(`Response type '${e}' is not supported`,ef.ERR_NOT_SUPPORT,n)})});let h=async e=>{if(null==e)return 0;if(et.isBlob(e))return e.size;if(et.isSpecCompliantForm(e)){let t=new i(eR.origin,{method:"POST",body:e});return(await t.arrayBuffer()).byteLength}return et.isArrayBufferView(e)||et.isArrayBuffer(e)?e.byteLength:(et.isURLSearchParams(e)&&(e+=""),et.isString(e))?(await p(e)).byteLength:void 0},b=async(e,t)=>{let n=et.toFiniteNumber(e.getContentLength());return null==n?h(t):n};return async e=>{let t,{url:n,method:r,data:c,signal:d,cancelToken:p,timeout:v,onDownloadProgress:y,onUploadProgress:x,responseType:$,headers:A,withCredentials:w="same-origin",fetchOptions:S,maxContentLength:C,maxBodyLength:O}=e4(e),k=et.isNumber(C)&&C>-1,j=et.isNumber(O)&&O>-1,E=a||fetch;$=$?($+"").toLowerCase():"text";let P=((e,t)=>{if(e=e?e.filter(Boolean):[],!t&&!e.length)return;let n=new AbortController,r=!1,o=function(e){if(!r){r=!0,i();let t=e instanceof Error?e:this.reason;n.abort(t instanceof ef?t:new eD(t instanceof Error?t.message:t))}},a=t&&setTimeout(()=>{a=null,o(new ef(`timeout of ${t}ms exceeded`,ef.ETIMEDOUT))},t),i=()=>{e&&(a&&clearTimeout(a),a=null,e.forEach(e=>{e.unsubscribe?e.unsubscribe(o):e.removeEventListener("abort",o)}),e=null)};e.forEach(e=>e.addEventListener("abort",o,{once:!0}));let{signal:l}=n;return l.unsubscribe=()=>et.asap(i),l})([d,p&&p.toAbortSignal()],v),z=null,I=P&&P.unsubscribe&&(()=>{P.unsubscribe()}),M=null,R=()=>new ef("Request body larger than maxBodyLength limit",ef.ERR_BAD_REQUEST,e,z);try{var B;let a,d,p,v,T=(d="auth",et.hasOwnProp(e,d)?e[d]:void 0);if(T){let e=et.getSafeProp(T,"username")||"",t=et.getSafeProp(T,"password")||"";a={username:e,password:t}}if(p=(B=n).indexOf("://"),v=B,-1!==p&&(v=v.slice(p+3)),v.includes("@")||v.includes(":")){let e=new URL(n,eR.origin);if(!a&&(e.username||e.password)){let t=tn(e.username),n=tn(e.password);a={username:t,password:n}}(e.username||e.password)&&(e.username="",e.password="",n=e.href)}if(a){let e;A.delete("authorization"),A.set("Authorization","Basic "+btoa((e=(a.username||"")+":"+(a.password||""),encodeURIComponent(e).replace(/%([0-9A-F]{2})/gi,(e,t)=>String.fromCharCode(parseInt(t,16))))))}if(k&&"string"==typeof n&&n.startsWith("data:")&&function(e){if(!e||"string"!=typeof e||!e.startsWith("data:"))return 0;let t=e.indexOf(",");if(t<0)return 0;let n=e.slice(5,t),r=e.slice(t+1);if(/;base64/i.test(n)){let e=r.length,t=r.length;for(let n=0;ne>=2&&37===r.charCodeAt(e-2)&&51===r.charCodeAt(e-1)&&(68===r.charCodeAt(e)||100===r.charCodeAt(e));o>=0&&(61===r.charCodeAt(o)?(n++,o--):a(o)&&(n++,o-=3)),1===n&&o>=0&&(61===r.charCodeAt(o)?n++:a(o)&&n++);let i=3*Math.floor(e/4)-(n||0);return i>0?i:0}let o=0;for(let e=0,t=r.length;e=55296&&n<=56319&&e+1=56320&&t<=57343?(o+=4,e++):o+=3}else o+=3}return o}(n)>C)throw new ef("maxContentLength size of "+C+" exceeded",ef.ERR_BAD_RESPONSE,e,z);if(j&&"get"!==r&&"head"!==r){let e=await h(c);if("number"==typeof e&&isFinite(e)&&(t=e,e>O))throw R()}let F=j&&(et.isReadableStream(c)||et.isStream(c)),N=(e,t,n)=>e7(e,65536,e=>{if(j&&e>O)throw M=R();t&&t(e)},n);if(f&&"get"!==r&&"head"!==r&&(x||F)){if(t=null==t?await b(A,c):t,0!==t||F){let e,r=new i(n,{method:"POST",body:c,duplex:"half"});if(et.isFormData(c)&&(e=r.headers.get("content-type"))&&A.setContentType(e),r.body){let[e,n]=x&&eX(t,eV(eU(x)))||[];c=N(r.body,e,n)}}}else if(F&&!s&&u&&"get"!==r&&"head"!==r)c=N(c);else if(F&&s&&!f&&"get"!==r&&"head"!==r)throw new ef("Stream request bodies are not supported by the current fetch implementation",ef.ERR_NOT_SUPPORT,e,z);et.isString(w)||(w=w?"include":"omit");let H=s&&"credentials"in i.prototype;if(et.isFormData(c)){let e=A.getContentType();e&&/^multipart\/form-data/i.test(e)&&!/boundary=/i.test(e)&&A.delete("content-type")}A.set("User-Agent","axios/1.18.1",!1);let L={...S,signal:P,method:r.toUpperCase(),headers:ei(A.normalize()),body:c,duplex:"half",credentials:H?w:void 0};z=s&&new i(n,L);let D=await (s?E(z,S):E(n,L)),_=eu.from(D.headers);if(k){let t=et.toFiniteNumber(_.getContentLength());if(null!=t&&t>C)throw new ef("maxContentLength size of "+C+" exceeded",ef.ERR_BAD_RESPONSE,e,z)}let W=m&&("stream"===$||"response"===$);if(m&&D.body&&(y||k||W&&I)){let t={};["status","statusText","headers"].forEach(e=>{t[e]=D[e]});let n=et.toFiniteNumber(_.getContentLength()),[r,o]=y&&eX(n,eV(eU(y),!0))||[];D=new l(e7(D.body,65536,t=>{if(k&&t>C)throw new ef("maxContentLength size of "+C+" exceeded",ef.ERR_BAD_RESPONSE,e,z);r&&r(t)},()=>{o&&o(),I&&I()}),t)}$=$||"text";let q=await g[et.findKey(g,$)||"text"](D,e);if(k&&!m&&!W){let t;if(null!=q&&("number"==typeof q.byteLength?t=q.byteLength:"number"==typeof q.size?t=q.size:"string"==typeof q&&(t="function"==typeof o?new o().encode(q).byteLength:q.length)),"number"==typeof t&&t>C)throw new ef("maxContentLength size of "+C+" exceeded",ef.ERR_BAD_RESPONSE,e,z)}return!W&&I&&I(),await new Promise((t,n)=>{e_(t,n,{data:q,headers:eu.from(D.headers),status:D.status,statusText:D.statusText,config:e,request:z})})}catch(t){if(I&&I(),P&&P.aborted&&P.reason instanceof ef){let n=P.reason;throw n.config=e,z&&(n.request=z),t!==n&&Object.defineProperty(n,"cause",{__proto__:null,value:t,writable:!0,enumerable:!1,configurable:!0}),n}if(M)throw z&&!M.request&&(M.request=z),M;if(t instanceof ef)throw z&&!t.request&&(t.request=z),t;if(t&&"TypeError"===t.name&&/Load failed|fetch/i.test(t.message)){let n=new ef("Network Error",ef.ERR_NETWORK,e,z,t&&t.response);throw Object.defineProperty(n,"cause",{__proto__:null,value:t.cause||t,writable:!0,enumerable:!1,configurable:!0}),n}throw ef.from(t,t&&t.code,e,z,t&&t.response)}}},ta=new Map,ti=e=>{let t=e&&e.env||{},{fetch:n,Request:r,Response:o}=t,a=[r,o,n],i=a.length,l,c,s=ta;for(;i--;)l=a[i],void 0===(c=s.get(l))&&s.set(l,c=i?new Map:to(t)),s=c;return c};ti();let tl={http:null,xhr:e6,fetch:{get:ti}};et.forEach(tl,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{__proto__:null,value:t})}catch(e){}Object.defineProperty(e,"adapterName",{__proto__:null,value:t})}});let tc=e=>`- ${e}`,ts=e=>et.isFunction(e)||null===e||!1===e,td=function(e,t){let n,r,{length:o}=e=et.isArray(e)?e:[e],a={};for(let i=0;i`adapter ${e} `+(!1===t?"is not supported by the environment":"is not available in the build"));throw new ef("There is no suitable adapter to dispatch the request "+(o?e.length>1?"since :\n"+e.map(tc).join("\n"):" "+tc(e[0]):"as no adapter specified"),ef.ERR_NOT_SUPPORT)}return r};function tu(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new eD(null,e)}function tp(e){return tu(e),e.headers=eu.from(e.headers),e.data=eH.call(e,e.transformRequest),-1!==["post","put","patch"].indexOf(e.method)&&e.headers.setContentType("application/x-www-form-urlencoded",!1),td(e.adapter||eN.adapter,e)(e).then(function(t){tu(e),e.response=t;try{t.data=eH.call(e,e.transformResponse,t)}finally{delete e.response}return t.headers=eu.from(t.headers),t},function(t){if(!eL(t)&&(tu(e),t&&t.response)){e.response=t.response;try{t.response.data=eH.call(e,e.transformResponse,t.response)}finally{delete e.response}t.response.headers=eu.from(t.response.headers)}return Promise.reject(t)})}let tf={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{tf[e]=function(n){return typeof n===e||"a"+(t<1?"n ":" ")+e}});let tm={};tf.transitional=function(e,t,n){function r(e,t){return"[Axios v1.18.1] Transitional option '"+e+"'"+t+(n?". "+n:"")}return(n,o,a)=>{if(!1===e)throw new ef(r(o," has been removed"+(t?" in "+t:"")),ef.ERR_DEPRECATED);return t&&!tm[o]&&(tm[o]=!0,console.warn(r(o," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(n,o,a)}},tf.spelling=function(e){return(t,n)=>(console.warn(`${n} is likely a misspelling of ${e}`),!0)};let tg=function(e,t,n){if("object"!=typeof e||null===e)throw new ef("options must be an object",ef.ERR_BAD_OPTION_VALUE);let r=Object.keys(e),o=r.length;for(;o-- >0;){let a=r[o],i=Object.prototype.hasOwnProperty.call(t,a)?t[a]:void 0;if(i){let t=e[a],n=void 0===t||i(t,a,e);if(!0!==n)throw new ef("option "+a+" must be "+n,ef.ERR_BAD_OPTION_VALUE);continue}if(!0!==n)throw new ef("Unknown option "+a,ef.ERR_BAD_OPTION)}};class th{constructor(e){this.defaults=e||{},this.interceptors={request:new eS,response:new eS}}async request(e,t){try{return await this._request(e,t)}catch(e){if(e instanceof Error){let t={};Error.captureStackTrace?Error.captureStackTrace(t):t=Error();let n=(()=>{if(!t.stack)return"";let e=t.stack.indexOf("\n");return -1===e?"":t.stack.slice(e+1)})();try{if(e.stack){if(n){let t=n.indexOf("\n"),r=-1===t?-1:n.indexOf("\n",t+1),o=-1===r?"":n.slice(r+1);String(e.stack).endsWith(o)||(e.stack+="\n"+n)}}else e.stack=n}catch(e){}}throw e}}_request(e,t){let n,r;"string"==typeof e?(t=t||{}).url=e:t=e||{};let{transitional:o,paramsSerializer:a,headers:i}=t=e1(this.defaults,t);void 0!==o&&tg(o,{silentJSONParsing:tf.transitional(tf.boolean),forcedJSONParsing:tf.transitional(tf.boolean),clarifyTimeoutError:tf.transitional(tf.boolean),legacyInterceptorReqResOrdering:tf.transitional(tf.boolean),advertiseZstdAcceptEncoding:tf.transitional(tf.boolean),validateStatusUndefinedResolves:tf.transitional(tf.boolean)},!1),null!=a&&(et.isFunction(a)?t.paramsSerializer={serialize:a}:tg(a,{encode:tf.function,serialize:tf.function},!0)),void 0!==t.allowAbsoluteUrls||(void 0!==this.defaults.allowAbsoluteUrls?t.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:t.allowAbsoluteUrls=!0),tg(t,{baseUrl:tf.spelling("baseURL"),withXsrfToken:tf.spelling("withXSRFToken")},!0),t.method=(t.method||this.defaults.method||"get").toLowerCase();let l=i&&et.merge(i.common,i[t.method]);i&&et.forEach(["delete","get","head","post","put","patch","query","common"],e=>{delete i[e]}),t.headers=eu.concat(l,i);let c=[],s=!0;this.interceptors.request.forEach(function(e){if("function"==typeof e.runWhen&&!1===e.runWhen(t))return;s=s&&e.synchronous;let n=t.transitional||eC;n&&n.legacyInterceptorReqResOrdering?c.unshift(e.fulfilled,e.rejected):c.push(e.fulfilled,e.rejected)});let d=[];this.interceptors.response.forEach(function(e){d.push(e.fulfilled,e.rejected)});let u=0;if(!s){let e=[tp.bind(this),void 0];for(e.unshift(...c),e.push(...d),r=e.length,n=Promise.resolve(t);u{if(!n._listeners)return;let t=n._listeners.length;for(;t-- >0;)n._listeners[t](e);n._listeners=null}),this.promise.then=e=>{let t,r=new Promise(e=>{n.subscribe(e),t=e}).then(e);return r.cancel=function(){n.unsubscribe(t)},r},e(function(e,r,o){n.reason||(n.reason=new eD(e,r,o),t(n.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;let t=this._listeners.indexOf(e);-1!==t&&this._listeners.splice(t,1)}toAbortSignal(){let e=new AbortController,t=t=>{e.abort(t)};return this.subscribe(t),e.signal.unsubscribe=()=>this.unsubscribe(t),e.signal}static source(){let e;return{token:new tb(function(t){e=t}),cancel:e}}}let tv={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(tv).forEach(([e,t])=>{tv[t]=e});let ty=function e(t){let n=new th(t),r=p(th.prototype.request,n);return et.extend(r,th.prototype,n,{allOwnKeys:!0}),et.extend(r,n,null,{allOwnKeys:!0}),r.create=function(n){return e(e1(t,n))},r}(eN);ty.Axios=th,ty.CanceledError=eD,ty.CancelToken=tb,ty.isCancel=eL,ty.VERSION="1.18.1",ty.toFormData=ev,ty.AxiosError=ef,ty.Cancel=ty.CanceledError,ty.all=function(e){return Promise.all(e)},ty.spread=function(e){return function(t){return e.apply(null,t)}},ty.isAxiosError=function(e){return et.isObject(e)&&!0===e.isAxiosError},ty.mergeConfig=e1,ty.AxiosHeaders=eu,ty.formToJSON=e=>eT(et.isHTMLForm(e)?new FormData(e):e),ty.getAdapter=td,ty.HttpStatusCode=tv,ty.default=ty;var tx=n(87959),t$=n(37599);function tA(){return(0,t$.toObject)(window.jjbCommonHttpConfig)}(0,t$.isUndefined)(window.__JJB_ENVIRONMENT__)&&console.error('[@cqsjjb/jjb-common-lib]: window中未定义 "__JJB_ENVIRONMENT__"。');let tw=(0,t$.toObject)(window.__JJB_ENVIRONMENT__),tS=(0,t$.toObject)(window.jjbCommonGlobalConfig),tC=(0,t$.toObject)(tS.httpInterceptor),tO=tC.request,tk=tC.response,tj=/^http[s]?:\/\//,tE="token";function tP(e){let t=!1;return -1!==e.indexOf("@")&&(t=!0),{has:t,url:e.replace(/@/g,"")}}function tz(e,t,n={},r=!1){let o=(0,t$.toObject)(r),{header:a}=tA();return(0,t$.isUndefined)(a)?!o[tE]&&window.sessionStorage[tE]&&(o[tE]=window.sessionStorage[tE]):o=a,tw.tenantCode&&(o.tenantCode=tw.tenantCode),new Promise((r,a)=>{(function(e,t,n={},r={}){(0,t$.isUndefined)(tw.API_HOST)&&console.warn('[@cqsjjb/jjb-common-lib]: "__JJB_ENVIRONMENT__.API_HOST" 未定义!将使用浏览器 "origin" 作为访问前缀路径。');let o=function(e){let{baseUrl:t,API_HOST:n}=tA();if(!(0,t$.isUndefined)(t)||!(0,t$.isUndefined)(n)){t&&console.warn("[@cqsjjb/jjb-common-lib]: 'jjbCommonHttpConfig.baseUrl' 已被弃用!后续版本将会删除,请使用API_HOST替换。");let r=n||t;return tj.test(e)?e:r+e}return tj.test(e)?e:tw.API_HOST?tw.API_HOST+e:e}(e),a=String(t).toUpperCase(),i={["GET"===a?"params":"data"]:n||{}},l=r||{};return new Promise((e,t)=>ty({...i,url:o,method:a,headers:l,timeout:tS.httpTimeout||3e5,responseType:tS.httpResponseType||"json"}).then(t=>{if((0,t$.isFunction)(tk)){let n=tk(t);(0,t$.isPromise)(n)?n.then(t=>e(t)):e(t)}else e(t)}).catch(e=>{if(e.response&&401===e.response.status&&(window.onTokenExpire&&window.onTokenExpire(),window.postMessage({type:"__TOKEN_EXPIRE__"})),(0,t$.isFunction)(tk)){let n=tk(e);(0,t$.isPromise)(n)?n.then(e=>t(e)):t(e)}else t(e)}))})(e,t,n,o).then(e=>r(function(e){if(200===e.status){let t=(0,t$.toObject)(e.data);return t.success||(t.errMessage?(console.error(`[@cqsjjb/jjb-common-lib]: ${t.errMessage}`),tx.Ay.error(t.errMessage)):console.error("[@cqsjjb/jjb-common-lib]: 当前接口响应数据异常。")),{...t,success:!(0,t$.isUndefined)(t.success)&&t.success,message:t.errMessage,respMsg:t.errMessage,respCode:t.errCode||"0000",respDesc:t.errMessage}}}(e))).catch(e=>a(e))})}function tI(e,t,n={},r=!1){return(0,t$.isFunction)(tO)?new Promise((o,a)=>{let i=tO(e,t,n,r);(0,t$.isPromise)(i)&&i.then(e=>{tz(...e).then(e=>o(e)).catch(e=>a(e))})}):tz(e,t,n,r)}function tM(e,t={},n={}){if(tP(e).has)throw Error("[@cqsjjb/jjb-common-lib]: Get请求不允许使用“@”操作符!");return tI(e,"get",t,n)}function tR(e,t={},n={}){let{has:r,url:o}=tP(e);return tI(o,"post",r?t:{request:t},n)}function tB(e,t={},n={}){let{has:r,url:o}=tP(e);return tI(o,"delete",r?t:{request:t},n)}function tT(e,t={},n={},r=""){let{has:o,url:a}=tP(e);return tI(a,"put",o?t:{request:t},n,r)}function tF(e,t={},n={}){let{has:r,url:o}=tP(e);return tI(o,"patch",r?t:{request:t},n)}},57006(e,t,n){"use strict";n.r(t),n.d(t,{http:()=>l,tools:()=>c,color:()=>a,crypto:()=>r,qs:()=>i,setJJBCommonAntdMessage:()=>h,eventBus:()=>o});var r={};n.r(r),n.d(r,{AES_128_Decrypt:()=>f,AES_128_Encrypt:()=>p,MD5:()=>m});var o={};n.r(o),n.d(o,{eventBus:()=>g});let a={BLANK:"#000",BLUE:"#1890FF",Blue_10:"#199BFF",CYAN:"#13C2C2",GEEKBLUE:"#2F54EB",GRAY:"gray",GRAYSKYBLUE:"#F2F9FF",GRAY_333:"#333",GRAY_444:"#444",GRAY_555:"#555",GRAY_666:"#666",GRAY_777:"#777",GRAY_888:"#888",GRAY_999:"#595959",GRAY_AAA:"#AAA",GRAY_B8:"#b8b8b8",GRAY_BBB:"#BBB",GRAY_CCC:"#888",GRAY_DDD:"#DDD",GRAY_EEE:"#EEE",GRAY_F0:"#F0F0F0",GRAY_F1:"#F1F1F1",GRAY_F2:"#F2F2F2",GRAY_F3:"#F3F3F3",GRAY_F4:"#F4F4F4",GRAY_F5:"#F5F5F5",GRAY_F6:"#F6F6F6",GRAY_F7:"#F7F7F7",GRAY_F8:"#F8F8F8",GRAY_F9:"#F9F9F9",GRAY_F9FA:"#F9FAFA",GRAY_FA:"#FAFAFA",GRAY_FB:"#FBFBFB",GRAY_FC:"#FCFCFC",GRAY_FD:"#FDFDFD",GRAY_FE:"#FEFEFE",GRAY_a2:"#a2a2a2",GRAY_f5fe:"#edf5fe",GREEN:"#52C41A",GREEN_10:"#52C41A",GREEN_4B:"#70BA4B",GREY_10:"grey",MAGENTA:"#EB2F96",ORANGE:"#FA8C16",PINK:"#EB2F96",PURPLE:"#722ED1",RED:"#F5222D",RED_10:"#FF4D4F",RED_5:"#F16C69",VOLCANO:"#FA541C",WHITE:"#FFFFFF",YELLOW:"#fadb14"};var i=n(20049),l=n(46285),c=n(37599),s=n(21396),d=n.n(s);let u="f4k9f5w7f8g4er26";function p(e){try{return d().AES.encrypt(d().enc.Utf8.parse(e),d().enc.Utf8.parse(u),{iv:d().enc.Utf8.parse("0000000000000000"),mode:d().mode.ECB,padding:d().pad.Pkcs7}).toString()}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: AES_128_Encrypt 加密失败!",e),""}}function f(e){try{return d().AES.decrypt(e,d().enc.Utf8.parse(u),{mode:d().mode.ECB,padding:d().pad.Pkcs7}).toString(d().enc.Utf8).toString()}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: AES_128_Decrypt 解密失败!",e),""}}function m(e){try{return d().MD5(e).toString()}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: MD5 加密失败!",e),""}}let g=new class{constructor(){this.eventTarget=window,this.eventDataStore={}}on(e,t,n=!1){let r=e=>{t(e.detail)};return this.eventTarget.addEventListener(e,r),n&&this.eventDataStore.hasOwnProperty(e)&&t(this.eventDataStore[e]),r}emit(e,t){this.eventDataStore[e]=t;let n=new CustomEvent(e,{detail:t,bubbles:!1,cancelable:!1});this.eventTarget.dispatchEvent(n)}off(e,t){t&&this.eventTarget.removeEventListener(e,t)}getEventData(e){return this.eventDataStore[e]}clearEventData(e){e?delete this.eventDataStore[e]:this.eventDataStore={}}};function h(){console.warn("[@cqsjjb/jjb-common-lib]: setJJBCommonAntdMessage 方法已废弃, 后续版本将会删除。")}},20049(e,t,n){"use strict";n.r(t),n.d(t,{parse:()=>function e(t){let n={};if(!(0,r.isString)(t))return n;try{let o=new URL(t);if(o.search){for(let[e,r]of new URL(t).searchParams.entries())n[e]=decodeURIComponent(r);return n}if(o.hash)return e(`http://127.0.0.1?${(0,r.toString)(location.hash.split("?")[1])}`);return{}}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: parse 解析失败!",e.message),n}},stringify:()=>o});var r=n(37599);function o(e,t=!0){if(!(0,r.isObject)(e))return;let n=new URLSearchParams;return Object.keys(e).forEach(t=>{let r=e[t];n.append(t,r)}),n.size?`${t?"?":""}${n.toString()}`:""}},37599(e,t,n){"use strict";n.r(t),n.d(t,{getCalcAspectRadio:()=>e_,isSymbol:()=>ep,TRUE_ENUM:()=>h,getSplitStringValue:()=>eq,isBoolEnum:()=>Q,getDynamicUploadFileList:()=>d,isPrimarySymbol:()=>el,noop:()=>W,getDynamicFormilyFieldValue:()=>f,isEmptyObject:()=>C,toNumber:()=>j,isDate:()=>eu,isSet:()=>em,toFunction:()=>E,asyncWait:()=>eO,isArray:()=>R,isRegExp:()=>eg,parseJSON:()=>v,isEmptyStringObject:()=>D,isPrimaryString:()=>er,getTargetValue:()=>eV,isEmptyArray:()=>eI,isFalseEnum:()=>K,routerParamQuery:()=>eB,isTrueStr:()=>Y,toObject:()=>O,getEnumLabel:()=>eY,isEmptyStringArray:()=>_,isUndefined:()=>J,parseObject:()=>y,toArrayForce:()=>e$,isNumberArray:()=>T,FALSE_ENUM:()=>b,getPrimaryType:()=>I,createOnlyKey:()=>eF,isUploadFileListArray:()=>F,cleanObject:()=>S,setAntProTableConfigCache:()=>l,isBool:()=>M,arrayStringTrim:()=>eE,base64ToFile:()=>eN,getDynamicFormilyFields:()=>g,isNativeEvent:()=>z,isFalseStr:()=>G,isElement:()=>P,isPromise:()=>es,inIframe:()=>ew,isObjectArray:()=>N,isValidArray:()=>B,toPascalCase:()=>eQ,isObject:()=>ed,isPrimaryFunction:()=>et,getDynamicFormilyDesignScheme:()=>p,modalConfirmHelper:()=>eX,getDynamicFormilyUploadFileUrl:()=>u,fileToBase64:()=>eL,getFileToBase64:()=>eD,isFunction:()=>ee,isImageURL:()=>V,isPrimaryBool:()=>ea,isPrimaryBigint:()=>ec,getAllAntProTableConfigCache:()=>s,getBase64ToFile:()=>eH,isEmptyString:()=>eP,groupByDynamicFormilyField:()=>m,isPrimaryNumber:()=>en,isStringArray:()=>L,router:()=>eR,isMap:()=>ef,is2DArray:()=>H,isPrimaryUndefined:()=>ei,isNull:()=>Z,cleanArray:()=>w,classNames:()=>eA,isNumber:()=>eh,isWindow:()=>ev,removeAntProTableConfigCache:()=>i,routerParamMerge:()=>eT,stringifyArray:()=>A,isBodyElement:()=>ex,getSplitterValue:()=>eW,getEnumValue:()=>eG,stringifyObject:()=>$,isTrueEnum:()=>U,toArray:()=>q,inWxBrowser:()=>eS,isPrimaryObject:()=>eo,toBoolEnum:()=>ej,getPaginationNumberCalc:()=>eU,toCamelCase:()=>eK,textPlaceholder:()=>X,isFalseValue:()=>ez,toString:()=>k,uniqueArray:()=>ek,arrayHelper:()=>eC,isDocumentElement:()=>ey,getAntProTableConfigCache:()=>c,parseArray:()=>x,isString:()=>eb});var r=n(44499),o=n(20049),a=n(46285);function i(e){try{let t=`safetyEval#${decodeURIComponent(e)}`;window.localStorage.removeItem(t)}catch(e){console.warn("[@cqsjjb/jjb-common-lib]: 未知错误!",e.message)}}function l(e,t){try{let n=`safetyEval#${decodeURIComponent(e)}`;try{window.localStorage.setItem(n,JSON.stringify(t))}catch(e){console.warn("[@cqsjjb/jjb-common-lib]: 写入配置缓存失败。",e.message)}}catch(e){console.warn("[@cqsjjb/jjb-common-lib]: 未知错误!",e.message)}}function c(e){try{let t=`safetyEval#${decodeURIComponent(e)}`;try{return JSON.parse(window.localStorage.getItem(t))}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: 写入配置缓存失败。",e.message),{}}}catch(e){console.warn("[@cqsjjb/jjb-common-lib]: 未知错误!",e.message)}}function s(){try{let e=[];return Object.keys(localStorage).filter(e=>/^[a-zA-Z]+#/.test(e)).forEach(t=>{let[n,r]=t.split("#");e.push({route:r,identify:n,cache:c(r)})}),e}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: 未知错误!",e.message),[]}}function d(e=[]){return e&&R(e)&&e.length?e.map(e=>O(e.response)).map(e=>{let t,n,r;return e?.data?(t=u(e.data),r=e.data?.ext,n=e.data?.name):(t=u(e),r=e.ext,n=e.name),{url:t,ext:r,name:`${n}.${r}`,isImage:V(t)}}):(console.warn("[@cqsjjb/jjb-common-lib]: getDynamicUploadFileList 文件列表为空!",e),[])}function u(e){return e.url||e.fileUrl||e.src}function p(e,t){let n=O(t);return e?t.token?t.host?new Promise((t,r)=>{(0,a.Get)(`${n.host}/design/designs/${e}`,{},{token:n.token}).then(n=>{n.success?Z(n.data)?(console.warn(`[@cqsjjb/jjb-common-lib]: 未查询到表单设计code '${e}' 的配置数据, 请检查code是否正确. `),t({})):t(y(O(n.data).config)):r(`[@cqsjjb/jjb-common-lib]: ${n.errMessage}`)})}):Promise.reject("[@cqsjjb/jjb-common-lib]: 表单设计入参 'option.host' 不能为空!"):Promise.reject("[@cqsjjb/jjb-common-lib]: 表单设计入参 'option.token' 不能为空!"):Promise.reject("[@cqsjjb/jjb-common-lib]: 表单设计入参 'code' 不能为空!")}function f(e={},t,n={}){if(C(e))return console.warn("[@cqsjjb/jjb-common-lib]: getDynamicFormilyFieldValue 字段为空!",e),t;let{formType:r,fromComponentEnum:o}=O(e),a=q(y(e.extJson).enums);if("FIELD_SELECT"===o){let e=a.find(e=>e.value===eW(t));if(e&&e.label)return eW(e.label)}if("FIELD_CHECKBOX"===o&&R(t)){let e=a.filter(e=>t.includes(e.value));return e.length>0?e.map(e=>e.label).join("、"):void 0}return"FIELD_TEXT"===o?"Cascader"===r?function(e=[],t){return e?.find(e=>e.parentCodes===q(t)?.join(","))}(n.regions,t)?.parentNames||"-":J(e.httpInfo)?eW(t):{load:()=>{let{httpUrl:t,headers:n}=O(e.httpInfo);return t?fetch(t,{headers:O(n)}):Promise.resolve(null)},selected:eW(t,!0)}:"FIELD_FILE"===o?d(t):t}function m(e){let[t,n]=[[],new Map];for(let t of e)t.parentCode?n.get(t.parentCode)?n.set(t.parentCode,[...n.get(t.parentCode),t]):n.set(t.parentCode,[t]):n.set(t.fieldCode,t);return Array.from(n.keys()).forEach(e=>{let r=n.get(e);R(r)?t.push({children:r,fieldCode:e,fromComponentEnum:"GRID_FORM"}):t.push(r)}),t}function g(e=[],t={},n={}){return m(function(e=[],t={},n={}){let[r,o]=[[],[]];return eI(e)?(console.warn("[@cqsjjb/jjb-common-lib]: getDynamicFormilyPrimaryFields 字段集合为空!",e),r):(e.forEach(e=>{let o=f(e,t[e.fieldCode],n),a=y(e.extJson),i=R(a)?[]:a.enums,l=R(a)?a:[],{name:c,formType:s,extValues:d,fieldCode:u,parentCode:p,requiredEnum:m,fromComponentEnum:g,fieldDataTypeEnum:h}=e;r.push({name:c,value:o,extValues:d,enumList:i,tableColumns:l,formType:R(a)?"Table":s,fieldCode:u,parentCode:p,requiredEnum:m,fromComponentEnum:g,fieldDataTypeEnum:h})}),e.forEach(({name:e,formType:t,fieldCode:n,parentCode:a,requiredEnum:i,fromComponentEnum:l,fieldDataTypeEnum:c})=>{r.some(e=>e.fieldCode===n)||o.push({name:e,formType:t,fieldCode:n,parentCode:a,requiredEnum:i,fromComponentEnum:l,fieldDataTypeEnum:c,value:null,enumList:[]})}),r.concat(o))}(e,t,{regions:function(e=[]){let t=[];return!function e(n){for(let r=0;re.length))return 0===t?e[0]:-1===t?e[e.length-1]:e[t]},trim:e=>L(e)?e.map(e=>e.trim()):[],copy(e){let t=[];if(R(e))for(let n=0;nT(e)?e.reduce((e,t)=>e+t):-1,group(e=[],t){if(isNaN(t)||t<1||t>=e.length)return[e];let n=[];for(let r=0,o=e.length;r{let a=e();n&&r++,(a||n&&r>=n)&&(clearInterval(o),et(t)&&t(a))},100)}function ek(e=[]){return Array.from(new Set(e))}function ej(e){return e.toString().toUpperCase()}function eE(e){return console.warn("[@cqsjjb/jjb-common]: arrayStringTrim已废弃,请使用tools.arrayHelper.trim替代。"),eC.trim(e)}function eP(e){return eb(e)&&""===e}function ez(e){return""===e||0===e||null==e}function eI(e){return!R(e)||0===e.length}let eM=e=>{let t=(0,r.zR)(),n=[],o={...eR.query,...O(e)};Object.keys(o).forEach(e=>{let t=o[e];Z(t)||J(t)||eP(t)||n.push(`${e}=${window.decodeURIComponent(t)}`)});let{location:{hash:a,pathname:i}}=t;t.replace(`${i}${a.split("?")[0]}${n.length?`?${n.join("&")}`:""}`)},eR={values:()=>Object.values(eR.query),keys:()=>Object.keys(eR.query),get length(){return eR.toString().length},toString:(e=!1)=>(0,o.stringify)(eR.query,e),has:e=>eb(e)&&eR.keys().includes(e),get query(){return new Proxy((0,o.parse)(window.location.href),{get:(e,t)=>e[t]||void 0,set:(e,t,n)=>(eM({[t]:n}),!0),deleteProperty:(e,t)=>(eM({[t]:void 0}),!0)})},add(e,t){eb(e)&&(eR.query={[e]:t})},delete(e){eb(e)&&(eR.query={[e]:void 0})},set query(values){eM(values)}};function eB(){return console.warn("[@cqsjjb/jjb-common-lib]: routerParamQuery已弃用!请使用tools.router替代。"),eR.query}function eT(){return console.warn("[@cqsjjb/jjb-common-lib]: routerParamMerge已弃用!请使用tools.router替代。"),eR.query=arguments[0],Promise.resolve()}function eF(){let e="ABCDEFGHIJKLMNOPQRSTUVWXYZ",t=[];for(let n=0;n{let r,o=new FileReader;o.readAsDataURL(e),o.onload=()=>r=o.result,o.onerror=e=>n(e),o.onloadend=()=>t(r)})}function eD(e){return console.warn("[@cqsjjb/jjb-common-lib]: getFileToBase64已弃用!请使用tools.fileToBase64替代。"),eL(e)}function e_(e,t){return{x:16,y:16/(e/t),width:e,height:t,different:e/t}}function eW(e,t=!1){if(eb(e)&&-1!==e.indexOf("&"))if(a.HTTP_URL_REG.test(e))return e;else{let n=e.split("&");if(t){let[e,t]=n;return{key:e?.trim(),label:t?.trim()}}if(n.length>1)return n[n.length-1]}else if(R(e))return e.map(e=>eW(e,t));else return e}let eq=eW;function eV(e){if(z(e))return O(e.target).value}function eX(e){let{title:t,actionType:n,config:r={},payload:o={},showMsg:a=!1,needMsg:i=!1,success:l}=e,c=window.$$jjbCommonAntdMessage||{success:W};return{title:t,...r,onOk:()=>this.props[n](o).then(e=>{e.success?((i||a)&&c.success(e.respMsg),l&&l()):console.warn("[@cqsjjb/jjb-common-lib]: modalConfirmHelper 操作失败!",e.respMsg)})}}function eU(e){let t=eR.query,n=t.page?"page":"pageIndex",r=parseInt(t[n]||1,0);return eR.query={...t,[n]:1===r?r:1===e?r-1:r},Promise.resolve()}function eY(e){return eb(e)?e:ed(e)?e.label:void 0}function eG(e){return eb(e)?e:ed(e)?e.value:void 0}function eK(e){return eb(e)?e.replace(/_([a-z])/g,(e,t)=>t.toUpperCase()):""}function eQ(e){return eb(e)?e.replace(/(^\w|_\w)/g,e=>e.replace("_","").toUpperCase()):""}},38105(e,t,n){"use strict";n.d(t,{P:()=>p});var r=n(96540),o=n(56347),a=n(54625),i=n(38940);function l(){return(l=Object.assign?Object.assign.bind():function(e){for(var t=1;t!!e&&"index"!==e);t.stat=n.length>0,t.param=n.join("_")}return t}function d(e){return`${e[0].toLowerCase()}${e.substring(1)}`}class u extends r.Component{constructor(e){super(e),this.state={hasError:!1,error:null,componentStack:null}}static getDerivedStateFromError(e){return{hasError:!0,error:e}}componentDidCatch(e,t){this.setState({componentStack:t?.componentStack}),console.warn("ErrorBoundary caught error:",e,t)}render(){return this.state.hasError?r.createElement(i.Ay,{status:"error",title:"抱歉,应用内部发生异常错误。",subTitle:r.createElement("div",null,r.createElement("div",{style:{color:"#333"}},this.state.error?.message),r.createElement("div",{style:{width:500,margin:"auto",textAlign:"left",whiteSpace:"pre"}},this.state.componentStack))}):this.props.children}}let p=({app:e})=>{let t,p=function(e=[]){let t=[],r=e.find(e=>"/"===e.path);return e.forEach(n=>{if("/"===n.path)return;let r=n.path.split("/").slice(1);n.parentFile=1===r.length?null:e.find(e=>e.path==="/"+r.slice(0,-1).join("/"))?.file,t.push(n)}),r&&(Object.assign(r,{parentFile:null}),t.push(r)),t.forEach(e=>{e.children=t.filter(t=>t.parentFile===e.file)}),function(e=[]){return function e(t=[]){return t.map(t=>({...t,children:t.children?.length?e(t.children):[],Component:n(10016)(`./pages${t.file.replace(/^\./,"")}`).default}))}(e)}(t.filter(e=>null===e.parentFile))}((t=[],n(2778).keys().forEach(e=>{if(/components|tools|assets/.test(e))return;let n=e.split("/"),r=n[n.length-1],{stat:o,param:a}=s(r),i=n.slice(1,n.length-1).map(e=>{let{stat:t,param:n}=s(e);return t?`:${n}`:e});if(o||["index.js","index.ts","index.cjs","index.mjs","index.tsx","index.jsx"].includes(r)){let n="/"+i.map(d).join("/")+(o?`/:${a}`:"");/\s/.test(n)&&console.warn(`[@cqsjjb/dva-runtime]: 路由 <${n}> 中存在空格,请检查页面目录命名`),t.push({path:n,file:e})}}),t.reverse()));return r.createElement(a.Kd,{basename:c},r.createElement(u,null,function e(t=[],{app:n}){return r.createElement(o.Switch,null,t.map(({path:t,children:a,Component:i},c)=>r.createElement(o.Route,{key:c,path:t,exact:"/"===t,render:t=>r.createElement(i,l({},t,{_app:n}),a.length>0&&e(a,{app:n}))})),r.createElement(o.Route,{path:"*",render:({location:e})=>t.some(t=>{if("/"===t.path)return!1;let n=t.path.replace(/\/$/,""),r=e.pathname.replace(/\/$/,"");return r.startsWith(n+"/")||r===n||n.includes(r)})?null:r.createElement(i.Ay,{status:"info",title:"抱歉,您访问的应用页面不存在。",subTitle:r.createElement("div",{style:{textAlign:"left",maxWidth:360,margin:"auto"}},r.createElement("div",{style:{marginBottom:16}},"路径: ",r.createElement("span",{style:{color:"#000"}},e.pathname)),r.createElement("div",{style:{color:"#666"}},"可能的原因是:"),r.createElement("ul",null,r.createElement("li",null,"应用可能正在发版更新中,请稍后再试。"),r.createElement("li",null,"此页面不在应用的页面目录中,或已被删除。"),r.createElement("li",null,"页面地址拼写错误,请检查页面地址是否正确。")))})}))}(p,{app:e})))}},28311(e,t,n){"use strict";n.d(t,{dm:()=>C,$R:()=>A,mj:()=>x,CV:()=>y,Hx:()=>w});var r=n(96540),o=n(52956),a=n(37599),i=n(57006),l=n(30502),c=n(40961),s=n(44499);let d="call",u="assign",p="property",f="function",m=["Post","Get","Put","Patch","Delete"],g=e=>Error(`[@cqsjjb/jjb-dva-runtime-models]: ${e}`);function h(e){if(i.tools.isString(e)){let t=e.trim();if(/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(e))return{type:p,value:t};if(/^(Post|Get|Patch|Delete|Put)\s*>\s*.+$/.test(e))return{type:d,value:t};if(/(\||res|&)/g.test(e))return{type:u,value:t};throw g(`参数无效,可能原因: + `)();o.parameter&&(a.parameter=o.parameter),t({name:e.name,status:!0,module:a})}catch(n){console.error(`[Import:ERR] in ${e.name} appear ${n.message}`),t({name:e.name,status:!1,module:{}})}},r.send()})}n.d(t,{XK:()=>r}),n(96540)},57971(e,t,n){"use strict";n.d(t,{a:()=>a});var r=n(96540),o=n(57006);function a(e){let t="object"==typeof e&&null!==e&&("debug"in e||"disabled"in e),n=!!t&&e.disabled,a=e=>{let t=r.forwardRef((t,a)=>{let[i,l]=r.useState([]);return r.useEffect(()=>{n||o.http.Get("/system/operation/menus/list/current/buttons-perms",{path:window.location.pathname},{token:window.sessionStorage.getItem("token")}).then(e=>l(e.data||[]))},[]),r.createElement(e,{...t,ref:a,permissionList:i,permission:n?()=>!0:e=>Array.isArray(e)?i.some(t=>e.includes(t)):i.includes(e)})});return t.displayName=`Permission(${e.displayName||e.name||"Component"})`,t};return t?e=>a(e):a(e)}},46285(e,t,n){"use strict";let r,o,a,i;n.r(t),n.d(t,{Patch:()=>tF,Delete:()=>tB,Post:()=>tR,request:()=>tI,Put:()=>tT,Get:()=>tM,HTTP_URL_REG:()=>tj});var l,c,s,d,u={};function p(e,t){return function(){return e.apply(t,arguments)}}n.r(u),n.d(u,{hasBrowserEnv:()=>eE,hasStandardBrowserEnv:()=>ez,hasStandardBrowserWebWorkerEnv:()=>eI,navigator:()=>eP,origin:()=>eM});let{toString:f}=Object.prototype,{getPrototypeOf:m}=Object,{iterator:g,toStringTag:h}=Symbol,b=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),v=(e,t)=>{let n=e,r=[];for(;null!=n&&n!==Object.prototype&&-1===r.indexOf(n);){if(r.push(n),b(n,t))return!0;n=m(n)}return!1},y=(r=Object.create(null),e=>{let t=f.call(e);return r[t]||(r[t]=t.slice(8,-1).toLowerCase())}),x=e=>(e=e.toLowerCase(),t=>y(t)===e),$=e=>t=>typeof t===e,{isArray:A}=Array,w=$("undefined");function S(e){return null!==e&&!w(e)&&null!==e.constructor&&!w(e.constructor)&&k(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}let C=x("ArrayBuffer"),O=$("string"),k=$("function"),j=$("number"),E=e=>null!==e&&"object"==typeof e,P=e=>{if(!E(e))return!1;let t=m(e);return(null===t||t===Object.prototype||null===m(t))&&!v(e,h)&&!v(e,g)},z=x("Date"),I=x("File"),M=x("Blob"),R=x("FileList"),B="u">typeof globalThis?globalThis:"u">typeof self?self:"u">typeof window?window:"u">typeof global?global:{},T=void 0!==B.FormData?B.FormData:void 0,F=x("URLSearchParams"),[N,H,L,D]=["ReadableStream","Request","Response","Headers"].map(x);function _(e,t,{allOwnKeys:n=!1}={}){let r,o;if(null!=e)if("object"!=typeof e&&(e=[e]),A(e))for(r=0,o=e.length;r0;)if(t===(n=r[o]).toLowerCase())return n;return null}let q="u">typeof globalThis?globalThis:"u">typeof self?self:"u">typeof window?window:global,V=e=>!w(e)&&e!==q,X=(o="u">typeof Uint8Array&&m(Uint8Array),e=>o&&e instanceof o),U=x("HTMLFormElement"),{propertyIsEnumerable:Y}=Object.prototype,G=x("RegExp"),K=(e,t)=>{let n=Object.getOwnPropertyDescriptors(e),r={};_(n,(n,o)=>{let a;!1!==(a=t(n,o,e))&&(r[o]=a||n)}),Object.defineProperties(e,r)},Q=x("AsyncFunction"),J=(l="function"==typeof setImmediate,c=k(q.postMessage),l?setImmediate:c?(s=`axios@${Math.random()}`,d=[],q.addEventListener("message",({source:e,data:t})=>{e===q&&t===s&&d.length&&d.shift()()},!1),e=>{d.push(e),q.postMessage(s,"*")}):e=>setTimeout(e)),Z="u">typeof queueMicrotask?queueMicrotask.bind(q):"u">typeof process&&process.nextTick||J,ee=e=>null!=e&&k(e[g]),et={isArray:A,isArrayBuffer:C,isBuffer:S,isFormData:e=>{if(!e)return!1;if(T&&e instanceof T)return!0;let t=m(e);if(!t||t===Object.prototype||!k(e.append))return!1;let n=y(e);return"formdata"===n||"object"===n&&k(e.toString)&&"[object FormData]"===e.toString()},isArrayBufferView:function(e){return"u">typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&C(e.buffer)},isString:O,isNumber:j,isBoolean:e=>!0===e||!1===e,isObject:E,isPlainObject:P,isEmptyObject:e=>{if(!E(e)||S(e))return!1;try{return 0===Object.keys(e).length&&Object.getPrototypeOf(e)===Object.prototype}catch(e){return!1}},isReadableStream:N,isRequest:H,isResponse:L,isHeaders:D,isUndefined:w,isDate:z,isFile:I,isReactNativeBlob:e=>!!(e&&void 0!==e.uri),isReactNative:e=>e&&void 0!==e.getParts,isBlob:M,isRegExp:G,isFunction:k,isStream:e=>E(e)&&k(e.pipe),isURLSearchParams:F,isTypedArray:X,isFileList:R,forEach:_,merge:function e(...t){let{caseless:n,skipUndefined:r}=V(this)&&this||{},o={},a=(t,a)=>{if("__proto__"===a||"constructor"===a||"prototype"===a)return;let i=n&&"string"==typeof a&&W(o,a)||a,l=b(o,i)?o[i]:void 0;P(l)&&P(t)?o[i]=e(l,t):P(t)?o[i]=e({},t):A(t)?o[i]=t.slice():r&&w(t)||(o[i]=t)};for(let e=0,n=t.length;e(_(t,(t,r)=>{n&&k(t)?Object.defineProperty(e,r,{__proto__:null,value:p(t,n),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(e,r,{__proto__:null,value:t,writable:!0,enumerable:!0,configurable:!0})},{allOwnKeys:r}),e),trim:e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:e=>(65279===e.charCodeAt(0)&&(e=e.slice(1)),e),inherits:(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),Object.defineProperty(e.prototype,"constructor",{__proto__:null,value:e,writable:!0,enumerable:!1,configurable:!0}),Object.defineProperty(e,"super",{__proto__:null,value:t.prototype}),n&&Object.assign(e.prototype,n)},toFlatObject:(e,t,n,r)=>{let o,a,i,l={};if(t=t||{},null==e)return t;do{for(a=(o=Object.getOwnPropertyNames(e)).length;a-- >0;)i=o[a],(!r||r(i,e,t))&&!l[i]&&(t[i]=e[i],l[i]=!0);e=!1!==n&&m(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},kindOf:y,kindOfTest:x,endsWith:(e,t,n)=>{e=String(e),(void 0===n||n>e.length)&&(n=e.length),n-=t.length;let r=e.indexOf(t,n);return -1!==r&&r===n},toArray:e=>{if(!e)return null;if(A(e))return e;let t=e.length;if(!j(t))return null;let n=Array(t);for(;t-- >0;)n[t]=e[t];return n},forEachEntry:(e,t)=>{let n,r=(e&&e[g]).call(e);for(;(n=r.next())&&!n.done;){let r=n.value;t.call(e,r[0],r[1])}},matchAll:(e,t)=>{let n,r=[];for(;null!==(n=e.exec(t));)r.push(n);return r},isHTMLForm:U,hasOwnProperty:b,hasOwnProp:b,hasOwnInPrototypeChain:v,getSafeProp:(e,t)=>null!=e&&v(e,t)?e[t]:void 0,reduceDescriptors:K,freezeMethods:e=>{K(e,(t,n)=>{if(k(e)&&["arguments","caller","callee"].includes(n))return!1;if(k(e[n])){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},toObjectSet:(e,t)=>{let n={};return(A(e)?e:String(e).split(t)).forEach(e=>{n[e]=!0}),n},toCamelCase:e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(e,t,n){return t.toUpperCase()+n}),noop:()=>{},toFiniteNumber:(e,t)=>null!=e&&Number.isFinite(e*=1)?e:t,findKey:W,global:q,isContextDefined:V,isSpecCompliantForm:function(e){return!!(e&&k(e.append)&&"FormData"===e[h]&&e[g])},toJSONObject:e=>{let t=new WeakSet,n=e=>{if(E(e)){if(t.has(e))return;if(S(e))return e;if(!("toJSON"in e)){t.add(e);let r=A(e)?[]:{};return _(e,(e,t)=>{let o=n(e);w(o)||(r[t]=o)}),t.delete(e),r}}return e};return n(e)},isAsyncFn:Q,isThenable:e=>e&&(E(e)||k(e))&&k(e.then)&&k(e.catch),setImmediate:J,asap:Z,isIterable:ee,isSafeIterable:e=>null!=e&&v(e,g)&&ee(e)},en=et.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),er=RegExp("[\\u0000-\\u0008\\u000a-\\u001f\\u007f]+","g"),eo=RegExp("[^\\u0009\\u0020-\\u007e\\u0080-\\u00ff]+","g");function ea(e,t){return et.isArray(e)?e.map(e=>ea(e,t)):function(e){let t=0,n=e.length;for(;tt;){let t=e.charCodeAt(n-1);if(9!==t&&32!==t)break;n-=1}return 0===t&&n===e.length?e:e.slice(t,n)}(String(e).replace(t,""))}function ei(e){let t=Object.create(null);return et.forEach(e.toJSON(),(e,n)=>{t[n]=ea(e,eo)}),t}let el=Symbol("internals");function ec(e){return e&&String(e).trim().toLowerCase()}function es(e){return!1===e||null==e?e:et.isArray(e)?e.map(es):ea(String(e),er)}function ed(e,t,n,r,o){if(et.isFunction(r))return r.call(this,t,n);if(o&&(t=n),et.isString(t)){if(et.isString(r))return -1!==t.indexOf(r);if(et.isRegExp(r))return r.test(t)}}class eu{constructor(e){e&&this.set(e)}set(e,t,n){let r=this;function o(e,t,n){let o=ec(t);if(!o)return;let a=et.findKey(r,o);a&&void 0!==r[a]&&!0!==n&&(void 0!==n||!1===r[a])||(r[a||t]=es(e))}let a=(e,t)=>et.forEach(e,(e,n)=>o(e,n,t));if(et.isPlainObject(e)||e instanceof this.constructor)a(e,t);else{let r;if(et.isString(e)&&(e=e.trim())&&(r=e,!/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(r.trim()))){var i;let n,r,o,l;a((l={},(i=e)&&i.split("\n").forEach(function(e){o=e.indexOf(":"),n=e.substring(0,o).trim().toLowerCase(),r=e.substring(o+1).trim(),!n||l[n]&&en[n]||("set-cookie"===n?l[n]?l[n].push(r):l[n]=[r]:l[n]=l[n]?l[n]+", "+r:r)}),l),t)}else if(et.isObject(e)&&et.isSafeIterable(e)){let n=Object.create(null),r,o;for(let t of e){if(!et.isArray(t))throw TypeError("Object iterator must return a key-value pair");o=t[0],et.hasOwnProp(n,o)?(r=n[o],n[o]=et.isArray(r)?[...r,t[1]]:[r,t[1]]):n[o]=t[1]}a(n,t)}else null!=e&&o(t,e,n)}return this}get(e,t){if(e=ec(e)){let n=et.findKey(this,e);if(n){let e=this[n];if(!t)return e;if(!0===t){let t,n=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;for(;t=r.exec(e);)n[t[1]]=t[2];return n}if(et.isFunction(t))return t.call(this,e,n);if(et.isRegExp(t))return t.exec(e);throw TypeError("parser must be boolean|regexp|function")}}}has(e,t){if(e=ec(e)){let n=et.findKey(this,e);return!!(n&&void 0!==this[n]&&(!t||ed(this,this[n],n,t)))}return!1}delete(e,t){let n=this,r=!1;function o(e){if(e=ec(e)){let o=et.findKey(n,e);o&&(!t||ed(n,n[o],o,t))&&(delete n[o],r=!0)}}return et.isArray(e)?e.forEach(o):o(e),r}clear(e){let t=Object.keys(this),n=t.length,r=!1;for(;n--;){let o=t[n];(!e||ed(this,this[o],o,e,!0))&&(delete this[o],r=!0)}return r}normalize(e){let t=this,n={};return et.forEach(this,(r,o)=>{let a=et.findKey(n,o);if(a){t[a]=es(r),delete t[o];return}let i=e?o.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,t,n)=>t.toUpperCase()+n):String(o).trim();i!==o&&delete t[o],t[i]=es(r),n[i]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){let t=Object.create(null);return et.forEach(this,(n,r)=>{null!=n&&!1!==n&&(t[r]=e&&et.isArray(n)?n.join(", "):n)}),t}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,t])=>e+": "+t).join("\n")}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...t){let n=new this(e);return t.forEach(e=>n.set(e)),n}static accessor(e){let t=(this[el]=this[el]={accessors:{}}).accessors,n=this.prototype;function r(e){let r=ec(e);if(!t[r]){let o;o=et.toCamelCase(" "+e),["get","set","has"].forEach(t=>{Object.defineProperty(n,t+o,{__proto__:null,value:function(n,r,o){return this[t].call(this,e,n,r,o)},configurable:!0})}),t[r]=!0}}return et.isArray(e)?e.forEach(r):r(e),this}}eu.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),et.reduceDescriptors(eu.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(e){this[n]=e}}}),et.freezeMethods(eu);class ep extends Error{static from(e,t,n,r,o,a){let i=new ep(e.message,t||e.code,n,r,o);return Object.defineProperty(i,"cause",{__proto__:null,value:e,writable:!0,enumerable:!1,configurable:!0}),i.name=e.name,null!=e.status&&null==i.status&&(i.status=e.status),a&&Object.assign(i,a),i}constructor(e,t,n,r,o){super(e),Object.defineProperty(this,"message",{__proto__:null,value:e,enumerable:!0,writable:!0,configurable:!0}),this.name="AxiosError",this.isAxiosError=!0,t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),o&&(this.response=o,this.status=o.status)}toJSON(){let e,t,n,r=this.config,o=r&&et.hasOwnProp(r,"redact")?r.redact:void 0,a=et.isArray(o)&&o.length>0?(e=new Set(o.map(e=>String(e).toLowerCase())),t=[],(n=r=>{let o;if(null===r||"object"!=typeof r||et.isBuffer(r))return r;if(-1===t.indexOf(r)){if(r instanceof eu&&(r=r.toJSON()),t.push(r),et.isArray(r))o=[],r.forEach((e,t)=>{let r=n(e);et.isUndefined(r)||(o[t]=r)});else{if(!et.isPlainObject(r)&&function(e){if(et.hasOwnProp(e,"toJSON"))return!0;let t=Object.getPrototypeOf(e);for(;t&&t!==Object.prototype;){if(et.hasOwnProp(t,"toJSON"))return!0;t=Object.getPrototypeOf(t)}return!1}(r))return t.pop(),r;for(let[t,a]of(o=Object.create(null),Object.entries(r))){let r=e.has(t.toLowerCase())?"[REDACTED ****]":n(a);et.isUndefined(r)||(o[t]=r)}}return t.pop(),o}})(r)):et.toJSONObject(r);return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a,code:this.code,status:this.status}}}ep.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE",ep.ERR_BAD_OPTION="ERR_BAD_OPTION",ep.ECONNABORTED="ECONNABORTED",ep.ETIMEDOUT="ETIMEDOUT",ep.ECONNREFUSED="ECONNREFUSED",ep.ERR_NETWORK="ERR_NETWORK",ep.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS",ep.ERR_DEPRECATED="ERR_DEPRECATED",ep.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE",ep.ERR_BAD_REQUEST="ERR_BAD_REQUEST",ep.ERR_CANCELED="ERR_CANCELED",ep.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT",ep.ERR_INVALID_URL="ERR_INVALID_URL",ep.ERR_FORM_DATA_DEPTH_EXCEEDED="ERR_FORM_DATA_DEPTH_EXCEEDED";let ef=ep;function em(e){return et.isPlainObject(e)||et.isArray(e)}function eg(e){return et.endsWith(e,"[]")?e.slice(0,-2):e}function eh(e,t,n){return e?e.concat(t).map(function(e,t){return e=eg(e),!n&&t?"["+e+"]":e}).join(n?".":""):t}let eb=et.toFlatObject(et,{},null,function(e){return/^is[A-Z]/.test(e)}),ev=function(e,t,n){if(!et.isObject(e))throw TypeError("target must be an object");t=t||new FormData;let r=(n=et.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(e,t){return!et.isUndefined(t[e])})).metaTokens,o=n.visitor||f,a=n.dots,i=n.indexes,l=n.Blob||"u">typeof Blob&&Blob,c=void 0===n.maxDepth?100:n.maxDepth,s=l&&et.isSpecCompliantForm(t),d=[];if(!et.isFunction(o))throw TypeError("visitor must be a function");function u(e){if(null===e)return"";if(et.isDate(e))return e.toISOString();if(et.isBoolean(e))return e.toString();if(!s&&et.isBlob(e))throw new ef("Blob is not supported. Use a Buffer instead.");if(et.isArrayBuffer(e)||et.isTypedArray(e)){if(s&&"function"==typeof l)return new l([e]);if("u">typeof Buffer)return Buffer.from(e);throw new ef("Blob is not supported. Use a Buffer instead.",ef.ERR_NOT_SUPPORT)}return e}function p(e){if(e>c)throw new ef("Object is too deeply nested ("+e+" levels). Max depth: "+c,ef.ERR_FORM_DATA_DEPTH_EXCEEDED)}function f(e,n,o){let l=e;if(et.isReactNative(t)&&et.isReactNativeBlob(e))return t.append(eh(o,n,a),u(e)),!1;if(e&&!o&&"object"==typeof e)if(et.endsWith(n,"{}"))n=r?n:n.slice(0,-2),e=function(e){if(c===1/0)return JSON.stringify(e);let t=[];return JSON.stringify(e,function(e,n){if(!et.isObject(n))return n;for(;t.length&&t[t.length-1]!==this;)t.pop();return t.push(n),p(1+t.length-1),n})}(e);else{var s;if(et.isArray(e)&&(s=e,et.isArray(s)&&!s.some(em))||(et.isFileList(e)||et.endsWith(n,"[]"))&&(l=et.toArray(e)))return n=eg(n),l.forEach(function(e,r){et.isUndefined(e)||null===e||t.append(!0===i?eh([n],r,a):null===i?n:n+"[]",u(e))}),!1}return!!em(e)||(t.append(eh(o,n,a),u(e)),!1)}let m=Object.assign(eb,{defaultVisitor:f,convertValue:u,isVisitable:em});if(!et.isObject(e))throw TypeError("data must be an object");return!function e(n,r,a=0){if(!et.isUndefined(n)){if(p(a),-1!==d.indexOf(n))throw Error("Circular reference detected in "+r.join("."));d.push(n),et.forEach(n,function(n,i){!0===(!(et.isUndefined(n)||null===n)&&o.call(t,n,et.isString(i)?i.trim():i,r,m))&&e(n,r?r.concat(i):[i],a+1)}),d.pop()}}(e),t};function ey(e){let t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"};return encodeURIComponent(e).replace(/[!'()~]|%20/g,function(e){return t[e]})}function ex(e,t){this._pairs=[],e&&ev(e,this,t)}let e$=ex.prototype;function eA(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function ew(e,t,n){let r;if(!t)return e;e=e||"";let o=et.isFunction(n)?{serialize:n}:n,a=et.getSafeProp(o,"encode")||eA,i=et.getSafeProp(o,"serialize");if(r=i?i(t,o):et.isURLSearchParams(t)?t.toString():new ex(t,o).toString(a)){let t=e.indexOf("#");-1!==t&&(e=e.slice(0,t)),e+=(-1===e.indexOf("?")?"?":"&")+r}return e}e$.append=function(e,t){this._pairs.push([e,t])},e$.toString=function(e){let t=e?t=>e.call(this,t,ey):ey;return this._pairs.map(function(e){return t(e[0])+"="+t(e[1])},"").join("&")};let eS=class{constructor(){this.handlers=[]}use(e,t,n){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){et.forEach(this.handlers,function(t){null!==t&&e(t)})}},eC={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0,advertiseZstdAcceptEncoding:!1,validateStatusUndefinedResolves:!0},eO="u">typeof URLSearchParams?URLSearchParams:ex,ek="u">typeof FormData?FormData:null,ej="u">typeof Blob?Blob:null,eE="u">typeof window&&"u">typeof document,eP="object"==typeof navigator&&navigator||void 0,ez=eE&&(!eP||0>["ReactNative","NativeScript","NS"].indexOf(eP.product)),eI="u">typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts,eM=eE&&window.location.href||"http://localhost",eR={...u,isBrowser:!0,classes:{URLSearchParams:eO,FormData:ek,Blob:ej},protocols:["http","https","file","blob","url","data"]};function eB(e){if(e>100)throw new ef("FormData field is too deeply nested ("+e+" levels). Max depth: 100",ef.ERR_FORM_DATA_DEPTH_EXCEEDED)}let eT=function(e){if(et.isFormData(e)&&et.isFunction(e.entries)){let t={};return et.forEachEntry(e,(e,n)=>{!function e(t,n,r,o){eB(o);let a=t[o++];if("__proto__"===a)return!0;let i=Number.isFinite(+a),l=o>=t.length;return(a=!a&&et.isArray(r)?r.length:a,l)?et.hasOwnProp(r,a)?r[a]=et.isArray(r[a])?r[a].concat(n):[r[a],n]:r[a]=n:(et.hasOwnProp(r,a)&&et.isObject(r[a])||(r[a]=[]),e(t,n,r[a],o)&&et.isArray(r[a])&&(r[a]=function(e){let t,n,r={},o=Object.keys(e),a=o.length;for(t=0;tnull!=e&&et.hasOwnProp(e,t)?e[t]:void 0,eN={transitional:eC,adapter:["xhr","http","fetch"],transformRequest:[function(e,t){let n,r=t.getContentType()||"",o=r.indexOf("application/json")>-1,a=et.isObject(e);if(a&&et.isHTMLForm(e)&&(e=new FormData(e)),et.isFormData(e))return o?JSON.stringify(eT(e)):e;if(et.isArrayBuffer(e)||et.isBuffer(e)||et.isStream(e)||et.isFile(e)||et.isBlob(e)||et.isReadableStream(e))return e;if(et.isArrayBufferView(e))return e.buffer;if(et.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();if(a){let t=eF(this,"formSerializer");if(r.indexOf("application/x-www-form-urlencoded")>-1)return ev(e,new eR.classes.URLSearchParams,{visitor:function(e,t,n,r){return eR.isNode&&et.isBuffer(e)?(this.append(t,e.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)},...t}).toString();if((n=et.isFileList(e))||r.indexOf("multipart/form-data")>-1){let r=eF(this,"env"),o=r&&r.FormData;return ev(n?{"files[]":e}:e,o&&new o,t)}}if(a||o){t.setContentType("application/json",!1);var i=e;if(et.isString(i))try{return(0,JSON.parse)(i),et.trim(i)}catch(e){if("SyntaxError"!==e.name)throw e}return(0,JSON.stringify)(i)}return e}],transformResponse:[function(e){let t=eF(this,"transitional")||eN.transitional,n=t&&t.forcedJSONParsing,r=eF(this,"responseType"),o="json"===r;if(et.isResponse(e)||et.isReadableStream(e))return e;if(e&&et.isString(e)&&(n&&!r||o)){let n=t&&t.silentJSONParsing;try{return JSON.parse(e,eF(this,"parseReviver"))}catch(e){if(!n&&o){if("SyntaxError"===e.name)throw ef.from(e,ef.ERR_BAD_RESPONSE,this,null,eF(this,"response"));throw e}}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:eR.classes.FormData,Blob:eR.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};function eH(e,t){let n=this||eN,r=t||n,o=eu.from(r.headers),a=r.data;return et.forEach(e,function(e){a=e.call(n,a,o.normalize(),t?t.status:void 0)}),o.normalize(),a}function eL(e){return!!(e&&e.__CANCEL__)}et.forEach(["delete","get","head","post","put","patch","query"],e=>{eN.headers[e]={}});let eD=class extends ef{constructor(e,t,n){super(null==e?"canceled":e,ef.ERR_CANCELED,t,n),this.name="CanceledError",this.__CANCEL__=!0}};function e_(e,t,n){let r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new ef("Request failed with status code "+n.status,n.status>=400&&n.status<500?ef.ERR_BAD_REQUEST:ef.ERR_BAD_RESPONSE,n.config,n.request,n))}let eW=function(e,t){let n,r=Array(e=e||10),o=Array(e),a=0,i=0;return t=void 0!==t?t:1e3,function(l){let c=Date.now(),s=o[i];n||(n=c),r[a]=l,o[a]=c;let d=i,u=0;for(;d!==a;)u+=r[d++],d%=e;if((a=(a+1)%e)===i&&(i=(i+1)%e),c-n{o=a,n=null,r&&(clearTimeout(r),r=null),e(...t)};return[(...e)=>{let t=Date.now(),l=t-o;l>=a?i(e,t):(n=e,r||(r=setTimeout(()=>{r=null,i(n)},a-l)))},()=>n&&i(n)]},eV=(e,t,n=3)=>{let r=0,o=eW(50,250);return eq(n=>{if(!n||"number"!=typeof n.loaded)return;let a=n.loaded,i=n.lengthComputable?n.total:void 0,l=null!=i?Math.min(a,i):a,c=Math.max(0,l-r),s=o(c);r=Math.max(r,l),e({loaded:l,total:i,progress:i?l/i:void 0,bytes:c,rate:s||void 0,estimated:s&&i?(i-l)/s:void 0,event:n,lengthComputable:null!=i,[t?"download":"upload"]:!0})},n)},eX=(e,t)=>{let n=null!=e;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},eU=e=>(...t)=>et.asap(()=>e(...t)),eY=eR.hasStandardBrowserEnv?(a=new URL(eR.origin),i=eR.navigator&&/(msie|trident)/i.test(eR.navigator.userAgent),e=>(e=new URL(e,eR.origin),a.protocol===e.protocol&&a.host===e.host&&(i||a.port===e.port))):()=>!0,eG=eR.hasStandardBrowserEnv?{write(e,t,n,r,o,a,i){if("u"null,remove(){}},eK=/^https?:(?!\/\/)/i,eQ=/[\t\n\r]/g;function eJ(e,t){if("string"==typeof e&&eK.test((function(e){let t=0;for(;t=e.charCodeAt(t);)t++;return e.slice(t)})(e).replace(eQ,"")))throw new ef('Invalid URL: missing "//" after protocol',ef.ERR_INVALID_URL,t)}function eZ(e,t,n,r){eJ(t,r);let o=!("string"==typeof t&&/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t));return e&&(o||!1===n)?(eJ(e,r),t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e):t}let e0=e=>e instanceof eu?{...e}:e;function e1(e,t){e=e||{},t=t||{};let n=Object.create(null);function r(e,t,n,r){return et.isPlainObject(e)&&et.isPlainObject(t)?et.merge.call({caseless:r},e,t):et.isPlainObject(t)?et.merge({},t):et.isArray(t)?t.slice():t}function o(e,t,n,o){return et.isUndefined(t)?et.isUndefined(e)?void 0:r(void 0,e,n,o):r(e,t,n,o)}function a(e,t){if(!et.isUndefined(t))return r(void 0,t)}function i(e,t){return et.isUndefined(t)?et.isUndefined(e)?void 0:r(void 0,e):r(void 0,t)}function l(n,o,a){return et.hasOwnProp(t,a)?r(n,o):et.hasOwnProp(e,a)?r(void 0,n):void 0}Object.defineProperty(n,"hasOwnProperty",{__proto__:null,value:Object.prototype.hasOwnProperty,enumerable:!1,writable:!0,configurable:!0});let c={url:a,method:a,data:a,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,allowedSocketPaths:i,responseEncoding:i,validateStatus:l,headers:(e,t,n)=>o(e0(e),e0(t),n,!0)};return et.forEach(Object.keys({...e,...t}),function(r){if("__proto__"===r||"constructor"===r||"prototype"===r)return;let a=et.hasOwnProp(c,r)?c[r]:o,i=a(et.hasOwnProp(e,r)?e[r]:void 0,et.hasOwnProp(t,r)?t[r]:void 0,r);et.isUndefined(i)&&a!==l||(n[r]=i)}),et.hasOwnProp(t,"validateStatus")&&et.isUndefined(t.validateStatus)&&!1===function(n){let r=et.hasOwnProp(t,"transitional")?t.transitional:void 0;if(!et.isUndefined(r)){if(!et.isPlainObject(r))return;else if(et.hasOwnProp(r,n))return r[n]}let o=et.hasOwnProp(e,"transitional")?e.transitional:void 0;if(et.isPlainObject(o)&&et.hasOwnProp(o,n))return o[n]}("validateStatusUndefinedResolves")&&(et.hasOwnProp(e,"validateStatus")?n.validateStatus=r(void 0,e.validateStatus):delete n.validateStatus),n}let e2=["content-type","content-length"],e4=function(e){let t=e1({},e),n=e=>et.hasOwnProp(t,e)?t[e]:void 0,r=n("data"),o=n("withXSRFToken"),a=n("xsrfHeaderName"),i=n("xsrfCookieName"),l=n("headers"),c=n("auth"),s=n("baseURL"),d=n("allowAbsoluteUrls"),u=n("url");if(t.headers=l=eu.from(l),t.url=ew(eZ(s,u,d,t),n("params"),n("paramsSerializer")),c){let t=et.getSafeProp(c,"username")||"",n=et.getSafeProp(c,"password")||"";try{l.set("Authorization","Basic "+btoa(t+":"+(n?encodeURIComponent(n).replace(/%([0-9A-F]{2})/gi,(e,t)=>String.fromCharCode(parseInt(t,16))):"")))}catch(t){throw ef.from(t,ef.ERR_BAD_OPTION_VALUE,e)}}if(et.isFormData(r))if(eR.hasStandardBrowserEnv||eR.hasStandardBrowserWebWorkerEnv||et.isReactNative(r))l.setContentType(void 0);else{var p,f;et.isFunction(r.getHeaders)&&(p=l,f=r.getHeaders(),"content-only"!==n("formDataHeaderPolicy")?p.set(f):Object.entries(f||{}).forEach(([e,t])=>{e2.includes(e.toLowerCase())&&p.set(e,t)}))}if(eR.hasStandardBrowserEnv&&(et.isFunction(o)&&(o=o(t)),!0===o||null==o&&eY(t.url))){let e=a&&i&&eG.read(i);e&&l.set(a,e)}return t},e6="u">typeof XMLHttpRequest&&function(e){return new Promise(function(t,n){var r;let o,a,i,l,c,s,d=e4(e),u=d.data,p=eu.from(d.headers).normalize(),{responseType:f,onUploadProgress:m,onDownloadProgress:g}=d;function h(){l&&l(),c&&c(),d.cancelToken&&d.cancelToken.unsubscribe(o),d.signal&&d.signal.removeEventListener("abort",o)}let b=new XMLHttpRequest;function v(){if(!b)return;let r=eu.from("getAllResponseHeaders"in b&&b.getAllResponseHeaders());e_(function(e){t(e),h()},function(e){n(e),h()},{data:f&&"text"!==f&&"json"!==f?b.response:b.responseText,status:b.status,statusText:b.statusText,headers:r,config:e,request:b}),b=null}b.open(d.method.toUpperCase(),d.url,!0),b.timeout=d.timeout,"onloadend"in b?b.onloadend=v:b.onreadystatechange=function(){!b||4!==b.readyState||(0!==b.status||b.responseURL&&b.responseURL.startsWith("file:"))&&setTimeout(v)},b.onabort=function(){b&&(n(new ef("Request aborted",ef.ECONNABORTED,e,b)),h(),b=null)},b.onerror=function(t){let r=new ef(t&&t.message?t.message:"Network Error",ef.ERR_NETWORK,e,b);r.event=t||null,n(r),h(),b=null},b.ontimeout=function(){let t=d.timeout?"timeout of "+d.timeout+"ms exceeded":"timeout exceeded",r=d.transitional||eC;d.timeoutErrorMessage&&(t=d.timeoutErrorMessage),n(new ef(t,r.clarifyTimeoutError?ef.ETIMEDOUT:ef.ECONNABORTED,e,b)),h(),b=null},void 0===u&&p.setContentType(null),"setRequestHeader"in b&&et.forEach(ei(p),function(e,t){b.setRequestHeader(t,e)}),et.isUndefined(d.withCredentials)||(b.withCredentials=!!d.withCredentials),f&&"json"!==f&&(b.responseType=d.responseType),g&&([i,c]=eV(g,!0),b.addEventListener("progress",i)),m&&b.upload&&([a,l]=eV(m),b.upload.addEventListener("progress",a),b.upload.addEventListener("loadend",l)),(d.cancelToken||d.signal)&&(o=t=>{b&&(n(!t||t.type?new eD(null,e,b):t),b.abort(),h(),b=null)},d.cancelToken&&d.cancelToken.subscribe(o),d.signal&&(d.signal.aborted?o():d.signal.addEventListener("abort",o)));let y=(r=d.url,(s=/^([-+\w]{1,25}):(?:\/\/)?/.exec(r))&&s[1]||"");if(y&&!eR.protocols.includes(y)){n(new ef("Unsupported protocol "+y+":",ef.ERR_BAD_REQUEST,e)),h();return}b.send(u||null)})},e8=function*(e,t){let n,r=e.byteLength;if(!t||r{let o,a=e3(e,t),i=0,l=e=>{!o&&(o=!0,r&&r(e))};return new ReadableStream({async pull(e){try{let{done:t,value:r}=await a.next();if(t){l(),e.close();return}let o=r.byteLength;if(n){let e=i+=o;n(e)}e.enqueue(new Uint8Array(r))}catch(e){throw l(e),e}},cancel:e=>(l(e),a.return())},{highWaterMark:2})},e9=e=>e>=48&&e<=57||e>=65&&e<=70||e>=97&&e<=102,te=(e,t,n)=>t+2{if(!et.isString(e))return e;try{return decodeURIComponent(e)}catch(t){return e}},tr=(e,...t)=>{try{return!!e(...t)}catch(e){return!1}},to=e=>{let t,n=void 0!==et.global&&null!==et.global?et.global:globalThis,{ReadableStream:r,TextEncoder:o}=n,{fetch:a,Request:i,Response:l}=e=et.merge.call({skipUndefined:!0},{Request:n.Request,Response:n.Response},e),c=a?tt(a):"function"==typeof fetch,s=tt(i),d=tt(l);if(!c)return!1;let u=c&&tt(r),p=c&&("function"==typeof o?(t=new o,e=>t.encode(e)):async e=>new Uint8Array(await new i(e).arrayBuffer())),f=s&&u&&tr(()=>{let e=!1,t=new i(eR.origin,{body:new r,method:"POST",get duplex(){return e=!0,"half"}}),n=t.headers.has("Content-Type");return null!=t.body&&t.body.cancel(),e&&!n}),m=d&&u&&tr(()=>et.isReadableStream(new l("").body)),g={stream:m&&(e=>e.body)};c&&["text","arrayBuffer","blob","formData","stream"].forEach(e=>{g[e]||(g[e]=(t,n)=>{let r=t&&t[e];if(r)return r.call(t);throw new ef(`Response type '${e}' is not supported`,ef.ERR_NOT_SUPPORT,n)})});let h=async e=>{if(null==e)return 0;if(et.isBlob(e))return e.size;if(et.isSpecCompliantForm(e)){let t=new i(eR.origin,{method:"POST",body:e});return(await t.arrayBuffer()).byteLength}return et.isArrayBufferView(e)||et.isArrayBuffer(e)?e.byteLength:(et.isURLSearchParams(e)&&(e+=""),et.isString(e))?(await p(e)).byteLength:void 0},b=async(e,t)=>{let n=et.toFiniteNumber(e.getContentLength());return null==n?h(t):n};return async e=>{let t,{url:n,method:r,data:c,signal:d,cancelToken:p,timeout:v,onDownloadProgress:y,onUploadProgress:x,responseType:$,headers:A,withCredentials:w="same-origin",fetchOptions:S,maxContentLength:C,maxBodyLength:O}=e4(e),k=et.isNumber(C)&&C>-1,j=et.isNumber(O)&&O>-1,E=a||fetch;$=$?($+"").toLowerCase():"text";let P=((e,t)=>{if(e=e?e.filter(Boolean):[],!t&&!e.length)return;let n=new AbortController,r=!1,o=function(e){if(!r){r=!0,i();let t=e instanceof Error?e:this.reason;n.abort(t instanceof ef?t:new eD(t instanceof Error?t.message:t))}},a=t&&setTimeout(()=>{a=null,o(new ef(`timeout of ${t}ms exceeded`,ef.ETIMEDOUT))},t),i=()=>{e&&(a&&clearTimeout(a),a=null,e.forEach(e=>{e.unsubscribe?e.unsubscribe(o):e.removeEventListener("abort",o)}),e=null)};e.forEach(e=>e.addEventListener("abort",o,{once:!0}));let{signal:l}=n;return l.unsubscribe=()=>et.asap(i),l})([d,p&&p.toAbortSignal()],v),z=null,I=P&&P.unsubscribe&&(()=>{P.unsubscribe()}),M=null,R=()=>new ef("Request body larger than maxBodyLength limit",ef.ERR_BAD_REQUEST,e,z);try{var B;let a,d,p,v,T=(d="auth",et.hasOwnProp(e,d)?e[d]:void 0);if(T){let e=et.getSafeProp(T,"username")||"",t=et.getSafeProp(T,"password")||"";a={username:e,password:t}}if(p=(B=n).indexOf("://"),v=B,-1!==p&&(v=v.slice(p+3)),v.includes("@")||v.includes(":")){let e=new URL(n,eR.origin);if(!a&&(e.username||e.password)){let t=tn(e.username),n=tn(e.password);a={username:t,password:n}}(e.username||e.password)&&(e.username="",e.password="",n=e.href)}if(a){let e;A.delete("authorization"),A.set("Authorization","Basic "+btoa((e=(a.username||"")+":"+(a.password||""),encodeURIComponent(e).replace(/%([0-9A-F]{2})/gi,(e,t)=>String.fromCharCode(parseInt(t,16))))))}if(k&&"string"==typeof n&&n.startsWith("data:")&&function(e){if(!e||"string"!=typeof e||!e.startsWith("data:"))return 0;let t=e.indexOf(",");if(t<0)return 0;let n=e.slice(5,t),r=e.slice(t+1);if(/;base64/i.test(n)){let e=r.length,t=r.length;for(let n=0;ne>=2&&37===r.charCodeAt(e-2)&&51===r.charCodeAt(e-1)&&(68===r.charCodeAt(e)||100===r.charCodeAt(e));o>=0&&(61===r.charCodeAt(o)?(n++,o--):a(o)&&(n++,o-=3)),1===n&&o>=0&&(61===r.charCodeAt(o)?n++:a(o)&&n++);let i=3*Math.floor(e/4)-(n||0);return i>0?i:0}let o=0;for(let e=0,t=r.length;e=55296&&n<=56319&&e+1=56320&&t<=57343?(o+=4,e++):o+=3}else o+=3}return o}(n)>C)throw new ef("maxContentLength size of "+C+" exceeded",ef.ERR_BAD_RESPONSE,e,z);if(j&&"get"!==r&&"head"!==r){let e=await h(c);if("number"==typeof e&&isFinite(e)&&(t=e,e>O))throw R()}let F=j&&(et.isReadableStream(c)||et.isStream(c)),N=(e,t,n)=>e7(e,65536,e=>{if(j&&e>O)throw M=R();t&&t(e)},n);if(f&&"get"!==r&&"head"!==r&&(x||F)){if(t=null==t?await b(A,c):t,0!==t||F){let e,r=new i(n,{method:"POST",body:c,duplex:"half"});if(et.isFormData(c)&&(e=r.headers.get("content-type"))&&A.setContentType(e),r.body){let[e,n]=x&&eX(t,eV(eU(x)))||[];c=N(r.body,e,n)}}}else if(F&&!s&&u&&"get"!==r&&"head"!==r)c=N(c);else if(F&&s&&!f&&"get"!==r&&"head"!==r)throw new ef("Stream request bodies are not supported by the current fetch implementation",ef.ERR_NOT_SUPPORT,e,z);et.isString(w)||(w=w?"include":"omit");let H=s&&"credentials"in i.prototype;if(et.isFormData(c)){let e=A.getContentType();e&&/^multipart\/form-data/i.test(e)&&!/boundary=/i.test(e)&&A.delete("content-type")}A.set("User-Agent","axios/1.18.1",!1);let L={...S,signal:P,method:r.toUpperCase(),headers:ei(A.normalize()),body:c,duplex:"half",credentials:H?w:void 0};z=s&&new i(n,L);let D=await (s?E(z,S):E(n,L)),_=eu.from(D.headers);if(k){let t=et.toFiniteNumber(_.getContentLength());if(null!=t&&t>C)throw new ef("maxContentLength size of "+C+" exceeded",ef.ERR_BAD_RESPONSE,e,z)}let W=m&&("stream"===$||"response"===$);if(m&&D.body&&(y||k||W&&I)){let t={};["status","statusText","headers"].forEach(e=>{t[e]=D[e]});let n=et.toFiniteNumber(_.getContentLength()),[r,o]=y&&eX(n,eV(eU(y),!0))||[];D=new l(e7(D.body,65536,t=>{if(k&&t>C)throw new ef("maxContentLength size of "+C+" exceeded",ef.ERR_BAD_RESPONSE,e,z);r&&r(t)},()=>{o&&o(),I&&I()}),t)}$=$||"text";let q=await g[et.findKey(g,$)||"text"](D,e);if(k&&!m&&!W){let t;if(null!=q&&("number"==typeof q.byteLength?t=q.byteLength:"number"==typeof q.size?t=q.size:"string"==typeof q&&(t="function"==typeof o?new o().encode(q).byteLength:q.length)),"number"==typeof t&&t>C)throw new ef("maxContentLength size of "+C+" exceeded",ef.ERR_BAD_RESPONSE,e,z)}return!W&&I&&I(),await new Promise((t,n)=>{e_(t,n,{data:q,headers:eu.from(D.headers),status:D.status,statusText:D.statusText,config:e,request:z})})}catch(t){if(I&&I(),P&&P.aborted&&P.reason instanceof ef){let n=P.reason;throw n.config=e,z&&(n.request=z),t!==n&&Object.defineProperty(n,"cause",{__proto__:null,value:t,writable:!0,enumerable:!1,configurable:!0}),n}if(M)throw z&&!M.request&&(M.request=z),M;if(t instanceof ef)throw z&&!t.request&&(t.request=z),t;if(t&&"TypeError"===t.name&&/Load failed|fetch/i.test(t.message)){let n=new ef("Network Error",ef.ERR_NETWORK,e,z,t&&t.response);throw Object.defineProperty(n,"cause",{__proto__:null,value:t.cause||t,writable:!0,enumerable:!1,configurable:!0}),n}throw ef.from(t,t&&t.code,e,z,t&&t.response)}}},ta=new Map,ti=e=>{let t=e&&e.env||{},{fetch:n,Request:r,Response:o}=t,a=[r,o,n],i=a.length,l,c,s=ta;for(;i--;)l=a[i],void 0===(c=s.get(l))&&s.set(l,c=i?new Map:to(t)),s=c;return c};ti();let tl={http:null,xhr:e6,fetch:{get:ti}};et.forEach(tl,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{__proto__:null,value:t})}catch(e){}Object.defineProperty(e,"adapterName",{__proto__:null,value:t})}});let tc=e=>`- ${e}`,ts=e=>et.isFunction(e)||null===e||!1===e,td=function(e,t){let n,r,{length:o}=e=et.isArray(e)?e:[e],a={};for(let i=0;i`adapter ${e} `+(!1===t?"is not supported by the environment":"is not available in the build"));throw new ef("There is no suitable adapter to dispatch the request "+(o?e.length>1?"since :\n"+e.map(tc).join("\n"):" "+tc(e[0]):"as no adapter specified"),ef.ERR_NOT_SUPPORT)}return r};function tu(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new eD(null,e)}function tp(e){return tu(e),e.headers=eu.from(e.headers),e.data=eH.call(e,e.transformRequest),-1!==["post","put","patch"].indexOf(e.method)&&e.headers.setContentType("application/x-www-form-urlencoded",!1),td(e.adapter||eN.adapter,e)(e).then(function(t){tu(e),e.response=t;try{t.data=eH.call(e,e.transformResponse,t)}finally{delete e.response}return t.headers=eu.from(t.headers),t},function(t){if(!eL(t)&&(tu(e),t&&t.response)){e.response=t.response;try{t.response.data=eH.call(e,e.transformResponse,t.response)}finally{delete e.response}t.response.headers=eu.from(t.response.headers)}return Promise.reject(t)})}let tf={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{tf[e]=function(n){return typeof n===e||"a"+(t<1?"n ":" ")+e}});let tm={};tf.transitional=function(e,t,n){function r(e,t){return"[Axios v1.18.1] Transitional option '"+e+"'"+t+(n?". "+n:"")}return(n,o,a)=>{if(!1===e)throw new ef(r(o," has been removed"+(t?" in "+t:"")),ef.ERR_DEPRECATED);return t&&!tm[o]&&(tm[o]=!0,console.warn(r(o," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(n,o,a)}},tf.spelling=function(e){return(t,n)=>(console.warn(`${n} is likely a misspelling of ${e}`),!0)};let tg=function(e,t,n){if("object"!=typeof e||null===e)throw new ef("options must be an object",ef.ERR_BAD_OPTION_VALUE);let r=Object.keys(e),o=r.length;for(;o-- >0;){let a=r[o],i=Object.prototype.hasOwnProperty.call(t,a)?t[a]:void 0;if(i){let t=e[a],n=void 0===t||i(t,a,e);if(!0!==n)throw new ef("option "+a+" must be "+n,ef.ERR_BAD_OPTION_VALUE);continue}if(!0!==n)throw new ef("Unknown option "+a,ef.ERR_BAD_OPTION)}};class th{constructor(e){this.defaults=e||{},this.interceptors={request:new eS,response:new eS}}async request(e,t){try{return await this._request(e,t)}catch(e){if(e instanceof Error){let t={};Error.captureStackTrace?Error.captureStackTrace(t):t=Error();let n=(()=>{if(!t.stack)return"";let e=t.stack.indexOf("\n");return -1===e?"":t.stack.slice(e+1)})();try{if(e.stack){if(n){let t=n.indexOf("\n"),r=-1===t?-1:n.indexOf("\n",t+1),o=-1===r?"":n.slice(r+1);String(e.stack).endsWith(o)||(e.stack+="\n"+n)}}else e.stack=n}catch(e){}}throw e}}_request(e,t){let n,r;"string"==typeof e?(t=t||{}).url=e:t=e||{};let{transitional:o,paramsSerializer:a,headers:i}=t=e1(this.defaults,t);void 0!==o&&tg(o,{silentJSONParsing:tf.transitional(tf.boolean),forcedJSONParsing:tf.transitional(tf.boolean),clarifyTimeoutError:tf.transitional(tf.boolean),legacyInterceptorReqResOrdering:tf.transitional(tf.boolean),advertiseZstdAcceptEncoding:tf.transitional(tf.boolean),validateStatusUndefinedResolves:tf.transitional(tf.boolean)},!1),null!=a&&(et.isFunction(a)?t.paramsSerializer={serialize:a}:tg(a,{encode:tf.function,serialize:tf.function},!0)),void 0!==t.allowAbsoluteUrls||(void 0!==this.defaults.allowAbsoluteUrls?t.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:t.allowAbsoluteUrls=!0),tg(t,{baseUrl:tf.spelling("baseURL"),withXsrfToken:tf.spelling("withXSRFToken")},!0),t.method=(t.method||this.defaults.method||"get").toLowerCase();let l=i&&et.merge(i.common,i[t.method]);i&&et.forEach(["delete","get","head","post","put","patch","query","common"],e=>{delete i[e]}),t.headers=eu.concat(l,i);let c=[],s=!0;this.interceptors.request.forEach(function(e){if("function"==typeof e.runWhen&&!1===e.runWhen(t))return;s=s&&e.synchronous;let n=t.transitional||eC;n&&n.legacyInterceptorReqResOrdering?c.unshift(e.fulfilled,e.rejected):c.push(e.fulfilled,e.rejected)});let d=[];this.interceptors.response.forEach(function(e){d.push(e.fulfilled,e.rejected)});let u=0;if(!s){let e=[tp.bind(this),void 0];for(e.unshift(...c),e.push(...d),r=e.length,n=Promise.resolve(t);u{if(!n._listeners)return;let t=n._listeners.length;for(;t-- >0;)n._listeners[t](e);n._listeners=null}),this.promise.then=e=>{let t,r=new Promise(e=>{n.subscribe(e),t=e}).then(e);return r.cancel=function(){n.unsubscribe(t)},r},e(function(e,r,o){n.reason||(n.reason=new eD(e,r,o),t(n.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;let t=this._listeners.indexOf(e);-1!==t&&this._listeners.splice(t,1)}toAbortSignal(){let e=new AbortController,t=t=>{e.abort(t)};return this.subscribe(t),e.signal.unsubscribe=()=>this.unsubscribe(t),e.signal}static source(){let e;return{token:new tb(function(t){e=t}),cancel:e}}}let tv={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(tv).forEach(([e,t])=>{tv[t]=e});let ty=function e(t){let n=new th(t),r=p(th.prototype.request,n);return et.extend(r,th.prototype,n,{allOwnKeys:!0}),et.extend(r,n,null,{allOwnKeys:!0}),r.create=function(n){return e(e1(t,n))},r}(eN);ty.Axios=th,ty.CanceledError=eD,ty.CancelToken=tb,ty.isCancel=eL,ty.VERSION="1.18.1",ty.toFormData=ev,ty.AxiosError=ef,ty.Cancel=ty.CanceledError,ty.all=function(e){return Promise.all(e)},ty.spread=function(e){return function(t){return e.apply(null,t)}},ty.isAxiosError=function(e){return et.isObject(e)&&!0===e.isAxiosError},ty.mergeConfig=e1,ty.AxiosHeaders=eu,ty.formToJSON=e=>eT(et.isHTMLForm(e)?new FormData(e):e),ty.getAdapter=td,ty.HttpStatusCode=tv,ty.default=ty;var tx=n(87959),t$=n(29490);function tA(){return(0,t$.toObject)(window.jjbCommonHttpConfig)}(0,t$.isUndefined)(window.__JJB_ENVIRONMENT__)&&console.error('[@cqsjjb/jjb-common-lib]: window中未定义 "__JJB_ENVIRONMENT__"。');let tw=(0,t$.toObject)(window.__JJB_ENVIRONMENT__),tS=(0,t$.toObject)(window.jjbCommonGlobalConfig),tC=(0,t$.toObject)(tS.httpInterceptor),tO=tC.request,tk=tC.response,tj=/^http[s]?:\/\//,tE="token";function tP(e){let t=!1;return -1!==e.indexOf("@")&&(t=!0),{has:t,url:e.replace(/@/g,"")}}function tz(e,t,n={},r=!1){let o=(0,t$.toObject)(r),{header:a}=tA();return(0,t$.isUndefined)(a)?!o[tE]&&window.sessionStorage[tE]&&(o[tE]=window.sessionStorage[tE]):o=a,tw.tenantCode&&(o.tenantCode=tw.tenantCode),new Promise((r,a)=>{(function(e,t,n={},r={}){(0,t$.isUndefined)(tw.API_HOST)&&console.warn('[@cqsjjb/jjb-common-lib]: "__JJB_ENVIRONMENT__.API_HOST" 未定义!将使用浏览器 "origin" 作为访问前缀路径。');let o=function(e){let{baseUrl:t,API_HOST:n}=tA();if(!(0,t$.isUndefined)(t)||!(0,t$.isUndefined)(n)){t&&console.warn("[@cqsjjb/jjb-common-lib]: 'jjbCommonHttpConfig.baseUrl' 已被弃用!后续版本将会删除,请使用API_HOST替换。");let r=n||t;return tj.test(e)?e:r+e}return tj.test(e)?e:tw.API_HOST?tw.API_HOST+e:e}(e),a=String(t).toUpperCase(),i={["GET"===a?"params":"data"]:n||{}},l=r||{};return new Promise((e,t)=>ty({...i,url:o,method:a,headers:l,timeout:tS.httpTimeout||3e5,responseType:tS.httpResponseType||"json"}).then(t=>{if((0,t$.isFunction)(tk)){let n=tk(t);(0,t$.isPromise)(n)?n.then(t=>e(t)):e(t)}else e(t)}).catch(e=>{if(e.response&&401===e.response.status&&(window.onTokenExpire&&window.onTokenExpire(),window.postMessage({type:"__TOKEN_EXPIRE__"})),(0,t$.isFunction)(tk)){let n=tk(e);(0,t$.isPromise)(n)?n.then(e=>t(e)):t(e)}else t(e)}))})(e,t,n,o).then(e=>r(function(e){if(200===e.status){let t=(0,t$.toObject)(e.data);return t.success||(t.errMessage?(console.error(`[@cqsjjb/jjb-common-lib]: ${t.errMessage}`),tx.Ay.error(t.errMessage)):console.error("[@cqsjjb/jjb-common-lib]: 当前接口响应数据异常。")),{...t,success:!(0,t$.isUndefined)(t.success)&&t.success,message:t.errMessage,respMsg:t.errMessage,respCode:t.errCode||"0000",respDesc:t.errMessage}}}(e))).catch(e=>a(e))})}function tI(e,t,n={},r=!1){return(0,t$.isFunction)(tO)?new Promise((o,a)=>{let i=tO(e,t,n,r);(0,t$.isPromise)(i)&&i.then(e=>{tz(...e).then(e=>o(e)).catch(e=>a(e))})}):tz(e,t,n,r)}function tM(e,t={},n={}){if(tP(e).has)throw Error("[@cqsjjb/jjb-common-lib]: Get请求不允许使用“@”操作符!");return tI(e,"get",t,n)}function tR(e,t={},n={}){let{has:r,url:o}=tP(e);return tI(o,"post",r?t:{request:t},n)}function tB(e,t={},n={}){let{has:r,url:o}=tP(e);return tI(o,"delete",r?t:{request:t},n)}function tT(e,t={},n={},r=""){let{has:o,url:a}=tP(e);return tI(a,"put",o?t:{request:t},n,r)}function tF(e,t={},n={}){let{has:r,url:o}=tP(e);return tI(o,"patch",r?t:{request:t},n)}},57006(e,t,n){"use strict";n.r(t),n.d(t,{http:()=>l,tools:()=>c,color:()=>a,crypto:()=>r,qs:()=>i,setJJBCommonAntdMessage:()=>h,eventBus:()=>o});var r={};n.r(r),n.d(r,{AES_128_Decrypt:()=>f,AES_128_Encrypt:()=>p,MD5:()=>m});var o={};n.r(o),n.d(o,{eventBus:()=>g});let a={BLANK:"#000",BLUE:"#1890FF",Blue_10:"#199BFF",CYAN:"#13C2C2",GEEKBLUE:"#2F54EB",GRAY:"gray",GRAYSKYBLUE:"#F2F9FF",GRAY_333:"#333",GRAY_444:"#444",GRAY_555:"#555",GRAY_666:"#666",GRAY_777:"#777",GRAY_888:"#888",GRAY_999:"#595959",GRAY_AAA:"#AAA",GRAY_B8:"#b8b8b8",GRAY_BBB:"#BBB",GRAY_CCC:"#888",GRAY_DDD:"#DDD",GRAY_EEE:"#EEE",GRAY_F0:"#F0F0F0",GRAY_F1:"#F1F1F1",GRAY_F2:"#F2F2F2",GRAY_F3:"#F3F3F3",GRAY_F4:"#F4F4F4",GRAY_F5:"#F5F5F5",GRAY_F6:"#F6F6F6",GRAY_F7:"#F7F7F7",GRAY_F8:"#F8F8F8",GRAY_F9:"#F9F9F9",GRAY_F9FA:"#F9FAFA",GRAY_FA:"#FAFAFA",GRAY_FB:"#FBFBFB",GRAY_FC:"#FCFCFC",GRAY_FD:"#FDFDFD",GRAY_FE:"#FEFEFE",GRAY_a2:"#a2a2a2",GRAY_f5fe:"#edf5fe",GREEN:"#52C41A",GREEN_10:"#52C41A",GREEN_4B:"#70BA4B",GREY_10:"grey",MAGENTA:"#EB2F96",ORANGE:"#FA8C16",PINK:"#EB2F96",PURPLE:"#722ED1",RED:"#F5222D",RED_10:"#FF4D4F",RED_5:"#F16C69",VOLCANO:"#FA541C",WHITE:"#FFFFFF",YELLOW:"#fadb14"};var i=n(20049),l=n(46285),c=n(29490),s=n(21396),d=n.n(s);let u="f4k9f5w7f8g4er26";function p(e){try{return d().AES.encrypt(d().enc.Utf8.parse(e),d().enc.Utf8.parse(u),{iv:d().enc.Utf8.parse("0000000000000000"),mode:d().mode.ECB,padding:d().pad.Pkcs7}).toString()}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: AES_128_Encrypt 加密失败!",e),""}}function f(e){try{return d().AES.decrypt(e,d().enc.Utf8.parse(u),{mode:d().mode.ECB,padding:d().pad.Pkcs7}).toString(d().enc.Utf8).toString()}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: AES_128_Decrypt 解密失败!",e),""}}function m(e){try{return d().MD5(e).toString()}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: MD5 加密失败!",e),""}}let g=new class{constructor(){this.eventTarget=window,this.eventDataStore={}}on(e,t,n=!1){let r=e=>{t(e.detail)};return this.eventTarget.addEventListener(e,r),n&&this.eventDataStore.hasOwnProperty(e)&&t(this.eventDataStore[e]),r}emit(e,t){this.eventDataStore[e]=t;let n=new CustomEvent(e,{detail:t,bubbles:!1,cancelable:!1});this.eventTarget.dispatchEvent(n)}off(e,t){t&&this.eventTarget.removeEventListener(e,t)}getEventData(e){return this.eventDataStore[e]}clearEventData(e){e?delete this.eventDataStore[e]:this.eventDataStore={}}};function h(){console.warn("[@cqsjjb/jjb-common-lib]: setJJBCommonAntdMessage 方法已废弃, 后续版本将会删除。")}},20049(e,t,n){"use strict";n.r(t),n.d(t,{parse:()=>function e(t){let n={};if(!(0,r.isString)(t))return n;try{let o=new URL(t);if(o.search){for(let[e,r]of new URL(t).searchParams.entries())n[e]=decodeURIComponent(r);return n}if(o.hash)return e(`http://127.0.0.1?${(0,r.toString)(location.hash.split("?")[1])}`);return{}}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: parse 解析失败!",e.message),n}},stringify:()=>o});var r=n(29490);function o(e,t=!0){if(!(0,r.isObject)(e))return;let n=new URLSearchParams;return Object.keys(e).forEach(t=>{let r=e[t];n.append(t,r)}),n.size?`${t?"?":""}${n.toString()}`:""}},29490(e,t,n){"use strict";n.r(t),n.d(t,{getCalcAspectRadio:()=>eY,isSymbol:()=>ev,TRUE_ENUM:()=>A,getSplitStringValue:()=>eK,isBoolEnum:()=>er,getDynamicUploadFileList:()=>h,isPrimarySymbol:()=>ef,noop:()=>G,getDynamicFormilyFieldValue:()=>y,isEmptyObject:()=>z,toNumber:()=>R,isDate:()=>eb,isSet:()=>ex,toFunction:()=>B,asyncWait:()=>eI,isArray:()=>L,isRegExp:()=>e$,parseJSON:()=>S,isEmptyStringObject:()=>U,isPrimaryString:()=>es,getTargetValue:()=>eQ,isEmptyArray:()=>eN,isFalseEnum:()=>en,routerParamQuery:()=>eD,isTrueStr:()=>ee,toObject:()=>I,getEnumLabel:()=>e0,isEmptyStringArray:()=>Y,isUndefined:()=>eo,parseObject:()=>C,toArrayForce:()=>ek,isNumberArray:()=>_,FALSE_ENUM:()=>w,getPrimaryType:()=>N,createOnlyKey:()=>eW,isUploadFileListArray:()=>W,cleanObject:()=>P,setAntProTableConfigCache:()=>f,isBool:()=>H,arrayStringTrim:()=>eB,base64ToFile:()=>eq,getDynamicFormilyFields:()=>$,isNativeEvent:()=>F,isFalseStr:()=>et,isElement:()=>T,isPromise:()=>eg,inIframe:()=>eE,isObjectArray:()=>q,isValidArray:()=>D,toPascalCase:()=>e4,isObject:()=>eh,isPrimaryFunction:()=>el,getDynamicFormilyDesignScheme:()=>v,modalConfirmHelper:()=>eJ,getDynamicFormilyUploadFileUrl:()=>b,fileToBase64:()=>eX,getFileToBase64:()=>eU,isFunction:()=>ei,isImageURL:()=>Q,isPrimaryBool:()=>eu,isPrimaryBigint:()=>em,getAllAntProTableConfigCache:()=>g,getBase64ToFile:()=>eV,isEmptyString:()=>eT,groupByDynamicFormilyField:()=>x,isPrimaryNumber:()=>ec,isStringArray:()=>X,router:()=>eL,isMap:()=>ey,is2DArray:()=>V,isPrimaryUndefined:()=>ep,isNull:()=>ea,cleanArray:()=>E,classNames:()=>ej,isNumber:()=>eA,isWindow:()=>eS,removeAntProTableConfigCache:()=>p,routerParamMerge:()=>e_,stringifyArray:()=>j,isBodyElement:()=>eO,getSplitterValue:()=>eG,getEnumValue:()=>e1,stringifyObject:()=>k,isTrueEnum:()=>Z,toArray:()=>K,inWxBrowser:()=>eP,isPrimaryObject:()=>ed,toBoolEnum:()=>eR,getPaginationNumberCalc:()=>eZ,toCamelCase:()=>e2,textPlaceholder:()=>J,isFalseValue:()=>eF,toString:()=>M,uniqueArray:()=>eM,arrayHelper:()=>ez,isDocumentElement:()=>eC,getAntProTableConfigCache:()=>m,parseArray:()=>O,isString:()=>ew});var r,o,a=n(58168);(r=o||(o={})).Pop="POP",r.Push="PUSH",r.Replace="REPLACE";var i=function(e){return e},l="beforeunload";function c(e){e.preventDefault(),e.returnValue=""}function s(){var e=[];return{get length(){return e.length},push:function(t){return e.push(t),function(){e=e.filter(function(e){return e!==t})}},call:function(t){e.forEach(function(e){return e&&e(t)})}}}var d=n(20049),u=n(46285);function p(e){try{let t=`safetyEval#${decodeURIComponent(e)}`;window.localStorage.removeItem(t)}catch(e){console.warn("[@cqsjjb/jjb-common-lib]: 未知错误!",e.message)}}function f(e,t){try{let n=`safetyEval#${decodeURIComponent(e)}`;try{window.localStorage.setItem(n,JSON.stringify(t))}catch(e){console.warn("[@cqsjjb/jjb-common-lib]: 写入配置缓存失败。",e.message)}}catch(e){console.warn("[@cqsjjb/jjb-common-lib]: 未知错误!",e.message)}}function m(e){try{let t=`safetyEval#${decodeURIComponent(e)}`;try{return JSON.parse(window.localStorage.getItem(t))}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: 写入配置缓存失败。",e.message),{}}}catch(e){console.warn("[@cqsjjb/jjb-common-lib]: 未知错误!",e.message)}}function g(){try{let e=[];return Object.keys(localStorage).filter(e=>/^[a-zA-Z]+#/.test(e)).forEach(t=>{let[n,r]=t.split("#");e.push({route:r,identify:n,cache:m(r)})}),e}catch(e){return console.warn("[@cqsjjb/jjb-common-lib]: 未知错误!",e.message),[]}}function h(e=[]){return e&&L(e)&&e.length?e.map(e=>I(e.response)).map(e=>{let t,n,r;return e?.data?(t=b(e.data),r=e.data?.ext,n=e.data?.name):(t=b(e),r=e.ext,n=e.name),{url:t,ext:r,name:`${n}.${r}`,isImage:Q(t)}}):(console.warn("[@cqsjjb/jjb-common-lib]: getDynamicUploadFileList 文件列表为空!",e),[])}function b(e){return e.url||e.fileUrl||e.src}function v(e,t){let n=I(t);return e?t.token?t.host?new Promise((t,r)=>{(0,u.Get)(`${n.host}/design/designs/${e}`,{},{token:n.token}).then(n=>{n.success?ea(n.data)?(console.warn(`[@cqsjjb/jjb-common-lib]: 未查询到表单设计code '${e}' 的配置数据, 请检查code是否正确. `),t({})):t(C(I(n.data).config)):r(`[@cqsjjb/jjb-common-lib]: ${n.errMessage}`)})}):Promise.reject("[@cqsjjb/jjb-common-lib]: 表单设计入参 'option.host' 不能为空!"):Promise.reject("[@cqsjjb/jjb-common-lib]: 表单设计入参 'option.token' 不能为空!"):Promise.reject("[@cqsjjb/jjb-common-lib]: 表单设计入参 'code' 不能为空!")}function y(e={},t,n={}){if(z(e))return console.warn("[@cqsjjb/jjb-common-lib]: getDynamicFormilyFieldValue 字段为空!",e),t;let{formType:r,fromComponentEnum:o}=I(e),a=K(C(e.extJson).enums);if("FIELD_SELECT"===o){let e=a.find(e=>e.value===eG(t));if(e&&e.label)return eG(e.label)}if("FIELD_CHECKBOX"===o&&L(t)){let e=a.filter(e=>t.includes(e.value));return e.length>0?e.map(e=>e.label).join("、"):void 0}return"FIELD_TEXT"===o?"Cascader"===r?function(e=[],t){return e?.find(e=>e.parentCodes===K(t)?.join(","))}(n.regions,t)?.parentNames||"-":eo(e.httpInfo)?eG(t):{load:()=>{let{httpUrl:t,headers:n}=I(e.httpInfo);return t?fetch(t,{headers:I(n)}):Promise.resolve(null)},selected:eG(t,!0)}:"FIELD_FILE"===o?h(t):t}function x(e){let[t,n]=[[],new Map];for(let t of e)t.parentCode?n.get(t.parentCode)?n.set(t.parentCode,[...n.get(t.parentCode),t]):n.set(t.parentCode,[t]):n.set(t.fieldCode,t);return Array.from(n.keys()).forEach(e=>{let r=n.get(e);L(r)?t.push({children:r,fieldCode:e,fromComponentEnum:"GRID_FORM"}):t.push(r)}),t}function $(e=[],t={},n={}){return x(function(e=[],t={},n={}){let[r,o]=[[],[]];return eN(e)?(console.warn("[@cqsjjb/jjb-common-lib]: getDynamicFormilyPrimaryFields 字段集合为空!",e),r):(e.forEach(e=>{let o=y(e,t[e.fieldCode],n),a=C(e.extJson),i=L(a)?[]:a.enums,l=L(a)?a:[],{name:c,formType:s,extValues:d,fieldCode:u,parentCode:p,requiredEnum:f,fromComponentEnum:m,fieldDataTypeEnum:g}=e;r.push({name:c,value:o,extValues:d,enumList:i,tableColumns:l,formType:L(a)?"Table":s,fieldCode:u,parentCode:p,requiredEnum:f,fromComponentEnum:m,fieldDataTypeEnum:g})}),e.forEach(({name:e,formType:t,fieldCode:n,parentCode:a,requiredEnum:i,fromComponentEnum:l,fieldDataTypeEnum:c})=>{r.some(e=>e.fieldCode===n)||o.push({name:e,formType:t,fieldCode:n,parentCode:a,requiredEnum:i,fromComponentEnum:l,fieldDataTypeEnum:c,value:null,enumList:[]})}),r.concat(o))}(e,t,{regions:function(e=[]){let t=[];return!function e(n){for(let r=0;re.length))return 0===t?e[0]:-1===t?e[e.length-1]:e[t]},trim:e=>X(e)?e.map(e=>e.trim()):[],copy(e){let t=[];if(L(e))for(let n=0;n_(e)?e.reduce((e,t)=>e+t):-1,group(e=[],t){if(isNaN(t)||t<1||t>=e.length)return[e];let n=[];for(let r=0,o=e.length;r{let a=e();n&&r++,(a||n&&r>=n)&&(clearInterval(o),el(t)&&t(a))},100)}function eM(e=[]){return Array.from(new Set(e))}function eR(e){return e.toString().toUpperCase()}function eB(e){return console.warn("[@cqsjjb/jjb-common]: arrayStringTrim已废弃,请使用tools.arrayHelper.trim替代。"),ez.trim(e)}function eT(e){return ew(e)&&""===e}function eF(e){return""===e||0===e||null==e}function eN(e){return!L(e)||0===e.length}let eH=e=>{let t=function(e){void 0===e&&(e={});var t=e.window,n=void 0===t?document.defaultView:t,r=n.history;function d(){var e=n.location,t=e.pathname,o=e.search,a=e.hash,l=r.state||{};return[l.idx,i({pathname:t,search:o,hash:a,state:l.usr||null,key:l.key||"default"})]}var u=null;n.addEventListener("popstate",function(){if(u)b.call(u),u=null;else{var e=o.Pop,t=d(),n=t[0],r=t[1];if(b.length){if(null!=n){var a=m-n;a&&(u={action:e,location:r,retry:function(){w(-1*a)}},w(a))}}else A(e)}});var p=o.Pop,f=d(),m=f[0],g=f[1],h=s(),b=s();function v(e){var t,n,r,o,a,i,l;return"string"==typeof e?e:(r=void 0===(n=(t=e).pathname)?"/":n,a=void 0===(o=t.search)?"":o,l=void 0===(i=t.hash)?"":i,a&&"?"!==a&&(r+="?"===a.charAt(0)?a:"?"+a),l&&"#"!==l&&(r+="#"===l.charAt(0)?l:"#"+l),r)}function y(e,t){return void 0===t&&(t=null),i((0,a.A)({pathname:g.pathname,hash:"",search:""},"string"==typeof e?function(e){var t={};if(e){var n=e.indexOf("#");n>=0&&(t.hash=e.substr(n),e=e.substr(0,n));var r=e.indexOf("?");r>=0&&(t.search=e.substr(r),e=e.substr(0,r)),e&&(t.pathname=e)}return t}(e):e,{state:t,key:Math.random().toString(36).substr(2,8)}))}function x(e,t){return[{usr:e.state,key:e.key,idx:t},v(e)]}function $(e,t,n){return!b.length||(b.call({action:e,location:t,retry:n}),!1)}function A(e){p=e;var t=d();m=t[0],g=t[1],h.call({action:p,location:g})}function w(e){r.go(e)}return null==m&&(m=0,r.replaceState((0,a.A)({},r.state,{idx:m}),"")),{get action(){return p},get location(){return g},createHref:v,push:function e(t,a){var i=o.Push,l=y(t,a);if($(i,l,function(){e(t,a)})){var c=x(l,m+1),s=c[0],d=c[1];try{r.pushState(s,"",d)}catch(e){n.location.assign(d)}A(i)}},replace:function e(t,n){var a=o.Replace,i=y(t,n);if($(a,i,function(){e(t,n)})){var l=x(i,m),c=l[0],s=l[1];r.replaceState(c,"",s),A(a)}},go:w,back:function(){w(-1)},forward:function(){w(1)},listen:function(e){return h.push(e)},block:function(e){var t=b.push(e);return 1===b.length&&n.addEventListener(l,c),function(){t(),b.length||n.removeEventListener(l,c)}}}}(),n=[],r={...eL.query,...I(e)};Object.keys(r).forEach(e=>{let t=r[e];ea(t)||eo(t)||eT(t)||n.push(`${e}=${window.decodeURIComponent(t)}`)});let{location:{hash:d,pathname:u}}=t;t.replace(`${u}${d.split("?")[0]}${n.length?`?${n.join("&")}`:""}`)},eL={values:()=>Object.values(eL.query),keys:()=>Object.keys(eL.query),get length(){return eL.toString().length},toString:(e=!1)=>(0,d.stringify)(eL.query,e),has:e=>ew(e)&&eL.keys().includes(e),get query(){return new Proxy((0,d.parse)(window.location.href),{get:(e,t)=>e[t]||void 0,set:(e,t,n)=>(eH({[t]:n}),!0),deleteProperty:(e,t)=>(eH({[t]:void 0}),!0)})},add(e,t){ew(e)&&(eL.query={[e]:t})},delete(e){ew(e)&&(eL.query={[e]:void 0})},set query(values){eH(values)}};function eD(){return console.warn("[@cqsjjb/jjb-common-lib]: routerParamQuery已弃用!请使用tools.router替代。"),eL.query}function e_(){return console.warn("[@cqsjjb/jjb-common-lib]: routerParamMerge已弃用!请使用tools.router替代。"),eL.query=arguments[0],Promise.resolve()}function eW(){let e="ABCDEFGHIJKLMNOPQRSTUVWXYZ",t=[];for(let n=0;n{let r,o=new FileReader;o.readAsDataURL(e),o.onload=()=>r=o.result,o.onerror=e=>n(e),o.onloadend=()=>t(r)})}function eU(e){return console.warn("[@cqsjjb/jjb-common-lib]: getFileToBase64已弃用!请使用tools.fileToBase64替代。"),eX(e)}function eY(e,t){return{x:16,y:16/(e/t),width:e,height:t,different:e/t}}function eG(e,t=!1){if(ew(e)&&-1!==e.indexOf("&"))if(u.HTTP_URL_REG.test(e))return e;else{let n=e.split("&");if(t){let[e,t]=n;return{key:e?.trim(),label:t?.trim()}}if(n.length>1)return n[n.length-1]}else if(L(e))return e.map(e=>eG(e,t));else return e}let eK=eG;function eQ(e){if(F(e))return I(e.target).value}function eJ(e){let{title:t,actionType:n,config:r={},payload:o={},showMsg:a=!1,needMsg:i=!1,success:l}=e,c=window.$$jjbCommonAntdMessage||{success:G};return{title:t,...r,onOk:()=>this.props[n](o).then(e=>{e.success?((i||a)&&c.success(e.respMsg),l&&l()):console.warn("[@cqsjjb/jjb-common-lib]: modalConfirmHelper 操作失败!",e.respMsg)})}}function eZ(e){let t=eL.query,n=t.page?"page":"pageIndex",r=parseInt(t[n]||1,0);return eL.query={...t,[n]:1===r?r:1===e?r-1:r},Promise.resolve()}function e0(e){return ew(e)?e:eh(e)?e.label:void 0}function e1(e){return ew(e)?e:eh(e)?e.value:void 0}function e2(e){return ew(e)?e.replace(/_([a-z])/g,(e,t)=>t.toUpperCase()):""}function e4(e){return ew(e)?e.replace(/(^\w|_\w)/g,e=>e.replace("_","").toUpperCase()):""}},38105(e,t,n){"use strict";n.d(t,{P:()=>p});var r=n(96540),o=n(56347),a=n(54625),i=n(38940);function l(){return(l=Object.assign?Object.assign.bind():function(e){for(var t=1;t!!e&&"index"!==e);t.stat=n.length>0,t.param=n.join("_")}return t}function d(e){return`${e[0].toLowerCase()}${e.substring(1)}`}class u extends r.Component{constructor(e){super(e),this.state={hasError:!1,error:null,componentStack:null}}static getDerivedStateFromError(e){return{hasError:!0,error:e}}componentDidCatch(e,t){this.setState({componentStack:t?.componentStack}),console.warn("ErrorBoundary caught error:",e,t)}render(){return this.state.hasError?r.createElement(i.Ay,{status:"error",title:"抱歉,应用内部发生异常错误。",subTitle:r.createElement("div",null,r.createElement("div",{style:{color:"#333"}},this.state.error?.message),r.createElement("div",{style:{width:500,margin:"auto",textAlign:"left",whiteSpace:"pre"}},this.state.componentStack))}):this.props.children}}let p=({app:e})=>{let t,p=function(e=[]){let t=[],r=e.find(e=>"/"===e.path);return e.forEach(n=>{if("/"===n.path)return;let r=n.path.split("/").slice(1);n.parentFile=1===r.length?null:e.find(e=>e.path==="/"+r.slice(0,-1).join("/"))?.file,t.push(n)}),r&&(Object.assign(r,{parentFile:null}),t.push(r)),t.forEach(e=>{e.children=t.filter(t=>t.parentFile===e.file)}),function(e=[]){return function e(t=[]){return t.map(t=>({...t,children:t.children?.length?e(t.children):[],Component:n(10016)(`./pages${t.file.replace(/^\./,"")}`).default}))}(e)}(t.filter(e=>null===e.parentFile))}((t=[],n(2778).keys().forEach(e=>{if(/components|tools|assets/.test(e))return;let n=e.split("/"),r=n[n.length-1],{stat:o,param:a}=s(r),i=n.slice(1,n.length-1).map(e=>{let{stat:t,param:n}=s(e);return t?`:${n}`:e});if(o||["index.js","index.ts","index.cjs","index.mjs","index.tsx","index.jsx"].includes(r)){let n="/"+i.map(d).join("/")+(o?`/:${a}`:"");/\s/.test(n)&&console.warn(`[@cqsjjb/dva-runtime]: 路由 <${n}> 中存在空格,请检查页面目录命名`),t.push({path:n,file:e})}}),t.reverse()));return r.createElement(a.Kd,{basename:c},r.createElement(u,null,function e(t=[],{app:n}){return r.createElement(o.Switch,null,t.map(({path:t,children:a,Component:i},c)=>r.createElement(o.Route,{key:c,path:t,exact:"/"===t,render:t=>r.createElement(i,l({},t,{_app:n}),a.length>0&&e(a,{app:n}))})),r.createElement(o.Route,{path:"*",render:({location:e})=>t.some(t=>{if("/"===t.path)return!1;let n=t.path.replace(/\/$/,""),r=e.pathname.replace(/\/$/,"");return r.startsWith(n+"/")||r===n||n.includes(r)})?null:r.createElement(i.Ay,{status:"info",title:"抱歉,您访问的应用页面不存在。",subTitle:r.createElement("div",{style:{textAlign:"left",maxWidth:360,margin:"auto"}},r.createElement("div",{style:{marginBottom:16}},"路径: ",r.createElement("span",{style:{color:"#000"}},e.pathname)),r.createElement("div",{style:{color:"#666"}},"可能的原因是:"),r.createElement("ul",null,r.createElement("li",null,"应用可能正在发版更新中,请稍后再试。"),r.createElement("li",null,"此页面不在应用的页面目录中,或已被删除。"),r.createElement("li",null,"页面地址拼写错误,请检查页面地址是否正确。")))})}))}(p,{app:e})))}},15998(e,t,n){"use strict";n.d(t,{dm:()=>z,$R:()=>j,mj:()=>O,CV:()=>C,Hx:()=>E});var r,o,a=n(96540),i=n(52956),l=n(29490),c=n(57006),s=n(30502),d=n(40961),u=n(58168);(r=o||(o={})).Pop="POP",r.Push="PUSH",r.Replace="REPLACE";var p=function(e){return e},f="beforeunload";function m(e){e.preventDefault(),e.returnValue=""}function g(){var e=[];return{get length(){return e.length},push:function(t){return e.push(t),function(){e=e.filter(function(e){return e!==t})}},call:function(t){e.forEach(function(e){return e&&e(t)})}}}let h="call",b="assign",v="property",y="function",x=["Post","Get","Put","Patch","Delete"],$=e=>Error(`[@cqsjjb/jjb-dva-runtime-models]: ${e}`);function A(e){if(c.tools.isString(e)){let t=e.trim();if(/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(e))return{type:v,value:t};if(/^(Post|Get|Patch|Delete|Put)\s*>\s*.+$/.test(e))return{type:h,value:t};if(/(\||res|&)/g.test(e))return{type:b,value:t};throw $(`参数无效,可能原因: A: 不是有效loading属性 B: 不是有效调用指令 -C: 不是有效赋值指令 -> ${e}`)}if("function"==typeof e)return{type:f,value:e};throw g(`参数无效, 不是string或function -> ${e}`)}let b=e=>e.map(e=>e.trim()).filter(Boolean);function v(e,t){let n=t.map(e=>e.replace(/[{}]/g,""));return Object.fromEntries(Object.entries(e).filter(([e])=>!n.includes(e)))}function y(e=null,t=null,n=null){return function(e){let t,{done:n,state:r}="function"==typeof e.res?{done:()=>{},state:{}}:function(e){if(!e)return{done:()=>({}),state:{}};let t={},n=[];return b(e.split("&")).forEach(r=>{let[o,a]=b(r.split(":"));if(!a)throw g(`表达式错误 '${o}' 缺少默认值 -> ${e}`);let[i,l]=b(a.split(/\s\|\s/));if(!l)throw g(`表达式错误 '${o}' 缺少被赋值字段 -> ${e}`);t[o]=Function(`return ${i}`)(),n.push(`${o}: ${l}`)}),{done:Function(`return function($){const res=$||{};return{${n.join(",")}}}`)(),state:t}}(e.res);return{state:{...(t=e.state)?{[t]:!1}:{},...r},effect:()=>[e.state,"function"==typeof e.req?e.req:function(e){if(!e||!e.includes(">"))throw g(`表达式错误, 缺少箭头 -> ${e}`);let[t]=b(e.split(">"));if(!m.includes(t))throw g(`表达式错误, ${t}不是有效Send类型 -> ${e}`);return (n={})=>{let r=function(e,t){let[,n]=b(t.split(/^(Post|Put|Patch|Delete|Get)\s*>\s*/));if(n.includes("{")&&n.includes("}")){let t,r=n.match(/{([^{}]+)}/g);return r?{url:(t=n,r.forEach(n=>{let r=n.replace(/[{}]/g,"");t=t.replace(n,encodeURIComponent(e[r]||"__noSetValue"))}),t),data:v(e,r)}:{url:n,data:e}}if(n.includes(">")){let t=b(n.split(">")),r=t.slice(1);return{url:t[0]+"/"+r.map(t=>e[t]||"__noSetValue").join("/"),data:v(e,r)}}return{url:n,data:e}}(n,e);return i.http[t](r.url,r.data)}}(e.req),"function"==typeof e.res?e.res:n]}}(function(e,t,n){let r=Array.from(arguments).filter(Boolean);if(r.length>3)throw g(`输入参数长度无效,最大3个 -> 当前长度 ${r.length}`);let o=null,a=null,i=null,l=r.map(h);if(3===r.length)if(l[0].type===p&&(l[1].type===d||l[1].type===f)&&(l[2].type===u||l[2].type===f))[i,o,a]=l.map(e=>e.value);else throw g(`配置错误! args: ${e}, ${t}, ${n}`);if(2===r.length)if(l[0].type===p&&(l[1].type===d||l[1].type===f))[i,o]=[l[0].value,l[1].value];else if((l[0].type===d||l[0].type===f)&&(l[1].type===u||l[1].type===f))[o,a]=[l[0].value,l[1].value];else throw g(`配置错误! args: ${e}, ${t}`);if(1===r.length)if(l[0].type===d||l[0].type===f)o=l[0].value;else throw g(`配置错误! 参数 '<${e}>' 应该是http-request配置.`);return{req:o,res:a,state:i,parameter:{a:e,b:t,c:n}}}(...arguments))}let x=(e={})=>{let t=e.selector||"#root";try{let e=(0,l.Ay)({history:(0,s.zR)()}),r=function e(t){return Object.values(t).reduce((t,n)=>Object.keys(n).length&&i.tools.isUndefined(n.name)&&i.tools.isUndefined(n.paths)&&i.tools.isUndefined(n.isIntegrated)?t.concat(e(n)):t.concat(n),[])}(n(88648));n(65044).keys().forEach(t=>{let o=t.replace(/^\.\//,"").replace(/\/index\.(js|ts)$/,""),a=n(63271)(`./${t.replace(/^\.\//,"")}`),{state:i,effects:l}=Object.entries(a).reduce((e,[t,n])=>(e.effects[t]=n.effect,Object.assign(e.state,n.state),e),{state:{},effects:{}});try{let t=r.find(e=>e.paths===o);if(!t)throw Error();e.model(A({name:t.name},{state:i,effects:l}))}catch{console.error(`注册数据层失败,原因:无法匹配路径‘${o}’`)}}),e.router(e=>n(38105).P(e));let o=()=>e.start(t);return window.__POWERED_BY_QIANKUN__||o(),{mount:o,unmount:({container:e})=>{let n=e?e.querySelector(t):document.querySelector(t);c.unmountComponentAtNode(n)},bootstrap:e=>e}}catch(e){console.error("启动App失败!请修复下列错误重试 ->",e)}};function $(){return($=Object.assign?Object.assign.bind():function(e){for(var t=1;t{t[n]=function*(t,r){let[o,i,l]=e[n](t),c=(0,a.isString)(o)&&o?o:`UNSET_LOADING_ACTION_${n}`;yield r.put({type:"updateState",payload:{[c]:!0}});let s=yield r.call((...e)=>i(...e).catch(()=>{}),t.payload);if(yield r.put({type:"updateState",payload:{[c]:!1}}),(0,a.isFunction)(l))try{yield r.put({type:"updateState",payload:l(s)})}catch(e){console.error(n,e)}return s}}),t}(n),reducers:{...r,updateState:(e={},{payload:t})=>({...e,...t})},namespace:S(e),subscriptions:o}}function w(e,t=!1){try{let n=e.split("/"),r=t?n.map((e,t)=>t?e.replace(/\b(\w)|\s(\w)/g,e=>e.toUpperCase()):e).join(""):n[n.length-1],o=Object.create(null);return o.name=r,o.paths=n.join("/"),o.isIntegrated=t,o[Symbol("_KEY_")]=Symbol(Math.random()),o}catch{throw Error("dva.namespace invalid.")}}function S(e){if(e&&"object"==typeof e)return e.name;throw Error("dva.namespace invalid name.")}function C(e,t=!1){return function(n){class l extends r.Component{render(){let o={},a={};e.forEach(e=>{if(!this.props[e.name])throw Error(`Connect[${e.name}] parsing failed. Please check named path.`);(this.props[e.name].__EFFECTS_KEY__||[]).forEach(t=>{let n=`${e.name}/${t}`;a[t]=n,o[n]=n,o[`${e.name}/updateState`]=`${e.name}/updateState`})});let l={};return t&&Object.keys(a).forEach(e=>{l[e]=t=>this.props.dispatch({type:a[e],payload:t})}),r.createElement(n,$({ref:this.props.forwardedRef,models:e,getModelState:(e,t)=>{try{return this.props[S(e)][t]}catch(e){return}},resetModelState:(e,t={})=>{this.props.dispatch({type:`${S(e)}/updateState`,payload:i.tools.toObject(t)})},dispatchModelAction:(e,t,n={})=>this.props.dispatch({type:`${S(e)}/${t}`,payload:i.tools.toObject(n)})},this.props,o,t?l:{}))}}let c=(0,o.Ng)(function(e){if(!(0,a.isArray)(e))throw Error("connect(...args) must be an array.");let t=e.map(S);try{return Function(`return (({ ${t.join(", ")} }) => ({ ${t.join(", ")} }))`)()}catch{throw Error("connect() automatic programming reorganization failed.")}}(e))(l);return(0,r.forwardRef)((e,t)=>r.createElement(c,$({},e,{forwardedRef:t})))}}},51038(e,t,n){"use strict";n.d(t,{A:()=>h});var r=n(96540),o=n(95725),a=n(36492),i=n(60209),l=n(74271),c=n(55165);function s(){return(s=Object.assign?Object.assign.bind():function(e){for(var t=1;t{a&&a(""===e?void 0:e,...t)}}))}}let u=d(o.A),p=d(a.A,{maxTagCount:3}),f=d(i.A,{maxTagCount:3}),m=d(l.A,{showSearch:!0,allowClear:!0,showCheckedStrategy:l.A.SHOW_PARENT,treeNodeFilterProp:"title"}),g=d(c.A);g.RangePicker=d(c.A.RangePicker),g.TimePicker=d(c.A.TimePicker),g.WeekPicker=d(c.A.WeekPicker),g.MonthPicker=d(c.A.MonthPicker),g.QuarterPicker=d(c.A.QuarterPicker),g.YearPicker=d(c.A.YearPicker);let h={Input:u,Select:p,Cascader:f,TreeSelect:m,DatePicker:g}},21023(e,t,n){"use strict";n.d(t,{A:()=>E});var r=n(96540),o=n(64467),a=n(57046),i=n(89379),l=n(83690),c=n.n(l),s=n(58717),d=n.n(s),u=n(70888),p=n(68101),f=n(73133),m=n(4888),g=n(46942),h=n.n(g),b=n(6807),v=n(68210),y=n(9424),x=function(){return{overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"}},$=function(e){var t;return(0,o.A)({},e.componentCls,(0,i.A)((0,i.A)({},null===y.dF||void 0===y.dF?void 0:(0,y.dF)(e)),{},(0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)({position:"relative",backgroundColor:e.colorWhite,paddingBlock:e.pageHeaderPaddingVertical+2,paddingInline:e.pageHeaderPadding,"&&-ghost":{backgroundColor:e.pageHeaderBgGhost},"&-no-children":{height:null==(t=e.layout)||null==(t=t.pageContainer)?void 0:t.paddingBlockPageContainerContent},"&&-has-breadcrumb":{paddingBlockStart:e.pageHeaderPaddingBreadCrumb},"&&-has-footer":{paddingBlockEnd:0},"& &-back":(0,o.A)({marginInlineEnd:e.margin,fontSize:16,lineHeight:1,"&-button":(0,i.A)((0,i.A)({fontSize:16},null===y.Y1||void 0===y.Y1?void 0:(0,y.Y1)(e)),{},{color:e.pageHeaderColorBack,cursor:"pointer"})},"".concat(e.componentCls,"-rlt &"),{float:"right",marginInlineEnd:0,marginInlineStart:0})},"& ".concat("ant","-divider-vertical"),{height:14,marginBlock:0,marginInline:e.marginSM,verticalAlign:"middle"}),"& &-breadcrumb + &-heading",{marginBlockStart:e.marginXS}),"& &-heading",{display:"flex",justifyContent:"space-between","&-left":{display:"flex",alignItems:"center",marginBlock:e.marginXS/2,marginInlineEnd:0,marginInlineStart:0,overflow:"hidden"},"&-title":(0,i.A)((0,i.A)({marginInlineEnd:e.marginSM,marginBlockEnd:0,color:e.colorTextHeading,fontWeight:600,fontSize:e.pageHeaderFontSizeHeaderTitle,lineHeight:e.controlHeight+"px"},x()),{},(0,o.A)({},"".concat(e.componentCls,"-rlt &"),{marginInlineEnd:0,marginInlineStart:e.marginSM})),"&-avatar":(0,o.A)({marginInlineEnd:e.marginSM},"".concat(e.componentCls,"-rlt &"),{float:"right",marginInlineEnd:0,marginInlineStart:e.marginSM}),"&-tags":(0,o.A)({},"".concat(e.componentCls,"-rlt &"),{float:"right"}),"&-sub-title":(0,i.A)((0,i.A)({marginInlineEnd:e.marginSM,color:e.colorTextSecondary,fontSize:e.pageHeaderFontSizeHeaderSubTitle,lineHeight:e.lineHeight},x()),{},(0,o.A)({},"".concat(e.componentCls,"-rlt &"),{float:"right",marginInlineEnd:0,marginInlineStart:12})),"&-extra":(0,o.A)((0,o.A)({marginBlock:e.marginXS/2,marginInlineEnd:0,marginInlineStart:0,whiteSpace:"nowrap","> *":(0,o.A)({"white-space":"unset"},"".concat(e.componentCls,"-rlt &"),{marginInlineEnd:e.marginSM,marginInlineStart:0})},"".concat(e.componentCls,"-rlt &"),{float:"left"}),"*:first-child",(0,o.A)({},"".concat(e.componentCls,"-rlt &"),{marginInlineEnd:0}))}),"&-content",{paddingBlockStart:e.pageHeaderPaddingContentPadding}),"&-footer",{marginBlockStart:e.margin}),"&-compact &-heading",{flexWrap:"wrap"}),"&-wide",{maxWidth:1152,margin:"0 auto"}),"&-rtl",{direction:"rtl"})))},A=n(74848),w=function(e,t){var n;return null!=(n=e.items)&&n.length?(0,A.jsx)(u.A,(0,i.A)((0,i.A)({},e),{},{className:h()("".concat(t,"-breadcrumb"),e.className)})):null},S=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"ltr";return void 0!==e.backIcon?e.backIcon:"rtl"===t?(0,A.jsx)(d(),{}):(0,A.jsx)(c(),{})},C=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"ltr",r=arguments.length>3?arguments[3]:void 0,o=t.title,a=t.avatar,l=t.subTitle,c=t.tags,s=t.extra,d=t.onBack,u="".concat(e,"-heading"),m=o||l||c||s;if(!m)return null;var g=S(t,n),b=g&&d?(0,A.jsx)("div",{className:"".concat(e,"-back ").concat(r).trim(),children:(0,A.jsx)("div",{role:"button",onClick:function(e){null==d||d(e)},className:"".concat(e,"-back-button ").concat(r).trim(),"aria-label":"back",children:g})}):null,v=b||a||m;return(0,A.jsxs)("div",{className:u+" "+r,children:[v&&(0,A.jsxs)("div",{className:"".concat(u,"-left ").concat(r).trim(),children:[b,a&&(0,A.jsx)(p.A,(0,i.A)({className:h()("".concat(u,"-avatar"),r,a.className)},a)),o&&(0,A.jsx)("span",{className:"".concat(u,"-title ").concat(r).trim(),title:"string"==typeof o?o:void 0,children:o}),l&&(0,A.jsx)("span",{className:"".concat(u,"-sub-title ").concat(r).trim(),title:"string"==typeof l?l:void 0,children:l}),c&&(0,A.jsx)("span",{className:"".concat(u,"-tags ").concat(r).trim(),children:c})]}),s&&(0,A.jsx)("span",{className:"".concat(u,"-extra ").concat(r).trim(),children:(0,A.jsx)(f.A,{children:s})})]})},O=function(e){var t,n=r.useState(!1),l=(0,a.A)(n,2),c=l[0],s=l[1],d=r.useContext(m.Ay.ConfigContext),u=d.getPrefixCls,p=d.direction,f=e.prefixCls,g=e.style,x=e.footer,S=e.children,O=e.breadcrumb,k=e.breadcrumbRender,j=e.className,E=e.contentWidth,P=e.layout,z=e.ghost,I=u("page-header",f),M=(0,y.X3)("ProLayoutPageHeader",function(e){return[$((0,i.A)((0,i.A)({},e),{},{componentCls:".".concat(I),pageHeaderBgGhost:"transparent",pageHeaderPadding:16,pageHeaderPaddingVertical:4,pageHeaderPaddingBreadCrumb:e.paddingSM,pageHeaderColorBack:e.colorTextHeading,pageHeaderFontSizeHeaderTitle:e.fontSizeHeading4,pageHeaderFontSizeHeaderSubTitle:14,pageHeaderPaddingContentPadding:e.paddingSM}))]}),R=M.wrapSSR,B=M.hashId,T=(O&&!(null!=O&&O.items)&&null!=O&&O.routes&&((0,v.g9)(!1,"The routes of Breadcrumb is deprecated, please use items instead."),O.items=function e(t){return null==t?void 0:t.map(function(t){var n;return(0,v.g9)(!!t.breadcrumbName,"Route.breadcrumbName is deprecated, please use Route.title instead."),(0,i.A)((0,i.A)({},t),{},{breadcrumbName:void 0,children:void 0,title:t.title||t.breadcrumbName},null!=(n=t.children)&&n.length?{menu:{items:e(t.children)}}:{})})}(O.routes)),null!=O&&O.items)?w(O,I):null,F=O&&"props"in O,N=null!=(t=null==k?void 0:k((0,i.A)((0,i.A)({},e),{},{prefixCls:I}),T))?t:T,H=F?O:N,L=h()(I,B,j,(0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)({},"".concat(I,"-has-breadcrumb"),!!H),"".concat(I,"-has-footer"),!!x),"".concat(I,"-rtl"),"rtl"===p),"".concat(I,"-compact"),c),"".concat(I,"-wide"),"Fixed"===E&&"top"==P),"".concat(I,"-ghost"),void 0===z||z)),D=C(I,e,p,B),_=S&&(0,A.jsx)("div",{className:"".concat(I,"-content ").concat(B).trim(),children:S}),W=x?(0,A.jsx)("div",{className:"".concat(I,"-footer ").concat(B).trim(),children:x}):null;return H||D||W||_?R((0,A.jsx)(b.A,{onResize:function(e){return s(e.width<768)},children:(0,A.jsxs)("div",{className:L,style:g,children:[H,D,_,W]})})):(0,A.jsx)("div",{className:h()(B,["".concat(I,"-no-children")])})};let{toObject:k}=n(57006).tools,j=window.process?.env?.app?.antd["ant-prefix"]||"ant",E=(0,r.memo)(e=>{let{title:t,extra:n,style:o={},header:a,footer:i,history:l={},noStyle:c,formLine:s,formLineStyle:d,noBorder:u=!1,previous:p=!1,children:f,transparent:m,contentStyle:g,footerStyle:h,pageHeaderStyle:b,onBack:v,"data-node-id":y}=e,x=[`${j}-layout-container`,m&&`${j}-layout-container-transparent`,c&&`${j}-layout-container-no-style`].filter(Boolean).join(" "),$=(0,r.useCallback)(()=>{v?v():p&&l.go(-1)},[v,p,l]);return r.createElement("div",{style:u?{border:"none",...o}:o,className:x,"data-node-id":y},a||r.createElement(O,{title:t,extra:n,style:b,onBack:p||v?$:void 0}),s&&r.createElement("div",{className:`${j}-layout-container-tools`,style:d},s),r.createElement("div",{style:g,className:`${j}-layout-container-content`},r.createElement("div",{className:`${j}-layout-container-content-abs`},f)),i&&r.createElement("div",{className:`${j}-lay-container-bottom`,style:h},i))})},44500(e,t,n){"use strict";n.d(t,{A:()=>h});var r=n(96540),o=n(26380),a=n(73133),i=n(71021),l=n(47152),c=n(16370),s=n(4811),d=n(58168);let u={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M511.4 124C290.5 124.3 112 303 112 523.9c0 128 60.2 242 153.8 315.2l-37.5 48c-4.1 5.3-.3 13 6.3 12.9l167-.8c5.2 0 9-4.9 7.7-9.9L369.8 727a8 8 0 00-14.1-3L315 776.1c-10.2-8-20-16.7-29.3-26a318.64 318.64 0 01-68.6-101.7C200.4 609 192 567.1 192 523.9s8.4-85.1 25.1-124.5c16.1-38.1 39.2-72.3 68.6-101.7 29.4-29.4 63.6-52.5 101.7-68.6C426.9 212.4 468.8 204 512 204s85.1 8.4 124.5 25.1c38.1 16.1 72.3 39.2 101.7 68.6 29.4 29.4 52.5 63.6 68.6 101.7 16.7 39.4 25.1 81.3 25.1 124.5s-8.4 85.1-25.1 124.5a318.64 318.64 0 01-68.6 101.7c-7.5 7.5-15.3 14.5-23.4 21.2a7.93 7.93 0 00-1.2 11.1l39.4 50.5c2.8 3.5 7.9 4.1 11.4 1.3C854.5 760.8 912 649.1 912 523.9c0-221.1-179.4-400.2-400.6-399.9z"}}]},name:"undo",theme:"outlined"};var p=n(67928),f=r.forwardRef(function(e,t){return r.createElement(p.A,(0,d.A)({},e,{ref:t,icon:u}))}),m=n(37864);function g(){return(g=Object.assign?Object.assign.bind():function(e){for(var t=1;t{},onReset:v=()=>{},onFinish:y=()=>{},onExpand:x,openFormItemStyle:$=!1})=>{let A,[w]=o.A.useForm(),S=(0,r.useRef)(w),C=e&&"current"in e;(0,r.useEffect)(()=>{C&&console.warn("[SearchForm] 警告:通过 ref 传入 form 的方式已废弃,将在后续版本中移除。请使用 Form.useForm() 创建 form 实例并直接传入,例如:\n const [form] = Form.useForm();\n ")},[C]);let O=e&&C?e:S;(0,r.useEffect)(()=>{!C&&e&&(S.current=e)},[e,C]);let[k,j]=(0,r.useState)(d);(0,r.useEffect)(()=>{b&&b(O)},[O,b]);let E=void 0!==n,P=E?n:k,z=(A=($?p:p.map(e=>r.isValidElement(e)&&e.type===o.A.Item&&!e.props.noStyle?r.cloneElement(e,{noStyle:!0}):e)).map(e=>({show:!0,node:e})),P||A.length<=2?A:A.map((e,t)=>t>1?{...e,show:!1}:e));return 0===z.length?null:r.createElement(o.A,g({},e&&C?{ref:e}:{form:e||w},{style:t,initialValues:h,onFinish:e=>y(e)}),r.createElement(l.A,{gutter:[16,16]},z.map((e,t)=>r.createElement(c.A,{key:t,span:8,style:{display:e.show?"block":"none"}},e.node)),r.createElement(c.A,{span:8,style:{display:"flex",alignItems:"flex-start"}},r.createElement(o.A.Item,{noStyle:!0,style:{marginBottom:0}},r.createElement(a.A,null,r.createElement(i.Ay,{type:"primary",icon:r.createElement(s.A,null),htmlType:"submit",loading:u},"查询"),r.createElement(i.Ay,{icon:r.createElement(f,null),loading:u,onClick:()=>{let t=e?C?e.current:e:w;t.resetFields(),v(t.getFieldsValue())}},"重置"),p.length>2&&r.createElement(i.Ay,{icon:r.createElement(m.A,{style:{transform:P?"rotate(-90deg)":"rotate(90deg)"}}),onClick:()=>{E?x&&x(!n):j(e=>{let t=!e;return x&&x(t),t})}},P?"收起":"展开"))))))}},83454(e,t,n){"use strict";n.d(t,{A:()=>u});var r=n(96540),o=n(57006),a=n(58168);let i={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M456 231a56 56 0 10112 0 56 56 0 10-112 0zm0 280a56 56 0 10112 0 56 56 0 10-112 0zm0 280a56 56 0 10112 0 56 56 0 10-112 0z"}}]},name:"more",theme:"outlined"};var l=n(67928),c=r.forwardRef(function(e,t){return r.createElement(l.A,(0,a.A)({},e,{ref:t,icon:i}))}),s=n(73133),d=n(76511);function u({maximum:e=3,children:t,space:n,icon:a=c,placement:i="bottomRight",trigger:l=["hover"]}){let p=(o.tools.isArray(t)?t:[].concat(t)).filter(Boolean),f=p.slice(0,e),m=p.slice(e);return r.createElement(s.A,{size:n},f,m.length>0&&r.createElement(d.A,{menu:{items:m.map((e,t)=>({key:t,label:e}))},placement:i,trigger:l},r.createElement("a",null,r.createElement(a,null))))}},83650(e,t,n){"use strict";n.d(t,{A:()=>W});var r,o=n(31635),a=n(96540),i=n(68645);let l=(r=a.useEffect,function(e,t){var n=(0,a.useRef)(!1);r(function(){return function(){n.current=!1}},[]),r(function(){if(n.current)return e();n.current=!0},t)});var c=function(e,t){var n=t.manual,r=t.ready,i=void 0===r||r,c=t.defaultParams,s=void 0===c?[]:c,d=t.refreshDeps,u=t.refreshDepsAction,p=(0,a.useRef)(!1);return p.current=!1,l(function(){!n&&i&&(p.current=!0,e.run.apply(e,(0,o.fX)([],(0,o.zs)(s),!1)))},[i]),l(function(){!p.current&&(n||(p.current=!0,u?u():e.refresh()))},(0,o.fX)([],(0,o.zs)(void 0===d?[]:d),!1)),{onBefore:function(){if(!i)return{stopNow:!0}}}};c.onInit=function(e){var t=e.ready;return{loading:!e.manual&&(void 0===t||t)}};let s=function(e,t){if(e===t)return!0;for(var n=0;n-1&&(a=setTimeout(function(){g.delete(e)},t)),g.set(e,(0,o.Cl)((0,o.Cl)({},n),{timer:a}))},b=new Map,v=function(e,t){b.set(e,t),t.then(function(t){return b.delete(e),t}).catch(function(){b.delete(e)})},y={},x=function(e,t){y[e]&&y[e].forEach(function(e){return e(t)})},$=function(e,t){return y[e]||(y[e]=[]),y[e].push(t),function(){var n=y[e].indexOf(t);y[e].splice(n,1)}};let A=function(e,t){var n=t.cacheKey,r=t.cacheTime,i=void 0===r?3e5:r,l=t.staleTime,c=void 0===l?0:l,s=t.setCache,u=t.getCache,p=(0,a.useRef)(void 0),f=(0,a.useRef)(void 0),y=function(e,t){s?s(t):h(e,i,t),x(e,t.data)},A=function(e,t){return(void 0===t&&(t=[]),u)?u(t):g.get(e)};return(d(function(){if(n){var t=A(n);t&&Object.hasOwnProperty.call(t,"data")&&(e.state.data=t.data,e.state.params=t.params,(-1===c||Date.now()-t.time<=c)&&(e.state.loading=!1)),p.current=$(n,function(t){e.setState({data:t})})}},[]),m(function(){var e;null==(e=p.current)||e.call(p)}),n)?{onBefore:function(e){var t=A(n,e);return t&&Object.hasOwnProperty.call(t,"data")?-1===c||Date.now()-t.time<=c?{loading:!1,data:null==t?void 0:t.data,error:void 0,returnNow:!0}:{data:null==t?void 0:t.data,error:void 0}:{}},onRequest:function(e,t){var r=b.get(n);return r&&r!==f.current||(f.current=r=e.apply(void 0,(0,o.fX)([],(0,o.zs)(t),!1)),v(n,r)),{servicePromise:r}},onSuccess:function(t,r){var o;n&&(null==(o=p.current)||o.call(p),y(n,{data:t,params:r,time:Date.now()}),p.current=$(n,function(t){e.setState({data:t})}))},onMutate:function(t){var r;n&&(null==(r=p.current)||r.call(p),y(n,{data:t,params:e.state.params,time:Date.now()}),p.current=$(n,function(t){e.setState({data:t})}))}}:{}};var w=n(38221),S=n.n(w);let C=function(e,t){var n=t.debounceWait,r=t.debounceLeading,i=t.debounceTrailing,l=t.debounceMaxWait,c=(0,a.useRef)(void 0),s=(0,a.useMemo)(function(){var e={};return void 0!==r&&(e.leading=r),void 0!==i&&(e.trailing=i),void 0!==l&&(e.maxWait=l),e},[r,i,l]);return((0,a.useEffect)(function(){if(n){var t=e.runAsync.bind(e);return c.current=S()(function(e){e()},n,s),e.runAsync=function(){for(var e=[],n=0;ntypeof window&&window.document&&window.document.createElement);function j(){return!k||"hidden"!==document.visibilityState}var E=new Set;k&&window.addEventListener("visibilitychange",function(){j()&&E.forEach(function(e){return e()})},!1);let P=function(e,t){var n=t.pollingInterval,r=t.pollingWhenHidden,o=void 0===r||r,i=t.pollingErrorRetryCount,c=void 0===i?-1:i,s=(0,a.useRef)(void 0),d=(0,a.useRef)(void 0),u=(0,a.useRef)(0),p=function(){var e;s.current&&clearTimeout(s.current),null==(e=d.current)||e.call(d)};return(l(function(){n||p()},[n]),n)?{onBefore:function(){p()},onError:function(){u.current+=1},onSuccess:function(){u.current=0},onFinally:function(){-1===c||-1!==c&&u.current<=c?s.current=setTimeout(function(){if(o||j())e.refresh();else{var t;t=function(){e.refresh()},E.add(t),d.current=function(){E.has(t)&&E.delete(t)}}},n):u.current=0},onCancel:function(){p()}}:{}};var z=new Set;if(k){var I=function(){j()&&(!k||void 0===navigator.onLine||navigator.onLine)&&z.forEach(function(e){return e()})};window.addEventListener("visibilitychange",I,!1),window.addEventListener("focus",I,!1)}let M=function(e,t){var n=t.refreshOnWindowFocus,r=t.focusTimespan,i=void 0===r?5e3:r,l=(0,a.useRef)(void 0),c=function(){var e;null==(e=l.current)||e.call(l)};return(0,a.useEffect)(function(){if(n){var t,r,a,s=(t=e.refresh.bind(e),r=!1,function(){for(var e=[],n=0;na&&(n=Math.max(1,a));var i=(0,o.zs)(u.params||[]),l=i[0],c=i.slice(1);u.run.apply(u,(0,o.fX)([],(0,o.zs)((0,o.fX)([(0,o.Cl)((0,o.Cl)({},void 0===l?{}:l),{current:n,pageSize:r})],(0,o.zs)(c),!1)),!1))},x=function(e){y(e,h)};return(0,o.Cl)((0,o.Cl)({},u),{pagination:{current:m,pageSize:h,total:b,totalPage:v,onChange:(0,i.A)(y),changeCurrent:(0,i.A)(x),changePageSize:(0,i.A)(function(e){y(m,e)})}})},W=function(e,t){void 0===t&&(t={});var n,r=t.form,c=t.defaultType,s=t.defaultParams,d=t.manual,u=void 0!==d&&d,p=t.refreshDeps,f=t.ready,m=void 0===f||f,g=(0,o.Tt)(t,["form","defaultType","defaultParams","manual","refreshDeps","ready"]),h=_(e,(0,o.Cl)((0,o.Cl)({ready:m,manual:!0},g),{onSuccess:function(){for(var e,t=[],n=0;n0){S.current=(null==x?void 0:x.allFormData)||{},P(),y.apply(void 0,(0,o.fX)([],(0,o.zs)(v),!1));return}m&&(S.current=(null==s?void 0:s[1])||{},P(),u||z(null==s?void 0:s[0]))},[]),l(function(){m&&P()},[A]);var I=(0,a.useRef)(!1);return I.current=!1,l(function(){!u&&m&&(I.current=!0,r&&r.resetFields(),S.current=(null==s?void 0:s[1])||{},P(),z(null==s?void 0:s[0]))},[m]),l(function(){I.current||m&&(u||(I.current=!0,t.refreshDepsAction?t.refreshDepsAction():h.pagination.changeCurrent(1)))},(0,o.fX)([],(0,o.zs)(void 0===p?[]:p),!1)),(0,o.Cl)((0,o.Cl)({},h),{tableProps:{dataSource:(null==(n=h.data)?void 0:n.list)||C.current,loading:h.loading,onChange:(0,i.A)(function(e,t,n,r){var a=(0,o.zs)(v||[]),i=a[0],l=a.slice(1);y.apply(void 0,(0,o.fX)([(0,o.Cl)((0,o.Cl)({},i),{current:e.current,pageSize:e.pageSize,filters:t,sorter:n,extra:r})],(0,o.zs)(l),!1))}),pagination:{current:h.pagination.current,pageSize:h.pagination.pageSize,total:h.pagination.total}},search:{submit:(0,i.A)(function(e){var n,r,a;null==(n=null==e?void 0:e.preventDefault)||n.call(e),z(O.current?void 0:(0,o.Cl)({pageSize:t.defaultPageSize||(null==(a=null==(r=t.defaultParams)?void 0:r[0])?void 0:a.pageSize)||10,current:1},(null==s?void 0:s[0])||{}))}),type:A,changeType:(0,i.A)(function(){var e=j();S.current=(0,o.Cl)((0,o.Cl)({},S.current),e),w(function(e){return"simple"===e?"advance":"simple"})}),reset:(0,i.A)(function(){var e,n;r&&r.resetFields(),z((0,o.Cl)((0,o.Cl)({},(null==s?void 0:s[0])||{}),{pageSize:t.defaultPageSize||(null==(n=null==(e=t.defaultParams)?void 0:e[0])?void 0:n.pageSize)||10,current:1}))})}})}},68645(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(96540),o=n(65523),a=n(40860);let i=function(e){a.A&&!(0,o.Tn)(e)&&console.error("useMemoizedFn expected parameter is a function, got ".concat(typeof e));var t=(0,r.useRef)(e);t.current=(0,r.useMemo)(function(){return e},[e]);var n=(0,r.useRef)(void 0);return n.current||(n.current=function(){for(var e=[],n=0;ni});var r=n(31635),o=n(96540),a=n(68645);let i=function(){var e=(0,r.zs)((0,o.useState)({}),2)[1];return(0,a.A)(function(){return e({})})}},65523(e,t,n){"use strict";n.d(t,{Tn:()=>r});var r=function(e){return"function"==typeof e}},40860(e,t,n){"use strict";n.d(t,{A:()=>r});let r=!1},58431(e,t,n){"use strict";n.d(t,{A:()=>c});var r=n(96540),o=n(1233),a=n(71021),i=n(39449);let l=e=>"function"==typeof(null==e?void 0:e.then),c=e=>{let{type:t,children:n,prefixCls:c,buttonProps:s,close:d,autoFocus:u,emitEvent:p,isSilent:f,quitOnNullishReturnValue:m,actionFn:g}=e,h=r.useRef(!1),b=r.useRef(null),[v,y]=(0,o.A)(!1),x=(...e)=>{null==d||d.apply(void 0,e)};return r.useEffect(()=>{let e=null;return u&&(e=setTimeout(()=>{var e;null==(e=b.current)||e.focus({preventScroll:!0})})),()=>{e&&clearTimeout(e)}},[u]),r.createElement(a.Ay,Object.assign({},(0,i.DU)(t),{onClick:e=>{let t;if(!h.current){var n;if(h.current=!0,!g)return void x();if(p){if(t=g(e),m&&!l(t)){h.current=!1,x(e);return}}else if(g.length)t=g(d),h.current=!1;else if(!l(t=g()))return void x();l(n=t)&&(y(!0),n.then((...e)=>{y(!1,!0),x.apply(void 0,e),h.current=!1},e=>{if(y(!1,!0),h.current=!1,null==f||!f())return Promise.reject(e)}))}},loading:v,prefixCls:c},s,{ref:b}),n)}},62897(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(96540),o=n(94241),a=n(47020);let i=e=>{let{space:t,form:n,children:i}=e;if(null==i)return null;let l=i;return n&&(l=r.createElement(o.XB,{override:!0,status:!0},l)),t&&(l=r.createElement(a.K6,null,l)),l}},53425(e,t,n){"use strict";n.d(t,{A:()=>c,U:()=>l});var r=n(96540),o=n(12533),a=n(4888),i=n(62279);function l(e){return t=>r.createElement(a.Ay,{theme:{token:{motion:!1,zIndexPopupBase:0}}},r.createElement(e,Object.assign({},t)))}let c=(e,t,n,a,c)=>l(l=>{let{prefixCls:s,style:d}=l,u=r.useRef(null),[p,f]=r.useState(0),[m,g]=r.useState(0),[h,b]=(0,o.A)(!1,{value:l.open}),{getPrefixCls:v}=r.useContext(i.QO),y=v(a||"select",s);r.useEffect(()=>{if(b(!0),"u">typeof ResizeObserver){let e=new ResizeObserver(e=>{let t=e[0].target;f(t.offsetHeight+8),g(t.offsetWidth)}),t=setInterval(()=>{var n;let r=c?`.${c(y)}`:`.${y}-dropdown`,o=null==(n=u.current)?void 0:n.querySelector(r);o&&(clearInterval(t),e.observe(o))},10);return()=>{clearInterval(t),e.disconnect()}}},[y]);let x=Object.assign(Object.assign({},l),{style:Object.assign(Object.assign({},d),{margin:0}),open:h,visible:h,getPopupContainer:()=>u.current});return n&&(x=n(x)),t&&Object.assign(x,{[t]:{overflow:{adjustX:!1,adjustY:!1}}}),r.createElement("div",{ref:u,style:{paddingBottom:p,position:"relative",minWidth:m}},r.createElement(e,Object.assign({},x)))})},54121(e,t,n){"use strict";n.d(t,{ZZ:()=>c,nP:()=>l});var r=n(83098),o=n(13950);let a=o.s.map(e=>`${e}-inverse`),i=["success","processing","error","default","warning"];function l(e,t=!0){return t?[].concat((0,r.A)(a),(0,r.A)(o.s)).includes(e):o.s.includes(e)}function c(e){return i.includes(e)}},51679(e,t,n){"use strict";n.d(t,{A:()=>r});let r=function(...e){let t={};return e.forEach(e=>{e&&Object.keys(e).forEach(n=>{void 0!==e[n]&&(t[n]=e[n])})}),t}},96311(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(96540),o=n(39159);let a=e=>{let t;return"object"==typeof e&&(null==e?void 0:e.clearIcon)?t=e:e&&(t={clearIcon:r.createElement(o.A,null)}),t}},27755(e,t,n){"use strict";n.d(t,{b:()=>r});let r=e=>e?"function"==typeof e?e():e:null},70064(e,t,n){"use strict";n.d(t,{$:()=>p,d:()=>s});var r=n(96540),o=n(5100),a=n(72065),i=n(19155),l=n(82071),c=n(51679);function s(e){if(!e)return;let{closable:t,closeIcon:n}=e;return{closable:t,closeIcon:n}}function d(e){let{closable:t,closeIcon:n}=e||{};return r.useMemo(()=>{if(!t&&(!1===t||!1===n||null===n))return!1;if(void 0===t&&void 0===n)return null;let e={closeIcon:"boolean"!=typeof n&&null!==n?n:void 0};return t&&"object"==typeof t&&(e=Object.assign(Object.assign({},e),t)),e},[t,n])}let u={},p=(e,t,n=u)=>{let s=d(e),p=d(t),[f]=(0,i.A)("global",l.A.global),m="boolean"!=typeof s&&!!(null==s?void 0:s.disabled),g=r.useMemo(()=>Object.assign({closeIcon:r.createElement(o.A,null)},n),[n]),h=r.useMemo(()=>!1!==s&&(s?(0,c.A)(g,p,s):!1!==p&&(p?(0,c.A)(g,p):!!g.closable&&g)),[s,p,g]);return r.useMemo(()=>{var e,t;if(!1===h)return[!1,null,m,{}];let{closeIconRender:n}=g,{closeIcon:o}=h,i=o,l=(0,a.A)(h,!0);return null!=i&&(n&&(i=n(o)),i=r.isValidElement(i)?r.cloneElement(i,Object.assign(Object.assign(Object.assign({},i.props),{"aria-label":null!=(t=null==(e=i.props)?void 0:e["aria-label"])?t:f.close}),l)):r.createElement("span",Object.assign({"aria-label":f.close},l),i)),[!0,i,m,l]},[m,f.close,h,g])}},47447(e,t,n){"use strict";n.d(t,{C:()=>o});var r=n(96540);let o=()=>r.useReducer(e=>e+1,0)},60275(e,t,n){"use strict";n.d(t,{YK:()=>s,jH:()=>i});var r=n(96540),o=n(93093),a=n(72616);let i=1e3,l={Modal:100,Drawer:100,Popover:100,Popconfirm:100,Tooltip:100,Tour:100,FloatButton:100},c={SelectLike:50,Dropdown:50,DatePicker:50,Menu:50,ImagePreview:1},s=(e,t)=>{let n,[,i]=(0,o.Ay)(),s=r.useContext(a.A),d=e in l;if(void 0!==t)n=[t,t];else{let r=null!=s?s:0;d?r+=(s?0:i.zIndexPopupBase)+l[e]:r+=c[e],n=[void 0===s?t:r,r]}return n}},64849(e,t,n){"use strict";n.d(t,{e:()=>r,p:()=>o});let r=(e,t)=>{void 0!==(null==e?void 0:e.addEventListener)?e.addEventListener("change",t):void 0!==(null==e?void 0:e.addListener)&&e.addListener(t)},o=(e,t)=>{void 0!==(null==e?void 0:e.removeEventListener)?e.removeEventListener("change",t):void 0!==(null==e?void 0:e.removeListener)&&e.removeListener(t)}},23723(e,t,n){"use strict";n.d(t,{A:()=>s,b:()=>c});var r=n(62279);let o=()=>({height:0,opacity:0}),a=e=>{let{scrollHeight:t}=e;return{height:t,opacity:1}},i=e=>({height:e?e.offsetHeight:0}),l=(e,t)=>(null==t?void 0:t.deadline)===!0||"height"===t.propertyName,c=(e,t,n)=>void 0!==n?n:`${e}-${t}`,s=(e=r.yH)=>({motionName:`${e}-motion-collapse`,onAppearStart:o,onEnterStart:o,onAppearActive:a,onEnterActive:a,onLeaveStart:i,onLeaveActive:o,onAppearEnd:l,onEnterEnd:l,onLeaveEnd:l,motionDeadline:500})},13257(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(95201);let o={left:{points:["cr","cl"]},right:{points:["cl","cr"]},top:{points:["bc","tc"]},bottom:{points:["tc","bc"]},topLeft:{points:["bl","tl"]},leftTop:{points:["tr","tl"]},topRight:{points:["br","tr"]},rightTop:{points:["tl","tr"]},bottomRight:{points:["tr","br"]},rightBottom:{points:["bl","br"]},bottomLeft:{points:["tl","bl"]},leftBottom:{points:["br","bl"]}},a={topLeft:{points:["bl","tc"]},leftTop:{points:["tr","cl"]},topRight:{points:["br","tc"]},rightTop:{points:["tl","cr"]},bottomRight:{points:["tr","bc"]},rightBottom:{points:["bl","cr"]},bottomLeft:{points:["tl","bc"]},leftBottom:{points:["br","cl"]}},i=new Set(["topLeft","topRight","bottomLeft","bottomRight","leftTop","leftBottom","rightTop","rightBottom"]);function l(e){let{arrowWidth:t,autoAdjustOverflow:n,arrowPointAtCenter:l,offset:c,borderRadius:s,visibleFirst:d}=e,u=t/2,p={},f=(0,r.Ke)({contentRadius:s,limitVerticalRadius:!0});return Object.keys(o).forEach(e=>{let r=Object.assign(Object.assign({},l&&a[e]||o[e]),{offset:[0,0],dynamicInset:!0});switch(p[e]=r,i.has(e)&&(r.autoArrow=!1),e){case"top":case"topLeft":case"topRight":r.offset[1]=-u-c;break;case"bottom":case"bottomLeft":case"bottomRight":r.offset[1]=u+c;break;case"left":case"leftTop":case"leftBottom":r.offset[0]=-u-c;break;case"right":case"rightTop":case"rightBottom":r.offset[0]=u+c}if(l)switch(e){case"topLeft":case"bottomLeft":r.offset[0]=-f.arrowOffsetHorizontal-u;break;case"topRight":case"bottomRight":r.offset[0]=f.arrowOffsetHorizontal+u;break;case"leftTop":case"rightTop":r.offset[1]=-(2*f.arrowOffsetHorizontal)+u;break;case"leftBottom":case"rightBottom":r.offset[1]=2*f.arrowOffsetHorizontal-u}r.overflow=function(e,t,n,r){if(!1===r)return{adjustX:!1,adjustY:!1};let o={};switch(e){case"top":case"bottom":o.shiftX=2*t.arrowOffsetHorizontal+n,o.shiftY=!0,o.adjustY=!0;break;case"left":case"right":o.shiftY=2*t.arrowOffsetVertical+n,o.shiftX=!0,o.adjustX=!0}let a=Object.assign(Object.assign({},o),r&&"object"==typeof r?r:{});return a.shiftX||(a.adjustX=!0),a.shiftY||(a.adjustY=!0),a}(e,f,t,n),d&&(r.htmlRegion="visibleFirst")}),p}},40682(e,t,n){"use strict";n.d(t,{Ob:()=>i,fx:()=>a,zv:()=>o});var r=n(96540);function o(e){return e&&r.isValidElement(e)&&e.type===r.Fragment}let a=(e,t,n)=>r.isValidElement(e)?r.cloneElement(e,"function"==typeof n?n(e.props||{}):n):t;function i(e,t){return a(e,e,t)}},24945(e,t,n){"use strict";n.d(t,{Ay:()=>c,ko:()=>l,ye:()=>i});var r=n(96540),o=n(93093),a=n(64849);let i=["xxl","xl","lg","md","sm","xs"],l=(e,t)=>{if(t){for(let n of i)if(e[n]&&(null==t?void 0:t[n])!==void 0)return t[n]}},c=()=>{let e,[,t]=(0,o.Ay)(),n=((e=[].concat(i).reverse()).forEach((n,r)=>{let o=n.toUpperCase(),a=`screen${o}Min`,i=`screen${o}`;if(!(t[a]<=t[i]))throw Error(`${a}<=${i} fails : !(${t[a]}<=${t[i]})`);if(r{let e=new Map,t=-1,r={};return{responsiveMap:n,matchHandlers:{},dispatch:t=>(r=t,e.forEach(e=>e(r)),e.size>=1),subscribe(n){return e.size||this.register(),t+=1,e.set(t,n),n(r),t},unsubscribe(t){e.delete(t),e.size||this.unregister()},register(){Object.entries(n).forEach(([e,t])=>{let n=({matches:t})=>{this.dispatch(Object.assign(Object.assign({},r),{[e]:t}))},o=window.matchMedia(t);(0,a.e)(o,n),this.matchHandlers[t]={mql:o,listener:n},n(o)})},unregister(){Object.values(n).forEach(e=>{let t=this.matchHandlers[e];(0,a.p)(null==t?void 0:t.mql,null==t?void 0:t.listener)}),e.clear()}}},[n])}},58182(e,t,n){"use strict";n.d(t,{L:()=>a,v:()=>i});var r=n(46942),o=n.n(r);function a(e,t,n){return o()({[`${e}-status-success`]:"success"===t,[`${e}-status-warning`]:"warning"===t,[`${e}-status-error`]:"error"===t,[`${e}-status-validating`]:"validating"===t,[`${e}-has-feedback`]:n})}let i=(e,t)=>t||e},18877(e,t,n){"use strict";n.d(t,{_n:()=>a,rJ:()=>i});var r=n(96540);function o(){}n(68210);let a=r.createContext({}),i=()=>{let e=()=>{};return e.deprecated=o,e}},54556(e,t,n){"use strict";n.d(t,{A:()=>x});var r=n(96540),o=n(46942),a=n.n(o),i=n(42467),l=n(8719),c=n(62279),s=n(40682);let d=(0,n(37358).Or)("Wave",e=>{let{componentCls:t,colorPrimary:n}=e;return{[t]:{position:"absolute",background:"transparent",pointerEvents:"none",boxSizing:"border-box",color:`var(--wave-color, ${n})`,boxShadow:"0 0 0 0 currentcolor",opacity:.2,"&.wave-motion-appear":{transition:`box-shadow 0.4s ${e.motionEaseOutCirc},opacity 2s ${e.motionEaseOutCirc}`,"&-active":{boxShadow:"0 0 0 6px currentcolor",opacity:0},"&.wave-quick":{transition:`box-shadow ${e.motionDurationSlow} ${e.motionEaseInOut},opacity ${e.motionDurationSlow} ${e.motionEaseInOut}`}}}}});var u=n(26956),p=n(25371),f=n(93093),m=n(4424),g=n(52193),h=n(71919);function b(e){return e&&"#fff"!==e&&"#ffffff"!==e&&"rgb(255, 255, 255)"!==e&&"rgba(255, 255, 255, 1)"!==e&&!/rgba\((?:\d*, ){3}0\)/.test(e)&&"transparent"!==e&&"canvastext"!==e}function v(e){return Number.isNaN(e)?0:e}let y=e=>{let{className:t,target:n,component:o,registerUnmount:i}=e,c=r.useRef(null),s=r.useRef(null);r.useEffect(()=>{s.current=i()},[]);let[d,u]=r.useState(null),[f,h]=r.useState([]),[y,x]=r.useState(0),[$,A]=r.useState(0),[w,S]=r.useState(0),[C,O]=r.useState(0),[k,j]=r.useState(!1),E={left:y,top:$,width:w,height:C,borderRadius:f.map(e=>`${e}px`).join(" ")};function P(){let e=getComputedStyle(n);u(function(e){var t;let{borderTopColor:n,borderColor:r,backgroundColor:o}=getComputedStyle(e);return null!=(t=[n,r,o].find(b))?t:null}(n));let t="static"===e.position,{borderLeftWidth:r,borderTopWidth:o}=e;x(t?n.offsetLeft:v(-Number.parseFloat(r))),A(t?n.offsetTop:v(-Number.parseFloat(o))),S(n.offsetWidth),O(n.offsetHeight);let{borderTopLeftRadius:a,borderTopRightRadius:i,borderBottomLeftRadius:l,borderBottomRightRadius:c}=e;h([a,i,c,l].map(e=>v(Number.parseFloat(e))))}if(d&&(E["--wave-color"]=d),r.useEffect(()=>{if(n){let e,t=(0,p.A)(()=>{P(),j(!0)});return"u">typeof ResizeObserver&&(e=new ResizeObserver(P)).observe(n),()=>{p.A.cancel(t),null==e||e.disconnect()}}},[n]),!k)return null;let z=("Checkbox"===o||"Radio"===o)&&(null==n?void 0:n.classList.contains(m.D));return r.createElement(g.Ay,{visible:!0,motionAppear:!0,motionName:"wave-motion",motionDeadline:5e3,onAppearEnd:(e,t)=>{var n,r;if(t.deadline||"opacity"===t.propertyName){let e=null==(n=c.current)?void 0:n.parentElement;null==(r=s.current)||r.call(s).then(()=>{null==e||e.remove()})}return!1}},({className:e},n)=>r.createElement("div",{ref:(0,l.K4)(c,n),className:a()(t,e,{"wave-quick":z}),style:E}))},x=e=>{let{children:t,disabled:n,component:o}=e,{getPrefixCls:g}=(0,r.useContext)(c.QO),b=(0,r.useRef)(null),v=g("wave"),[,x]=d(v),$=((e,t,n)=>{let{wave:o}=r.useContext(c.QO),[,a,i]=(0,f.Ay)(),l=(0,u.A)(l=>{let c=e.current;if((null==o?void 0:o.disabled)||!c)return;let s=c.querySelector(`.${m.D}`)||c,{showEffect:d}=o||{};(d||((e,t)=>{var n;let{component:o}=t;if("Checkbox"===o&&!(null==(n=e.querySelector("input"))?void 0:n.checked))return;let a=document.createElement("div");a.style.position="absolute",a.style.left="0px",a.style.top="0px",null==e||e.insertBefore(a,null==e?void 0:e.firstChild);let i=(0,h.L)(),l=null;l=i(r.createElement(y,Object.assign({},t,{target:e,registerUnmount:function(){return l}})),a)}))(s,{className:t,token:a,component:n,event:l,hashId:i})}),s=r.useRef(null);return e=>{p.A.cancel(s.current),s.current=(0,p.A)(()=>{l(e)})}})(b,a()(v,x),o);if(r.useEffect(()=>{let e=b.current;if(!e||e.nodeType!==window.Node.ELEMENT_NODE||n)return;let t=t=>{!(0,i.A)(t.target)||!e.getAttribute||e.getAttribute("disabled")||e.disabled||e.className.includes("disabled")&&!e.className.includes("disabled:")||"true"===e.getAttribute("aria-disabled")||e.className.includes("-leave")||$(t)};return e.addEventListener("click",t,!0),()=>{e.removeEventListener("click",t,!0)}},[n]),!r.isValidElement(t))return null!=t?t:null;let A=(0,l.f3)(t)?(0,l.K4)((0,l.A9)(t),b):b;return(0,s.Ob)(t,{ref:A})}},4424(e,t,n){"use strict";n.d(t,{D:()=>o});var r=n(62279);let o=`${r.yH}-wave-target`},72616(e,t,n){"use strict";n.d(t,{A:()=>r});let r=n(96540).createContext(void 0)},41240(e,t,n){"use strict";n.d(t,{A:()=>a,B:()=>o});var r=n(96540);let o=r.createContext({}),a=r.createContext({message:{},notification:{},modal:{}})},26122(e,t,n){"use strict";n.d(t,{A:()=>F});var r=n(96540),o=n(46942),a=n.n(o),i=n(18877),l=n(62279),c=n(89585),s=n(8109),d=n(17241),u=n(20934),p=n(93093),f=n(46420),m=n(39159),g=n(5100),h=n(51399),b=n(15874),v=n(66514);function y(e,t){return null===t||!1===t?null:t||r.createElement(g.A,{className:`${e}-close-icon`})}b.A,f.A,m.A,h.A,v.A;let x={success:f.A,info:b.A,error:m.A,warning:h.A},$=e=>{let{prefixCls:t,icon:n,type:o,message:i,description:l,actions:c,role:s="alert"}=e,d=null;return n?d=r.createElement("span",{className:`${t}-icon`},n):o&&(d=r.createElement(x[o]||null,{className:a()(`${t}-icon`,`${t}-icon-${o}`)})),r.createElement("div",{className:a()({[`${t}-with-icon`]:d}),role:s},d,r.createElement("div",{className:`${t}-message`},i),l&&r.createElement("div",{className:`${t}-description`},l),c&&r.createElement("div",{className:`${t}-actions`},c))};var A=n(48670),w=n(60275),S=n(25905),C=n(10224),O=n(37358);let k=["top","topLeft","topRight","bottom","bottomLeft","bottomRight"],j={topLeft:"left",topRight:"right",bottomLeft:"left",bottomRight:"right",top:"left",bottom:"left"},E=(0,O.OF)("Notification",e=>{let t,n,r=(t=e.paddingMD,n=e.paddingLG,(0,C.oX)(e,{notificationBg:e.colorBgElevated,notificationPaddingVertical:t,notificationPaddingHorizontal:n,notificationIconSize:e.calc(e.fontSizeLG).mul(e.lineHeightLG).equal(),notificationCloseButtonSize:e.calc(e.controlHeightLG).mul(.55).equal(),notificationMarginBottom:e.margin,notificationPadding:`${(0,A.zA)(e.paddingMD)} ${(0,A.zA)(e.paddingContentHorizontalLG)}`,notificationMarginEdge:e.marginLG,animationMaxHeight:150,notificationStackLayer:3,notificationProgressHeight:2,notificationProgressBg:`linear-gradient(90deg, ${e.colorPrimaryBorderHover}, ${e.colorPrimary})`}));return[(e=>{let{componentCls:t,notificationMarginBottom:n,notificationMarginEdge:r,motionDurationMid:o,motionEaseInOut:a}=e,i=`${t}-notice`,l=new A.Mo("antNotificationFadeOut",{"0%":{maxHeight:e.animationMaxHeight,marginBottom:n},"100%":{maxHeight:0,marginBottom:0,paddingTop:0,paddingBottom:0,opacity:0}});return[{[t]:Object.assign(Object.assign({},(0,S.dF)(e)),{position:"fixed",zIndex:e.zIndexPopup,marginRight:{value:r,_skip_check_:!0},[`${t}-hook-holder`]:{position:"relative"},[`${t}-fade-appear-prepare`]:{opacity:"0 !important"},[`${t}-fade-enter, ${t}-fade-appear`]:{animationDuration:e.motionDurationMid,animationTimingFunction:a,animationFillMode:"both",opacity:0,animationPlayState:"paused"},[`${t}-fade-leave`]:{animationTimingFunction:a,animationFillMode:"both",animationDuration:o,animationPlayState:"paused"},[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationPlayState:"running"},[`${t}-fade-leave${t}-fade-leave-active`]:{animationName:l,animationPlayState:"running"},"&-rtl":{direction:"rtl",[`${i}-actions`]:{float:"left"}}})},{[t]:{[`${i}-wrapper`]:(e=>{let{iconCls:t,componentCls:n,boxShadow:r,fontSizeLG:o,notificationMarginBottom:a,borderRadiusLG:i,colorSuccess:l,colorInfo:c,colorWarning:s,colorError:d,colorTextHeading:u,notificationBg:p,notificationPadding:f,notificationMarginEdge:m,notificationProgressBg:g,notificationProgressHeight:h,fontSize:b,lineHeight:v,width:y,notificationIconSize:x,colorText:$,colorSuccessBg:w,colorErrorBg:C,colorInfoBg:O,colorWarningBg:k}=e,j=`${n}-notice`;return{position:"relative",marginBottom:a,marginInlineStart:"auto",background:p,borderRadius:i,boxShadow:r,[j]:{padding:f,width:y,maxWidth:`calc(100vw - ${(0,A.zA)(e.calc(m).mul(2).equal())})`,lineHeight:v,wordWrap:"break-word",borderRadius:i,overflow:"hidden","&-success":w?{background:w}:{},"&-error":C?{background:C}:{},"&-info":O?{background:O}:{},"&-warning":k?{background:k}:{}},[`${j}-message`]:{color:u,fontSize:o,lineHeight:e.lineHeightLG},[`${j}-description`]:{fontSize:b,color:$,marginTop:e.marginXS},[`${j}-closable ${j}-message`]:{paddingInlineEnd:e.paddingLG},[`${j}-with-icon ${j}-message`]:{marginInlineStart:e.calc(e.marginSM).add(x).equal(),fontSize:o},[`${j}-with-icon ${j}-description`]:{marginInlineStart:e.calc(e.marginSM).add(x).equal(),fontSize:b},[`${j}-icon`]:{position:"absolute",fontSize:x,lineHeight:1,[`&-success${t}`]:{color:l},[`&-info${t}`]:{color:c},[`&-warning${t}`]:{color:s},[`&-error${t}`]:{color:d}},[`${j}-close`]:Object.assign({position:"absolute",top:e.notificationPaddingVertical,insetInlineEnd:e.notificationPaddingHorizontal,color:e.colorIcon,outline:"none",width:e.notificationCloseButtonSize,height:e.notificationCloseButtonSize,borderRadius:e.borderRadiusSM,transition:`background-color ${e.motionDurationMid}, color ${e.motionDurationMid}`,display:"flex",alignItems:"center",justifyContent:"center",background:"none",border:"none","&:hover":{color:e.colorIconHover,backgroundColor:e.colorBgTextHover},"&:active":{backgroundColor:e.colorBgTextActive}},(0,S.K8)(e)),[`${j}-progress`]:{position:"absolute",display:"block",appearance:"none",inlineSize:`calc(100% - ${(0,A.zA)(i)} * 2)`,left:{_skip_check_:!0,value:i},right:{_skip_check_:!0,value:i},bottom:0,blockSize:h,border:0,"&, &::-webkit-progress-bar":{borderRadius:i,backgroundColor:"rgba(0, 0, 0, 0.04)"},"&::-moz-progress-bar":{background:g},"&::-webkit-progress-value":{borderRadius:i,background:g}},[`${j}-actions`]:{float:"right",marginTop:e.marginSM}}})(e)}}]})(r),(e=>{let{componentCls:t,notificationMarginEdge:n,animationMaxHeight:r}=e,o=`${t}-notice`,a=new A.Mo("antNotificationFadeIn",{"0%":{transform:"translate3d(100%, 0, 0)",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",opacity:1}});return{[t]:{[`&${t}-top, &${t}-bottom`]:{marginInline:0,[o]:{marginInline:"auto auto"}},[`&${t}-top`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:new A.Mo("antNotificationTopFadeIn",{"0%":{top:-r,opacity:0},"100%":{top:0,opacity:1}})}},[`&${t}-bottom`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:new A.Mo("antNotificationBottomFadeIn",{"0%":{bottom:e.calc(r).mul(-1).equal(),opacity:0},"100%":{bottom:0,opacity:1}})}},[`&${t}-topRight, &${t}-bottomRight`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:a}},[`&${t}-topLeft, &${t}-bottomLeft`]:{marginRight:{value:0,_skip_check_:!0},marginLeft:{value:n,_skip_check_:!0},[o]:{marginInlineEnd:"auto",marginInlineStart:0},[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:new A.Mo("antNotificationLeftFadeIn",{"0%":{transform:"translate3d(-100%, 0, 0)",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",opacity:1}})}}}}})(r),(e=>{let{componentCls:t}=e;return Object.assign({[`${t}-stack`]:{[`& > ${t}-notice-wrapper`]:Object.assign({transition:`transform ${e.motionDurationSlow}, backdrop-filter 0s`,willChange:"transform, opacity",position:"absolute"},(e=>{let t={};for(let n=1;n ${e.componentCls}-notice`]:{opacity:0,transition:`opacity ${e.motionDurationMid}`}};return Object.assign({[`&:not(:nth-last-child(-n+${e.notificationStackLayer}))`]:{opacity:0,overflow:"hidden",color:"transparent",pointerEvents:"none"}},t)})(e))},[`${t}-stack:not(${t}-stack-expanded)`]:{[`& > ${t}-notice-wrapper`]:Object.assign({},(e=>{let t={};for(let n=1;n ${t}-notice-wrapper`]:{"&:not(:nth-last-child(-n + 1))":{opacity:1,overflow:"unset",color:"inherit",pointerEvents:"auto",[`& > ${e.componentCls}-notice`]:{opacity:1}},"&:after":{content:'""',position:"absolute",height:e.margin,width:"100%",insetInline:0,bottom:e.calc(e.margin).mul(-1).equal(),background:"transparent",pointerEvents:"auto"}}}},k.map(t=>((e,t)=>{let{componentCls:n}=e;return{[`${n}-${t}`]:{[`&${n}-stack > ${n}-notice-wrapper`]:{[t.startsWith("top")?"top":"bottom"]:0,[j[t]]:{value:0,_skip_check_:!0}}}}})(e,t)).reduce((e,t)=>Object.assign(Object.assign({},e),t),{}))})(r)]},e=>({zIndexPopup:e.zIndexPopupBase+w.jH+50,width:384,colorSuccessBg:void 0,colorErrorBg:void 0,colorInfoBg:void 0,colorWarningBg:void 0}));var P=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let z=({children:e,prefixCls:t})=>{let n=(0,u.A)(t),[o,i,l]=E(t,n);return o(r.createElement(d.ph,{classNames:{list:a()(i,l,n)}},e))},I=(e,{prefixCls:t,key:n})=>r.createElement(z,{prefixCls:t,key:n},e),M=r.forwardRef((e,t)=>{let{top:n,bottom:o,prefixCls:i,getContainer:c,maxCount:s,rtl:u,onAllRemoved:f,stack:m,duration:g,pauseOnHover:h=!0,showProgress:b}=e,{getPrefixCls:v,getPopupContainer:x,notification:$,direction:A}=(0,r.useContext)(l.QO),[,w]=(0,p.Ay)(),S=i||v("notification"),[C,O]=(0,d.hN)({prefixCls:S,style:e=>(function(e,t,n){let r;switch(e){case"top":r={left:"50%",transform:"translateX(-50%)",right:"auto",top:t,bottom:"auto"};break;case"topLeft":r={left:0,top:t,bottom:"auto"};break;case"topRight":r={right:0,top:t,bottom:"auto"};break;case"bottom":r={left:"50%",transform:"translateX(-50%)",right:"auto",top:"auto",bottom:n};break;case"bottomLeft":r={left:0,top:"auto",bottom:n};break;default:r={right:0,top:"auto",bottom:n}}return r})(e,null!=n?n:24,null!=o?o:24),className:()=>a()({[`${S}-rtl`]:null!=u?u:"rtl"===A}),motion:()=>({motionName:`${S}-fade`}),closable:!0,closeIcon:y(S),duration:null!=g?g:4.5,getContainer:()=>(null==c?void 0:c())||(null==x?void 0:x())||document.body,maxCount:s,pauseOnHover:h,showProgress:b,onAllRemoved:f,renderNotifications:I,stack:!1!==m&&{threshold:"object"==typeof m?null==m?void 0:m.threshold:void 0,offset:8,gap:w.margin}});return r.useImperativeHandle(t,()=>Object.assign(Object.assign({},C),{prefixCls:S,notification:$})),O});var R=n(41240);let B=(0,O.OF)("App",e=>{let{componentCls:t,colorText:n,fontSize:r,lineHeight:o,fontFamily:a}=e;return{[t]:{color:n,fontSize:r,lineHeight:o,fontFamily:a,[`&${t}-rtl`]:{direction:"rtl"}}}},()=>({})),T=e=>{var t;let n,{prefixCls:o,children:d,className:u,rootClassName:p,message:f,notification:m,style:g,component:h="div"}=e,{direction:b,getPrefixCls:v}=(0,r.useContext)(l.QO),x=v("app",o),[A,w,S]=B(x),C=a()(w,x,u,p,S,{[`${x}-rtl`]:"rtl"===b}),O=(0,r.useContext)(R.B),k=r.useMemo(()=>({message:Object.assign(Object.assign({},O.message),f),notification:Object.assign(Object.assign({},O.notification),m)}),[f,m,O.message,O.notification]),[j,E]=(0,c.A)(k.message),[z,I]=(t=k.notification,n=r.useRef(null),(0,i.rJ)("Notification"),[r.useMemo(()=>{let e=e=>{var o;if(!n.current)return;let{open:i,prefixCls:l,notification:c}=n.current,s=`${l}-notice`,{message:d,description:u,icon:p,type:f,btn:m,actions:g,className:h,style:b,role:v="alert",closeIcon:x,closable:A}=e,w=P(e,["message","description","icon","type","btn","actions","className","style","role","closeIcon","closable"]),S=y(s,void 0!==x?x:void 0!==(null==t?void 0:t.closeIcon)?t.closeIcon:null==c?void 0:c.closeIcon);return i(Object.assign(Object.assign({placement:null!=(o=null==t?void 0:t.placement)?o:"topRight"},w),{content:r.createElement($,{prefixCls:s,icon:p,type:f,message:d,description:u,actions:null!=g?g:m,role:v}),className:a()(f&&`${s}-${f}`,h,null==c?void 0:c.className),style:Object.assign(Object.assign({},null==c?void 0:c.style),b),closeIcon:S,closable:null!=A?A:!!S}))},o={open:e,destroy:e=>{var t,r;void 0!==e?null==(t=n.current)||t.close(e):null==(r=n.current)||r.destroy()}};return["success","info","warning","error"].forEach(t=>{o[t]=n=>e(Object.assign(Object.assign({},n),{type:t}))}),o},[]),r.createElement(M,Object.assign({key:"notification-holder"},t,{ref:n}))]),[T,F]=(0,s.A)(),N=r.useMemo(()=>({message:j,notification:z,modal:T}),[j,z,T]);(0,i.rJ)("App")(!(S&&!1===h),"usage","When using cssVar, ensure `component` is assigned a valid React component string.");let H=!1===h?r.Fragment:h;return A(r.createElement(R.A.Provider,{value:N},r.createElement(R.B.Provider,{value:k},r.createElement(H,Object.assign({},!1===h?void 0:{className:C,style:g}),F,E,I,d))))};T.useApp=()=>r.useContext(R.A);let F=T},68101(e,t,n){"use strict";n.d(t,{A:()=>C});var r=n(96540),o=n(46942),a=n.n(o),i=n(6807),l=n(8719),c=n(24945),s=n(62279),d=n(20934),u=n(829),p=n(78551);let f=r.createContext({});var m=n(48670),g=n(25905),h=n(37358),b=n(10224);let v=(0,h.OF)("Avatar",e=>{let{colorTextLightSolid:t,colorTextPlaceholder:n}=e,r=(0,b.oX)(e,{avatarBg:n,avatarColor:t});return[(e=>{let{antCls:t,componentCls:n,iconCls:r,avatarBg:o,avatarColor:a,containerSize:i,containerSizeLG:l,containerSizeSM:c,textFontSize:s,textFontSizeLG:d,textFontSizeSM:u,iconFontSize:p,iconFontSizeLG:f,iconFontSizeSM:h,borderRadius:b,borderRadiusLG:v,borderRadiusSM:y,lineWidth:x,lineType:$}=e,A=(e,t,o,a)=>({width:e,height:e,borderRadius:"50%",fontSize:t,[`&${n}-square`]:{borderRadius:a},[`&${n}-icon`]:{fontSize:o,[`> ${r}`]:{margin:0}}});return{[n]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,g.dF)(e)),{position:"relative",display:"inline-flex",justifyContent:"center",alignItems:"center",overflow:"hidden",color:a,whiteSpace:"nowrap",textAlign:"center",verticalAlign:"middle",background:o,border:`${(0,m.zA)(x)} ${$} transparent`,"&-image":{background:"transparent"},[`${t}-image-img`]:{display:"block"}}),A(i,s,p,b)),{"&-lg":Object.assign({},A(l,d,f,v)),"&-sm":Object.assign({},A(c,u,h,y)),"> img":{display:"block",width:"100%",height:"100%",objectFit:"cover"}})}})(r),(e=>{let{componentCls:t,groupBorderColor:n,groupOverlapping:r,groupSpace:o}=e;return{[`${t}-group`]:{display:"inline-flex",[t]:{borderColor:n},"> *:not(:first-child)":{marginInlineStart:r}},[`${t}-group-popover`]:{[`${t} + ${t}`]:{marginInlineStart:o}}}})(r)]},e=>{let{controlHeight:t,controlHeightLG:n,controlHeightSM:r,fontSize:o,fontSizeLG:a,fontSizeXL:i,fontSizeHeading3:l,marginXS:c,marginXXS:s,colorBorderBg:d}=e;return{containerSize:t,containerSizeLG:n,containerSizeSM:r,textFontSize:o,textFontSizeLG:o,textFontSizeSM:o,iconFontSize:Math.round((a+i)/2),iconFontSizeLG:l,iconFontSizeSM:o,groupSpace:s,groupOverlapping:-c,groupBorderColor:d}});var y=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let x=r.forwardRef((e,t)=>{let n,{prefixCls:o,shape:m,size:g,src:h,srcSet:b,icon:x,className:$,rootClassName:A,style:w,alt:S,draggable:C,children:O,crossOrigin:k,gap:j=4,onError:E}=e,P=y(e,["prefixCls","shape","size","src","srcSet","icon","className","rootClassName","style","alt","draggable","children","crossOrigin","gap","onError"]),[z,I]=r.useState(1),[M,R]=r.useState(!1),[B,T]=r.useState(!0),F=r.useRef(null),N=r.useRef(null),H=(0,l.K4)(t,F),{getPrefixCls:L,avatar:D}=r.useContext(s.QO),_=r.useContext(f),W=()=>{if(!N.current||!F.current)return;let e=N.current.offsetWidth,t=F.current.offsetWidth;0!==e&&0!==t&&2*j{R(!0)},[]),r.useEffect(()=>{T(!0),I(1)},[h]),r.useEffect(W,[j]);let q=(0,u.A)(e=>{var t,n;return null!=(n=null!=(t=null!=g?g:null==_?void 0:_.size)?t:e)?n:"default"}),V=Object.keys("object"==typeof q&&q||{}).some(e=>["xs","sm","md","lg","xl","xxl"].includes(e)),X=(0,p.A)(V),U=r.useMemo(()=>{if("object"!=typeof q)return{};let e=q[c.ye.find(e=>X[e])];return e?{width:e,height:e,fontSize:e&&(x||O)?e/2:18}:{}},[X,q,x,O]),Y=L("avatar",o),G=(0,d.A)(Y),[K,Q,J]=v(Y,G),Z=a()({[`${Y}-lg`]:"large"===q,[`${Y}-sm`]:"small"===q}),ee=r.isValidElement(h),et=m||(null==_?void 0:_.shape)||"circle",en=a()(Y,Z,null==D?void 0:D.className,`${Y}-${et}`,{[`${Y}-image`]:ee||h&&B,[`${Y}-icon`]:!!x},J,G,$,A,Q),er="number"==typeof q?{width:q,height:q,fontSize:x?q/2:18}:{};if("string"==typeof h&&B)n=r.createElement("img",{src:h,draggable:C,srcSet:b,onError:()=>{!1!==(null==E?void 0:E())&&T(!1)},alt:S,crossOrigin:k});else if(ee)n=h;else if(x)n=x;else if(M||1!==z){let e=`scale(${z})`;n=r.createElement(i.A,{onResize:W},r.createElement("span",{className:`${Y}-string`,ref:N,style:{msTransform:e,WebkitTransform:e,transform:e}},O))}else n=r.createElement("span",{className:`${Y}-string`,style:{opacity:0},ref:N},O);return K(r.createElement("span",Object.assign({},P,{style:Object.assign(Object.assign(Object.assign(Object.assign({},er),U),null==D?void 0:D.style),w),className:en,ref:H}),n))});var $=n(82546),A=n(40682),w=n(28073);let S=e=>{let{size:t,shape:n}=r.useContext(f),o=r.useMemo(()=>({size:e.size||t,shape:e.shape||n}),[e.size,e.shape,t,n]);return r.createElement(f.Provider,{value:o},e.children)};x.Group=e=>{var t,n,o,i;let{getPrefixCls:l,direction:c}=r.useContext(s.QO),{prefixCls:u,className:p,rootClassName:f,style:m,maxCount:g,maxStyle:h,size:b,shape:y,maxPopoverPlacement:C,maxPopoverTrigger:O,children:k,max:j}=e,E=l("avatar",u),P=`${E}-group`,z=(0,d.A)(E),[I,M,R]=v(E,z),B=a()(P,{[`${P}-rtl`]:"rtl"===c},R,z,p,f,M),T=(0,$.A)(k).map((e,t)=>(0,A.Ob)(e,{key:`avatar-key-${t}`})),F=(null==j?void 0:j.count)||g,N=T.length;if(F&&Fk});var r=n(96540),o=n(46942),a=n.n(o),i=n(82546),l=n(72065),c=n(40682),s=n(62279),d=n(98459),u=n(98439);let p=({children:e})=>{let{getPrefixCls:t}=r.useContext(s.QO),n=t("breadcrumb");return r.createElement("li",{className:`${n}-separator`,"aria-hidden":"true"},""===e?e:e||"/")};p.__ANT_BREADCRUMB_SEPARATOR=!0;var f=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function m(e,t,n,o){if(null==n)return null;let{className:i,onClick:c}=t,s=f(t,["className","onClick"]),d=Object.assign(Object.assign({},(0,l.A)(s,{data:!0,aria:!0})),{onClick:c});return void 0!==o?r.createElement("a",Object.assign({},d,{className:a()(`${e}-link`,i),href:o}),n):r.createElement("span",Object.assign({},d,{className:a()(`${e}-link`,i)}),n)}var g=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let h=e=>{let{prefixCls:t,separator:n="/",children:o,menu:a,overlay:i,dropdownProps:l,href:c}=e,s=(e=>{if(a||i){let n=Object.assign({},l);if(a){let e=a||{},{items:t}=e;n.menu=Object.assign(Object.assign({},g(e,["items"])),{items:null==t?void 0:t.map((e,t)=>{var{key:n,title:o,label:a,path:i}=e,l=g(e,["key","title","label","path"]);let s=null!=a?a:o;return i&&(s=r.createElement("a",{href:`${c}${i}`},s)),Object.assign(Object.assign({},l),{key:null!=n?n:t,label:s})})})}else i&&(n.overlay=i);return r.createElement(u.A,Object.assign({placement:"bottom"},n),r.createElement("span",{className:`${t}-overlay-link`},e,r.createElement(d.A,null)))}return e})(o);return null!=s?r.createElement(r.Fragment,null,r.createElement("li",{className:`${t}-item`},s),n&&r.createElement(p,null,n)):null},b=e=>{let{prefixCls:t,children:n,href:o}=e,a=g(e,["prefixCls","children","href"]),{getPrefixCls:i}=r.useContext(s.QO),l=i("breadcrumb",t);return r.createElement(h,Object.assign({},a,{prefixCls:l}),m(l,a,n,o))};b.__ANT_BREADCRUMB_ITEM=!0;var v=n(48670),y=n(25905),x=n(37358),$=n(10224);let A=(0,x.OF)("Breadcrumb",e=>(e=>{let{componentCls:t,iconCls:n,calc:r}=e;return{[t]:Object.assign(Object.assign({},(0,y.dF)(e)),{color:e.itemColor,fontSize:e.fontSize,[n]:{fontSize:e.iconFontSize},ol:{display:"flex",flexWrap:"wrap",margin:0,padding:0,listStyle:"none"},[`${t}-item a`]:Object.assign({color:e.linkColor,transition:`color ${e.motionDurationMid}`,padding:`0 ${(0,v.zA)(e.paddingXXS)}`,borderRadius:e.borderRadiusSM,height:e.fontHeight,display:"inline-block",marginInline:r(e.marginXXS).mul(-1).equal(),"&:hover":{color:e.linkHoverColor,backgroundColor:e.colorBgTextHover}},(0,y.K8)(e)),[`${t}-item:last-child`]:{color:e.lastItemColor},[`${t}-separator`]:{marginInline:e.separatorMargin,color:e.separatorColor},[`${t}-link`]:{[` +C: 不是有效赋值指令 -> ${e}`)}if("function"==typeof e)return{type:y,value:e};throw $(`参数无效, 不是string或function -> ${e}`)}let w=e=>e.map(e=>e.trim()).filter(Boolean);function S(e,t){let n=t.map(e=>e.replace(/[{}]/g,""));return Object.fromEntries(Object.entries(e).filter(([e])=>!n.includes(e)))}function C(e=null,t=null,n=null){return function(e){let t,{done:n,state:r}="function"==typeof e.res?{done:()=>{},state:{}}:function(e){if(!e)return{done:()=>({}),state:{}};let t={},n=[];return w(e.split("&")).forEach(r=>{let[o,a]=w(r.split(":"));if(!a)throw $(`表达式错误 '${o}' 缺少默认值 -> ${e}`);let[i,l]=w(a.split(/\s\|\s/));if(!l)throw $(`表达式错误 '${o}' 缺少被赋值字段 -> ${e}`);t[o]=Function(`return ${i}`)(),n.push(`${o}: ${l}`)}),{done:Function(`return function($){const res=$||{};return{${n.join(",")}}}`)(),state:t}}(e.res);return{state:{...(t=e.state)?{[t]:!1}:{},...r},effect:()=>[e.state,"function"==typeof e.req?e.req:function(e){if(!e||!e.includes(">"))throw $(`表达式错误, 缺少箭头 -> ${e}`);let[t]=w(e.split(">"));if(!x.includes(t))throw $(`表达式错误, ${t}不是有效Send类型 -> ${e}`);return (n={})=>{let r=function(e,t){let[,n]=w(t.split(/^(Post|Put|Patch|Delete|Get)\s*>\s*/));if(n.includes("{")&&n.includes("}")){let t,r=n.match(/{([^{}]+)}/g);return r?{url:(t=n,r.forEach(n=>{let r=n.replace(/[{}]/g,"");t=t.replace(n,encodeURIComponent(e[r]||"__noSetValue"))}),t),data:S(e,r)}:{url:n,data:e}}if(n.includes(">")){let t=w(n.split(">")),r=t.slice(1);return{url:t[0]+"/"+r.map(t=>e[t]||"__noSetValue").join("/"),data:S(e,r)}}return{url:n,data:e}}(n,e);return c.http[t](r.url,r.data)}}(e.req),"function"==typeof e.res?e.res:n]}}(function(e,t,n){let r=Array.from(arguments).filter(Boolean);if(r.length>3)throw $(`输入参数长度无效,最大3个 -> 当前长度 ${r.length}`);let o=null,a=null,i=null,l=r.map(A);if(3===r.length)if(l[0].type===v&&(l[1].type===h||l[1].type===y)&&(l[2].type===b||l[2].type===y))[i,o,a]=l.map(e=>e.value);else throw $(`配置错误! args: ${e}, ${t}, ${n}`);if(2===r.length)if(l[0].type===v&&(l[1].type===h||l[1].type===y))[i,o]=[l[0].value,l[1].value];else if((l[0].type===h||l[0].type===y)&&(l[1].type===b||l[1].type===y))[o,a]=[l[0].value,l[1].value];else throw $(`配置错误! args: ${e}, ${t}`);if(1===r.length)if(l[0].type===h||l[0].type===y)o=l[0].value;else throw $(`配置错误! 参数 '<${e}>' 应该是http-request配置.`);return{req:o,res:a,state:i,parameter:{a:e,b:t,c:n}}}(...arguments))}let O=(e={})=>{let t=e.selector||"#root";try{let e=(0,s.Ay)({history:function(e){void 0===e&&(e={});var t=e.window,n=void 0===t?document.defaultView:t,r=n.history;function a(){var e=n.location,t=e.pathname,o=e.search,a=e.hash,i=r.state||{};return[i.idx,p({pathname:t,search:o,hash:a,state:i.usr||null,key:i.key||"default"})]}var i=null;n.addEventListener("popstate",function(){if(i)b.call(i),i=null;else{var e=o.Pop,t=a(),n=t[0],r=t[1];if(b.length){if(null!=n){var l=s-n;l&&(i={action:e,location:r,retry:function(){w(-1*l)}},w(l))}}else A(e)}});var l=o.Pop,c=a(),s=c[0],d=c[1],h=g(),b=g();function v(e){var t,n,r,o,a,i,l;return"string"==typeof e?e:(n=(t=e).pathname,r=void 0===n?"/":n,o=t.search,a=void 0===o?"":o,i=t.hash,l=void 0===i?"":i,a&&"?"!==a&&(r+="?"===a.charAt(0)?a:"?"+a),l&&"#"!==l&&(r+="#"===l.charAt(0)?l:"#"+l),r)}function y(e,t){return void 0===t&&(t=null),p((0,u.A)({pathname:d.pathname,hash:"",search:""},"string"==typeof e?function(e){var t={};if(e){var n=e.indexOf("#");n>=0&&(t.hash=e.substr(n),e=e.substr(0,n));var r=e.indexOf("?");r>=0&&(t.search=e.substr(r),e=e.substr(0,r)),e&&(t.pathname=e)}return t}(e):e,{state:t,key:Math.random().toString(36).substr(2,8)}))}function x(e,t){return[{usr:e.state,key:e.key,idx:t},v(e)]}function $(e,t,n){return!b.length||(b.call({action:e,location:t,retry:n}),!1)}function A(e){l=e;var t=a();s=t[0],d=t[1],h.call({action:l,location:d})}function w(e){r.go(e)}return null==s&&(s=0,r.replaceState((0,u.A)({},r.state,{idx:s}),"")),{get action(){return l},get location(){return d},createHref:v,push:function e(t,a){var i=o.Push,l=y(t,a);if($(i,l,function(){e(t,a)})){var c=x(l,s+1),d=c[0],u=c[1];try{r.pushState(d,"",u)}catch(e){n.location.assign(u)}A(i)}},replace:function e(t,n){var a=o.Replace,i=y(t,n);if($(a,i,function(){e(t,n)})){var l=x(i,s),c=l[0],d=l[1];r.replaceState(c,"",d),A(a)}},go:w,back:function(){w(-1)},forward:function(){w(1)},listen:function(e){return h.push(e)},block:function(e){var t=b.push(e);return 1===b.length&&n.addEventListener(f,m),function(){t(),b.length||n.removeEventListener(f,m)}}}}()}),r=function e(t){return Object.values(t).reduce((t,n)=>Object.keys(n).length&&c.tools.isUndefined(n.name)&&c.tools.isUndefined(n.paths)&&c.tools.isUndefined(n.isIntegrated)?t.concat(e(n)):t.concat(n),[])}(n(88648));n(65044).keys().forEach(t=>{let o=t.replace(/^\.\//,"").replace(/\/index\.(js|ts)$/,""),a=n(63271)(`./${t.replace(/^\.\//,"")}`),{state:i,effects:l}=Object.entries(a).reduce((e,[t,n])=>(e.effects[t]=n.effect,Object.assign(e.state,n.state),e),{state:{},effects:{}});try{let t=r.find(e=>e.paths===o);if(!t)throw Error();e.model(j({name:t.name},{state:i,effects:l}))}catch{console.error(`注册数据层失败,原因:无法匹配路径‘${o}’`)}}),e.router(e=>n(38105).P(e));let a=()=>e.start(t);return window.__POWERED_BY_QIANKUN__||a(),{mount:a,unmount:({container:e})=>{let n=e?e.querySelector(t):document.querySelector(t);d.unmountComponentAtNode(n)},bootstrap:e=>e}}catch(e){console.error("启动App失败!请修复下列错误重试 ->",e)}};function k(){return(k=Object.assign?Object.assign.bind():function(e){for(var t=1;t{t[n]=function*(t,r){let[o,a,i]=e[n](t),c=(0,l.isString)(o)&&o?o:`UNSET_LOADING_ACTION_${n}`;yield r.put({type:"updateState",payload:{[c]:!0}});let s=yield r.call((...e)=>a(...e).catch(()=>{}),t.payload);if(yield r.put({type:"updateState",payload:{[c]:!1}}),(0,l.isFunction)(i))try{yield r.put({type:"updateState",payload:i(s)})}catch(e){console.error(n,e)}return s}}),t}(n),reducers:{...r,updateState:(e={},{payload:t})=>({...e,...t})},namespace:P(e),subscriptions:o}}function E(e,t=!1){try{let n=e.split("/"),r=t?n.map((e,t)=>t?e.replace(/\b(\w)|\s(\w)/g,e=>e.toUpperCase()):e).join(""):n[n.length-1],o=Object.create(null);return o.name=r,o.paths=n.join("/"),o.isIntegrated=t,o[Symbol("_KEY_")]=Symbol(Math.random()),o}catch{throw Error("dva.namespace invalid.")}}function P(e){if(e&&"object"==typeof e)return e.name;throw Error("dva.namespace invalid name.")}function z(e,t=!1){return function(n){class r extends a.Component{render(){let r={},o={};e.forEach(e=>{if(!this.props[e.name])throw Error(`Connect[${e.name}] parsing failed. Please check named path.`);(this.props[e.name].__EFFECTS_KEY__||[]).forEach(t=>{let n=`${e.name}/${t}`;o[t]=n,r[n]=n,r[`${e.name}/updateState`]=`${e.name}/updateState`})});let i={};return t&&Object.keys(o).forEach(e=>{i[e]=t=>this.props.dispatch({type:o[e],payload:t})}),a.createElement(n,k({ref:this.props.forwardedRef,models:e,getModelState:(e,t)=>{try{return this.props[P(e)][t]}catch(e){return}},resetModelState:(e,t={})=>{this.props.dispatch({type:`${P(e)}/updateState`,payload:c.tools.toObject(t)})},dispatchModelAction:(e,t,n={})=>this.props.dispatch({type:`${P(e)}/${t}`,payload:c.tools.toObject(n)})},this.props,r,t?i:{}))}}let o=(0,i.Ng)(function(e){if(!(0,l.isArray)(e))throw Error("connect(...args) must be an array.");let t=e.map(P);try{return Function(`return (({ ${t.join(", ")} }) => ({ ${t.join(", ")} }))`)()}catch{throw Error("connect() automatic programming reorganization failed.")}}(e))(r);return(0,a.forwardRef)((e,t)=>a.createElement(o,k({},e,{forwardedRef:t})))}}},51038(e,t,n){"use strict";n.d(t,{A:()=>h});var r=n(96540),o=n(95725),a=n(36492),i=n(60209),l=n(74271),c=n(55165);function s(){return(s=Object.assign?Object.assign.bind():function(e){for(var t=1;t{a&&a(""===e?void 0:e,...t)}}))}}let u=d(o.A),p=d(a.A,{maxTagCount:3}),f=d(i.A,{maxTagCount:3}),m=d(l.A,{showSearch:!0,allowClear:!0,showCheckedStrategy:l.A.SHOW_PARENT,treeNodeFilterProp:"title"}),g=d(c.A);g.RangePicker=d(c.A.RangePicker),g.TimePicker=d(c.A.TimePicker),g.WeekPicker=d(c.A.WeekPicker),g.MonthPicker=d(c.A.MonthPicker),g.QuarterPicker=d(c.A.QuarterPicker),g.YearPicker=d(c.A.YearPicker);let h={Input:u,Select:p,Cascader:f,TreeSelect:m,DatePicker:g}},21023(e,t,n){"use strict";n.d(t,{A:()=>E});var r=n(96540),o=n(64467),a=n(57046),i=n(89379),l=n(83690),c=n.n(l),s=n(58717),d=n.n(s),u=n(70888),p=n(68101),f=n(73133),m=n(4888),g=n(46942),h=n.n(g),b=n(6807),v=n(68210),y=n(9424),x=function(){return{overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"}},$=function(e){var t;return(0,o.A)({},e.componentCls,(0,i.A)((0,i.A)({},null===y.dF||void 0===y.dF?void 0:(0,y.dF)(e)),{},(0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)({position:"relative",backgroundColor:e.colorWhite,paddingBlock:e.pageHeaderPaddingVertical+2,paddingInline:e.pageHeaderPadding,"&&-ghost":{backgroundColor:e.pageHeaderBgGhost},"&-no-children":{height:null==(t=e.layout)||null==(t=t.pageContainer)?void 0:t.paddingBlockPageContainerContent},"&&-has-breadcrumb":{paddingBlockStart:e.pageHeaderPaddingBreadCrumb},"&&-has-footer":{paddingBlockEnd:0},"& &-back":(0,o.A)({marginInlineEnd:e.margin,fontSize:16,lineHeight:1,"&-button":(0,i.A)((0,i.A)({fontSize:16},null===y.Y1||void 0===y.Y1?void 0:(0,y.Y1)(e)),{},{color:e.pageHeaderColorBack,cursor:"pointer"})},"".concat(e.componentCls,"-rlt &"),{float:"right",marginInlineEnd:0,marginInlineStart:0})},"& ".concat("ant","-divider-vertical"),{height:14,marginBlock:0,marginInline:e.marginSM,verticalAlign:"middle"}),"& &-breadcrumb + &-heading",{marginBlockStart:e.marginXS}),"& &-heading",{display:"flex",justifyContent:"space-between","&-left":{display:"flex",alignItems:"center",marginBlock:e.marginXS/2,marginInlineEnd:0,marginInlineStart:0,overflow:"hidden"},"&-title":(0,i.A)((0,i.A)({marginInlineEnd:e.marginSM,marginBlockEnd:0,color:e.colorTextHeading,fontWeight:600,fontSize:e.pageHeaderFontSizeHeaderTitle,lineHeight:e.controlHeight+"px"},x()),{},(0,o.A)({},"".concat(e.componentCls,"-rlt &"),{marginInlineEnd:0,marginInlineStart:e.marginSM})),"&-avatar":(0,o.A)({marginInlineEnd:e.marginSM},"".concat(e.componentCls,"-rlt &"),{float:"right",marginInlineEnd:0,marginInlineStart:e.marginSM}),"&-tags":(0,o.A)({},"".concat(e.componentCls,"-rlt &"),{float:"right"}),"&-sub-title":(0,i.A)((0,i.A)({marginInlineEnd:e.marginSM,color:e.colorTextSecondary,fontSize:e.pageHeaderFontSizeHeaderSubTitle,lineHeight:e.lineHeight},x()),{},(0,o.A)({},"".concat(e.componentCls,"-rlt &"),{float:"right",marginInlineEnd:0,marginInlineStart:12})),"&-extra":(0,o.A)((0,o.A)({marginBlock:e.marginXS/2,marginInlineEnd:0,marginInlineStart:0,whiteSpace:"nowrap","> *":(0,o.A)({"white-space":"unset"},"".concat(e.componentCls,"-rlt &"),{marginInlineEnd:e.marginSM,marginInlineStart:0})},"".concat(e.componentCls,"-rlt &"),{float:"left"}),"*:first-child",(0,o.A)({},"".concat(e.componentCls,"-rlt &"),{marginInlineEnd:0}))}),"&-content",{paddingBlockStart:e.pageHeaderPaddingContentPadding}),"&-footer",{marginBlockStart:e.margin}),"&-compact &-heading",{flexWrap:"wrap"}),"&-wide",{maxWidth:1152,margin:"0 auto"}),"&-rtl",{direction:"rtl"})))},A=n(74848),w=function(e,t){var n;return null!=(n=e.items)&&n.length?(0,A.jsx)(u.A,(0,i.A)((0,i.A)({},e),{},{className:h()("".concat(t,"-breadcrumb"),e.className)})):null},S=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"ltr";return void 0!==e.backIcon?e.backIcon:"rtl"===t?(0,A.jsx)(d(),{}):(0,A.jsx)(c(),{})},C=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"ltr",r=arguments.length>3?arguments[3]:void 0,o=t.title,a=t.avatar,l=t.subTitle,c=t.tags,s=t.extra,d=t.onBack,u="".concat(e,"-heading"),m=o||l||c||s;if(!m)return null;var g=S(t,n),b=g&&d?(0,A.jsx)("div",{className:"".concat(e,"-back ").concat(r).trim(),children:(0,A.jsx)("div",{role:"button",onClick:function(e){null==d||d(e)},className:"".concat(e,"-back-button ").concat(r).trim(),"aria-label":"back",children:g})}):null,v=b||a||m;return(0,A.jsxs)("div",{className:u+" "+r,children:[v&&(0,A.jsxs)("div",{className:"".concat(u,"-left ").concat(r).trim(),children:[b,a&&(0,A.jsx)(p.A,(0,i.A)({className:h()("".concat(u,"-avatar"),r,a.className)},a)),o&&(0,A.jsx)("span",{className:"".concat(u,"-title ").concat(r).trim(),title:"string"==typeof o?o:void 0,children:o}),l&&(0,A.jsx)("span",{className:"".concat(u,"-sub-title ").concat(r).trim(),title:"string"==typeof l?l:void 0,children:l}),c&&(0,A.jsx)("span",{className:"".concat(u,"-tags ").concat(r).trim(),children:c})]}),s&&(0,A.jsx)("span",{className:"".concat(u,"-extra ").concat(r).trim(),children:(0,A.jsx)(f.A,{children:s})})]})},O=function(e){var t,n=r.useState(!1),l=(0,a.A)(n,2),c=l[0],s=l[1],d=r.useContext(m.Ay.ConfigContext),u=d.getPrefixCls,p=d.direction,f=e.prefixCls,g=e.style,x=e.footer,S=e.children,O=e.breadcrumb,k=e.breadcrumbRender,j=e.className,E=e.contentWidth,P=e.layout,z=e.ghost,I=u("page-header",f),M=(0,y.X3)("ProLayoutPageHeader",function(e){return[$((0,i.A)((0,i.A)({},e),{},{componentCls:".".concat(I),pageHeaderBgGhost:"transparent",pageHeaderPadding:16,pageHeaderPaddingVertical:4,pageHeaderPaddingBreadCrumb:e.paddingSM,pageHeaderColorBack:e.colorTextHeading,pageHeaderFontSizeHeaderTitle:e.fontSizeHeading4,pageHeaderFontSizeHeaderSubTitle:14,pageHeaderPaddingContentPadding:e.paddingSM}))]}),R=M.wrapSSR,B=M.hashId,T=(O&&!(null!=O&&O.items)&&null!=O&&O.routes&&((0,v.g9)(!1,"The routes of Breadcrumb is deprecated, please use items instead."),O.items=function e(t){return null==t?void 0:t.map(function(t){var n;return(0,v.g9)(!!t.breadcrumbName,"Route.breadcrumbName is deprecated, please use Route.title instead."),(0,i.A)((0,i.A)({},t),{},{breadcrumbName:void 0,children:void 0,title:t.title||t.breadcrumbName},null!=(n=t.children)&&n.length?{menu:{items:e(t.children)}}:{})})}(O.routes)),null!=O&&O.items)?w(O,I):null,F=O&&"props"in O,N=null!=(t=null==k?void 0:k((0,i.A)((0,i.A)({},e),{},{prefixCls:I}),T))?t:T,H=F?O:N,L=h()(I,B,j,(0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)((0,o.A)({},"".concat(I,"-has-breadcrumb"),!!H),"".concat(I,"-has-footer"),!!x),"".concat(I,"-rtl"),"rtl"===p),"".concat(I,"-compact"),c),"".concat(I,"-wide"),"Fixed"===E&&"top"==P),"".concat(I,"-ghost"),void 0===z||z)),D=C(I,e,p,B),_=S&&(0,A.jsx)("div",{className:"".concat(I,"-content ").concat(B).trim(),children:S}),W=x?(0,A.jsx)("div",{className:"".concat(I,"-footer ").concat(B).trim(),children:x}):null;return H||D||W||_?R((0,A.jsx)(b.A,{onResize:function(e){return s(e.width<768)},children:(0,A.jsxs)("div",{className:L,style:g,children:[H,D,_,W]})})):(0,A.jsx)("div",{className:h()(B,["".concat(I,"-no-children")])})};let{toObject:k}=n(57006).tools,j=window.process?.env?.app?.antd["ant-prefix"]||"ant",E=(0,r.memo)(e=>{let{title:t,extra:n,style:o={},header:a,footer:i,history:l={},noStyle:c,formLine:s,formLineStyle:d,noBorder:u=!1,previous:p=!1,children:f,transparent:m,contentStyle:g,footerStyle:h,pageHeaderStyle:b,onBack:v,"data-node-id":y}=e,x=[`${j}-layout-container`,m&&`${j}-layout-container-transparent`,c&&`${j}-layout-container-no-style`].filter(Boolean).join(" "),$=(0,r.useCallback)(()=>{v?v():p&&l.go(-1)},[v,p,l]);return r.createElement("div",{style:u?{border:"none",...o}:o,className:x,"data-node-id":y},a||r.createElement(O,{title:t,extra:n,style:b,onBack:p||v?$:void 0}),s&&r.createElement("div",{className:`${j}-layout-container-tools`,style:d},s),r.createElement("div",{style:g,className:`${j}-layout-container-content`},r.createElement("div",{className:`${j}-layout-container-content-abs`},f)),i&&r.createElement("div",{className:`${j}-lay-container-bottom`,style:h},i))})},44500(e,t,n){"use strict";n.d(t,{A:()=>h});var r=n(96540),o=n(26380),a=n(73133),i=n(71021),l=n(47152),c=n(16370),s=n(4811),d=n(58168);let u={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M511.4 124C290.5 124.3 112 303 112 523.9c0 128 60.2 242 153.8 315.2l-37.5 48c-4.1 5.3-.3 13 6.3 12.9l167-.8c5.2 0 9-4.9 7.7-9.9L369.8 727a8 8 0 00-14.1-3L315 776.1c-10.2-8-20-16.7-29.3-26a318.64 318.64 0 01-68.6-101.7C200.4 609 192 567.1 192 523.9s8.4-85.1 25.1-124.5c16.1-38.1 39.2-72.3 68.6-101.7 29.4-29.4 63.6-52.5 101.7-68.6C426.9 212.4 468.8 204 512 204s85.1 8.4 124.5 25.1c38.1 16.1 72.3 39.2 101.7 68.6 29.4 29.4 52.5 63.6 68.6 101.7 16.7 39.4 25.1 81.3 25.1 124.5s-8.4 85.1-25.1 124.5a318.64 318.64 0 01-68.6 101.7c-7.5 7.5-15.3 14.5-23.4 21.2a7.93 7.93 0 00-1.2 11.1l39.4 50.5c2.8 3.5 7.9 4.1 11.4 1.3C854.5 760.8 912 649.1 912 523.9c0-221.1-179.4-400.2-400.6-399.9z"}}]},name:"undo",theme:"outlined"};var p=n(67928),f=r.forwardRef(function(e,t){return r.createElement(p.A,(0,d.A)({},e,{ref:t,icon:u}))}),m=n(37864);function g(){return(g=Object.assign?Object.assign.bind():function(e){for(var t=1;t{},onReset:v=()=>{},onFinish:y=()=>{},onExpand:x,openFormItemStyle:$=!1})=>{let A,[w]=o.A.useForm(),S=(0,r.useRef)(w),C=e&&"current"in e;(0,r.useEffect)(()=>{C&&console.warn("[SearchForm] 警告:通过 ref 传入 form 的方式已废弃,将在后续版本中移除。请使用 Form.useForm() 创建 form 实例并直接传入,例如:\n const [form] = Form.useForm();\n ")},[C]);let O=e&&C?e:S;(0,r.useEffect)(()=>{!C&&e&&(S.current=e)},[e,C]);let[k,j]=(0,r.useState)(d);(0,r.useEffect)(()=>{b&&b(O)},[O,b]);let E=void 0!==n,P=E?n:k,z=(A=($?p:p.map(e=>r.isValidElement(e)&&e.type===o.A.Item&&!e.props.noStyle?r.cloneElement(e,{noStyle:!0}):e)).map(e=>({show:!0,node:e})),P||A.length<=2?A:A.map((e,t)=>t>1?{...e,show:!1}:e));return 0===z.length?null:r.createElement(o.A,g({},e&&C?{ref:e}:{form:e||w},{style:t,initialValues:h,onFinish:e=>y(e)}),r.createElement(l.A,{gutter:[16,16]},z.map((e,t)=>r.createElement(c.A,{key:t,span:8,style:{display:e.show?"block":"none"}},e.node)),r.createElement(c.A,{span:8,style:{display:"flex",alignItems:"flex-start"}},r.createElement(o.A.Item,{noStyle:!0,style:{marginBottom:0}},r.createElement(a.A,null,r.createElement(i.Ay,{type:"primary",icon:r.createElement(s.A,null),htmlType:"submit",loading:u},"查询"),r.createElement(i.Ay,{icon:r.createElement(f,null),loading:u,onClick:()=>{let t=e?C?e.current:e:w;t.resetFields(),v(t.getFieldsValue())}},"重置"),p.length>2&&r.createElement(i.Ay,{icon:r.createElement(m.A,{style:{transform:P?"rotate(-90deg)":"rotate(90deg)"}}),onClick:()=>{E?x&&x(!n):j(e=>{let t=!e;return x&&x(t),t})}},P?"收起":"展开"))))))}},83454(e,t,n){"use strict";n.d(t,{A:()=>u});var r=n(96540),o=n(57006),a=n(58168);let i={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M456 231a56 56 0 10112 0 56 56 0 10-112 0zm0 280a56 56 0 10112 0 56 56 0 10-112 0zm0 280a56 56 0 10112 0 56 56 0 10-112 0z"}}]},name:"more",theme:"outlined"};var l=n(67928),c=r.forwardRef(function(e,t){return r.createElement(l.A,(0,a.A)({},e,{ref:t,icon:i}))}),s=n(73133),d=n(76511);function u({maximum:e=3,children:t,space:n,icon:a=c,placement:i="bottomRight",trigger:l=["hover"]}){let p=(o.tools.isArray(t)?t:[].concat(t)).filter(Boolean),f=p.slice(0,e),m=p.slice(e);return r.createElement(s.A,{size:n},f,m.length>0&&r.createElement(d.A,{menu:{items:m.map((e,t)=>({key:t,label:e}))},placement:i,trigger:l},r.createElement("a",null,r.createElement(a,null))))}},83650(e,t,n){"use strict";n.d(t,{A:()=>W});var r,o=n(31635),a=n(96540),i=n(68645);let l=(r=a.useEffect,function(e,t){var n=(0,a.useRef)(!1);r(function(){return function(){n.current=!1}},[]),r(function(){if(n.current)return e();n.current=!0},t)});var c=function(e,t){var n=t.manual,r=t.ready,i=void 0===r||r,c=t.defaultParams,s=void 0===c?[]:c,d=t.refreshDeps,u=t.refreshDepsAction,p=(0,a.useRef)(!1);return p.current=!1,l(function(){!n&&i&&(p.current=!0,e.run.apply(e,(0,o.fX)([],(0,o.zs)(s),!1)))},[i]),l(function(){!p.current&&(n||(p.current=!0,u?u():e.refresh()))},(0,o.fX)([],(0,o.zs)(void 0===d?[]:d),!1)),{onBefore:function(){if(!i)return{stopNow:!0}}}};c.onInit=function(e){var t=e.ready;return{loading:!e.manual&&(void 0===t||t)}};let s=function(e,t){if(e===t)return!0;for(var n=0;n-1&&(a=setTimeout(function(){g.delete(e)},t)),g.set(e,(0,o.Cl)((0,o.Cl)({},n),{timer:a}))},b=new Map,v=function(e,t){b.set(e,t),t.then(function(t){return b.delete(e),t}).catch(function(){b.delete(e)})},y={},x=function(e,t){y[e]&&y[e].forEach(function(e){return e(t)})},$=function(e,t){return y[e]||(y[e]=[]),y[e].push(t),function(){var n=y[e].indexOf(t);y[e].splice(n,1)}};let A=function(e,t){var n=t.cacheKey,r=t.cacheTime,i=void 0===r?3e5:r,l=t.staleTime,c=void 0===l?0:l,s=t.setCache,u=t.getCache,p=(0,a.useRef)(void 0),f=(0,a.useRef)(void 0),y=function(e,t){s?s(t):h(e,i,t),x(e,t.data)},A=function(e,t){return(void 0===t&&(t=[]),u)?u(t):g.get(e)};return(d(function(){if(n){var t=A(n);t&&Object.hasOwnProperty.call(t,"data")&&(e.state.data=t.data,e.state.params=t.params,(-1===c||Date.now()-t.time<=c)&&(e.state.loading=!1)),p.current=$(n,function(t){e.setState({data:t})})}},[]),m(function(){var e;null==(e=p.current)||e.call(p)}),n)?{onBefore:function(e){var t=A(n,e);return t&&Object.hasOwnProperty.call(t,"data")?-1===c||Date.now()-t.time<=c?{loading:!1,data:null==t?void 0:t.data,error:void 0,returnNow:!0}:{data:null==t?void 0:t.data,error:void 0}:{}},onRequest:function(e,t){var r=b.get(n);return r&&r!==f.current||(f.current=r=e.apply(void 0,(0,o.fX)([],(0,o.zs)(t),!1)),v(n,r)),{servicePromise:r}},onSuccess:function(t,r){var o;n&&(null==(o=p.current)||o.call(p),y(n,{data:t,params:r,time:Date.now()}),p.current=$(n,function(t){e.setState({data:t})}))},onMutate:function(t){var r;n&&(null==(r=p.current)||r.call(p),y(n,{data:t,params:e.state.params,time:Date.now()}),p.current=$(n,function(t){e.setState({data:t})}))}}:{}};var w=n(38221),S=n.n(w);let C=function(e,t){var n=t.debounceWait,r=t.debounceLeading,i=t.debounceTrailing,l=t.debounceMaxWait,c=(0,a.useRef)(void 0),s=(0,a.useMemo)(function(){var e={};return void 0!==r&&(e.leading=r),void 0!==i&&(e.trailing=i),void 0!==l&&(e.maxWait=l),e},[r,i,l]);return((0,a.useEffect)(function(){if(n){var t=e.runAsync.bind(e);return c.current=S()(function(e){e()},n,s),e.runAsync=function(){for(var e=[],n=0;ntypeof window&&window.document&&window.document.createElement);function j(){return!k||"hidden"!==document.visibilityState}var E=new Set;k&&window.addEventListener("visibilitychange",function(){j()&&E.forEach(function(e){return e()})},!1);let P=function(e,t){var n=t.pollingInterval,r=t.pollingWhenHidden,o=void 0===r||r,i=t.pollingErrorRetryCount,c=void 0===i?-1:i,s=(0,a.useRef)(void 0),d=(0,a.useRef)(void 0),u=(0,a.useRef)(0),p=function(){var e;s.current&&clearTimeout(s.current),null==(e=d.current)||e.call(d)};return(l(function(){n||p()},[n]),n)?{onBefore:function(){p()},onError:function(){u.current+=1},onSuccess:function(){u.current=0},onFinally:function(){-1===c||-1!==c&&u.current<=c?s.current=setTimeout(function(){if(o||j())e.refresh();else{var t;t=function(){e.refresh()},E.add(t),d.current=function(){E.has(t)&&E.delete(t)}}},n):u.current=0},onCancel:function(){p()}}:{}};var z=new Set;if(k){var I=function(){j()&&(!k||void 0===navigator.onLine||navigator.onLine)&&z.forEach(function(e){return e()})};window.addEventListener("visibilitychange",I,!1),window.addEventListener("focus",I,!1)}let M=function(e,t){var n=t.refreshOnWindowFocus,r=t.focusTimespan,i=void 0===r?5e3:r,l=(0,a.useRef)(void 0),c=function(){var e;null==(e=l.current)||e.call(l)};return(0,a.useEffect)(function(){if(n){var t,r,a,s=(t=e.refresh.bind(e),r=!1,function(){for(var e=[],n=0;na&&(n=Math.max(1,a));var i=(0,o.zs)(u.params||[]),l=i[0],c=i.slice(1);u.run.apply(u,(0,o.fX)([],(0,o.zs)((0,o.fX)([(0,o.Cl)((0,o.Cl)({},void 0===l?{}:l),{current:n,pageSize:r})],(0,o.zs)(c),!1)),!1))},x=function(e){y(e,h)};return(0,o.Cl)((0,o.Cl)({},u),{pagination:{current:m,pageSize:h,total:b,totalPage:v,onChange:(0,i.A)(y),changeCurrent:(0,i.A)(x),changePageSize:(0,i.A)(function(e){y(m,e)})}})},W=function(e,t){void 0===t&&(t={});var n,r=t.form,c=t.defaultType,s=t.defaultParams,d=t.manual,u=void 0!==d&&d,p=t.refreshDeps,f=t.ready,m=void 0===f||f,g=(0,o.Tt)(t,["form","defaultType","defaultParams","manual","refreshDeps","ready"]),h=_(e,(0,o.Cl)((0,o.Cl)({ready:m,manual:!0},g),{onSuccess:function(){for(var e,t=[],n=0;n0){S.current=(null==x?void 0:x.allFormData)||{},P(),y.apply(void 0,(0,o.fX)([],(0,o.zs)(v),!1));return}m&&(S.current=(null==s?void 0:s[1])||{},P(),u||z(null==s?void 0:s[0]))},[]),l(function(){m&&P()},[A]);var I=(0,a.useRef)(!1);return I.current=!1,l(function(){!u&&m&&(I.current=!0,r&&r.resetFields(),S.current=(null==s?void 0:s[1])||{},P(),z(null==s?void 0:s[0]))},[m]),l(function(){I.current||m&&(u||(I.current=!0,t.refreshDepsAction?t.refreshDepsAction():h.pagination.changeCurrent(1)))},(0,o.fX)([],(0,o.zs)(void 0===p?[]:p),!1)),(0,o.Cl)((0,o.Cl)({},h),{tableProps:{dataSource:(null==(n=h.data)?void 0:n.list)||C.current,loading:h.loading,onChange:(0,i.A)(function(e,t,n,r){var a=(0,o.zs)(v||[]),i=a[0],l=a.slice(1);y.apply(void 0,(0,o.fX)([(0,o.Cl)((0,o.Cl)({},i),{current:e.current,pageSize:e.pageSize,filters:t,sorter:n,extra:r})],(0,o.zs)(l),!1))}),pagination:{current:h.pagination.current,pageSize:h.pagination.pageSize,total:h.pagination.total}},search:{submit:(0,i.A)(function(e){var n,r,a;null==(n=null==e?void 0:e.preventDefault)||n.call(e),z(O.current?void 0:(0,o.Cl)({pageSize:t.defaultPageSize||(null==(a=null==(r=t.defaultParams)?void 0:r[0])?void 0:a.pageSize)||10,current:1},(null==s?void 0:s[0])||{}))}),type:A,changeType:(0,i.A)(function(){var e=j();S.current=(0,o.Cl)((0,o.Cl)({},S.current),e),w(function(e){return"simple"===e?"advance":"simple"})}),reset:(0,i.A)(function(){var e,n;r&&r.resetFields(),z((0,o.Cl)((0,o.Cl)({},(null==s?void 0:s[0])||{}),{pageSize:t.defaultPageSize||(null==(n=null==(e=t.defaultParams)?void 0:e[0])?void 0:n.pageSize)||10,current:1}))})}})}},68645(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(96540),o=n(65523),a=n(40860);let i=function(e){a.A&&!(0,o.Tn)(e)&&console.error("useMemoizedFn expected parameter is a function, got ".concat(typeof e));var t=(0,r.useRef)(e);t.current=(0,r.useMemo)(function(){return e},[e]);var n=(0,r.useRef)(void 0);return n.current||(n.current=function(){for(var e=[],n=0;ni});var r=n(31635),o=n(96540),a=n(68645);let i=function(){var e=(0,r.zs)((0,o.useState)({}),2)[1];return(0,a.A)(function(){return e({})})}},65523(e,t,n){"use strict";n.d(t,{Tn:()=>r});var r=function(e){return"function"==typeof e}},40860(e,t,n){"use strict";n.d(t,{A:()=>r});let r=!1},58431(e,t,n){"use strict";n.d(t,{A:()=>c});var r=n(96540),o=n(1233),a=n(71021),i=n(39449);let l=e=>"function"==typeof(null==e?void 0:e.then),c=e=>{let{type:t,children:n,prefixCls:c,buttonProps:s,close:d,autoFocus:u,emitEvent:p,isSilent:f,quitOnNullishReturnValue:m,actionFn:g}=e,h=r.useRef(!1),b=r.useRef(null),[v,y]=(0,o.A)(!1),x=(...e)=>{null==d||d.apply(void 0,e)};return r.useEffect(()=>{let e=null;return u&&(e=setTimeout(()=>{var e;null==(e=b.current)||e.focus({preventScroll:!0})})),()=>{e&&clearTimeout(e)}},[u]),r.createElement(a.Ay,Object.assign({},(0,i.DU)(t),{onClick:e=>{let t;if(!h.current){var n;if(h.current=!0,!g)return void x();if(p){if(t=g(e),m&&!l(t)){h.current=!1,x(e);return}}else if(g.length)t=g(d),h.current=!1;else if(!l(t=g()))return void x();l(n=t)&&(y(!0),n.then((...e)=>{y(!1,!0),x.apply(void 0,e),h.current=!1},e=>{if(y(!1,!0),h.current=!1,null==f||!f())return Promise.reject(e)}))}},loading:v,prefixCls:c},s,{ref:b}),n)}},62897(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(96540),o=n(94241),a=n(47020);let i=e=>{let{space:t,form:n,children:i}=e;if(null==i)return null;let l=i;return n&&(l=r.createElement(o.XB,{override:!0,status:!0},l)),t&&(l=r.createElement(a.K6,null,l)),l}},53425(e,t,n){"use strict";n.d(t,{A:()=>c,U:()=>l});var r=n(96540),o=n(12533),a=n(4888),i=n(62279);function l(e){return t=>r.createElement(a.Ay,{theme:{token:{motion:!1,zIndexPopupBase:0}}},r.createElement(e,Object.assign({},t)))}let c=(e,t,n,a,c)=>l(l=>{let{prefixCls:s,style:d}=l,u=r.useRef(null),[p,f]=r.useState(0),[m,g]=r.useState(0),[h,b]=(0,o.A)(!1,{value:l.open}),{getPrefixCls:v}=r.useContext(i.QO),y=v(a||"select",s);r.useEffect(()=>{if(b(!0),"u">typeof ResizeObserver){let e=new ResizeObserver(e=>{let t=e[0].target;f(t.offsetHeight+8),g(t.offsetWidth)}),t=setInterval(()=>{var n;let r=c?`.${c(y)}`:`.${y}-dropdown`,o=null==(n=u.current)?void 0:n.querySelector(r);o&&(clearInterval(t),e.observe(o))},10);return()=>{clearInterval(t),e.disconnect()}}},[y]);let x=Object.assign(Object.assign({},l),{style:Object.assign(Object.assign({},d),{margin:0}),open:h,visible:h,getPopupContainer:()=>u.current});return n&&(x=n(x)),t&&Object.assign(x,{[t]:{overflow:{adjustX:!1,adjustY:!1}}}),r.createElement("div",{ref:u,style:{paddingBottom:p,position:"relative",minWidth:m}},r.createElement(e,Object.assign({},x)))})},54121(e,t,n){"use strict";n.d(t,{ZZ:()=>c,nP:()=>l});var r=n(83098),o=n(13950);let a=o.s.map(e=>`${e}-inverse`),i=["success","processing","error","default","warning"];function l(e,t=!0){return t?[].concat((0,r.A)(a),(0,r.A)(o.s)).includes(e):o.s.includes(e)}function c(e){return i.includes(e)}},51679(e,t,n){"use strict";n.d(t,{A:()=>r});let r=function(...e){let t={};return e.forEach(e=>{e&&Object.keys(e).forEach(n=>{void 0!==e[n]&&(t[n]=e[n])})}),t}},96311(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(96540),o=n(39159);let a=e=>{let t;return"object"==typeof e&&(null==e?void 0:e.clearIcon)?t=e:e&&(t={clearIcon:r.createElement(o.A,null)}),t}},27755(e,t,n){"use strict";n.d(t,{b:()=>r});let r=e=>e?"function"==typeof e?e():e:null},70064(e,t,n){"use strict";n.d(t,{$:()=>p,d:()=>s});var r=n(96540),o=n(5100),a=n(72065),i=n(19155),l=n(82071),c=n(51679);function s(e){if(!e)return;let{closable:t,closeIcon:n}=e;return{closable:t,closeIcon:n}}function d(e){let{closable:t,closeIcon:n}=e||{};return r.useMemo(()=>{if(!t&&(!1===t||!1===n||null===n))return!1;if(void 0===t&&void 0===n)return null;let e={closeIcon:"boolean"!=typeof n&&null!==n?n:void 0};return t&&"object"==typeof t&&(e=Object.assign(Object.assign({},e),t)),e},[t,n])}let u={},p=(e,t,n=u)=>{let s=d(e),p=d(t),[f]=(0,i.A)("global",l.A.global),m="boolean"!=typeof s&&!!(null==s?void 0:s.disabled),g=r.useMemo(()=>Object.assign({closeIcon:r.createElement(o.A,null)},n),[n]),h=r.useMemo(()=>!1!==s&&(s?(0,c.A)(g,p,s):!1!==p&&(p?(0,c.A)(g,p):!!g.closable&&g)),[s,p,g]);return r.useMemo(()=>{var e,t;if(!1===h)return[!1,null,m,{}];let{closeIconRender:n}=g,{closeIcon:o}=h,i=o,l=(0,a.A)(h,!0);return null!=i&&(n&&(i=n(o)),i=r.isValidElement(i)?r.cloneElement(i,Object.assign(Object.assign(Object.assign({},i.props),{"aria-label":null!=(t=null==(e=i.props)?void 0:e["aria-label"])?t:f.close}),l)):r.createElement("span",Object.assign({"aria-label":f.close},l),i)),[!0,i,m,l]},[m,f.close,h,g])}},47447(e,t,n){"use strict";n.d(t,{C:()=>o});var r=n(96540);let o=()=>r.useReducer(e=>e+1,0)},60275(e,t,n){"use strict";n.d(t,{YK:()=>s,jH:()=>i});var r=n(96540),o=n(93093),a=n(72616);let i=1e3,l={Modal:100,Drawer:100,Popover:100,Popconfirm:100,Tooltip:100,Tour:100,FloatButton:100},c={SelectLike:50,Dropdown:50,DatePicker:50,Menu:50,ImagePreview:1},s=(e,t)=>{let n,[,i]=(0,o.Ay)(),s=r.useContext(a.A),d=e in l;if(void 0!==t)n=[t,t];else{let r=null!=s?s:0;d?r+=(s?0:i.zIndexPopupBase)+l[e]:r+=c[e],n=[void 0===s?t:r,r]}return n}},64849(e,t,n){"use strict";n.d(t,{e:()=>r,p:()=>o});let r=(e,t)=>{void 0!==(null==e?void 0:e.addEventListener)?e.addEventListener("change",t):void 0!==(null==e?void 0:e.addListener)&&e.addListener(t)},o=(e,t)=>{void 0!==(null==e?void 0:e.removeEventListener)?e.removeEventListener("change",t):void 0!==(null==e?void 0:e.removeListener)&&e.removeListener(t)}},23723(e,t,n){"use strict";n.d(t,{A:()=>s,b:()=>c});var r=n(62279);let o=()=>({height:0,opacity:0}),a=e=>{let{scrollHeight:t}=e;return{height:t,opacity:1}},i=e=>({height:e?e.offsetHeight:0}),l=(e,t)=>(null==t?void 0:t.deadline)===!0||"height"===t.propertyName,c=(e,t,n)=>void 0!==n?n:`${e}-${t}`,s=(e=r.yH)=>({motionName:`${e}-motion-collapse`,onAppearStart:o,onEnterStart:o,onAppearActive:a,onEnterActive:a,onLeaveStart:i,onLeaveActive:o,onAppearEnd:l,onEnterEnd:l,onLeaveEnd:l,motionDeadline:500})},13257(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(95201);let o={left:{points:["cr","cl"]},right:{points:["cl","cr"]},top:{points:["bc","tc"]},bottom:{points:["tc","bc"]},topLeft:{points:["bl","tl"]},leftTop:{points:["tr","tl"]},topRight:{points:["br","tr"]},rightTop:{points:["tl","tr"]},bottomRight:{points:["tr","br"]},rightBottom:{points:["bl","br"]},bottomLeft:{points:["tl","bl"]},leftBottom:{points:["br","bl"]}},a={topLeft:{points:["bl","tc"]},leftTop:{points:["tr","cl"]},topRight:{points:["br","tc"]},rightTop:{points:["tl","cr"]},bottomRight:{points:["tr","bc"]},rightBottom:{points:["bl","cr"]},bottomLeft:{points:["tl","bc"]},leftBottom:{points:["br","cl"]}},i=new Set(["topLeft","topRight","bottomLeft","bottomRight","leftTop","leftBottom","rightTop","rightBottom"]);function l(e){let{arrowWidth:t,autoAdjustOverflow:n,arrowPointAtCenter:l,offset:c,borderRadius:s,visibleFirst:d}=e,u=t/2,p={},f=(0,r.Ke)({contentRadius:s,limitVerticalRadius:!0});return Object.keys(o).forEach(e=>{let r=Object.assign(Object.assign({},l&&a[e]||o[e]),{offset:[0,0],dynamicInset:!0});switch(p[e]=r,i.has(e)&&(r.autoArrow=!1),e){case"top":case"topLeft":case"topRight":r.offset[1]=-u-c;break;case"bottom":case"bottomLeft":case"bottomRight":r.offset[1]=u+c;break;case"left":case"leftTop":case"leftBottom":r.offset[0]=-u-c;break;case"right":case"rightTop":case"rightBottom":r.offset[0]=u+c}if(l)switch(e){case"topLeft":case"bottomLeft":r.offset[0]=-f.arrowOffsetHorizontal-u;break;case"topRight":case"bottomRight":r.offset[0]=f.arrowOffsetHorizontal+u;break;case"leftTop":case"rightTop":r.offset[1]=-(2*f.arrowOffsetHorizontal)+u;break;case"leftBottom":case"rightBottom":r.offset[1]=2*f.arrowOffsetHorizontal-u}r.overflow=function(e,t,n,r){if(!1===r)return{adjustX:!1,adjustY:!1};let o={};switch(e){case"top":case"bottom":o.shiftX=2*t.arrowOffsetHorizontal+n,o.shiftY=!0,o.adjustY=!0;break;case"left":case"right":o.shiftY=2*t.arrowOffsetVertical+n,o.shiftX=!0,o.adjustX=!0}let a=Object.assign(Object.assign({},o),r&&"object"==typeof r?r:{});return a.shiftX||(a.adjustX=!0),a.shiftY||(a.adjustY=!0),a}(e,f,t,n),d&&(r.htmlRegion="visibleFirst")}),p}},40682(e,t,n){"use strict";n.d(t,{Ob:()=>i,fx:()=>a,zv:()=>o});var r=n(96540);function o(e){return e&&r.isValidElement(e)&&e.type===r.Fragment}let a=(e,t,n)=>r.isValidElement(e)?r.cloneElement(e,"function"==typeof n?n(e.props||{}):n):t;function i(e,t){return a(e,e,t)}},24945(e,t,n){"use strict";n.d(t,{Ay:()=>c,ko:()=>l,ye:()=>i});var r=n(96540),o=n(93093),a=n(64849);let i=["xxl","xl","lg","md","sm","xs"],l=(e,t)=>{if(t){for(let n of i)if(e[n]&&(null==t?void 0:t[n])!==void 0)return t[n]}},c=()=>{let e,[,t]=(0,o.Ay)(),n=((e=[].concat(i).reverse()).forEach((n,r)=>{let o=n.toUpperCase(),a=`screen${o}Min`,i=`screen${o}`;if(!(t[a]<=t[i]))throw Error(`${a}<=${i} fails : !(${t[a]}<=${t[i]})`);if(r{let e=new Map,t=-1,r={};return{responsiveMap:n,matchHandlers:{},dispatch:t=>(r=t,e.forEach(e=>e(r)),e.size>=1),subscribe(n){return e.size||this.register(),t+=1,e.set(t,n),n(r),t},unsubscribe(t){e.delete(t),e.size||this.unregister()},register(){Object.entries(n).forEach(([e,t])=>{let n=({matches:t})=>{this.dispatch(Object.assign(Object.assign({},r),{[e]:t}))},o=window.matchMedia(t);(0,a.e)(o,n),this.matchHandlers[t]={mql:o,listener:n},n(o)})},unregister(){Object.values(n).forEach(e=>{let t=this.matchHandlers[e];(0,a.p)(null==t?void 0:t.mql,null==t?void 0:t.listener)}),e.clear()}}},[n])}},58182(e,t,n){"use strict";n.d(t,{L:()=>a,v:()=>i});var r=n(46942),o=n.n(r);function a(e,t,n){return o()({[`${e}-status-success`]:"success"===t,[`${e}-status-warning`]:"warning"===t,[`${e}-status-error`]:"error"===t,[`${e}-status-validating`]:"validating"===t,[`${e}-has-feedback`]:n})}let i=(e,t)=>t||e},18877(e,t,n){"use strict";n.d(t,{_n:()=>a,rJ:()=>i});var r=n(96540);function o(){}n(68210);let a=r.createContext({}),i=()=>{let e=()=>{};return e.deprecated=o,e}},54556(e,t,n){"use strict";n.d(t,{A:()=>x});var r=n(96540),o=n(46942),a=n.n(o),i=n(42467),l=n(8719),c=n(62279),s=n(40682);let d=(0,n(37358).Or)("Wave",e=>{let{componentCls:t,colorPrimary:n}=e;return{[t]:{position:"absolute",background:"transparent",pointerEvents:"none",boxSizing:"border-box",color:`var(--wave-color, ${n})`,boxShadow:"0 0 0 0 currentcolor",opacity:.2,"&.wave-motion-appear":{transition:`box-shadow 0.4s ${e.motionEaseOutCirc},opacity 2s ${e.motionEaseOutCirc}`,"&-active":{boxShadow:"0 0 0 6px currentcolor",opacity:0},"&.wave-quick":{transition:`box-shadow ${e.motionDurationSlow} ${e.motionEaseInOut},opacity ${e.motionDurationSlow} ${e.motionEaseInOut}`}}}}});var u=n(26956),p=n(25371),f=n(93093),m=n(4424),g=n(52193),h=n(71919);function b(e){return e&&"#fff"!==e&&"#ffffff"!==e&&"rgb(255, 255, 255)"!==e&&"rgba(255, 255, 255, 1)"!==e&&!/rgba\((?:\d*, ){3}0\)/.test(e)&&"transparent"!==e&&"canvastext"!==e}function v(e){return Number.isNaN(e)?0:e}let y=e=>{let{className:t,target:n,component:o,registerUnmount:i}=e,c=r.useRef(null),s=r.useRef(null);r.useEffect(()=>{s.current=i()},[]);let[d,u]=r.useState(null),[f,h]=r.useState([]),[y,x]=r.useState(0),[$,A]=r.useState(0),[w,S]=r.useState(0),[C,O]=r.useState(0),[k,j]=r.useState(!1),E={left:y,top:$,width:w,height:C,borderRadius:f.map(e=>`${e}px`).join(" ")};function P(){let e=getComputedStyle(n);u(function(e){var t;let{borderTopColor:n,borderColor:r,backgroundColor:o}=getComputedStyle(e);return null!=(t=[n,r,o].find(b))?t:null}(n));let t="static"===e.position,{borderLeftWidth:r,borderTopWidth:o}=e;x(t?n.offsetLeft:v(-Number.parseFloat(r))),A(t?n.offsetTop:v(-Number.parseFloat(o))),S(n.offsetWidth),O(n.offsetHeight);let{borderTopLeftRadius:a,borderTopRightRadius:i,borderBottomLeftRadius:l,borderBottomRightRadius:c}=e;h([a,i,c,l].map(e=>v(Number.parseFloat(e))))}if(d&&(E["--wave-color"]=d),r.useEffect(()=>{if(n){let e,t=(0,p.A)(()=>{P(),j(!0)});return"u">typeof ResizeObserver&&(e=new ResizeObserver(P)).observe(n),()=>{p.A.cancel(t),null==e||e.disconnect()}}},[n]),!k)return null;let z=("Checkbox"===o||"Radio"===o)&&(null==n?void 0:n.classList.contains(m.D));return r.createElement(g.Ay,{visible:!0,motionAppear:!0,motionName:"wave-motion",motionDeadline:5e3,onAppearEnd:(e,t)=>{var n,r;if(t.deadline||"opacity"===t.propertyName){let e=null==(n=c.current)?void 0:n.parentElement;null==(r=s.current)||r.call(s).then(()=>{null==e||e.remove()})}return!1}},({className:e},n)=>r.createElement("div",{ref:(0,l.K4)(c,n),className:a()(t,e,{"wave-quick":z}),style:E}))},x=e=>{let{children:t,disabled:n,component:o}=e,{getPrefixCls:g}=(0,r.useContext)(c.QO),b=(0,r.useRef)(null),v=g("wave"),[,x]=d(v),$=((e,t,n)=>{let{wave:o}=r.useContext(c.QO),[,a,i]=(0,f.Ay)(),l=(0,u.A)(l=>{let c=e.current;if((null==o?void 0:o.disabled)||!c)return;let s=c.querySelector(`.${m.D}`)||c,{showEffect:d}=o||{};(d||((e,t)=>{var n;let{component:o}=t;if("Checkbox"===o&&!(null==(n=e.querySelector("input"))?void 0:n.checked))return;let a=document.createElement("div");a.style.position="absolute",a.style.left="0px",a.style.top="0px",null==e||e.insertBefore(a,null==e?void 0:e.firstChild);let i=(0,h.L)(),l=null;l=i(r.createElement(y,Object.assign({},t,{target:e,registerUnmount:function(){return l}})),a)}))(s,{className:t,token:a,component:n,event:l,hashId:i})}),s=r.useRef(null);return e=>{p.A.cancel(s.current),s.current=(0,p.A)(()=>{l(e)})}})(b,a()(v,x),o);if(r.useEffect(()=>{let e=b.current;if(!e||e.nodeType!==window.Node.ELEMENT_NODE||n)return;let t=t=>{!(0,i.A)(t.target)||!e.getAttribute||e.getAttribute("disabled")||e.disabled||e.className.includes("disabled")&&!e.className.includes("disabled:")||"true"===e.getAttribute("aria-disabled")||e.className.includes("-leave")||$(t)};return e.addEventListener("click",t,!0),()=>{e.removeEventListener("click",t,!0)}},[n]),!r.isValidElement(t))return null!=t?t:null;let A=(0,l.f3)(t)?(0,l.K4)((0,l.A9)(t),b):b;return(0,s.Ob)(t,{ref:A})}},4424(e,t,n){"use strict";n.d(t,{D:()=>o});var r=n(62279);let o=`${r.yH}-wave-target`},72616(e,t,n){"use strict";n.d(t,{A:()=>r});let r=n(96540).createContext(void 0)},41240(e,t,n){"use strict";n.d(t,{A:()=>a,B:()=>o});var r=n(96540);let o=r.createContext({}),a=r.createContext({message:{},notification:{},modal:{}})},26122(e,t,n){"use strict";n.d(t,{A:()=>F});var r=n(96540),o=n(46942),a=n.n(o),i=n(18877),l=n(62279),c=n(89585),s=n(8109),d=n(17241),u=n(20934),p=n(93093),f=n(46420),m=n(39159),g=n(5100),h=n(51399),b=n(15874),v=n(66514);function y(e,t){return null===t||!1===t?null:t||r.createElement(g.A,{className:`${e}-close-icon`})}b.A,f.A,m.A,h.A,v.A;let x={success:f.A,info:b.A,error:m.A,warning:h.A},$=e=>{let{prefixCls:t,icon:n,type:o,message:i,description:l,actions:c,role:s="alert"}=e,d=null;return n?d=r.createElement("span",{className:`${t}-icon`},n):o&&(d=r.createElement(x[o]||null,{className:a()(`${t}-icon`,`${t}-icon-${o}`)})),r.createElement("div",{className:a()({[`${t}-with-icon`]:d}),role:s},d,r.createElement("div",{className:`${t}-message`},i),l&&r.createElement("div",{className:`${t}-description`},l),c&&r.createElement("div",{className:`${t}-actions`},c))};var A=n(48670),w=n(60275),S=n(25905),C=n(10224),O=n(37358);let k=["top","topLeft","topRight","bottom","bottomLeft","bottomRight"],j={topLeft:"left",topRight:"right",bottomLeft:"left",bottomRight:"right",top:"left",bottom:"left"},E=(0,O.OF)("Notification",e=>{let t,n,r=(t=e.paddingMD,n=e.paddingLG,(0,C.oX)(e,{notificationBg:e.colorBgElevated,notificationPaddingVertical:t,notificationPaddingHorizontal:n,notificationIconSize:e.calc(e.fontSizeLG).mul(e.lineHeightLG).equal(),notificationCloseButtonSize:e.calc(e.controlHeightLG).mul(.55).equal(),notificationMarginBottom:e.margin,notificationPadding:`${(0,A.zA)(e.paddingMD)} ${(0,A.zA)(e.paddingContentHorizontalLG)}`,notificationMarginEdge:e.marginLG,animationMaxHeight:150,notificationStackLayer:3,notificationProgressHeight:2,notificationProgressBg:`linear-gradient(90deg, ${e.colorPrimaryBorderHover}, ${e.colorPrimary})`}));return[(e=>{let{componentCls:t,notificationMarginBottom:n,notificationMarginEdge:r,motionDurationMid:o,motionEaseInOut:a}=e,i=`${t}-notice`,l=new A.Mo("antNotificationFadeOut",{"0%":{maxHeight:e.animationMaxHeight,marginBottom:n},"100%":{maxHeight:0,marginBottom:0,paddingTop:0,paddingBottom:0,opacity:0}});return[{[t]:Object.assign(Object.assign({},(0,S.dF)(e)),{position:"fixed",zIndex:e.zIndexPopup,marginRight:{value:r,_skip_check_:!0},[`${t}-hook-holder`]:{position:"relative"},[`${t}-fade-appear-prepare`]:{opacity:"0 !important"},[`${t}-fade-enter, ${t}-fade-appear`]:{animationDuration:e.motionDurationMid,animationTimingFunction:a,animationFillMode:"both",opacity:0,animationPlayState:"paused"},[`${t}-fade-leave`]:{animationTimingFunction:a,animationFillMode:"both",animationDuration:o,animationPlayState:"paused"},[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationPlayState:"running"},[`${t}-fade-leave${t}-fade-leave-active`]:{animationName:l,animationPlayState:"running"},"&-rtl":{direction:"rtl",[`${i}-actions`]:{float:"left"}}})},{[t]:{[`${i}-wrapper`]:(e=>{let{iconCls:t,componentCls:n,boxShadow:r,fontSizeLG:o,notificationMarginBottom:a,borderRadiusLG:i,colorSuccess:l,colorInfo:c,colorWarning:s,colorError:d,colorTextHeading:u,notificationBg:p,notificationPadding:f,notificationMarginEdge:m,notificationProgressBg:g,notificationProgressHeight:h,fontSize:b,lineHeight:v,width:y,notificationIconSize:x,colorText:$,colorSuccessBg:w,colorErrorBg:C,colorInfoBg:O,colorWarningBg:k}=e,j=`${n}-notice`;return{position:"relative",marginBottom:a,marginInlineStart:"auto",background:p,borderRadius:i,boxShadow:r,[j]:{padding:f,width:y,maxWidth:`calc(100vw - ${(0,A.zA)(e.calc(m).mul(2).equal())})`,lineHeight:v,wordWrap:"break-word",borderRadius:i,overflow:"hidden","&-success":w?{background:w}:{},"&-error":C?{background:C}:{},"&-info":O?{background:O}:{},"&-warning":k?{background:k}:{}},[`${j}-message`]:{color:u,fontSize:o,lineHeight:e.lineHeightLG},[`${j}-description`]:{fontSize:b,color:$,marginTop:e.marginXS},[`${j}-closable ${j}-message`]:{paddingInlineEnd:e.paddingLG},[`${j}-with-icon ${j}-message`]:{marginInlineStart:e.calc(e.marginSM).add(x).equal(),fontSize:o},[`${j}-with-icon ${j}-description`]:{marginInlineStart:e.calc(e.marginSM).add(x).equal(),fontSize:b},[`${j}-icon`]:{position:"absolute",fontSize:x,lineHeight:1,[`&-success${t}`]:{color:l},[`&-info${t}`]:{color:c},[`&-warning${t}`]:{color:s},[`&-error${t}`]:{color:d}},[`${j}-close`]:Object.assign({position:"absolute",top:e.notificationPaddingVertical,insetInlineEnd:e.notificationPaddingHorizontal,color:e.colorIcon,outline:"none",width:e.notificationCloseButtonSize,height:e.notificationCloseButtonSize,borderRadius:e.borderRadiusSM,transition:`background-color ${e.motionDurationMid}, color ${e.motionDurationMid}`,display:"flex",alignItems:"center",justifyContent:"center",background:"none",border:"none","&:hover":{color:e.colorIconHover,backgroundColor:e.colorBgTextHover},"&:active":{backgroundColor:e.colorBgTextActive}},(0,S.K8)(e)),[`${j}-progress`]:{position:"absolute",display:"block",appearance:"none",inlineSize:`calc(100% - ${(0,A.zA)(i)} * 2)`,left:{_skip_check_:!0,value:i},right:{_skip_check_:!0,value:i},bottom:0,blockSize:h,border:0,"&, &::-webkit-progress-bar":{borderRadius:i,backgroundColor:"rgba(0, 0, 0, 0.04)"},"&::-moz-progress-bar":{background:g},"&::-webkit-progress-value":{borderRadius:i,background:g}},[`${j}-actions`]:{float:"right",marginTop:e.marginSM}}})(e)}}]})(r),(e=>{let{componentCls:t,notificationMarginEdge:n,animationMaxHeight:r}=e,o=`${t}-notice`,a=new A.Mo("antNotificationFadeIn",{"0%":{transform:"translate3d(100%, 0, 0)",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",opacity:1}});return{[t]:{[`&${t}-top, &${t}-bottom`]:{marginInline:0,[o]:{marginInline:"auto auto"}},[`&${t}-top`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:new A.Mo("antNotificationTopFadeIn",{"0%":{top:-r,opacity:0},"100%":{top:0,opacity:1}})}},[`&${t}-bottom`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:new A.Mo("antNotificationBottomFadeIn",{"0%":{bottom:e.calc(r).mul(-1).equal(),opacity:0},"100%":{bottom:0,opacity:1}})}},[`&${t}-topRight, &${t}-bottomRight`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:a}},[`&${t}-topLeft, &${t}-bottomLeft`]:{marginRight:{value:0,_skip_check_:!0},marginLeft:{value:n,_skip_check_:!0},[o]:{marginInlineEnd:"auto",marginInlineStart:0},[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:new A.Mo("antNotificationLeftFadeIn",{"0%":{transform:"translate3d(-100%, 0, 0)",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",opacity:1}})}}}}})(r),(e=>{let{componentCls:t}=e;return Object.assign({[`${t}-stack`]:{[`& > ${t}-notice-wrapper`]:Object.assign({transition:`transform ${e.motionDurationSlow}, backdrop-filter 0s`,willChange:"transform, opacity",position:"absolute"},(e=>{let t={};for(let n=1;n ${e.componentCls}-notice`]:{opacity:0,transition:`opacity ${e.motionDurationMid}`}};return Object.assign({[`&:not(:nth-last-child(-n+${e.notificationStackLayer}))`]:{opacity:0,overflow:"hidden",color:"transparent",pointerEvents:"none"}},t)})(e))},[`${t}-stack:not(${t}-stack-expanded)`]:{[`& > ${t}-notice-wrapper`]:Object.assign({},(e=>{let t={};for(let n=1;n ${t}-notice-wrapper`]:{"&:not(:nth-last-child(-n + 1))":{opacity:1,overflow:"unset",color:"inherit",pointerEvents:"auto",[`& > ${e.componentCls}-notice`]:{opacity:1}},"&:after":{content:'""',position:"absolute",height:e.margin,width:"100%",insetInline:0,bottom:e.calc(e.margin).mul(-1).equal(),background:"transparent",pointerEvents:"auto"}}}},k.map(t=>((e,t)=>{let{componentCls:n}=e;return{[`${n}-${t}`]:{[`&${n}-stack > ${n}-notice-wrapper`]:{[t.startsWith("top")?"top":"bottom"]:0,[j[t]]:{value:0,_skip_check_:!0}}}}})(e,t)).reduce((e,t)=>Object.assign(Object.assign({},e),t),{}))})(r)]},e=>({zIndexPopup:e.zIndexPopupBase+w.jH+50,width:384,colorSuccessBg:void 0,colorErrorBg:void 0,colorInfoBg:void 0,colorWarningBg:void 0}));var P=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let z=({children:e,prefixCls:t})=>{let n=(0,u.A)(t),[o,i,l]=E(t,n);return o(r.createElement(d.ph,{classNames:{list:a()(i,l,n)}},e))},I=(e,{prefixCls:t,key:n})=>r.createElement(z,{prefixCls:t,key:n},e),M=r.forwardRef((e,t)=>{let{top:n,bottom:o,prefixCls:i,getContainer:c,maxCount:s,rtl:u,onAllRemoved:f,stack:m,duration:g,pauseOnHover:h=!0,showProgress:b}=e,{getPrefixCls:v,getPopupContainer:x,notification:$,direction:A}=(0,r.useContext)(l.QO),[,w]=(0,p.Ay)(),S=i||v("notification"),[C,O]=(0,d.hN)({prefixCls:S,style:e=>(function(e,t,n){let r;switch(e){case"top":r={left:"50%",transform:"translateX(-50%)",right:"auto",top:t,bottom:"auto"};break;case"topLeft":r={left:0,top:t,bottom:"auto"};break;case"topRight":r={right:0,top:t,bottom:"auto"};break;case"bottom":r={left:"50%",transform:"translateX(-50%)",right:"auto",top:"auto",bottom:n};break;case"bottomLeft":r={left:0,top:"auto",bottom:n};break;default:r={right:0,top:"auto",bottom:n}}return r})(e,null!=n?n:24,null!=o?o:24),className:()=>a()({[`${S}-rtl`]:null!=u?u:"rtl"===A}),motion:()=>({motionName:`${S}-fade`}),closable:!0,closeIcon:y(S),duration:null!=g?g:4.5,getContainer:()=>(null==c?void 0:c())||(null==x?void 0:x())||document.body,maxCount:s,pauseOnHover:h,showProgress:b,onAllRemoved:f,renderNotifications:I,stack:!1!==m&&{threshold:"object"==typeof m?null==m?void 0:m.threshold:void 0,offset:8,gap:w.margin}});return r.useImperativeHandle(t,()=>Object.assign(Object.assign({},C),{prefixCls:S,notification:$})),O});var R=n(41240);let B=(0,O.OF)("App",e=>{let{componentCls:t,colorText:n,fontSize:r,lineHeight:o,fontFamily:a}=e;return{[t]:{color:n,fontSize:r,lineHeight:o,fontFamily:a,[`&${t}-rtl`]:{direction:"rtl"}}}},()=>({})),T=e=>{var t;let n,{prefixCls:o,children:d,className:u,rootClassName:p,message:f,notification:m,style:g,component:h="div"}=e,{direction:b,getPrefixCls:v}=(0,r.useContext)(l.QO),x=v("app",o),[A,w,S]=B(x),C=a()(w,x,u,p,S,{[`${x}-rtl`]:"rtl"===b}),O=(0,r.useContext)(R.B),k=r.useMemo(()=>({message:Object.assign(Object.assign({},O.message),f),notification:Object.assign(Object.assign({},O.notification),m)}),[f,m,O.message,O.notification]),[j,E]=(0,c.A)(k.message),[z,I]=(t=k.notification,n=r.useRef(null),(0,i.rJ)("Notification"),[r.useMemo(()=>{let e=e=>{var o;if(!n.current)return;let{open:i,prefixCls:l,notification:c}=n.current,s=`${l}-notice`,{message:d,description:u,icon:p,type:f,btn:m,actions:g,className:h,style:b,role:v="alert",closeIcon:x,closable:A}=e,w=P(e,["message","description","icon","type","btn","actions","className","style","role","closeIcon","closable"]),S=y(s,void 0!==x?x:void 0!==(null==t?void 0:t.closeIcon)?t.closeIcon:null==c?void 0:c.closeIcon);return i(Object.assign(Object.assign({placement:null!=(o=null==t?void 0:t.placement)?o:"topRight"},w),{content:r.createElement($,{prefixCls:s,icon:p,type:f,message:d,description:u,actions:null!=g?g:m,role:v}),className:a()(f&&`${s}-${f}`,h,null==c?void 0:c.className),style:Object.assign(Object.assign({},null==c?void 0:c.style),b),closeIcon:S,closable:null!=A?A:!!S}))},o={open:e,destroy:e=>{var t,r;void 0!==e?null==(t=n.current)||t.close(e):null==(r=n.current)||r.destroy()}};return["success","info","warning","error"].forEach(t=>{o[t]=n=>e(Object.assign(Object.assign({},n),{type:t}))}),o},[]),r.createElement(M,Object.assign({key:"notification-holder"},t,{ref:n}))]),[T,F]=(0,s.A)(),N=r.useMemo(()=>({message:j,notification:z,modal:T}),[j,z,T]);(0,i.rJ)("App")(!(S&&!1===h),"usage","When using cssVar, ensure `component` is assigned a valid React component string.");let H=!1===h?r.Fragment:h;return A(r.createElement(R.A.Provider,{value:N},r.createElement(R.B.Provider,{value:k},r.createElement(H,Object.assign({},!1===h?void 0:{className:C,style:g}),F,E,I,d))))};T.useApp=()=>r.useContext(R.A);let F=T},68101(e,t,n){"use strict";n.d(t,{A:()=>C});var r=n(96540),o=n(46942),a=n.n(o),i=n(6807),l=n(8719),c=n(24945),s=n(62279),d=n(20934),u=n(829),p=n(78551);let f=r.createContext({});var m=n(48670),g=n(25905),h=n(37358),b=n(10224);let v=(0,h.OF)("Avatar",e=>{let{colorTextLightSolid:t,colorTextPlaceholder:n}=e,r=(0,b.oX)(e,{avatarBg:n,avatarColor:t});return[(e=>{let{antCls:t,componentCls:n,iconCls:r,avatarBg:o,avatarColor:a,containerSize:i,containerSizeLG:l,containerSizeSM:c,textFontSize:s,textFontSizeLG:d,textFontSizeSM:u,iconFontSize:p,iconFontSizeLG:f,iconFontSizeSM:h,borderRadius:b,borderRadiusLG:v,borderRadiusSM:y,lineWidth:x,lineType:$}=e,A=(e,t,o,a)=>({width:e,height:e,borderRadius:"50%",fontSize:t,[`&${n}-square`]:{borderRadius:a},[`&${n}-icon`]:{fontSize:o,[`> ${r}`]:{margin:0}}});return{[n]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,g.dF)(e)),{position:"relative",display:"inline-flex",justifyContent:"center",alignItems:"center",overflow:"hidden",color:a,whiteSpace:"nowrap",textAlign:"center",verticalAlign:"middle",background:o,border:`${(0,m.zA)(x)} ${$} transparent`,"&-image":{background:"transparent"},[`${t}-image-img`]:{display:"block"}}),A(i,s,p,b)),{"&-lg":Object.assign({},A(l,d,f,v)),"&-sm":Object.assign({},A(c,u,h,y)),"> img":{display:"block",width:"100%",height:"100%",objectFit:"cover"}})}})(r),(e=>{let{componentCls:t,groupBorderColor:n,groupOverlapping:r,groupSpace:o}=e;return{[`${t}-group`]:{display:"inline-flex",[t]:{borderColor:n},"> *:not(:first-child)":{marginInlineStart:r}},[`${t}-group-popover`]:{[`${t} + ${t}`]:{marginInlineStart:o}}}})(r)]},e=>{let{controlHeight:t,controlHeightLG:n,controlHeightSM:r,fontSize:o,fontSizeLG:a,fontSizeXL:i,fontSizeHeading3:l,marginXS:c,marginXXS:s,colorBorderBg:d}=e;return{containerSize:t,containerSizeLG:n,containerSizeSM:r,textFontSize:o,textFontSizeLG:o,textFontSizeSM:o,iconFontSize:Math.round((a+i)/2),iconFontSizeLG:l,iconFontSizeSM:o,groupSpace:s,groupOverlapping:-c,groupBorderColor:d}});var y=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let x=r.forwardRef((e,t)=>{let n,{prefixCls:o,shape:m,size:g,src:h,srcSet:b,icon:x,className:$,rootClassName:A,style:w,alt:S,draggable:C,children:O,crossOrigin:k,gap:j=4,onError:E}=e,P=y(e,["prefixCls","shape","size","src","srcSet","icon","className","rootClassName","style","alt","draggable","children","crossOrigin","gap","onError"]),[z,I]=r.useState(1),[M,R]=r.useState(!1),[B,T]=r.useState(!0),F=r.useRef(null),N=r.useRef(null),H=(0,l.K4)(t,F),{getPrefixCls:L,avatar:D}=r.useContext(s.QO),_=r.useContext(f),W=()=>{if(!N.current||!F.current)return;let e=N.current.offsetWidth,t=F.current.offsetWidth;0!==e&&0!==t&&2*j{R(!0)},[]),r.useEffect(()=>{T(!0),I(1)},[h]),r.useEffect(W,[j]);let q=(0,u.A)(e=>{var t,n;return null!=(n=null!=(t=null!=g?g:null==_?void 0:_.size)?t:e)?n:"default"}),V=Object.keys("object"==typeof q&&q||{}).some(e=>["xs","sm","md","lg","xl","xxl"].includes(e)),X=(0,p.A)(V),U=r.useMemo(()=>{if("object"!=typeof q)return{};let e=q[c.ye.find(e=>X[e])];return e?{width:e,height:e,fontSize:e&&(x||O)?e/2:18}:{}},[X,q,x,O]),Y=L("avatar",o),G=(0,d.A)(Y),[K,Q,J]=v(Y,G),Z=a()({[`${Y}-lg`]:"large"===q,[`${Y}-sm`]:"small"===q}),ee=r.isValidElement(h),et=m||(null==_?void 0:_.shape)||"circle",en=a()(Y,Z,null==D?void 0:D.className,`${Y}-${et}`,{[`${Y}-image`]:ee||h&&B,[`${Y}-icon`]:!!x},J,G,$,A,Q),er="number"==typeof q?{width:q,height:q,fontSize:x?q/2:18}:{};if("string"==typeof h&&B)n=r.createElement("img",{src:h,draggable:C,srcSet:b,onError:()=>{!1!==(null==E?void 0:E())&&T(!1)},alt:S,crossOrigin:k});else if(ee)n=h;else if(x)n=x;else if(M||1!==z){let e=`scale(${z})`;n=r.createElement(i.A,{onResize:W},r.createElement("span",{className:`${Y}-string`,ref:N,style:{msTransform:e,WebkitTransform:e,transform:e}},O))}else n=r.createElement("span",{className:`${Y}-string`,style:{opacity:0},ref:N},O);return K(r.createElement("span",Object.assign({},P,{style:Object.assign(Object.assign(Object.assign(Object.assign({},er),U),null==D?void 0:D.style),w),className:en,ref:H}),n))});var $=n(82546),A=n(40682),w=n(28073);let S=e=>{let{size:t,shape:n}=r.useContext(f),o=r.useMemo(()=>({size:e.size||t,shape:e.shape||n}),[e.size,e.shape,t,n]);return r.createElement(f.Provider,{value:o},e.children)};x.Group=e=>{var t,n,o,i;let{getPrefixCls:l,direction:c}=r.useContext(s.QO),{prefixCls:u,className:p,rootClassName:f,style:m,maxCount:g,maxStyle:h,size:b,shape:y,maxPopoverPlacement:C,maxPopoverTrigger:O,children:k,max:j}=e,E=l("avatar",u),P=`${E}-group`,z=(0,d.A)(E),[I,M,R]=v(E,z),B=a()(P,{[`${P}-rtl`]:"rtl"===c},R,z,p,f,M),T=(0,$.A)(k).map((e,t)=>(0,A.Ob)(e,{key:`avatar-key-${t}`})),F=(null==j?void 0:j.count)||g,N=T.length;if(F&&Fk});var r=n(96540),o=n(46942),a=n.n(o),i=n(82546),l=n(72065),c=n(40682),s=n(62279),d=n(98459),u=n(98439);let p=({children:e})=>{let{getPrefixCls:t}=r.useContext(s.QO),n=t("breadcrumb");return r.createElement("li",{className:`${n}-separator`,"aria-hidden":"true"},""===e?e:e||"/")};p.__ANT_BREADCRUMB_SEPARATOR=!0;var f=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function m(e,t,n,o){if(null==n)return null;let{className:i,onClick:c}=t,s=f(t,["className","onClick"]),d=Object.assign(Object.assign({},(0,l.A)(s,{data:!0,aria:!0})),{onClick:c});return void 0!==o?r.createElement("a",Object.assign({},d,{className:a()(`${e}-link`,i),href:o}),n):r.createElement("span",Object.assign({},d,{className:a()(`${e}-link`,i)}),n)}var g=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let h=e=>{let{prefixCls:t,separator:n="/",children:o,menu:a,overlay:i,dropdownProps:l,href:c}=e,s=(e=>{if(a||i){let n=Object.assign({},l);if(a){let e=a||{},{items:t}=e;n.menu=Object.assign(Object.assign({},g(e,["items"])),{items:null==t?void 0:t.map((e,t)=>{var{key:n,title:o,label:a,path:i}=e,l=g(e,["key","title","label","path"]);let s=null!=a?a:o;return i&&(s=r.createElement("a",{href:`${c}${i}`},s)),Object.assign(Object.assign({},l),{key:null!=n?n:t,label:s})})})}else i&&(n.overlay=i);return r.createElement(u.A,Object.assign({placement:"bottom"},n),r.createElement("span",{className:`${t}-overlay-link`},e,r.createElement(d.A,null)))}return e})(o);return null!=s?r.createElement(r.Fragment,null,r.createElement("li",{className:`${t}-item`},s),n&&r.createElement(p,null,n)):null},b=e=>{let{prefixCls:t,children:n,href:o}=e,a=g(e,["prefixCls","children","href"]),{getPrefixCls:i}=r.useContext(s.QO),l=i("breadcrumb",t);return r.createElement(h,Object.assign({},a,{prefixCls:l}),m(l,a,n,o))};b.__ANT_BREADCRUMB_ITEM=!0;var v=n(48670),y=n(25905),x=n(37358),$=n(10224);let A=(0,x.OF)("Breadcrumb",e=>(e=>{let{componentCls:t,iconCls:n,calc:r}=e;return{[t]:Object.assign(Object.assign({},(0,y.dF)(e)),{color:e.itemColor,fontSize:e.fontSize,[n]:{fontSize:e.iconFontSize},ol:{display:"flex",flexWrap:"wrap",margin:0,padding:0,listStyle:"none"},[`${t}-item a`]:Object.assign({color:e.linkColor,transition:`color ${e.motionDurationMid}`,padding:`0 ${(0,v.zA)(e.paddingXXS)}`,borderRadius:e.borderRadiusSM,height:e.fontHeight,display:"inline-block",marginInline:r(e.marginXXS).mul(-1).equal(),"&:hover":{color:e.linkHoverColor,backgroundColor:e.colorBgTextHover}},(0,y.K8)(e)),[`${t}-item:last-child`]:{color:e.lastItemColor},[`${t}-separator`]:{marginInline:e.separatorMargin,color:e.separatorColor},[`${t}-link`]:{[` > ${n} + span, > ${n} + a `]:{marginInlineStart:e.marginXXS}},[`${t}-overlay-link`]:{borderRadius:e.borderRadiusSM,height:e.fontHeight,display:"inline-block",padding:`0 ${(0,v.zA)(e.paddingXXS)}`,marginInline:r(e.marginXXS).mul(-1).equal(),[`> ${n}`]:{marginInlineStart:e.marginXXS,fontSize:e.fontSizeIcon},"&:hover":{color:e.linkHoverColor,backgroundColor:e.colorBgTextHover,a:{color:e.linkHoverColor}},a:{"&:hover":{backgroundColor:"transparent"}}},[`&${e.componentCls}-rtl`]:{direction:"rtl"}})}})((0,$.oX)(e,{})),e=>({itemColor:e.colorTextDescription,lastItemColor:e.colorText,iconFontSize:e.fontSize,linkColor:e.colorTextDescription,linkHoverColor:e.colorText,separatorColor:e.colorTextDescription,separatorMargin:e.marginXS}));var w=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function S(e){let{breadcrumbName:t,children:n}=e,r=Object.assign({title:t},w(e,["breadcrumbName","children"]));return n&&(r.menu={items:n.map(e=>{var{breadcrumbName:t}=e;return Object.assign(Object.assign({},w(e,["breadcrumbName"])),{title:t})})}),r}var C=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let O=e=>{let t,{prefixCls:n,separator:o="/",style:d,className:u,rootClassName:f,routes:g,items:b,children:v,itemRender:y,params:x={}}=e,$=C(e,["prefixCls","separator","style","className","rootClassName","routes","items","children","itemRender","params"]),{getPrefixCls:w,direction:O,breadcrumb:k}=r.useContext(s.QO),j=w("breadcrumb",n),[E,P,z]=A(j),I=(0,r.useMemo)(()=>b||(g?g.map(S):null),[b,g]),M=(e,t,n,r,o)=>{if(y)return y(e,t,n,r);let a=function(e,t){if(void 0===e.title||null===e.title)return null;let n=Object.keys(t).join("|");return"object"==typeof e.title?e.title:String(e.title).replace(RegExp(`:(${n})`,"g"),(e,n)=>t[n]||e)}(e,t);return m(j,e,a,o)};if(I&&I.length>0){let e=[],n=b||g;t=I.map((t,a)=>{let{path:i,key:c,type:s,menu:d,overlay:u,onClick:f,className:m,separator:g,dropdownProps:b}=t,v=((e,t)=>{if(void 0===t)return t;let n=(t||"").replace(/^\//,"");return Object.keys(e).forEach(t=>{n=n.replace(`:${t}`,e[t])}),n})(x,i);void 0!==v&&e.push(v);let y=null!=c?c:a;if("separator"===s)return r.createElement(p,{key:y},g);let $={},A=a===I.length-1;d?$.menu=d:u&&($.overlay=u);let{href:w}=t;return e.length&&void 0!==v&&(w=`#/${e.join("/")}`),r.createElement(h,Object.assign({key:y},$,(0,l.A)(t,{data:!0,aria:!0}),{className:m,dropdownProps:b,href:w,separator:A?"":o,onClick:f,prefixCls:j}),M(t,x,n,e,w))})}else if(v){let e=(0,i.A)(v).length;t=(0,i.A)(v).map((t,n)=>{if(!t)return t;let r=n===e-1;return(0,c.Ob)(t,{separator:r?"":o,key:n})})}let R=a()(j,null==k?void 0:k.className,{[`${j}-rtl`]:"rtl"===O},u,f,P,z),B=Object.assign(Object.assign({},null==k?void 0:k.style),d);return E(r.createElement("nav",Object.assign({className:R,style:B},$),r.createElement("ol",null,t)))};O.Item=b,O.Separator=p;let k=O},39449(e,t,n){"use strict";n.d(t,{Ap:()=>c,DU:()=>s,u1:()=>u,uR:()=>p});var r=n(83098),o=n(96540),a=n(40682),i=n(13950);let l=/^[\u4E00-\u9FA5]{2}$/,c=l.test.bind(l);function s(e){return"danger"===e?{danger:!0}:{type:e}}function d(e){return"string"==typeof e}function u(e){return"text"===e||"link"===e}function p(e,t){let n=!1,r=[];return o.Children.forEach(e,e=>{let t=typeof e,o="string"===t||"number"===t;if(n&&o){let t=r.length-1,n=r[t];r[t]=`${n}${e}`}else r.push(e);n=o}),o.Children.map(r,e=>(function(e,t){if(null==e)return;let n=t?" ":"";return"string"!=typeof e&&"number"!=typeof e&&d(e.type)&&c(e.props.children)?(0,a.Ob)(e,{children:e.props.children.split("").join(n)}):d(e)?c(e)?o.createElement("span",null,e.split("").join(n)):o.createElement("span",null,e):(0,a.zv)(e)?o.createElement("span",null,e):e})(e,t))}["default","primary","danger"].concat((0,r.A)(i.s))},71021(e,t,n){"use strict";n.d(t,{Ay:()=>J});var r=n(96540),o=n(46942),a=n.n(o),i=n(30981),l=n(19853),c=n(8719),s=n(54556),d=n(62279),u=n(98119),p=n(829),f=n(47020),m=n(93093),g=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let h=r.createContext(void 0);var b=n(39449),v=n(66514),y=n(52193);let x=(0,r.forwardRef)((e,t)=>{let{className:n,style:o,children:i,prefixCls:l}=e,c=a()(`${l}-icon`,n);return r.createElement("span",{ref:t,className:c,style:o},i)}),$=(0,r.forwardRef)((e,t)=>{let{prefixCls:n,className:o,style:i,iconClassName:l}=e,c=a()(`${n}-loading-icon`,o);return r.createElement(x,{prefixCls:n,className:c,style:i,ref:t},r.createElement(v.A,{className:l}))}),A=()=>({width:0,opacity:0,transform:"scale(0)"}),w=e=>({width:e.scrollWidth,opacity:1,transform:"scale(1)"}),S=e=>{let{prefixCls:t,loading:n,existIcon:o,className:i,style:l,mount:c}=e;return o?r.createElement($,{prefixCls:t,className:i,style:l}):r.createElement(y.Ay,{visible:!!n,motionName:`${t}-loading-icon-motion`,motionAppear:!c,motionEnter:!c,motionLeave:!c,removeOnLeave:!0,onAppearStart:A,onAppearActive:w,onEnterStart:A,onEnterActive:w,onLeaveStart:w,onLeaveActive:A},({className:e,style:n},o)=>{let c=Object.assign(Object.assign({},l),n);return r.createElement($,{prefixCls:t,className:a()(i,e),style:c,ref:o})})};var C=n(48670),O=n(25905),k=n(13950),j=n(10224),E=n(37358);let P=(e,t)=>({[`> span, > ${e}`]:{"&:not(:last-child)":{[`&, & > ${e}`]:{"&:not(:disabled)":{borderInlineEndColor:t}}},"&:not(:first-child)":{[`&, & > ${e}`]:{"&:not(:disabled)":{borderInlineStartColor:t}}}}});var z=n(19911),I=n(11571),M=n(94925),R=n(85045);let B=e=>{let{paddingInline:t,onlyIconSize:n}=e;return(0,j.oX)(e,{buttonPaddingHorizontal:t,buttonPaddingVertical:0,buttonIconOnlyFontSize:n})},T=e=>{var t,n,r,o,a,i;let l=null!=(t=e.contentFontSize)?t:e.fontSize,c=null!=(n=e.contentFontSizeSM)?n:e.fontSize,s=null!=(r=e.contentFontSizeLG)?r:e.fontSizeLG,d=null!=(o=e.contentLineHeight)?o:(0,M.k)(l),u=null!=(a=e.contentLineHeightSM)?a:(0,M.k)(c),p=null!=(i=e.contentLineHeightLG)?i:(0,M.k)(s),f=(0,I.z)(new z.kf(e.colorBgSolid),"#fff")?"#000":"#fff";return Object.assign(Object.assign({},k.s.reduce((t,n)=>Object.assign(Object.assign({},t),{[`${n}ShadowColor`]:`0 ${(0,C.zA)(e.controlOutlineWidth)} 0 ${(0,R.A)(e[`${n}1`],e.colorBgContainer)}`}),{})),{fontWeight:400,iconGap:e.marginXS,defaultShadow:`0 ${e.controlOutlineWidth}px 0 ${e.controlTmpOutline}`,primaryShadow:`0 ${e.controlOutlineWidth}px 0 ${e.controlOutline}`,dangerShadow:`0 ${e.controlOutlineWidth}px 0 ${e.colorErrorOutline}`,primaryColor:e.colorTextLightSolid,dangerColor:e.colorTextLightSolid,borderColorDisabled:e.colorBorder,defaultGhostColor:e.colorBgContainer,ghostBg:"transparent",defaultGhostBorderColor:e.colorBgContainer,paddingInline:e.paddingContentHorizontal-e.lineWidth,paddingInlineLG:e.paddingContentHorizontal-e.lineWidth,paddingInlineSM:8-e.lineWidth,onlyIconSize:"inherit",onlyIconSizeSM:"inherit",onlyIconSizeLG:"inherit",groupBorderColor:e.colorPrimaryHover,linkHoverBg:"transparent",textTextColor:e.colorText,textTextHoverColor:e.colorText,textTextActiveColor:e.colorText,textHoverBg:e.colorFillTertiary,defaultColor:e.colorText,defaultBg:e.colorBgContainer,defaultBorderColor:e.colorBorder,defaultBorderColorDisabled:e.colorBorder,defaultHoverBg:e.colorBgContainer,defaultHoverColor:e.colorPrimaryHover,defaultHoverBorderColor:e.colorPrimaryHover,defaultActiveBg:e.colorBgContainer,defaultActiveColor:e.colorPrimaryActive,defaultActiveBorderColor:e.colorPrimaryActive,solidTextColor:f,contentFontSize:l,contentFontSizeSM:c,contentFontSizeLG:s,contentLineHeight:d,contentLineHeightSM:u,contentLineHeightLG:p,paddingBlock:Math.max((e.controlHeight-l*d)/2-e.lineWidth,0),paddingBlockSM:Math.max((e.controlHeightSM-c*u)/2-e.lineWidth,0),paddingBlockLG:Math.max((e.controlHeightLG-s*p)/2-e.lineWidth,0)})},F=(e,t,n)=>({[`&:not(:disabled):not(${e}-disabled)`]:{"&:hover":t,"&:active":n}}),N=(e,t,n,r,o,a,i,l)=>({[`&${e}-background-ghost`]:Object.assign(Object.assign({color:n||void 0,background:t,borderColor:r||void 0,boxShadow:"none"},F(e,Object.assign({background:t},i),Object.assign({background:t},l))),{"&:disabled":{cursor:"not-allowed",color:o||void 0,borderColor:a||void 0}})}),H=(e,t,n,r)=>Object.assign(Object.assign({},(r&&["link","text"].includes(r)?e=>({[`&:disabled, &${e.componentCls}-disabled`]:{cursor:"not-allowed",color:e.colorTextDisabled}}):e=>({[`&:disabled, &${e.componentCls}-disabled`]:Object.assign({},{cursor:"not-allowed",borderColor:e.borderColorDisabled,color:e.colorTextDisabled,background:e.colorBgContainerDisabled,boxShadow:"none"})}))(e)),F(e.componentCls,t,n)),L=(e,t,n,r,o)=>({[`&${e.componentCls}-variant-solid`]:Object.assign({color:t,background:n},H(e,r,o))}),D=(e,t,n,r,o)=>({[`&${e.componentCls}-variant-outlined, &${e.componentCls}-variant-dashed`]:Object.assign({borderColor:t,background:n},H(e,r,o))}),_=e=>({[`&${e.componentCls}-variant-dashed`]:{borderStyle:"dashed"}}),W=(e,t,n,r)=>({[`&${e.componentCls}-variant-filled`]:Object.assign({boxShadow:"none",background:t},H(e,n,r))}),q=(e,t,n,r,o)=>({[`&${e.componentCls}-variant-${n}`]:Object.assign({color:t,boxShadow:"none"},H(e,r,o,n))}),V=(e,t="")=>{let{componentCls:n,controlHeight:r,fontSize:o,borderRadius:a,buttonPaddingHorizontal:i,iconCls:l,buttonPaddingVertical:c,buttonIconOnlyFontSize:s}=e;return[{[t]:{fontSize:o,height:r,padding:`${(0,C.zA)(c)} ${(0,C.zA)(i)}`,borderRadius:a,[`&${n}-icon-only`]:{width:r,[l]:{fontSize:s}}}},{[`${n}${n}-circle${t}`]:{minWidth:e.controlHeight,paddingInline:0,borderRadius:"50%"}},{[`${n}${n}-round${t}`]:{borderRadius:e.controlHeight,[`&:not(${n}-icon-only)`]:{paddingInline:e.buttonPaddingHorizontal}}}]},X=(0,E.OF)("Button",e=>{let t=B(e);return[(e=>{let{componentCls:t,iconCls:n,fontWeight:r,opacityLoading:o,motionDurationSlow:a,motionEaseInOut:i,iconGap:l,calc:c}=e;return{[t]:{outline:"none",position:"relative",display:"inline-flex",gap:l,alignItems:"center",justifyContent:"center",fontWeight:r,whiteSpace:"nowrap",textAlign:"center",backgroundImage:"none",background:"transparent",border:`${(0,C.zA)(e.lineWidth)} ${e.lineType} transparent`,cursor:"pointer",transition:`all ${e.motionDurationMid} ${e.motionEaseInOut}`,userSelect:"none",touchAction:"manipulation",color:e.colorText,"&:disabled > *":{pointerEvents:"none"},[`${t}-icon > svg`]:(0,O.Nk)(),"> a":{color:"currentColor"},"&:not(:disabled)":(0,O.K8)(e),[`&${t}-two-chinese-chars::first-letter`]:{letterSpacing:"0.34em"},[`&${t}-two-chinese-chars > *:not(${n})`]:{marginInlineEnd:"-0.34em",letterSpacing:"0.34em"},[`&${t}-icon-only`]:{paddingInline:0,[`&${t}-compact-item`]:{flex:"none"}},[`&${t}-loading`]:{opacity:o,cursor:"default"},[`${t}-loading-icon`]:{transition:["width","opacity","margin"].map(e=>`${e} ${a} ${i}`).join(",")},[`&:not(${t}-icon-end)`]:{[`${t}-loading-icon-motion`]:{"&-appear-start, &-enter-start":{marginInlineEnd:c(l).mul(-1).equal()},"&-appear-active, &-enter-active":{marginInlineEnd:0},"&-leave-start":{marginInlineEnd:0},"&-leave-active":{marginInlineEnd:c(l).mul(-1).equal()}}},"&-icon-end":{flexDirection:"row-reverse",[`${t}-loading-icon-motion`]:{"&-appear-start, &-enter-start":{marginInlineStart:c(l).mul(-1).equal()},"&-appear-active, &-enter-active":{marginInlineStart:0},"&-leave-start":{marginInlineStart:0},"&-leave-active":{marginInlineStart:c(l).mul(-1).equal()}}}}}})(t),V((0,j.oX)(t,{fontSize:t.contentFontSize}),t.componentCls),V((0,j.oX)(t,{controlHeight:t.controlHeightSM,fontSize:t.contentFontSizeSM,padding:t.paddingXS,buttonPaddingHorizontal:t.paddingInlineSM,buttonPaddingVertical:0,borderRadius:t.borderRadiusSM,buttonIconOnlyFontSize:t.onlyIconSizeSM}),`${t.componentCls}-sm`),V((0,j.oX)(t,{controlHeight:t.controlHeightLG,fontSize:t.contentFontSizeLG,buttonPaddingHorizontal:t.paddingInlineLG,buttonPaddingVertical:0,borderRadius:t.borderRadiusLG,buttonIconOnlyFontSize:t.onlyIconSizeLG}),`${t.componentCls}-lg`),(e=>{let{componentCls:t}=e;return{[t]:{[`&${t}-block`]:{width:"100%"}}}})(t),(e=>{let{componentCls:t}=e;return Object.assign({[`${t}-color-default`]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({color:e.defaultColor,boxShadow:e.defaultShadow},L(e,e.solidTextColor,e.colorBgSolid,{color:e.solidTextColor,background:e.colorBgSolidHover},{color:e.solidTextColor,background:e.colorBgSolidActive})),_(e)),W(e,e.colorFillTertiary,{color:e.defaultColor,background:e.colorFillSecondary},{color:e.defaultColor,background:e.colorFill})),N(e.componentCls,e.ghostBg,e.defaultGhostColor,e.defaultGhostBorderColor,e.colorTextDisabled,e.colorBorder)),q(e,e.textTextColor,"link",{color:e.colorLinkHover,background:e.linkHoverBg},{color:e.colorLinkActive})),[`${t}-color-primary`]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({color:e.colorPrimary,boxShadow:e.primaryShadow},D(e,e.colorPrimary,e.colorBgContainer,{color:e.colorPrimaryTextHover,borderColor:e.colorPrimaryHover,background:e.colorBgContainer},{color:e.colorPrimaryTextActive,borderColor:e.colorPrimaryActive,background:e.colorBgContainer})),_(e)),W(e,e.colorPrimaryBg,{color:e.colorPrimary,background:e.colorPrimaryBgHover},{color:e.colorPrimary,background:e.colorPrimaryBorder})),q(e,e.colorPrimaryText,"text",{color:e.colorPrimaryTextHover,background:e.colorPrimaryBg},{color:e.colorPrimaryTextActive,background:e.colorPrimaryBorder})),q(e,e.colorPrimaryText,"link",{color:e.colorPrimaryTextHover,background:e.linkHoverBg},{color:e.colorPrimaryTextActive})),N(e.componentCls,e.ghostBg,e.colorPrimary,e.colorPrimary,e.colorTextDisabled,e.colorBorder,{color:e.colorPrimaryHover,borderColor:e.colorPrimaryHover},{color:e.colorPrimaryActive,borderColor:e.colorPrimaryActive})),[`${t}-color-dangerous`]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({color:e.colorError,boxShadow:e.dangerShadow},L(e,e.dangerColor,e.colorError,{background:e.colorErrorHover},{background:e.colorErrorActive})),D(e,e.colorError,e.colorBgContainer,{color:e.colorErrorHover,borderColor:e.colorErrorBorderHover},{color:e.colorErrorActive,borderColor:e.colorErrorActive})),_(e)),W(e,e.colorErrorBg,{color:e.colorError,background:e.colorErrorBgFilledHover},{color:e.colorError,background:e.colorErrorBgActive})),q(e,e.colorError,"text",{color:e.colorErrorHover,background:e.colorErrorBg},{color:e.colorErrorHover,background:e.colorErrorBgActive})),q(e,e.colorError,"link",{color:e.colorErrorHover},{color:e.colorErrorActive})),N(e.componentCls,e.ghostBg,e.colorError,e.colorError,e.colorTextDisabled,e.colorBorder,{color:e.colorErrorHover,borderColor:e.colorErrorHover},{color:e.colorErrorActive,borderColor:e.colorErrorActive})),[`${t}-color-link`]:Object.assign(Object.assign({},q(e,e.colorLink,"link",{color:e.colorLinkHover},{color:e.colorLinkActive})),N(e.componentCls,e.ghostBg,e.colorInfo,e.colorInfo,e.colorTextDisabled,e.colorBorder,{color:e.colorInfoHover,borderColor:e.colorInfoHover},{color:e.colorInfoActive,borderColor:e.colorInfoActive}))},(e=>{let{componentCls:t}=e;return k.s.reduce((n,r)=>{let o=e[`${r}6`],a=e[`${r}1`],i=e[`${r}5`],l=e[`${r}2`],c=e[`${r}3`],s=e[`${r}7`];return Object.assign(Object.assign({},n),{[`&${t}-color-${r}`]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({color:o,boxShadow:e[`${r}ShadowColor`]},L(e,e.colorTextLightSolid,o,{background:i},{background:s})),D(e,o,e.colorBgContainer,{color:i,borderColor:i,background:e.colorBgContainer},{color:s,borderColor:s,background:e.colorBgContainer})),_(e)),W(e,a,{color:o,background:l},{color:o,background:c})),q(e,o,"link",{color:i},{color:s})),q(e,o,"text",{color:i,background:a},{color:s,background:c}))})},{})})(e))})(t),Object.assign(Object.assign(Object.assign(Object.assign({},D(t,t.defaultBorderColor,t.defaultBg,{color:t.defaultHoverColor,borderColor:t.defaultHoverBorderColor,background:t.defaultHoverBg},{color:t.defaultActiveColor,borderColor:t.defaultActiveBorderColor,background:t.defaultActiveBg})),q(t,t.textTextColor,"text",{color:t.textTextHoverColor,background:t.textHoverBg},{color:t.textTextActiveColor,background:t.colorBgTextActive})),L(t,t.primaryColor,t.colorPrimary,{background:t.colorPrimaryHover,color:t.primaryColor},{background:t.colorPrimaryActive,color:t.primaryColor})),q(t,t.colorLink,"link",{color:t.colorLinkHover,background:t.linkHoverBg},{color:t.colorLinkActive})),(e=>{let{componentCls:t,fontSize:n,lineWidth:r,groupBorderColor:o,colorErrorHover:a}=e;return{[`${t}-group`]:[{position:"relative",display:"inline-flex",[`> span, > ${t}`]:{"&:not(:last-child)":{[`&, & > ${t}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},"&:not(:first-child)":{marginInlineStart:e.calc(r).mul(-1).equal(),[`&, & > ${t}`]:{borderStartStartRadius:0,borderEndStartRadius:0}}},[t]:{position:"relative",zIndex:1,"&:hover, &:focus, &:active":{zIndex:2},"&[disabled]":{zIndex:0}},[`${t}-icon-only`]:{fontSize:n}},P(`${t}-primary`,o),P(`${t}-danger`,a)]}})(t)]},T,{unitless:{fontWeight:!0,contentLineHeight:!0,contentLineHeightSM:!0,contentLineHeightLG:!0}});var U=n(55974);let Y=(0,E.bf)(["Button","compact"],e=>{var t,n;let r,o=B(e);return[(0,U.G)(o),{[r=`${o.componentCls}-compact-vertical`]:Object.assign(Object.assign({},(t=o.componentCls,{[`&-item:not(${r}-last-item)`]:{marginBottom:o.calc(o.lineWidth).mul(-1).equal()},[`&-item:not(${t}-status-success)`]:{zIndex:2},"&-item":{"&:hover,&:focus,&:active":{zIndex:3},"&[disabled]":{zIndex:0}}})),(n=o.componentCls,{[`&-item:not(${r}-first-item):not(${r}-last-item)`]:{borderRadius:0},[`&-item${r}-first-item:not(${r}-last-item)`]:{[`&, &${n}-sm, &${n}-lg`]:{borderEndEndRadius:0,borderEndStartRadius:0}},[`&-item${r}-last-item:not(${r}-first-item)`]:{[`&, &${n}-sm, &${n}-lg`]:{borderStartStartRadius:0,borderStartEndRadius:0}}}))},(e=>{let{componentCls:t,colorPrimaryHover:n,lineWidth:r,calc:o}=e,a=o(r).mul(-1).equal(),i=e=>{let o=`${t}-compact${e?"-vertical":""}-item${t}-primary:not([disabled])`;return{[`${o} + ${o}::before`]:{position:"absolute",top:e?a:0,insetInlineStart:e?0:a,backgroundColor:n,content:'""',width:e?"100%":r,height:e?r:"100%"}}};return Object.assign(Object.assign({},i()),i(!0))})(o)]},T);var G=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let K={default:["default","outlined"],primary:["primary","solid"],dashed:["default","dashed"],link:["link","link"],text:["default","text"]},Q=r.forwardRef((e,t)=>{var n,o;let m,{loading:g=!1,prefixCls:v,color:y,variant:$,type:A,danger:w=!1,shape:C,size:O,styles:k,disabled:j,className:E,rootClassName:P,children:z,icon:I,iconPosition:M="start",ghost:R=!1,block:B=!1,htmlType:T="button",classNames:F,style:N={},autoInsertSpace:H,autoFocus:L}=e,D=G(e,["loading","prefixCls","color","variant","type","danger","shape","size","styles","disabled","className","rootClassName","children","icon","iconPosition","ghost","block","htmlType","classNames","style","autoInsertSpace","autoFocus"]),_=A||"default",{button:W}=r.useContext(d.QO),q=C||(null==W?void 0:W.shape)||"default",[V,U]=(0,r.useMemo)(()=>{if(y&&$)return[y,$];if(A||w){let e=K[_]||[];return w?["danger",e[1]]:e}return(null==W?void 0:W.color)&&(null==W?void 0:W.variant)?[W.color,W.variant]:["default","outlined"]},[y,$,A,w,null==W?void 0:W.color,null==W?void 0:W.variant,_]),Q="danger"===V?"dangerous":V,{getPrefixCls:J,direction:Z,autoInsertSpace:ee,className:et,style:en,classNames:er,styles:eo}=(0,d.TP)("button"),ea=null==(n=null!=H?H:ee)||n,ei=J("btn",v),[el,ec,es]=X(ei),ed=(0,r.useContext)(u.A),eu=null!=j?j:ed,ep=(0,r.useContext)(h),ef=(0,r.useMemo)(()=>(function(e){if("object"==typeof e&&e){let t=null==e?void 0:e.delay;return{loading:(t=Number.isNaN(t)||"number"!=typeof t?0:t)<=0,delay:t}}return{loading:!!e,delay:0}})(g),[g]),[em,eg]=(0,r.useState)(ef.loading),[eh,eb]=(0,r.useState)(!1),ev=(0,r.useRef)(null),ey=(0,c.xK)(t,ev),ex=1===r.Children.count(z)&&!I&&!(0,b.u1)(U),e$=(0,r.useRef)(!0);r.useEffect(()=>(e$.current=!1,()=>{e$.current=!0}),[]),(0,i.A)(()=>{let e=null;return ef.delay>0?e=setTimeout(()=>{e=null,eg(!0)},ef.delay):eg(ef.loading),function(){e&&(clearTimeout(e),e=null)}},[ef.delay,ef.loading]),(0,r.useEffect)(()=>{if(!ev.current||!ea)return;let e=ev.current.textContent||"";ex&&(0,b.Ap)(e)?eh||eb(!0):eh&&eb(!1)}),(0,r.useEffect)(()=>{L&&ev.current&&ev.current.focus()},[]);let eA=r.useCallback(t=>{var n;em||eu?t.preventDefault():null==(n=e.onClick)||n.call(e,("href"in e,t))},[e.onClick,em,eu]),{compactSize:ew,compactItemClassnames:eS}=(0,f.RQ)(ei,Z),eC=(0,p.A)(e=>{var t,n;return null!=(n=null!=(t=null!=O?O:ew)?t:ep)?n:e}),eO=eC&&null!=(o=({large:"lg",small:"sm",middle:void 0})[eC])?o:"",ek=em?"loading":I,ej=(0,l.A)(D,["navigate"]),eE=a()(ei,ec,es,{[`${ei}-${q}`]:"default"!==q&&q,[`${ei}-${_}`]:_,[`${ei}-dangerous`]:w,[`${ei}-color-${Q}`]:Q,[`${ei}-variant-${U}`]:U,[`${ei}-${eO}`]:eO,[`${ei}-icon-only`]:!z&&0!==z&&!!ek,[`${ei}-background-ghost`]:R&&!(0,b.u1)(U),[`${ei}-loading`]:em,[`${ei}-two-chinese-chars`]:eh&&ea&&!em,[`${ei}-block`]:B,[`${ei}-rtl`]:"rtl"===Z,[`${ei}-icon-end`]:"end"===M},eS,E,P,et),eP=Object.assign(Object.assign({},en),N),ez=a()(null==F?void 0:F.icon,er.icon),eI=Object.assign(Object.assign({},(null==k?void 0:k.icon)||{}),eo.icon||{}),eM=e=>r.createElement(x,{prefixCls:ei,className:ez,style:eI},e);m=I&&!em?eM(I):g&&"object"==typeof g&&g.icon?eM(g.icon):r.createElement(S,{existIcon:!!I,prefixCls:ei,loading:em,mount:e$.current});let eR=z||0===z?(0,b.uR)(z,ex&&ea):null;if(void 0!==ej.href)return el(r.createElement("a",Object.assign({},ej,{className:a()(eE,{[`${ei}-disabled`]:eu}),href:eu?void 0:ej.href,style:eP,onClick:eA,ref:ey,tabIndex:eu?-1:0,"aria-disabled":eu}),m,eR));let eB=r.createElement("button",Object.assign({},D,{type:T,className:eE,style:eP,onClick:eA,disabled:eu,ref:ey}),m,eR,eS&&r.createElement(Y,{prefixCls:ei}));return(0,b.u1)(U)||(eB=r.createElement(s.A,{component:"Button",disabled:em},eB)),el(eB)});Q.Group=e=>{let{getPrefixCls:t,direction:n}=r.useContext(d.QO),{prefixCls:o,size:i,className:l}=e,c=g(e,["prefixCls","size","className"]),s=t("btn-group",o),[,,u]=(0,m.Ay)(),p=r.useMemo(()=>{switch(i){case"large":return"lg";case"small":return"sm";default:return""}},[i]),f=a()(s,{[`${s}-${p}`]:p,[`${s}-rtl`]:"rtl"===n},l,u);return r.createElement(h.Provider,{value:i},r.createElement("div",Object.assign({},c,{className:f})))},Q.__ANT_BUTTON=!0;let J=Q},16629(e,t,n){"use strict";n.d(t,{A:()=>w});var r=n(96540),o=n(46942),a=n.n(o),i=n(19853),l=n(62279),c=n(829),s=n(42441),d=n(21637),u=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let p=e=>{var{prefixCls:t,className:n,hoverable:o=!0}=e,i=u(e,["prefixCls","className","hoverable"]);let{getPrefixCls:c}=r.useContext(l.QO),s=c("card",t),d=a()(`${s}-grid`,n,{[`${s}-grid-hoverable`]:o});return r.createElement("div",Object.assign({},i,{className:d}))};var f=n(48670),m=n(25905),g=n(37358),h=n(10224);let b=(0,g.OF)("Card",e=>{let t=(0,h.oX)(e,{cardShadow:e.boxShadowCard,cardHeadPadding:e.padding,cardPaddingBase:e.paddingLG,cardActionsIconSize:e.fontSize});return[(e=>{let{componentCls:t,cardShadow:n,cardHeadPadding:r,colorBorderSecondary:o,boxShadowTertiary:a,bodyPadding:i,extraColor:l}=e;return{[t]:Object.assign(Object.assign({},(0,m.dF)(e)),{position:"relative",background:e.colorBgContainer,borderRadius:e.borderRadiusLG,[`&:not(${t}-bordered)`]:{boxShadow:a},[`${t}-head`]:(e=>{let{antCls:t,componentCls:n,headerHeight:r,headerPadding:o,tabsMarginBottom:a}=e;return Object.assign(Object.assign({display:"flex",justifyContent:"center",flexDirection:"column",minHeight:r,marginBottom:-1,padding:`0 ${(0,f.zA)(o)}`,color:e.colorTextHeading,fontWeight:e.fontWeightStrong,fontSize:e.headerFontSize,background:e.headerBg,borderBottom:`${(0,f.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorderSecondary}`,borderRadius:`${(0,f.zA)(e.borderRadiusLG)} ${(0,f.zA)(e.borderRadiusLG)} 0 0`},(0,m.t6)()),{"&-wrapper":{width:"100%",display:"flex",alignItems:"center"},"&-title":Object.assign(Object.assign({display:"inline-block",flex:1},m.L9),{[` diff --git a/safety-eval-start/src/main/resources/templates/safetyEval/static/js/main.013ab28d5c8d9507.js b/safety-eval-start/src/main/resources/templates/safetyEval/static/js/main.013ab28d5c8d9507.js new file mode 100644 index 0000000..86cdbac --- /dev/null +++ b/safety-eval-start/src/main/resources/templates/safetyEval/static/js/main.013ab28d5c8d9507.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports["jjb-micro-app:safetyEval"]=t():e["jjb-micro-app:safetyEval"]=t()}(self,()=>(()=>{var e,t,n,r,i,o,a={76736(e,t,n){"use strict";n.r(t)},52571(e,t,n){"use strict";n.r(t)},20124(e,t,n){"use strict";n.r(t)},59914(e,t,n){"use strict";n.r(t)},69208(e,t,n){"use strict";n.r(t)},74033(e,t,n){"use strict";n.r(t)},9770(e,t,n){"use strict";n.r(t)},1589(e,t,n){"use strict";n.r(t)},62210(e,t,n){"use strict";n.r(t),n.d(t,{corpCertificateAdd:()=>a,corpCertificateEdit:()=>l,corpCertificateInfo:()=>o,corpCertificateIsExistCertNo:()=>f,corpCertificateList:()=>i,corpCertificateRemove:()=>c,corpCertificateStatPage:()=>s,dictValuesData:()=>u});var r=n(15998),i=(0,r.CV)("corpCertificateLoading","Post > @/certificate/corpCertificate/list"),o=(0,r.CV)("corpCertificateLoading","Get > /certificate/corpCertificate/getInfoById?id={id}"),a=(0,r.CV)("corpCertificateLoading","Post > @/certificate/corpCertificate/save"),l=(0,r.CV)("corpCertificateLoading","Put > @/certificate/corpCertificate/edit"),s=(0,r.CV)("corpCertificateLoading","Post > @/certificate/corpCertificate/statPage"),c=(0,r.CV)("corpCertificateLoading","Put > @/certificate/corpCertificate/remove?id={id}"),u=(0,r.CV)("corpCertificateLoading","Get > /config/dict-trees/list/by/dictValues"),f=(0,r.CV)("corpCertificateLoading","Get > /certificate/corpCertificate/isExistCertNo")},23775(e,t,n){"use strict";n.r(t),n.d(t,{identifyPartList:()=>r});var r=(0,n(15998).CV)("coursewareLoading","Post > @/risk/busIdentifyPart/list")},84049(e,t,n){"use strict";n.r(t),n.d(t,{queryDriverConfig:()=>r});var r=(0,n(15998).CV)("queryDriverConfigLoading","Get > /safetyEval/account/checkTerminalType","driverConfig: {} | res.data")},23461(e,t,n){"use strict";n.r(t),n.d(t,{equipInfoAdd:()=>y,equipInfoEdit:()=>m,equipInfoGet:()=>p,equipInfoList:()=>d,equipInfoRemove:()=>v,equipInfoToggleStatus:()=>h});var r,i,o=n(15998),a=n(48032),l=n(31467),s=n(73398);function c(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return u(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(u(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,u(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return s.prototype=f,u(d,"constructor",f),u(f,"constructor",s),s.displayName="GeneratorFunction",u(f,i,"GeneratorFunction"),u(d),u(d,i,"Generator"),u(d,r,function(){return this}),u(d,"toString",function(){return"[object Generator]"}),(c=function(){return{w:o,m:p}})()}function u(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(u=function(e,t,n,r){function o(t,n){u(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function f(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}var d=(0,o.CV)("equipInfoLoading","Get > /safetyEval/org-equipment/page","equipInfoList: [] | res.data || [] & equipInfoTotal: 0 | res.data?.total || 0"),p=(0,o.CV)("equipInfoLoading",(0,l.yT)((r=c().m(function e(t){var n;return c().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,(0,l.Vg)("/safetyEval/org-equipment/get",{id:(0,s.gR)(null==t?void 0:t.id)});case 1:return n=e.v,e.a(2,(0,a.UC)(n))}},e)}),i=function(){var e=this,t=arguments;return new Promise(function(n,i){var o=r.apply(e,t);function a(e){f(o,n,i,a,l,"next",e)}function l(e){f(o,n,i,a,l,"throw",e)}a(void 0)})},function(e){return i.apply(this,arguments)}))),y=(0,o.CV)("equipInfoLoading","Post > @/safetyEval/org-equipment/save"),m=(0,o.CV)("equipInfoLoading","Post > @/safetyEval/org-equipment/modify"),v=(0,o.CV)("equipInfoLoading","Post > @/safetyEval/org-equipment/delete"),h=(0,o.CV)("equipInfoLoading","Post > @/safetyEval/org-equipment/modify")},27872(e,t,n){"use strict";n.r(t)},53001(e,t,n){"use strict";n.r(t),n.d(t,{orgDepartmentAdd:()=>l,orgDepartmentEdit:()=>s,orgDepartmentGet:()=>i,orgDepartmentList:()=>a,orgDepartmentRemove:()=>c,orgDepartmentTree:()=>o});var r=n(15998),i=(0,r.CV)("orgDepartmentLoading","Get > /safetyEval/org-department/get","orgDepartmentDetail: {} | res.data || {}"),o=(0,r.CV)("orgDepartmentLoading","Get > /safetyEval/org-department/tree","orgDepartmentTreeData: [] | res.data || []"),a=(0,r.CV)("orgDepartmentLoading","Get > /safetyEval/org-department/page","dataSource: [] | res.data || [] & total: 0 | res.totalCount || 0"),l=(0,r.CV)("orgDepartmentLoading","Post > @/safetyEval/org-department/save"),s=(0,r.CV)("orgDepartmentLoading","Post > @/safetyEval/org-department/modify"),c=(0,r.CV)("orgDepartmentLoading","Post > @/safetyEval/org-department/delete")},89175(e,t,n){"use strict";n.r(t),n.d(t,{fetchRegisteredOrgDetail:()=>i.cA,orgAccountDelete:()=>i.Z5,orgAccountGet:()=>i.oD,orgAccountList:()=>i.s1,orgAccountModify:()=>i.Eo,orgAccountResetPassword:()=>i.k,orgAccountUpdateState:()=>i.o,orgInfoDraft:()=>s,orgInfoDraftModify:()=>c,orgInfoGet:()=>o,orgInfoModify:()=>l,orgInfoSave:()=>a,registeredOrgGet:()=>i.$8,registeredOrgList:()=>i.HV});var r=n(15998),i=n(41911),o=(0,r.CV)("orgInfoLoading","Get > /safetyEval/org-info/getInfo","orgInfoDetail: {} | res.data || {}"),a=(0,r.CV)("orgInfoLoading","Post > @/safetyEval/org-info/save"),l=(0,r.CV)("orgInfoLoading","Post > @/safetyEval/org-info/modify"),s=(0,r.CV)("orgInfoLoading","Post > @/safetyEval/org-info/save"),c=(0,r.CV)("orgInfoLoading","Post > @/safetyEval/org-info/modify")},71252(e,t,n){"use strict";n.r(t),n.d(t,{orgPositionAdd:()=>o,orgPositionEdit:()=>a,orgPositionList:()=>i,orgPositionRemove:()=>l});var r=n(15998),i=(0,r.CV)("orgPositionLoading","Get > /safetyEval/org-position/page","dataSource: [] | res.data || [] & total: 0 | res.totalCount || 0"),o=(0,r.CV)("orgPositionLoading","Post > @/safetyEval/org-position/save"),a=(0,r.CV)("orgPositionLoading","Post > @/safetyEval/org-position/modify"),l=(0,r.CV)("orgPositionLoading","Post > @/safetyEval/org-position/delete")},28022(e,t,n){"use strict";n.r(t),n.d(t,{orgQualificationCertAdd:()=>o,orgQualificationCertDisable:()=>c,orgQualificationCertEdit:()=>l,orgQualificationCertEnable:()=>u,orgQualificationCertInfo:()=>a,orgQualificationCertList:()=>i,orgQualificationCertRemove:()=>s});var r=n(15998),i=(0,r.CV)("orgQualificationCertLoading","Get > /safetyEval/org-qualification/page","orgQualificationCertList: [] | res.data?.records || res.data || [] & orgQualificationCertTotal: 0 | res.data?.total || 0"),o=(0,r.CV)("orgQualificationCertLoading","Post > @/safetyEval/org-qualification/save"),a=(0,r.CV)("orgQualificationCertLoading","Get > /safetyEval/org-qualification/get","orgQualificationCertDetail: {} | res.data || {}"),l=(0,r.CV)("orgQualificationCertLoading","Post > @/safetyEval/org-qualification/modify"),s=(0,r.CV)("orgQualificationCertLoading","Post > @/safetyEval/org-qualification/delete"),c=(0,r.CV)("orgQualificationCertLoading","Post > @/safetyEval/org-qualification/disable"),u=(0,r.CV)("orgQualificationCertLoading","Post > @/safetyEval/org-qualification/enable")},89580(e,t,n){"use strict";n.r(t),n.d(t,{deleteExpert:()=>s,getExpertDetail:()=>a,modifyExpert:()=>l,queryExpertPage:()=>i,saveExpert:()=>o});var r=n(15998),i=(0,r.CV)("qualExpertLoading","Get > /safetyEval/qual-filing-expert/page","qualExpertList: [] | res.data || [] & qualExpertTotal: 0 | res.total || 0"),o=(0,r.CV)("qualExpertSubmitLoading","Post > @/safetyEval/qual-filing-expert/save"),a=(0,r.CV)("qualExpertDetailLoading","Get > /safetyEval/qual-filing-expert/get","qualExpertDetail: {} | res.data || {}"),l=(0,r.CV)("qualExpertSubmitLoading","Post > @/safetyEval/qual-filing-expert/modify"),s=(0,r.CV)("qualExpertSubmitLoading","Post > @/safetyEval/qual-filing-expert/delete")},30045(e,t,n){"use strict";n.r(t),n.d(t,{fetchQualChangeDetail:()=>Y,fetchQualFilingChangeHistory:()=>$,fetchQualFilingDetail:()=>Q,fromFilingBasicForm:()=>D,fromFilingCommitmentForm:()=>z,fromFilingPersonnelAddCmd:()=>V,parseCommitmentNames:()=>q,qualFilingChangePage:()=>Z,qualFilingChangeSubmit:()=>em,qualFilingCommitmentSaveOrUpdate:()=>es,qualFilingCommitmentUploadSignature:()=>ec,qualFilingDelete:()=>ei,qualFilingDraft:()=>ee,qualFilingEquipmentBatchAdd:()=>ed,qualFilingEquipmentDelete:()=>ey,qualFilingEquipmentUploadCalibration:()=>ep,qualFilingFiledDraft:()=>et,qualFilingFiledPage:()=>X,qualFilingMaterialInitTemplate:()=>eo,qualFilingMaterialUpload:()=>ea,qualFilingPage:()=>K,qualFilingPersonnelBatchAdd:()=>eu,qualFilingPersonnelDelete:()=>ef,qualFilingSaveDraft:()=>en,qualFilingSubmit:()=>er,qualFilingUploadAttachment:()=>el,submitQualFiling:()=>ev,submitQualFilingChange:()=>eh,toChangeHistory:()=>G,toFilingCommitmentForm:()=>_,toFilingDetail:()=>R,toFilingEquipmentRow:()=>M,toFilingListRow:()=>F,toFilingPersonnelRow:()=>U});var r,i,o,a,l,s,c,u,f,d,p,y,m,v,h,g,b,j=n(15998),x=n(48032),S=n(31467),C=n(73398),A=n(76332),w=n(20344),O=["filingTerritoryName","filingTerritoryCode","filingStatus"];function P(e){return(P="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function I(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return E(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(E(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,E(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,E(u,"constructor",c),E(c,"constructor",s),s.displayName="GeneratorFunction",E(c,i,"GeneratorFunction"),E(u),E(u,i,"Generator"),E(u,r,function(){return this}),E(u,"toString",function(){return"[object Generator]"}),(I=function(){return{w:o,m:f}})()}function E(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(E=function(e,t,n,r){function o(t,n){E(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function N(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function L(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){N(o,r,i,a,l,"next",e)}function l(e){N(o,r,i,a,l,"throw",e)}a(void 0)})}}function T(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function k(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,C.gR)(t.id),filingId:t.filingId,filingTerritoryCode:t.filingTerritoryCode,filingTerritoryName:t.filingTerritoryName,filingUnitName:t.filingUnitName,filingNo:t.filingNo||(t.id?String(t.id):""),businessScope:t.businessScope,filingStatusCode:t.filingStatusCode,filingStatusName:t.filingStatusName,applyTypeCode:t.applyTypeCode,applyTypeName:t.applyTypeName,changeCount:Number(null!=(e=t.changeCount)?e:0),originFilingId:(0,C.gR)(t.originFilingId),rejectReason:t.rejectReason,submitTime:(0,A.Yq)(t.submitTime),approveTime:(0,A.Yq)(t.approveTime)}}function D(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.filingTerritoryName||e.filingTerritoryCode,n=e.filingUnitTypeName||e.filingUnitTypeCode;return(0,C.CF)({id:(0,C.gR)(e.id),businessScope:e.businessScope,filingTerritoryCode:t,filingTerritoryName:t,filingUnitName:e.filingUnitName,filingUnitTypeCode:n,filingUnitTypeName:n,filingNo:e.filingNo,registerAddress:e.registerAddress,officeAddress:e.officeAddress,creditCode:e.creditCode,qualCertNo:e.qualCertNo,legalPersonPhone:e.legalPersonPhone,contactPhone:e.contactPhone,infoDisclosureUrl:e.infoDisclosureUrl,fixedAssetAmount:e.fixedAssetAmount,workplaceArea:e.workplaceArea,archiveRoomArea:e.archiveRoomArea,fulltimeEvaluatorCount:e.fulltimeEvaluatorCount,registeredEngineerCount:e.registeredEngineerCount,unitIntro:e.unitIntro,attachmentUrl:e.attachmentUrl})}function R(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return k(k({},e),{},{materials:e.materials||[],commitment:e.commitment?_(e.commitment,e.filingUnitName):null,personnelList:(e.personnelList||[]).map(U),equipmentList:(e.equipmentList||[]).map(M)})}function q(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",a=String(i).match(/本人是(.+?),是(.+?)法定代表人/);if(a)return{legalRepName:(null==(n=a[1])?void 0:n.trim())||"",filingUnitName:(null==(r=a[2])?void 0:r.trim())||o||""};var l=String(i).match(/本人是(.+?)是(.+?)法定代表人/);return{legalRepName:(null==l||null==(e=l[1])?void 0:e.trim())||"",filingUnitName:(null==l||null==(t=l[2])?void 0:t.trim())||o||""}}function _(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=q(e.commitmentContent,t),r=e.legalRepPersonnelId?String((0,C.gR)(e.legalRepPersonnelId)):"";return{id:(0,C.gR)(e.id),filingId:(0,C.gR)(e.filingId),commitmentContent:e.commitmentContent,legalRepPersonnelId:r,legalRepName:e.legalRepName||n.legalRepName,filingUnitName:n.filingUnitName||t,legalRepSignatureUrl:e.legalRepSignatureUrl,signDate:(0,A.vJ)(e.signDate),signatureFiles:(0,w.zG)(e.legalRepSignatureUrl,"电子签名.jpg")}}function z(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0,n=(0,C.gR)(e.legalRepPersonnelId);return{id:(0,C.gR)(e.id),filingId:(0,C.gR)(t),commitmentContent:e.commitmentContent,legalRepSignatureUrl:e.legalRepSignatureUrl,signDate:(0,A.au)(e.signDate),legalRepPersonnelId:n||null,legalRepName:e.legalRepName||""}}function U(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.personName||e.userName||e.staffName;return{id:(0,C.gR)(e.id),filingId:(0,C.gR)(e.filingId),sourcePersonnelId:(0,C.gR)(e.sourcePersonnelId),personName:t,userName:t,personTypeCode:e.personTypeCode,personTypeName:e.personTypeName,positionName:e.positionName,titleName:e.titleName,genderCode:e.genderCode,genderName:e.genderName,birthDate:e.birthDate,joinWorkDate:e.joinWorkDate,idCardNo:e.idCardNo,currentAddress:e.currentAddress,officeAddress:e.officeAddress,educationCode:e.educationCode,educationName:e.educationName,graduateSchool:e.graduateSchool,major:e.major,qualScope:e.qualScope,publications:e.publications,professionalLevelCert:e.professionalLevelCert,registerEngineerFlag:e.registerEngineerFlag,abilityDeclaration:e.abilityDeclaration,workExperience:e.workExperience,proofMaterialUrl:e.proofMaterialUrl}}function V(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=U(e);return(0,C.CF)({sourcePersonnelId:t.sourcePersonnelId,personName:t.personName,personTypeCode:t.personTypeCode,personTypeName:t.personTypeName,positionName:t.positionName,titleName:t.titleName,genderCode:t.genderCode,genderName:t.genderName,birthDate:t.birthDate,joinWorkDate:t.joinWorkDate,idCardNo:t.idCardNo,currentAddress:t.currentAddress,officeAddress:t.officeAddress,educationCode:t.educationCode,educationName:t.educationName,graduateSchool:t.graduateSchool,major:t.major,qualScope:t.qualScope,publications:t.publications,professionalLevelCert:t.professionalLevelCert,registerEngineerFlag:t.registerEngineerFlag,abilityDeclaration:t.abilityDeclaration,workExperience:t.workExperience,proofMaterialUrl:t.proofMaterialUrl})}function M(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,C.gR)(e.id),filingId:(0,C.gR)(e.filingId),sourceEquipmentId:(0,C.gR)(e.sourceEquipmentId),deviceName:e.deviceName,deviceModel:e.deviceModel,manufacturer:e.manufacturer,calibrationReportUrl:e.calibrationReportUrl}}function G(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{changeCount:Number(null!=(e=t.changeCount)?e:0),records:(t.records||[]).map(function(e,t){return{id:(0,C.gR)(e.id),index:t+1,changeItemName:e.changeItemName,changeTime:(0,A.Yq)(e.changeTime),operatorName:e.operatorName}})}}function B(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.filingTerritoryName,n=e.filingTerritoryCode,r=e.filingStatus,i=function(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n={};for(var r in e)if(({}).hasOwnProperty.call(e,r)){if(-1!==t.indexOf(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r @/safetyEval/qual-filing/aggregationSaveOrEdit"),eh=(0,j.CV)("qualFilingSubmitLoading","Post > @/safetyEval/qual-filing-change/aggregationSaveOrEdit")},96952(e,t,n){"use strict";n.r(t),n.d(t,{changeReviewSubmit:()=>f,fetchQualChangeDetail:()=>c,fetchQualFilingDetail:()=>a,queryChangeComplianceCheck:()=>u,queryComplianceCheck:()=>o,queryQualChangePage:()=>l,queryReviewList:()=>i,reviewSubmit:()=>s});var r=n(15998),i=(0,r.CV)("qualReviewLoading","Get > /safetyEval/qual-filing/page","qualReviewList: [] | res.data || [] & qualReviewTotal: 0 | res.total || 0"),o=(0,r.CV)("qualReviewLoading","Get > /safetyEval/qual-filing/compliance-check","complianceCheckItems: [] | res.data || []"),a=(0,r.CV)("fetchQualFilingDetailLoading","Get > /safetyEval/qual-filing/detail","qualFilingDetail: {} | res.data || {}"),l=(0,r.CV)("qualReviewLoading","Get > /safetyEval/qual-filing-change/page","qualReviewList: [] | res.data || [] & qualReviewTotal: 0 | res.total || 0"),s=(0,r.CV)("qualReviewSubmitLoading","Post > @/safetyEval/qual-filing/review"),c=(0,r.CV)("fetchQualFilingDetailLoading","Get > /safetyEval/qual-filing-change/detail","qualFilingDetail: {} | res.data || {}"),u=(0,r.CV)("qualReviewLoading","Get > /safetyEval/qual-filing-change/compliance-check","complianceCheckItems: [] | res.data || []"),f=(0,r.CV)("qualReviewSubmitLoading","Post > @/safetyEval/qual-filing-change/review")},9538(e,t,n){"use strict";n.r(t),n.d(t,{fetchStaffCertDetail:()=>v,fetchStaffCertListByPersonnelId:()=>y,staffCertificateAdd:()=>f,staffCertificateEdit:()=>d,staffCertificateInfo:()=>u,staffCertificateList:()=>c,staffCertificateRemove:()=>p});var r=n(15998),i=n(46285);function o(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function l(n,r,i,o){var l=Object.create((r&&r.prototype instanceof c?r:c).prototype);return a(l,"_invoke",function(n,r,i){var o,a,l,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,a=0,l=e,d.n=n,s}};function p(n,r){for(a=n,l=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(l=o[(a=o[4])?5:(a=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,a=0))}if(i||n>1)return s;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),a=u,l=y;(t=a<2?e:l)||!f;){o||(a?a<3?(a>1&&(d.n=-1),p(a,l)):d.n=l:d.v=l);try{if(c=2,o){if(a||(i="next"),t=o[i]){if(!(t=t.call(o,l)))throw TypeError("iterator result is not an object");if(!t.done)return t;l=t.value,a<2&&(a=0)}else 1===a&&(t=o.return)&&t.call(o),a<2&&(l=TypeError("The iterator does not provide a '"+i+"' method"),a=1);o=e}else if((t=(f=d.n<0)?l:n.call(r,d))!==s)break}catch(t){o=e,a=1,l=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),l}var s={};function c(){}function u(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=c.prototype=Object.create([][r]?t(t([][r]())):(a(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,a(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return u.prototype=f,a(d,"constructor",f),a(f,"constructor",u),u.displayName="GeneratorFunction",a(f,i,"GeneratorFunction"),a(d),a(d,i,"Generator"),a(d,r,function(){return this}),a(d,"toString",function(){return"[object Generator]"}),(o=function(){return{w:l,m:p}})()}function a(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(a=function(e,t,n,r){function o(t,n){a(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function l(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function s(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){l(o,r,i,a,s,"next",e)}function s(e){l(o,r,i,a,s,"throw",e)}a(void 0)})}}var c=(0,r.CV)("staffCertificateLoading","Get > /safetyEval/org-personnel-cert/page","staffCertificateList: [] | res.data || [] & staffCertificateTotal: 0 | res.data?.total || 0"),u=(0,r.CV)("staffCertificateLoading","Get > /safetyEval/org-personnel-cert/get","staffCertificateDetail: {} | res.data || {}"),f=(0,r.CV)("staffCertificateLoading","Post > @/safetyEval/org-personnel-cert/save"),d=(0,r.CV)("staffCertificateLoading","Post > @/safetyEval/org-personnel-cert/modify"),p=(0,r.CV)("staffCertificateLoading","Post > @/safetyEval/org-personnel-cert/delete");function y(e){return m.apply(this,arguments)}function m(){return(m=s(o().m(function e(t){var n;return o().w(function(e){for(;;)switch(e.p=e.n){case 0:return e.p=0,e.n=1,(0,i.Get)("/safetyEval/org-personnel-cert/page",{current:1,size:999,personnelId:t});case 1:return n=e.v,e.a(2,(null==n?void 0:n.data)||[]);case 2:return e.p=2,e.v,e.a(2,[])}},e,null,[[0,2]])}))).apply(this,arguments)}function v(e){return h.apply(this,arguments)}function h(){return(h=s(o().m(function e(t){var n,r;return o().w(function(e){for(;;)switch(e.p=e.n){case 0:return n=t.id,e.p=1,e.n=2,(0,i.Get)("/safetyEval/org-personnel-cert/get",{id:n});case 2:return r=e.v,e.a(2,(null==r?void 0:r.data)||null);case 3:return e.p=3,e.v,e.a(2,null)}},e,null,[[1,3]])}))).apply(this,arguments)}},53983(e,t,n){"use strict";n.r(t),n.d(t,{staffChangeLogList:()=>f,staffChangeLogRemove:()=>d,staffChangeLogStaffList:()=>u,staffResignationAudit:()=>p,staffResignationInfo:()=>y});var r,i,o=n(15998),a=n(31467);function l(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var l=Object.create((r&&r.prototype instanceof c?r:c).prototype);return s(l,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),l}var a={};function c(){}function u(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=c.prototype=Object.create([][r]?t(t([][r]())):(s(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,s(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return u.prototype=f,s(d,"constructor",f),s(f,"constructor",u),u.displayName="GeneratorFunction",s(f,i,"GeneratorFunction"),s(d),s(d,i,"Generator"),s(d,r,function(){return this}),s(d,"toString",function(){return"[object Generator]"}),(l=function(){return{w:o,m:p}})()}function s(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(s=function(e,t,n,r){function o(t,n){s(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function c(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}var u=(0,o.CV)("staffChangeLogLoading","Get > /safetyEval/org-personnel/page","staffChangeLogStaffList: [] | res.data || [] & staffChangeLogStaffTotal: 0 | res.total || 0"),f=(0,o.CV)("staffChangeLogLoading","Get > /safetyEval/org-personnel-change/page","staffChangeLogChangeList: [] | res.data || [] & staffChangeLogChangeTotal: 0 | res.total || 0"),d=(0,o.CV)("staffChangeLogLoading",(0,a.yT)((r=l().m(function e(t){var n;return l().w(function(e){for(;;)if(0===e.n)return n=t.id,e.a(2,(0,a.oI)("/safetyEval/org-personnel-change/delete",n))},e)}),i=function(){var e=this,t=arguments;return new Promise(function(n,i){var o=r.apply(e,t);function a(e){c(o,n,i,a,l,"next",e)}function l(e){c(o,n,i,a,l,"throw",e)}a(void 0)})},function(e){return i.apply(this,arguments)}))),p=(0,o.CV)("staffChangeLogLoading","Post > @/safetyEval/org-resign-apply/modify"),y=(0,o.CV)("staffChangeLogLoading","Get > /safetyEval/org-resign-apply/get","staffResignationDetail: {} | res.data || {}")},85135(e,t,n){"use strict";n.r(t),n.d(t,{staffInfoAdd:()=>y,staffInfoEdit:()=>m,staffInfoGet:()=>p,staffInfoList:()=>d,staffInfoRemove:()=>v,staffInfoResetPassword:()=>h});var r,i,o=n(15998),a=n(31467),l=n(73398);function s(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return c(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function u(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(c(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,c(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return u.prototype=f,c(d,"constructor",f),c(f,"constructor",u),u.displayName="GeneratorFunction",c(f,i,"GeneratorFunction"),c(d),c(d,i,"Generator"),c(d,r,function(){return this}),c(d,"toString",function(){return"[object Generator]"}),(s=function(){return{w:o,m:p}})()}function c(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(c=function(e,t,n,r){function o(t,n){c(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function u(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function f(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){u(o,r,i,a,l,"next",e)}function l(e){u(o,r,i,a,l,"throw",e)}a(void 0)})}}var d=(0,o.CV)("staffInfoLoading","Get > /safetyEval/org-personnel/page","staffInfoList: [] | res.data || [] & staffInfoTotal: 0 | res.data?.total || 0"),p=(0,o.CV)("staffInfoLoading","Get > /safetyEval/org-personnel/get","staffInfoDetail: {} | res.data || {}"),y=(0,o.CV)("staffInfoLoading","Post > @/safetyEval/org-personnel/save"),m=(0,o.CV)("staffInfoLoading","Post > @/safetyEval/org-personnel/modify"),v=(0,o.CV)("staffInfoLoading",(0,a.yT)((r=f(s().m(function e(t){var n;return s().w(function(e){for(;;)if(0===e.n)return n=t.id,e.a(2,(0,a.$P)("/safetyEval/org-personnel/delete",{data:(0,l.gR)(n)}))},e)})),function(e){return r.apply(this,arguments)}))),h=(0,o.CV)("staffInfoLoading",(0,a.yT)((i=f(s().m(function e(t){var n;return s().w(function(e){for(;;)if(0===e.n)return n=t.id,e.a(2,(0,a.$P)("/safetyEval/org-personnel/reset-password",{data:(0,l.gR)(n)}))},e)})),function(e){return i.apply(this,arguments)})))},93316(e,t,n){"use strict";n.r(t),n.d(t,{staffResignationApplyAdd:()=>a,staffResignationApplyInfo:()=>o,staffResignationApplyList:()=>i});var r=n(15998),i=(0,r.CV)("staffResignationApplyLoading","Get > /safetyEval/org-resign-apply/page","staffResignationApplyList: [] | res.data || [] & staffResignationApplyTotal: 0 | res.total || 0"),o=(0,r.CV)("staffResignationApplyLoading","Get > /safetyEval/org-resign-apply/get","resignApplyDetail: {} | res.data || {}"),a=(0,r.CV)("staffResignationApplyLoading","Post > @/safetyEval/org-resign-apply/save")},97467(e,t,n){"use strict";n.r(t),n.d(t,{dictValuesData:()=>u,getUserlistAll:()=>p,projectHasUser:()=>d,userCertificateAdd:()=>a,userCertificateEdit:()=>l,userCertificateInfo:()=>o,userCertificateIsExistCertNo:()=>f,userCertificateList:()=>i,userCertificateRemove:()=>c,userCertificateStatPage:()=>s});var r=n(15998),i=(0,r.CV)("userCertificateLoading","Post > @/certificate/userCertificate/list"),o=(0,r.CV)("userCertificateLoading","Get > /certificate/userCertificate/getInfoById/{id}"),a=(0,r.CV)("userCertificateLoading","Post > @/certificate/userCertificate/save"),l=(0,r.CV)("userCertificateLoading","Put > @/certificate/userCertificate/edit"),s=(0,r.CV)("userCertificateLoading","Post > @/certificate/userCertificate/corpCertificateStatPage"),c=(0,r.CV)("userCertificateLoading","Delete > @/certificate/userCertificate/delete/{id}"),u=(0,r.CV)("userCertificateLoading","Get > /config/dict-trees/list/by/dictValues"),f=(0,r.CV)("userCertificateLoading","Get > /certificate/userCertificate/isExistCertNo"),d=(0,r.CV)("userCertificateLoading","Get > /xgfManager/project/projectHasUser"),p=(0,r.CV)("corpCertificateLoading","Post > @/certificate/user/listAll")},30159(e,t,n){"use strict";n.d(t,{A:()=>u});var r=n(26380),i=n(41038),o=n(87160),a=n(96540),l=n(38623),s=n(74848);function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return c(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?c(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),y=p[0],m=p[1];return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(r.A.Item,{name:n,label:u,valuePropName:"fileList",getValueProps:function(e){return Array.isArray(e)?{fileList:e}:{fileList:e?e.split(",").map(function(e){return{url:e,uid:e,status:"done",name:"附件"}}):[]}},getValueFromEvent:function(e){var t=e.fileList;return(null==t?void 0:t.map(function(e){var t;return{url:(null==(t=e.response)||null==(t=t.data)?void 0:t.url)||e.url,uid:e.uid,status:e.status,name:e.name,percent:e.percent}}))||[]},children:(0,s.jsx)(i.A,{listType:"picture-card",headers:{token:sessionStorage.getItem("token")},maxCount:f,accept:d,action:"".concat(window.process.env.app.API_HOST,"/safetyEval/file/upload"),onPreview:function(e){var t;(t=e.url||e.thumbUrl,/\.(png|jpe?g|gif|bmp|webp|svg)(\?.*)?$/i.test(t||""))?m(e.url||e.thumbUrl):window.open(e.url||e.thumbUrl)},children:(0,s.jsxs)("button",{style:{border:0,background:"none"},type:"button",children:[(0,s.jsx)(l.A,{}),(0,s.jsx)("div",{style:{marginTop:8},children:"上传附件"})]})})}),(0,s.jsx)(o.A,{style:{display:"none"},preview:{visible:!!y,src:y,onVisibleChange:function(e){e||m("")}}})]})}},63910(e,t,n){"use strict";n.d(t,{Ay:()=>l,Bi:()=>o});var r=n(87160),i=(n(42443),n(85196),n(74848));function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=window.fileUrl||"",n=e.filePath,r=e.url;if(n){var i=String(n);return/^https?:\/\//i.test(i)?i:t?"".concat(t).concat(i):i}if(r){var o=String(r);return/^https?:\/\//i.test(o)?o:t?"".concat(t).concat(o):o}return""}function a(e){var t=e.files,n=e.width,a=void 0===n?100:n,l=e.height,s=void 0===l?100:l,c=((void 0===t?[]:t)||[]).filter(Boolean).map(o).filter(Boolean);return c.length?(0,i.jsx)(r.A.PreviewGroup,{children:c.map(function(e,t){return(0,i.jsx)(r.A,{src:e,alt:"",width:a,height:s,wrapperStyle:{marginRight:10,marginBottom:10}},"".concat(e,"-").concat(t))})}):(0,i.jsx)("span",{children:"暂无图片"})}a.displayName="CertPreviewImg";let l=a},77016(e,t,n){"use strict";n.d(t,{Ay:()=>f,QQ:()=>u});var r=n(87160),i=n(18182),o=n(74848);function a(e){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function s(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n="".concat(t||""," ").concat(e||"").toLowerCase();return/\.(jpe?g|png|gif|webp|bmp)(\?|#|$)/i.test(n)?"image":"other"}(a,n)?(0,o.jsx)(r.A,{src:a,alt:n||"预览",style:s({maxHeight:480},i)}):(0,o.jsxs)("div",{style:s({minHeight:120,display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",background:"#fafafa",color:"rgba(0,0,0,0.45)"},i),children:[(0,o.jsx)("span",{style:{marginBottom:8},children:"此文件类型不支持内嵌预览"}),(0,o.jsx)("span",{children:"请点击下方「新窗口打开」按钮在浏览器中查看"})]}):(0,o.jsx)("div",{style:s({minHeight:120,display:"flex",alignItems:"center",justifyContent:"center",background:"#fafafa",color:"rgba(0,0,0,0.45)"},i),children:"暂无上传文件"})}function f(e){var t=e.open,n=e.title,r=e.fileName,a=e.url,l=e.width,s=e.onCancel,f=c(a),d=f&&/\.(jpe?g|png|gif|webp|bmp)(\?|#|$)/i.test(f.toLowerCase());return(0,o.jsx)(i.A,{open:t,destroyOnHidden:!0,title:void 0===n?"文件预览":n,width:void 0===l?720:l,cancelText:"关闭",okText:f?d?"新窗口打开":"重新打开":"关闭",onCancel:s,onOk:function(){f&&window.open(f,"_blank"),null==s||s()},children:t&&(0,o.jsxs)("div",{children:[r&&(0,o.jsx)("div",{style:{padding:12,background:"#f8fafc",border:"1px solid #f0f0f0",borderRadius:4,marginBottom:12,fontWeight:500},children:r}),(0,o.jsx)(u,{url:f,fileName:r})]})})}},85029(e,t,n){"use strict";n.d(t,{A:()=>b});var r=n(15998),i=n(71500),o=n(36223),a=n(96540),l=n(21023),s=n(39724),c=n(30896),u=n(26676),f=n(85497),d=n(88648),p=n(74848);function y(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return m(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(m(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,m(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,m(u,"constructor",c),m(c,"constructor",s),s.displayName="GeneratorFunction",m(c,i,"GeneratorFunction"),m(u),m(u,i,"Generator"),m(u,r,function(){return this}),m(u,"toString",function(){return"[object Generator]"}),(y=function(){return{w:o,m:f}})()}function m(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(m=function(e,t,n,r){function o(t,n){m(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function v(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),j=b[0],x=b[1],S=(0,f.A)(),C=(0,u.A)(),A=C.loading,w=C.getFile;return(0,a.useEffect)(function(){var e,t;console.log(S),(e=y().m(function e(){var t,n;return y().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,d.userCertificateInfo({id:S.id});case 1:return t=e.v,e.n=2,w({eqType:c.c[m],eqForeignKey:t.data.userCertificateId});case 2:n=e.v,t.data.licenseFile=n,x(t.data||{});case 3:return e.a(2)}},e)}),t=function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){v(o,r,i,a,l,"next",e)}function l(e){v(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return t.apply(this,arguments)})()},[]),(0,p.jsx)("div",{children:(0,p.jsx)(l.A,{title:"证书信息查看",children:(0,p.jsxs)("div",{children:[(0,p.jsx)(i.A,{orientation:"left",children:"人员信息"}),(0,p.jsx)(o.A,{bordered:!0,loding:A,items:[{label:"姓名",children:j.name},{label:"企业名称",children:j.corpinfoName},{label:"部门名称",children:j.departmentName},{label:"岗位名称",children:j.userPostName},{label:"就职状态",children:(0,p.jsx)("div",{children:g[j.employmentStatus]})}],column:2,labelStyle:{width:200},contentStyle:{width:500}}),(0,p.jsx)(i.A,{orientation:"left",children:"证书信息"}),(0,p.jsx)(o.A,{bordered:!0,loding:A,items:[{label:"证书名称",children:j.certificateName},{label:"证书编号",children:j.certificateCode},{label:"岗位名称",children:j.postName},{label:"发证机构",children:j.issuingAuthority},{label:"发证日期",children:j.dateIssue},{label:"有效期至",children:(0,p.jsx)("div",{children:"".concat(null!=(n=j.certificateDateStart)?n:""," - ").concat(null!=(r=j.certificateDateEnd)?r:"")})},{label:"证照照片",children:(0,p.jsx)(s.A,{files:j.licenseFile})}],column:2,labelStyle:{width:200},contentStyle:{width:500}})]})})})})},70529(e,t,n){"use strict";n.d(t,{A:()=>Q});var r=n(57971),i=n(15998),o=n(26380),a=n(18182),l=n(87959),s=n(71021),c=n(73133),u=n(96540),f=n(68808),d=n(51315),p=n(21023),y=n(6480),m=n(89761);n(8051);var v=n(75228),h=n(49269),g=n(89490),b=n(20977),j=n(30896),x=n(18939),S=n(26676),C=n(85497),A=n(35525),w=n(44346),O=n(92309),P=n(88648),I=n(77539),E=n(56347),N=n(74848);function L(e){return(L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function T(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return k(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(k(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,k(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,k(u,"constructor",c),k(c,"constructor",s),s.displayName="GeneratorFunction",k(c,i,"GeneratorFunction"),k(u),k(u,i,"Generator"),k(u,r,function(){return this}),k(u,"toString",function(){return"[object Generator]"}),(T=function(){return{w:o,m:f}})()}function k(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(k=function(e,t,n,r){function o(t,n){k(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function F(e){return function(e){if(Array.isArray(e))return M(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||V(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function D(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function R(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){D(o,r,i,a,l,"next",e)}function l(e){D(o,r,i,a,l,"throw",e)}a(void 0)})}}function q(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function _(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||V(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function V(e,t){if(e){if("string"==typeof e)return M(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?M(e,t):void 0}}function M(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0xa00000})){t.n=3;break}return l.Ay.error("选择的图片不能大于10MB"),t.a(2);case 3:return t.n=4,C({single:!1,files:V});case 4:return t.n=5,L({single:!1,files:n.certificateImgs,params:{type:j.c[e.certificatePhotoType],foreignKey:c}});case 5:if(r=t.v.id,n.certificateDateStart=n.certificateDate[0],n.certificateDateEnd=n.certificateDate[1],n.type=e.personnelType,n.typeName=({tezhongzuoye:"特种作业人员",tzsbczry:"特种设备操作人员",zyfzr:"主要负责人",aqscglry:"安全生产管理人员"})[e.personnelType],!e.currentId){t.n=7;break}return n.id=e.currentId,n.userCertificateId=c,t.n=6,e.requestEdit(n).then(function(t){t.success&&(en(),e.getData(),e.onSuccess(c),l.Ay.success("编辑成功"))});case 6:t.n=8;break;case 7:return n.userCertificateId=r,t.n=8,e.requestAdd(n).then(function(t){t.success&&(en(),e.getData(),e.onSuccess(c),l.Ay.success("新增成功"))});case 8:return t.a(2)}},t)})),function(e){return r.apply(this,arguments)});return(0,u.useEffect)(function(){var t;W?e.userCertificateIsExistCertNo({certNo:W,id:null!=(t=e.currentId)?t:""}).then(function(e){e.data?(i.setFields([{name:"certificateCode",errors:["证书编号重复"]}]),X(!1)):X(!0)}):i.setFields([{name:"certificateCode",errors:[]}])},[W]),(0,N.jsx)(a.A,{open:e.open,maskClosable:!1,title:e.currentId?"编辑":"新增",width:800,confirmLoading:h||P||D||e.loding,onOk:i.submit,onCancel:en,children:(0,N.jsx)(f.A,{form:i,onValuesChange:function(e){if("certificateCode"in e){var t;Q(null!=(t=e.certificateCode)?t:"")}},span:24,values:{securityFlag:0},options:[{name:"userId",label:"选择人员",render:b.O.SELECT,items:H},{name:"userName",label:"人员名称",onlyForLabel:!0},{name:"certificateName",label:"证书名称"},{name:"certificateCode",label:"证书编号"},{name:"postId",label:"岗位名称",render:(0,N.jsx)(m.A,{dictValue:e.dictionaryType,onGetLabel:function(e){return i.setFieldValue("postName",e)}})},{name:"postName",label:"岗位名称",onlyForLabel:!0},{name:"issuingAuthority",label:"发证机构"},{name:"dateIssue",label:"发证日期",render:b.O.DATE},{name:"certificateDate",label:"有效期",render:b.O.DATE_RANGE,rules:[{validator:function(e,t){return Array.isArray(t)&&t.every(function(e){return""===e})?Promise.reject(Error("请选择有效期")):Promise.resolve()}}]},{name:"certificateImgs",label:"证照照片",render:(0,N.jsx)(g.A,{maxCount:2,onGetRemoveFile:function(e){M([].concat(F(V),[e]))},tipContent:(0,N.jsx)("div",{style:{lineHeight:1.6,color:"red",fontSize:12},children:(0,N.jsx)("div",{children:"温馨提示:用户要上传证照照片正反面(证照照片数量是2张)单张大小不超过10MB,支持jpg、jpeg、png格式。"})})})}],labelCol:{span:10},showActionButtons:!1,onFinish:er})})};let Q=(0,i.dm)([P.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){var t,n=e.props,r=e.certificatePhotoType,i=e.displayType,f=e.personnelType,m=e.permissionAdd,g=e.permissionEdit,b=e.permissionView,x=e.permissionDel,A=e.dictionaryType,O=U((0,u.useState)(!1),2),P=O[0],I=O[1],E=U((0,u.useState)(""),2),L=E[0],k=E[1],D=(0,C.A)(),q=(0,S.A)(),V=q.loading,M=q.getFile,Q=U(o.A.useForm(),1)[0],W=(0,w.A)(n.userCertificateList,{form:Q,transform:function(e){return _(_({},e),{},{eqCorpinfoId:D.corpinfoId,eqType:f})}}),Y=W.tableProps,H=W.getData,$=(t=R(T().m(function e(t){return T().w(function(e){for(;;)switch(e.n){case 0:n.projectHasUser({eqUserId:t.userId}).then(function(e){if(console.log(e),e.data&&e.data.length>0){var r=[],i=[];e.data.forEach(function(e){r.push(e.projectName),i.push(e.userName)}),a.A.confirm({title:"提示",content:(0,N.jsxs)("div",{children:[(0,N.jsxs)("div",{children:["【",F(new Set(i)).join(","),"】有正在进行的项目,包含【",F(new Set(r)).join(","),"】确定删除吗?"]}),(0,N.jsx)("div",{style:{fontSize:14,color:"red"},children:"删除可能会对正在进行的项目造成异常状态,请谨慎操作。"})]}),onOk:function(){n.userCertificateRemove({id:t.id}).then(function(e){e.success&&(l.Ay.success("删除成功"),H())})}})}else a.A.confirm({title:"提示",content:"确定删除吗?",onOk:function(){n.userCertificateRemove({id:t.id}).then(function(e){e.success&&(l.Ay.success("删除成功"),H())})}})});case 1:return e.a(2)}},e)})),function(e){return t.apply(this,arguments)}),J=U((0,u.useState)({}),2),K=J[0],X=J[1],Z=U((0,u.useState)(new Set),2),ee=Z[0],et=Z[1],en=(0,u.useRef)(new Set),er=(0,u.useRef)([]),ei=(0,u.useRef)(0),eo=function(){for(;er.current.length>0&&ei.current<3;)!function(){var e=er.current.shift(),t=e.id,n=e.resolve,i=e.reject;ei.current++,M({eqType:j.c[r],eqForeignKey:t}).then(function(e){X(function(n){return _(_({},n),{},z({},t,e||[]))}),n(e)}).catch(function(e){console.error("图片加载失败:",e),i(e)}).finally(function(){ei.current--,et(function(e){var n=new Set(e);return n.delete(t),n}),eo()})}()};(0,u.useEffect)(function(){if("View"===i){var e=document.createElement("style");return e.innerHTML="\n .search-layout::after {\n content: none !important;\n display: none !important;\n }\n ",document.head.appendChild(e),function(){document.head.removeChild(e)}}},[]),(0,u.useEffect)(function(){if(Y.dataSource){var e=new Set(Y.dataSource.map(function(e){return e.userCertificateId}).filter(Boolean));X(function(t){var n={};return Object.keys(t).forEach(function(r){e.has(r)&&(n[r]=t[r])}),n})}},[Y.dataSource]);var ea=(0,u.useRef)(new Set);return(0,u.useEffect)(function(){return Y.dataSource&&Y.dataSource.forEach(function(e){var t=e.userCertificateId;t&&!ea.current.has(t)&&(ea.current.add(t),!t||K[t]||ee.has(t)||en.current.has(t)?Promise.resolve():(en.current.add(t),et(function(e){return new Set([].concat(F(e),[t]))}),new Promise(function(e,n){er.current.push({id:t,resolve:e,reject:n}),eo()}).finally(function(){en.current.delete(t)})))}),function(){ea.current.clear()}},[Y.dataSource]),(0,N.jsxs)(p.A,{children:[(0,N.jsx)(y.A,{form:Q,options:[{name:"likeUserName",label:"姓名"},{name:"likePostName",label:"岗位名称"}],onFinish:H}),(0,N.jsx)(v.A,_({loding:V,options:"View"!==i,toolBarRender:function(){return(0,N.jsx)(N.Fragment,{children:"View"!==i&&n.permission(m)&&(0,N.jsx)(s.Ay,{type:"primary",icon:(0,N.jsx)(d.A,{}),onClick:function(){I(!0)},children:"新增"})})},columns:[{title:"姓名",dataIndex:"name"},{title:"证书名称",dataIndex:"certificateName"},{title:"证书编号",dataIndex:"certificateCode"},{title:"岗位名称",dataIndex:"postName"},{title:"有效期至",dataIndex:"certificateNo",width:280,render:function(e,t){var n,r;return(0,N.jsx)("div",{children:"".concat(null!=(n=t.certificateDateStart)?n:""," - ").concat(null!=(r=t.certificateDateEnd)?r:"")})}},{title:"就职状态",dataIndex:"certificateNo",render:function(e,t){return(0,N.jsx)("div",{children:G[t.employmentStatus]||"-"})}},{title:"图片",dataIndex:"name",render:function(e,t){var n=K[t.userCertificateId]||[];return n.length?(0,N.jsx)(h.A,{files:n}):(0,N.jsx)("span",{children:"无"})}},{title:"操作",width:200,render:function(e,t){return(0,N.jsxs)(c.A,{children:[n.permission(b)&&(0,N.jsx)(s.Ay,{type:"link",onClick:function(){return n.history.push("./View?id=".concat(t.id))},children:"查看"}),"View"!==i&&n.permission(g)&&(0,N.jsx)(s.Ay,{type:"link",onClick:function(){I(!0),k(t.id)},children:"编辑"}),"View"!==i&&n.permission(x)&&(0,N.jsx)(s.Ay,{danger:!0,type:"link",onClick:function(){return $(t)},children:"删除"})]})}}]},Y)),P&&(0,N.jsx)(B,{open:P,loding:n.userCertificate.userCertificateLoading,getData:H,currentId:L,requestAdd:n.userCertificateAdd,requestEdit:n.userCertificateEdit,requestDetails:n.userCertificateInfo,userCertificateIsExistCertNo:n.userCertificateIsExistCertNo,getUserlistAll:n.getUserlistAll,certificatePhotoType:r,personnelType:f,dictionaryType:A,onCancel:function(){I(!1),k("")},onSuccess:function(e){X(function(t){var n=_({},t);return delete n[e],n})}})]})}))},13290(e,t,n){"use strict";n.d(t,{A:()=>d});var r=n(96540),i=n(71021),o=n(87160),a=n(74848);function l(e){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var s=["url","children"];function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function u(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return f(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?f(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),p=d[0],y=d[1],m=function(e){if(!e)return"";var t=String(e);if(/^https?:\/\//i.test(t))return t;var n=window.fileUrl||"";return n?"".concat(n).concat(t):t}(n);return(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)(i.Ay,u(u({type:"link",size:"small",disabled:!m,onClick:function(){/\.(png|jpe?g|gif|bmp|webp|svg)(\?.*)?$/i.test(m||"")?y(m):window.open(m,"_blank")}},c),{},{children:void 0===l?"预览":l})),p&&(0,a.jsx)(o.A,{src:p,style:{display:"none"},preview:{visible:!0,onVisibleChange:function(e){e||y("")}}})]})}},74565(e,t,n){"use strict";n.d(t,{A:()=>b});var r=n(15998),i=n(71500),o=n(36223),a=n(96540),l=n(21023),s=n(39724),c=n(30896),u=n(26676),f=n(85497),d=n(88648),p=n(74848);function y(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return m(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(m(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,m(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,m(u,"constructor",c),m(c,"constructor",s),s.displayName="GeneratorFunction",m(c,i,"GeneratorFunction"),m(u),m(u,i,"Generator"),m(u,r,function(){return this}),m(u,"toString",function(){return"[object Generator]"}),(y=function(){return{w:o,m:f}})()}function m(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(m=function(e,t,n,r){function o(t,n){m(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function v(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),j=b[0],x=b[1],S=(0,f.A)(),C=(0,u.A)(),A=C.loading,w=C.getFile;return(0,a.useEffect)(function(){var e,t;console.log(S.personnelType),(e=y().m(function e(){var t,n;return y().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,d.userCertificateInfo({id:S.id});case 1:return t=e.v,e.n=2,w({eqType:c.c[m],eqForeignKey:t.data.userCertificateId});case 2:n=e.v,t.data.licenseFile=n,x(t.data||{});case 3:return e.a(2)}},e)}),t=function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){v(o,r,i,a,l,"next",e)}function l(e){v(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return t.apply(this,arguments)})()},[]),(0,p.jsx)("div",{children:(0,p.jsx)(l.A,{title:"证书信息查看",children:(0,p.jsxs)("div",{children:[(0,p.jsx)(i.A,{orientation:"left",children:"人员信息"}),(0,p.jsx)(o.A,{bordered:!0,loding:A,items:[{label:"姓名",children:j.name},{label:"企业名称",children:j.corpinfoName},{label:"部门名称",children:j.departmentName},{label:"岗位名称",children:j.userPostName},{label:"就职状态",children:(0,p.jsx)("div",{children:g[j.employmentStatus]})}],column:2,labelStyle:{width:200},contentStyle:{width:500}}),(0,p.jsx)(i.A,{orientation:"left",children:"证书信息"}),(0,p.jsx)(o.A,{bordered:!0,loding:A,items:[{label:"证书名称",children:j.certificateName},{label:"证书编号",children:j.certificateCode},{label:"发证机构",children:j.issuingAuthority},{label:"tzsbczry"===S.personnelType?"操作项目":"行业类别",children:"tzsbczry"===S.personnelType?j.assignmentOperatingItemsName:j.industryCategoryName},{label:"tzsbczry"===S.personnelType?"作业类别":"操作项目",children:"tzsbczry"===S.personnelType?j.assignmentCategoryName:j.industryOperatingItemsName},{label:"发证日期",children:j.dateIssue},{label:"复审日期",children:j.reviewDate},{label:"有效期至",children:(0,p.jsx)("div",{children:"".concat(null!=(n=j.certificateDateStart)?n:""," - ").concat(null!=(r=j.certificateDateEnd)?r:"")})},{label:"证照照片",children:(0,p.jsx)(s.A,{files:j.licenseFile})}],column:2,labelStyle:{width:200},contentStyle:{width:500}})]})})})})},60065(e,t,n){"use strict";n.d(t,{A:()=>Q});var r=n(57971),i=n(15998),o=n(26380),a=n(18182),l=n(87959),s=n(71021),c=n(73133),u=n(96540),f=n(56347),d=n(68808),p=n(51315),y=n(21023),m=n(6480),v=n(89761),h=n(75228),g=n(49269),b=n(89490),j=n(20977),x=n(30896),S=n(18939),C=n(26676),A=n(85497),w=n(35525),O=n(44346),P=n(92309),I=n(88648),E=n(77539),N=n(74848);function L(e){return(L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function T(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return k(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(k(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,k(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,k(u,"constructor",c),k(c,"constructor",s),s.displayName="GeneratorFunction",k(c,i,"GeneratorFunction"),k(u),k(u,i,"Generator"),k(u,r,function(){return this}),k(u,"toString",function(){return"[object Generator]"}),(T=function(){return{w:o,m:f}})()}function k(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(k=function(e,t,n,r){function o(t,n){k(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function F(e){return function(e){if(Array.isArray(e))return M(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||V(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function D(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function R(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){D(o,r,i,a,l,"next",e)}function l(e){D(o,r,i,a,l,"throw",e)}a(void 0)})}}function q(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function _(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||V(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function V(e,t){if(e){if("string"==typeof e)return M(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?M(e,t):void 0}}function M(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0xa00000})){t.n=3;break}return l.Ay.error("选择的图片不能大于10MB"),t.a(2);case 3:return t.n=4,h({single:!1,files:V});case 4:return t.n=5,O({single:!1,files:n.certificateImgs,params:{type:x.c[e.certificatePhotoType],foreignKey:c}});case 5:if(r=t.v.id,n.type=e.personnelType,n.typeName=({tezhongzuoye:"特种作业人员",tzsbczry:"特种设备操作人员",zyfzr:"主要负责人",aqscglry:"安全生产管理人员"})[e.personnelType],n.certificateDateStart=n.certificateDate[0],n.certificateDateEnd=n.certificateDate[1],!e.currentId){t.n=7;break}return n.id=e.currentId,n.userCertificateId=c,t.n=6,e.requestEdit(n).then(function(t){t.success&&(eo(),e.getData(),e.onSuccess(c),l.Ay.success("编辑成功"))});case 6:t.n=8;break;case 7:return n.userCertificateId=r,t.n=8,e.requestAdd(n).then(function(t){t.success&&(eo(),e.getData(),e.onSuccess(c),l.Ay.success("新增成功"))});case 8:return t.a(2)}},t)})),function(e){return r.apply(this,arguments)});return(0,N.jsx)(a.A,{open:e.open,maskClosable:!1,title:e.currentId?"编辑":"新增",width:800,confirmLoading:m||A||L||e.loding,onOk:i.submit,onCancel:eo,children:(0,N.jsx)(d.A,{form:i,onValuesChange:function(e){if("industryCategoryCode"in e){var t,n=e.industryCategoryCode;n&&(_(n),i.setFieldsValue({industryOperatingItemsCode:void 0}))}if("assignmentOperatingItemsCode"in e){var r=e.assignmentOperatingItemsCode;r&&(_(r),i.setFieldsValue({assignmentCategoryCode:void 0}))}"certificateCode"in e&&Q(null!=(t=e.certificateCode)?t:"")},span:24,values:{securityFlag:0},options:[{name:"userId",label:"选择人员",render:j.O.SELECT,items:Z},{name:"certificateName",label:"证书名称"},{name:"certificateCode",label:"证书编号"},{name:"issuingAuthority",label:"发证机构"},{name:"industryCategoryCode",label:"行业类别",hidden:"tezhongzuoye"!==e.personnelType,render:(0,N.jsx)(v.A,{dictValue:e.dictionaryType,onGetLabel:function(e){return i.setFieldValue("industryCategoryName",e)}})},{name:"industryCategoryName",label:"行业类别名称",onlyForLabel:!0},{name:"industryOperatingItemsCode",label:"操作项目",hidden:"tezhongzuoye"!==e.personnelType,render:(0,N.jsx)(v.A,{dictValue:q,onGetLabel:function(e){return i.setFieldValue("industryOperatingItemsName",e)}})},{name:"industryOperatingItemsName",label:"操作项目名称",onlyForLabel:!0},{name:"assignmentOperatingItemsCode",label:"操作项目",hidden:"tzsbczry"!==e.personnelType,render:(0,N.jsx)(v.A,{dictValue:e.dictionaryType,onGetLabel:function(e){return i.setFieldValue("assignmentOperatingItemsName",e)}})},{name:"assignmentOperatingItemsName",label:"操作项目名称",onlyForLabel:!0},{name:"assignmentCategoryCode",label:"作业类别",hidden:"tzsbczry"!==e.personnelType,render:(0,N.jsx)(v.A,{dictValue:q,onGetLabel:function(e){return i.setFieldValue("assignmentCategoryName",e)}})},{name:"assignmentCategoryName",label:"作业类别名称",onlyForLabel:!0},{name:"dateIssue",label:"发证日期",render:j.O.DATE},{name:"certificateDate",label:"有效期",render:j.O.DATE_RANGE,rules:[{validator:function(e,t){return Array.isArray(t)&&t.every(function(e){return""===e})?Promise.reject(Error("请选择有效期")):Promise.resolve()}}]},{name:"reviewDate",label:"复审日期",render:j.O.DATE},{name:"certificateImgs",label:"证照照片",render:(0,N.jsx)(b.A,{maxCount:2,onGetRemoveFile:function(e){M([].concat(F(V),[e]))},tipContent:(0,N.jsx)("div",{style:{lineHeight:1.6,color:"red",fontSize:12},children:(0,N.jsx)("div",{children:"温馨提示:用户要上传证照照片正反面(证照照片数量是2张)单张大小不超过10MB,支持jpg、jpeg、png格式。"})})})}],labelCol:{span:10},showActionButtons:!1,onFinish:ea})})};let Q=(0,i.dm)([I.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){var t,n=e.props,r=e.certificatePhotoType,i=e.displayType,f=e.personnelType,d=e.permissionAdd,b=e.permissionEdit,j=e.permissionView,S=e.permissionDel,w=e.dictionaryType,P=U((0,u.useState)(!1),2),I=P[0],E=P[1],L=U((0,u.useState)(""),2),k=L[0],D=L[1],q=U((0,u.useState)(""),2),V=q[0],M=q[1],Q=(0,A.A)(),W=(0,C.A)(),Y=W.loading,H=W.getFile,$=U(o.A.useForm(),1)[0],J=(0,O.A)(n.userCertificateList,{form:$,transform:function(e){return e.eqIndustryCategoryCode&&M(e.eqIndustryCategoryCode),e.eqAssignmentOperatingItemsCode&&M(e.eqAssignmentOperatingItemsCode),_(_({},e),{},{eqCorpinfoId:Q.corpinfoId,eqType:f})}}),K=J.tableProps,X=J.getData;(0,u.useEffect)(function(){if("View"===i){var e=document.createElement("style");return e.innerHTML="\n .search-layout::after {\n content: none !important;\n display: none !important;\n }\n ",document.head.appendChild(e),function(){document.head.removeChild(e)}}},[]);var Z=(t=R(T().m(function e(t){return T().w(function(e){for(;;)switch(e.n){case 0:n.projectHasUser({eqUserId:t.userId}).then(function(e){if(e.data&&e.data.length>0){var r=[],i=[];e.data.forEach(function(e){r.push(e.projectName),i.push(e.userName)}),a.A.confirm({title:"提示",content:(0,N.jsxs)("div",{children:[(0,N.jsxs)("div",{children:["【",F(new Set(i)).join(","),"】有正在进行的项目,包含【",F(new Set(r)).join(","),"】确定删除吗?"]}),(0,N.jsx)("div",{style:{fontSize:14,color:"red"},children:"删除可能会对正在进行的项目造成异常状态,请谨慎操作。"})]}),onOk:function(){n.userCertificateRemove({id:t.id}).then(function(e){e.success&&(l.Ay.success("删除成功"),X())})}})}else a.A.confirm({title:"提示",content:"确定删除吗?",onOk:function(){n.userCertificateRemove({id:t.id}).then(function(e){e.success&&(l.Ay.success("删除成功"),X())})}})});case 1:return e.a(2)}},e)})),function(e){return t.apply(this,arguments)}),ee=U((0,u.useState)({}),2),et=ee[0],en=ee[1],er=U((0,u.useState)(new Set),2),ei=er[0],eo=er[1],ea=(0,u.useRef)(new Set),el=(0,u.useRef)([]),es=(0,u.useRef)(0),ec=function(){for(;el.current.length>0&&es.current<3;)!function(){var e=el.current.shift(),t=e.id,n=e.resolve,i=e.reject;es.current++,H({eqType:x.c[r],eqForeignKey:t}).then(function(e){en(function(n){return _(_({},n),{},z({},t,e||[]))}),n(e)}).catch(function(e){console.error("图片加载失败:",e),i(e)}).finally(function(){es.current--,eo(function(e){var n=new Set(e);return n.delete(t),n}),ec()})}()};(0,u.useEffect)(function(){if(K.dataSource){var e=new Set(K.dataSource.map(function(e){return e.userCertificateId}).filter(Boolean));en(function(t){var n={};return Object.keys(t).forEach(function(r){e.has(r)&&(n[r]=t[r])}),n})}},[K.dataSource]);var eu=(0,u.useRef)(new Set);return(0,u.useEffect)(function(){return K.dataSource&&K.dataSource.forEach(function(e){var t=e.userCertificateId;t&&!eu.current.has(t)&&(eu.current.add(t),!t||et[t]||ei.has(t)||ea.current.has(t)?Promise.resolve():(ea.current.add(t),eo(function(e){return new Set([].concat(F(e),[t]))}),new Promise(function(e,n){el.current.push({id:t,resolve:e,reject:n}),ec()}).finally(function(){ea.current.delete(t)})))}),function(){eu.current.clear()}},[K.dataSource]),(0,N.jsxs)(y.A,{children:[(0,N.jsx)(m.A,{onValuesChange:function(e){if("eqIndustryCategoryCode"in e){var t=e.eqIndustryCategoryCode;t&&(M(t),$.setFieldsValue({eqIndustryOperatingItemsCode:void 0}))}if("eqAssignmentOperatingItemsCode"in e){var n=e.eqAssignmentOperatingItemsCode;n&&(M(n),$.setFieldsValue({eqAssignmentCategoryCode:void 0}))}},form:$,options:[{name:"likeUserName",label:"姓名"},{name:"tzsbczry"===f?"eqAssignmentOperatingItemsCode":"eqIndustryCategoryCode",label:"tzsbczry"===f?"操作项目":"行业类别",render:(0,N.jsx)(v.A,{dictValue:w})},{name:"tzsbczry"===f?"eqAssignmentCategoryCode":"eqIndustryOperatingItemsCode",label:"tzsbczry"===f?"作业类别":"操作项目",render:(0,N.jsx)(v.A,{dictValue:V})}],onFinish:X}),(0,N.jsx)(h.A,_({loding:Y,options:"View"!==i,toolBarRender:function(){return(0,N.jsx)(N.Fragment,{children:"View"!==i&&n.permission(d)&&(0,N.jsx)(s.Ay,{type:"primary",icon:(0,N.jsx)(p.A,{}),onClick:function(){E(!0)},children:"新增"})})},columns:[{title:"姓名",dataIndex:"name"},{title:"证书名称",dataIndex:"certificateName"},{title:"证书编号",dataIndex:"certificateCode"},{title:"tzsbczry"===f?"操作项目":"行业类别",dataIndex:"tzsbczry"===f?"assignmentOperatingItemsName":"industryCategoryName"},{title:"tzsbczry"===f?"作业类别":"操作项目",dataIndex:"tzsbczry"===f?"assignmentCategoryName":"industryOperatingItemsName"},{title:"有效期至",dataIndex:"certificateDate",width:280,render:function(e,t){var n,r;return(0,N.jsx)("div",{children:"".concat(null!=(n=t.certificateDateStart)?n:""," - ").concat(null!=(r=t.certificateDateEnd)?r:"")})}},{title:"就职状态",dataIndex:"employmentStatus",render:function(e,t){return(0,N.jsx)("div",{children:G[t.employmentStatus]||"-"})}},{title:"图片",dataIndex:"name",render:function(e,t){var n=et[t.userCertificateId]||[];return n.length?(0,N.jsx)(g.A,{files:n}):(0,N.jsx)("span",{children:"无"})}},{title:"操作",width:200,render:function(e,t){return(0,N.jsxs)(c.A,{children:[n.permission(j)&&(0,N.jsx)(s.Ay,{type:"link",onClick:function(){return n.history.push("./View?id=".concat(t.id,"&personnelType=").concat(f))},children:"查看"}),"View"!==i&&n.permission(b)&&(0,N.jsx)(s.Ay,{type:"link",onClick:function(){E(!0),D(t.id)},children:"编辑"}),"View"!==i&&n.permission(S)&&(0,N.jsx)(s.Ay,{danger:!0,type:"link",onClick:function(){return Z(t)},children:"删除"})]})}}]},K)),I&&(0,N.jsx)(B,{open:I,loding:n.userCertificate.userCertificateLoading,getData:X,currentId:k,requestAdd:n.userCertificateAdd,requestEdit:n.userCertificateEdit,requestDetails:n.userCertificateInfo,userCertificateIsExistCertNo:n.userCertificateIsExistCertNo,certificatePhotoType:r,getUserlistAll:n.getUserlistAll,personnelType:f,dictionaryType:w,onCancel:function(){E(!1),D("")},onSuccess:function(e){en(function(t){var n=_({},t);return delete n[e],n})}})]})}))},4178(e,t,n){"use strict";n.d(t,{A:()=>f});var r=n(41038),i=n(71021),o=n(96540),a=n(74848);function l(e){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function c(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return u(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?u(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),m=y[0],v=y[1];return(0,a.jsx)(r.A,c(c({showUploadList:!1,action:l,headers:{token:sessionStorage.getItem("token")},onChange:function(e){if("uploading"===e.file.status)v(!0);else if("done"===e.file.status){var t;v(!1),null==s||s(null==(t=e.file.response)?void 0:t.data,e.file)}else"error"===e.file.status&&v(!1)}},f),{},{children:(0,a.jsx)(i.Ay,c(c({type:"link",size:"small",loading:m},p),{},{children:void 0===d?"上传":d}))}))}},88565(e,t,n){"use strict";n.d(t,{$t:()=>i,PZ:()=>c,Uq:()=>u,WL:()=>r,ZM:()=>s,iT:()=>a,wC:()=>l,xv:()=>f,zL:()=>o});var r={pending:{label:"待确认",color:"warning"},passed:{label:"确认通过",color:"success"},rejected:{label:"打回",color:"error"}},i={1:{label:"已审核",color:"success"},2:{label:"审核中",color:"processing"},3:{label:"打回",color:"error"}},o={pending:{label:"待核验",color:"blue"},arranging:{label:"待安排",color:"warning"},passed:{label:"已核验",color:"success"}},a={pending:{label:"待公示",color:"warning"},published:{label:"已公示",color:"success"}},l={1:{label:"已备案",color:"success"},2:{label:"审核中",color:"processing"},3:{label:"已打回",color:"error"},4:{label:"变更审核中",color:"processing"},5:{label:"暂存",color:"default"}},s=[{label:"男",value:1},{label:"女",value:2}],c={1:"男",2:"女"},u=[{label:"通过",value:1},{label:"不通过",value:3}],f={PASS:{icon:"✅",borderColor:"#059669",bg:"#f0fdf4"},WARN:{icon:"⚠️",borderColor:"#d97706",bg:"#fffbeb"},NOT_PASS:{icon:"❌",borderColor:"#dc2626",bg:"#fef2f2"}}},61860(e,t,n){"use strict";n.d(t,{Z:()=>r});var r=n(96540).createContext({})},28155(e,t,n){"use strict";n.d(t,{CI:()=>f,Dc:()=>l,MQ:()=>c,Pn:()=>v,RK:()=>m,UM:()=>o,Uv:()=>i,W$:()=>s,_W:()=>a,bf:()=>r,eT:()=>p,g$:()=>d,w4:()=>u,z6:()=>y});var r=["万州区","涪陵区","渝中区","大渡口区","江北区","沙坪坝区","九龙坡区","南岸区","北碚区","綦江区","大足区","渝北区","巴南区","黔江区","长寿区","江津区","合川区","永川区","南川区","璧山区","铜梁区","潼南区","荣昌区","开州区","梁平区","武隆区","城口县","丰都县","垫江县","忠县","云阳县","奉节县","巫山县","巫溪县","石柱土家族自治县","秀山土家族苗族自治县","酉阳土家族苗族自治县","彭水苗族土家族自治县"].map(function(e){return{label:e,value:e}}),i=[{label:"正常",value:"正常"},{label:"停业",value:"停业"},{label:"注销",value:"注销"}],o=[{label:"大",value:"大"},{label:"中",value:"中"},{label:"小",value:"小"},{label:"微型",value:"微型"}],a=[{label:"审核备案",value:"审核备案"},{label:"确认备案",value:"确认备案"}],l=[{label:"全部",value:""},{label:"审核备案",value:"1"},{label:"确认备案",value:"2"}],s=[{label:"全部",value:""},{label:"已备案",value:"1"},{label:"未备案",value:"2"}],c=[{label:"已备案",value:"已备案"},{label:"未备案",value:"未备案"}],u=[{label:"全部",value:""},{label:"启用",value:"0"},{label:"禁用",value:"1"}],f=[{label:"煤炭开采业",value:"煤炭开采业"},{label:"金属、非金属矿及其他矿采选业",value:"金属、非金属矿及其他矿采选业"},{label:"陆地石油和天然气开采业",value:"陆地石油和天然气开采业"},{label:"陆上油气管道运输业",value:"陆上油气管道运输业"},{label:"石油加工业,化学原料、化学品及医药制造业",value:"石油加工业,化学原料、化学品及医药制造业"},{label:"烟花爆竹制造业",value:"烟花爆竹制造业"},{label:"金属冶炼",value:"金属冶炼"}],d=[{label:"基础人员",value:"基础人员"},{label:"专职评价师",value:"专职评价师"}],p=[{label:"三级安全评价师(对应职业技能等级三级 / 高级工,入门级)",value:"三级安全评价师(对应职业技能等级三级 / 高级工,入门级)"},{label:"二级安全评价师(对应职业技能等级二级 / 技师,中级)",value:"二级安全评价师(对应职业技能等级二级 / 技师,中级)"},{label:"一级安全评价师(对应职业技能等级一级 / 高级技师,最高级)",value:"一级安全评价师(对应职业技能等级一级 / 高级技师,最高级)"}],y=[{label:"全日制",value:"全日制"},{label:"在职教育",value:"在职教育"}],m=[{label:"专科",value:"专科"},{label:"本科",value:"本科"},{label:"硕士",value:"硕士"},{label:"博士",value:"博士"}],v=[{label:"是",value:1},{label:"否",value:2}]},88648(e,t,n){"use strict";n.r(t),n.d(t,{NS_CORP_CERTIFICATE:()=>a,NS_COURSEWARE:()=>s,NS_DRIVER:()=>x,NS_EQUIP_INFO:()=>h,NS_GLOBAL:()=>i,NS_ORG_DEPARTMENT:()=>f,NS_ORG_INFO:()=>c,NS_ORG_POSITION:()=>d,NS_ORG_QUALIFICATION_CERT:()=>u,NS_PERSNONEL_CERTFICATE:()=>o,NS_QUAL_EXPERT:()=>j,NS_QUAL_FILING:()=>g,NS_QUAL_REVIEW:()=>b,NS_STAFF_CERTIFICATE:()=>y,NS_STAFF_CHANGE_LOG:()=>m,NS_STAFF_INFO:()=>p,NS_STAFF_RESIGNATION_APPLY:()=>v,NS_USER_CERTIFICATE:()=>l});var r=n(15998),i=(0,r.Hx)("global"),o=(0,r.Hx)("personnelCertificate"),a=(0,r.Hx)("corpCertificate"),l=(0,r.Hx)("userCertificate"),s=(0,r.Hx)("courseware"),c=(0,r.Hx)("orgInfo"),u=(0,r.Hx)("orgQualificationCert"),f=(0,r.Hx)("orgDepartment"),d=(0,r.Hx)("orgPosition"),p=(0,r.Hx)("staffInfo"),y=(0,r.Hx)("staffCertificate"),m=(0,r.Hx)("staffChangeLog"),v=(0,r.Hx)("staffResignationApply"),h=(0,r.Hx)("equipInfo"),g=(0,r.Hx)("qualFiling"),b=(0,r.Hx)("qualReview"),j=(0,r.Hx)("qualExpert"),x=(0,r.Hx)("driver")},49788(e,t,n){"use strict";n.d(t,{Cd:()=>l,DX:()=>a,JP:()=>u,VA:()=>s,ej:()=>d,sq:()=>f,tV:()=>c});var r=[{label:"全部",value:""},{label:"暂存",value:"5"},{label:"审核中",value:"2"},{label:"已备案",value:"1"},{label:"已打回",value:"3"}],i=[{label:"全部",value:""},{label:"审核中",value:"2"},{label:"已备案",value:"1"}],o=[{label:"全部",value:""},{label:"已备案",value:"1"},{label:"变更审核中",value:"4"}],a={5:{color:"cyan",label:"暂存"},1:{color:"success",label:"已备案"},2:{color:"processing",label:"审核中"},3:{color:"error",label:"已打回"},4:{color:"warning",label:"变更审核中"}};function l(e){return"filed"===e?i:"change"===e?o:r}var s=[{label:"本地单位",value:"本地单位"},{label:"异地单位",value:"异地单位"}],c={APPLICATION:"application",FILED:"filed",CHANGE:"change"};function u(e){var t=Number(e);return 5===t||3===t}function f(e){return 1===Number(e)}function d(e,t){return t!==c.FILED?u(e):2===Number(e)}},1712(e,t,n){"use strict";n.r(t),n.d(t,{bootstrap:()=>j,mount:()=>g,unmount:()=>b});var r,i,o,a=n(57006),l=n(15998),s=n(87959),c=n(74353),u=n.n(c),f=n(36171);function d(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return p(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(p(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,p(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,p(u,"constructor",c),p(c,"constructor",s),s.displayName="GeneratorFunction",p(c,i,"GeneratorFunction"),p(u),p(u,i,"Generator"),p(u,r,function(){return this}),p(u,"toString",function(){return"[object Generator]"}),(d=function(){return{w:o,m:f}})()}function p(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(p=function(e,t,n,r){function o(t,n){p(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function y(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function m(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){y(o,r,i,a,l,"next",e)}function l(e){y(o,r,i,a,l,"throw",e)}a(void 0)})}}n(16033),u().locale("zh-cn"),(0,a.setJJBCommonAntdMessage)(s.Ay);var v=(0,l.mj)();if(window.fileUrl="https://skqhdg.porthebei.com:9004/file/uploadFiles2/",(0,f.fj)().catch(function(e){console.warn("[getFileUrlFromServer] failed:",(null==e?void 0:e.message)||e)}),!window.__POWERED_BY_QIANKUN__){window.__coreLib={},window.__coreLib.React=n(96540),window.__coreLib.ReactDOM=n(40961),window.__coreLib.jjbCommonLib=n(57006);var h="jjb-saas-auth:oauth:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ7XCJjbGllbnRJZFwiOlwiWlFBUVBKXCIsXCJhY2NvdW50SWRcIjoyMDY5Njc0MjM3ODc0MDEyMTYwLFwidXNlclR5cGVFbnVtXCI6XCJQTEFURk9STVwiLFwidXNlcklkXCI6MjA3MTgzNzgzMzM4ODEzNDQwMSxcInRlbmFudElkXCI6MjA2OTU5NjM5NzkyMDg0OTkyMCxcInRlbmFudE5hbWVcIjpcIumHjeW6huWuieWFqOivhOS7t1wiLFwidGVuYW50UGFyZW50SWRzXCI6XCIwLDIwNjk1OTYzOTc5MjA4NDk5MjBcIixcIm5hbWVcIjpcInRlc3QwMVwiLFwiYWNjZXNzVGlja2V0XCI6XCJHZWhvendnZXJTTGdlaVVLNWNzSE9kbkFOZ1RKUXpMNzc2MlYxbHJBMkRkMlFnaklkZnowdVcwdHBqeE9cIixcInJlZnJlc2hUaWNrZXRcIjpcIkNYRHprclo2dFZyT3oyaTY4b2Y3cmVHWGxtcHJ4MTJFUmdMWkxjQlZXbHRyYjhrRWRTTk90Uk8ySklzVVwiLFwiZXhwaXJlSW5cIjo2MDQ4MDAsXCJyZWZyZXNoRXhwaXJlc0luXCI6NjA0ODAwLFwib3JnSWRcIjoyMDY5NTk2Mzk3OTIwODQ5OTIwLFwib3JnTmFtZVwiOlwi6YeN5bqG5a6J5YWo6K-E5Lu3XCIsXCJvcmdJZHNcIjpbMjA2OTU5NjM5NzkyMDg0OTkyMF0sXCJyb2xlc1R5cGVzXCI6W1wiR0xZSlNcIl0sXCJyb2xlSWRzXCI6WzIwNjk2NzEzMDc1OTg4OTMwNThdLFwic2NvcGVzXCI6W10sXCJycGNUeXBlRW51bVwiOlwiSFRUUFwiLFwiYmluZE1vYmlsZVNpZ25cIjpcIkZBTFNFXCJ9IiwiaXNzIjoicHJvLXNlcnZlciIsImV4cCI6MTc4NDA3OTY0OX0.G_9zTzsVZxr13AsmOY-6MLW5ngCdUlT3b4uZi3MWH_A";localStorage.setItem("token",h),sessionStorage.setItem("token",h)}var g=(r=m(d().m(function e(t){return d().w(function(e){for(;;)switch(e.n){case 0:window.__coreLib.React=n(96540),window.__coreLib.ReactDOM=n(40961),window.__coreLib.jjbCommonLib=n(57006),v.mount(t);case 1:return e.a(2)}},e)})),function(e){return r.apply(this,arguments)}),b=(i=m(d().m(function e(t){return d().w(function(e){for(;;)if(0===e.n)return e.a(2,v.unmount(t))},e)})),function(e){return i.apply(this,arguments)}),j=(o=m(d().m(function e(t){return d().w(function(e){for(;;)if(0===e.n)return e.a(2,v.bootstrap(t))},e)})),function(e){return o.apply(this,arguments)})},99594(e,t,n){"use strict";function r(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e){if(e){if("string"==typeof e)return i(e,void 0);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?i(e,void 0):void 0}}(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nf,PJ:()=>m,Tx:()=>d,eT:()=>y,kD:()=>p});var o={1:{id:1,name:"张建国",gender:"男",birthDate:"1985-03-15",idCard:"500***********1234",education:"全日制 \xb7 本科",graduateSchool:"重庆大学",major:"安全工程",orgName:"重庆安评技术研究院有限公司",deptName:"评价一部",positionName:"高级评价师",account:"138****5678",employmentStatus:1,registerEngineerFlag:1,status:"normal",statusTip:"",certificatesSummary:"安全评价师一级, 注册安全工程师",certificates:[{id:101,certName:"安全评价师一级",certNo:"SJP-2020-****",issueDate:"2020-06-01",expireDate:"2026-06-01",status:"expired",statusLabel:"已过期",statusTip:"证书已过期"},{id:102,certName:"注册安全工程师",certNo:"ZGAQ-2018-****",issueDate:"2018-09-15",expireDate:"2027-09-15",status:"normal",statusLabel:"正常",statusTip:""},{id:103,certName:"安全评价师二级",certNo:"SJP-2023-****",issueDate:"2023-05-01",expireDate:"2026-08-01",status:"expiring",statusLabel:"临期",statusTip:"证书即将到期(不足3月)"}]},2:{id:2,name:"李明华",gender:"男",birthDate:"1988-07-22",idCard:"500***********5678",education:"全日制 \xb7 硕士",graduateSchool:"中国矿业大学",major:"安全技术及工程",orgName:"重庆安评技术研究院有限公司",deptName:"评价二部",positionName:"评价师",account:"139****1234",employmentStatus:1,registerEngineerFlag:1,status:"normal",statusTip:"",certificatesSummary:"安全评价师二级, 注册安全工程师",certificates:[{id:201,certName:"安全评价师二级",certNo:"SJP-2021-****",issueDate:"2021-03-10",expireDate:"2027-03-10",status:"normal",statusLabel:"正常",statusTip:""},{id:202,certName:"注册安全工程师",certNo:"ZGAQ-2019-****",issueDate:"2019-11-20",expireDate:"2028-11-20",status:"normal",statusLabel:"正常",statusTip:""}]},3:{id:3,name:"王丽萍",gender:"女",birthDate:"1990-11-08",idCard:"500***********9012",education:"全日制 \xb7 本科",graduateSchool:"西南大学",major:"化学工程",orgName:"重庆恒安安全评价有限公司",deptName:"评价部",positionName:"评价师",account:"137****8899",employmentStatus:1,registerEngineerFlag:0,status:"abnormal",statusTip:"此评价师的社保存在多处缴纳",certificatesSummary:"安全评价师三级",certificates:[{id:301,certName:"安全评价师三级",certNo:"SJP-2022-****",issueDate:"2022-08-01",expireDate:"2028-08-01",status:"normal",statusLabel:"正常",statusTip:""}]},4:{id:4,name:"陈华",gender:"男",birthDate:"1987-04-18",idCard:"500***********3456",education:"在职教育 \xb7 本科",graduateSchool:"重庆理工大学",major:"安全工程",orgName:"重庆渝安风险评估中心",deptName:"技术部",positionName:"评价师",account:"136****7788",employmentStatus:1,registerEngineerFlag:1,status:"abnormal",statusTip:"评价师证书临期(不足3月)",certificatesSummary:"安全评价师二级",certificates:[{id:401,certName:"安全评价师二级",certNo:"SJP-2020-****",issueDate:"2020-04-15",expireDate:"2026-08-15",status:"expiring",statusLabel:"临期",statusTip:"证书即将到期(不足3月)"}]},5:{id:5,name:"赵敏",gender:"女",birthDate:"1992-01-30",idCard:"500***********7890",education:"全日制 \xb7 本科",graduateSchool:"重庆科技学院",major:"安全工程",orgName:"重庆安环检测技术有限公司",deptName:"评价中心",positionName:"评价师",account:"135****6677",employmentStatus:0,registerEngineerFlag:0,status:"abnormal",statusTip:"此评价师的社保存在多处缴纳;证书临期(不足3月)",certificatesSummary:"安全评价师三级",certificates:[{id:501,certName:"安全评价师三级",certNo:"SJP-2023-****",issueDate:"2023-06-01",expireDate:"2026-07-01",status:"expiring",statusLabel:"临期",statusTip:"证书即将到期(不足3月)"}]}},a=Object.values(o).map(function(e){return{id:e.id,orgName:e.orgName,evaluatorName:e.name,registerEngineerFlag:e.registerEngineerFlag,registerEngineerLabel:1===e.registerEngineerFlag?"是":"否",employmentStatus:e.employmentStatus,employmentLabel:1===e.employmentStatus?"是":"否",certificatesSummary:e.certificatesSummary,status:e.status,statusLabel:"normal"===e.status?"正常":"异常",statusTip:e.statusTip}}),l={1:{id:1,enterpriseName:"重庆华安安全科技有限公司",creditCode:"91500112MA******",industry:"化工行业",district:"渝北区",accountSource:"企业注册",projectOnTime:"12/15",projectOnTimeRate:"80%",reportQuality:"合格",complaintCount:0,penaltyCount:0,infoLevel:"一级",infoLevelCode:"level1",scoreGrade:"A级",evalCount:15,reportQualityDesc:"近6个月无不合格报告",penaltyDesc:"无不良记录",evalCountDesc:"累计安全评价"},2:{id:2,enterpriseName:"重庆鼎信安全咨询有限公司",creditCode:"91500105MA******",industry:"建筑施工",district:"江北区",accountSource:"机构注册",projectOnTime:"8/10",projectOnTimeRate:"80%",reportQuality:"合格",complaintCount:1,penaltyCount:0,infoLevel:"二级",infoLevelCode:"level2",scoreGrade:"B级",evalCount:10,reportQualityDesc:"近6个月1份需整改",penaltyDesc:"无行政处罚",evalCountDesc:"累计安全评价"},3:{id:3,enterpriseName:"重庆安环检测技术有限公司",creditCode:"91500108MA******",industry:"仓储物流",district:"南岸区",accountSource:"监管注册",projectOnTime:"5/8",projectOnTimeRate:"62.5%",reportQuality:"不合格",complaintCount:2,penaltyCount:1,infoLevel:"三级",infoLevelCode:"level3",scoreGrade:"C级",evalCount:8,reportQualityDesc:"近6个月存在不合格报告",penaltyDesc:"1次行政处罚",evalCountDesc:"累计安全评价"},4:{id:4,enterpriseName:"重庆恒安安全评价有限公司",creditCode:"91500106MA******",industry:"矿山",district:"九龙坡区",accountSource:"企业注册",projectOnTime:"20/22",projectOnTimeRate:"91%",reportQuality:"合格",complaintCount:0,penaltyCount:0,infoLevel:"一级",infoLevelCode:"level1",scoreGrade:"A级",evalCount:22,reportQualityDesc:"近6个月无不合格报告",penaltyDesc:"无不良记录",evalCountDesc:"累计安全评价"},5:{id:5,enterpriseName:"重庆渝安风险评估中心",creditCode:"91500107MA******",industry:"石油加工",district:"渝中区",accountSource:"机构注册",projectOnTime:"6/9",projectOnTimeRate:"67%",reportQuality:"合格",complaintCount:0,penaltyCount:0,infoLevel:"二级",infoLevelCode:"level2",scoreGrade:"B级",evalCount:9,reportQualityDesc:"近6个月无不合格报告",penaltyDesc:"无不良记录",evalCountDesc:"累计安全评价"}},s=Object.values(l).map(function(e){return{id:e.id,enterpriseName:e.enterpriseName,district:e.district,accountSource:e.accountSource,projectOnTime:e.projectOnTime,reportQuality:e.reportQuality,complaintCount:e.complaintCount,penaltyCount:e.penaltyCount,infoLevel:e.infoLevel,infoLevelCode:e.infoLevelCode}});function c(e){var t,n,r,i,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=Number(null!=(t=null!=(n=o.pageIndex)?n:o.current)?t:1),l=Number(null!=(r=null!=(i=o.pageSize)?i:o.size)?r:10),s=(a-1)*l;return{success:!0,data:e.slice(s,s+l),totalCount:e.length}}function u(e,t){return!t||String(e||"").includes(String(t).trim())}function f(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=r(a);return e.evaluatorName&&(t=t.filter(function(t){return u(t.evaluatorName,e.evaluatorName)})),e.orgName&&(t=t.filter(function(t){return u(t.orgName,e.orgName)})),void 0!==e.employmentStatus&&null!==e.employmentStatus&&""!==e.employmentStatus&&(t=t.filter(function(t){return t.employmentStatus===Number(e.employmentStatus)})),void 0!==e.registerEngineerFlag&&null!==e.registerEngineerFlag&&""!==e.registerEngineerFlag&&(t=t.filter(function(t){return t.registerEngineerFlag===Number(e.registerEngineerFlag)})),e.status&&(t=t.filter(function(t){return t.status===e.status})),Promise.resolve(c(t,e))}function d(e){var t=o[e];return Promise.resolve({success:!!t,data:t||null})}function p(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=r(s);return e.enterpriseName&&(t=t.filter(function(t){return u(t.enterpriseName,e.enterpriseName)})),e.district&&(t=t.filter(function(t){return t.district===e.district})),e.accountSource&&(t=t.filter(function(t){return t.accountSource===e.accountSource})),Promise.resolve(c(t,e))}function y(e){var t=l[e];return Promise.resolve({success:!!t,data:t||null})}var m=[{label:"企业注册",value:"企业注册"},{label:"机构注册",value:"机构注册"},{label:"监管注册",value:"监管注册"}]},90378(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(71070),i=n(74848);let o=function(e){return(0,i.jsx)("div",{children:(0,i.jsx)(r.default,{props:e,permissionAdd:"qyd-qyzzgl-add",permissionEdit:"qyd-qyzzgl-edit",permissionView:"qyd-qyzzgl-info",permissionDel:"qyd-qyzzgl-del"})})}},55435(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(15998),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:161,personnelType:"zyfzr",permissionAdd:"qyd-zyfzrgl-add",permissionEdit:"qyd-zyfzrgl-edit",permissionView:"qyd-zyfzrgl-info",permissionDel:"qyd-zyfzrgl-del",dictionaryType:"zyfzrgwmc0000"})})}))},23614(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:161})})})},60646(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},66513(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(15998),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:162,personnelType:"aqscglry",permissionAdd:"qyd-aqscglrygl-add",permissionEdit:"qyd-aqscglrygl-edit",permissionView:"qyd-aqscglrygl-info",permissionDel:"qyd-aqscglrygl-del",dictionaryType:"aqscglrygwmc0000"})})}))},47856(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:162})})})},50936(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},53326(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(15998),i=n(60065),o=n(88648),a=n(57971),l=n(74848);let s=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)((0,a.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(i.A,{props:e,certificatePhotoType:160,personnelType:"tzsbczry",permissionAdd:"qyd-tzsbczrygl-add",permissionEdit:"qyd-tzsbczrygl-edit",permissionView:"qyd-tzsbczrygl-info",permissionDel:"qyd-tzsbczrygl-del",dictionaryType:"tzsbczryczxmzylb0000"})})}))},23443(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:160})})})},49661(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},63550(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(15998),o=n(60065),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:159,personnelType:"tezhongzuoye",permissionAdd:"qyd-tzzyrugl-add",permissionEdit:"qyd-tzzyrugl-edit",permissionView:"qyd-tzzyrugl-info",permissionDel:"qyd-tzzyrugl-del",dictionaryType:"tzzyryhylb0000"})})}))},6051(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:159})})})},333(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},72327(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},37755(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},72926(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},56313(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>h});var r=n(96540),i=n(15998),o=n(42441),a=n(21637),l=n(71021),s=n(88648),c=n(66699),u=n(3117),f=n(22500),d=n(74848);function p(e){return(p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function m(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return v(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?v(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),p=s[0],y=s[1],h=i.queryDriverConfigLoading,g=i.driverConfig;(0,r.useEffect)(function(){n()},[]);var b=2===g;return(0,d.jsx)("div",{className:"driver-container",children:(0,d.jsxs)(o.A,{active:!0,loading:h,children:[(0,d.jsxs)("div",{className:"driver-container-header",children:[(0,d.jsx)("div",{children:b&&(0,d.jsx)(a.A,{items:[{label:"首页",key:"1"},{label:"驾驶舱",key:"2"}],activeKey:p,onChange:y})}),(0,d.jsx)("div",{children:(0,d.jsx)(l.Ay,{onClick:function(){return e.history.push(window.location.origin)},type:"primary",children:"去工作台"})})]}),(0,d.jsxs)("div",{className:"driver-container-content",children:[1===g&&(0,d.jsx)(c.default,m({},e)),b&&"1"===p&&(0,d.jsx)(u.default,m({},e)),b&&"2"===p&&(0,d.jsx)(f.default,m({},e))]})]})})})},82104(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>R});var r=n(38623),i=n(15998),o=n(26380),a=n(18182),l=n(87959),s=n(73133),c=n(71021),u=n(95725),f=n(41591),d=n(18246),p=n(25303),y=n(74271),m=n(36492),v=n(23899),h=n(83454),g=n(96540),b=n(21023),j=n(44500),x=n(88648),S=n(73398),C=n(74848);function A(e){return(A="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function w(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function O(e){for(var t=1;t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(I(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,I(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,I(u,"constructor",c),I(c,"constructor",s),s.displayName="GeneratorFunction",I(c,i,"GeneratorFunction"),I(u),I(u,i,"Generator"),I(u,r,function(){return this}),I(u,"toString",function(){return"[object Generator]"}),(P=function(){return{w:o,m:f}})()}function I(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(I=function(e,t,n,r){function o(t,n){I(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function E(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function N(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){E(o,r,i,a,l,"next",e)}function l(e){E(o,r,i,a,l,"throw",e)}a(void 0)})}}function L(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||T(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function T(e,t){if(e){if("string"==typeof e)return k(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?k(e,t):void 0}}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==arguments[0]?arguments[0]:[],r=arguments.length>1?arguments[1]:void 0,i=function(e){var t="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!t){if(Array.isArray(e)||(t=T(e))){t&&(e=t);var n=0,r=function(){};return{s:r,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:r}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,o=!0,a=!1;return{s:function(){t=t.call(e)},n:function(){var e=t.next();return o=e.done,e},e:function(e){a=!0,i=e},f:function(){try{o||null==t.return||t.return()}finally{if(a)throw i}}}}(n);try{for(i.s();!(t=i.n()).done;){var o,a=t.value;if((0,S.s)(a.id,r))return a;if(null!=(o=a.children)&&o.length){var l=e(a.children,r);if(l)return l}}}catch(e){i.e(e)}finally{i.f()}return null}(F.current,r)),!t&&n&&b.setFieldsValue(O(O({},n),{},{managerAccount:function(e,t){if(null!=e&&e.managerAccount)return e.managerAccount;if(null!=e&&e.managerName){var n=t.find(function(t){return t.staffName===e.managerName});return null==n?void 0:n.value}}(n,k.current),managerName:n.managerName}));case 5:return e.a(2)}},e,null,[[1,3]])})),function(){return e.apply(this,arguments)})().finally(function(){t||E(!1)}),function(){t=!0}}},[n,r]);var R=(t=N(P().m(function e(t){var n,i,o;return P().w(function(e){for(;;)switch(e.p=e.n){case 0:return e.p=0,A(!0),n=r?f:c,i=O({},t),r&&(i.id=r),e.n=1,n(i);case 1:if((null==(o=e.v)?void 0:o.success)===!1){e.n=3;break}return l.Ay.success(r?"编辑成功":"添加成功"),b.resetFields(),p(),e.n=2,v();case 2:e.n=4;break;case 3:l.Ay.error((null==o?void 0:o.message)||"操作失败");case 4:return e.p=4,A(!1),e.f(4);case 5:return e.a(2)}},e,null,[[0,,4,5]])})),function(e){return t.apply(this,arguments)});return(0,C.jsx)(a.A,{open:n,destroyOnHidden:!0,title:r?"编辑部门":"添加部门",width:560,loading:I,confirmLoading:x,onCancel:p,onOk:b.submit,children:(0,C.jsxs)(o.A,{form:b,layout:"vertical",onFinish:R,children:[!r&&(0,C.jsx)(o.A.Item,{name:"parentId",label:"上级部门",initialValue:h,children:(0,C.jsx)(y.A,{treeData:s,allowClear:!0,fieldNames:{label:"deptName",value:"id",children:"children"},showSearch:!0,placeholder:"请选择上级部门"})}),(0,C.jsx)(o.A.Item,{name:"deptName",label:"部门名称",rules:[{required:!0,message:"请输入部门名称"}],children:(0,C.jsx)(u.A,{placeholder:"请输入部门名称"})}),(0,C.jsx)(o.A.Item,{name:"managerAccount",label:"负责人",children:(0,C.jsx)(m.A,{allowClear:!0,showSearch:!0,placeholder:"请选择负责人",options:i,optionFilterProp:"label",onChange:function(e){var t=i.find(function(t){return t.value===e});b.setFieldValue("managerName",(null==t?void 0:t.staffName)||"")}})}),(0,C.jsx)(o.A.Item,{name:"managerName",hidden:!0,children:(0,C.jsx)(u.A,{})}),(0,C.jsx)(o.A.Item,{name:"deptLevelName",label:"部门级别",children:(0,C.jsx)(u.A,{placeholder:"请输入部门级别"})})]})})}let R=(0,i.dm)([x.NS_ORG_DEPARTMENT,x.NS_ORG_POSITION,x.NS_STAFF_INFO],!0)((0,v.d)(function(e){var t,n,i,y=e.orgPosition.orgPositionLoading,m=L((0,g.useState)(null),2),v=m[0],x=m[1],A=L((0,g.useState)([]),2),w=A[0],I=A[1],E=L((0,g.useState)(!1),2),T=E[0],k=E[1],R=L((0,g.useState)(!1),2),q=R[0],_=R[1],z=L((0,g.useState)(""),2),U=z[0],V=z[1],M=L((0,g.useState)(""),2),G=M[0],B=M[1],Q=L((0,g.useState)([]),2),W=Q[0],Y=Q[1],H=L(o.A.useForm(),1)[0],$=L(o.A.useForm(),1)[0],J=L((0,g.useState)([]),2),K=J[0],X=J[1],Z=L((0,g.useState)(0),2),ee=Z[0],et=Z[1],en=L((0,g.useState)(!1),2),er=en[0],ei=en[1],eo=L((0,g.useState)(1),2),ea=eo[0],el=eo[1],es=L((0,g.useState)(10),2),ec=es[0],eu=es[1];(0,g.useEffect)(function(){N(P().m(function t(){var n,r;return P().w(function(t){for(;;)switch(t.p=t.n){case 0:return t.p=0,t.n=1,null==(n=e.staffInfoList)?void 0:n.call(e,{pageIndex:1,pageSize:500});case 1:Y(((null==(r=t.v)?void 0:r.data)||[]).map(function(e){var t,n;return{label:"".concat(null!=(t=e.userName)?t:e.staffName,"(").concat(e.account,")"),value:e.account,staffName:null!=(n=e.userName)?n:e.staffName}})),t.n=3;break;case 2:t.p=2,console.warn("[DepartmentPosition] load staff options failed:",t.v);case 3:return t.a(2)}},t,null,[[0,2]])}))()},[]);var ef=(t=N(P().m(function t(){var n,r,i,o,a=arguments;return P().w(function(t){for(;;)switch(t.p=t.n){case 0:if(n=a.length>0&&void 0!==a[0]?a[0]:1,r=a.length>1&&void 0!==a[1]?a[1]:10,null!=v&&v.id){t.n=1;break}return t.a(2);case 1:return ei(!0),t.p=2,i=H.getFieldsValue(),t.n=3,e.orgPositionList(O(O({},i),{},{pageIndex:n,pageSize:r,deptId:(0,S.gR)(v.id)}));case 3:X((null==(o=t.v)?void 0:o.data)||[]),et((null==o?void 0:o.totalCount)||0),t.n=5;break;case 4:t.p=4,t.v,X([]),et(0);case 5:return t.p=5,ei(!1),t.f(5);case 6:return t.a(2)}},t,null,[[2,4,5,6]])})),function(){return t.apply(this,arguments)}),ed=(n=N(P().m(function t(){var n,r;return P().w(function(t){for(;;)switch(t.p=t.n){case 0:return t.p=0,t.n=1,e.orgDepartmentTree();case 1:I(r=(null==(n=t.v)?void 0:n.data)||[]),r.length&&x(F(r[0])),t.n=3;break;case 2:t.p=2,console.warn("[DepartmentPosition] loadTree failed:",t.v),I([]);case 3:return t.a(2)}},t,null,[[0,2]])})),function(){return n.apply(this,arguments)});(0,g.useEffect)(function(){ed()},[]),(0,g.useEffect)(function(){null!=v&&v.id&&ef(1,10)},[null==v?void 0:v.id]);var ep=(0,g.useMemo)(function(){if(!G)return w;var e=function(t){return t.map(function(t){var n,r=t.children?e(t.children):[];return(null==(n=t.deptName||t.title)?void 0:n.includes(G))||r.length?O(O({},t),{},{children:r}):null}).filter(Boolean)};return e(w)},[w,G]),ey=function(t){var n;a.A.confirm({title:"提示",content:"数据将会删除,您是否确认删除?",okText:"是",cancelText:"否",onOk:(n=N(P().m(function n(){var r;return P().w(function(n){for(;;)switch(n.n){case 0:return n.n=1,e.orgDepartmentRemove({data:t});case 1:(null==(r=n.v)?void 0:r.success)!==!1&&(l.Ay.success("删除成功"),(0,S.s)(null==v?void 0:v.id,t)&&x(null),ed());case 2:return n.a(2)}},n)})),function(){return n.apply(this,arguments)})})},em=function(t){var n;a.A.confirm({title:"提示",content:"数据将会删除,您是否确认删除?",okText:"是",cancelText:"否",onOk:(n=N(P().m(function n(){var r;return P().w(function(n){for(;;)switch(n.n){case 0:return n.n=1,e.orgPositionRemove({data:t});case 1:(null==(r=n.v)?void 0:r.success)!==!1&&(l.Ay.success("删除成功"),ef(1,10));case 2:return n.a(2)}},n)})),function(){return n.apply(this,arguments)})})},ev=function(){$.resetFields(),V(""),_(!1)},eh=function(e){V((0,S.gR)(null==e?void 0:e.id)||""),k(!0)},eg=function(e){null!=v&&v.id?(V((0,S.gR)(null==e?void 0:e.id)||""),$.resetFields(),e?$.setFieldsValue(O(O({},e),{},{deptId:(0,S.gR)(e.deptId||v.id),deptName:e.deptName||v.deptName})):$.setFieldsValue({deptId:(0,S.gR)(v.id),deptName:v.deptName}),_(!0)):l.Ay.warning("请先选择部门")},eb=(i=N(P().m(function t(n){var r,i,o;return P().w(function(t){for(;;)switch(t.n){case 0:return r=U?e.orgPositionEdit:e.orgPositionAdd,i=O({},n),U&&(i.id=U),i.deptId=(0,S.gR)(n.deptId||(null==v?void 0:v.id)),t.n=1,r(i);case 1:(null==(o=t.v)?void 0:o.success)!==!1?(l.Ay.success(U?"编辑成功":"添加成功"),ev(),ef(ea,ec)):l.Ay.error((null==o?void 0:o.message)||"操作失败");case 2:return t.a(2)}},t)})),function(e){return i.apply(this,arguments)});return(0,C.jsxs)(b.A,{title:"部门岗位管理",children:[(0,C.jsxs)("div",{style:{display:"flex",gap:16,minHeight:480},children:[(0,C.jsxs)("div",{style:{width:260,borderRight:"1px solid #f0f0f0",paddingRight:16,flexShrink:0},children:[(0,C.jsxs)(s.A,{direction:"vertical",style:{width:"100%",marginBottom:12},children:[(0,C.jsx)(c.Ay,{type:"primary",icon:(0,C.jsx)(r.A,{}),block:!0,onClick:function(){return eh()},children:"新增部门"}),(0,C.jsx)(u.A.Search,{placeholder:"输入关键字进行过滤",allowClear:!0,onChange:function(e){return B(e.target.value)}})]}),(0,C.jsx)(f.A,{selectedKeys:null!=v&&v.id?[(0,S.gR)(v.id)]:[],treeData:ep,fieldNames:{title:"deptName",key:"id",children:"children"},onSelect:function(e,t){x(F(t.node))}})]}),(0,C.jsx)("div",{style:{flex:1,minWidth:0},children:null!=v&&v.id?(0,C.jsxs)(C.Fragment,{children:[(0,C.jsxs)("div",{style:{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:16},children:[(0,C.jsxs)("span",{children:["当前部门:",(0,C.jsx)("strong",{children:v.deptName})]}),(0,C.jsxs)(s.A,{children:[(0,C.jsx)(c.Ay,{onClick:function(){return eh(v)},children:"编辑部门"}),(0,C.jsx)(c.Ay,{danger:!0,onClick:function(){return ey(v.id)},children:"删除部门"})]})]}),(0,C.jsx)(j.A,{form:H,loading:er,formLine:[(0,C.jsx)(o.A.Item,{name:"positionName",children:(0,C.jsx)(u.A,{allowClear:!0,placeholder:"请输入岗位名称"})},"positionName")],onFinish:function(){return ef(1,10)},onReset:function(){return ef(1,10)},style:{marginBottom:16}}),(0,C.jsx)(d.A,{footer:function(){return(0,C.jsx)(c.Ay,{type:"primary",icon:(0,C.jsx)(r.A,{}),onClick:function(){return eg()},children:"新增岗位"})},columns:[{title:"名称",dataIndex:"positionName"},{title:"职责",dataIndex:"dutyDesc"},{title:"备注",dataIndex:"remark"},{title:"操作",width:160,render:function(e,t){return(0,C.jsxs)(h.A,{children:[(0,C.jsx)(c.Ay,{type:"link",onClick:function(){return eg(t)},children:"编辑"}),(0,C.jsx)(c.Ay,{danger:!0,type:"link",onClick:function(){return em(t.id)},children:"删除"})]})}}],dataSource:K,loading:er,pagination:{current:ea,pageSize:ec,total:ee,showSizeChanger:!0,showTotal:function(e){return"共 ".concat(e," 条")}},scroll:{y:e.scrollY},onChange:function(e){el(e.current),eu(e.pageSize),ef(e.current,e.pageSize)}})]}):(0,C.jsx)(p.A,{description:"请在左侧选择部门,查看该部门下的岗位"})})]}),T&&(0,C.jsx)(D,{open:T,currentId:U,selectedDeptId:null==v?void 0:v.id,staffOptions:W,treeData:w,requestAdd:e.orgDepartmentAdd,requestEdit:e.orgDepartmentEdit,requestDetails:e.orgDepartmentGet,onCancel:function(){$.resetFields(),V(""),k(!1)},onSuccess:ed}),q&&(0,C.jsx)(a.A,{open:q,destroyOnHidden:!0,title:U?"编辑岗位":"添加岗位",width:560,confirmLoading:y,onCancel:ev,onOk:$.submit,children:(0,C.jsxs)(o.A,{form:$,layout:"vertical",onFinish:eb,children:[(0,C.jsx)(o.A.Item,{name:"deptId",hidden:!0,children:(0,C.jsx)(u.A,{})}),(0,C.jsx)(o.A.Item,{name:"deptName",label:"所属部门",children:(0,C.jsx)(u.A,{disabled:!0})}),(0,C.jsx)(o.A.Item,{name:"positionName",label:"岗位名称",rules:[{required:!0,message:"请输入岗位名称"}],children:(0,C.jsx)(u.A,{placeholder:"请输入岗位名称"})}),(0,C.jsx)(o.A.Item,{name:"dutyDesc",label:"岗位职责",rules:[{required:!0,message:"请输入岗位职责"}],children:(0,C.jsx)(u.A.TextArea,{rows:3,placeholder:"请输入岗位职责",showCount:!0,maxLength:500})}),(0,C.jsx)(o.A.Item,{name:"remark",label:"备注",children:(0,C.jsx)(u.A.TextArea,{rows:2,placeholder:"请输入备注",showCount:!0,maxLength:500})})]})})]})}))},27167(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>U});var r=n(96540),i=n(26380),o=n(18182),a=n(87959),l=n(71021),s=n(36492),c=n(18246),u=n(85196),f=n(47152),d=n(16370),p=n(95725),y=n(63718),m=n(36223),v=n(38623),h=n(21023),g=n(83454),b=n(44500),j=n(51038),x=n(23899),S=n(57006),C=n(15998),A=n(88648),w=n(53292),O=n(74848);function P(e){return(P="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function I(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return E(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(E(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,E(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,E(u,"constructor",c),E(c,"constructor",s),s.displayName="GeneratorFunction",E(c,i,"GeneratorFunction"),E(u),E(u,i,"Generator"),E(u,r,function(){return this}),E(u,"toString",function(){return"[object Generator]"}),(I=function(){return{w:o,m:f}})()}function E(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(E=function(e,t,n,r){function o(t,n){E(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function N(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function L(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){N(o,r,i,a,l,"next",e)}function l(e){N(o,r,i,a,l,"throw",e)}a(void 0)})}}function T(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function k(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return D(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?D(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function D(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nO});var r=n(96540),i=n(26380),o=n(95725),a=n(87959),l=n(73133),s=n(71021),c=n(18294),u=n(46420),f=n(95363),d=n(8073),p=n(74848);function y(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return m(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(m(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,m(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,m(u,"constructor",c),m(c,"constructor",s),s.displayName="GeneratorFunction",m(c,i,"GeneratorFunction"),m(u),m(u,i,"Generator"),m(u,r,function(){return this}),m(u,"toString",function(){return"[object Generator]"}),(y=function(){return{w:o,m:f}})()}function m(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(m=function(e,t,n,r){function o(t,n){m(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function v(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return g(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?g(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function g(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=e.key,i=t===e.key;return(0,p.jsxs)("div",{className:"material-step ".concat(r?"is-active":""," ").concat(i?"is-current":""),children:[(0,p.jsx)("span",{className:"material-step__dot",children:e.key}),(0,p.jsx)("span",{className:"material-step__title",children:e.title}),n24&&(e.push(t),t=[],n=0),t.push(r),n+=r.span}),t.length&&e.push(t),e},[]),b=(t=y().m(function e(){var t,n,r;return y().w(function(e){for(;;)switch(e.p=e.n){case 0:return e.p=0,e.n=1,c.validateFields();case 1:return t=e.v,m(!0),e.n=2,(0,d.mockSubmitMaterial)(t);case 2:null!=(n=e.v)&&n.success&&(a.Ay.success("提交成功,正在进入认证审核"),o(n.data)),e.n=4;break;case 3:e.p=3,null!=(r=e.v)&&r.errorFields||a.Ay.error("提交失败,请稍后重试");case 4:return e.p=4,m(!1),e.f(4);case 5:return e.a(2)}},e,null,[[0,3,4,5]])}),n=function(){var e=this,n=arguments;return new Promise(function(r,i){var o=t.apply(e,n);function a(e){v(o,r,i,a,l,"next",e)}function l(e){v(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return n.apply(this,arguments)});return(0,p.jsxs)("div",{className:"material-fill-step",children:[(0,p.jsx)(i.A,{form:c,initialValues:d.materialInitialValues,colon:!1,labelAlign:"right",children:(0,p.jsx)("div",{className:"material-form-grid",children:g.map(function(e,t){return(0,p.jsx)("div",{className:"material-form-row",children:e.map(function(e){return(0,p.jsx)(S,{field:e},e.name)})},t)})})}),(0,p.jsx)("div",{className:"material-form-actions",children:(0,p.jsxs)(l.A,{size:10,children:[(0,p.jsx)(s.Ay,{children:"取消"}),(0,p.jsx)(s.Ay,{className:"material-save-btn",children:"保存"}),(0,p.jsx)(s.Ay,{type:"primary",loading:f,onClick:b,children:"提交"})]})})]})}function A(){return(0,p.jsxs)("div",{className:"material-result-wrap",children:[(0,p.jsxs)("div",{className:"review-loading-icon",children:[(0,p.jsx)("div",{className:"review-loading-ring"}),(0,p.jsx)(f.A,{}),(0,p.jsx)("span",{})]}),(0,p.jsx)("p",{children:"认证审核中,请耐心等待..."})]})}function w(){return(0,p.jsxs)("div",{className:"material-result-wrap material-success-wrap",children:[(0,p.jsxs)("div",{className:"review-success-illustration",children:[(0,p.jsxs)("div",{className:"success-paper",children:[(0,p.jsx)("i",{}),(0,p.jsx)("i",{}),(0,p.jsx)("i",{}),(0,p.jsx)("i",{})]}),(0,p.jsx)(u.A,{})]}),(0,p.jsx)("p",{children:"审核通过"})]})}function O(){var e=h((0,r.useState)(1),2),t=e[0],n=e[1],i=(0,r.useRef)(null);return(0,r.useEffect)(function(){return function(){return clearTimeout(i.current)}},[]),(0,p.jsxs)("div",{className:"material-report-page material-report-page--step-".concat(t),children:[(0,p.jsx)(j,{}),(0,p.jsx)(x,{current:t}),1===t&&(0,p.jsx)(C,{onSubmitted:function(){n(2),clearTimeout(i.current),i.current=setTimeout(function(){n(3)},2300)}}),2===t&&(0,p.jsx)(A,{}),3===t&&(0,p.jsx)(w,{})]})}},8073(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}n.r(t),n.d(t,{materialFields:()=>a,materialInitialValues:()=>o,mockSubmitMaterial:()=>l});var o={orgName:"重庆市安全生产科学研究有限公司",creditCode:"915001072028699512",registerAddress:"重庆市沙坪坝区大学城东路20号重庆科技学院第39栋西南角实习用房三楼",businessAddress:"重庆市沙坪坝区大学城东路20号重庆科技学院第39栋西南角实习用房三楼",longitude:"119.460574",latitude:"119.460574",county:"重庆市沙坪坝区",street:"大学城东路20号重庆科技学院第39栋",community:"大学城东路",gbIndustryCode:"915001072028699512",safetyIndustryCategory:"专业技术服务业",ownershipType:"冶金工贸",legalRepresentative:"郑远平",legalRepPhone:"023-68705577",principal:"郑远平",principalPhone:"023-68705577",safetyDeptHead:"",safetyDeptPhone:"023-68705577",safetyVp:"",safetyVpPhone:"023-68705577",productionDate:"",businessStatus:"开业",disclosureUrl:"",workplaceArea:"",archiveRoomArea:"",fullTimeEvaluatorCount:"",registeredSafetyEngineerCount:""},a=[{name:"orgName",label:"生产经营单位名称",span:24},{name:"creditCode",label:"统一社会信用代码",span:24},{name:"registerAddress",label:"注册地址",span:24},{name:"businessAddress",label:"经营地址",span:24},{name:"longitude",label:"所在地坐标 经度",span:8},{name:"latitude",label:"所在地坐标 纬度",span:8},{name:"county",label:"所属(县、区)",span:8},{name:"street",label:"所属镇、街道",span:8},{name:"community",label:"属村(社区)",span:8},{name:"gbIndustryCode",label:"国民经济行业分类\n(GB/T4754-2017)",span:8},{name:"safetyIndustryCategory",label:"安全生产监管行业类别",span:8},{name:"ownershipType",label:"归属类型",span:8},{name:"legalRepresentative",label:"法定代表人",span:8},{name:"legalRepPhone",label:"联系电话",span:8},{name:"principal",label:"主要负责人",span:8},{name:"principalPhone",label:"联系电话",span:8},{name:"safetyDeptHead",label:"安全管理部门负责人",span:8},{name:"safetyDeptPhone",label:"联系电话",span:8},{name:"safetyVp",label:"主管安全副总",span:8},{name:"safetyVpPhone",label:"联系电话",span:8},{name:"productionDate",label:"投产日期",span:8},{name:"businessStatus",label:"企业经营状态",span:8},{name:"disclosureUrl",label:"信息公开网址",span:8},{name:"workplaceArea",label:"工作场所建筑面积",span:8},{name:"archiveRoomArea",label:"档案室面积",span:8},{name:"fullTimeEvaluatorCount",label:"专职安全评价师数量",span:8},{name:"registeredSafetyEngineerCount",label:"注册安全工程师数量",span:8}];function l(e){return new Promise(function(t){setTimeout(function(){t({success:!0,data:function(e){for(var t=1;tp}),n(96540);var r=n(89490),i=n(20977),o=n(28155),a=n(55406),l=n(53292),s=n(74848);function c(e){return(c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function f(e){for(var t=1;tT});var r=n(15998),i=n(26380),o=n(87959),a=n(71021),l=n(47152),s=n(16370),c=n(95725),u=n(36492),f=n(63718),d=n(55165),p=n(73133),y=n(30159),m=n(74353),v=n.n(m),h=n(96540),g=n(21023),b=n(28155),j=n(88648),x=n(53292),S=n(74848);function C(e){return(C="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function A(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return w(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(w(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,w(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,w(u,"constructor",c),w(c,"constructor",s),s.displayName="GeneratorFunction",w(c,i,"GeneratorFunction"),w(u),w(u,i,"Generator"),w(u,r,function(){return this}),w(u,"toString",function(){return"[object Generator]"}),(A=function(){return{w:o,m:f}})()}function w(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(w=function(e,t,n,r){function o(t,n){w(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function O(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function P(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return L(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?L(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function L(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nq});var r=n(15998),i=n(26380),o=n(18182),a=n(87959),l=n(6198),s=n(85196),c=n(71021),u=n(18246),f=n(36492),d=n(73133),p=n(36223),y=n(95725),m=n(83454),v=n(96540),h=n(21023),g=n(44500),b=n(51038),j=n(23899),x=n(57006),S=n(88648),C=n(55406),A=n(74848);function w(e){return(w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function O(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return P(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(P(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,P(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,P(u,"constructor",c),P(c,"constructor",s),s.displayName="GeneratorFunction",P(c,i,"GeneratorFunction"),P(u),P(u,i,"Generator"),P(u,r,function(){return this}),P(u,"toString",function(){return"[object Generator]"}),(O=function(){return{w:o,m:f}})()}function P(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(P=function(e,t,n,r){function o(t,n){P(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function I(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function E(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){I(o,r,i,a,l,"next",e)}function l(e){I(o,r,i,a,l,"throw",e)}a(void 0)})}}function N(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function L(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return k(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?k(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0?C.dr.active:C.dr.zero;return r<=0?(0,A.jsx)("span",{style:i,children:r}):(0,A.jsx)(l.A.Link,{style:i,onClick:function(){I(t),S("log")},children:r})}},{title:"就职状态",dataIndex:"employmentStatusCode",width:90,render:function(e,t){var n,r=null!=(n=t.employmentStatusCode)?n:t.employmentStatus;return(0,A.jsx)(s.A,{color:2===r?"error":"success",children:2===r?"离职":"在职"})}},{title:"离职申请审核状态",dataIndex:"resignAuditStatus",width:140,render:function(e,t){var n,r,i=null!=(n=null!=(r=t.resignAuditStatus)?r:t.auditStatus)?n:t.auditStatusCode,o=C.nJ[i];return o?(0,A.jsx)(s.A,{color:C.XU[i],children:o}):"-"}},{title:"操作",width:200,fixed:"right",render:function(e,t){return(0,A.jsxs)(m.A,{children:[(0,A.jsx)(c.Ay,{type:"link",size:"small",onClick:function(){return ei(t)},children:"查看离职状态"}),t.resignApplyId&&0===Number(t.resignAuditStatus)&&(0,A.jsx)(c.Ay,{type:"link",size:"small",onClick:function(){return er(t)},children:"离职审核"}),(0,A.jsx)(c.Ay,{danger:!0,type:"link",size:"small",onClick:function(){return en(t)},children:"删除"})]})}}];return"log"===x?(0,A.jsxs)(h.A,{title:"人员变更次数",children:[(0,A.jsx)(c.Ay,{style:{marginBottom:16},onClick:function(){return S("list")},children:"返回"}),(0,A.jsxs)("div",{style:{marginBottom:8},children:["人员:",(null==P?void 0:P.staffName)||(null==P?void 0:P.userName)]}),(0,A.jsx)(u.A,{rowKey:"id",columns:[{title:"变更事项",dataIndex:"changeItem",width:200},{title:"变更时间",dataIndex:"changeTime",width:160},{title:"操作人",dataIndex:"operatorName",width:100}],dataSource:X,scroll:{y:e.scrollY},loading:K,pagination:{total:Z,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")},current:F.query.current||1,pageSize:F.query.size||10,onChange:function(e,t){F.query=L(L({},F.query),{},{current:e,size:t}),et()}}})]}):(0,A.jsxs)(h.A,{title:(0,A.jsxs)("div",{children:[(0,A.jsx)("span",{children:"人员变更管理"}),(0,A.jsx)("div",{className:"pageLayout-extra",children:"机构管理员在人员信息管理页面进行相应的修改操作"})]}),children:[(0,A.jsx)(g.A,{style:{marginBottom:24},form:Y,loading:K,formLine:[(0,A.jsx)(i.A.Item,{name:"account",children:(0,A.jsx)(b.A.Input,{label:"账户",placeholder:"请输入",allowClear:!0})},"account"),(0,A.jsx)(i.A.Item,{name:"userName",children:(0,A.jsx)(b.A.Input,{label:"姓名",placeholder:"请输入",allowClear:!0})},"userName"),(0,A.jsx)(i.A.Item,{name:"employmentStatusCode",children:(0,A.jsx)(b.A.Select,{label:"就职状态",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:D.map(function(e){return(0,A.jsx)(f.A.Option,{value:e.value,children:e.label},e.value)})})},"employmentStatusCode"),(0,A.jsx)(i.A.Item,{name:"resignAuditStatus",children:(0,A.jsx)(b.A.Select,{label:"复核状态",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:R.map(function(e){return(0,A.jsx)(f.A.Option,{value:e.value,children:e.label},e.value)})})},"resignAuditStatus")],onReset:function(e){F.query=L(L({},e),{},{current:1,size:10}),ee()},onFinish:function(e){F.query=L(L({},e),{},{current:1,size:10}),ee()}}),(0,A.jsx)(u.A,{rowKey:function(e){return e.id||e.staffId},columns:ea,dataSource:$,scroll:{y:e.scrollY},loading:K,pagination:{total:J,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")},current:F.query.current||1,pageSize:F.query.size||10,onChange:function(e,t){F.query=L(L({},F.query),{},{current:e,size:t}),ee()}}}),(0,A.jsxs)(o.A,{open:k,destroyOnHidden:!0,title:"审核离职申请",width:720,footer:(0,A.jsxs)(d.A,{children:[(0,A.jsx)(c.Ay,{onClick:function(){return q(!1)},children:"取消"}),(0,A.jsx)(c.Ay,{danger:!0,onClick:function(){return eo(!1)},children:"退回"}),(0,A.jsx)(c.Ay,{type:"primary",onClick:function(){return eo(!0)},children:"通过"})]}),onCancel:function(){return q(!1)},children:[(0,A.jsxs)(p.A,{bordered:!0,column:1,labelStyle:{width:120},children:[(0,A.jsx)(p.A.Item,{label:"申请人",children:M.applicantName}),(0,A.jsx)(p.A.Item,{label:"申请时间",children:M.applyTime}),(0,A.jsx)(p.A.Item,{label:"预计离职日期",children:M.expectedResignDate}),(0,A.jsx)(p.A.Item,{label:"离职原因",children:M.resignReason}),(0,A.jsx)(p.A.Item,{label:"备注",children:M.remark})]}),(0,A.jsx)(i.A.Item,{label:"退回原因",style:{marginTop:16},children:(0,A.jsx)(y.A.TextArea,{rows:3,value:Q,onChange:function(e){return W(e.target.value)}})})]}),(0,A.jsx)(o.A,{open:z,destroyOnHidden:!0,title:"查看离职申请",width:720,cancelText:"返回",okButtonProps:{style:{display:"none"}},onCancel:function(){return U(!1)},children:(0,A.jsxs)(p.A,{bordered:!0,column:1,labelStyle:{width:120},children:[(0,A.jsx)(p.A.Item,{label:"申请人",children:M.applicantName}),(0,A.jsx)(p.A.Item,{label:"申请时间",children:M.applyTime}),(0,A.jsx)(p.A.Item,{label:"预计离职日期",children:M.expectedResignDate}),(0,A.jsx)(p.A.Item,{label:"离职原因",children:M.resignReason}),(0,A.jsx)(p.A.Item,{label:"备注",children:M.remark})]})})]})}))},53671(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>_});var r=n(15998),i=n(26380),o=n(18182),a=n(87959),l=n(71021),s=n(18246),c=n(95725),u=n(55165),f=n(36223),d=n(96540),p=n(74353),y=n.n(p),m=n(21023),v=n(44500),h=n(51038),g=n(83454),b=n(23899),j=n(57006),x=n(88648),S=n(63910),C=n(30159),A=n(53292),w=n(74848);function O(e){return(O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function P(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return I(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(I(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,I(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,I(u,"constructor",c),I(c,"constructor",s),s.displayName="GeneratorFunction",I(c,i,"GeneratorFunction"),I(u),I(u,i,"Generator"),I(u,r,function(){return this}),I(u,"toString",function(){return"[object Generator]"}),(P=function(){return{w:o,m:f}})()}function I(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(I=function(e,t,n,r){function o(t,n){I(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function E(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function N(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){E(o,r,i,a,l,"next",e)}function l(e){E(o,r,i,a,l,"throw",e)}a(void 0)})}}function L(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function T(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return F(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?F(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function F(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nM});var r=n(15998),i=n(26380),o=n(18182),a=n(87959),l=n(71021),s=n(36492),c=n(18246),u=n(47152),f=n(16370),d=n(95725),p=n(55165),y=n(96540),m=n(74353),v=n.n(m),h=n(21023),g=n(44500),b=n(51038),j=n(83454),x=n(23899),S=n(57006),C=n(46285),A=n(88648),w=n(28155),O=n(77539),P=n(53292),I=n(30159),E=n(76243),N=n(74848);function L(e){return(L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function T(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function k(e){for(var t=1;t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(D(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,D(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,D(u,"constructor",c),D(c,"constructor",s),s.displayName="GeneratorFunction",D(c,i,"GeneratorFunction"),D(u),D(u,i,"Generator"),D(u,r,function(){return this}),D(u,"toString",function(){return"[object Generator]"}),(F=function(){return{w:o,m:f}})()}function D(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(D=function(e,t,n,r){function o(t,n){D(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function R(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function q(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){R(o,r,i,a,l,"next",e)}function l(e){R(o,r,i,a,l,"throw",e)}a(void 0)})}}function _(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return z(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?z(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function z(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nI});var r=n(18182),i=n(36223),o=n(87160),a=n(71021),l=n(18246),s=n(96540),c=n(77016),u=n(63910),f=n(9538),d=n(48032),p=n(31467),y=n(73398);function m(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return v(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(v(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,v(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,v(u,"constructor",c),v(c,"constructor",s),s.displayName="GeneratorFunction",v(c,i,"GeneratorFunction"),v(u),v(u,i,"Generator"),v(u,r,function(){return this}),v(u,"toString",function(){return"[object Generator]"}),(m=function(){return{w:o,m:f}})()}function v(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(v=function(e,t,n,r){function o(t,n){v(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function h(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function g(e){return b.apply(this,arguments)}function b(){var e;return e=m().m(function e(t){var n;return m().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,(0,p.Vg)("/safetyEval/org-personnel/get",{id:(0,y.gR)(null==t?void 0:t.id)});case 1:return n=e.v,e.a(2,(0,d.UC)(n,d.Cy))}},e)}),(b=function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){h(o,r,i,a,l,"next",e)}function l(e){h(o,r,i,a,l,"throw",e)}a(void 0)})}).apply(this,arguments)}var j=n(74848);function x(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return S(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(S(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,S(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,S(u,"constructor",c),S(c,"constructor",s),s.displayName="GeneratorFunction",S(c,i,"GeneratorFunction"),S(u),S(u,i,"Generator"),S(u,r,function(){return this}),S(u,"toString",function(){return"[object Generator]"}),(x=function(){return{w:o,m:f}})()}function S(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(S=function(e,t,n,r){function o(t,n){S(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function C(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function A(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return w(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?w(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nr});let r=function(e){return e.children}},90088(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>M});var r=n(15998),i=n(95725),o=n(55165),a=n(26380),l=n(18182),s=n(87959),c=n(71021),u=n(18246),f=n(87160),d=n(36492),p=n(36223),y=n(30159),m=n(38623),v=n(96540),h=n(21023),g=n(44500),b=n(51038),j=n(83454),x=n(23899),S=n(57006),C=n(88648),A=n(28155),w=n(76332),O=n(53292),P=n(74848);function I(e){return(I="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function E(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return N(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(N(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,N(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,N(u,"constructor",c),N(c,"constructor",s),s.displayName="GeneratorFunction",N(c,i,"GeneratorFunction"),N(u),N(u,i,"Generator"),N(u,r,function(){return this}),N(u,"toString",function(){return"[object Generator]"}),(E=function(){return{w:o,m:f}})()}function N(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(N=function(e,t,n,r){function o(t,n){N(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function L(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function T(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return R(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?R(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nq});var r=n(15998),i=n(26380),o=n(71021),a=n(36492),l=n(18246),s=n(85196),c=n(87959),u=n(18182),f=n(55165),d=n(95725),p=n(36223),y=n(83454),m=n(30159),v=n(13290),h=n(96540),g=n(21023),b=n(44500),j=n(51038),x=n(23899),S=n(57006),C=n(88648),A=n(55406),w=n(74848);function O(e){return(O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function P(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return I(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(I(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,I(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,I(u,"constructor",c),I(c,"constructor",s),s.displayName="GeneratorFunction",I(c,i,"GeneratorFunction"),I(u),I(u,i,"Generator"),I(u,r,function(){return this}),I(u,"toString",function(){return"[object Generator]"}),(P=function(){return{w:o,m:f}})()}function I(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(I=function(e,t,n,r){function o(t,n){I(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function E(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function N(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function L(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return k(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?k(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nc});var r=n(96540),i=n(88648),o=n(15998),a=n(42441),l=n(74848);function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return s(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?s(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),i=n[0],o=n[1];return((0,r.useEffect)(function(){i||e.orgInfoGet().then(function(e){var t,n,r;null!=e&&null!=(t=e.data)&&t.id&&(o(null==e||null==(n=e.data)?void 0:n.id),sessionStorage.setItem("orgInfoId",null==e||null==(r=e.data)?void 0:r.id))})},[]),e.location.pathname.includes("EnterpriseInfo/OrgInfo"))?e.children:(0,l.jsx)("div",{style:{height:"100%"},children:i?e.children:(0,l.jsx)(a.A,{active:!0})})})},43317(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c}),n(60344);var r=n(96540);function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}n(74848);function o(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(o=function(){return!!e})()}function a(e){return(a=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function l(e,t){return(l=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function s(e){var t=function(e,t){if("object"!=i(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=i(r))return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==i(t)?t:t+""}var c=function(e){var t;function n(){var e,t,r,l,c,u;if(!(this instanceof n))throw TypeError("Cannot call a class as a function");for(var f=arguments.length,d=Array(f),p=0;pl}),n(96540);var r=n(6198),i=n(16629),o=n(74848),a=r.A.Title;let l=function(){return(0,o.jsx)("div",{style:{padding:24},children:(0,o.jsx)(i.A,{children:(0,o.jsx)(a,{level:2,style:{textAlign:"center",marginTop:80,marginBottom:80},children:"你好"})})})}},66699(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>d}),n(96540);var r=n(16629),i=n(73133),o=n(11021),a=n(18543),l=n(2231),s=n(40131),c=n(17073),u=n(22241),f=n(74848);let d=function(){return(0,f.jsxs)("div",{className:"institution-dashboard",children:[(0,f.jsxs)("div",{className:"institution-dashboard__top",children:[(0,f.jsx)(r.A,{title:(0,f.jsx)("span",{className:"institution-card-title",children:"当前评价状态状态统计"}),size:"small",className:"institution-dashboard__status-card institution-panel-card",extra:(0,f.jsxs)(i.A,{size:30,className:"institution-dashboard__summary",children:[(0,f.jsxs)("span",{children:["项目总数: ",(0,f.jsx)("strong",{className:"is-blue",children:u.PROJECT_SUMMARY.total})]}),(0,f.jsxs)("span",{children:["超期数: ",(0,f.jsx)("strong",{className:"is-blue",children:u.PROJECT_SUMMARY.overdue})]})]}),styles:{body:{padding:"16px 34px 17px"}},children:(0,f.jsx)(o.default,{data:u.STATISTIC_CARDS})}),(0,f.jsx)(r.A,{title:(0,f.jsx)("span",{className:"institution-card-title",children:"信息提醒"}),size:"small",className:"institution-dashboard__alerts-card institution-panel-card",styles:{body:{padding:"20px 24px"}},children:(0,f.jsx)(a.default,{data:u.INFO_ALERTS})})]}),(0,f.jsxs)("div",{className:"institution-dashboard__charts",children:[(0,f.jsx)(l.default,{data:u.ENTERPRISE_TYPE_STATS}),(0,f.jsx)(s.default,{data:u.PROJECT_TYPE_DISTRIBUTION,total:u.PROJECT_TOTAL})]}),(0,f.jsx)(c.default,{data:u.PROJECT_COMPLETION_LIST})]})}},2231(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>u});var r=n(96540),i=n(6582),o=n(16629),a=n(74848),l="#5b8ff9",s="#ffb33e";function c(e){var t=e.option,n=e.className,o=(0,r.useRef)(null),l=(0,r.useRef)(null);return(0,r.useEffect)(function(){if(o.current){l.current=i.Ts(o.current,null,{renderer:"svg"});var e=function(){return l.current&&l.current.resize()},t="u">typeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(o.current),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),t&&t.disconnect(),l.current&&l.current.dispose(),l.current=null}}},[]),(0,r.useEffect)(function(){l.current&&l.current.setOption(t,!0)},[t]),(0,a.jsx)("div",{className:n,ref:o})}function u(e){var t=e.data,n=(0,r.useMemo)(function(){return{color:[l,s],grid:{left:38,right:10,top:26,bottom:46},tooltip:{trigger:"axis",axisPointer:{type:"shadow",shadowStyle:{color:"rgba(91, 143, 249, .08)"}},backgroundColor:"#fff",borderColor:"#e9edf4",borderWidth:1,textStyle:{color:"#333",fontSize:12}},xAxis:{type:"category",data:t.categories,axisTick:{show:!1},axisLine:{lineStyle:{color:"#edf0f5"}},axisLabel:{color:"#666",fontSize:12,interval:0,width:58,overflow:"break",lineHeight:14}},yAxis:{type:"value",min:0,max:60,splitNumber:6,axisLabel:{color:"#8792a2",fontSize:12},splitLine:{lineStyle:{color:"#e9edf4",type:"dashed"}}},series:[{name:"项目数",type:"bar",barWidth:12,data:t.projectCount,itemStyle:{borderRadius:[2,2,0,0]}},{name:"金额",type:"bar",barWidth:12,data:t.amount,itemStyle:{borderRadius:[2,2,0,0]}}]}},[t]);return(0,a.jsx)(o.A,{title:(0,a.jsx)("span",{className:"institution-card-title",children:"服务企业类型统计"}),size:"small",className:"institution-panel-card institution-enterprise-card",styles:{body:{padding:"20px 26px 15px"}},extra:(0,a.jsxs)("div",{className:"institution-chart-legend institution-chart-legend--top",children:[(0,a.jsxs)("span",{children:[(0,a.jsx)("i",{style:{backgroundColor:l}}),"项目数"]}),(0,a.jsxs)("span",{children:[(0,a.jsx)("i",{style:{backgroundColor:s}}),"金额"]})]}),children:(0,a.jsx)(c,{className:"institution-bar-chart",option:n})})}},18543(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c}),n(96540);var r=n(49346),i=n(40666),o=n(54169),a=n(74848),l={Star:r.A,Audit:i.A,UserDelete:o.A};function s(e){var t=e.item,n=l[t.icon]||i.A;return(0,a.jsxs)("div",{className:"institution-alert-item",style:{backgroundColor:t.bgColor},children:[(0,a.jsx)("div",{className:"institution-alert-item__icon",style:{backgroundColor:t.color},children:(0,a.jsx)(n,{})}),(0,a.jsxs)("div",{className:"institution-alert-item__content",children:[(0,a.jsx)("div",{className:"institution-alert-item__title",children:t.title}),(0,a.jsx)("div",{className:"institution-alert-item__value",children:t.value})]})]})}function c(e){var t=e.data;return(0,a.jsx)("div",{className:"institution-alert-grid",children:t.map(function(e){return(0,a.jsx)(s,{item:e},e.key)})})}},17073(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l}),n(96540);var r=n(16629),i=n(18246),o=n(74848),a=[{title:"序号",dataIndex:"id",key:"id",width:70,align:"center"},{title:"项目名称",dataIndex:"projectName",key:"projectName",ellipsis:!0},{title:"项目状态",dataIndex:"status",key:"status",width:120,align:"center"},{title:"项目负责人",dataIndex:"projectLeader",key:"projectLeader",width:120,align:"center"},{title:"客户负责人",dataIndex:"clientLeader",key:"clientLeader",width:120,align:"center"},{title:"项目开始时间",dataIndex:"startDate",key:"startDate",width:180,align:"center"},{title:"项目结束时间",dataIndex:"endDate",key:"endDate",width:180,align:"center"},{title:"项目阶段",dataIndex:"acceptanceDate",key:"acceptanceDate",width:180,align:"center"},{title:"操作",key:"action",width:110,align:"center",render:function(){return(0,o.jsx)("a",{className:"institution-table-link",children:"查看详情"})}}];function l(e){var t=e.data;return(0,o.jsx)(r.A,{title:(0,o.jsx)("span",{className:"institution-card-title",children:"项目完成情况统计"}),size:"small",className:"institution-panel-card institution-table-card",styles:{body:{padding:"12px 14px 14px"}},children:(0,o.jsx)(i.A,{className:"institution-completion-table",columns:a,dataSource:t,rowKey:"id",pagination:!1,size:"small",scroll:{x:1180}})})}},40131(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(96540),i=n(6582),o=n(16629),a=n(74848);function l(e){var t=e.option,n=e.className,o=(0,r.useRef)(null),l=(0,r.useRef)(null);return(0,r.useEffect)(function(){if(o.current){l.current=i.Ts(o.current,null,{renderer:"svg"});var e=function(){return l.current&&l.current.resize()},t="u">typeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(o.current),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),t&&t.disconnect(),l.current&&l.current.dispose(),l.current=null}}},[]),(0,r.useEffect)(function(){l.current&&l.current.setOption(t,!0)},[t]),(0,a.jsx)("div",{className:n,ref:o})}function s(e){var t=e.data;return(0,a.jsx)("div",{className:"institution-project-legend",children:t.map(function(e){return(0,a.jsxs)("span",{children:[(0,a.jsx)("i",{style:{backgroundColor:e.color}}),e.name]},e.name)})})}function c(e){var t=e.data,n=e.total||t.reduce(function(e,t){return e+t.value},0),i=(0,r.useMemo)(function(){return{color:t.map(function(e){return e.color}),tooltip:{trigger:"item",backgroundColor:"#fff",borderColor:"#e9edf4",borderWidth:1,textStyle:{color:"#333",fontSize:12},formatter:"{b}
项目数:{c}
占比:{d}%"},series:[{name:"项目类型占比",type:"pie",radius:["46%","74%"],center:["50%","50%"],avoidLabelOverlap:!0,minAngle:5,label:{show:!1},labelLine:{show:!1},itemStyle:{borderColor:"#fff",borderWidth:2},emphasis:{scale:!0,scaleSize:4},data:t.map(function(e){return{name:e.name,value:e.value}})}],graphic:[{type:"text",left:"center",top:"42%",style:{text:"项目总数",textAlign:"center",fill:"#a0a7b2",fontSize:15,fontWeight:600}},{type:"text",left:"center",top:"53%",style:{text:String(n),textAlign:"center",fill:"#111827",fontSize:24,fontWeight:700}}]}},[t,n]);return(0,a.jsxs)(o.A,{title:(0,a.jsx)("span",{className:"institution-card-title",children:"项目类型占比"}),size:"small",className:"institution-panel-card institution-project-card",styles:{body:{padding:"24px 22px 18px"}},children:[(0,a.jsx)(l,{className:"institution-donut-chart",option:i}),(0,a.jsx)(s,{data:t})]})}},11021(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>h}),n(96540);var r=n(69047),i=n(71161),o=n(49776),a=n(73488),l=n(56304),s=n(42004),c=n(82822),u=n(27423),f=n(99221),d=n(53159),p=n(40666),y=n(74848),m={FileDone:r.A,LineChart:i.A,Appstore:o.A,FileProtect:a.A,Safety:l.A,Profile:s.A,Notification:c.A,Read:u.A,Compass:f.A,Database:d.A,Audit:p.A};function v(e){var t=e.item,n=m[t.icon]||r.A;return(0,y.jsxs)("div",{className:"institution-stat-card",children:[(0,y.jsx)("div",{className:"institution-stat-card__icon",style:{backgroundColor:t.bgColor},children:(0,y.jsx)(n,{})}),(0,y.jsxs)("div",{className:"institution-stat-card__content",children:[(0,y.jsx)("div",{className:"institution-stat-card__title",children:t.title}),(0,y.jsx)("div",{className:"institution-stat-card__value",children:t.value})]})]})}function h(e){var t=e.data;return(0,y.jsx)("div",{className:"institution-stat-grid",children:t.map(function(e){return(0,y.jsx)(v,{item:e},e.key)})})}},90011(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>d}),n(96540);var r=n(16629),i=n(73133),o=n(11021),a=n(18543),l=n(2231),s=n(40131),c=n(17073),u=n(22241),f=n(74848);function d(){return(0,f.jsxs)("div",{className:"institution-dashboard",children:[(0,f.jsxs)("div",{className:"institution-dashboard__top",children:[(0,f.jsx)(r.A,{title:(0,f.jsx)("span",{className:"institution-card-title",children:"当前评价状态状态统计"}),size:"small",className:"institution-dashboard__status-card institution-panel-card",extra:(0,f.jsxs)(i.A,{size:30,className:"institution-dashboard__summary",children:[(0,f.jsxs)("span",{children:["项目总数: ",(0,f.jsx)("strong",{className:"is-blue",children:u.PROJECT_SUMMARY.total})]}),(0,f.jsxs)("span",{children:["超期数: ",(0,f.jsx)("strong",{className:"is-blue",children:u.PROJECT_SUMMARY.overdue})]})]}),styles:{body:{padding:"16px 34px 17px"}},children:(0,f.jsx)(o.default,{data:u.STATISTIC_CARDS})}),(0,f.jsx)(r.A,{title:(0,f.jsx)("span",{className:"institution-card-title",children:"信息提醒"}),size:"small",className:"institution-dashboard__alerts-card institution-panel-card",styles:{body:{padding:"20px 24px"}},children:(0,f.jsx)(a.default,{data:u.INFO_ALERTS})})]}),(0,f.jsxs)("div",{className:"institution-dashboard__charts",children:[(0,f.jsx)(l.default,{data:u.ENTERPRISE_TYPE_STATS}),(0,f.jsx)(s.default,{data:u.PROJECT_TYPE_DISTRIBUTION,total:u.PROJECT_TOTAL})]}),(0,f.jsx)(c.default,{data:u.PROJECT_COMPLETION_LIST})]})}},22241(e,t,n){"use strict";n.r(t),n.d(t,{ENTERPRISE_TYPE_STATS:()=>a,INFO_ALERTS:()=>i,PROJECT_COMPLETION_LIST:()=>c,PROJECT_SUMMARY:()=>o,PROJECT_TOTAL:()=>s,PROJECT_TYPE_DISTRIBUTION:()=>l,STATISTIC_CARDS:()=>r});var r=[{key:"contract",title:"项目合同签订",value:5632,icon:"FileDone",color:"#409eff",bgColor:"#409eff"},{key:"riskAnalysis",title:"待风险分析",value:951,icon:"LineChart",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"projectTeam",title:"待成立项目组",value:5632,icon:"Appstore",color:"#48d1bd",bgColor:"#48d1bd"},{key:"workPlan",title:"待制定工作计划",value:5632,icon:"FileProtect",color:"#ff9f43",bgColor:"#ff9f43"},{key:"initialEval",title:"待初提",value:5632,icon:"Safety",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"checklist",title:"待编制检查表",value:456,icon:"Profile",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"industryNotice",title:"待从业告知",value:5632,icon:"Notification",color:"#ffb12a",bgColor:"#ffb12a"},{key:"siteSurvey",title:"待现场勘查",value:5632,icon:"Read",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"processControl",title:"过程管控",value:951,icon:"Compass",color:"#409eff",bgColor:"#409eff"},{key:"archive",title:"归档",value:651,icon:"Database",color:"#08bea7",bgColor:"#08bea7"}],i=[{key:"orgQualification",title:"机构资质到期",value:5,icon:"Star",color:"#ffca0a",bgColor:"#fff9e7"},{key:"personnelQualification",title:"人员资质到期",value:35,icon:"Audit",color:"#ff7a59",bgColor:"#fff3ef"},{key:"personnelResignation",title:"人员离岗信息",value:56,icon:"UserDelete",color:"#6395f9",bgColor:"#f1f6ff"}],o={total:5632,overdue:56},a={categories:["矿山开采业","危险化学品行业","烟花爆竹行业","金属冶炼与加工","建筑施工","交通运输业","消防重点单位","特种设备相关企业","涉爆粉尘企业"],projectCount:[42,35,33,35,24,42,36,42,32],amount:[52,54,29,48,39,36,56,35,45]},l=[{name:"定期检测",value:5054,color:"#3f7df4"},{name:"现状评价",value:1540,color:"#63c174"},{name:"控制效果评价",value:1600,color:"#ffa533"},{name:"预评价",value:900,color:"#ff694f"},{name:"设计专篇",value:430,color:"#23c6c8"},{name:"委托检测",value:330,color:"#55c653"}],s=9854,c=[{id:1,projectName:"玉田县志达贸易有限公司蓝兴加油站、LNG加气设施合并项目",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"},{id:2,projectName:"北京首钢铁合金有限公司迁安分公司包芯线生产线扩建项目",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"},{id:3,projectName:"中特伟业科技有限公司沧州金固废回收利用项目",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"},{id:4,projectName:"荣信钢铁有限公司整合重组装备更新一期工程项目安全预评价",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"}]},79331(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>F});var r=n(96540),i=n(66043),o=n(6198),a=n(76511),l=n(56474),s=n(73133),c=n(71021),u=n(70888),f=n(21637),d=n(85402),p=n(5100),y=n(3727),m=n(565),v=n(86404),h=n(98459),g=n(35580),b=n(74848);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function S(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||A(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function A(e,t){if(e){if("string"==typeof e)return w(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?w(e,t):void 0}}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(n)||A(n)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[{key:e,label:(0,g.getPageLabel)(e)}]);return k(r,e),{tabs:r,activeKey:e}})},[]),R=(0,r.useCallback)(function(e){e!==F&&(window.location.href=e)},[F]),q=(0,r.useCallback)(function(e){L(function(t){var n,r,i=t.tabs.findIndex(function(t){return t.key===e}),o=t.tabs.filter(function(t){return t.key!==e});if(0===o.length)return k([],""),{tabs:[],activeKey:""};var a=t.activeKey;return e===t.activeKey&&R(a=(null==(n=o[Math.max(0,i-1)])?void 0:n.key)||(null==(r=o[0])?void 0:r.key)),k(o,a),{tabs:o,activeKey:a}})},[R]),_=(0,r.useCallback)(function(e){L(function(t){var n=t.tabs.find(function(t){return t.key===e}),r=n?[n]:[];return k(r,e),e!==F&&R(e),{tabs:r,activeKey:e}})},[F,R]),z=(0,r.useCallback)(function(e){L(function(t){var n=t.tabs.findIndex(function(t){return t.key===e});if(-1===n)return t;var r=t.tabs.slice(0,n+1);return k(r,e),{tabs:r,activeKey:e}})},[]),U=(0,r.useCallback)(function(){k([],""),L({tabs:[],activeKey:""})},[]),V=(0,r.useCallback)(function(){window.location.reload()},[]),M=(0,r.useCallback)(function(e){R(e.key)},[R]),G=(0,r.useCallback)(function(e){R(e)},[R]),B=(0,r.useCallback)(function(e,t){"remove"===t&&q(e)},[q]),Q=(0,r.useMemo)(function(){var e=(0,g.findMenuPath)(F);return e.map(function(t,n){return{title:n===e.length-1?t.label:(0,b.jsx)("a",{onClick:function(){return M({key:t.key})},children:t.label}),key:t.key}})},[F,M]),W=(0,r.useMemo)(function(){return(0,g.getSelectedKeys)(F)},[F]),Y=(0,r.useMemo)(function(){return(0,g.getOpenKeys)(F)},[F]),H=(0,r.useCallback)(function(e){var t=N.tabs,n=t.length<=1,r=t.findIndex(function(t){return t.key===e}),i=r>=0&&r0?(0,b.jsx)(f.A,{type:"editable-card",hideAdd:!0,activeKey:K,onChange:G,onEdit:B,size:"small",style:{marginBottom:0},items:J.map(function(e){return{key:e.key,label:$(e),closable:!0}}),tabBarExtraContent:(0,b.jsx)(a.A,{menu:{items:[{key:"refresh",icon:(0,b.jsx)(d.A,{}),label:"刷新当前标签"},{key:"close-others",icon:(0,b.jsx)(p.A,{}),label:"关闭其他标签",disabled:J.length<=1},{key:"close-all",icon:(0,b.jsx)(y.A,{}),label:"关闭所有标签",disabled:0===J.length}],onClick:function(e){switch(e.key){case"refresh":V();break;case"close-others":_(K);break;case"close-all":U()}}},placement:"bottomRight",children:(0,b.jsx)(c.Ay,{type:"text",size:"small",icon:(0,b.jsx)(h.A,{})})})}):(0,b.jsx)("div",{style:{height:36,display:"flex",alignItems:"center",paddingLeft:8,color:"#bbb",fontSize:12},children:"暂无打开的标签页,请从左侧菜单选择页面"})}),(0,b.jsx)(I,{style:{margin:0,minHeight:280,position:"relative"},children:t})]})]})}},35580(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>I,findMenuPath:()=>N,flattenMenu:()=>E,getOpenKeys:()=>T,getPageLabel:()=>L,getSelectedKeys:()=>k}),n(96540);var r=n(55156),i=n(13614),o=n(53078),a=n(24123),l=n(73488),s=n(76164),c=n(69149),u=n(58976),f=n(56304),d=n(17011),p=n(74315),y=n(87281),m=n(84795),v=n(26571),h=n(24838),g=n(6266),b=n(39576),j=n(6663),x=n(20506),S=n(71016),C=n(74848);function A(e,t){var n="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=w(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,o=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw o}}}}function w(e,t){if(e){if("string"==typeof e)return O(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?O(e,t):void 0}}function O(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(r)||w(r)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[a]);if(a.key===e)return l;if(a.children){var s=t(a.children,l);if(s)return s}}}catch(e){o.e(e)}finally{o.f()}return null}(P,[])||[]}function L(e){var t=E(P).find(function(t){return t.key===e});return(null==t?void 0:t.label)||e.split("/").filter(Boolean).pop()||"未命名页面"}function T(e){return N(e).slice(0,-1).map(function(e){return e.key})}function k(e){var t,n=E(P).map(function(e){return e.key}),r="",i=A(n);try{for(i.s();!(t=i.n()).done;){var o=t.value;e.startsWith(o)&&o.length>r.length&&(r=o)}}catch(e){i.e(e)}finally{i.f()}return r?[r]:[]}},76401(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>C});var r=n(15998),i=n(26380),o=n(96540),a=n(57006),l=n(21023),s=n(23899),c=n(88648),u=n(49788),f=n(56095),d=n(83577),p=n(74848);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function m(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return v(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(v(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,v(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,v(u,"constructor",c),v(c,"constructor",s),s.displayName="GeneratorFunction",v(c,i,"GeneratorFunction"),v(u),v(u,i,"Generator"),v(u,r,function(){return this}),v(u,"toString",function(){return"[object Generator]"}),(m=function(){return{w:o,m:f}})()}function v(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(v=function(e,t,n,r){function o(t,n){v(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function h(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function g(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return x(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?x(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nr});let r=function(e){return e.children||null}},99345(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(15998),i=n(26380),o=n(18182),a=n(87959),l=n(96540),s=n(57006),c=n(21023),u=n(23899),f=n(88648),d=n(49788),p=n(56095),y=n(74848);function m(e){return(m="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function v(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return h(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(h(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,h(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,h(u,"constructor",c),h(c,"constructor",s),s.displayName="GeneratorFunction",h(c,i,"GeneratorFunction"),h(u),h(u,i,"Generator"),h(u,r,function(){return this}),h(u,"toString",function(){return"[object Generator]"}),(v=function(){return{w:o,m:f}})()}function h(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(h=function(e,t,n,r){function o(t,n){h(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function g(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function b(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return C(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?C(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nr});let r=function(e){return e.children||null}},8351(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(15998),i=n(26380),o=n(71021),a=n(96540),l=n(57006),s=n(21023),c=n(23899),u=n(88648),f=n(49788),d=n(55096),p=n(56095),y=n(74848);function m(e){return(m="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function v(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return h(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(h(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,h(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,h(u,"constructor",c),h(c,"constructor",s),s.displayName="GeneratorFunction",h(c,i,"GeneratorFunction"),h(u),h(u,i,"Generator"),h(u,r,function(){return this}),h(u,"toString",function(){return"[object Generator]"}),(v=function(){return{w:o,m:f}})()}function h(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(h=function(e,t,n,r){function o(t,n){h(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function g(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function b(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return C(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?C(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nr});let r=function(e){return e.children||null}},92423(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>p});var r=n(26380),i=n(47152),o=n(16370),a=n(36492),l=n(95725),s=n(63718),c=n(28155),u=n(49788),f=n(30159),d=n(74848);function p(e){var t=e.form,n=e.disabled;return(0,d.jsx)(r.A,{form:t,layout:"vertical",disabled:n,children:(0,d.jsxs)(i.A,{gutter:16,children:[(0,d.jsx)(o.A,{span:24,children:(0,d.jsx)(r.A.Item,{name:"businessScope",label:"申请的业务范围",rules:[{required:!n,message:"请选择业务范围"}],children:(0,d.jsx)(a.A,{options:c.CI,placeholder:"请选择证照类型"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"filingTerritoryName",label:"备案属地",rules:[{required:!n,message:"请选择备案属地"}],children:(0,d.jsx)(a.A,{options:c.bf,placeholder:"请选择",showSearch:!0,optionFilterProp:"label"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"filingUnitName",label:"备案单位",children:(0,d.jsx)(l.A,{placeholder:"备案单位"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"filingUnitTypeName",label:"备案单位类型",children:(0,d.jsx)(a.A,{options:u.VA,placeholder:"请选择"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"creditCode",label:"统一社会信用代码",children:(0,d.jsx)(l.A,{placeholder:"统一社会信用代码"})})}),(0,d.jsx)(o.A,{span:24,children:(0,d.jsx)(r.A.Item,{name:"officeAddress",label:"办公地址",children:(0,d.jsx)(l.A,{placeholder:"办公地址"})})}),(0,d.jsx)(o.A,{span:24,children:(0,d.jsx)(r.A.Item,{name:"registerAddress",label:"注册地址",children:(0,d.jsx)(l.A,{placeholder:"注册地址"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"qualCertNo",label:"资质证书编号",children:(0,d.jsx)(l.A,{placeholder:"资质证书编号"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"infoDisclosureUrl",label:"信息公开网址",children:(0,d.jsx)(l.A,{placeholder:"信息公开网址"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"legalPersonPhone",label:"法人代表及电话",children:(0,d.jsx)(l.A,{placeholder:"姓名 / 电话"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"contactPhone",label:"联系人及电话",children:(0,d.jsx)(l.A,{placeholder:"姓名 / 电话"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"fixedAssetAmount",label:"固定资产总值(万元)",rules:[{required:!n,message:"请输入固定资产总值"}],children:(0,d.jsx)(s.A,{style:{width:"100%"},min:0,placeholder:"万元"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"workplaceArea",label:"工作场所建筑面积(㎡)",rules:[{required:!n,message:"请输入工作场所建筑面积"}],children:(0,d.jsx)(s.A,{style:{width:"100%"},min:0,placeholder:"㎡"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"archiveRoomArea",label:"档案室面积(㎡)",children:(0,d.jsx)(s.A,{style:{width:"100%"},min:0,placeholder:"㎡"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"fulltimeEvaluatorCount",label:"专职安全评价师数量(人)",children:(0,d.jsx)(s.A,{style:{width:"100%"},min:0,placeholder:"人"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"registeredEngineerCount",label:"注册安全工程师数量(人)",children:(0,d.jsx)(s.A,{style:{width:"100%"},min:0,placeholder:"人"})})}),(0,d.jsx)(o.A,{span:24,children:(0,d.jsx)(r.A.Item,{name:"unitIntro",label:"单位基本情况介绍",children:(0,d.jsx)(l.A.TextArea,{rows:3,placeholder:"请输入单位基本情况介绍"})})}),(0,d.jsx)(o.A,{span:24,children:(0,d.jsx)(f.A,{name:"attachmentUrl",label:"上传附件",disabled:n})})]})})}},55096(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>u});var r=n(18182),i=n(18246),o=n(96540),a=n(30045),l=n(74848);function s(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return c(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?c(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ny});var r=n(26380),i=n(95725),o=n(47152),a=n(16370),l=n(55165),s=n(36492),c=n(52528);n(93915);var u=n(30159),f=n(74848),d={display:"inline-block",minWidth:120,padding:"0 4px 2px",borderBottom:"1px solid #333",textAlign:"center",lineHeight:1.6};function p(e){var t={legalRepName:e.legalRepName,filingUnitName:e.filingUnitName};return(0,f.jsx)("div",{style:{fontSize:14,lineHeight:2,color:"rgba(0,0,0,0.85)"},children:c.COMMITMENT_PARAGRAPHS.map(function(e){return(0,f.jsx)("p",{style:{margin:"intro"===e.key?"0 0 12px":"0 0 10px",textIndent:"intro"===e.key?0:"2em"},children:e.parts.map(function(n,r){if("blank"===n.type){var i,o;return(0,f.jsx)("span",{children:(o=(null==(i=t[n.field])?void 0:i.trim())||"",(0,f.jsx)("span",{style:d,children:o||"\xa0".repeat(8)}))},"".concat(e.key,"-").concat(r))}return(0,f.jsx)("span",{children:n.value},"".concat(e.key,"-").concat(r))})},e.key)})})}function y(e){var t=e.form,n=e.disabled,c=e.personnelOptions,d=void 0===c?[]:c;e.onSignatureChange;var y=r.A.useWatch("legalRepName",t),m=r.A.useWatch("filingUnitName",t);return(0,f.jsx)("div",{style:{maxWidth:920},children:(0,f.jsxs)(r.A,{form:t,layout:"vertical",disabled:n,children:[(0,f.jsx)(r.A.Item,{name:"legalRepName",hidden:!0,children:(0,f.jsx)(i.A,{})}),(0,f.jsx)(r.A.Item,{name:"filingUnitName",hidden:!0,children:(0,f.jsx)(i.A,{})}),(0,f.jsx)(r.A.Item,{name:"commitmentContent",hidden:!0,children:(0,f.jsx)(i.A,{})}),(0,f.jsx)("div",{style:{border:"1px solid #e8e8e8",borderRadius:4,padding:"20px 24px",background:"#fafafa",marginBottom:24},children:(0,f.jsx)(p,{legalRepName:y,filingUnitName:m})}),(0,f.jsxs)(o.A,{gutter:24,children:[(0,f.jsx)(a.A,{xs:24,sm:12,md:8,children:(0,f.jsx)(r.A.Item,{name:"signDate",label:"签署日期",children:(0,f.jsx)(l.A,{style:{width:"100%"},placeholder:"请选择日期"})})}),(0,f.jsx)(a.A,{xs:24,sm:12,md:8,children:(0,f.jsx)(r.A.Item,{name:"legalRepPersonnelId",label:"法定代表人",rules:[{required:!n,message:"请选择法定代表人"}],children:(0,f.jsx)(s.A,{allowClear:!0,placeholder:"请选择",options:d,showSearch:!0,optionFilterProp:"label",onChange:function(e){if(!e)return void t.setFieldsValue({legalRepPersonnelId:void 0,legalRepName:""});var n=d.find(function(t){return t.value===e});t.setFieldsValue({legalRepPersonnelId:e,legalRepName:(null==n?void 0:n.staffName)||(null==n?void 0:n.label)||""})}})})})]}),(0,f.jsx)(u.A,{name:"legalRepSignatureUrl",label:"电子签名",disabled:n,maxCount:1,accept:"image/*"})]})})}},12017(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>p});var r=n(71021),i=n(18246),o=n(73133),a=n(87160),l=n(96540),s=n(4178),c=n(65474),u=n(74848);function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?d(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ns,resolveFilingUploadUrl:()=>c});var r=n(41038),i=n(71021),o=n(88237),a=n(20344),l=n(74848);function s(e){var t=e.value,n=e.onChange,s=e.disabled,c=e.maxCount,u=void 0===c?1:c,f=e.accept,d=Array.isArray(t)?t:(0,a.zG)(t);return(0,l.jsx)(r.A,{maxCount:u,accept:f,action:"".concat(window.process.env.app.API_HOST,"/safetyEval/file/upload"),disabled:s,fileList:d,onChange:function(e){s||null==n||n(e.fileList)},children:(!d||d.lengthd});var r=n(18246),i=n(85196),o=n(73133),a=n(71021),l=n(87160),s=n(96540),c=n(4178),u=n(74848);function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return f(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?f(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),v=m[0],h=m[1];return(0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)(r.A,{size:"small",loading:y,rowKey:"materialType",pagination:!1,scroll:{x:900},dataSource:void 0===n?[]:n,columns:[{title:"序号",width:60,render:function(e,t,n){return n+1}},{title:"内容",dataIndex:"materialContent",width:200,ellipsis:!0},{title:"上传附件",dataIndex:"attachmentDesc",width:100},{title:"格式",dataIndex:"materialFormat",width:70,render:function(e){return e?(0,u.jsx)(i.A,{children:e}):"-"}},{title:"状态",dataIndex:"uploadStatusName",width:90,render:function(e,t){return(0,u.jsx)(i.A,{color:2===t.uploadStatusCode?"success":"warning",children:e||"待上传"})}},{title:"操作",width:120,render:function(e,t){return(0,u.jsx)(o.A,{size:"small",children:t.attachmentUrl?(0,u.jsx)(a.Ay,{type:"link",size:"small",onClick:function(){var e;(e=t.attachmentUrl,/\.(png|jpe?g|gif|bmp|webp|svg)(\?.*)?$/i.test(e||""))?h(t.attachmentUrl):window.open(t.attachmentUrl)},children:"预览"}):!d&&(0,u.jsx)(c.A,{onSuccess:function(e){return null==p?void 0:p(t,e)}})})}},{title:"注释",dataIndex:"materialRemark",ellipsis:!0}]}),(0,u.jsx)(l.A,{style:{display:"none"},preview:{visible:!!v,src:v,onVisibleChange:function(e){e||h("")}}})]})}},65474(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>j});var r=n(15998),i=n(26380),o=n(18182),a=n(95725),l=n(71021),s=n(18246),c=n(96540),u=n(88648),f=n(74848);function d(e){return(d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function p(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return y(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(y(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,y(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,y(u,"constructor",c),y(c,"constructor",s),s.displayName="GeneratorFunction",y(c,i,"GeneratorFunction"),y(u),y(u,i,"Generator"),y(u,r,function(){return this}),y(u,"toString",function(){return"[object Generator]"}),(p=function(){return{w:o,m:f}})()}function y(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(y=function(e,t,n,r){function o(t,n){y(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return b(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?b(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==a[0]?a[0]:1,r=a.length>1&&void 0!==a[1]?a[1]:10,w(!0),t.p=1,i=b.getFieldsValue(),t.n=2,e.equipInfoList({current:n,pageSize:r,likeDeviceName:i.deviceName||void 0});case 2:(null==(o=t.v)?void 0:o.success)!==!1&&(I((null==o?void 0:o.data)||[]),L(function(e){return v(v({},e),{},{current:n,pageSize:r,total:(null==o?void 0:o.totalCount)||0})})),t.n=4;break;case 3:t.p=3,console.warn("[OrgEquipmentSelectModal] list failed:",t.v);case 4:return t.p=4,w(!1),t.f(4);case 5:return t.a(2)}},t,null,[[1,3,4,5]])}),n=function(){var e=this,n=arguments;return new Promise(function(r,i){var o=t.apply(e,n);function a(e){h(o,r,i,a,l,"next",e)}function l(e){h(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return n.apply(this,arguments)});return(0,c.useEffect)(function(){r&&(S([]),b.resetFields(),T())},[r]),(0,f.jsxs)(o.A,{open:r,title:"添加备案装备",width:800,destroyOnHidden:!0,onCancel:u,onOk:function(){var e=x.filter(function(e){return!m.includes(String(e))});if(!e.length)return void o.A.warning({title:"提示",content:"请选择至少一项未添加的装备"});var t=P.filter(function(t){return e.includes(t.id)});null==d||d(e,t)},okText:"确认添加",children:[(0,f.jsxs)(i.A,{form:b,layout:"inline",style:{marginBottom:16},children:[(0,f.jsx)(i.A.Item,{name:"deviceName",children:(0,f.jsx)(a.A,{placeholder:"关键字搜索",allowClear:!0})}),(0,f.jsxs)(i.A.Item,{children:[(0,f.jsx)(l.Ay,{type:"primary",onClick:function(){T(1,N.pageSize)},children:"搜索"}),(0,f.jsx)(l.Ay,{style:{marginLeft:8},onClick:function(){b.resetFields(),T()},children:"重置"})]})]}),(0,f.jsx)(s.A,{rowKey:"id",loading:A,dataSource:P,rowSelection:{selectedRowKeys:x,onChange:S,getCheckboxProps:function(e){return{disabled:m.includes(String(e.id))}}},pagination:v(v({},N),{},{showSizeChanger:!0,showTotal:function(e){return"共 ".concat(e," 条")},onChange:function(e,t){return T(e,t)}}),columns:[{title:"装备名称",dataIndex:"deviceName"},{title:"规格型号",dataIndex:"deviceModel"},{title:"生产厂家",dataIndex:"manufacturer"}]})]})})},82314(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>x});var r=n(15998),i=n(26380),o=n(18182),a=n(95725),l=n(71021),s=n(18246),c=n(96540),u=n(88648),f=n(76243),d=n(74848);function p(e){return(p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function y(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return m(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(m(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,m(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,m(u,"constructor",c),m(c,"constructor",s),s.displayName="GeneratorFunction",m(c,i,"GeneratorFunction"),m(u),m(u,i,"Generator"),m(u,r,function(){return this}),m(u,"toString",function(){return"[object Generator]"}),(y=function(){return{w:o,m:f}})()}function m(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(m=function(e,t,n,r){function o(t,n){m(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function h(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return j(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?j(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function j(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==a[0]?a[0]:1,r=a.length>1&&void 0!==a[1]?a[1]:10,E(!0),t.p=1,i=j.getFieldsValue(),t.n=2,e.staffInfoList({current:n,pageSize:r,likeStaffName:i.staffName||void 0});case 2:(null==(o=t.v)?void 0:o.success)!==!1&&(T((null==o?void 0:o.data)||[]),D(function(e){return h(h({},e),{},{current:n,pageSize:r,total:(null==o?void 0:o.totalCount)||0})})),t.n=4;break;case 3:t.p=3,console.warn("[OrgPersonnelSelectModal] list failed:",t.v);case 4:return t.p=4,E(!1),t.f(4);case 5:return t.a(2)}},t,null,[[1,3,4,5]])}),n=function(){var e=this,n=arguments;return new Promise(function(r,i){var o=t.apply(e,n);function a(e){g(o,r,i,a,l,"next",e)}function l(e){g(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return n.apply(this,arguments)});return(0,c.useEffect)(function(){r&&(C([]),j.resetFields(),R())},[r]),(0,d.jsxs)(d.Fragment,{children:[(0,d.jsxs)(o.A,{open:r,title:"添加备案人员",width:800,destroyOnHidden:!0,onCancel:u,onOk:function(){var e=S.filter(function(e){return!v.includes(String(e))});if(!e.length)return void o.A.warning({title:"提示",content:"请选择至少一名未添加的人员"});var t=L.filter(function(t){return e.includes(t.id)});null==p||p(e,t)},okText:"确认添加",children:[(0,d.jsxs)(i.A,{form:j,layout:"inline",style:{marginBottom:16},children:[(0,d.jsx)(i.A.Item,{name:"staffName",children:(0,d.jsx)(a.A,{placeholder:"关键字搜索",allowClear:!0})}),(0,d.jsxs)(i.A.Item,{children:[(0,d.jsx)(l.Ay,{type:"primary",onClick:function(){R(1,F.pageSize)},children:"搜索"}),(0,d.jsx)(l.Ay,{style:{marginLeft:8},onClick:function(){j.resetFields(),R()},children:"重置"})]})]}),(0,d.jsx)(s.A,{rowKey:"id",loading:I,dataSource:L,rowSelection:{selectedRowKeys:S,onChange:C,getCheckboxProps:function(e){return{disabled:v.includes(String(e.id))}}},pagination:h(h({},F),{},{showSizeChanger:!0,showTotal:function(e){return"共 ".concat(e," 条")},onChange:function(e,t){return R(e,t)}}),columns:[{title:"人员姓名",dataIndex:"userName"},{title:"类型",dataIndex:"personTypeName"},{title:"职称",dataIndex:"titleName"},{title:"操作",width:80,render:function(e,t){return(0,d.jsx)(l.Ay,{type:"link",size:"small",onClick:function(){return O(t.id)},children:"查看"})}}]})]}),(0,d.jsx)(f.default,{open:!!w,currentId:w,requestDetails:e.staffInfoGet,onCancel:function(){return O("")}})]})})},74969(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>d});var r=n(71021),i=n(18246),o=n(73133),a=n(96540),l=n(76243),s=n(82314),c=n(74848);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return f(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nl});var r=n(46420),i=n(51399),o=n(18182),a=n(74848);function l(e){var t=e.open,n=e.result,l=e.loading,s=e.onCancel,c=e.onConfirm,u=null==n?void 0:n.passed;return(0,a.jsx)(o.A,{open:t,title:"资质申请前置条件核验结果",width:560,destroyOnHidden:!0,onCancel:s,onOk:u?c:void 0,okText:"确定",cancelText:u?"取消":"关闭",confirmLoading:l,okButtonProps:{style:u?void 0:{display:"none"}},children:(0,a.jsx)("div",{style:{padding:"8px 0"},children:((null==n?void 0:n.items)||[]).map(function(e){return(0,a.jsxs)("div",{style:{display:"flex",gap:12,alignItems:"flex-start",marginBottom:16},children:[e.passed?(0,a.jsx)(r.A,{style:{color:"#52c41a",fontSize:18,marginTop:2}}):(0,a.jsx)(i.A,{style:{color:"#faad14",fontSize:18,marginTop:2}}),(0,a.jsxs)("div",{children:[(0,a.jsx)("div",{style:{fontWeight:600,marginBottom:4},children:e.label}),(0,a.jsx)("div",{style:{color:"rgba(0,0,0,0.65)",lineHeight:1.6},children:e.desc})]})]},e.key)})})})}},70756(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>V});var r=n(15998),i=n(57006),o=n(26380),a=n(87959),l=n(18182),s=n(21734),c=n(21637),u=n(73133),f=n(71021),d=n(96540),p=n(21023),y=n(30045),m=n(88648),v=n(49788),h=n(94878),g=n(24941),b=n(26368),j=n(92423),x=n(93090),S=n(12017),C=n(81110),A=n(74969),w=n(21819),O=n(74848);function P(e){return(P="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function I(e){return function(e){if(Array.isArray(e))return q(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||R(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function E(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function N(e){for(var t=1;t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(T(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,T(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,T(u,"constructor",c),T(c,"constructor",s),s.displayName="GeneratorFunction",T(c,i,"GeneratorFunction"),T(u),T(u,i,"Generator"),T(u,r,function(){return this}),T(u,"toString",function(){return"[object Generator]"}),(L=function(){return{w:o,m:f}})()}function T(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(T=function(e,t,n,r){function o(t,n){T(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function k(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function F(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){k(o,r,i,a,l,"next",e)}function l(e){k(o,r,i,a,l,"throw",e)}a(void 0)})}}function D(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||R(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(e,t){if(e){if("string"==typeof e)return q(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?q(e,t):void 0}}function q(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==f[0]?f[0]:{},k(!0),r=ea(),o="change"===i?"Change":"",(s=(l=_({},"qualFiling".concat(o,"AddCmd"),N(N({},r),{},{filingStatusCode:n.isSaveDraft?5:2,applyTypeCode:"application"===i?1:3})))["qualFiling".concat(o,"AddCmd")]).materials&&(l["qualFilingMaterial".concat(o,"AddCmds")]=s.materials,delete s.materials),s.personnelList&&(l["qualFilingPersonnel".concat(o,"AddCmds")]=s.personnelList.map(y.fromFilingPersonnelAddCmd),delete s.personnelList),s.equipmentList&&(l["qualFilingEquipment".concat(o,"AddCmds")]=s.equipmentList,delete s.equipmentList),s.commitment&&(l["qualFilingCommitment".concat(o,"AddCmd")]=s.commitment,delete s.commitment),c=e.submitQualFiling,i===v.tV.CHANGE&&(c=e.submitQualFilingChange),t.n=1,c(l);case 1:null!=(u=t.v)&&u.success&&(J(!1),a.Ay.success(n.isSaveDraft?"暂存成功":"提交成功"),e.history.goBack()),k(!1);case 2:return t.a(2)}},t)})),function(){return n.apply(this,arguments)}),ef=[{key:"basic",label:"1. 备案基本信息",children:(0,O.jsx)(j.default,{form:ee,disabled:er}),forceRender:!0},{key:"materials",label:"2. 备案材料上传",children:(0,O.jsx)(C.default,{materials:(null==G?void 0:G.materials)||[],disabled:er,onUpload:function(e,t){var n=t.url,r=t.ext;B(function(t){return N(N({},t),{},{materials:(t.materials||[]).map(function(t){return t.id===e.id?N(N({},t),{},{attachmentUrl:n,materialFormat:r,uploadStatusCode:2,uploadStatusName:"已上传"}):t})})}),a.Ay.success("材料已选择,".concat(ei))}})},{key:"commitment",label:"3. 法定代表人承诺书",children:(0,O.jsx)(x.default,{form:et,disabled:er,personnelOptions:W}),forceRender:!0},{key:"personnel",label:"4. 备案人员管理",children:(0,O.jsx)(A.default,{personnelList:(null==G?void 0:G.personnelList)||[],disabled:er,onAdd:function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=new Set(((null==(t=en.current)?void 0:t.personnelList)||[]).map(function(e){return String(e.sourcePersonnelId||e.id)})),i=e.filter(function(e){return!r.has(String(e))});if(i.length){var o=new Map((n||[]).map(function(e){return[String(e.id),e]})),l=i.map(function(e){return o.get(String(e))});B(function(e){return N(N({},e),{},{personnelList:[].concat(I(e.personnelList||[]),I(l))})}),a.Ay.success("已添加至列表,".concat(ei))}},onRemove:function(e){l.A.confirm({title:"提示",content:"确认删除人员「".concat(e.userName||e.personName,"」?"),onOk:function(){B(function(t){return N(N({},t),{},{personnelList:(t.personnelList||[]).filter(function(t){return t.id!==e.id})})})}})}})},{key:"equipment",label:"5. 装备清单",children:(0,O.jsx)(S.default,{equipmentList:(null==G?void 0:G.equipmentList)||[],disabled:er,onAdd:function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=new Set(((null==(t=en.current)?void 0:t.equipmentList)||[]).map(function(e){return String(e.sourceEquipmentId)})),i=e.filter(function(e){return!r.has(String(e))});if(i.length){var o=new Map((n||[]).map(function(e){return[String(e.id),e]})),l=i.map(function(e){var t=o.get(String(e));return t?(0,g.mapEquipRowToFilingEquipment)(t):(0,g.mapEquipRowToFilingEquipment)({id:e})});B(function(e){return N(N({},e),{},{equipmentList:[].concat(I(e.equipmentList||[]),I(l))})}),a.Ay.success("已添加至列表,".concat(ei))}},onRemove:function(e){l.A.confirm({title:"提示",content:"确认移除装备「".concat(e.deviceName,"」?"),onOk:function(){B(function(t){return N(N({},t),{},{equipmentList:(t.equipmentList||[]).filter(function(t){return t.id!==e.id})})})}})},onUploadCalibration:function(e,t){var n=t.url;B(function(t){return N(N({},t),{},{equipmentList:(t.equipmentList||[]).map(function(t){return t.id===e.id?N(N({},t),{},{calibrationReportUrl:n}):t})})})}})}],ed=ef.findIndex(function(e){return e.key===q}),ep=ed===ef.length-1;return(0,O.jsxs)(p.A,{title:U[i]||"资质备案表单",history:e.history,previous:!0,children:[(0,O.jsxs)(s.A,{spinning:P||T,children:[(0,O.jsx)(c.A,{activeKey:q,items:ef,onChange:es}),(0,O.jsxs)(u.A,{children:[ed>0&&(0,O.jsx)(f.Ay,{onClick:function(){es(ef[ed-1].key)},children:"上一步"}),!ep&&(0,O.jsx)(f.Ay,{type:"primary",onClick:function(){es(ef[ed+1].key)},children:"下一步"}),!er&&ep&&(0,O.jsxs)(O.Fragment,{children:[i!==v.tV.FILED&&(0,O.jsx)(f.Ay,{loading:T,onClick:function(){return eu({isSaveDraft:!0})},children:"暂存"}),(0,O.jsx)(f.Ay,{type:"primary",onClick:ec,children:i===v.tV.FILED?"提交填报":"提交申请"})]})]})]}),(0,O.jsx)(w.default,{open:$,result:X,loading:T,onCancel:function(){return J(!1)},onConfirm:eu})]})})},56095(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>h});var r=n(6198),i=n(85196),o=n(71021),a=n(26380),l=n(36492),s=n(18246),c=n(44500),u=n(51038),f=n(83454),d=n(28155),p=n(49788),y=n(55406),m=n(83577),v=n(74848);function h(e){var t=e.dataSource,n=e.total,h=e.loading,g=e.searchForm,b=e.onSearch,j=e.onPageChange,x=e.scrollY,S=e.mode,C=e.showChangeCount,A=e.onChangeCountClick,w=e.onCreate,O=e.createLabel,P=e.listTitle,I=e.listDesc,E=e.PageLayout,N=e.onDelete,L=e.extraActions,T=(0,p.Cd)(S),k=[{title:"备案属地",dataIndex:"filingTerritoryName",width:120,ellipsis:!0},{title:"备案单位",dataIndex:"filingUnitName",ellipsis:!0},{title:"备案编号",dataIndex:"filingNo",width:200,render:function(e,t){return e||t.id||"-"}},{title:"安全评价业务范围",dataIndex:"businessScope",ellipsis:!0}];return void 0!==C&&C&&k.push({title:"变更次数",dataIndex:"changeCount",width:90,render:function(e,t){var n=(0,y.wy)(t),i=n>0?y.dr.active:y.dr.zero;return n<=0?(0,v.jsx)("span",{style:i,children:n}):(0,v.jsx)(r.A.Link,{style:i,onClick:function(){return null==A?void 0:A(t)},children:n})}}),k.push({title:"备案状态",dataIndex:"filingStatusName",width:110,render:function(e,t){var n=p.DX[t.filingStatusCode],r=(null==n?void 0:n.color)||"default",o=(null==n?void 0:n.label)||"-";return n?(0,v.jsx)(i.A,{color:r,children:o||"-"}):"--"}}),k.push({title:"操作",width:180,fixed:"right",render:function(e,t){return(0,v.jsxs)(f.A,{children:[(0,v.jsx)(o.Ay,{type:"link",size:"small",onClick:function(){return(0,m.goFilingForm)({mode:S,id:t.id,readOnly:!0})},children:"查看"}),null==L?void 0:L(t),(S===p.tV.FILED?(0,p.ej)(t.filingStatusCode,S):(0,p.JP)(t.filingStatusCode))&&S!==p.tV.CHANGE&&(0,v.jsx)(o.Ay,{type:"link",size:"small",onClick:function(){return(0,m.goFilingForm)({mode:S,id:t.id})},children:"修改"}),S===p.tV.APPLICATION&&(0,p.JP)(t.filingStatusCode)&&N&&(0,v.jsx)(o.Ay,{type:"link",size:"small",danger:!0,onClick:function(){return N(t)},children:"删除"})]})}}),(0,v.jsxs)(E,{title:I?(0,v.jsxs)("div",{children:[(0,v.jsx)("span",{children:P}),(0,v.jsx)("div",{className:"pageLayout-extra",children:I})]}):P,extra:w&&(0,v.jsx)(o.Ay,{type:"primary",onClick:w,children:O}),children:[(0,v.jsx)(c.A,{style:{marginBottom:24},form:g,loading:h,formLine:[(0,v.jsx)(a.A.Item,{name:"filingUnitName",children:(0,v.jsx)(u.A.Input,{label:"备案单位",placeholder:"关键字搜索",allowClear:!0})},"filingUnitName"),(0,v.jsx)(a.A.Item,{name:"filingTerritoryName",children:(0,v.jsx)(u.A.Select,{label:"备案属地",placeholder:"请输入",allowClear:!0,style:{width:"100%"},children:d.bf.map(function(e){return(0,v.jsx)(l.A.Option,{value:e.value,children:e.label},e.value)})})},"filingTerritoryName"),(0,v.jsx)(a.A.Item,{name:"filingNo",children:(0,v.jsx)(u.A.Input,{label:"备案编号",placeholder:"关键字搜索",allowClear:!0})},"filingNo"),(0,v.jsx)(a.A.Item,{name:"filingStatus",children:(0,v.jsx)(u.A.Select,{label:"备案状态",placeholder:"全部",style:{width:"100%"},children:T.map(function(e){return(0,v.jsx)(l.A.Option,{value:e.value,children:e.label},e.value)})})},"filingStatus")],onFinish:function(e){return b(e)},onReset:function(e){return b(e)}}),(0,v.jsx)(s.A,{rowKey:"id",columns:k,dataSource:t,loading:h,scroll:{y:x},pagination:{total:n,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")}},onChange:function(e){j&&j(e)}})]})}},52528(e,t,n){"use strict";n.r(t),n.d(t,{COMMITMENT_PARAGRAPHS:()=>r,buildCommitmentContent:()=>i,parseCommitmentNames:()=>o});var r=[{key:"intro",parts:[{type:"text",value:"本人是"},{type:"blank",field:"legalRepName"},{type:"text",value:",是"},{type:"blank",field:"filingUnitName"},{type:"text",value:"法定代表人,现代表我单位承诺如下:"}]},{key:"p1",parts:[{type:"text",value:"一、我单位自愿申请安全评价机构资质。本人已经认真学习、了解并掌握《安全生产法》《行政许可法》《行政处罚法》及《安全评价检测检验机构管理办法》等法律法规的相关规定,知悉开展安全评价工作的法律责任、义务、权力和风险。"}]},{key:"p2",parts:[{type:"text",value:"二、本人承诺"},{type:"blank",field:"filingUnitName"},{type:"text",value:"(单位)满足《安全评价检测检验机构管理办法》所规定的资质条件要求,本人及单位三年内无重大违法失信行为,申请资质所提交的有关材料真实、合法、有效,并对其真实性、合法性承担相应法律责任,接受并配合有关部门对本单位开展的专业能力审查。"}]},{key:"p3",parts:[{type:"text",value:"三、如能获准资质,本单位将严格按照法律法规、规章标准的要求开展安全评价活动,遵守执业准则和职业道德,并对作出的安全评价报告结果承担法律责任,自觉接受应急管理部门、煤矿安全监督管理部门等行政执法部门的监督检查。"}]}];function i(e){var t=e.legalRepName,n=e.filingUnitName,r=(void 0===n?"":n)||"__________";return"本人是".concat((void 0===t?"":t)||"__________",",是").concat(r,"法定代表人,现代表我单位承诺如下:\n\n一、我单位自愿申请安全评价机构资质。本人已经认真学习、了解并掌握《安全生产法》《行政许可法》《行政处罚法》及《安全评价检测检验机构管理办法》等法律法规的相关规定,知悉开展安全评价工作的法律责任、义务、权力和风险。\n\n二、本人承诺").concat(r,"(单位)满足《安全评价检测检验机构管理办法》所规定的资质条件要求,本人及单位三年内无重大违法失信行为,申请资质所提交的有关材料真实、合法、有效,并对其真实性、合法性承担相应法律责任,接受并配合有关部门对本单位开展的专业能力审查。\n\n三、如能获准资质,本单位将严格按照法律法规、规章标准的要求开展安全评价活动,遵守执业准则和职业道德,并对作出的安全评价报告结果承担法律责任,自觉接受应急管理部门、煤矿安全监督管理部门等行政执法部门的监督检查。")}function o(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",a=String(i).match(/本人是(.+?),是(.+?)法定代表人/);if(a)return{legalRepName:(null==(n=a[1])?void 0:n.trim())||"",filingUnitName:(null==(r=a[2])?void 0:r.trim())||o||""};var l=String(i).match(/本人是(.+?)是(.+?)法定代表人/);return{legalRepName:(null==l||null==(e=l[1])?void 0:e.trim())||"",filingUnitName:(null==l||null==(t=l[2])?void 0:t.trim())||o||""}}},94727(e,t,n){"use strict";n.r(t),n.d(t,{clearLocalDraft:()=>l,createEmptyFilingDetail:()=>s,loadLocalDraft:()=>o,saveLocalDraft:()=>a});var r=n(94878);function i(e){return"".concat("qual_filing_local_draft:").concat(e||"application")}function o(e){try{var t=sessionStorage.getItem(i(e));if(!t)return null;return JSON.parse(t)}catch(e){return null}}function a(e,t){try{sessionStorage.setItem(i(e),JSON.stringify(t))}catch(e){console.warn("[filingLocalDraft] save failed:",e)}}function l(e){sessionStorage.removeItem(i(e))}function s(){return{id:null,filingStatusCode:5,materials:(0,r.createLocalMaterials)(),commitment:{legalRepPersonnelId:"",legalRepName:"",filingUnitName:"",signDate:null,legalRepSignatureUrl:"",signatureFiles:[],commitmentContent:""},personnelList:[],equipmentList:[],businessScope:"",filingTerritoryName:"",filingUnitName:"",filingUnitTypeName:"",creditCode:"",registerAddress:"",officeAddress:"",qualCertNo:"",infoDisclosureUrl:"",legalPersonPhone:"",contactPhone:"",fixedAssetAmount:null,workplaceArea:null,archiveRoomArea:null,fulltimeEvaluatorCount:null,registeredEngineerCount:null,unitIntro:"",attachmentUrl:"",attachments:[]}}},94878(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function o(e){for(var t=1;ta,createLocalMaterials:()=>l});var a=[{id:1,materialType:1,materialContent:"申请材料目录(原件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:null,requiredFlag:1},{id:2,materialType:2,materialContent:"申请书(原件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"法定代表人亲笔签名并加盖单位公章",requiredFlag:1},{id:3,materialType:3,materialContent:"法人证明(复印件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"营业执照或事业单位法人证书等",requiredFlag:1},{id:4,materialType:4,materialContent:"三年内无重大违法失信记录查询证明(原件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"法定代表人亲笔签名并加盖单位公章",requiredFlag:1},{id:5,materialType:5,materialContent:"法定代表人承诺书(原件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"法定代表人亲笔签名",requiredFlag:1},{id:6,materialType:6,materialContent:"固定资产法定证明材料或书面承诺",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:null,requiredFlag:1},{id:7,materialType:7,materialContent:"工作场所及档案室面积证明资料(复印件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"房产证、租赁协议等",requiredFlag:1},{id:8,materialType:8,materialContent:"安全评价师专业能力证明(彩色复印件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"学历证书、职称证及其他相关证明材料",requiredFlag:1},{id:9,materialType:9,materialContent:"相关负责人证明材料(复印件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"任命文件、简历、职称证等",requiredFlag:1},{id:10,materialType:10,materialContent:"机构内部管理制度(非受控版)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:null,requiredFlag:1}];function l(){return a.map(function(e){return o(o({id:"local-material-".concat(e.sortOrder),filingId:null},e),{},{uploadStatusCode:1,uploadStatusName:"待上传",attachmentUrl:null})})}},83577(e,t,n){"use strict";n.r(t),n.d(t,{FILING_FORM_PATH:()=>r,FILING_LIST_PATH:()=>i,goFilingForm:()=>o,goFilingList:()=>a});var r="/safetyEval/container/qualApplication/filingForm",i={application:"/safetyEval/container/qualApplication/filingApplication/list",filed:"/safetyEval/container/qualApplication/filedManage/list",change:"/safetyEval/container/qualApplication/filingChange/list"};function o(e){var t=e.mode,n=e.id,i=e.originFilingId,o=e.readOnly,a=new URLSearchParams({mode:t});n&&a.set("id",String(n)),i&&a.set("originFilingId",String(i)),o&&a.set("readOnly","1"),window.location.href="".concat(r,"?").concat(a.toString())}function a(e){window.location.href=i[e]||i.application}},24941(e,t,n){"use strict";n.r(t),n.d(t,{fetchOrgPersonnelOptions:()=>C,mapEquipRowToFilingEquipment:()=>O,mapStaffRowToFilingPersonnel:()=>w,mergeDetailFromForms:()=>F,persistFilingToBackend:()=>T});var r=n(30045),i=n(48032),o=n(31467),a=n(73398),l=n(76332),s=n(49788),c=n(52528);function u(e){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var f=["materials","commitment","personnelList","equipmentList"];function d(e){return function(e){if(Array.isArray(e))return v(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||m(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e){if(null!=e){var t=e["function"==typeof Symbol&&Symbol.iterator||"@@iterator"],n=0;if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length))return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}}}throw TypeError(u(e)+" is not iterable")}function y(e,t){var n="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=m(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,o=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw o}}}}function m(e,t){if(e){if("string"==typeof e)return v(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?v(e,t):void 0}}function v(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(g(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,g(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,g(u,"constructor",c),g(c,"constructor",s),s.displayName="GeneratorFunction",g(c,i,"GeneratorFunction"),g(u),g(u,i,"Generator"),g(u,r,function(){return this}),g(u,"toString",function(){return"[object Generator]"}),(h=function(){return{w:o,m:f}})()}function g(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(g=function(e,t,n,r){function o(t,n){g(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function b(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function j(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=(0,a.gR)(e.id);return{id:"local-person-".concat(t),sourcePersonnelId:t,personName:e.staffName,userName:e.staffName,personTypeName:e.personType,positionName:e.positionName,titleName:e.titleName,registerEngineerFlag:e.registerEngineerFlag,workExperience:e.workExperience}}function O(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=(0,a.gR)(e.id);return{id:"local-equip-".concat(t),sourceEquipmentId:t,deviceName:e.deviceName,deviceModel:e.deviceModel,manufacturer:e.manufacturer,calibrationReportUrl:e.calibrationReportUrl||""}}function P(){return(P=S(h().m(function e(t,n){var i,o,a,l=arguments;return h().w(function(e){for(;;)switch(e.n){case 0:if(!(((o=l.length>2&&void 0!==l[2]?l[2]:[])||[]).length>0)){e.n=1;break}return e.a(2,o);case 1:return e.n=2,t.qualFilingMaterialInitTemplate({filingId:n});case 2:return e.n=3,(0,r.fetchQualFilingDetail)(n);case 3:return a=e.v,e.a(2,(null==a||null==(i=a.data)?void 0:i.materials)||[])}},e)}))).apply(this,arguments)}function I(){return(I=S(h().m(function e(t){var n,r,i,o,a,l,s,c=arguments;return h().w(function(e){for(;;)switch(e.p=e.n){case 0:n=c.length>1&&void 0!==c[1]?c[1]:[],r=c.length>2&&void 0!==c[2]?c[2]:[],i=[],o=y(n),e.p=1,l=h().m(function e(){var n,o;return h().w(function(e){for(;;)switch(e.n){case 0:if(null!=(n=a.value)&&n.attachmentUrl){e.n=1;break}return e.a(2,1);case 1:null!=(o=r.find(function(e){return Number(e.sortOrder)===Number(n.sortOrder)}))&&o.id&&o.attachmentUrl!==n.attachmentUrl&&i.push(t.qualFilingMaterialUpload({id:o.id,attachmentUrl:n.attachmentUrl}));case 2:return e.a(2)}},e)}),o.s();case 2:if((a=o.n()).done){e.n=5;break}return e.d(p(l()),3);case 3:if(!e.v){e.n=4;break}return e.a(3,4);case 4:e.n=2;break;case 5:e.n=7;break;case 6:e.p=6,s=e.v,o.e(s);case 7:return e.p=7,o.f(),e.f(7);case 8:if(!i.length){e.n=9;break}return e.n=9,Promise.all(i);case 9:return e.a(2)}},e,null,[[1,6,7,8]])}))).apply(this,arguments)}function E(){return(E=S(h().m(function e(t,n){var r,i,o,a,l,s,c=arguments;return h().w(function(e){for(;;)switch(e.n){case 0:if(r=c.length>2&&void 0!==c[2]?c[2]:[],o=new Map(((i=c.length>3&&void 0!==c[3]?c[3]:[])||[]).map(function(e){return[String(e.sourcePersonnelId),e]})),a=new Set(r.map(function(e){return String(e.sourcePersonnelId)}).filter(Boolean)),!(l=(i||[]).filter(function(e){return!a.has(String(e.sourcePersonnelId))}).map(function(e){return t.qualFilingPersonnelDelete({id:e.id})})).length){e.n=1;break}return e.n=1,Promise.all(l);case 1:if(!(s=d(a).filter(function(e){return!o.has(e)})).length){e.n=2;break}return e.n=2,t.qualFilingPersonnelBatchAdd({filingId:n,sourcePersonnelIds:s});case 2:return e.a(2)}},e)}))).apply(this,arguments)}function N(){return(N=S(h().m(function e(t,n){var i,o,a,l,s,c,u,f,m,v,g,b,j,x,S=arguments;return h().w(function(e){for(;;)switch(e.p=e.n){case 0:if(o=S.length>2&&void 0!==S[2]?S[2]:[],l=new Map(((a=S.length>3&&void 0!==S[3]?S[3]:[])||[]).map(function(e){return[String(e.sourceEquipmentId),e]})),s=new Set(o.map(function(e){return String(e.sourceEquipmentId)}).filter(Boolean)),!(c=(a||[]).filter(function(e){return!s.has(String(e.sourceEquipmentId))}).map(function(e){return t.qualFilingEquipmentDelete({id:e.id})})).length){e.n=1;break}return e.n=1,Promise.all(c);case 1:if(!(u=d(s).filter(function(e){return!l.has(e)})).length){e.n=2;break}return e.n=2,t.qualFilingEquipmentBatchAdd({filingId:n,sourceEquipmentIds:u});case 2:if(o.some(function(e){return e.calibrationReportUrl})){e.n=3;break}return e.a(2);case 3:return e.n=4,(0,r.fetchQualFilingDetail)(n);case 4:m=(null==(f=e.v)||null==(i=f.data)?void 0:i.equipmentList)||[],v=[],g=y(o),e.p=5,j=h().m(function e(){var n,r;return h().w(function(e){for(;;)switch(e.n){case 0:if((n=b.value).calibrationReportUrl){e.n=1;break}return e.a(2,1);case 1:null!=(r=m.find(function(e){return String(e.sourceEquipmentId)===String(n.sourceEquipmentId)}))&&r.id&&r.calibrationReportUrl!==n.calibrationReportUrl&&v.push(t.qualFilingEquipmentUploadCalibration({id:r.id,attachmentUrl:n.calibrationReportUrl}));case 2:return e.a(2)}},e)}),g.s();case 6:if((b=g.n()).done){e.n=9;break}return e.d(p(j()),7);case 7:if(!e.v){e.n=8;break}return e.a(3,8);case 8:e.n=6;break;case 9:e.n=11;break;case 10:e.p=10,x=e.v,g.e(x);case 11:return e.p=11,g.f(),e.f(11);case 12:if(!v.length){e.n=13;break}return e.n=13,Promise.all(v);case 13:return e.a(2)}},e,null,[[5,10,11,12]])}))).apply(this,arguments)}function L(e,t){return(null==e?void 0:e.message)||(null==e?void 0:e.errMessage)||t}function T(e,t,n){return k.apply(this,arguments)}function k(){return(k=S(h().m(function e(t,n,i){var o,a,u,d,p,y,m,v,g,b,x,S,C,A,w,O,T,k,F,D,R,q,_,z;return h().w(function(e){for(;;)switch(e.n){case 0:if(a=n.id,u=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e.materials,e.commitment,e.personnelList,e.equipmentList,function(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n={};for(var r in e)if(({}).hasOwnProperty.call(e,r)){if(-1!==t.indexOf(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r0&&void 0!==arguments[0]?arguments[0]:{},t=e.commitment||{};return!!(t.legalRepName||t.legalRepPersonnelId||t.signDate||t.legalRepSignatureUrl)}(n)){e.n=15;break}return e.n=14,t.qualFilingCommitmentSaveOrUpdate(function(e){var t=e.commitment||{},n=t.filingUnitName||e.filingUnitName||"",r=t.legalRepName||"",i=t.legalRepPersonnelId||"";return{id:t.id,filingId:e.id,legalRepSignatureUrl:t.legalRepSignatureUrl,signDate:(0,l.au)(t.signDate),legalRepPersonnelId:i,legalRepName:r,commitmentContent:(0,c.buildCommitmentContent)({legalRepName:r,filingUnitName:n})}}(j(j({},n),{},{id:a})));case 14:if((null==(b=e.v)?void 0:b.success)!==!1){e.n=15;break}throw Error(L(b,"暂存承诺书失败"));case 15:if(x=(n.personnelList||[]).length>0,S=(n.equipmentList||[]).length>0,!(x||S)){e.n=21;break}return e.n=16,(0,r.fetchQualFilingDetail)(a);case 16:if(D=null===(C=e.v)){e.n=17;break}D=void 0===C;case 17:if(!D){e.n=18;break}R=void 0,e.n=19;break;case 18:R=C.data;case 19:if(F=R){e.n=20;break}F=v;case 20:v=F;case 21:if(!x){e.n=22;break}return e.n=22,function(e,t){return E.apply(this,arguments)}(t,a,n.personnelList||[],v.personnelList||[]);case 22:if(!S){e.n=29;break}if(!x){e.n=28;break}return e.n=23,(0,r.fetchQualFilingDetail)(a);case 23:if(_=null===(A=e.v)){e.n=24;break}_=void 0===A;case 24:if(!_){e.n=25;break}z=void 0,e.n=26;break;case 25:z=A.data;case 26:if(q=z){e.n=27;break}q=v;case 27:v=q;case 28:return e.n=29,function(e,t){return N.apply(this,arguments)}(t,a,n.equipmentList||[],v.equipmentList||[]);case 29:return e.n=30,(0,r.fetchQualFilingDetail)(a);case 30:return w=e.v,e.a(2,(null==w?void 0:w.data)||{id:a})}},e)}))).apply(this,arguments)}function F(e,t){var n,r,i=t.basicValues,o=t.commitmentValues;return j(j(j({},e),i),{},{attachmentUrl:Array.isArray(null==i?void 0:i.attachmentUrl)?null==i||null==(n=i.attachmentUrl)?void 0:n.map(function(e){return e.url}).join(","):null==i?void 0:i.attachmentUrl,materials:e.materials,personnelList:e.personnelList,equipmentList:e.equipmentList,commitment:j(j(j({},e.commitment),o),{},{legalRepSignatureUrl:Array.isArray(null==o?void 0:o.legalRepSignatureUrl)?null==o||null==(r=o.legalRepSignatureUrl)?void 0:r.map(function(e){return e.url}).join(","):null==o?void 0:o.legalRepSignatureUrl})})}},26368(e,t,n){"use strict";n.r(t),n.d(t,{verifyFilingPrerequisites:()=>a});var r=["负责人","技术负责人","质量负责人"];function i(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return String(e).includes("高级")}function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.registerEngineerFlag;return 1===t||!0===t||"1"===t}function a(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=[],n=Number(e.fixedAssetAmount)||0;t.push({key:"entity",label:"主体资格",desc:"独立法人资格,固定资产不少于一千万元",passed:n>=1e3});var a=Number(e.workplaceArea)||0,l=(e.equipmentList||[]).length;t.push({key:"facility",label:"场所与设备",desc:"工作场所建筑面积不少于1000㎡,检测检验设施设备原值不少于800万元",passed:a>=1e3&&(l>0||n>=800)});var s=e.personnelList||[];return s.length,s.filter(o).length,s.filter(function(e){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return String(e).includes("中级")||i(e)}(e.titleName)}).length,s.filter(function(e){return i(e.titleName)}).length,t.push({key:"personnelStructure",label:"人员数量与结构",desc:"专职技术人员≥25人,中级注安师≥30%,中级职称≥50%,高级职称≥30%",passed:!0}),s.filter(function(e){var t=String(e.workExperience||"");return t.length>=4||/[2-9]\s*年|[二三四五六七八九十]年/.test(t)}).length,t.push({key:"personnelExp",label:"人员资历",desc:"专职技术人员在本行业领域工作二年以上",passed:!0}),r.every(function(e){return s.some(function(t){return String(t.positionName||"").includes(e)&&i(t.titleName)})}),t.push({key:"keyPosition",label:"关键岗位要求",desc:"负责人、技术负责人、质量负责人具有高级职称,工作八年以上",passed:!0}),t.push({key:"mgmtSystem",label:"管理体系",desc:"管理体系文件已上传",passed:!0}),{passed:t.every(function(e){return e.passed}),items:t}}},27102(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(96540),i=n(88648),o=n(15998),a=n(42441),l=n(74848);function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return s(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?s(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),i=n[0],o=n[1];return(0,r.useEffect)(function(){i||e.orgInfoGet().then(function(e){var t,n,r;null!=e&&null!=(t=e.data)&&t.id&&(o(null==e||null==(n=e.data)?void 0:n.id),sessionStorage.setItem("orgInfoId",null==e||null==(r=e.data)?void 0:r.id))})},[]),(0,l.jsx)("div",{style:{height:"100%"},children:i?e.children:(0,l.jsx)(a.A,{active:!0})})})},34910(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(96540),i=n(26380),o=n(85196),a=n(71021),l=n(36492),s=n(18246),c=n(21023),u=n(44500),f=n(83454),d=n(51038),p=n(23899),y=n(57006),m=n(15998),v=n(88648),h=n(88565),g=n(56097),b=n(74848);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function S(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return C(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?C(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],p=e.qualReview,y=e.queryReviewList,m=p||{},v=m.qualReviewList,j=m.qualReviewTotal,x=m.qualReviewLoading,w=function(){y(S(S({},(0,g.toQualReviewPageQuery)(A.query)),{},{supervision:!0,applyTypeCode:1}))};(0,r.useEffect)(function(){n.setFieldsValue(A.query),w()},[]);var O=[{title:"序号",width:60,fixed:"left",render:function(e,t,n){return n+1}},{title:"机构名称",dataIndex:"filingUnitName",width:220,ellipsis:!0},{title:"机构类型",dataIndex:"filingUnitTypeName",width:100},{title:"证书编号",dataIndex:"filingNo",width:140,ellipsis:!0},{title:"安全评价业务范围",dataIndex:"businessScope",width:180,ellipsis:!0},{title:"确认状态",dataIndex:"filingStatusCode",width:100,render:function(e){var t=g.FILING_CODE_TO_CONFIRM[e],n=h.WL[t];return n?(0,b.jsx)(o.A,{color:n.color,children:n.label}):"--"}},{title:"操作",width:140,fixed:"right",render:function(e,t){return(0,b.jsxs)(f.A,{children:[(0,b.jsx)(a.Ay,{type:"link",size:"small",children:"查看"}),2===t.filingStatusCode&&(0,b.jsx)(a.Ay,{type:"link",size:"small",children:"核验"})]})}}];return(0,b.jsxs)(c.A,{title:"专家资料核验",children:[(0,b.jsx)(u.A,{style:{marginBottom:24},form:n,loading:x,formLine:[(0,b.jsx)(i.A.Item,{name:"filingUnitName",children:(0,b.jsx)(d.A.Input,{label:"机构名称",placeholder:"请输入",allowClear:!0})},"filingUnitName"),(0,b.jsx)(i.A.Item,{name:"filingUnitTypeName",children:(0,b.jsx)(d.A.Select,{label:"机构类型",placeholder:"请选择",allowClear:!0,style:{width:"100%"},options:g.REVIEW_UNIT_TYPE_OPTIONS})},"filingUnitTypeName"),(0,b.jsx)(i.A.Item,{name:"businessScope",children:(0,b.jsx)(d.A.Select,{label:"安全评价业务范围",placeholder:"请选择",allowClear:!0,showSearch:!0,optionFilterProp:"label",style:{width:"100%"},options:g.REVIEW_BUSINESS_SCOPE_OPTIONS})},"businessScope"),(0,b.jsx)(i.A.Item,{name:"confirmStatus",children:(0,b.jsxs)(d.A.Select,{label:"确认状态",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:[(0,b.jsx)(l.A.Option,{value:"pending",children:"待确认"}),(0,b.jsx)(l.A.Option,{value:"passed",children:"确认通过"}),(0,b.jsx)(l.A.Option,{value:"rejected",children:"打回"})]})},"confirmStatus")],onReset:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()},onFinish:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()}}),(0,b.jsx)(s.A,{rowKey:"id",columns:O,dataSource:v,scroll:{y:e.scrollY},loading:x,pagination:{total:j,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")},current:A.query.current||1,pageSize:A.query.size||10,onChange:function(e,t){A.query=S(S({},A.query),{},{current:e,size:t}),w()}}})]})}))},13061(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>m});var r=n(96540),i=n(73133),o=n(85196),a=n(21734),l=n(21023),s=n(88565),c=n(15998),u=n(88648),f=n(57006),d=n(2016),p=n(74848),y=f.tools.router;let m=(0,c.dm)([u.NS_QUAL_REVIEW],!0)(function(e){var t=e.qualReview,n=e.fetchQualFilingDetail,c=e.fetchQualChangeDetail,u=t.fetchQualFilingDetailLoading,f=t.qualFilingDetail,m="change"===y.query.mode,v=s.$t[f.filingStatusCode];return(0,r.useEffect)(function(){(m?c:n)({id:y.query.id})},[]),(0,p.jsx)(l.A,{title:(0,p.jsxs)(i.A,{children:[(0,p.jsx)("span",{children:"备案申请详情"}),v&&(0,p.jsx)(o.A,{color:v.color,children:v.label})]}),history:e.history,previous:!0,children:(0,p.jsx)(a.A,{spinning:u,children:(0,p.jsx)(d.default,{detail:f})})})})},2016(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>g});var r=n(96540),i=n(85196),o=n(36492),a=n(36223),l=n(18246),s=n(73133),c=n(87160),u=n(71021),f=n(21637),d=n(15998),p=n(88648),y=n(76243),m=n(13290),v=n(74848);function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),x=j[0],S=j[1],C=[{title:"序号",width:60,render:function(e,t,n){return n+1}},{title:"材料名称",dataIndex:"materialContent"}],A=void 0!==d&&d?[].concat(C,[{title:"上传附件",dataIndex:"attachmentDesc",width:120},{title:"格式",dataIndex:"materialFormat",width:80},{title:"状态",width:100,render:function(e,t){return 2===t.uploadStatusCode?(0,v.jsx)(i.A,{color:"success",children:t.uploadStatusName||"已上传"}):(0,v.jsx)(i.A,{color:"warning",children:t.uploadStatusName||"待上传"})}},{title:"符合性",width:100,render:function(e,t){return(0,v.jsxs)(o.A,{style:{width:"100%",fontSize:"0.75rem"},size:"small",placeholder:"请选择",value:g[t.id],allowClear:!0,defaultValue:"pass",onChange:function(e){return null==b?void 0:b(t.id,e)},children:[(0,v.jsx)(o.A.Option,{value:"pass",children:"符合"}),(0,v.jsx)(o.A.Option,{value:"fail",children:"不符合"})]})}}]):[].concat(C,[{title:"格式",dataIndex:"materialFormat",width:80},{title:"状态",width:100,render:function(e,t){return 2===t.uploadStatusCode?(0,v.jsx)(i.A,{color:"success",children:t.uploadStatusName||"已上传"}):(0,v.jsx)(i.A,{color:"warning",children:t.uploadStatusName||"待上传"})}},{title:"操作",width:80,render:function(e,t){return(0,v.jsx)(m.A,{url:t.attachmentUrl,children:"预览"})}}]),w=n.commitment||{},O=[{key:"info",label:"1.备案基本信息",children:(0,v.jsxs)(a.A,{column:2,bordered:!0,size:"small",style:{background:"#fff"},children:[(0,v.jsx)(a.A.Item,{label:"申请的业务范围",span:2,children:n.businessScope}),(0,v.jsx)(a.A.Item,{label:"备案属地",children:n.filingTerritoryName}),(0,v.jsx)(a.A.Item,{label:"备案单位",children:n.filingUnitName}),(0,v.jsx)(a.A.Item,{label:"备案单位类型",children:n.filingUnitTypeName}),(0,v.jsx)(a.A.Item,{label:"统一社会信用代码",children:n.creditCode}),(0,v.jsx)(a.A.Item,{label:"办公地址",span:2,children:n.officeAddress}),(0,v.jsx)(a.A.Item,{label:"注册地址",span:2,children:n.registerAddress}),(0,v.jsx)(a.A.Item,{label:"资质证书编号",children:n.qualCertNo}),(0,v.jsx)(a.A.Item,{label:"信息公开网址",children:n.infoDisclosureUrl}),(0,v.jsx)(a.A.Item,{label:"法人代表及电话",children:n.legalPersonPhone}),(0,v.jsx)(a.A.Item,{label:"联系人及电话",children:n.contactPhone}),(0,v.jsx)(a.A.Item,{label:"固定资产总值(万元)",children:n.fixedAssetAmount}),(0,v.jsxs)(a.A.Item,{label:"工作场所建筑面积",children:[n.workplaceArea,"㎡"]}),(0,v.jsxs)(a.A.Item,{label:"档案室面积",children:[n.archiveRoomArea,"㎡"]}),(0,v.jsxs)(a.A.Item,{label:"专职安全评价师数量",children:[n.fulltimeEvaluatorCount,"人"]}),(0,v.jsxs)(a.A.Item,{label:"注册安全工程师数量",children:[n.registeredEngineerCount,"人"]}),(0,v.jsx)(a.A.Item,{label:"单位基本情况介绍",span:2,children:n.unitIntro})]})},{key:"materials",label:"2.备案材料上传",children:(0,v.jsx)(l.A,{size:"small",bordered:!0,rowKey:"id",pagination:!1,dataSource:(null==n?void 0:n.materials)||[],columns:A})},{key:"promise",label:"3.法定代表人承诺书",children:(0,v.jsxs)("div",{style:{border:"1px solid #d9d9d9",borderRadius:6,padding:"1.25rem 1.5rem",background:"#fafafa",fontSize:"0.85rem",lineHeight:1.9},children:[(0,v.jsx)("p",{style:{textAlign:"center",fontWeight:600,fontSize:"0.95rem",marginBottom:"0.75rem"},children:"申请单位法定代表人承诺书"}),(0,v.jsxs)("p",{children:["本人",w.legalRepName,"是",n.filingUnitName,"法定代表人,现代表我单位承诺如下:"]}),(0,v.jsx)("p",{children:"一、我单位自愿申请安全评价机构资质。本人已经认真学习、了解并掌握《安全生产法》《行政许可法》《行政处罚法》及《安全评价检测检验机构管理办法》等法律法规的相关规定,知悉开展安全评价工作的法律责任、义务、权力和风险。"}),(0,v.jsx)("p",{children:"二、本人承诺本单位满足《安全评价检测检验机构管理办法》所规定的资质条件要求,本人及单位三年内无重大违法失信行为,申请资质所提交的有关材料真实、合法、有效,并对其真实性、合法性承担相应法律责任,接受并配合有关部门对本单位开展的专业能力审查。"}),(0,v.jsx)("p",{children:"三、如能获准资质,本单位将严格按照法律法规、规章标准的要求开展安全评价活动,遵守执业准则和职业道德,并对作出的安全评价报告结果承担法律责任,自觉接受应急管理部门、煤矿安全监督管理部门等行政执法部门的监督检查。"}),(0,v.jsxs)("p",{style:{marginTop:"0.75rem"},children:["法定代表人:",w.legalRepName,"(已签名)"]}),(0,v.jsxs)(s.A,{children:[w.legalRepSignatureUrl&&(0,v.jsx)(c.A,{src:w.legalRepSignatureUrl,style:{width:100,height:100}}),(0,v.jsx)("p",{children:"(单位盖章)"})]}),(0,v.jsx)("p",{style:{textAlign:"right"},children:w.signDate})]})},{key:"personnel",label:"4.备案人员管理",children:(0,v.jsx)(l.A,{size:"small",bordered:!0,rowKey:"id",pagination:!1,dataSource:(null==n?void 0:n.personnelList)||[],columns:[{title:"序号",width:60,render:function(e,t,n){return n+1}},{title:"人员姓名",dataIndex:"personName",width:100},{title:"类型",dataIndex:"personTypeName",width:100},{title:"职称",dataIndex:"titleName",width:100},{title:"操作",width:80,render:function(e,t){return(0,v.jsx)(u.Ay,{type:"link",size:"small",onClick:function(){return S(t.sourcePersonnelId)},children:"查看"})}}]})},{key:"equipment",label:"5.装备清单",children:(0,v.jsx)(l.A,{size:"small",bordered:!0,rowKey:"id",pagination:!1,dataSource:(null==n?void 0:n.equipmentList)||[],columns:[{title:"序号",width:60,render:function(e,t,n){return n+1}},{title:"装备名称",dataIndex:"deviceName",width:140},{title:"规格型号",dataIndex:"deviceModel",width:120},{title:"生产厂家",dataIndex:"manufacturer",width:140},{title:"计量检定情况",width:120,render:function(e,t){return t.calibrationReportUrl?(0,v.jsx)(i.A,{color:"success",children:"已上传"}):(0,v.jsx)(i.A,{color:"warning",children:"待上传"})}},{title:"操作",width:80,render:function(e,t){return(0,v.jsx)(m.A,{url:t.calibrationReportUrl,children:"查看"})}}]})}];return(0,v.jsxs)(v.Fragment,{children:[(0,v.jsx)(f.A,{items:O}),(0,v.jsx)(y.default,{open:!!x,currentId:x,onCancel:function(){return S("")}})]})})},90902(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(96540),i=n(26380),o=n(85196),a=n(71021),l=n(36492),s=n(18246),c=n(21023),u=n(44500),f=n(51038),d=n(83454),p=n(23899),y=n(57006),m=n(15998),v=n(88648),h=n(88565),g=n(74848);function b(e){return(b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function j(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function x(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return C(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?C(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nx});var r=n(96540),i=n(95725),o=n(26380),a=n(87959),l=n(73133),s=n(85196),c=n(36492),u=n(71021),f=n(15998),d=n(57006),p=n(88648),y=n(21023),m=n(74848);function v(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return h(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(h(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,h(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,h(u,"constructor",c),h(c,"constructor",s),s.displayName="GeneratorFunction",h(c,i,"GeneratorFunction"),h(u),h(u,i,"Generator"),h(u,r,function(){return this}),h(u,"toString",function(){return"[object Generator]"}),(v=function(){return{w:o,m:f}})()}function h(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(h=function(e,t,n,r){function o(t,n){h(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function g(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return b(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?b(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],p=d.tools.router,h=e.qualReview,x=e.fetchQualFilingDetail,S=e.fetchQualChangeDetail,C=e.reviewSubmit,A=e.changeReviewSubmit,w=h||{},O=w.fetchQualFilingDetailLoading,P=w.qualReviewSubmitLoading,I=w.qualFilingDetail,E="change"===p.query.mode;(0,r.useEffect)(function(){(E?S:x)({id:p.query.id})},[]);var N=(n=v().m(function t(){var n,r,i,o,l;return v().w(function(t){for(;;)switch(t.n){case 0:return t.n=1,f.validateFields();case 1:return n=t.v,r={1:"确认通过",3:"打回"},i=E?A:C,o={filingId:p.query.id,reviewResult:n.reviewResult,reviewResultRemark:r[n.reviewResult],reviewOpinion:n.reviewOpinion},t.n=2,i(o);case 2:(null==(l=t.v)?void 0:l.success)!==!1&&(a.Ay.success("确认提交成功"),e.history.goBack());case 3:return t.a(2)}},t)}),i=function(){var e=this,t=arguments;return new Promise(function(r,i){var o=n.apply(e,t);function a(e){g(o,r,i,a,l,"next",e)}function l(e){g(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return i.apply(this,arguments)});return(0,m.jsx)(y.A,{title:(0,m.jsxs)(l.A,{children:[(0,m.jsx)("span",{children:"资质备案确认"}),(0,m.jsx)(s.A,{color:"warning",children:"待确认"})]}),history:e.history,previous:!0,children:(0,m.jsxs)("div",{className:"qual-confirm-form",children:[(0,m.jsxs)("div",{className:"summary-card",children:[(0,m.jsx)("div",{className:"summary-card-title",children:"基本信息"}),(0,m.jsxs)("div",{className:"summary-card-grid",children:[(0,m.jsxs)("div",{children:[(0,m.jsx)("div",{className:"summary-label",children:"机构名称"}),(0,m.jsx)("div",{className:"summary-value",children:I.filingUnitName})]}),(0,m.jsxs)("div",{children:[(0,m.jsx)("div",{className:"summary-label",children:"证书编号"}),(0,m.jsx)("div",{className:"summary-value",children:I.filingNo||"--"})]}),(0,m.jsxs)("div",{children:[(0,m.jsx)("div",{className:"summary-label",children:"业务范围"}),(0,m.jsx)("div",{className:"summary-value",children:I.businessScope||"--"})]}),(0,m.jsxs)("div",{children:[(0,m.jsx)("div",{className:"summary-label",children:"提交时间"}),(0,m.jsx)("div",{className:"summary-value",children:I.submitTime||"--"})]})]})]}),(0,m.jsxs)("div",{className:"opinion-card",children:[(0,m.jsx)("div",{className:"summary-card-title",children:"确认意见"}),(0,m.jsxs)(o.A,{form:f,layout:"vertical",children:[(0,m.jsx)(o.A.Item,{label:"确认结果",name:"reviewResult",rules:[{required:!0,message:"请选择确认结果"}],children:(0,m.jsxs)(c.A,{placeholder:"请选择",children:[(0,m.jsx)(c.A.Option,{value:"1",children:"确认通过"}),(0,m.jsx)(c.A.Option,{value:"3",children:"打回"})]})}),(0,m.jsx)(o.A.Item,{label:"确认意见",name:"reviewOpinion",rules:[{required:!0,message:"请输入确认意见"}],children:(0,m.jsx)(j,{rows:4,placeholder:"请输入确认意见..."})})]})]}),(0,m.jsx)("div",{className:"footer-bar",children:(0,m.jsx)(u.Ay,{type:"primary",onClick:N,loading:O||P,children:"提交确认"})})]})})})},53426(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(96540),i=n(26380),o=n(85196),a=n(71021),l=n(36492),s=n(18246),c=n(21023),u=n(44500),f=n(83454),d=n(51038),p=n(23899),y=n(57006),m=n(15998),v=n(88648),h=n(88565),g=n(56097),b=n(74848);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function S(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return C(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?C(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],p=e.qualReview,y=e.queryReviewList,m=p||{},v=m.qualReviewList,j=m.qualReviewTotal,x=m.qualReviewLoading,w=function(){y(S(S({},(0,g.toQualReviewPageQuery)(A.query)),{},{supervision:!0,applyTypeCode:3}))};(0,r.useEffect)(function(){n.setFieldsValue(A.query),w()},[]);var O=[{title:"序号",width:60,fixed:"left",render:function(e,t,n){return n+1}},{title:"机构名称",dataIndex:"filingUnitName",width:220,ellipsis:!0},{title:"机构类型",dataIndex:"filingUnitTypeName",width:100},{title:"证书编号",dataIndex:"filingNo",width:140,ellipsis:!0},{title:"安全评价业务范围",dataIndex:"businessScope",width:180,ellipsis:!0},{title:"确认状态",dataIndex:"filingStatusCode",width:100,render:function(e){var t=h.wC[e];return t?(0,b.jsx)(o.A,{color:t.color,children:t.label}):"--"}},{title:"操作",width:140,fixed:"right",render:function(t,n){return(0,b.jsxs)(f.A,{children:[(0,b.jsx)(a.Ay,{type:"link",size:"small",onClick:function(){return e.history.push("FilingDetail?id=".concat(n.id))},children:"查看"}),2==n.filingStatusCode&&(0,b.jsx)(a.Ay,{type:"link",size:"small",onClick:function(){return e.history.push("QualConfirmForm?id=".concat(n.id))},children:"确认"})]})}}];return(0,b.jsxs)(c.A,{title:"资质备案确认",children:[(0,b.jsx)(u.A,{style:{marginBottom:24},form:n,loading:x,formLine:[(0,b.jsx)(i.A.Item,{name:"filingUnitName",children:(0,b.jsx)(d.A.Input,{label:"机构名称",placeholder:"请输入",allowClear:!0})},"filingUnitName"),(0,b.jsx)(i.A.Item,{name:"filingUnitTypeName",children:(0,b.jsx)(d.A.Select,{label:"机构类型",placeholder:"请选择",allowClear:!0,style:{width:"100%"},options:g.REVIEW_UNIT_TYPE_OPTIONS})},"filingUnitTypeName"),(0,b.jsx)(i.A.Item,{name:"businessScope",children:(0,b.jsx)(d.A.Select,{label:"安全评价业务范围",placeholder:"请选择",allowClear:!0,showSearch:!0,optionFilterProp:"label",style:{width:"100%"},options:g.REVIEW_BUSINESS_SCOPE_OPTIONS})},"businessScope"),(0,b.jsx)(i.A.Item,{name:"confirmStatus",children:(0,b.jsxs)(d.A.Select,{label:"确认状态",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:[(0,b.jsx)(l.A.Option,{value:"pending",children:"待确认"}),(0,b.jsx)(l.A.Option,{value:"passed",children:"确认通过"}),(0,b.jsx)(l.A.Option,{value:"rejected",children:"打回"})]})},"confirmStatus")],onReset:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()},onFinish:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()}}),(0,b.jsx)(s.A,{rowKey:"id",columns:O,dataSource:v,scroll:{y:e.scrollY},loading:x,pagination:{total:j,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")},current:A.query.current||1,pageSize:A.query.size||10,onChange:function(e,t){A.query=S(S({},A.query),{},{current:e,size:t}),w()}}})]})}))},99449(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>I});var r=n(96540),i=n(95725),o=n(26380),a=n(85196),l=n(73133),s=n(71021),c=n(36492),u=n(18246),f=n(18182),d=n(55165),p=n(21023),y=n(44500),m=n(51038),v=n(23899),h=n(57006),g=n(88565),b=n(74848);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function S(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return A(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?A(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function A(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nx});var r=n(96540),i=n(95725),o=n(26380),a=n(87959),l=n(18182),s=n(71021),c=n(36492),u=n(15998),f=n(88648),d=n(88565),p=n(74848);function y(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return m(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(m(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,m(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,m(u,"constructor",c),m(c,"constructor",s),s.displayName="GeneratorFunction",m(c,i,"GeneratorFunction"),m(u),m(u,i,"Generator"),m(u,r,function(){return this}),m(u,"toString",function(){return"[object Generator]"}),(y=function(){return{w:o,m:f}})()}function m(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(m=function(e,t,n,r){function o(t,n){m(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function v(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0];(0,r.useEffect)(function(){u&&(D.resetFields(),N({current:1,size:100}))},[u]);var R=(0,r.useMemo)(function(){return(k||[]).map(function(e){return{label:e.userName,value:e.id,expert:e}})},[k]),q=(n=y().m(function e(){var t,n,r,i,o,l,s;return y().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,D.validateFields();case 1:return r=e.v,i=R.find(function(e){return e.value===r.filingExpertId}),o=x?T:L,l={filingId:f,reviewResult:r.reviewResult,reviewResultRemark:null==(t=d.Uq.find(function(e){return e.value===r.reviewResult}))?void 0:t.label,filingExpertId:r.filingExpertId,filingExpertName:null==i||null==(n=i.expert)?void 0:n.userName,reviewOpinion:r.reviewOpinion},x&&(l.id=l.filingId,delete l.filingId),e.n=2,o(l);case 2:(null==(s=e.v)?void 0:s.success)!==!1&&(a.Ay.success("审核提交成功"),O(),null==P||P());case 3:return e.a(2)}},e)}),i=function(){var e=this,t=arguments;return new Promise(function(r,i){var o=n.apply(e,t);function a(e){v(o,r,i,a,l,"next",e)}function l(e){v(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return i.apply(this,arguments)});return(0,p.jsxs)(l.A,{title:"审核操作",open:u,onCancel:O,width:580,footer:(0,p.jsxs)("div",{style:{display:"flex",justifyContent:"flex-end",gap:8},children:[(0,p.jsx)(s.Ay,{onClick:O,children:"取消"}),(0,p.jsx)(s.Ay,{type:"primary",loading:F,onClick:q,children:"提交"})]}),children:[(0,p.jsxs)("div",{style:{background:"#f8fafc",border:"1px solid #d9d9d9",borderRadius:6,padding:"0.75rem",marginBottom:"1rem"},children:[(0,p.jsx)("div",{style:{fontSize:"0.88rem",fontWeight:600,marginBottom:"0.5rem"},children:"评价分析"}),(0,p.jsxs)("div",{style:{display:"grid",gridTemplateColumns:"1fr 1fr 1fr",gap:"0.4rem"},children:[(0,p.jsxs)("div",{style:b,children:[(0,p.jsx)("div",{style:j,children:"已核验材料"}),(0,p.jsx)("div",{style:{fontSize:"1.1rem",fontWeight:700,color:"#1677ff"},children:C+w})]}),(0,p.jsxs)("div",{style:b,children:[(0,p.jsx)("div",{style:j,children:"符合"}),(0,p.jsx)("div",{style:{fontSize:"1.1rem",fontWeight:700,color:"#059669"},children:C})]}),(0,p.jsxs)("div",{style:b,children:[(0,p.jsx)("div",{style:j,children:"不符合"}),(0,p.jsx)("div",{style:{fontSize:"1.1rem",fontWeight:700,color:"#dc2626"},children:w})]})]})]}),(0,p.jsxs)(o.A,{form:D,layout:"vertical",style:{marginTop:"0.5rem"},children:[(0,p.jsx)(o.A.Item,{label:"审核结果",name:"reviewResult",rules:[{required:!0,message:"请选择审核结果"}],children:(0,p.jsx)(c.A,{placeholder:"请选择",children:d.Uq.map(function(e){return(0,p.jsx)(c.A.Option,{value:e.value,children:e.label},e.value)})})}),(0,p.jsx)(o.A.Item,{label:"指派专家",name:"filingExpertId",rules:[{required:!0,message:"请选择专家"}],children:(0,p.jsx)(c.A,{placeholder:"请选择",showSearch:!0,optionFilterProp:"label",options:R})}),(0,p.jsx)(o.A.Item,{label:"综合审核意见",name:"reviewOpinion",rules:[{required:!0,message:"请输入综合审核意见"}],children:(0,p.jsx)(g,{rows:3,placeholder:"请输入综合审核意见..."})})]})]})})},71544(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>S});var r=n(96540),i=n(73133),o=n(85196),a=n(71021),l=n(21734),s=n(21023),c=n(88565),u=n(57006),f=n(15998),d=n(88648),p=n(2016),y=n(41845),m=n(74848);function v(e){return(v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function h(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function g(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return x(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?x(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nw});var r=n(96540),i=n(26380),o=n(85196),a=n(71021),l=n(36492),s=n(18246),c=n(83454),u=n(21023),f=n(44500),d=n(51038),p=n(23899),y=n(57006),m=n(15998),v=n(88648),h=n(88565),g=n(56097),b=n(74848);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function S(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return C(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?C(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],p=e.qualReview,y=e.queryReviewList,m=p||{},v=m.qualReviewList,j=m.qualReviewTotal,x=m.qualReviewLoading,w=function(){y(S(S({},(0,g.toQualReviewPageQuery)(A.query)),{},{supervision:!0,applyTypeCode:1}))};(0,r.useEffect)(function(){n.setFieldsValue(A.query),w()},[]);var O=[{title:"序号",dataIndex:"id",width:60,fixed:"left",render:function(e,t,n){return n+1}},{title:"机构名称",dataIndex:"filingUnitName",width:220,ellipsis:!0},{title:"机构类型",dataIndex:"filingUnitTypeName",width:100},{title:"证书编号",dataIndex:"qualCertNo",width:140,ellipsis:!0},{title:"安全评价业务范围",dataIndex:"businessScope",width:180,ellipsis:!0},{title:"专家核验",dataIndex:"expertStatus",width:100,render:function(e,t){if(!t.needExpertCheck)return"--";var n=h.zL[e];return n?(0,b.jsx)(o.A,{color:n.color,children:n.label}):"--"}},{title:"审核状态",dataIndex:"filingStatusCode",width:100,render:function(e,t){var n=t.filingStatusCode,r=h.$t[n];return r?(0,b.jsx)(o.A,{color:r.color,children:r.label}):"--"}},{title:"操作",width:140,fixed:"right",render:function(t,n){return(0,b.jsxs)(c.A,{children:[(0,b.jsx)(a.Ay,{type:"link",size:"small",onClick:function(){return e.history.push("FilingDetail?id=".concat(n.id))},children:"查看"}),2===n.filingStatusCode&&(0,b.jsx)(a.Ay,{type:"link",size:"small",onClick:function(){return e.history.push("QualReviewForm?id=".concat(n.id))},children:"审核"})]})}}];return(0,b.jsxs)(u.A,{title:"资质备案审核",children:[(0,b.jsx)(f.A,{style:{marginBottom:24},form:n,loading:x,formLine:[(0,b.jsx)(i.A.Item,{name:"filingUnitName",children:(0,b.jsx)(d.A.Input,{label:"机构名称",placeholder:"请输入",allowClear:!0})},"filingUnitName"),(0,b.jsx)(i.A.Item,{name:"filingUnitTypeName",children:(0,b.jsx)(d.A.Select,{label:"机构类型",placeholder:"请选择",allowClear:!0,style:{width:"100%"},options:g.REVIEW_UNIT_TYPE_OPTIONS})},"filingUnitTypeName"),(0,b.jsx)(i.A.Item,{name:"businessScope",children:(0,b.jsx)(d.A.Select,{label:"安全评价业务范围",placeholder:"请选择",allowClear:!0,showSearch:!0,optionFilterProp:"label",style:{width:"100%"},options:g.REVIEW_BUSINESS_SCOPE_OPTIONS})},"businessScope"),(0,b.jsx)(i.A.Item,{name:"needExpertCheck",children:(0,b.jsxs)(d.A.Select,{label:"是否专家核验",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:[(0,b.jsx)(l.A.Option,{value:"yes",children:"是"}),(0,b.jsx)(l.A.Option,{value:"no",children:"否"})]})},"needExpertCheck"),(0,b.jsx)(i.A.Item,{name:"filingStatusCode",children:(0,b.jsxs)(d.A.Select,{label:"审核状态",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:[(0,b.jsx)(l.A.Option,{value:"2",children:"审核中"}),(0,b.jsx)(l.A.Option,{value:"3",children:"打回"})]})},"filingStatusCode")],onReset:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()},onFinish:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()}}),(0,b.jsx)(s.A,{rowKey:"id",columns:O,dataSource:v,scroll:{y:e.scrollY},loading:x,pagination:{total:j,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")},current:A.query.current||1,pageSize:A.query.size||10,onChange:function(e,t){A.query=S(S({},A.query),{},{current:e,size:t}),w()}}})]})}))},76608(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>r}),n(96540);let r=function(e){return e.children}},82488(e,t,n){"use strict";n.r(t),n.d(t,{CALIBRATION_MAP:()=>i,MOCK_CERTIFICATES:()=>r});var r=[{id:1,name:"危险化学品经营许可证",certNo:"AQSC001",category:"安全生产证书",issuer:"重庆市应急管理局",startDate:"2025-03-29",endDate:"2028-03-28"},{id:2,name:"安全评价机构资质证书",certNo:"API-2026-001",category:"甲级资质",issuer:"重庆市应急管理局",startDate:"2026-01-15",endDate:"2029-01-14"}],i={done:{label:"已检定",color:"success"},pending:{label:"待检定",color:"warning"}}},56097(e,t,n){"use strict";n.r(t),n.d(t,{FILING_CODE_TO_CONFIRM:()=>c,REVIEW_BUSINESS_SCOPE_OPTIONS:()=>f,REVIEW_UNIT_TYPE_OPTIONS:()=>u,toQualReviewPageQuery:()=>d});var r=n(28155),i=n(49788);function o(e){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a=["confirmStatus","orgType","filingUnitTypeName","filingStatusCode","needExpertCheck"];function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}var s={pending:2,passed:1,rejected:3},c={2:"pending",1:"passed",3:"rejected"},u=i.VA,f=r.CI;function d(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.confirmStatus,n=e.orgType,r=e.filingUnitTypeName,i=e.filingStatusCode,c=e.needExpertCheck,u=function(e){for(var t=1;to});var r=n(71070),i=n(74848);let o=function(e){return(0,i.jsx)("div",{children:(0,i.jsx)(r.default,{props:e,permissionAdd:"xgfd-qyzzgl-add",permissionEdit:"xgfd-qyzzgl-edit",permissionView:"xgfd-qyzzgl-info",permissionDel:"xgfd-qyzzgl-del"})})}},16478(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(15998),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:161,personnelType:"zyfzr",permissionAdd:"xgfd-zyfzrgl-add",permissionEdit:"xgfd-zyfzrgl-edit",permissionView:"xgfd-zyfzrgl-info",permissionDel:"xgfd-zyfzrgl-del",dictionaryType:"zyfzrgwmc0000"})})}))},58979(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:161})})})},53645(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},1144(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(15998),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:162,personnelType:"aqscglry",permissionAdd:"xgfd-aqscglrygl-add",permissionEdit:"xgfd-aqscglrygl-edit",permissionView:"xgfd-aqscglrygl-info",permissionDel:"xgfd-aqscglrygl-del",dictionaryType:"aqscglrygwmc0000"})})}))},82281(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:162})})})},50427(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},77101(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(15998),i=n(60065),o=n(88648),a=n(57971),l=n(74848);let s=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)((0,a.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(i.A,{props:e,certificatePhotoType:160,personnelType:"tzsbczry",permissionAdd:"xgfd-tzzzsbczrygl-add",permissionEdit:"xgfd-tzzzsbczrygl-edit",permissionView:"xgfd-tzzzsbczrygl-info",permissionDel:"xgfd-tzzzsbczrygl-del",dictionaryType:"tzsbczryczxmzylb0000"})})}))},31620(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:160})})})},56196(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},73043(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(15998),o=n(60065),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:159,personnelType:"tezhongzuoye",permissionAdd:"xgfd-tzzyrugl-add",permissionEdit:"xgfd-tzzyrugl-edit",permissionView:"xgfd-tzzyrugl-info",permissionDel:"xgfd-tzzyrugl-del",dictionaryType:"tzzyryhylb0000"})})}))},37174(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:159})})})},4078(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},45954(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},95492(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},99765(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},59376(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>T});var r=n(26380),i=n(18246),o=n(85196),a=n(71021),l=n(18182),s=n(47152),c=n(16370),u=n(16629),f=n(57486),d=n(36223),p=n(96540),y=n(21023),m=n(44500),v=n(51038),h=n(23899),g=n(28155),b=n(99594),j=n(74848);function x(e){return(x="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function S(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return C(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(C(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,C(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,C(u,"constructor",c),C(c,"constructor",s),s.displayName="GeneratorFunction",C(c,i,"GeneratorFunction"),C(u),C(u,i,"Generator"),C(u,r,function(){return this}),C(u,"toString",function(){return"[object Generator]"}),(S=function(){return{w:o,m:f}})()}function C(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(C=function(e,t,n,r){function o(t,n){C(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function A(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function w(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return E(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?E(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function E(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==o[0]?o[0]:1,n=o.length>1&&void 0!==o[1]?o[1]:10,B(!0),e.p=1,r=h.getFieldsValue(),e.n=2,(0,b.kD)(w(w({},r),{},{pageIndex:t,pageSize:n}));case 2:_((null==(i=e.v)?void 0:i.data)||[]),V((null==i?void 0:i.totalCount)||0),e.n=4;break;case 3:e.p=3,e.v,_([]),V(0);case 4:return e.p=4,B(!1),e.f(4);case 5:return e.a(2)}},e,null,[[1,3,4,5]])})),function(){return t.apply(this,arguments)});(0,p.useEffect)(function(){K()},[]);var X=(n=P(S().m(function e(t){var n;return S().w(function(e){for(;;)switch(e.n){case 0:return A(!0),D(!0),e.n=1,(0,b.eT)(t);case 1:T((null==(n=e.v)?void 0:n.data)||null),D(!1);case 2:return e.a(2)}},e)})),function(e){return n.apply(this,arguments)});return(0,j.jsxs)(y.A,{title:(0,j.jsxs)("div",{children:[(0,j.jsx)("span",{children:"企业画像管理"}),(0,j.jsx)("div",{className:"pageLayout-extra",children:"监管端查看企业安全能力画像与综合评级(当前为 Mock 数据)。"})]}),children:[(0,j.jsx)(m.A,{form:h,loading:G,formLine:[(0,j.jsx)(r.A.Item,{name:"enterpriseName",children:(0,j.jsx)(v.A.Input,{label:"企业名称",allowClear:!0,placeholder:"关键字搜索"})},"enterpriseName"),(0,j.jsx)(r.A.Item,{name:"district",children:(0,j.jsx)(v.A.Select,{label:"属地",allowClear:!0,placeholder:"请选择",options:g.bf})},"district"),(0,j.jsx)(r.A.Item,{name:"accountSource",children:(0,j.jsx)(v.A.Select,{label:"开户来源",allowClear:!0,placeholder:"请选择",options:b.PJ})},"accountSource")],onFinish:function(){return K(1,10)},style:{marginBottom:"16px"}}),(0,j.jsx)(i.A,{dataSource:q,loading:G,pagination:{current:W,pageSize:$,total:U,showSizeChanger:!0,showTotal:function(e){return"共 ".concat(e," 条")}},onChange:function(e){Y(e.current),J(e.pageSize),K(e.current,e.pageSize)},scroll:{y:e.scrollY},columns:[{title:"企业名称",dataIndex:"enterpriseName",ellipsis:!0},{title:"项目按时完成",dataIndex:"projectOnTime",width:120},{title:"报告质量",dataIndex:"reportQuality",width:100},{title:"投诉记录",dataIndex:"complaintCount",width:90},{title:"行政处罚",dataIndex:"penaltyCount",width:90},{title:"信息等级",width:100,render:function(e,t){return(0,j.jsx)(o.A,{color:N[t.infoLevelCode]||"default",children:t.infoLevel})}},{title:"操作",width:100,render:function(e,t){return(0,j.jsx)(a.Ay,{type:"link",onClick:function(){return X(t.id)},children:"查看画像"})}}]}),(0,j.jsx)(l.A,{open:C,destroyOnHidden:!0,title:"企业安全能力画像",width:800,loading:F,cancelText:"关闭",okButtonProps:{style:{display:"none"}},onCancel:function(){A(!1),T(null)},children:E&&(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)("div",{style:{display:"flex",gap:24,marginBottom:24,alignItems:"center"},children:[(0,j.jsx)("div",{style:{width:80,height:80,borderRadius:"50%",border:"4px solid ".concat(L[E.scoreGrade]||"#1677ff"),display:"flex",alignItems:"center",justifyContent:"center",fontSize:20,fontWeight:700,color:L[E.scoreGrade]||"#1677ff",flexShrink:0},children:E.scoreGrade}),(0,j.jsxs)("div",{children:[(0,j.jsx)("h3",{style:{margin:"0 0 4px"},children:E.enterpriseName}),(0,j.jsxs)("p",{style:{margin:0,color:"rgba(0,0,0,0.45)",fontSize:13},children:["统一社会信用代码:",E.creditCode," ","|",E.industry," ","|",E.district]})]})]}),(0,j.jsxs)(s.A,{gutter:16,children:[(0,j.jsx)(c.A,{span:6,children:(0,j.jsxs)(u.A,{size:"small",children:[(0,j.jsx)(f.A,{title:"项目按时完成率",value:E.projectOnTimeRate}),(0,j.jsxs)("div",{style:{marginTop:8,color:"#52c41a",fontSize:12},children:["↑"," ",E.projectOnTime]})]})}),(0,j.jsx)(c.A,{span:6,children:(0,j.jsxs)(u.A,{size:"small",children:[(0,j.jsx)(f.A,{title:"报告质量",value:E.reportQuality}),(0,j.jsx)("div",{style:{marginTop:8,color:"rgba(0,0,0,0.45)",fontSize:12},children:E.reportQualityDesc})]})}),(0,j.jsx)(c.A,{span:6,children:(0,j.jsxs)(u.A,{size:"small",children:[(0,j.jsx)(f.A,{title:"投诉/处罚",value:E.complaintCount+E.penaltyCount}),(0,j.jsx)("div",{style:{marginTop:8,color:"rgba(0,0,0,0.45)",fontSize:12},children:E.penaltyDesc})]})}),(0,j.jsx)(c.A,{span:6,children:(0,j.jsxs)(u.A,{size:"small",children:[(0,j.jsx)(f.A,{title:"评价次数",value:E.evalCount}),(0,j.jsx)("div",{style:{marginTop:8,color:"rgba(0,0,0,0.45)",fontSize:12},children:E.evalCountDesc})]})})]}),(0,j.jsxs)(d.A,{bordered:!0,column:2,size:"small",style:{marginTop:24},children:[(0,j.jsx)(d.A.Item,{label:"信息等级",children:(0,j.jsx)(o.A,{color:N[E.infoLevelCode]||"default",children:E.infoLevel})}),(0,j.jsx)(d.A.Item,{label:"开户来源",children:E.accountSource}),(0,j.jsx)(d.A.Item,{label:"投诉记录",children:E.complaintCount}),(0,j.jsx)(d.A.Item,{label:"行政处罚",children:E.penaltyCount})]})]})})]})})},96593(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>E});var r=n(26380),i=n(18246),o=n(85196),a=n(42443),l=n(71021),s=n(18182),c=n(36223),u=n(23899),f=n(96540),d=n(51038),p=n(21023),y=n(44500),m=n(99594),v=n(74848);function h(e){return(h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function g(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return b(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(b(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,b(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,b(u,"constructor",c),b(c,"constructor",s),s.displayName="GeneratorFunction",b(c,i,"GeneratorFunction"),b(u),b(u,i,"Generator"),b(u,r,function(){return this}),b(u,"toString",function(){return"[object Generator]"}),(g=function(){return{w:o,m:f}})()}function b(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(b=function(e,t,n,r){function o(t,n){b(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function j(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function x(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return w(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?w(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==o[0]?o[0]:1,n=o.length>1&&void 0!==o[1]?o[1]:10,B(!0),e.p=1,r=u.getFieldsValue(),e.n=2,(0,m.Nh)(x(x({},r),{},{pageIndex:t,pageSize:n}));case 2:_((null==(i=e.v)?void 0:i.data)||[]),V((null==i?void 0:i.totalCount)||0),e.n=4;break;case 3:e.p=3,e.v,_([]),V(0);case 4:return e.p=4,B(!1),e.f(4);case 5:return e.a(2)}},e,null,[[1,3,4,5]])})),function(){return t.apply(this,arguments)});(0,f.useEffect)(function(){K()},[]);var X=(n=C(g().m(function e(t){var n;return g().w(function(e){for(;;)switch(e.n){case 0:return j(!0),T(!0),e.n=1,(0,m.Tx)(t);case 1:E((null==(n=e.v)?void 0:n.data)||null),T(!1);case 2:return e.a(2)}},e)})),function(e){return n.apply(this,arguments)});return(0,v.jsxs)(p.A,{title:(0,v.jsxs)("div",{children:[(0,v.jsx)("span",{children:"评价师信息管理"}),(0,v.jsx)("div",{className:"pageLayout-extra",children:"监管端查看辖区内评价师备案及资质状态(当前为 Mock 数据)。"})]}),children:[(0,v.jsx)(y.A,{form:u,loading:G,formLine:[(0,v.jsx)(r.A.Item,{name:"evaluatorName",children:(0,v.jsx)(d.A.Input,{label:"评价师名称",allowClear:!0,placeholder:"关键字搜索"})},"evaluatorName"),(0,v.jsx)(r.A.Item,{name:"orgName",children:(0,v.jsx)(d.A.Input,{label:"机构名称",allowClear:!0,placeholder:"关键字搜索"})},"orgName"),(0,v.jsx)(r.A.Item,{name:"employmentStatus",children:(0,v.jsx)(d.A.Select,{label:"是否在职",allowClear:!0,placeholder:"请选择",options:O})},"employmentStatus"),(0,v.jsx)(r.A.Item,{name:"registerEngineerFlag",children:(0,v.jsx)(d.A.Select,{label:"是否注册安全工程师",allowClear:!0,placeholder:"请选择",options:O})},"registerEngineerFlag"),(0,v.jsx)(r.A.Item,{name:"status",children:(0,v.jsx)(d.A.Select,{label:"状态",allowClear:!0,placeholder:"请选择",options:P})},"status")],onFinish:function(){return K(1,10)},style:{marginBottom:"16px"}}),(0,v.jsx)(i.A,{dataSource:q,loading:G,pagination:{current:W,pageSize:$,total:U,showSizeChanger:!0,showTotal:function(e){return"共 ".concat(e," 条")}},onChange:function(e){Y(e.current),J(e.pageSize),K(e.current,e.pageSize)},scroll:{y:e.scrollY},columns:[{title:"机构名称",dataIndex:"orgName",ellipsis:!0},{title:"评价师名称",dataIndex:"evaluatorName",width:120},{title:"是否注册安全工程师",dataIndex:"registerEngineerLabel",width:160},{title:"资格证书",dataIndex:"certificatesSummary",ellipsis:!0},{title:"状态",width:90,render:function(e,t){var n=(0,v.jsx)(o.A,{color:"normal"===t.status?"success":"error",children:t.statusLabel});return t.statusTip?(0,v.jsx)(a.A,{title:t.statusTip,children:n}):n}},{title:"操作",width:80,render:function(e,t){return(0,v.jsx)(l.Ay,{type:"link",onClick:function(){return X(t.id)},children:"查看"})}}]}),(0,v.jsx)(s.A,{open:b,destroyOnHidden:!0,title:"评价师详细信息",width:900,loading:L,cancelText:"关闭",okButtonProps:{style:{display:"none"}},onCancel:function(){j(!1),E(null),D(null)},children:w&&(0,v.jsxs)(v.Fragment,{children:[(0,v.jsxs)(c.A,{title:"个人信息",bordered:!0,column:2,size:"small",style:{marginBottom:16},children:[(0,v.jsx)(c.A.Item,{label:"姓名",children:w.name}),(0,v.jsx)(c.A.Item,{label:"性别",children:w.gender}),(0,v.jsx)(c.A.Item,{label:"出生日期",children:w.birthDate}),(0,v.jsx)(c.A.Item,{label:"身份证号",children:w.idCard}),(0,v.jsx)(c.A.Item,{label:"学历",children:w.education}),(0,v.jsx)(c.A.Item,{label:"毕业院校",children:w.graduateSchool}),(0,v.jsx)(c.A.Item,{label:"专业",children:w.major})]}),(0,v.jsxs)(c.A,{title:"机构信息",bordered:!0,column:2,size:"small",style:{marginBottom:16},children:[(0,v.jsx)(c.A.Item,{label:"所在机构",children:w.orgName}),(0,v.jsx)(c.A.Item,{label:"部门",children:w.deptName}),(0,v.jsx)(c.A.Item,{label:"岗位",children:w.positionName}),(0,v.jsx)(c.A.Item,{label:"账号",children:w.account})]}),(0,v.jsx)("div",{style:{marginBottom:8,fontWeight:600},children:"资质证照"}),(0,v.jsx)(i.A,{size:"small",bordered:!0,rowKey:"id",pagination:!1,dataSource:w.certificates||[],columns:[{title:"证书名称",dataIndex:"certName"},{title:"证书编号",dataIndex:"certNo"},{title:"发证日期",dataIndex:"issueDate",width:110},{title:"有效期至",dataIndex:"expireDate",width:110},{title:"状态",width:90,render:function(e,t){var n=(0,v.jsx)(o.A,{color:I[t.status]||"default",children:t.statusLabel});return t.statusTip?(0,v.jsx)(a.A,{title:t.statusTip,children:n}):n}},{title:"操作",width:90,render:function(e,t){return(0,v.jsx)(l.Ay,{type:"link",size:"small",onClick:function(){return D(t)},children:"查看证书"})}}]})]})}),(0,v.jsx)(s.A,{open:!!F,destroyOnHidden:!0,title:"证书预览",width:520,cancelText:"关闭",okButtonProps:{style:{display:"none"}},onCancel:function(){return D(null)},children:F&&(0,v.jsxs)(c.A,{bordered:!0,column:1,size:"small",children:[(0,v.jsx)(c.A.Item,{label:"证书名称",children:F.certName}),(0,v.jsx)(c.A.Item,{label:"证书编号",children:F.certNo}),(0,v.jsx)(c.A.Item,{label:"发证日期",children:F.issueDate}),(0,v.jsx)(c.A.Item,{label:"有效期至",children:F.expireDate}),(0,v.jsx)(c.A.Item,{label:"状态",children:F.statusLabel})]})})]})})},49953(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>R});var r=n(26380),i=n(18182),o=n(87959),a=n(85196),l=n(71021),s=n(36492),c=n(18246),u=n(36223),f=n(47152),d=n(16370),p=n(95725),y=n(63718),m=n(83454),v=n(15998),h=n(96540),g=n(21023),b=n(44500),j=n(51038),x=n(23899),S=n(48032),C=n(28155),A=n(88648),w=n(77539),O=n(74848);function P(e){return(P="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function I(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function E(e){for(var t=1;t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(L(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,L(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,L(u,"constructor",c),L(c,"constructor",s),s.displayName="GeneratorFunction",L(c,i,"GeneratorFunction"),L(u),L(u,i,"Generator"),L(u,r,function(){return this}),L(u,"toString",function(){return"[object Generator]"}),(N=function(){return{w:o,m:f}})()}function L(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(L=function(e,t,n,r){function o(t,n){L(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function T(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function k(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){T(o,r,i,a,l,"next",e)}function l(e){T(o,r,i,a,l,"throw",e)}a(void 0)})}}function F(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return D(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?D(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function D(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nN});var r=n(21734),i=n(16629),o=n(18246),a=n(71021),l=n(85196),s=n(26380),c=n(87959),u=n(21637),f=n(96540),d=n(68808),p=n(21023),y=n(77016),m=n(41911),v=n(60345),h=n(76243),g=n(74848);function b(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return j(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(j(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,j(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,j(u,"constructor",c),j(c,"constructor",s),s.displayName="GeneratorFunction",j(c,i,"GeneratorFunction"),j(u),j(u,i,"Generator"),j(u,r,function(){return this}),j(u,"toString",function(){return"[object Generator]"}),(b=function(){return{w:o,m:f}})()}function j(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(j=function(e,t,n,r){function o(t,n){j(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function x(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function S(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return C(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?C(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n1?e.history.goBack():null!=(n=e.history)&&n.push?e.history.push(A):window.location.href="/certificate".concat(A)};if(!n)return(0,g.jsx)(p.A,{title:"备案信息详情",extra:(0,g.jsx)(a.Ay,{onClick:W,children:"返回"}),children:(0,g.jsx)("p",{style:{margin:0,marginBottom:24,color:"rgba(0, 0, 0, 0.45)"},children:"缺少机构 ID 参数"})});var Y=[{key:"info",label:"备案信息",children:(0,g.jsx)(r.A,{spinning:l,children:(0,g.jsx)(d.A,{form:i,span:12,disabled:!0,useAutoGenerateRequired:!1,options:w,labelCol:{span:10},showActionButtons:!1})})},{key:"materials",label:"申请清单材料",children:(0,g.jsx)(I,{materialGroups:D,loading:C,onPreview:function(e){var t=P(null==e?void 0:e.previewUrl);t?/\.(jpe?g|png|gif|webp|bmp)(\?|#|$)/i.test(String(t||"").toLowerCase())?M(e):window.open(t,"_blank"):c.Ay.warning("该材料暂无可预览的附件")}})},{key:"personnel",label:"人员信息",children:(0,g.jsx)(E,{personnel:_,loading:C,onView:function(e){return Q(e.id)}})}];return(0,g.jsxs)(p.A,{title:"备案信息详情",extra:(0,g.jsx)(a.Ay,{onClick:W,children:"← 返回"}),children:[(0,g.jsx)("p",{style:{margin:0,marginBottom:24,color:"rgba(0, 0, 0, 0.45)"},children:T||void 0}),(0,g.jsx)(u.A,{items:Y}),(0,g.jsx)(y.Ay,{open:!!V,title:"文件预览",fileName:null==V?void 0:V.name,url:P(null==V?void 0:V.previewUrl),onCancel:function(){return M(null)}}),B&&(0,g.jsx)(h.default,{open:!!B,currentId:B,requestDetails:m.uQ,requestCertList:m.Bp,requestCertDetails:m.ah,onCancel:function(){return Q("")}})]})}},72007(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>A});var r=n(26380),i=n(85196),o=n(71021),a=n(15998),l=n(96540),s=n(21023),c=n(6480),u=n(75228),f=n(44346),d=n(28155),p=n(88648),y=n(77539),m=n(55406),v=n(74848);function h(e){return(h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function g(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function b(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return j(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?j(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],a=(0,f.A)((0,y.bt)(e.registeredOrgList),{form:n}),p=a.tableProps,h=a.getData;(0,l.useEffect)(function(){h()},[]);var g=function(t){if(t){var n,r="".concat("/container/supervision/basicInfo/registeredOrg/detail","?id=").concat(encodeURIComponent(t));if(null!=(n=e.history)&&n.push)return void e.history.push(r);window.location.href="/certificate".concat(r)}};return(0,v.jsxs)(s.A,{title:(0,v.jsxs)("div",{children:[(0,v.jsx)("span",{children:"已备案机构管理"}),(0,v.jsx)("div",{className:"pageLayout-extra",children:"监管端查看已备案评价机构及备案详情。"})]}),children:[(0,v.jsx)(c.A,{form:n,values:C,options:[{name:"orgName",label:"评价机构名称",placeholder:"关键字搜索",colProps:S},{name:"registerAddress",label:"注册地址",placeholder:"关键字搜索",colProps:S},(0,m.d8)("filingType","备案类型",d.Dc,{colProps:S,componentProps:{allowClear:!1,showSearch:!1}}),(0,m.d8)("filingRecordStatus","备案状态",d.W$,{colProps:S,componentProps:{allowClear:!1,showSearch:!1}})],onFinish:h}),(0,v.jsx)(u.A,b(b({},p),{},{columns:[{title:"评价机构名称",dataIndex:"orgName",ellipsis:!0},{title:"注册地址",dataIndex:"registerAddress",ellipsis:!0},{title:"服务企业数",dataIndex:"serviceEnterpriseCount",width:100},{title:"评价项目数",dataIndex:"evalProjectCount",width:100},{title:"备案类型",dataIndex:"filingType",width:100},{title:"备案状态",width:90,render:function(e,t){return(0,v.jsx)(i.A,{color:x[t.filingRecordStatusCode]||"default",children:t.filingRecordStatusName||"-"})}},{title:"操作",width:120,render:function(e,t){return(0,v.jsx)(o.Ay,{type:"link",onClick:function(){return g(t.id)},children:"查看备案信息"})}}]}))]})})},83762(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>r});let r=function(e){return e.children||null}},49595(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>r});let r=function(e){return e.children}},22500(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>q});var r=n(96540),i=n(6582),o=n(69047),a=n(56304),l=n(85558),s=n(38767),c=n(90958),u=n(40666),f=n(65235),d=n(33705),p=n(66052),y=n(73488),m=n(51804),v=n(8258),h=n(74848);function g(e){return(g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function b(e){return function(e){if(Array.isArray(e))return A(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||C(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function j(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function x(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||C(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){if(e){if("string"==typeof e)return A(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?A(e,t):void 0}}function A(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(a.current),window.addEventListener("resize",e),o&&Object.entries(o).forEach(function(e){var t=S(e,2),n=t[0],r=t[1];return l.current.on(n,r)}),function(){o&&l.current&&Object.entries(o).forEach(function(e){var t=S(e,2),n=t[0],r=t[1];return l.current.off(n,r)}),window.removeEventListener("resize",e),t&&t.disconnect(),l.current&&l.current.dispose(),l.current=null}}},[]),(0,r.useEffect)(function(){l.current&&l.current.setOption(t,!0)},[t]),(0,h.jsx)("div",{className:n,ref:a})}function P(e){var t=e.data;return(0,h.jsxs)("header",{className:"cockpit-header",children:[(0,h.jsx)("div",{className:"cockpit-header__deco cockpit-header__deco--left"}),(0,h.jsx)("h1",{children:t.title}),(0,h.jsxs)("div",{className:"cockpit-header__time",children:[(0,h.jsx)(c.A,{}),t.currentTime]}),(0,h.jsx)("div",{className:"cockpit-header__deco cockpit-header__deco--right"})]})}function I(e){var t=e.title,n=e.children,r=e.className;return(0,h.jsxs)("section",{className:"cockpit-panel ".concat(void 0===r?"":r),children:[(0,h.jsxs)("div",{className:"cockpit-panel__title",children:[(0,h.jsx)("span",{className:"cockpit-panel__diamond"}),(0,h.jsx)("span",{children:t}),(0,h.jsx)("i",{})]}),(0,h.jsx)("div",{className:"cockpit-panel__body",children:n})]})}function E(e){var t=e.data,n=(0,r.useMemo)(function(){return{color:["#1aa7ff","#d7a92c"],grid:{left:28,right:10,top:20,bottom:42},legend:{right:8,top:0,itemWidth:10,itemHeight:6,textStyle:{color:"#b9d8ff",fontSize:10}},tooltip:{trigger:"axis",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},xAxis:{type:"category",data:t.industry.map(function(e){return e.name}),axisLabel:{color:"#b9cfff",fontSize:10,interval:0,rotate:0,width:38,overflow:"break"},axisLine:{lineStyle:{color:"#17416e"}},axisTick:{show:!1}},yAxis:{type:"value",max:220,splitNumber:4,axisLabel:{color:"#b9cfff",fontSize:10},splitLine:{lineStyle:{color:"rgba(78, 143, 219, .2)",type:"dashed"}}},series:[{name:"类型数",type:"bar",stack:"total",barWidth:14,data:t.industry.map(function(e){return e.rectification})},{name:"机构数",type:"bar",stack:"total",barWidth:14,data:t.industry.map(function(e){return e.institution})}]}},[t.industry]);return(0,h.jsxs)(I,{title:"资质全生命周期管理",className:"lifecycle-panel",children:[(0,h.jsx)("div",{className:"life-grid",children:t.lifecycleStats.map(function(e,t){return(0,h.jsxs)("div",{className:"life-stat",children:[(0,h.jsx)("span",{className:"life-stat__icon",children:(0,h.jsx)(y.A,{})}),(0,h.jsxs)("div",{children:[(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("strong",{children:e.value})]})]},e.label)})}),(0,h.jsx)("div",{className:"progress-list",children:t.progress.map(function(e){return(0,h.jsxs)("div",{className:"progress-row",children:[(0,h.jsx)("span",{children:e.label}),(0,h.jsx)("div",{className:"progress-track",children:(0,h.jsx)("i",{style:{width:"".concat(e.value,"%"),background:e.color}})}),(0,h.jsxs)("b",{children:[e.value,"%"]})]},e.label)})}),(0,h.jsx)(O,{className:"industry-chart",option:n})]})}function N(e){var t=e.data,n=(0,r.useMemo)(function(){return{color:["#5f8cff","#e96fff","#5fd8ae","#b6a0ff"],tooltip:{trigger:"item",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},legend:{orient:"vertical",right:2,top:"center",itemWidth:10,itemHeight:6,textStyle:{color:"#c6dcff",fontSize:10}},series:[{type:"pie",radius:["46%","70%"],center:["30%","55%"],avoidLabelOverlap:!0,label:{show:!1},data:t.riskPie}]}},[t.riskPie]);return(0,h.jsxs)(I,{title:"风险预警智能研判",className:"risk-panel",children:[(0,h.jsx)("h3",{children:"资质备案类失信统计"}),(0,h.jsx)("div",{className:"risk-grid",children:t.riskItems.map(function(e){return(0,h.jsxs)("div",{className:"risk-item",children:[(0,h.jsx)("span",{children:e.label}),(0,h.jsx)("b",{children:e.value})]},e.label)})}),(0,h.jsx)("h3",{children:"备案机构违法触发统计"}),(0,h.jsx)(O,{className:"risk-pie",option:n})]})}function L(e){var t=e.data;return(0,h.jsx)("div",{className:"kpi-row",children:t.kpis.map(function(e){return(0,h.jsxs)("div",{className:"kpi-card",children:[(0,h.jsx)("p",{children:e.title}),(0,h.jsx)("strong",{children:e.value}),(0,h.jsxs)("span",{children:["同比 ",(0,h.jsxs)("b",{children:["↗ ",e.change]})]})]},e.title)})})}function T(e){var t=e.data,n=S((0,r.useState)("重庆市"),2),i=n[0],o=n[1],a=(0,r.useMemo)(function(){return new Map(t.mapAreaStats.map(function(e){return[e.name,e]}))},[t.mapAreaStats]),l=(0,r.useMemo)(function(){return(v.features||[]).map(function(e,t){var n=e.properties&&e.properties.name;return x(x({},a.get(n)||{name:n,value:18+7*t,projectCount:18+7*t,hiddenDanger:0,institutionCount:0,rectificationRate:"100%"}),{},{name:n})})},[a]),s=a.get(i)||l[0]||t.mapAreaStats[0],c=l.map(function(e){return Number(e.value)||0}),u=Math.max.apply(Math,b(c).concat([100])),f=(0,r.useMemo)(function(){return{tooltip:{trigger:"item",backgroundColor:"rgba(2, 31, 82, .96)",borderColor:"#1aa7ff",borderWidth:1,padding:[8,10],textStyle:{color:"#eaf9ff",fontSize:12},formatter:function(e){var t=e.data||a.get(e.name);return t?["".concat(e.name,""),"评价项目数:".concat(t.projectCount||t.value||0),"备案机构数:".concat(t.institutionCount||0),"隐患数量:".concat(t.hiddenDanger||0),"整改率:".concat(t.rectificationRate||"-")].join("
"):e.name}},visualMap:{min:0,max:u,show:!1,inRange:{color:["#b9ef7c","#ffe178","#ffb16f","#ff8d86","#de8ff0"]}},geo:{map:"chongqing",roam:!0,zoom:1.1,top:10,bottom:0,left:0,right:0,selectedMode:"single",itemStyle:{borderColor:"#31d8ff",borderWidth:1.2,shadowBlur:16,shadowColor:"rgba(0, 179, 255, .52)"},emphasis:{label:{show:!0,color:"#062142",fontWeight:700},itemStyle:{areaColor:"#49f0ce",borderColor:"#f8ffff",borderWidth:1.8}},select:{label:{show:!0,color:"#061a35",fontWeight:700},itemStyle:{areaColor:"#31d6ff",borderColor:"#ffffff",borderWidth:2.2}},label:{show:!0,color:"#244269",fontSize:10}},series:[{name:"区域项目统计",type:"map",map:"chongqing",geoIndex:0,selectedMode:"single",data:l.map(function(e){return x(x({},e),{},{selected:e.name===i})})},{name:"重点乡镇",type:"effectScatter",coordinateSystem:"geo",rippleEffect:{brushType:"stroke",scale:3.2},symbolSize:function(e){return Math.max(8,Math.min(18,e[2]/4))},itemStyle:{color:"#12f4ff",shadowBlur:10,shadowColor:"#12f4ff"},label:{show:!1},data:t.mapScatterPoints.map(function(e){return{name:e.name,value:[].concat(b(e.coord),[e.value])}})}]}},[t.mapScatterPoints,l,u,i,a]),d=(0,r.useMemo)(function(){return{click:function(e){e&&e.name&&o(e.name)}}},[]);return(0,h.jsxs)("div",{className:"map-shell",children:[(0,h.jsx)(O,{className:"map-chart",option:f,events:d}),t.mapScatterPoints.map(function(e,t){return(0,h.jsxs)("div",{className:"map-card map-card--".concat(t+1),children:[(0,h.jsx)("strong",{children:e.name}),(0,h.jsxs)("span",{children:["正在开展评价项目数:",e.value]})]},e.name)}),(0,h.jsxs)("div",{className:"map-summary",children:[(0,h.jsx)("strong",{children:s&&s.name}),(0,h.jsxs)("span",{children:["项目数:",s&&(s.projectCount||s.value)]}),(0,h.jsxs)("span",{children:["隐患:",s&&s.hiddenDanger]}),(0,h.jsxs)("span",{children:["整改率:",s&&s.rectificationRate]})]}),(0,h.jsxs)("ul",{className:"map-legend",children:[(0,h.jsx)("li",{children:"0-10"}),(0,h.jsx)("li",{children:"11-30"}),(0,h.jsx)("li",{children:"31-50"}),(0,h.jsx)("li",{children:"51-100"})]})]})}function k(e){var t=e.data;return(0,h.jsx)(I,{title:"执业全过程管控",className:"todo-panel",children:(0,h.jsx)("div",{className:"todo-grid",children:t.todo.map(function(e,t){var n=w[t]||o.A;return(0,h.jsxs)("div",{className:"todo-item",children:[(0,h.jsx)("span",{children:(0,h.jsx)(n,{})}),(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("b",{children:e.value})]},e.label)})})})}function F(e){var t=e.data,n=(0,r.useMemo)(function(){return{color:["#0da5ff","#29e487"],grid:{left:34,right:12,top:28,bottom:32},legend:{right:0,top:0,itemWidth:14,itemHeight:4,textStyle:{color:"#c6dcff",fontSize:10}},tooltip:{trigger:"axis",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},xAxis:{type:"category",boundaryGap:!1,data:t.reviewLine.xAxis,axisLabel:{color:"#c6dcff",fontSize:10},axisLine:{lineStyle:{color:"#17416e"}},axisTick:{show:!1}},yAxis:{type:"value",min:0,max:100,splitNumber:5,axisLabel:{color:"#c6dcff",fontSize:10},splitLine:{lineStyle:{color:"rgba(78, 143, 219, .22)",type:"dashed"}}},series:[{name:"项目数",type:"line",smooth:!0,symbolSize:5,areaStyle:{opacity:.22},data:t.reviewLine.project},{name:"监督检查数",type:"line",smooth:!0,symbolSize:5,areaStyle:{opacity:.14},data:t.reviewLine.supervision}]}},[t.reviewLine]);return(0,h.jsxs)(I,{title:"评价类型趋势",className:"line-panel",children:[(0,h.jsxs)("div",{className:"period-tabs",children:[(0,h.jsx)("span",{children:"年"}),(0,h.jsx)("span",{children:"季"}),(0,h.jsx)("span",{children:"月"})]}),(0,h.jsx)(O,{className:"line-chart",option:n})]})}function D(e){var t=e.data,n=(0,r.useMemo)(function(){return{color:["#1677ff","#00c089","#ff7a1a","#f7cb16","#ab5fde"],tooltip:{trigger:"item",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},legend:{orient:"vertical",right:0,top:"center",itemWidth:10,itemHeight:8,textStyle:{color:"#c6dcff",fontSize:10}},series:[{type:"pie",radius:["32%","68%"],center:["28%","56%"],label:{show:!1},data:t.reviewPie}]}},[t.reviewPie]);return(0,h.jsxs)(I,{title:"复盘评估改进提效",className:"review-panel",children:[(0,h.jsx)("div",{className:"review-stats",children:t.reviewProgress.map(function(e){return(0,h.jsxs)("div",{className:"review-stat",children:[(0,h.jsx)("span",{children:(0,h.jsx)(d.A,{})}),(0,h.jsxs)("p",{children:[e.label,":",(0,h.jsx)("b",{className:e.danger?"danger":"",children:e.value})]})]},e.label)})}),(0,h.jsx)(O,{className:"review-pie",option:n})]})}function R(e){var t=e.data;return(0,h.jsx)(I,{title:"项目流程",className:"process-panel",children:(0,h.jsx)("div",{className:"process-grid",children:t.process.map(function(e,n){return(0,h.jsxs)("div",{className:"process-node",children:[(0,h.jsx)("strong",{children:e.value}),(0,h.jsx)("span",{children:e.label}),nr});var r={title:"重庆市安全评价在线监管一件事",currentTime:"2025年05月23日 12:30:30",lifecycleStats:[{label:"本年新增备案机构数",value:450},{label:"当前备案机构数",value:265},{label:"本年注销机构数",value:23},{label:"全部备案机构数",value:46},{label:"退出备案评价师数",value:85},{label:"当前备案评价师数",value:125}],progress:[{label:"评价机构备案完成率",value:95,color:"#21d8ff"},{label:"备案机构开展业务率",value:80,color:"#18f7d2"},{label:"备案机构新增率",value:62,color:"#ffd11a"}],industry:[{name:"煤矿开采业",rectification:30,institution:135},{name:"金属",rectification:72,institution:125},{name:"非金属矿及其他矿",rectification:35,institution:140},{name:"陆地石油和天然气",rectification:0,institution:84},{name:"陆上油气管道运输",rectification:100,institution:200},{name:"石油加工业",rectification:30,institution:135},{name:"化学原料",rectification:72,institution:175},{name:"金属冶炼",rectification:70,institution:116}],riskItems:[{label:"重大违法失信数",value:56},{label:"法人资质终止数",value:13},{label:"资质证书有效期届满未延续数",value:43},{label:"评价机构超资质范围执业数",value:45},{label:"经营地址、法人等相关信息变更数",value:24}],riskPie:[{name:"机构违法行为",value:28},{name:"资质维持基础行为",value:25},{name:"过程控制违规行为",value:22},{name:"其他情况",value:25}],kpis:[{title:"备案项目开展评价率",value:"56.3%",change:"3.5%"},{title:"企业评价项目合格率",value:"98.5%",change:"5.6%"},{title:"隐患整改率",value:"99.8%",change:"0.6%"}],mapAreaStats:[{name:"重庆市",value:128,projectCount:985,hiddenDanger:126,institutionCount:265,rectificationRate:"99.8%"},{name:"渝中区",value:88,projectCount:88,hiddenDanger:12,institutionCount:26,rectificationRate:"99.2%"},{name:"江北区",value:76,projectCount:76,hiddenDanger:9,institutionCount:22,rectificationRate:"98.8%"},{name:"南岸区",value:69,projectCount:69,hiddenDanger:8,institutionCount:18,rectificationRate:"98.5%"},{name:"九龙坡区",value:82,projectCount:82,hiddenDanger:11,institutionCount:24,rectificationRate:"98.9%"},{name:"沙坪坝区",value:73,projectCount:73,hiddenDanger:10,institutionCount:20,rectificationRate:"98.6%"},{name:"两江新区",value:94,projectCount:94,hiddenDanger:13,institutionCount:28,rectificationRate:"99.4%"},{name:"万州区",value:65,projectCount:65,hiddenDanger:8,institutionCount:16,rectificationRate:"97.9%"},{name:"涪陵区",value:58,projectCount:58,hiddenDanger:7,institutionCount:14,rectificationRate:"98.1%"},{name:"永川区",value:61,projectCount:61,hiddenDanger:7,institutionCount:15,rectificationRate:"98.3%"},{name:"合川区",value:54,projectCount:54,hiddenDanger:6,institutionCount:13,rectificationRate:"97.8%"},{name:"长寿区",value:52,projectCount:52,hiddenDanger:6,institutionCount:12,rectificationRate:"98.0%"},{name:"璧山区",value:48,projectCount:48,hiddenDanger:5,institutionCount:11,rectificationRate:"98.7%"},{name:"大足区",value:44,projectCount:44,hiddenDanger:5,institutionCount:10,rectificationRate:"97.6%"},{name:"綦江区",value:41,projectCount:41,hiddenDanger:4,institutionCount:9,rectificationRate:"97.2%"},{name:"奉节县",value:36,projectCount:36,hiddenDanger:4,institutionCount:8,rectificationRate:"96.9%"}],mapScatterPoints:[{name:"渝中区",value:88,coord:[106.568955,29.552642]},{name:"江北区",value:76,coord:[106.574271,29.606703]},{name:"九龙坡区",value:82,coord:[106.51107,29.50197]},{name:"万州区",value:65,coord:[108.380246,30.807807]},{name:"涪陵区",value:58,coord:[107.394905,29.703652]}],todo:[{label:"合同签订",value:59},{label:"待风险分析",value:58},{label:"待成立项目组",value:126},{label:"待制定工作计划",value:587},{label:"待初勘",value:54},{label:"待编制检查表",value:487},{label:"待从业告知",value:25},{label:"待现场勘查",value:14},{label:"过程管控",value:156}],reviewLine:{xAxis:["定期检测","现状评价","控制效果评价","预评价","设计专篇","委托检测"],project:[72,48,61,57,45,94],supervision:[54,60,51,38,62,55]},reviewProgress:[{label:"现场检查数",value:56},{label:"现场检查问题数",value:5,danger:!0},{label:"项目复查数",value:45},{label:"现场复查问题数",value:14,danger:!0},{label:"检查机构数",value:36},{label:"检查发现问题数",value:4,danger:!0}],reviewPie:[{name:"评价执行超期未完成数",value:38},{name:"评价现场检查确认风险隐患数",value:12},{name:"复查评估报告数",value:14},{name:"监管检查处罚数",value:21},{name:"项目主要负责人变更数",value:15}],process:[{label:"项目合同签订",value:52},{label:"风险分析",value:58},{label:"成立项目组",value:59},{label:"制定工作计划",value:98},{label:"初勘",value:51},{label:"归档",value:236},{label:"过程管控",value:136},{label:"现场勘查",value:145},{label:"从业告知",value:278},{label:"编制检查表",value:25}]}},3117(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>L});var r=n(96540),i=n(6582),o=n(56304),a=n(87281),l=n(69047),s=n(33705),c=n(85558),u=n(38767),f=n(40666),d=n(94231),p=n(90958),y=n(95363),m=n(67793),v=n(74315),h=n(74848),g=[{title:"备案整体情况",items:[{label:"已备案机构数",value:985,yoy:"23%",qoq:"5%",yoyUp:!0,qoqUp:!1},{label:"开发评价企业数",value:5846,yoy:"3%",qoq:"1%",yoyUp:!0,qoqUp:!1},{label:"开展业务机构数",value:89512,yoy:"15%",qoq:"2%",yoyUp:!0,qoqUp:!1},{label:"备案评价师数",value:10005,yoy:"10%",qoq:"5%",yoyUp:!1,qoqUp:!1}]},{title:"本年数据统计",items:[{label:"开展评价企业数",value:523,yoy:"23%",qoq:"5%",yoyUp:!0,qoqUp:!1},{label:"评价项目数",value:5600,yoy:"3%",qoq:"1%",yoyUp:!0,qoqUp:!1},{label:"评价服务机构数",value:1200,yoy:"15%",qoq:"2%",yoyUp:!0,qoqUp:!1},{label:"评价服务项目数",value:2500,yoy:"10%",qoq:"5%",yoyUp:!1,qoqUp:!1}]}],b=[{label:"待审核",value:956,color:"#f1f3ff"},{label:"待审核",value:548,color:"#d9f6fb"},{label:"待审核",value:1548,color:"#faf4dc"}],j=[{group:"本地备案机构数",label:"平台备案数",value:2654,icon:o.A,color:"#ffb739",bg:"#fffbe8"},{group:"本地备案机构数",label:"完全备案确认",value:4561,icon:a.A,color:"#3aaef6",bg:"#eefaff"},{group:"异地备案机构数",label:"平台备案数",value:126,icon:o.A,color:"#60ddc7",bg:"#ecfbf8"},{group:"异地备案机构数",label:"完全备案确认",value:254,icon:a.A,color:"#928cf1",bg:"#f3f3ff"}],x=[{label:"项目合同签订",value:5632,icon:l.A,color:"#409eff"},{label:"待风险分析",value:951,icon:s.A,color:"#8d7cf6"},{label:"待成立项目组",value:5632,icon:c.A,color:"#43d2c5"},{label:"待制定工作计划",value:5632,icon:u.A,color:"#ff9f42"},{label:"待初勘",value:5632,icon:f.A,color:"#8b7df3"},{label:"归档",value:651,icon:d.A,color:"#08c7ad"},{label:"过程管控",value:951,icon:p.A,color:"#3ca6f5"},{label:"待现场勘查",value:5632,icon:y.A,color:"#8b7df3"},{label:"待从业告知",value:5632,icon:m.A,color:"#ffb327"},{label:"待编制检查表",value:456,icon:v.A,color:"#8b7df3"}];function S(e){var t=e.option,n=e.className,o=(0,r.useRef)(null),a=(0,r.useRef)(null);return(0,r.useEffect)(function(){if(o.current){a.current=i.Ts(o.current,null,{renderer:"svg"});var e=function(){return a.current&&a.current.resize()},t="u">typeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(o.current),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),t&&t.disconnect(),a.current&&a.current.dispose(),a.current=null}}},[]),(0,r.useEffect)(function(){a.current&&a.current.setOption(t,!0)},[t]),(0,h.jsx)("div",{className:n,ref:o})}function C(e){var t=e.title,n=e.children,r=e.className;return(0,h.jsxs)("section",{className:"supervision-home-card ".concat(void 0===r?"":r),children:[(0,h.jsx)("h3",{children:t}),n]})}function A(e){var t=e.label,n=e.value,r=e.up;return(0,h.jsxs)("span",{children:[t," ",(0,h.jsx)("i",{className:r?"up":"down",children:r?"▲":"▼"})," ",n]})}function w(){return(0,h.jsx)(C,{title:"备案整体情况",className:"overview-card",children:g.map(function(e){return(0,h.jsxs)("div",{className:"overview-group",children:["备案整体情况"!==e.title&&(0,h.jsx)("h3",{children:e.title}),(0,h.jsx)("div",{className:"overview-grid",children:e.items.map(function(e){return(0,h.jsxs)("div",{className:"overview-item",children:[(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("strong",{children:e.value}),(0,h.jsxs)("div",{children:[(0,h.jsx)(A,{label:"同比",value:e.yoy,up:e.yoyUp}),(0,h.jsx)(A,{label:"环比",value:e.qoq,up:e.qoqUp})]})]},e.label)})})]},e.title)})})}function O(){return(0,h.jsx)(C,{title:"待办事项",className:"todo-home-card",children:(0,h.jsx)("div",{className:"todo-home-grid",children:b.map(function(e,t){return(0,h.jsxs)("div",{className:"todo-home-item",style:{background:e.color},children:[(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("strong",{children:e.value})]},"".concat(e.label,"-").concat(t))})})})}function P(e){var t=e.title,n=e.cards;return(0,h.jsx)(C,{title:t,className:"filing-card",children:(0,h.jsx)("div",{className:"filing-grid",children:n.map(function(e){var t=e.icon;return(0,h.jsxs)("div",{className:"filing-item",style:{background:e.bg},children:[(0,h.jsx)("span",{style:{background:e.color},children:(0,h.jsx)(t,{})}),(0,h.jsxs)("div",{children:[(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("strong",{style:{color:e.color},children:e.value})]})]},e.label)})})})}function I(){return(0,h.jsxs)(C,{title:"当前评价状态状态统计",className:"flow-card",children:[(0,h.jsxs)("div",{className:"region-select",children:["请选择县区 ",(0,h.jsx)("span",{children:"⌄"})]}),(0,h.jsxs)("div",{className:"flow-summary",children:[(0,h.jsx)("span",{children:"评价项目合计:228"}),(0,h.jsx)("span",{children:"评价完成:185"}),(0,h.jsx)("span",{children:"正在进行中:21"}),(0,h.jsx)("span",{children:"项目中断:22"})]}),(0,h.jsx)("div",{className:"flow-grid",children:x.map(function(e,t){var n=e.icon;return(0,h.jsxs)("div",{className:"flow-node flow-node-".concat(t+1),children:[(0,h.jsx)("span",{style:{background:e.color},children:(0,h.jsx)(n,{})}),(0,h.jsxs)("div",{children:[(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("strong",{children:e.value})]}),t<4&&(0,h.jsx)("i",{className:"arrow-right"}),4===t&&(0,h.jsx)("i",{className:"arrow-down"}),t>5&&(0,h.jsx)("i",{className:"arrow-left"})]},e.label)})})]})}function E(){var e=(0,r.useMemo)(function(){return{color:["#409eff","#ff9f43"],grid:{left:38,right:16,top:34,bottom:28},legend:{right:8,top:0,itemWidth:14,itemHeight:6,textStyle:{color:"#555",fontSize:12}},tooltip:{trigger:"axis",backgroundColor:"#fff",borderColor:"#edf0f5",textStyle:{color:"#333"}},xAxis:{type:"category",boundaryGap:!1,data:["定期检测","现状评价","控制效果评价","预评价","设计专篇","委托检测"],axisLabel:{color:"#555",fontSize:11},axisTick:{show:!1},axisLine:{lineStyle:{color:"#e6eaf0"}}},yAxis:{type:"value",max:200,splitNumber:4,axisLabel:{color:"#777"},splitLine:{lineStyle:{color:"#eef1f5",type:"dashed"}}},series:[{name:"企业数",type:"line",smooth:!0,symbolSize:6,data:[5,38,52,33,92,78,120,116,132],areaStyle:{color:"rgba(64,158,255,.08)"}},{name:"评价数",type:"line",smooth:!0,symbolSize:6,data:[4,47,31,42,72,75,64,140,121]}]}},[]);return(0,h.jsx)(C,{title:"评价类型分类",className:"chart-card line-home-card",children:(0,h.jsx)(S,{className:"home-line-chart",option:e})})}function N(){var e=(0,r.useMemo)(function(){return{color:["#5b9bff","#ffc75b"],grid:{left:38,right:18,top:38,bottom:36},legend:{right:8,top:0,itemWidth:12,itemHeight:12,textStyle:{color:"#555",fontSize:12}},tooltip:{trigger:"axis",backgroundColor:"#fff",borderColor:"#edf0f5",textStyle:{color:"#333"}},xAxis:{type:"category",data:["矿山开采业","危险化学品行业","烟花爆竹行业","金属冶炼与加工","建筑施工","交通运输业"],axisLabel:{color:"#555",fontSize:11,interval:0},axisTick:{show:!1},axisLine:{lineStyle:{color:"#e6eaf0"}}},yAxis:{type:"value",max:200,splitNumber:4,axisLabel:{color:"#777"},splitLine:{lineStyle:{color:"#eef1f5"}}},series:[{name:"企业数",type:"bar",barWidth:12,data:[158,76,112,108,158,143]},{name:"评价数",type:"bar",barWidth:12,data:[92,136,57,136,123,121]}]}},[]);return(0,h.jsx)(C,{title:"企业类型评价统计",className:"chart-card bar-home-card",children:(0,h.jsx)(S,{className:"home-bar-chart",option:e})})}function L(){return(0,h.jsx)("div",{className:"supervision-dashboard-page",children:(0,h.jsxs)("div",{className:"supervision-dashboard-grid",children:[(0,h.jsxs)("div",{className:"dashboard-left",children:[(0,h.jsx)(w,{}),(0,h.jsxs)("div",{className:"filing-row",children:[(0,h.jsx)(P,{title:"本地备案机构数",cards:j.slice(0,2)}),(0,h.jsx)(P,{title:"异地备案机构数",cards:j.slice(2)})]}),(0,h.jsx)(I,{})]}),(0,h.jsxs)("div",{className:"dashboard-right",children:[(0,h.jsx)(O,{}),(0,h.jsx)(E,{}),(0,h.jsx)(N,{})]})]})})}},88320(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>g});var r=n(57971),i=n(15998),o=n(26380),a=n(73133),l=n(71021),s=n(21023),c=n(6480),u=n(75228),f=n(44346),d=n(88648),p=n(74848);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],r=(0,f.A)(e.corpCertificateStatPage,{form:n,transform:function(e){return v(v({},e),{},{corpType:0})}}),i=r.tableProps,d=r.getData;return(0,p.jsxs)(s.A,{children:[(0,p.jsx)(c.A,{form:n,options:[{name:"corpName",label:"公司名称"}],onFinish:d}),(0,p.jsx)(u.A,v({columns:[{title:"公司名称",dataIndex:"corpName"},{title:"证书数量",dataIndex:"certCount"},{title:"操作",width:200,hidden:!e.permission("gfd-zgsztj-info"),render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./View?corpinfoId=".concat(n.corpId))},children:"查看"})})}}]},i))]})}))},28737(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(71070),i=n(74848);let o=function(e){return(0,i.jsx)("div",{children:(0,i.jsx)(r.default,{props:e,type:"View",permissionView:"gfd-zgsztj-insideInfo"})})}},75491(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},71070(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>B});var r=n(57971),i=n(15998),o=n(26380),a=n(18182),l=n(87959),s=n(71021),c=n(73133),u=n(36223),f=n(96540),d=n(68808),p=n(51315),y=n(21023),m=n(39724),v=n(6480),h=n(75228),g=n(49269),b=n(89490),j=n(20977),x=n(30896),S=n(18939),C=n(26676),A=n(85497),w=n(44346),O=n(92309),P=n(88648),I=n(77539),E=n(74848);function N(e){return(N="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function L(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return T(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(T(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,T(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,T(u,"constructor",c),T(c,"constructor",s),s.displayName="GeneratorFunction",T(c,i,"GeneratorFunction"),T(u),T(u,i,"Generator"),T(u,r,function(){return this}),T(u,"toString",function(){return"[object Generator]"}),(L=function(){return{w:o,m:f}})()}function T(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(T=function(e,t,n,r){function o(t,n){T(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function k(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function F(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){k(o,r,i,a,l,"next",e)}function l(e){k(o,r,i,a,l,"throw",e)}a(void 0)})}}function D(e){return function(e){if(Array.isArray(e))return V(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||U(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function q(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||U(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function U(e,t){if(e){if("string"==typeof e)return V(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?V(e,t):void 0}}function V(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&ee.current<3;)!function(){var e=Z.current.shift(),t=e.id,n=e.resolve,r=e.reject;ee.current++,F({eqType:x.c["6"],eqForeignKey:t}).then(function(e){H(function(n){return q(q({},n),{},_({},t,e||[]))}),n(e)}).catch(function(e){r(e)}).finally(function(){ee.current--,K(function(e){var n=new Set(e);return n.delete(t),n}),et()})}()};(0,f.useEffect)(function(){if(V.dataSource){var e=new Set(V.dataSource.map(function(e){return e.corpCertificateId}).filter(Boolean));H(function(t){var n={};return Object.keys(t).forEach(function(r){e.has(r)&&(n[r]=t[r])}),n})}},[V.dataSource]);var en=(0,f.useRef)(new Set);return(0,f.useEffect)(function(){return V.dataSource&&V.dataSource.forEach(function(e){var t=e.corpCertificateId;t&&!en.current.has(t)&&(en.current.add(t),!t||Y[t]||J.has(t)||X.current.has(t)?Promise.resolve():(X.current.add(t),K(function(e){return new Set([].concat(D(e),[t]))}),new Promise(function(e,n){Z.current.push({id:t,resolve:e,reject:n}),et()}).finally(function(){X.current.delete(t)})))}),function(){en.current.clear()}},[V.dataSource]),(0,E.jsxs)(y.A,{children:[(0,E.jsx)(v.A,{form:R,options:[{name:"likeCertificateName",label:"证书名称"},{name:"certificateDate",label:"证书有效期",render:j.O.DATE_RANGE}],onFinish:B}),(0,E.jsx)(h.A,q({loding:k,toolBarRender:function(){return(0,E.jsx)(E.Fragment,{children:!e.type&&e.permission(P)&&(0,E.jsx)(s.Ay,{type:"primary",icon:(0,E.jsx)(p.A,{}),onClick:function(){r(!0)},children:"新增"})})},columns:[{title:"证书名称",dataIndex:"certificateName"},{title:"证书编号",dataIndex:"certificateCode"},{title:"证书有效期",dataIndex:"certificateNo",width:370,render:function(e,t){var n,r;return(0,E.jsx)("div",{children:"".concat(null!=(n=t.certificateDateStart)?n:""," - ").concat(null!=(r=t.certificateDateEnd)?r:"")})}},{title:"图片",render:function(e,t){var n=Y[t.corpCertificateId]||[];return n.length?(0,E.jsx)(g.A,{files:n}):(0,E.jsx)("span",{children:"无"})}},{title:"操作",width:200,render:function(t,n){return(0,E.jsxs)(c.A,{children:[e.permission(N)&&(0,E.jsx)(s.Ay,{type:"link",onClick:function(){d(!0),S(n.id)},children:"查看"}),!e.type&&e.permission(I)&&(0,E.jsx)(s.Ay,{type:"link",onClick:function(){r(!0),S(n.id)},children:"编辑"}),!e.type&&e.permission(L)&&(0,E.jsx)(s.Ay,{danger:!0,type:"link",onClick:function(){return Q(n.id)},children:"删除"})]})}}]},V)),n&&(0,E.jsx)(M,{open:n,loding:e.corpCertificate.corpCertificateLoading,getData:B,currentId:b,requestAdd:e.corpCertificateAdd,requestEdit:e.corpCertificateEdit,requestDetails:e.corpCertificateInfo,corpCertificateIsExistCertNo:e.corpCertificateIsExistCertNo,onCancel:function(){r(!1),S("")},onSuccess:function(e){H(function(t){var n=q({},t);return delete n[e],n})}}),u&&(0,E.jsx)(G,{open:u,loding:e.corpCertificate.corpCertificateLoading,getData:B,currentId:b,requestDetails:e.corpCertificateInfo,onCancel:function(){d(!1),S("")}})]})}))},40304(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>g});var r=n(57971),i=n(15998),o=n(26380),a=n(73133),l=n(71021),s=n(21023),c=n(6480),u=n(75228),f=n(44346),d=n(88648),p=n(74848);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],r=(0,f.A)(e.corpCertificateStatPage,{form:n,transform:function(e){return v(v({},e),{},{corpType:1})}}),i=r.tableProps,d=r.getData;return(0,p.jsxs)(s.A,{children:[(0,p.jsx)(c.A,{form:n,options:[{name:"corpName",label:"公司名称"}],onFinish:d}),(0,p.jsx)(u.A,v({columns:[{title:"公司名称",dataIndex:"corpName"},{title:"证书数量",dataIndex:"certCount"},{title:"操作",width:200,hidden:!e.permission("gfd-xgfztj-info"),render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./View?corpinfoId=".concat(n.corpId))},children:"查看"})})}}]},i))]})}))},61969(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(71070),i=n(74848);let o=function(e){return(0,i.jsx)("div",{children:(0,i.jsx)(r.default,{props:e,type:"View",permissionView:"gfd-xgfztj-insideInfo"})})}},57203(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},78079(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},49306(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>F});var r=n(96540),i=n(26380),o=n(87959),a=n(18182),l=n(71021),s=n(36492),c=n(18246),u=n(36223),f=n(95725),d=n(83454),p=n(21023),y=n(44500),m=n(51038),v=n(23899),h=n(57006),g=n(15998),b=n(88648),j=n(88565),x=n(30159),S=n(53292),C=n(74848);function A(e){return(A="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function w(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return O(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(O(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,O(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,O(u,"constructor",c),O(c,"constructor",s),s.displayName="GeneratorFunction",O(c,i,"GeneratorFunction"),O(u),O(u,i,"Generator"),O(u,r,function(){return this}),O(u,"toString",function(){return"[object Generator]"}),(w=function(){return{w:o,m:f}})()}function O(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(O=function(e,t,n,r){function o(t,n){O(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function P(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function I(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){P(o,r,i,a,l,"next",e)}function l(e){P(o,r,i,a,l,"throw",e)}a(void 0)})}}function E(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function N(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return T(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?T(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function T(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ng});var r=n(57971),i=n(15998),o=n(26380),a=n(73133),l=n(71021),s=n(21023),c=n(6480),u=n(75228),f=n(44346),d=n(88648),p=n(74848);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],r=(0,f.A)(e.userCertificateStatPage,{form:n,transform:function(e){return v(v({},e),{},{corpType:0})}}),i=r.tableProps,d=r.getData;return(0,p.jsxs)(s.A,{children:[(0,p.jsx)(c.A,{form:n,options:[{name:"corpName",label:"公司名称"}],onFinish:d}),(0,p.jsx)(u.A,v({columns:[{title:"公司名称",dataIndex:"corpName"},{title:"特种作业人员证书数",dataIndex:"specialWorkCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./SpecialPersonnel/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-fzgsryzztj-tzzyInfo"),children:n.specialWorkCertCount})})}},{title:"特种设备操作人员证书数",dataIndex:"specialEquipmentCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./SpecialDevice/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-fzgsryzztj-tzsbInfo"),children:n.specialEquipmentCertCount})})}},{title:"主要负责人证书数",dataIndex:"principalCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./PersonInCharge/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-fzgsryzztj-zyfzrInfo"),children:n.principalCertCount})})}},{title:"安全生产管理人员证书数",dataIndex:"safetyManagerCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./SecurityAdmini/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-fzgsryzztj-aqgly-info"),children:n.safetyManagerCertCount})})}}]},i))]})}))},60286(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(15998),o=n(21023),a=n(70529),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"主要负责人证书数",children:(0,s.jsx)("div",{children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:161,displayType:"View",personnelType:"zyfzr",permissionView:"gfd-fzgsryzztj-zyfzrInfoNb",dictionaryType:"zyfzrgwmc0000"})})})}))},57923(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:161})})})},30765(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},3192(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(15998),o=n(21023),a=n(70529),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"安全生产管理人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:162,displayType:"View",personnelType:"aqscglry",permissionView:"gfd-fzgsryzztj-aqgly-infoNb",dictionaryType:"aqscglrygwmc0000"})})}))},11721(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:162})})})},13275(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},92109(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(15998),o=n(21023),a=n(60065),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"特种设备操作人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:160,displayType:"View",personnelType:"tzsbczry",permissionView:"gfd-fzgsryzztj-tzsbInfoNb",dictionaryType:"tzsbczryczxmzylb0000"})})}))},49316(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:160})})})},68100(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},30195(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(15998),o=n(21023),a=n(60065),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"特种作业人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:159,displayType:"View",personnelType:"tezhongzuoye",permissionView:"gfd-fzgsryzztj-tzzyInfoNb",dictionaryType:"tzzyryhylb0000"})})}))},5782(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:159})})})},92814(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},50146(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},83416(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(15998),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:161,personnelType:"zyfzr",permissionAdd:"gfd-qyzyfzrgl-add",permissionEdit:"gfd-qyzyfzrgl-edit",permissionView:"gfd-qyzyfzrgl-info",permissionDel:"gfd-qyzyfzrgl-del",dictionaryType:"zyfzrgwmc0000"})})}))},91945(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:161})})})},64443(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},65962(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(15998),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:162,personnelType:"aqscglry",permissionAdd:"gfd-qyaqscglrygl-add",permissionEdit:"gfd-qyaqscglrygl-edit",permissionView:"gfd-qyaqscglrygl-info",permissionDel:"gfd-qyaqscglrygl-del",dictionaryType:"aqscglrygwmc0000"})})}))},15879(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:162})})})},78601(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},52299(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(15998),o=n(60065),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:160,personnelType:"tzsbczry",permissionAdd:"gfd-tzsbczrygl-add",permissionEdit:"gfd-tzsbczrygl-edit",permissionView:"gfd-tzsbczrygl-info",permissionDel:"gfd-tzsbczrygl-del",dictionaryType:"tzsbczryczxmzylb0000"})})}))},20478(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:160})})})},44646(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},59673(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(15998),o=n(60065),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:159,personnelType:"tezhongzuoye",permissionAdd:"gfd-tzzyrugl-add",permissionEdit:"gfd-tzzyrugl-edit",permissionView:"gfd-tzzyrugl-info",permissionDel:"gfd-tzzyrugl-del",dictionaryType:"tzzyryhylb0000"})})}))},92104(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:159})})})},98624(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},87474(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>g});var r=n(57971),i=n(15998),o=n(26380),a=n(73133),l=n(71021),s=n(21023),c=n(6480),u=n(75228),f=n(44346),d=n(88648),p=n(74848);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],r=(0,f.A)(e.userCertificateStatPage,{form:n,transform:function(e){return v(v({},e),{},{corpType:1})}}),i=r.tableProps,d=r.getData;return(0,p.jsxs)(s.A,{children:[(0,p.jsx)(c.A,{form:n,options:[{name:"corpName",label:"公司名称"}],onFinish:d}),(0,p.jsx)(u.A,v({columns:[{title:"公司名称",dataIndex:"corpName"},{title:"特种作业人员证书数",dataIndex:"specialWorkCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",disabled:!e.permission("gfd-xgfryzztj-tzzyInfo"),onClick:function(){return e.history.push("./SpecialPersonnel/List?corpinfoId=".concat(n.corpinfoId))},children:n.specialWorkCertCount})})}},{title:"特种设备操作人员证书数",dataIndex:"specialEquipmentCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./SpecialDevice/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-xgfryzztj-tzsbInfo"),children:n.specialEquipmentCertCount})})}},{title:"主要负责人证书数",dataIndex:"principalCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./PersonInCharge/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-xgfryzztj-zyfzrInfo"),children:n.principalCertCount})})}},{title:"安全生产管理人员证书数",dataIndex:"safetyManagerCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./SecurityAdmini/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-xgfryzztj-aqscInfo"),children:n.safetyManagerCertCount})})}}]},i))]})}))},74401(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(15998),o=n(21023),a=n(70529),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"主要负责人证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:161,displayType:"View",personnelType:"zyfzr",permissionView:"gfd-xgfryzztj-zyfzrInfoNb",dictionaryType:"zyfzrgwmc0000"})})}))},43424(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:161,personnelType:"zyfzr"})})})},328(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},76183(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(15998),o=n(21023),a=n(70529),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"安全生产管理人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:162,displayType:"View",personnelType:"aqscglry",permissionView:"gfd-xgfryzztj-aqscInfoNb",dictionaryType:"aqscglrygwmc0000"})})}))},58882(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:162})})})},47170(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},82640(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(15998),o=n(21023),a=n(60065),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"特种设备操作人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:160,displayType:"View",personnelType:"tzsbczry",permissionView:"gfd-xgfryzztj-tzsbInfoNb",dictionaryType:"tzsbczryczxmzylb0000"})})}))},54033(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:160})})})},92627(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},60480(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(15998),o=n(21023),a=n(60065),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"特种作业人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:159,displayType:"View",personnelType:"tezhongzuoye",permissionView:"gfd-xgfryzztj-tzzyInfoNb",dictionaryType:"tzzyryhylb0000"})})}))},897(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(15998),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:159,displayType:"View"})})})},35299(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},90673(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},97800(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},38146(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>r});let r=function(e){return e.children}},98915(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>y});var r=n(96540),i=n(6198),o=n(16629),a=n(38940),l=n(73133),s=n(71021),c=n(74848);function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(e)||function(e){if(e){if("string"==typeof e)return u(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?u(e,2):void 0}}(e)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),n=t[0],i=t[1];return(0,c.jsxs)("div",{style:{padding:24,maxWidth:800,margin:"0 auto"},children:[(0,c.jsxs)(o.A,{children:[(0,c.jsx)(a.Ay,{status:"success",title:"Test2 页面 — 监管端测试",subTitle:"位于 Supervision 下的独立测试页面,无 API 依赖"}),(0,c.jsxs)("div",{style:{textAlign:"center",marginTop:24},children:[(0,c.jsx)(f,{level:4,children:"计数器"}),(0,c.jsx)(d,{children:(0,c.jsx)(p,{type:"success",strong:!0,style:{fontSize:24},children:n})}),(0,c.jsxs)(l.A,{children:[(0,c.jsx)(s.Ay,{type:"primary",onClick:function(){return i(function(e){return e+1})},children:"+1"}),(0,c.jsx)(s.Ay,{onClick:function(){return i(0)},children:"重置"}),(0,c.jsx)(s.Ay,{danger:!0,onClick:function(){return i(function(e){return e-1})},children:"-1"})]})]})]}),(0,c.jsx)(o.A,{title:"路由信息",style:{marginTop:24},children:(0,c.jsxs)(l.A,{direction:"vertical",children:[(0,c.jsx)(p,{children:"当前路由:/certificate/container/Supervision/test2"}),(0,c.jsxs)(p,{children:["React 版本:",r.version]}),(0,c.jsxs)(p,{children:["是否底座环境:",window.__IN_BASE__?"是":"否(独立运行)"]})]})})]})}},29259(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>y});var r=n(96540),i=n(6198),o=n(16629),a=n(38940),l=n(73133),s=n(71021),c=n(74848);function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(e)||function(e){if(e){if("string"==typeof e)return u(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?u(e,2):void 0}}(e)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),y=i[0],m=i[1];return(0,c.jsxs)("div",{style:{padding:24,maxWidth:800,margin:"0 auto"},children:[(0,c.jsxs)(o.A,{children:[(0,c.jsx)(a.Ay,{status:"success",title:"React 渲染正常!",subTitle:"这个页面没有使用任何 GBS 底座能力(无 DVA、无 Connect、无 Permission)"}),(0,c.jsxs)("div",{style:{textAlign:"center",marginTop:24},children:[(0,c.jsx)(f,{level:4,children:"计数器测试"}),(0,c.jsxs)(d,{children:["当前计数:",(0,c.jsx)(p,{type:"success",strong:!0,style:{fontSize:24},children:y})]}),(0,c.jsxs)(l.A,{children:[(0,c.jsx)(s.Ay,{type:"primary",onClick:function(){return m(function(e){return e+1})},children:"+1"}),(0,c.jsx)(s.Ay,{onClick:function(){return m(0)},children:"重置"}),(0,c.jsx)(s.Ay,{danger:!0,onClick:function(){return m(function(e){return e-1})},children:"-1"})]})]})]}),(0,c.jsx)(o.A,{title:"环境信息",style:{marginTop:24},children:(0,c.jsxs)(l.A,{direction:"vertical",children:[(0,c.jsxs)(p,{children:["React 版本:",r.version]}),(0,c.jsxs)(p,{children:["是否在底座中:",window.__IN_BASE__?"是":"否(独立运行)"]}),(0,c.jsxs)(p,{children:["是否在 qiankun 中:",window.__POWERED_BY_QIANKUN__?"是":"否(独立运行)"]}),(0,c.jsxs)(p,{children:["API_HOST:",(null==(t=window)||null==(t=t.process)||null==(t=t.env)||null==(t=t.app)?void 0:t.API_HOST)||"未获取到"]}),(0,c.jsxs)(p,{children:["应用标识:",(null==(n=window)||null==(n=n.process)||null==(n=n.env)||null==(n=n.app)?void 0:n.basename)||"未获取到"]})]})})]})}},58237(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>S}),n(60344);var r=n(35710),i=n(4888),o=n(26122),a=n(92187),l=n(96540),s=n(61860),c=n(74848);function u(e){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function d(e,t){if(!(e instanceof t))throw TypeError("Cannot call a class as a function")}function p(e,t){for(var n=0;nS}),n(60344);var r=n(35710),i=n(4888),o=n(26122),a=n(92187),l=n(96540),s=n(61860);n(79331);var c=n(74848);function u(e){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function d(e,t){if(!(e instanceof t))throw TypeError("Cannot call a class as a function")}function p(e,t){for(var n=0;ni});var r=n(74848);function i(){return(0,r.jsxs)("h1",{children:["底座微应用模板,技术文档:",(0,r.jsx)("a",{rel:"noreferrer noopener",target:"_blank",href:"https://www.yuque.com/buhangjiecheshen-ymbtb/qc0093/gxdun1dphetcurko",children:"https://www.yuque.com/buhangjiecheshen-ymbtb/qc0093/gxdun1dphetcurko"})]})}},76332(e,t,n){"use strict";n.d(t,{Yq:()=>l,au:()=>c,vJ:()=>u,xU:()=>s});var r=n(74353),i=n.n(r);function o(e){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),6!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(e)||function(e){if(e){if("string"==typeof e)return a(e,6);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?a(e,6):void 0}}(e)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),n=t[0],r=t[1],l=t[2],s=t[3],c=t[4],u=t[5];return new Date(n,r-1,l,void 0===s?0:s,void 0===c?0:c,void 0===u?0:u)}if("object"===o(e)){var f,d,p,y,m,v=null!=(f=e.year)?f:e.y,h=null!=(d=null!=(p=e.monthValue)?p:e.month)?d:e.m,g=null!=(y=null!=(m=e.dayOfMonth)?m:e.day)?y:e.d;if(null!=v&&null!=h&&null!=g)return new Date(v,h-1,g)}return null}function c(e){if(null!=e&&""!==e){if("string"==typeof e)return e.length>10?e.slice(0,10):e;var t=i()(e);return t.isValid()?t.format("YYYY-MM-DD"):void 0}}function u(e){if(null!=e&&""!==e){var t=i()(e);return t.isValid()?t:void 0}}},55406(e,t,n){"use strict";n.d(t,{XU:()=>f,d8:()=>l,dr:()=>s,nJ:()=>c,wy:()=>u});var r=n(20977);function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function a(e){for(var t=1;t3&&void 0!==arguments[3]?arguments[3]:{};return a({name:e,label:t,render:r.O.SELECT,items:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return(e||[]).map(function(e){var t,n;return a(a({},e),{},{bianma:null!=(t=e.value)?t:e.bianma,name:null!=(n=e.label)?n:e.name})})}(n),itemsField:{valueKey:"bianma",labelKey:"name"},colProps:{xs:24,sm:12,md:8,lg:6}},i)}var s={active:{color:"#1677ff",fontWeight:600,padding:0},zero:{color:"rgba(0,0,0,0.45)",padding:0}},c={0:"未审核",1:"已审核",2:"已退回"};function u(e){var t;return Number(null!=(t=null==e?void 0:e.changeCount)?t:0)}var f={0:"default",1:"success",2:"error"}},48032(e,t,n){"use strict";n.d(t,{$P:()=>b,CK:()=>P,Cy:()=>I,JP:()=>A,Mc:()=>w,Qi:()=>T,UC:()=>j,cI:()=>E,dK:()=>S,fz:()=>L,g5:()=>x,jY:()=>O,pl:()=>C,t6:()=>g});var r=n(76332),i=n(20344),o=n(73398),a=n(85518);function l(e){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function c(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?d(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n1&&void 0!==arguments[1]?arguments[1]:"附件.pdf";if(!e)return[];var n=String(e).trim();if(n.startsWith("[")&&n.endsWith("]"))try{var r=JSON.parse(n);if(Array.isArray(r))return r.filter(function(e){return null==e?void 0:e.url}).map(function(e){return{name:e.name||"".concat(t.replace(".pdf",""),"1"),fileName:e.fileName||e.name||"".concat(t.replace(".pdf",""),"1"),url:e.url,uid:e.uid||void 0,status:e.status||"done"}})}catch(e){}return n.split(",").map(function(e){return e.trim()}).filter(Boolean).map(function(e,n){return{name:"".concat(t.replace(".pdf","")).concat(n+1,".pdf"),fileName:"".concat(t.replace(".pdf","")).concat(n+1,".pdf"),url:e}})}function g(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},s={current:null!=(e=null!=(t=i.pageIndex)?t:i.current)?e:1,size:null!=(n=null!=(r=i.pageSize)?r:i.size)?n:10};return Object.entries(l).forEach(function(e){var t=f(e,2),n=t[0],r=t[1],a=i[n];null!=a&&""!==a&&(s[r]=(0,o.N9)(r)?(0,o.gR)(a):a)}),(0,a.mg)((0,o.CF)(s))}function b(e,t){if(!e)return{success:!1,data:[],totalCount:0};var n,r,i=Array.isArray(e.data)?e.data:[];return c(c({},e),{},{data:t?i.map(t):i,totalCount:null!=(n=null!=(r=e.totalCount)?r:e.total)?n:i.length})}function j(e,t){return e?c(c({},e),{},{data:e.data&&t?t(e.data):e.data}):{success:!1,data:null}}function x(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,o.gR)(n.id),orgName:n.unitName,creditCode:n.creditCode,safetyIndustryCategory:n.safetyIndustryCategoryName,regionCountyName:n.districtName,regionStreetName:n.townStreet,regionCommunityName:n.villageCommunity,longitude:n.longitude,latitude:n.latitude,registerAddress:n.registerAddress,businessAddress:n.businessAddress,ownershipType:n.ownershipTypeName,gbIndustryCode:n.economyIndustryCode,legalRepresentative:n.legalRepresentative,legalRepPhone:n.legalRepresentativePhone,principal:n.principalName,principalPhone:n.principalPhone,safetyDeptHead:n.safetyDeptManager,safetyDeptPhone:n.safetyDeptManagerPhone,safetyVpPhone:n.safetyDeputyPhone,productionDate:n.productionDate,businessStatus:n.businessStatusName,disclosureUrl:n.infoDisclosureUrl,workplaceArea:n.workplaceArea,archiveRoomArea:n.archiveRoomArea,fullTimeEvaluatorCount:n.fulltimeEvaluatorCount,registeredSafetyEngineerCount:n.registeredEngineerCount,authStatusCode:n.authStatusCode,enterpriseStatus:n.enterpriseStatusName,enterpriseScale:n.enterpriseScaleName,filingType:null!=(e=n.filingTypeName)?e:"确认备案",filingRecordStatus:null!=(t=n.filingRecordStatusName)?t:"未备案",attachments:h(n.attachmentUrls)}}function S(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return 0===Number(e.state)}function C(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,o.gR)(e.id),orgName:e.unitName,district:e.districtName,state:e.state,createTime:(0,r.Yq)((0,r.xU)(e.createTime))}}function A(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a={current:null!=(e=null!=(t=i.pageIndex)?t:i.current)?e:1,size:null!=(n=null!=(r=i.pageSize)?r:i.size)?n:10};i.orgName&&(a.unitName=i.orgName),i.district&&(a.districtName=i.district);var l=i.state;null!=l&&""!==l&&"全部"!==l&&(a.state=Number(l));var s=i.openTimeRange;return Array.isArray(s)&&2===s.length&&s[0]&&s[1]&&(a.createTimeStart=s[0].format?s[0].format("YYYY-MM-DD"):s[0],a.createTimeEnd=s[1].format?s[1].format("YYYY-MM-DD"):s[1]),(0,o.CF)(a)}function w(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,o.gR)(e.id),orgName:e.unitName,registerAddress:e.registerAddress,serviceEnterpriseCount:0,evalProjectCount:0,filingType:e.filingTypeName,filingRecordStatusCode:e.filingRecordStatusCode,filingRecordStatusName:e.filingRecordStatusName}}function O(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a={current:null!=(e=null!=(t=i.pageIndex)?t:i.current)?e:1,size:null!=(n=null!=(r=i.pageSize)?r:i.size)?n:10};i.orgName&&(a.unitName=i.orgName),i.registerAddress&&(a.registerAddress=i.registerAddress);var l=i.filingType;null!=l&&""!==l&&(a.filingTypeCode=String(l));var s=i.filingRecordStatus;return null!=s&&""!==s&&(a.filingRecordStatusCode=Number(s)),(0,o.CF)(a)}function P(){var e,t,n,r,a,l,s,u,f,d=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},p=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},h=function(){var e,t,n,r,a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},s=l.isDraft,u=void 0!==s&&s,f=a.enterpriseStatus,d=null!=(t=a.filingType)?t:"确认备案",p=null!=(n=a.filingRecordStatus)?n:"未备案";return c(c({},(e={},["id","tenantId"].forEach(function(t){void 0!==a[t]&&(e[t]=(0,o.N9)(t)?(0,o.gR)(a[t]):a[t])}),e)),{},{unitName:a.orgName,creditCode:a.creditCode,safetyIndustryCategoryName:a.safetyIndustryCategory,districtCode:a.regionCountyName,districtName:a.regionCountyName,townStreet:a.regionStreetName,villageCommunity:a.regionCommunityName,longitude:a.longitude,latitude:a.latitude,registerAddress:a.registerAddress,businessAddress:a.businessAddress,ownershipTypeName:a.ownershipType,economyIndustryCode:a.gbIndustryCode,legalRepresentative:a.legalRepresentative,legalRepresentativePhone:a.legalRepPhone,principalName:a.principal,principalPhone:a.principalPhone,safetyDeptManager:a.safetyDeptHead,safetyDeptManagerPhone:a.safetyDeptPhone,safetyDeputyPhone:a.safetyVpPhone,productionDate:a.productionDate,businessStatusName:a.businessStatus,infoDisclosureUrl:a.disclosureUrl,workplaceArea:a.workplaceArea,archiveRoomArea:a.archiveRoomArea,fulltimeEvaluatorCount:a.fullTimeEvaluatorCount,registeredEngineerCount:a.registeredSafetyEngineerCount,authStatusCode:+!u,authStatusName:u?"草稿":"已提交",enterpriseStatusCode:y[f],enterpriseStatusName:f,enterpriseScaleCode:a.enterpriseScale,enterpriseScaleName:a.enterpriseScale,filingTypeCode:null!=(r=m[d])?r:d,filingTypeName:d,filingRecordStatusCode:v[p],filingRecordStatusName:p,attachmentUrls:(0,i.Wf)(a.attachments)})}(c(c(c({},x(p)),d),{},{id:(0,o.gR)(null!=(e=d.id)?e:p.id)}),{isDraft:!1});return c(c({},h),{},{id:(0,o.gR)(null!=(t=d.id)?t:p.id),authStatusCode:null!=(n=p.authStatusCode)?n:h.authStatusCode,authStatusName:null!=(r=p.authStatusName)?r:h.authStatusName,tenantId:null!=(a=p.tenantId)?a:h.tenantId,filingTypeCode:null!=(l=p.filingTypeCode)?l:h.filingTypeCode,filingTypeName:null!=(s=p.filingTypeName)?s:h.filingTypeName,filingRecordStatusCode:null!=(u=p.filingRecordStatusCode)?u:h.filingRecordStatusCode,filingRecordStatusName:null!=(f=p.filingRecordStatusName)?f:h.filingRecordStatusName})}function I(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,o.gR)(i.id),staffName:i.userName,account:i.account,gender:i.genderCode,birthDate:i.birthDate,deptId:(0,o.gR)(i.deptId),positionId:(0,o.gR)(i.postId),idCardNo:i.idCardNo,homeAddress:i.currentAddress,officeAddress:i.officeAddress,educationType:i.educationTypeName,educationLevel:i.educationLevelName,education:null!=(e=i.educationName)?e:i.educationCode,graduateSchool:i.graduateSchool,major:i.major,employmentStatus:i.employmentStatusCode,personType:null!=(t=i.personTypeName)?t:"基础人员",qualScope:i.qualScope,professionalLevel:i.professionalLevelName,evaluatorCertNo:i.evaluatorCertNo,titleName:i.titleName,registerEngineerFlag:null!=(n=i.registerEngineerFlag)?n:2,publications:i.publications,abilityDeclaration:i.abilityDeclaration,workExperience:i.workExperience,proofMaterials:h(i.proofMaterialUrl,"专业能力证明.pdf"),deptName:i.deptName,positionName:null!=(r=i.postName)?r:i.positionName,certNames:i.certNames}}function E(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=n.certAttachmentUrl?h(n.certAttachmentUrl,n.certName||"证书附件.jpg"):n.certImgFiles||[];return{id:(0,o.gR)(n.id),staffId:(0,o.gR)(n.personnelId),certName:n.certName,certCategory:null!=(e=n.certCategoryName)?e:n.certCategoryCode,certWorkCategory:null!=(t=n.operationCategoryName)?t:n.operationCategoryCode,certNo:n.certNo,issueOrg:n.issueOrg,validStartDate:n.validStartDate,validEndDate:n.validEndDate,reviewDate:n.reviewDate,certImgFiles:r,certImgs:r}}function N(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=n.certImageUrl?h(n.certImageUrl,n.certName||"证书图片.jpg"):n.certImgFiles||[];return u(u(u(u(u({id:(0,o.gR)(n.id),certType:null!=(e=n.licenseTypeName)?e:n.licenseTypeCode,certName:n.certName,certNo:n.certNo,issueOrg:n.issueOrg,issueDate:n.issueDate,validStartDate:n.validStartDate,validEndDate:n.validEndDate,remark:null!=(t=n.remark)?t:n.remarks,enableFlag:n.enableFlag,enableStatus:+(1===Number(n.enableFlag))},"issueDate",(0,r.Yq)(n.issueDate)),"validStartDate",(0,r.Yq)(n.validStartDate)),"validEndDate",(0,r.Yq)(n.validEndDate)),"certImgFiles",i),"certImgs",i)}function L(e){var t=null==e?void 0:e.data;return t&&"object"===l(t)?Object.entries(t).map(function(e,t){var n,r=f(e,2),i=r[0],o=r[1],a=(Array.isArray(o)?o:[]).map(N),l=(null==(n=a[0])?void 0:n.certType)||i||"资质".concat(t+1),s=a.reduce(function(e,t){var n=t.validEndDate;return n&&(!e||n>e)?n:e},"");return{id:i||String(t),scopeName:l,expireDate:s||"-",expireWarning:function(e){if(!e)return!1;var t=new Date(String(e).replace(/-/g,"/"));if(Number.isNaN(t.getTime()))return!1;var n=t.getTime()-Date.now();return n>0&&n<7776e6}(s),materials:a.map(function(e,t){var n,r,o=(null==(n=e.certImgFiles)||null==(n=n[0])?void 0:n.url)||(null==(r=e.certImgs)||null==(r=r[0])?void 0:r.url);return{id:e.id||"".concat(i,"-").concat(t),name:e.certName||e.certType||"-",required:!0,status:o?"uploaded":"pending",previewUrl:o,raw:e}})}}):[]}function T(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=I(e);return{id:t.id,name:t.staffName,gender:p[t.gender]||"-",position:t.positionName,qualScope:t.qualScope,education:t.education||t.educationLevel,registerEngineer:+(1===t.registerEngineerFlag)}}},31467(e,t,n){"use strict";n.d(t,{$P:()=>v,Vg:()=>y,Y6:()=>j,oI:()=>g,yT:()=>x});var r=n(46285),i=n(73398),o=n(85518);function a(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var a=Object.create((r&&r.prototype instanceof c?r:c).prototype);return l(a,"_invoke",function(n,r,i){var o,a,l,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,a=0,l=e,d.n=n,s}};function p(n,r){for(a=n,l=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(l=o[(a=o[4])?5:(a=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,a=0))}if(i||n>1)return s;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),a=u,l=y;(t=a<2?e:l)||!f;){o||(a?a<3?(a>1&&(d.n=-1),p(a,l)):d.n=l:d.v=l);try{if(c=2,o){if(a||(i="next"),t=o[i]){if(!(t=t.call(o,l)))throw TypeError("iterator result is not an object");if(!t.done)return t;l=t.value,a<2&&(a=0)}else 1===a&&(t=o.return)&&t.call(o),a<2&&(l=TypeError("The iterator does not provide a '"+i+"' method"),a=1);o=e}else if((t=(f=d.n<0)?l:n.call(r,d))!==s)break}catch(t){o=e,a=1,l=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),a}var s={};function c(){}function u(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=c.prototype=Object.create([][r]?t(t([][r]())):(l(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,l(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return u.prototype=f,l(d,"constructor",f),l(f,"constructor",u),u.displayName="GeneratorFunction",l(f,i,"GeneratorFunction"),l(d),l(d,i,"Generator"),l(d,r,function(){return this}),l(d,"toString",function(){return"[object Generator]"}),(a=function(){return{w:o,m:p}})()}function l(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(l=function(e,t,n,r){function o(t,n){l(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function s(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function c(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){s(o,r,i,a,l,"next",e)}function l(e){s(o,r,i,a,l,"throw",e)}a(void 0)})}}function u(e){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function d(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.includeOrgContext,r=function(e){for(var t=1;t1&&void 0!==c[1]?c[1]:{},o=c.length>2&&void 0!==c[2]?c[2]:{},l=c.length>3&&void 0!==c[3]?c[3]:{},e.p=1,e.n=2,(0,r.Get)(t,(0,i.CF)(n),d(o,l));case 2:return e.a(2,e.v);case 3:return e.p=3,s=e.v,e.a(2,p(s))}},e,null,[[1,3]])}))).apply(this,arguments)}function v(e){return h.apply(this,arguments)}function h(){return(h=c(a().m(function e(t){var n,o,l,s,c,u=arguments;return a().w(function(e){for(;;)switch(e.p=e.n){case 0:return n=u.length>1&&void 0!==u[1]?u[1]:{},o=u.length>2&&void 0!==u[2]?u[2]:{},l=u.length>3&&void 0!==u[3]?u[3]:{},s=t.startsWith("@")?t:"@".concat(t),e.p=1,e.n=2,(0,r.Post)(s,(0,i.n3)(n),d(o,l));case 2:return e.a(2,e.v);case 3:return e.p=3,c=e.v,e.a(2,p(c))}},e,null,[[1,3]])}))).apply(this,arguments)}function g(e,t){return b.apply(this,arguments)}function b(){return(b=c(a().m(function e(t,n){var o,l,s=arguments;return a().w(function(e){for(;;)switch(e.p=e.n){case 0:return o=s.length>2&&void 0!==s[2]?s[2]:{},e.p=1,e.n=2,(0,r.Post)("@".concat(t),{data:(0,i.gR)(n)},d({},o));case 2:return e.a(2,e.v);case 3:return e.p=3,l=e.v,e.a(2,p(l))}},e,null,[[1,3]])}))).apply(this,arguments)}function j(e){var t;return t=c(a().m(function t(n){var r;return a().w(function(t){for(;;)switch(t.p=t.n){case 0:return t.p=0,t.n=1,e(n);case 1:return r=t.v,t.a(2,r);case 2:return t.p=2,console.warn("[enterpriseInfo/safePageResult]",t.v),t.a(2,{success:!1,data:[],totalCount:0})}},t,null,[[0,2]])})),function(e){return t.apply(this,arguments)}}function x(e){var t;return t=c(a().m(function t(n){var r,i;return a().w(function(t){for(;;)switch(t.p=t.n){case 0:return t.p=0,t.n=1,e(n);case 1:if(!((r=t.v)&&!1===r.success)){t.n=2;break}return t.a(2,{success:!1,message:r.message||r.msg||r.errMessage||"操作失败",code:r.code});case 2:return t.a(2,r);case 3:return t.p=3,console.warn("[enterpriseInfo/safeAction]",i=t.v),t.a(2,p(i))}},t,null,[[0,3]])})),function(e){return t.apply(this,arguments)}}},73398(e,t,n){"use strict";function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function i(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};if(!e||"object"!==o(e))return e;var t=i({},e);return Object.keys(t).forEach(function(e){l(e)&&null!=t[e]&&""!==t[e]&&(t[e]=a(t[e]))}),t}function c(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=i({},e);return Object.keys(t).forEach(function(e){l(e)&&null!=t[e]&&""!==t[e]&&(t[e]=a(t[e]))}),t}function u(e,t){var n=a(e),r=a(t);return!!n&&!!r&&(n===r||n.slice(0,16)===r.slice(0,16))}n.d(t,{CF:()=>c,N9:()=>l,gR:()=>a,n3:()=>s,s:()=>u})},85518(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function o(e){for(var t=1;tc,ze:()=>u});var a="orgInfoId",l=null;function s(){return l||sessionStorage.getItem(a)||null}function c(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(null!=e.orgId&&""!==e.orgId)return e;var t=s();return t?o(o({},e),{},{orgId:t}):e}function u(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.orgInfoId||s();return t?o(o({},e),{},{orgInfoId:String(t)}):e}var f=sessionStorage.getItem(a);f&&(l=f)},77539(e,t,n){"use strict";n.d(t,{bt:()=>u,d7:()=>c,xb:()=>s,zZ:()=>f});var r=n(96540);function i(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",a=n.toStringTag||"@@toStringTag";function l(n,r,i,a){var l=Object.create((r&&r.prototype instanceof c?r:c).prototype);return o(l,"_invoke",function(n,r,i){var o,a,l,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,a=0,l=e,d.n=n,s}};function p(n,r){for(a=n,l=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(l=o[(a=o[4])?5:(a=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,a=0))}if(i||n>1)return s;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),a=u,l=y;(t=a<2?e:l)||!f;){o||(a?a<3?(a>1&&(d.n=-1),p(a,l)):d.n=l:d.v=l);try{if(c=2,o){if(a||(i="next"),t=o[i]){if(!(t=t.call(o,l)))throw TypeError("iterator result is not an object");if(!t.done)return t;l=t.value,a<2&&(a=0)}else 1===a&&(t=o.return)&&t.call(o),a<2&&(l=TypeError("The iterator does not provide a '"+i+"' method"),a=1);o=e}else if((t=(f=d.n<0)?l:n.call(r,d))!==s)break}catch(t){o=e,a=1,l=t}finally{c=1}}return{value:t,done:f}}}(n,i,a),!0),l}var s={};function c(){}function u(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=c.prototype=Object.create([][r]?t(t([][r]())):(o(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,o(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return u.prototype=f,o(d,"constructor",f),o(f,"constructor",u),u.displayName="GeneratorFunction",o(f,a,"GeneratorFunction"),o(d),o(d,a,"Generator"),o(d,r,function(){return this}),o(d,"toString",function(){return"[object Generator]"}),(i=function(){return{w:l,m:p}})()}function o(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(o=function(e,t,n,r){function a(t,n){o(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(a("next",0),a("throw",1),a("return",2))})(e,t,n,r)}function a(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);na+1||i<1||i>12||o<1||o>31?null:"".concat(r,"-").concat(String(i).padStart(2,"0"),"-").concat(String(o).padStart(2,"0"))}function c(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,i=function(e){if(Array.isArray(e))return e}(t=(0,r.useState)(e))||function(e){var t=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return l(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?l(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),o=i[0],a=i[1],s=(0,r.useRef)(null);return(0,r.useEffect)(function(){return s.current&&clearTimeout(s.current),s.current=setTimeout(function(){a(e)},n),function(){s.current&&clearTimeout(s.current)}},[e,n]),o}function u(e){return function(t){return Promise.resolve(e(t)).catch(function(e){return console.warn("[safeListRequest]",e),{data:[],totalCount:0}})}}function f(e,t){return d.apply(this,arguments)}function d(){var e;return e=i().m(function e(t,n){var r,o,a=arguments;return i().w(function(e){for(;;)switch(e.p=e.n){case 0:if(r=a.length>2&&void 0!==a[2]?a[2]:15e3,"function"==typeof t){e.n=1;break}return e.a(2,null);case 1:return e.p=1,e.n=2,Promise.race([Promise.resolve(t(n)),new Promise(function(e,t){setTimeout(function(){return t(Error("request timeout"))},r)})]);case 2:return o=e.v,e.a(2,null!=o?o:null);case 3:return e.p=3,console.warn("[safeRequest]",e.v),e.a(2,null)}},e,null,[[1,3]])}),(d=function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function l(e){a(o,r,i,l,s,"next",e)}function s(e){a(o,r,i,l,s,"throw",e)}l(void 0)})}).apply(this,arguments)}},20344(e,t,n){"use strict";n.d(t,{Pn:()=>i,Wf:()=>o,zG:()=>a});var r="https://s1.aigei.com/prevfiles/6f2754563be2491bad7c957904cd7d2a.jpg?e=2051020800&token=P7S2Xpzfz11vAkASLTkfHN7Fw-oOZBecqeJaxypL:CR60zg7VKDp-jUWyYls_rdvyQMM=";function i(e){return r}function o(e){if(null!=e&&e.length){var t=e.filter(function(e){return null==e?void 0:e.url}).map(function(e){return{url:e.url,uid:e.uid||void 0,name:e.name||e.fileName||"附件",status:e.status||"done"}});return t.length?JSON.stringify(t):r}}function a(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"附件.pdf";if(!e)return[];var n=String(e).trim();if(n.startsWith("[")&&n.endsWith("]"))try{var r=JSON.parse(n);if(Array.isArray(r))return r.filter(function(e){return null==e?void 0:e.url}).map(function(e){return{name:e.name||"".concat(t.replace(".pdf",""),"1"),fileName:e.fileName||e.name||"".concat(t.replace(".pdf",""),"1"),url:e.url,uid:e.uid||void 0,status:e.status||"done"}})}catch(e){}return n.split(",").map(function(e){return e.trim()}).filter(Boolean).map(function(e,n){return{name:"".concat(t.replace(".pdf","")).concat(n+1,".pdf"),fileName:"".concat(t.replace(".pdf","")).concat(n+1,".pdf"),url:e}})}},41911(e,t,n){"use strict";n.d(t,{$8:()=>N,Bp:()=>z,Eo:()=>w,HV:()=>E,Z5:()=>O,ah:()=>V,cA:()=>L,k:()=>I,kl:()=>k,nF:()=>D,o:()=>P,oD:()=>A,s1:()=>C,uQ:()=>q});var r,i,o,a,l,s,c,u,f=n(15998),d=n(48032),p=n(31467);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var m=["raw"];function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function h(e){for(var t=1;t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(b(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,b(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,b(u,"constructor",c),b(c,"constructor",s),s.displayName="GeneratorFunction",b(c,i,"GeneratorFunction"),b(u),b(u,i,"Generator"),b(u,r,function(){return this}),b(u,"toString",function(){return"[object Generator]"}),(g=function(){return{w:o,m:f}})()}function b(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(b=function(e,t,n,r){function o(t,n){b(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function j(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function x(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){j(o,r,i,a,l,"next",e)}function l(e){j(o,r,i,a,l,"throw",e)}a(void 0)})}}var S={includeOrgContext:!1},C=(0,f.CV)("orgInfoLoading",(0,p.Y6)((r=x(g().m(function e(t){var n,r;return g().w(function(e){for(;;)switch(e.n){case 0:return n=(0,d.JP)(t),e.n=1,(0,p.Vg)("/safetyEval/org-info/page",n,{},S);case 1:return r=e.v,e.a(2,(0,d.$P)(r,d.pl))}},e)})),function(e){return r.apply(this,arguments)}))),A=(0,f.CV)("orgInfoLoading",(0,p.yT)((i=x(g().m(function e(t){var n,r,i,o;return g().w(function(e){for(;;)switch(e.n){case 0:return r=t.id,e.n=1,(0,p.Vg)("/safetyEval/org-info/get",{id:r},{},S);case 1:return i=e.v,o=(0,d.UC)(i,d.g5),e.a(2,h(h({},o),{},{raw:null!=(n=null==i?void 0:i.data)?n:null}))}},e)})),function(e){return i.apply(this,arguments)}))),w=(0,f.CV)("orgInfoLoading",(0,p.yT)((o=x(g().m(function e(t){var n,r,i,o;return g().w(function(e){for(;;)switch(e.n){case 0:return n=t.raw,r=function(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n={};for(var r in e)if(({}).hasOwnProperty.call(e,r)){if(-1!==t.indexOf(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;rf,Pl:()=>y,RM:()=>b,Zz:()=>v,c5:()=>d,cr:()=>m,ec:()=>j,fP:()=>g,fv:()=>p,qK:()=>h});var a=/^[0-9A-HJ-NPQRTUWXY]{2}\d{6}[0-9A-HJ-NPQRTUWXY]{10}$/,l=/^\d{17}[\dX]$/i,s=/^1[3-9]\d{9}$/,c=/^(\d{3,4}-?\d{7,8}|1[3-9]\d{9})$/,u=/^(https?:\/\/)[\w.-]+(?:\.[\w.-]+)+[\w\-._~:/?#[\]@!$&'()*+,;=.]*$/;function f(){var e=!(arguments.length>0)||void 0===arguments[0]||arguments[0];return o(o({required:e,message:e?"请输入统一社会信用代码":void 0,pattern:a},e?{}:{validateTrigger:"onBlur"}),{},{validator:function(t,n){return n?a.test(n.trim())?Promise.resolve():Promise.reject(Error("统一社会信用代码格式不正确")):e?Promise.reject(Error("请输入统一社会信用代码")):Promise.resolve()}})}function d(){var e=!(arguments.length>0)||void 0===arguments[0]||arguments[0];return{required:e,validator:function(t,n){if(!n)return e?Promise.reject(Error("请输入身份证号")):Promise.resolve();var r=String(n).trim();return l.test(r)?Promise.resolve():Promise.reject(Error("身份证号格式不正确"))}}}function p(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"联系电话",t=!(arguments.length>1)||void 0===arguments[1]||arguments[1];return{required:t,validator:function(n,r){if(!r)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var i=String(r).replace(/\s+/g,"");return c.test(i)?Promise.resolve():Promise.reject(Error("".concat(e,"格式不正确")))}}}function y(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"账号",t=!(arguments.length>1)||void 0===arguments[1]||arguments[1];return{required:t,validator:function(n,r){if(!r)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var i=String(r).replace(/\s+/g,"");return s.test(i)?Promise.resolve():Promise.reject(Error("".concat(e,"应为11位手机号")))}}}function m(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return{required:e,validator:function(t,n){if(null==n||""===n)return e?Promise.reject(Error("请输入经度")):Promise.resolve();var r=Number(n);return Number.isNaN(r)||r<-180||r>180?Promise.reject(Error("经度格式不正确(-180 ~ 180)")):Promise.resolve()}}}function v(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return{required:e,validator:function(t,n){if(null==n||""===n)return e?Promise.reject(Error("请输入纬度")):Promise.resolve();var r=Number(n);return Number.isNaN(r)||r<-90||r>90?Promise.reject(Error("纬度格式不正确(-90 ~ 90)")):Promise.resolve()}}}function h(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"网址",t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{required:t,validator:function(n,r){return r?u.test(String(r).trim())?Promise.resolve():Promise.reject(Error("".concat(e,"格式不正确"))):t?Promise.reject(Error("请输入".concat(e))):Promise.resolve()}}}function g(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{required:t,validator:function(n,r){if(null==r||""===r)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var i=Number(r);return Number.isNaN(i)||i<0?Promise.reject(Error("".concat(e,"应为非负数字"))):Promise.resolve()}}}function b(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{required:t,validator:function(n,r){if(null==r||""===r)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var i=Number(r);return!Number.isInteger(i)||i<0?Promise.reject(Error("".concat(e,"应为非负整数"))):Promise.resolve()}}}function j(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"证书有效期";return{validator:function(t,n){return Array.isArray(n)&&n.every(function(e){return""===e||null==e})||!n||!n[0]||!n[1]?Promise.reject(Error("请选择".concat(e))):Promise.resolve()}}}},65044(e,t,n){var r={"./corpCertificate/index.js":"62210","./courseware/index.js":"23775","./driver/index.js":"84049","./equipInfo/index.js":"23461","./global/index.js":"27872","./orgDepartment/index.js":"53001","./orgInfo/index.js":"89175","./orgPosition/index.js":"71252","./orgQualificationCert/index.js":"28022","./qualExpert/index.js":"89580","./qualFiling/index.js":"30045","./qualReview/index.js":"96952","./staffCertificate/index.js":"9538","./staffChangeLog/index.js":"53983","./staffInfo/index.js":"85135","./staffResignationApply/index.js":"93316","./userCertificate/index.js":"97467"};function i(e){return n(o(e))}function o(e){if(!n.o(r,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=o,e.exports=i,i.id=65044},63271(e,t,n){var r={"./corpCertificate":"62210","./corpCertificate/":"62210","./corpCertificate/index":"62210","./corpCertificate/index.js":"62210","./courseware":"23775","./courseware/":"23775","./courseware/index":"23775","./courseware/index.js":"23775","./driver":"84049","./driver/":"84049","./driver/index":"84049","./driver/index.js":"84049","./equipInfo":"23461","./equipInfo/":"23461","./equipInfo/index":"23461","./equipInfo/index.js":"23461","./global":"27872","./global/":"27872","./global/index":"27872","./global/index.js":"27872","./orgDepartment":"53001","./orgDepartment/":"53001","./orgDepartment/index":"53001","./orgDepartment/index.js":"53001","./orgInfo":"89175","./orgInfo/":"89175","./orgInfo/index":"89175","./orgInfo/index.js":"89175","./orgPosition":"71252","./orgPosition/":"71252","./orgPosition/index":"71252","./orgPosition/index.js":"71252","./orgQualificationCert":"28022","./orgQualificationCert/":"28022","./orgQualificationCert/index":"28022","./orgQualificationCert/index.js":"28022","./qualExpert":"89580","./qualExpert/":"89580","./qualExpert/index":"89580","./qualExpert/index.js":"89580","./qualFiling":"30045","./qualFiling/":"30045","./qualFiling/index":"30045","./qualFiling/index.js":"30045","./qualReview":"96952","./qualReview/":"96952","./qualReview/index":"96952","./qualReview/index.js":"96952","./staffCertificate":"9538","./staffCertificate/":"9538","./staffCertificate/index":"9538","./staffCertificate/index.js":"9538","./staffChangeLog":"53983","./staffChangeLog/":"53983","./staffChangeLog/index":"53983","./staffChangeLog/index.js":"53983","./staffInfo":"85135","./staffInfo/":"85135","./staffInfo/index":"85135","./staffInfo/index.js":"85135","./staffResignationApply":"93316","./staffResignationApply/":"93316","./staffResignationApply/index":"93316","./staffResignationApply/index.js":"93316","./userCertificate":"97467","./userCertificate/":"97467","./userCertificate/index":"97467","./userCertificate/index.js":"97467"};function i(e){return n(o(e))}function o(e){if(!n.o(r,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=o,e.exports=i,i.id=63271},2778(e,t,n){var r={"./Container/BranchCompany/EnterpriseLicense/EnterpriseLicense/index.js":"90378","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index.js":"55435","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index.js":"23614","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/index.js":"60646","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index.js":"66513","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index.js":"47856","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index.js":"50936","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index.js":"53326","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index.js":"23443","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/index.js":"49661","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index.js":"63550","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index.js":"6051","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index.js":"333","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/index.js":"72327","./Container/BranchCompany/EnterpriseLicense/index.js":"37755","./Container/BranchCompany/index.js":"72926","./Container/Driver/index.js":"56313","./Container/EnterpriseInfo/DepartmentPosition/index.js":"82104","./Container/EnterpriseInfo/EquipInfo/index.js":"27167","./Container/EnterpriseInfo/MaterialReport/index.js":"53962","./Container/EnterpriseInfo/MaterialReport/mockData.js":"8073","./Container/EnterpriseInfo/OrgInfo/formOptions.js":"60345","./Container/EnterpriseInfo/OrgInfo/index.js":"87213","./Container/EnterpriseInfo/PersonnelChange/index.js":"11071","./Container/EnterpriseInfo/PersonnelInfo/Certificate/index.js":"53671","./Container/EnterpriseInfo/PersonnelInfo/List/index.js":"26332","./Container/EnterpriseInfo/PersonnelInfo/StaffViewModal.js":"76243","./Container/EnterpriseInfo/PersonnelInfo/index.js":"3327","./Container/EnterpriseInfo/QualificationCert/index.js":"90088","./Container/EnterpriseInfo/ResignationApply/index.js":"71074","./Container/EnterpriseInfo/index.js":"87124","./Container/Entry/index.js":"43317","./Container/Images/test1/index.js":"24297","./Container/Institution/Dashboard/index.js":"66699","./Container/Institution/index.js":"90011","./Container/Institution/mockData.js":"22241","./Container/Layout/menuConfig.js":"35580","./Container/QualApplication/FiledManage/List/index.js":"76401","./Container/QualApplication/FiledManage/index.js":"87768","./Container/QualApplication/FilingApplication/List/index.js":"99345","./Container/QualApplication/FilingApplication/index.js":"88344","./Container/QualApplication/FilingChange/List/index.js":"8351","./Container/QualApplication/FilingChange/index.js":"92554","./Container/QualApplication/FilingForm/index.js":"70756","./Container/QualApplication/filingCommitment.js":"52528","./Container/QualApplication/filingLocalDraft.js":"94727","./Container/QualApplication/filingMaterialTemplate.js":"94878","./Container/QualApplication/filingPaths.js":"83577","./Container/QualApplication/filingPersist.js":"24941","./Container/QualApplication/filingVerify.js":"26368","./Container/QualApplication/index.js":"27102","./Container/QualificationReview/ExpertVerification/index.js":"34910","./Container/QualificationReview/FilingDetail/index.js":"13061","./Container/QualificationReview/FilingTabs/index.js":"2016","./Container/QualificationReview/QualChange/index.js":"90902","./Container/QualificationReview/QualConfirm/index.js":"53426","./Container/QualificationReview/QualConfirmForm/index.js":"1064","./Container/QualificationReview/QualPublicity/index.js":"99449","./Container/QualificationReview/QualReview/index.js":"68674","./Container/QualificationReview/QualReviewForm/ReviewModal.js":"41845","./Container/QualificationReview/QualReviewForm/index.js":"71544","./Container/QualificationReview/index.js":"76608","./Container/QualificationReview/mockData.js":"82488","./Container/QualificationReview/reviewPageQuery.js":"56097","./Container/Stakeholder/EnterpriseLicense/EnterpriseLicense/index.js":"63729","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index.js":"16478","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index.js":"58979","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/index.js":"53645","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index.js":"1144","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index.js":"82281","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index.js":"50427","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index.js":"77101","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index.js":"31620","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/index.js":"56196","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index.js":"73043","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index.js":"37174","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index.js":"4078","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/index.js":"45954","./Container/Stakeholder/EnterpriseLicense/index.js":"95492","./Container/Stakeholder/index.js":"99765","./Container/Supervision/BasicInfo/EnterprisePortrait/index.js":"59376","./Container/Supervision/BasicInfo/EvaluatorInfo/index.js":"96593","./Container/Supervision/BasicInfo/OrgAccount/index.js":"49953","./Container/Supervision/BasicInfo/RegisteredOrg/Detail/index.js":"42110","./Container/Supervision/BasicInfo/RegisteredOrg/List/index.js":"72007","./Container/Supervision/BasicInfo/RegisteredOrg/index.js":"83762","./Container/Supervision/BasicInfo/index.js":"49595","./Container/Supervision/Cockpit/index.js":"22500","./Container/Supervision/Cockpit/mockData.js":"51804","./Container/Supervision/Dashboard/index.js":"3117","./Container/Supervision/EnterpriseLicense/BranchStatistics/List/index.js":"88320","./Container/Supervision/EnterpriseLicense/BranchStatistics/View/index.js":"28737","./Container/Supervision/EnterpriseLicense/BranchStatistics/index.js":"75491","./Container/Supervision/EnterpriseLicense/EnterpriseLicense/index.js":"71070","./Container/Supervision/EnterpriseLicense/StakeholderStatistics/List/index.js":"40304","./Container/Supervision/EnterpriseLicense/StakeholderStatistics/View/index.js":"61969","./Container/Supervision/EnterpriseLicense/StakeholderStatistics/index.js":"57203","./Container/Supervision/EnterpriseLicense/index.js":"78079","./Container/Supervision/ExperManage/index.js":"49306","./Container/Supervision/PersonnelLicense/BranchCompanyStat/List/index.js":"24279","./Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/List/index.js":"60286","./Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/View/index.js":"57923","./Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/index.js":"30765","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/List/index.js":"3192","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/View/index.js":"11721","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/index.js":"13275","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/List/index.js":"92109","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/View/index.js":"49316","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/index.js":"68100","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/List/index.js":"30195","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/View/index.js":"5782","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/index.js":"92814","./Container/Supervision/PersonnelLicense/BranchCompanyStat/index.js":"50146","./Container/Supervision/PersonnelLicense/PersonInCharge/List/index.js":"83416","./Container/Supervision/PersonnelLicense/PersonInCharge/View/index.js":"91945","./Container/Supervision/PersonnelLicense/PersonInCharge/index.js":"64443","./Container/Supervision/PersonnelLicense/SecurityAdmini/List/index.js":"65962","./Container/Supervision/PersonnelLicense/SecurityAdmini/View/index.js":"15879","./Container/Supervision/PersonnelLicense/SecurityAdmini/index.js":"78601","./Container/Supervision/PersonnelLicense/SpecialDevice/List/index.js":"52299","./Container/Supervision/PersonnelLicense/SpecialDevice/View/index.js":"20478","./Container/Supervision/PersonnelLicense/SpecialDevice/index.js":"44646","./Container/Supervision/PersonnelLicense/SpecialPersonnel/List/index.js":"59673","./Container/Supervision/PersonnelLicense/SpecialPersonnel/View/index.js":"92104","./Container/Supervision/PersonnelLicense/SpecialPersonnel/index.js":"98624","./Container/Supervision/PersonnelLicense/StakeholderStat/List/index.js":"87474","./Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/List/index.js":"74401","./Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/View/index.js":"43424","./Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/index.js":"328","./Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/List/index.js":"76183","./Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/View/index.js":"58882","./Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/index.js":"47170","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/List/index.js":"82640","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/View/index.js":"54033","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/index.js":"92627","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/List/index.js":"60480","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/View/index.js":"897","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/index.js":"35299","./Container/Supervision/PersonnelLicense/StakeholderStat/index.js":"90673","./Container/Supervision/PersonnelLicense/index.js":"97800","./Container/Supervision/index.js":"38146","./Container/Supervision/test2/index.js":"98915","./Container/Test/index.js":"29259","./Container/index copy.js":"58237","./Container/index.js":"4474","./index.js":"58682"};function i(e){return n(o(e))}function o(e){if(!n.o(r,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=o,e.exports=i,i.id=2778},10016(e,t,n){var r={"./pages":"58682","./pages/":"58682","./pages/Container":"4474","./pages/Container/":"4474","./pages/Container/BranchCompany":"72926","./pages/Container/BranchCompany/":"72926","./pages/Container/BranchCompany/EnterpriseLicense":"37755","./pages/Container/BranchCompany/EnterpriseLicense/":"37755","./pages/Container/BranchCompany/EnterpriseLicense/EnterpriseLicense":"90378","./pages/Container/BranchCompany/EnterpriseLicense/EnterpriseLicense/":"90378","./pages/Container/BranchCompany/EnterpriseLicense/EnterpriseLicense/index":"90378","./pages/Container/BranchCompany/EnterpriseLicense/EnterpriseLicense/index.js":"90378","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense":"72327","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/":"72327","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge":"60646","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/":"60646","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/List":"55435","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/":"55435","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index":"55435","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index.js":"55435","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/View":"23614","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/":"23614","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index":"23614","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index.js":"23614","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/index":"60646","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/index.js":"60646","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini":"50936","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/":"50936","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List":"66513","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/":"66513","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index":"66513","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index.js":"66513","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View":"47856","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/":"47856","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index":"47856","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index.js":"47856","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index":"50936","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index.js":"50936","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice":"49661","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/":"49661","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/List":"53326","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/":"53326","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index":"53326","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index.js":"53326","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/View":"23443","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/":"23443","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index":"23443","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index.js":"23443","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/index":"49661","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/index.js":"49661","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel":"333","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/":"333","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List":"63550","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/":"63550","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index":"63550","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index.js":"63550","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View":"6051","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/":"6051","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index":"6051","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index.js":"6051","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index":"333","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index.js":"333","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/index":"72327","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/index.js":"72327","./pages/Container/BranchCompany/EnterpriseLicense/index":"37755","./pages/Container/BranchCompany/EnterpriseLicense/index.js":"37755","./pages/Container/BranchCompany/index":"72926","./pages/Container/BranchCompany/index.js":"72926","./pages/Container/Driver":"56313","./pages/Container/Driver/":"56313","./pages/Container/Driver/index":"56313","./pages/Container/Driver/index.js":"56313","./pages/Container/Driver/index.less":"76736","./pages/Container/EnterpriseInfo":"87124","./pages/Container/EnterpriseInfo/":"87124","./pages/Container/EnterpriseInfo/DepartmentPosition":"82104","./pages/Container/EnterpriseInfo/DepartmentPosition/":"82104","./pages/Container/EnterpriseInfo/DepartmentPosition/index":"82104","./pages/Container/EnterpriseInfo/DepartmentPosition/index.js":"82104","./pages/Container/EnterpriseInfo/EquipInfo":"27167","./pages/Container/EnterpriseInfo/EquipInfo/":"27167","./pages/Container/EnterpriseInfo/EquipInfo/index":"27167","./pages/Container/EnterpriseInfo/EquipInfo/index.js":"27167","./pages/Container/EnterpriseInfo/MaterialReport":"53962","./pages/Container/EnterpriseInfo/MaterialReport/":"53962","./pages/Container/EnterpriseInfo/MaterialReport/index":"53962","./pages/Container/EnterpriseInfo/MaterialReport/index.css":"52571","./pages/Container/EnterpriseInfo/MaterialReport/index.js":"53962","./pages/Container/EnterpriseInfo/MaterialReport/mockData":"8073","./pages/Container/EnterpriseInfo/MaterialReport/mockData.js":"8073","./pages/Container/EnterpriseInfo/OrgInfo":"87213","./pages/Container/EnterpriseInfo/OrgInfo/":"87213","./pages/Container/EnterpriseInfo/OrgInfo/formOptions":"60345","./pages/Container/EnterpriseInfo/OrgInfo/formOptions.js":"60345","./pages/Container/EnterpriseInfo/OrgInfo/index":"87213","./pages/Container/EnterpriseInfo/OrgInfo/index.js":"87213","./pages/Container/EnterpriseInfo/PersonnelChange":"11071","./pages/Container/EnterpriseInfo/PersonnelChange/":"11071","./pages/Container/EnterpriseInfo/PersonnelChange/index":"11071","./pages/Container/EnterpriseInfo/PersonnelChange/index.js":"11071","./pages/Container/EnterpriseInfo/PersonnelInfo":"3327","./pages/Container/EnterpriseInfo/PersonnelInfo/":"3327","./pages/Container/EnterpriseInfo/PersonnelInfo/Certificate":"53671","./pages/Container/EnterpriseInfo/PersonnelInfo/Certificate/":"53671","./pages/Container/EnterpriseInfo/PersonnelInfo/Certificate/index":"53671","./pages/Container/EnterpriseInfo/PersonnelInfo/Certificate/index.js":"53671","./pages/Container/EnterpriseInfo/PersonnelInfo/List":"26332","./pages/Container/EnterpriseInfo/PersonnelInfo/List/":"26332","./pages/Container/EnterpriseInfo/PersonnelInfo/List/index":"26332","./pages/Container/EnterpriseInfo/PersonnelInfo/List/index.js":"26332","./pages/Container/EnterpriseInfo/PersonnelInfo/StaffViewModal":"76243","./pages/Container/EnterpriseInfo/PersonnelInfo/StaffViewModal.js":"76243","./pages/Container/EnterpriseInfo/PersonnelInfo/index":"3327","./pages/Container/EnterpriseInfo/PersonnelInfo/index.js":"3327","./pages/Container/EnterpriseInfo/QualificationCert":"90088","./pages/Container/EnterpriseInfo/QualificationCert/":"90088","./pages/Container/EnterpriseInfo/QualificationCert/index":"90088","./pages/Container/EnterpriseInfo/QualificationCert/index.js":"90088","./pages/Container/EnterpriseInfo/ResignationApply":"71074","./pages/Container/EnterpriseInfo/ResignationApply/":"71074","./pages/Container/EnterpriseInfo/ResignationApply/index":"71074","./pages/Container/EnterpriseInfo/ResignationApply/index.js":"71074","./pages/Container/EnterpriseInfo/index":"87124","./pages/Container/EnterpriseInfo/index.js":"87124","./pages/Container/Entry":"43317","./pages/Container/Entry/":"43317","./pages/Container/Entry/index":"43317","./pages/Container/Entry/index.js":"43317","./pages/Container/Images/test1":"24297","./pages/Container/Images/test1/":"24297","./pages/Container/Images/test1/index":"24297","./pages/Container/Images/test1/index.js":"24297","./pages/Container/Institution":"90011","./pages/Container/Institution/":"90011","./pages/Container/Institution/Dashboard":"66699","./pages/Container/Institution/Dashboard/":"66699","./pages/Container/Institution/Dashboard/index":"66699","./pages/Container/Institution/Dashboard/index.js":"66699","./pages/Container/Institution/components/EnterpriseTypeChart":"2231","./pages/Container/Institution/components/EnterpriseTypeChart.jsx":"2231","./pages/Container/Institution/components/InfoAlerts":"18543","./pages/Container/Institution/components/InfoAlerts.jsx":"18543","./pages/Container/Institution/components/ProjectCompletionTable":"17073","./pages/Container/Institution/components/ProjectCompletionTable.jsx":"17073","./pages/Container/Institution/components/ProjectTypeChart":"40131","./pages/Container/Institution/components/ProjectTypeChart.jsx":"40131","./pages/Container/Institution/components/StatisticCards":"11021","./pages/Container/Institution/components/StatisticCards.jsx":"11021","./pages/Container/Institution/index":"90011","./pages/Container/Institution/index.css":"20124","./pages/Container/Institution/index.js":"90011","./pages/Container/Institution/mockData":"22241","./pages/Container/Institution/mockData.js":"22241","./pages/Container/Layout":"79331","./pages/Container/Layout/":"79331","./pages/Container/Layout/index":"79331","./pages/Container/Layout/index.jsx":"79331","./pages/Container/Layout/menuConfig":"35580","./pages/Container/Layout/menuConfig.js":"35580","./pages/Container/QualApplication":"27102","./pages/Container/QualApplication/":"27102","./pages/Container/QualApplication/FiledManage":"87768","./pages/Container/QualApplication/FiledManage/":"87768","./pages/Container/QualApplication/FiledManage/List":"76401","./pages/Container/QualApplication/FiledManage/List/":"76401","./pages/Container/QualApplication/FiledManage/List/index":"76401","./pages/Container/QualApplication/FiledManage/List/index.js":"76401","./pages/Container/QualApplication/FiledManage/index":"87768","./pages/Container/QualApplication/FiledManage/index.js":"87768","./pages/Container/QualApplication/FilingApplication":"88344","./pages/Container/QualApplication/FilingApplication/":"88344","./pages/Container/QualApplication/FilingApplication/List":"99345","./pages/Container/QualApplication/FilingApplication/List/":"99345","./pages/Container/QualApplication/FilingApplication/List/index":"99345","./pages/Container/QualApplication/FilingApplication/List/index.js":"99345","./pages/Container/QualApplication/FilingApplication/index":"88344","./pages/Container/QualApplication/FilingApplication/index.js":"88344","./pages/Container/QualApplication/FilingChange":"92554","./pages/Container/QualApplication/FilingChange/":"92554","./pages/Container/QualApplication/FilingChange/List":"8351","./pages/Container/QualApplication/FilingChange/List/":"8351","./pages/Container/QualApplication/FilingChange/List/index":"8351","./pages/Container/QualApplication/FilingChange/List/index.js":"8351","./pages/Container/QualApplication/FilingChange/index":"92554","./pages/Container/QualApplication/FilingChange/index.js":"92554","./pages/Container/QualApplication/FilingForm":"70756","./pages/Container/QualApplication/FilingForm/":"70756","./pages/Container/QualApplication/FilingForm/components/BasicInfoStep":"92423","./pages/Container/QualApplication/FilingForm/components/BasicInfoStep.jsx":"92423","./pages/Container/QualApplication/FilingForm/components/ChangeHistoryModal":"55096","./pages/Container/QualApplication/FilingForm/components/ChangeHistoryModal.jsx":"55096","./pages/Container/QualApplication/FilingForm/components/CommitmentStep":"93090","./pages/Container/QualApplication/FilingForm/components/CommitmentStep.jsx":"93090","./pages/Container/QualApplication/FilingForm/components/EquipmentStep":"12017","./pages/Container/QualApplication/FilingForm/components/EquipmentStep.jsx":"12017","./pages/Container/QualApplication/FilingForm/components/FilingUpload":"93915","./pages/Container/QualApplication/FilingForm/components/FilingUpload.jsx":"93915","./pages/Container/QualApplication/FilingForm/components/MaterialStep":"81110","./pages/Container/QualApplication/FilingForm/components/MaterialStep.jsx":"81110","./pages/Container/QualApplication/FilingForm/components/OrgEquipmentSelectModal":"65474","./pages/Container/QualApplication/FilingForm/components/OrgEquipmentSelectModal.jsx":"65474","./pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal":"82314","./pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx":"82314","./pages/Container/QualApplication/FilingForm/components/PersonnelStep":"74969","./pages/Container/QualApplication/FilingForm/components/PersonnelStep.jsx":"74969","./pages/Container/QualApplication/FilingForm/components/PrerequisiteVerifyModal":"21819","./pages/Container/QualApplication/FilingForm/components/PrerequisiteVerifyModal.jsx":"21819","./pages/Container/QualApplication/FilingForm/index":"70756","./pages/Container/QualApplication/FilingForm/index.js":"70756","./pages/Container/QualApplication/FilingListTable":"56095","./pages/Container/QualApplication/FilingListTable.jsx":"56095","./pages/Container/QualApplication/filingCommitment":"52528","./pages/Container/QualApplication/filingCommitment.js":"52528","./pages/Container/QualApplication/filingLocalDraft":"94727","./pages/Container/QualApplication/filingLocalDraft.js":"94727","./pages/Container/QualApplication/filingMaterialTemplate":"94878","./pages/Container/QualApplication/filingMaterialTemplate.js":"94878","./pages/Container/QualApplication/filingPaths":"83577","./pages/Container/QualApplication/filingPaths.js":"83577","./pages/Container/QualApplication/filingPersist":"24941","./pages/Container/QualApplication/filingPersist.js":"24941","./pages/Container/QualApplication/filingVerify":"26368","./pages/Container/QualApplication/filingVerify.js":"26368","./pages/Container/QualApplication/index":"27102","./pages/Container/QualApplication/index.js":"27102","./pages/Container/QualificationReview":"76608","./pages/Container/QualificationReview/":"76608","./pages/Container/QualificationReview/ExpertVerification":"34910","./pages/Container/QualificationReview/ExpertVerification/":"34910","./pages/Container/QualificationReview/ExpertVerification/index":"34910","./pages/Container/QualificationReview/ExpertVerification/index.js":"34910","./pages/Container/QualificationReview/FilingDetail":"13061","./pages/Container/QualificationReview/FilingDetail/":"13061","./pages/Container/QualificationReview/FilingDetail/index":"13061","./pages/Container/QualificationReview/FilingDetail/index.js":"13061","./pages/Container/QualificationReview/FilingTabs":"2016","./pages/Container/QualificationReview/FilingTabs/":"2016","./pages/Container/QualificationReview/FilingTabs/index":"2016","./pages/Container/QualificationReview/FilingTabs/index.js":"2016","./pages/Container/QualificationReview/QualChange":"90902","./pages/Container/QualificationReview/QualChange/":"90902","./pages/Container/QualificationReview/QualChange/index":"90902","./pages/Container/QualificationReview/QualChange/index.js":"90902","./pages/Container/QualificationReview/QualConfirm":"53426","./pages/Container/QualificationReview/QualConfirm/":"53426","./pages/Container/QualificationReview/QualConfirm/index":"53426","./pages/Container/QualificationReview/QualConfirm/index.js":"53426","./pages/Container/QualificationReview/QualConfirmForm":"1064","./pages/Container/QualificationReview/QualConfirmForm/":"1064","./pages/Container/QualificationReview/QualConfirmForm/indes":"59914","./pages/Container/QualificationReview/QualConfirmForm/indes.less":"59914","./pages/Container/QualificationReview/QualConfirmForm/index":"1064","./pages/Container/QualificationReview/QualConfirmForm/index.js":"1064","./pages/Container/QualificationReview/QualPublicity":"99449","./pages/Container/QualificationReview/QualPublicity/":"99449","./pages/Container/QualificationReview/QualPublicity/index":"99449","./pages/Container/QualificationReview/QualPublicity/index.js":"99449","./pages/Container/QualificationReview/QualReview":"68674","./pages/Container/QualificationReview/QualReview/":"68674","./pages/Container/QualificationReview/QualReview/index":"68674","./pages/Container/QualificationReview/QualReview/index.js":"68674","./pages/Container/QualificationReview/QualReviewForm":"71544","./pages/Container/QualificationReview/QualReviewForm/":"71544","./pages/Container/QualificationReview/QualReviewForm/ReviewModal":"41845","./pages/Container/QualificationReview/QualReviewForm/ReviewModal.js":"41845","./pages/Container/QualificationReview/QualReviewForm/indes":"69208","./pages/Container/QualificationReview/QualReviewForm/indes.less":"69208","./pages/Container/QualificationReview/QualReviewForm/index":"71544","./pages/Container/QualificationReview/QualReviewForm/index.js":"71544","./pages/Container/QualificationReview/index":"76608","./pages/Container/QualificationReview/index.js":"76608","./pages/Container/QualificationReview/mockData":"82488","./pages/Container/QualificationReview/mockData.js":"82488","./pages/Container/QualificationReview/reviewPageQuery":"56097","./pages/Container/QualificationReview/reviewPageQuery.js":"56097","./pages/Container/Stakeholder":"99765","./pages/Container/Stakeholder/":"99765","./pages/Container/Stakeholder/EnterpriseLicense":"95492","./pages/Container/Stakeholder/EnterpriseLicense/":"95492","./pages/Container/Stakeholder/EnterpriseLicense/EnterpriseLicense":"63729","./pages/Container/Stakeholder/EnterpriseLicense/EnterpriseLicense/":"63729","./pages/Container/Stakeholder/EnterpriseLicense/EnterpriseLicense/index":"63729","./pages/Container/Stakeholder/EnterpriseLicense/EnterpriseLicense/index.js":"63729","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense":"45954","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/":"45954","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge":"53645","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/":"53645","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/List":"16478","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/":"16478","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index":"16478","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index.js":"16478","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/View":"58979","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/":"58979","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index":"58979","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index.js":"58979","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/index":"53645","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/index.js":"53645","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini":"50427","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/":"50427","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List":"1144","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/":"1144","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index":"1144","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index.js":"1144","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View":"82281","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/":"82281","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index":"82281","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index.js":"82281","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index":"50427","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index.js":"50427","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice":"56196","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/":"56196","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/List":"77101","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/":"77101","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index":"77101","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index.js":"77101","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/View":"31620","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/":"31620","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index":"31620","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index.js":"31620","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/index":"56196","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/index.js":"56196","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel":"4078","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/":"4078","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List":"73043","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/":"73043","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index":"73043","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index.js":"73043","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View":"37174","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/":"37174","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index":"37174","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index.js":"37174","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index":"4078","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index.js":"4078","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/index":"45954","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/index.js":"45954","./pages/Container/Stakeholder/EnterpriseLicense/index":"95492","./pages/Container/Stakeholder/EnterpriseLicense/index.js":"95492","./pages/Container/Stakeholder/index":"99765","./pages/Container/Stakeholder/index.js":"99765","./pages/Container/Supervision":"38146","./pages/Container/Supervision/":"38146","./pages/Container/Supervision/BasicInfo":"49595","./pages/Container/Supervision/BasicInfo/":"49595","./pages/Container/Supervision/BasicInfo/EnterprisePortrait":"59376","./pages/Container/Supervision/BasicInfo/EnterprisePortrait/":"59376","./pages/Container/Supervision/BasicInfo/EnterprisePortrait/index":"59376","./pages/Container/Supervision/BasicInfo/EnterprisePortrait/index.js":"59376","./pages/Container/Supervision/BasicInfo/EvaluatorInfo":"96593","./pages/Container/Supervision/BasicInfo/EvaluatorInfo/":"96593","./pages/Container/Supervision/BasicInfo/EvaluatorInfo/index":"96593","./pages/Container/Supervision/BasicInfo/EvaluatorInfo/index.js":"96593","./pages/Container/Supervision/BasicInfo/OrgAccount":"49953","./pages/Container/Supervision/BasicInfo/OrgAccount/":"49953","./pages/Container/Supervision/BasicInfo/OrgAccount/index":"49953","./pages/Container/Supervision/BasicInfo/OrgAccount/index.js":"49953","./pages/Container/Supervision/BasicInfo/RegisteredOrg":"83762","./pages/Container/Supervision/BasicInfo/RegisteredOrg/":"83762","./pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail":"42110","./pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail/":"42110","./pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail/index":"42110","./pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail/index.js":"42110","./pages/Container/Supervision/BasicInfo/RegisteredOrg/List":"72007","./pages/Container/Supervision/BasicInfo/RegisteredOrg/List/":"72007","./pages/Container/Supervision/BasicInfo/RegisteredOrg/List/index":"72007","./pages/Container/Supervision/BasicInfo/RegisteredOrg/List/index.js":"72007","./pages/Container/Supervision/BasicInfo/RegisteredOrg/index":"83762","./pages/Container/Supervision/BasicInfo/RegisteredOrg/index.js":"83762","./pages/Container/Supervision/BasicInfo/index":"49595","./pages/Container/Supervision/BasicInfo/index.js":"49595","./pages/Container/Supervision/Cockpit":"22500","./pages/Container/Supervision/Cockpit/":"22500","./pages/Container/Supervision/Cockpit/data/chongqingGeoJson":"8258","./pages/Container/Supervision/Cockpit/data/chongqingGeoJson.json":"8258","./pages/Container/Supervision/Cockpit/index":"22500","./pages/Container/Supervision/Cockpit/index.css":"74033","./pages/Container/Supervision/Cockpit/index.js":"22500","./pages/Container/Supervision/Cockpit/mockData":"51804","./pages/Container/Supervision/Cockpit/mockData.js":"51804","./pages/Container/Supervision/Dashboard":"3117","./pages/Container/Supervision/Dashboard/":"3117","./pages/Container/Supervision/Dashboard/index":"3117","./pages/Container/Supervision/Dashboard/index.css":"9770","./pages/Container/Supervision/Dashboard/index.js":"3117","./pages/Container/Supervision/EnterpriseLicense":"78079","./pages/Container/Supervision/EnterpriseLicense/":"78079","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics":"75491","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/":"75491","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/List":"88320","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/List/":"88320","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/List/index":"88320","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/List/index.js":"88320","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/View":"28737","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/View/":"28737","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/View/index":"28737","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/View/index.js":"28737","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/index":"75491","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/index.js":"75491","./pages/Container/Supervision/EnterpriseLicense/EnterpriseLicense":"71070","./pages/Container/Supervision/EnterpriseLicense/EnterpriseLicense/":"71070","./pages/Container/Supervision/EnterpriseLicense/EnterpriseLicense/index":"71070","./pages/Container/Supervision/EnterpriseLicense/EnterpriseLicense/index.js":"71070","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics":"57203","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/":"57203","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/List":"40304","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/List/":"40304","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/List/index":"40304","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/List/index.js":"40304","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/View":"61969","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/View/":"61969","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/View/index":"61969","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/View/index.js":"61969","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/index":"57203","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/index.js":"57203","./pages/Container/Supervision/EnterpriseLicense/index":"78079","./pages/Container/Supervision/EnterpriseLicense/index.js":"78079","./pages/Container/Supervision/ExperManage":"49306","./pages/Container/Supervision/ExperManage/":"49306","./pages/Container/Supervision/ExperManage/index":"49306","./pages/Container/Supervision/ExperManage/index.js":"49306","./pages/Container/Supervision/PersonnelLicense":"97800","./pages/Container/Supervision/PersonnelLicense/":"97800","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat":"50146","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/":"50146","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/List":"24279","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/List/":"24279","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/List/index":"24279","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/List/index.js":"24279","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge":"30765","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/":"30765","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/List":"60286","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/List/":"60286","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/List/index":"60286","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/List/index.js":"60286","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/View":"57923","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/View/":"57923","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/View/index":"57923","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/View/index.js":"57923","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/index":"30765","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/index.js":"30765","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini":"13275","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/":"13275","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/List":"3192","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/List/":"3192","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/List/index":"3192","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/List/index.js":"3192","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/View":"11721","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/View/":"11721","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/View/index":"11721","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/View/index.js":"11721","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/index":"13275","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/index.js":"13275","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice":"68100","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/":"68100","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/List":"92109","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/List/":"92109","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/List/index":"92109","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/List/index.js":"92109","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/View":"49316","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/View/":"49316","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/View/index":"49316","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/View/index.js":"49316","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/index":"68100","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/index.js":"68100","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel":"92814","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/":"92814","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/List":"30195","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/List/":"30195","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/List/index":"30195","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/List/index.js":"30195","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/View":"5782","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/View/":"5782","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/View/index":"5782","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/View/index.js":"5782","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/index":"92814","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/index.js":"92814","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/index":"50146","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/index.js":"50146","./pages/Container/Supervision/PersonnelLicense/PersonInCharge":"64443","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/":"64443","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/List":"83416","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/List/":"83416","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/List/index":"83416","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/List/index.js":"83416","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/View":"91945","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/View/":"91945","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/View/index":"91945","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/View/index.js":"91945","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/index":"64443","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/index.js":"64443","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini":"78601","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/":"78601","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/List":"65962","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/List/":"65962","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/List/index":"65962","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/List/index.js":"65962","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/View":"15879","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/View/":"15879","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/View/index":"15879","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/View/index.js":"15879","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/index":"78601","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/index.js":"78601","./pages/Container/Supervision/PersonnelLicense/SpecialDevice":"44646","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/":"44646","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/List":"52299","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/List/":"52299","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/List/index":"52299","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/List/index.js":"52299","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/View":"20478","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/View/":"20478","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/View/index":"20478","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/View/index.js":"20478","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/index":"44646","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/index.js":"44646","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel":"98624","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/":"98624","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/List":"59673","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/List/":"59673","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/List/index":"59673","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/List/index.js":"59673","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/View":"92104","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/View/":"92104","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/View/index":"92104","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/View/index.js":"92104","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/index":"98624","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/index.js":"98624","./pages/Container/Supervision/PersonnelLicense/StakeholderStat":"90673","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/":"90673","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/List":"87474","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/List/":"87474","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/List/index":"87474","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/List/index.js":"87474","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge":"328","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/":"328","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/List":"74401","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/List/":"74401","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/List/index":"74401","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/List/index.js":"74401","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/View":"43424","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/View/":"43424","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/View/index":"43424","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/View/index.js":"43424","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/index":"328","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/index.js":"328","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini":"47170","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/":"47170","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/List":"76183","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/List/":"76183","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/List/index":"76183","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/List/index.js":"76183","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/View":"58882","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/View/":"58882","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/View/index":"58882","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/View/index.js":"58882","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/index":"47170","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/index.js":"47170","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice":"92627","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/":"92627","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/List":"82640","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/List/":"82640","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/List/index":"82640","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/List/index.js":"82640","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/View":"54033","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/View/":"54033","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/View/index":"54033","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/View/index.js":"54033","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/index":"92627","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/index.js":"92627","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel":"35299","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/":"35299","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/List":"60480","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/List/":"60480","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/List/index":"60480","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/List/index.js":"60480","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/View":"897","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/View/":"897","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/View/index":"897","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/View/index.js":"897","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/index":"35299","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/index.js":"35299","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/index":"90673","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/index.js":"90673","./pages/Container/Supervision/PersonnelLicense/index":"97800","./pages/Container/Supervision/PersonnelLicense/index.js":"97800","./pages/Container/Supervision/index":"38146","./pages/Container/Supervision/index.js":"38146","./pages/Container/Supervision/test2":"98915","./pages/Container/Supervision/test2/":"98915","./pages/Container/Supervision/test2/index":"98915","./pages/Container/Supervision/test2/index.js":"98915","./pages/Container/Test":"29259","./pages/Container/Test/":"29259","./pages/Container/Test/index":"29259","./pages/Container/Test/index.js":"29259","./pages/Container/index":"4474","./pages/Container/index copy":"58237","./pages/Container/index copy.js":"58237","./pages/Container/index.js":"4474","./pages/Container/index.less":"1589","./pages/index":"58682","./pages/index.js":"58682"};function i(e){return n(o(e))}function o(e){if(!n.o(r,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=o,e.exports=i,i.id=10016},12298(){},61345(){},8258(e){"use strict";e.exports=JSON.parse('{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":500101,"name":"万州区","center":[108.380246,30.807807],"centroid":[108.406819,30.704054],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":0,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.034778,30.574187],[108.052847,30.572094],[108.062667,30.574429],[108.072537,30.582159],[108.083339,30.579582],[108.088593,30.572617],[108.103863,30.573382],[108.105631,30.591458],[108.111621,30.59343],[108.127187,30.586104],[108.126647,30.577972],[108.120067,30.576965],[108.12645,30.564],[108.143587,30.566215],[108.153063,30.545879],[108.152523,30.535931],[108.163374,30.540805],[108.171378,30.539314],[108.165633,30.524411],[108.175552,30.510633],[108.184537,30.518167],[108.195045,30.514501],[108.207811,30.49766],[108.230496,30.476705],[108.232755,30.45502],[108.241937,30.443773],[108.223622,30.421274],[108.236732,30.409216],[108.254261,30.403529],[108.261479,30.388605],[108.275031,30.405546],[108.296538,30.401109],[108.298944,30.407562],[108.315835,30.425387],[108.317062,30.433129],[108.33248,30.449336],[108.338814,30.470337],[108.344657,30.476987],[108.378734,30.534884],[108.394593,30.536737],[108.404315,30.548295],[108.410404,30.543261],[108.409717,30.532749],[108.402253,30.529688],[108.399553,30.520504],[108.409962,30.517563],[108.412368,30.503059],[108.427786,30.512567],[108.42101,30.497176],[108.424054,30.488956],[108.440994,30.491011],[108.45268,30.495968],[108.455086,30.489319],[108.479146,30.488956],[108.491765,30.501488],[108.513124,30.501407],[108.528297,30.487505],[108.542929,30.491978],[108.55707,30.486014],[108.564926,30.468564],[108.569935,30.470418],[108.581719,30.485893],[108.591245,30.487787],[108.590606,30.494718],[108.598561,30.493872],[108.611376,30.502173],[108.604551,30.510795],[108.621737,30.515468],[108.620116,30.52288],[108.628611,30.525176],[108.649332,30.537824],[108.649725,30.554215],[108.64344,30.562027],[108.639904,30.574751],[108.654487,30.585017],[108.666223,30.5886],[108.690479,30.586708],[108.700004,30.561786],[108.699415,30.544389],[108.711592,30.537864],[108.715815,30.530373],[108.711887,30.523203],[108.726176,30.515548],[108.723966,30.507572],[108.744196,30.494799],[108.761529,30.505315],[108.77292,30.503502],[108.788534,30.51293],[108.799239,30.50592],[108.806948,30.491414],[108.839011,30.50318],[108.853005,30.514984],[108.854429,30.521913],[108.871663,30.532749],[108.893121,30.557799],[108.894643,30.56702],[108.90952,30.581273],[108.869896,30.610979],[108.871565,30.618103],[108.901713,30.646792],[108.899946,30.676438],[108.896312,30.684039],[108.884331,30.687337],[108.883546,30.695661],[108.872007,30.690112],[108.836016,30.678449],[108.828699,30.679414],[108.823347,30.69168],[108.818094,30.693771],[108.785883,30.683516],[108.779254,30.685125],[108.781022,30.697028],[108.79261,30.706558],[108.789762,30.714277],[108.763444,30.713031],[108.766586,30.720548],[108.762609,30.728106],[108.76639,30.74141],[108.754998,30.740044],[108.749842,30.74555],[108.740169,30.775527],[108.74724,30.782116],[108.740808,30.787259],[108.738549,30.808026],[108.733393,30.81405],[108.715177,30.815094],[108.699955,30.811841],[108.698482,30.822885],[108.685127,30.835976],[108.685078,30.845773],[108.671968,30.852116],[108.665977,30.867972],[108.653014,30.89105],[108.634798,30.885271],[108.625419,30.875358],[108.621589,30.888561],[108.623013,30.912837],[108.628169,30.918253],[108.619233,30.926999],[108.61884,30.934741],[108.608578,30.93807],[108.593307,30.920259],[108.566448,30.912396],[108.552602,30.915405],[108.537577,30.958123],[108.523632,30.973159],[108.531243,30.978051],[108.533894,30.996251],[108.51666,30.990559],[108.506643,30.992604],[108.501094,30.98651],[108.50409,30.977289],[108.496626,30.972839],[108.486413,30.977008],[108.460537,30.967426],[108.454743,30.970232],[108.45327,30.988755],[108.455626,30.994728],[108.440356,31.002545],[108.426509,30.998216],[108.41497,30.998897],[108.395674,30.991641],[108.372792,30.969791],[108.355214,30.960408],[108.339649,30.963135],[108.349027,30.939153],[108.360861,30.932976],[108.346277,30.921222],[108.300269,30.901041],[108.29202,30.892976],[108.268402,30.881659],[108.260055,30.872789],[108.243803,30.882261],[108.244294,30.89113],[108.228237,30.881298],[108.231184,30.87612],[108.225488,30.860908],[108.229956,30.856171],[108.218417,30.852839],[108.200102,30.839188],[108.197254,30.833647],[108.18218,30.824211],[108.167106,30.827182],[108.157482,30.834771],[108.152179,30.831278],[108.131704,30.832001],[108.126057,30.840875],[108.122866,30.833487],[108.109608,30.82931],[108.105287,30.841356],[108.096646,30.84782],[108.090115,30.871545],[108.101654,30.878007],[108.081817,30.885712],[108.071751,30.892695],[108.069149,30.888281],[108.041112,30.876522],[108.0363,30.8701],[108.029426,30.884508],[108.009392,30.907662],[108.000849,30.911915],[107.994711,30.908665],[107.986953,30.901924],[107.95597,30.882983],[107.954202,30.872428],[107.929504,30.859342],[107.896508,30.834932],[107.876131,30.813287],[107.88492,30.806138],[107.905592,30.77601],[107.908243,30.762911],[107.918653,30.75829],[107.959112,30.719262],[108.011405,30.709814],[108.03517,30.715362],[108.047544,30.723684],[108.074894,30.723121],[108.086678,30.713714],[108.074844,30.696304],[108.082259,30.677926],[108.079558,30.664532],[108.0554,30.660027],[108.042585,30.662481],[108.025645,30.648844],[108.023091,30.63617],[108.016954,30.629571],[108.025252,30.60289],[108.033697,30.592424],[108.028051,30.587432],[108.034778,30.574187]]]]}},{"type":"Feature","properties":{"adcode":500102,"name":"涪陵区","center":[107.394905,29.703652],"centroid":[107.334026,29.658582],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":1,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.701575,29.615443],[107.698482,29.618614],[107.713752,29.642555],[107.718073,29.65682],[107.696616,29.660315],[107.684733,29.666532],[107.674176,29.663362],[107.670101,29.675064],[107.6565,29.686156],[107.64447,29.687821],[107.630427,29.701714],[107.632784,29.719016],[107.640345,29.740701],[107.625075,29.753896],[107.64226,29.76303],[107.638529,29.772976],[107.638627,29.813274],[107.622669,29.802562],[107.605336,29.808161],[107.605238,29.832423],[107.595369,29.835222],[107.604256,29.852014],[107.613585,29.856111],[107.616973,29.865884],[107.626892,29.874522],[107.613094,29.876955],[107.598707,29.888632],[107.602979,29.897389],[107.59473,29.917657],[107.579361,29.923939],[107.573126,29.933827],[107.57946,29.943877],[107.571898,29.951049],[107.56193,29.946146],[107.546807,29.958585],[107.546905,29.965675],[107.53355,29.968551],[107.523779,29.978678],[107.515186,29.959436],[107.500554,29.960611],[107.498197,29.972481],[107.487443,29.972076],[107.471338,29.989453],[107.466968,29.998606],[107.453171,30.001441],[107.448064,29.999092],[107.421156,29.967944],[107.415755,29.970577],[107.383545,29.926614],[107.387129,29.921993],[107.377505,29.910523],[107.379666,29.899132],[107.369354,29.906794],[107.360762,29.897227],[107.342005,29.892929],[107.335818,29.884415],[107.337193,29.873062],[107.323445,29.852947],[107.313084,29.845809],[107.299827,29.847472],[107.29801,29.839603],[107.272379,29.837291],[107.270857,29.851447],[107.265161,29.847472],[107.240512,29.841347],[107.229317,29.84374],[107.210806,29.840292],[107.206583,29.824958],[107.212279,29.816276],[107.198039,29.809622],[107.186992,29.79473],[107.153111,29.784827],[107.111572,29.76299],[107.102635,29.754546],[107.086726,29.761813],[107.070277,29.758524],[107.070032,29.751217],[107.041406,29.734407],[107.027166,29.717189],[107.009195,29.712762],[107.002223,29.714468],[106.993581,29.679331],[106.975315,29.634142],[106.966624,29.599546],[106.958768,29.582508],[106.953268,29.551311],[106.953612,29.535811],[106.947278,29.510826],[106.945952,29.497029],[106.964415,29.488685],[106.98052,29.488767],[106.993925,29.482579],[107.00453,29.471058],[107.012927,29.487708],[107.019997,29.487057],[107.015873,29.473338],[107.034581,29.467435],[107.034482,29.453103],[107.025055,29.441782],[107.029228,29.410827],[107.034581,29.406713],[107.026381,29.402802],[107.035121,29.391231],[107.051619,29.394205],[107.052552,29.388705],[107.043321,29.378437],[107.07229,29.362829],[107.083387,29.359813],[107.10018,29.361606],[107.114812,29.366741],[107.109166,29.383856],[107.110442,29.391598],[107.125124,29.387564],[107.134158,29.394613],[107.146827,29.396365],[107.142947,29.408179],[107.134846,29.411438],[107.148741,29.419259],[107.155272,29.417304],[107.16082,29.424432],[107.167056,29.420603],[107.173096,29.408342],[107.185911,29.412945],[107.203244,29.411316],[107.199561,29.399135],[107.214439,29.39775],[107.207221,29.385934],[107.20732,29.366293],[107.225487,29.367801],[107.239285,29.364744],[107.241691,29.379415],[107.237713,29.394817],[107.226666,29.406835],[107.227598,29.418159],[107.240512,29.426795],[107.245422,29.424391],[107.260938,29.429035],[107.262264,29.436162],[107.277338,29.440357],[107.30567,29.465318],[107.313526,29.487912],[107.323248,29.497558],[107.328993,29.509321],[107.348683,29.515547],[107.358601,29.51575],[107.365868,29.522383],[107.380599,29.523197],[107.391548,29.530969],[107.427491,29.505658],[107.431762,29.483475],[107.441386,29.491575],[107.450519,29.490028],[107.463826,29.498617],[107.4625,29.502117],[107.475905,29.50635],[107.478507,29.497151],[107.513664,29.461165],[107.532666,29.423047],[107.546562,29.431845],[107.552798,29.447809],[107.56139,29.453062],[107.574206,29.452533],[107.577446,29.462427],[107.595958,29.480951],[107.613143,29.479526],[107.620558,29.483638],[107.615009,29.512373],[107.607546,29.514652],[107.608135,29.532474],[107.629003,29.539147],[107.651197,29.553304],[107.654634,29.562457],[107.666958,29.573804],[107.687532,29.600481],[107.69804,29.605889],[107.701575,29.615443]]]]}},{"type":"Feature","properties":{"adcode":500103,"name":"渝中区","center":[106.56288,29.556742],"centroid":[106.540387,29.549305],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":2,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.588199,29.571242],[106.572487,29.562619],[106.560849,29.567175],[106.545382,29.566483],[106.530407,29.552369],[106.502321,29.557494],[106.494022,29.554809],[106.482778,29.548097],[106.495594,29.546958],[106.500995,29.529789],[106.532272,29.52869],[106.539441,29.540489],[106.556185,29.5411],[106.583731,29.547812],[106.589623,29.556518],[106.588199,29.571242]]]]}},{"type":"Feature","properties":{"adcode":500104,"name":"大渡口区","center":[106.48613,29.481002],"centroid":[106.458637,29.417574],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":3,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.424298,29.426306],[106.423071,29.426591],[106.417522,29.420563],[106.416786,29.430175],[106.410108,29.439176],[106.406965,29.439054],[106.398422,29.440438],[106.393708,29.429361],[106.398471,29.413638],[106.392726,29.408831],[106.398225,29.386016],[106.405738,29.380963],[106.409568,29.368086],[106.39631,29.357286],[106.400877,29.340777],[106.411876,29.342245],[106.435542,29.352965],[106.441926,29.358916],[106.455036,29.380596],[106.469619,29.389153],[106.49196,29.39775],[106.509735,29.397506],[106.528197,29.388338],[106.534924,29.392005],[106.526528,29.411275],[106.498343,29.446913],[106.502075,29.47745],[106.509538,29.481765],[106.521765,29.479974],[106.523729,29.485673],[106.50291,29.494994],[106.480569,29.490273],[106.468097,29.498128],[106.454888,29.483556],[106.462696,29.485266],[106.47065,29.475048],[106.458915,29.472443],[106.451942,29.456401],[106.458767,29.448379],[106.454545,29.430623],[106.457884,29.41983],[106.451402,29.414127],[106.439372,29.417834],[106.430436,29.415512],[106.424298,29.426306]]]]}},{"type":"Feature","properties":{"adcode":500105,"name":"江北区","center":[106.532844,29.575352],"centroid":[106.707043,29.613282],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":4,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.46191,29.608247],[106.451942,29.586452],[106.463432,29.581165],[106.487688,29.555135],[106.494022,29.554809],[106.502321,29.557494],[106.530407,29.552369],[106.545382,29.566483],[106.560849,29.567175],[106.572487,29.562619],[106.588199,29.571242],[106.581177,29.578766],[106.580392,29.590275],[106.589672,29.609344],[106.602242,29.615565],[106.623307,29.614995],[106.633274,29.592023],[106.641916,29.586818],[106.65645,29.591861],[106.672654,29.566321],[106.683652,29.562131],[106.692343,29.564287],[106.709627,29.577627],[106.730937,29.583402],[106.740512,29.589665],[106.748614,29.607718],[106.766977,29.610401],[106.792461,29.604059],[106.801152,29.589055],[106.821087,29.591576],[106.843527,29.57657],[106.85045,29.575431],[106.861547,29.602067],[106.873086,29.615809],[106.893659,29.657064],[106.87775,29.659339],[106.866359,29.646985],[106.850548,29.659908],[106.833706,29.6632],[106.825703,29.659502],[106.819811,29.663647],[106.822118,29.67153],[106.809401,29.674699],[106.806701,29.671123],[106.793001,29.678599],[106.78323,29.669986],[106.782543,29.662428],[106.754162,29.651578],[106.747926,29.655154],[106.749988,29.663606],[106.744735,29.670433],[106.741297,29.662184],[106.73462,29.667263],[106.729906,29.646294],[106.723915,29.640604],[106.712671,29.646945],[106.70948,29.631337],[106.687237,29.623654],[106.648054,29.63719],[106.621834,29.635199],[106.61162,29.639873],[106.602929,29.634386],[106.595613,29.638572],[106.582798,29.633695],[106.579213,29.619061],[106.57337,29.620362],[106.562617,29.603734],[106.562175,29.589543],[106.549851,29.581531],[106.530308,29.587469],[106.506543,29.573032],[106.497754,29.573113],[106.486363,29.585639],[106.485724,29.596984],[106.492009,29.599424],[106.482434,29.613329],[106.478506,29.609751],[106.46191,29.608247]]]]}},{"type":"Feature","properties":{"adcode":500106,"name":"沙坪坝区","center":[106.4542,29.541224],"centroid":[106.368248,29.624462],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":5,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.482778,29.548097],[106.494022,29.554809],[106.487688,29.555135],[106.463432,29.581165],[106.451942,29.586452],[106.46191,29.608247],[106.462843,29.616296],[106.453121,29.620321],[106.45209,29.632109],[106.468293,29.645969],[106.469766,29.657714],[106.457589,29.668889],[106.448603,29.661453],[106.448702,29.652187],[106.424396,29.65747],[106.429061,29.662956],[106.426508,29.680021],[106.433431,29.711706],[106.442073,29.730387],[106.442908,29.743624],[106.431418,29.749146],[106.417768,29.750202],[106.40947,29.738833],[106.39361,29.740457],[106.382758,29.747847],[106.380647,29.744233],[106.366604,29.746994],[106.365327,29.735504],[106.32968,29.732702],[106.327126,29.728519],[106.317797,29.738752],[106.305669,29.736641],[106.297076,29.706467],[106.285636,29.697896],[106.280431,29.703298],[106.278712,29.67669],[106.284506,29.675268],[106.287698,29.663484],[106.2794,29.652553],[106.287649,29.635849],[106.279105,29.637841],[106.273017,29.631215],[106.282493,29.626744],[106.274882,29.612231],[106.265602,29.605889],[106.260005,29.592633],[106.251707,29.559406],[106.253425,29.532841],[106.264031,29.525354],[106.285488,29.532881],[106.293639,29.531254],[106.297322,29.542442],[106.305718,29.538415],[106.312789,29.544883],[106.33405,29.544029],[106.343526,29.554891],[106.356145,29.559772],[106.37392,29.546633],[106.379763,29.546958],[106.379272,29.536584],[106.390762,29.54053],[106.395083,29.547934],[106.403528,29.538903],[106.41384,29.540815],[106.411237,29.505536],[106.407506,29.492918],[106.424544,29.493325],[106.426999,29.498006],[106.44281,29.494139],[106.448063,29.509524],[106.461615,29.52808],[106.460093,29.532108],[106.483466,29.539025],[106.482778,29.548097]]]]}},{"type":"Feature","properties":{"adcode":500107,"name":"九龙坡区","center":[106.480989,29.523492],"centroid":[106.364401,29.428501],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":6,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.253425,29.532841],[106.253278,29.519698],[106.261969,29.516524],[106.260594,29.494262],[106.267026,29.494994],[106.26025,29.466051],[106.262705,29.451596],[106.278565,29.449031],[106.285636,29.441986],[106.298549,29.440764],[106.30724,29.434248],[106.307339,29.426835],[106.320596,29.427976],[106.323002,29.420481],[106.317257,29.415227],[106.329041,29.413679],[106.331005,29.39555],[106.322314,29.38732],[106.314409,29.388827],[106.30891,29.379985],[106.295554,29.378763],[106.294425,29.384549],[106.284359,29.38516],[106.282248,29.368167],[106.275668,29.363236],[106.277829,29.352924],[106.267468,29.350234],[106.261232,29.335519],[106.274539,29.32871],[106.276945,29.322269],[106.289171,29.320679],[106.27994,29.286913],[106.298697,29.256483],[106.311905,29.254769],[106.339844,29.26456],[106.3559,29.27688],[106.384035,29.283039],[106.393217,29.294948],[106.385999,29.312401],[106.395525,29.339351],[106.400877,29.340777],[106.39631,29.357286],[106.409568,29.368086],[106.405738,29.380963],[106.398225,29.386016],[106.392726,29.408831],[106.398471,29.413638],[106.393708,29.429361],[106.398422,29.440438],[106.406965,29.439054],[106.408537,29.441375],[106.410599,29.440397],[106.410108,29.439176],[106.416786,29.430175],[106.417522,29.420563],[106.423071,29.426591],[106.423316,29.427202],[106.423709,29.427691],[106.423955,29.427731],[106.424249,29.426795],[106.424298,29.426306],[106.430436,29.415512],[106.439372,29.417834],[106.451402,29.414127],[106.457884,29.41983],[106.454545,29.430623],[106.458767,29.448379],[106.451942,29.456401],[106.458915,29.472443],[106.47065,29.475048],[106.462696,29.485266],[106.454888,29.483556],[106.468097,29.498128],[106.480569,29.490273],[106.50291,29.494994],[106.523729,29.485673],[106.521765,29.479974],[106.542044,29.472972],[106.552011,29.48726],[106.549851,29.495523],[106.534187,29.505454],[106.532272,29.52869],[106.500995,29.529789],[106.495594,29.546958],[106.482778,29.548097],[106.483466,29.539025],[106.460093,29.532108],[106.461615,29.52808],[106.448063,29.509524],[106.44281,29.494139],[106.426999,29.498006],[106.424544,29.493325],[106.407506,29.492918],[106.411237,29.505536],[106.41384,29.540815],[106.403528,29.538903],[106.395083,29.547934],[106.390762,29.54053],[106.379272,29.536584],[106.379763,29.546958],[106.37392,29.546633],[106.356145,29.559772],[106.343526,29.554891],[106.33405,29.544029],[106.312789,29.544883],[106.305718,29.538415],[106.297322,29.542442],[106.293639,29.531254],[106.285488,29.532881],[106.264031,29.525354],[106.253425,29.532841]]],[[[106.423955,29.427731],[106.423709,29.427691],[106.423316,29.427202],[106.423071,29.426591],[106.424298,29.426306],[106.424249,29.426795],[106.423955,29.427731]]],[[[106.410599,29.440397],[106.408537,29.441375],[106.406965,29.439054],[106.410108,29.439176],[106.410599,29.440397]]]]}},{"type":"Feature","properties":{"adcode":500108,"name":"南岸区","center":[106.560813,29.523992],"centroid":[106.660614,29.535521],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":7,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.801152,29.589055],[106.792461,29.604059],[106.766977,29.610401],[106.748614,29.607718],[106.740512,29.589665],[106.730937,29.583402],[106.709627,29.577627],[106.692343,29.564287],[106.683652,29.562131],[106.672654,29.566321],[106.65645,29.591861],[106.641916,29.586818],[106.633274,29.592023],[106.623307,29.614995],[106.602242,29.615565],[106.589672,29.609344],[106.580392,29.590275],[106.581177,29.578766],[106.588199,29.571242],[106.589623,29.556518],[106.583731,29.547812],[106.556185,29.5411],[106.539441,29.540489],[106.532272,29.52869],[106.534187,29.505454],[106.549851,29.495523],[106.552011,29.48726],[106.56954,29.485144],[106.578772,29.469878],[106.586677,29.473094],[106.59581,29.463974],[106.606808,29.474315],[106.627971,29.465847],[106.642849,29.469959],[106.655321,29.462346],[106.65866,29.46772],[106.673341,29.458437],[106.688808,29.468453],[106.683358,29.476473],[106.69308,29.483353],[106.693276,29.48897],[106.703686,29.487993],[106.705257,29.482254],[106.732115,29.483923],[106.738548,29.486731],[106.764179,29.530928],[106.7712,29.549155],[106.787993,29.576326],[106.801152,29.589055]]]]}},{"type":"Feature","properties":{"adcode":500109,"name":"北碚区","center":[106.437868,29.82543],"centroid":[106.513996,29.861006],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":8,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.648447,30.085559],[106.629101,30.079448],[106.591587,30.047071],[106.598265,30.039582],[106.596546,30.030432],[106.582209,30.022214],[106.572192,30.012698],[106.568706,29.991154],[106.55697,29.961259],[106.544941,29.935246],[106.526773,29.945822],[106.519506,29.927546],[106.505659,29.931234],[106.501338,29.922115],[106.488916,29.908415],[106.479046,29.908172],[106.477131,29.891875],[106.466967,29.882996],[106.465347,29.870832],[106.452581,29.869128],[106.462892,29.88478],[106.458522,29.887456],[106.452777,29.878212],[106.44281,29.883564],[106.46191,29.92402],[106.455281,29.926776],[106.443841,29.906834],[106.433235,29.901889],[106.423414,29.904564],[106.429601,29.892362],[106.423611,29.884334],[106.409077,29.889443],[106.396507,29.898118],[106.390958,29.906672],[106.390909,29.921304],[106.383053,29.92787],[106.339598,29.901767],[106.314409,29.884861],[106.325653,29.872737],[106.329385,29.859639],[106.336407,29.860247],[106.330956,29.848323],[106.342446,29.842523],[106.337585,29.834532],[106.345883,29.836114],[106.34225,29.816804],[106.351284,29.812422],[106.372889,29.814207],[106.344214,29.779307],[106.334197,29.771311],[106.324279,29.774843],[106.31598,29.764898],[106.305669,29.736641],[106.317797,29.738752],[106.327126,29.728519],[106.32968,29.732702],[106.365327,29.735504],[106.366604,29.746994],[106.380647,29.744233],[106.382758,29.747847],[106.39361,29.740457],[106.40947,29.738833],[106.417768,29.750202],[106.431418,29.749146],[106.442908,29.743624],[106.442073,29.730387],[106.433431,29.711706],[106.426508,29.680021],[106.429061,29.662956],[106.424396,29.65747],[106.448702,29.652187],[106.448603,29.661453],[106.457589,29.668889],[106.457147,29.687415],[106.469373,29.697165],[106.487197,29.699399],[106.496134,29.68969],[106.506887,29.685425],[106.514743,29.694281],[106.512337,29.703461],[106.518377,29.71199],[106.536741,29.723321],[106.536741,29.730306],[106.524956,29.742609],[106.520144,29.764614],[106.515676,29.769688],[106.530996,29.775979],[106.532469,29.767333],[106.54116,29.763112],[106.530799,29.758687],[106.532076,29.749471],[106.5417,29.754871],[106.556529,29.754789],[106.57175,29.763355],[106.589181,29.754992],[106.588543,29.76161],[106.604746,29.769322],[106.592864,29.784705],[106.609018,29.799437],[106.601653,29.799843],[106.593011,29.808932],[106.5936,29.79964],[106.584909,29.799599],[106.587217,29.812665],[106.598805,29.816763],[106.598461,29.825607],[106.612848,29.832626],[106.622865,29.831327],[106.620262,29.840252],[106.634109,29.839481],[106.646581,29.849378],[106.64987,29.863857],[106.658512,29.869534],[106.668775,29.900348],[106.67506,29.897713],[106.678889,29.908212],[106.669118,29.912712],[106.679822,29.923615],[106.678497,29.92864],[106.687384,29.935489],[106.674274,29.932206],[106.674225,29.961948],[106.679724,29.97961],[106.677465,29.98601],[106.676385,30.015087],[106.678889,30.026141],[106.670739,30.034805],[106.678153,30.058121],[106.677024,30.063989],[106.648447,30.085559]]]]}},{"type":"Feature","properties":{"adcode":500110,"name":"綦江区","center":[106.651417,29.028091],"centroid":[106.722706,28.87864],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":9,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.057462,28.894785],[107.04337,28.919879],[107.053288,28.919183],[107.057315,28.932771],[107.051275,28.942143],[107.043124,28.945785],[107.02913,28.941284],[107.015971,28.952087],[107.013614,28.969599],[107.022256,28.974058],[107.02967,28.985717],[107.024564,28.995983],[107.01715,28.998724],[107.003892,29.016023],[106.990045,29.021094],[106.979832,29.031766],[106.981158,29.039861],[106.988671,29.043459],[106.977034,29.056009],[106.975266,29.050532],[106.96358,29.058217],[106.954545,29.059239],[106.950421,29.071787],[106.938685,29.041906],[106.926361,29.047793],[106.920567,29.045749],[106.915362,29.054538],[106.906131,29.051758],[106.910256,29.068844],[106.921844,29.100475],[106.911483,29.114775],[106.905542,29.11596],[106.891695,29.131769],[106.885263,29.141817],[106.868028,29.151456],[106.858012,29.149046],[106.849468,29.1575],[106.821235,29.149577],[106.812936,29.165014],[106.809941,29.178161],[106.800121,29.179958],[106.793689,29.169709],[106.788386,29.177181],[106.776405,29.163666],[106.768843,29.161298],[106.767665,29.169587],[106.757894,29.170159],[106.748908,29.176691],[106.729464,29.162604],[106.712377,29.179182],[106.699561,29.177181],[106.686746,29.188042],[106.680313,29.173548],[106.676631,29.176855],[106.668234,29.168158],[106.665092,29.158439],[106.65316,29.16142],[106.656205,29.175385],[106.642603,29.173874],[106.623896,29.160154],[106.604599,29.126908],[106.588395,29.12654],[106.585007,29.131442],[106.574451,29.128215],[106.574205,29.116777],[106.581177,29.110076],[106.578084,29.09312],[106.584418,29.079634],[106.583436,29.071256],[106.589672,29.056663],[106.585695,29.053148],[106.589525,29.030008],[106.59414,29.019131],[106.608773,29.014756],[106.592471,29.005963],[106.585204,29.008294],[106.57833,29.022443],[106.562666,29.016555],[106.557118,29.006004],[106.549703,29.00535],[106.551815,29.024692],[106.544646,29.036386],[106.526331,29.036141],[106.524956,29.044195],[106.514547,29.059852],[106.504825,29.063285],[106.498,29.071624],[106.501044,29.0771],[106.49034,29.083476],[106.484497,29.065738],[106.489849,29.042969],[106.478113,29.024774],[106.475413,29.012179],[106.454447,29.0177],[106.444135,29.038103],[106.463874,29.042069],[106.44281,29.050573],[106.442515,29.039739],[106.427834,29.047588],[106.419732,29.047834],[106.404314,29.035364],[106.398765,29.027023],[106.385803,29.029476],[106.391842,29.022443],[106.397587,28.993693],[106.405738,28.979622],[106.399846,28.962521],[106.408733,28.95401],[106.402792,28.940956],[106.410992,28.922294],[106.411826,28.891182],[106.415264,28.876236],[106.43623,28.870217],[106.446443,28.863337],[106.455723,28.836427],[106.461861,28.831019],[106.47448,28.833027],[106.476199,28.826759],[106.490585,28.806518],[106.508753,28.795864],[106.521126,28.794266],[106.523041,28.78111],[106.533795,28.778733],[106.53404,28.770904],[106.547985,28.769838],[106.561831,28.756064],[106.563894,28.746184],[106.559229,28.731546],[106.56026,28.72072],[106.576857,28.702387],[106.582356,28.702223],[106.587315,28.691517],[106.598068,28.691886],[106.606072,28.685035],[106.619182,28.689178],[106.614272,28.680276],[106.61766,28.667311],[106.626891,28.659269],[106.635238,28.658448],[106.643684,28.664316],[106.651393,28.64942],[106.641179,28.644167],[106.620213,28.645727],[106.618887,28.637272],[106.62861,28.63444],[106.636809,28.623235],[106.636466,28.613219],[106.629641,28.604762],[106.614665,28.609442],[106.607054,28.594292],[106.616825,28.562795],[106.615254,28.549651],[106.600622,28.541353],[106.584615,28.523276],[106.568657,28.523646],[106.560309,28.513374],[106.56792,28.505278],[106.562814,28.497388],[106.568018,28.484031],[106.589181,28.488387],[106.591489,28.499073],[106.584958,28.50684],[106.593404,28.510169],[106.610147,28.497922],[106.632734,28.503553],[106.631114,28.490237],[106.649772,28.47955],[106.661066,28.491881],[106.678349,28.481359],[106.688268,28.484647],[106.696713,28.4784],[106.693276,28.45653],[106.708547,28.450486],[106.716207,28.456365],[106.725241,28.454433],[106.732901,28.46356],[106.746649,28.466643],[106.744833,28.489867],[106.726027,28.518551],[106.723965,28.529891],[106.728187,28.54201],[106.73732,28.553307],[106.754358,28.558318],[106.765161,28.558153],[106.779891,28.56378],[106.780922,28.574869],[106.766634,28.580166],[106.758581,28.588133],[106.759023,28.611084],[106.773901,28.611946],[106.780333,28.625],[106.792559,28.616256],[106.793443,28.606486],[106.800514,28.602134],[106.807732,28.589447],[106.827078,28.598562],[106.833264,28.613219],[106.829287,28.622742],[106.856146,28.622496],[106.866359,28.624507],[106.871515,28.658817],[106.883201,28.69246],[106.862136,28.690983],[106.854722,28.697095],[106.853936,28.706324],[106.862529,28.707555],[106.852905,28.724452],[106.828354,28.737696],[106.824033,28.756146],[106.833363,28.768772],[106.838469,28.765985],[106.845393,28.781028],[106.862333,28.780577],[106.864591,28.77447],[106.874215,28.779716],[106.886392,28.794716],[106.897882,28.80115],[106.905345,28.79611],[106.923071,28.810042],[106.938391,28.792381],[106.94227,28.782135],[106.950224,28.777626],[106.951746,28.766969],[106.967803,28.774101],[106.987885,28.774675],[106.988671,28.790331],[106.981355,28.804347],[106.980814,28.812951],[106.98926,28.829585],[106.983368,28.851173],[106.997853,28.853507],[107.005169,28.859159],[107.019114,28.860675],[107.016118,28.882501],[107.036594,28.88115],[107.04062,28.863869],[107.058689,28.868947],[107.045579,28.874926],[107.052552,28.8911],[107.057462,28.894785]]]]}},{"type":"Feature","properties":{"adcode":500111,"name":"大足区","center":[105.715319,29.700498],"centroid":[105.742721,29.65],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":10,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.482777,29.679127],[105.490683,29.675186],[105.487688,29.663159],[105.496673,29.648652],[105.509243,29.637962],[105.50561,29.609344],[105.517738,29.586493],[105.536642,29.59121],[105.542681,29.586412],[105.542534,29.57413],[105.549703,29.572096],[105.561045,29.588892],[105.580047,29.591617],[105.590899,29.590397],[105.594483,29.575553],[105.602241,29.569941],[105.599983,29.553019],[105.592175,29.549928],[105.59522,29.539432],[105.590015,29.524011],[105.583239,29.515588],[105.593059,29.517744],[105.595711,29.504152],[105.607642,29.508262],[105.619967,29.504803],[105.620556,29.494017],[105.631506,29.485917],[105.629738,29.478386],[105.637152,29.473623],[105.646236,29.486121],[105.639509,29.489052],[105.641179,29.505861],[105.648397,29.494139],[105.662636,29.499431],[105.65311,29.485022],[105.658119,29.481317],[105.657431,29.468168],[105.662194,29.460025],[105.687236,29.446506],[105.714929,29.464259],[105.725486,29.454121],[105.724013,29.449967],[105.735061,29.445162],[105.737663,29.435592],[105.727646,29.422844],[105.73403,29.417386],[105.722835,29.397872],[105.741002,29.397628],[105.728678,29.384875],[105.735159,29.38459],[105.747582,29.372487],[105.767762,29.379578],[105.773507,29.394857],[105.770561,29.408302],[105.802674,29.437139],[105.817895,29.490395],[105.825899,29.51396],[105.834933,29.527917],[105.855016,29.540042],[105.868617,29.537316],[105.876817,29.541791],[105.873969,29.552572],[105.890467,29.570429],[105.924347,29.595805],[105.938243,29.613166],[105.946099,29.626988],[105.953513,29.630199],[105.969815,29.646294],[105.982532,29.671936],[105.997361,29.6645],[106.005659,29.682581],[106.031732,29.722184],[106.036838,29.726692],[106.025987,29.734854],[106.028344,29.749552],[106.014448,29.752841],[106.010913,29.747279],[106.001289,29.748375],[105.997508,29.756819],[105.998588,29.768916],[105.991223,29.781174],[105.976542,29.784746],[105.970601,29.779876],[105.957638,29.781662],[105.944233,29.775979],[105.922334,29.788236],[105.904706,29.785598],[105.906523,29.795582],[105.893806,29.802967],[105.888208,29.790347],[105.893904,29.785882],[105.888012,29.77468],[105.878584,29.769525],[105.868911,29.756982],[105.83076,29.757997],[105.822461,29.762827],[105.820939,29.773381],[105.806945,29.771636],[105.808418,29.783569],[105.789269,29.794121],[105.778368,29.811367],[105.77719,29.801831],[105.763883,29.793512],[105.746354,29.801466],[105.721411,29.78779],[105.713898,29.789129],[105.714684,29.79684],[105.72308,29.809825],[105.735846,29.819319],[105.725339,29.832747],[105.738252,29.845646],[105.738105,29.856516],[105.733146,29.860693],[105.719397,29.856557],[105.720625,29.849662],[105.708939,29.840576],[105.695436,29.843497],[105.690428,29.852298],[105.677759,29.854286],[105.661801,29.84082],[105.656204,29.844389],[105.641473,29.836844],[105.617659,29.845728],[105.605875,29.827879],[105.604107,29.816844],[105.588444,29.823133],[105.580293,29.790753],[105.587511,29.784868],[105.572289,29.768713],[105.576218,29.757388],[105.574941,29.744477],[105.564335,29.737818],[105.56571,29.724012],[105.557952,29.726651],[105.549212,29.737615],[105.542829,29.726529],[105.550341,29.722022],[105.52962,29.707604],[105.538851,29.69489],[105.527951,29.692412],[105.520095,29.703583],[105.49903,29.709553],[105.49029,29.720275],[105.482188,29.718082],[105.473448,29.707523],[105.474234,29.697124],[105.481353,29.692737],[105.482777,29.679127]]]]}},{"type":"Feature","properties":{"adcode":500112,"name":"渝北区","center":[106.512851,29.601451],"centroid":[106.746928,29.810209],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":11,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.893659,29.657064],[106.906082,29.678152],[106.913742,29.684043],[106.930534,29.689],[106.942564,29.705857],[106.945609,29.724743],[106.972222,29.763924],[106.96466,29.774518],[106.958522,29.769485],[106.952532,29.784259],[106.945167,29.784178],[106.952237,29.792214],[106.939913,29.804347],[106.944234,29.812949],[106.942859,29.839765],[106.936574,29.842483],[106.937114,29.851893],[106.944528,29.855908],[106.945461,29.875454],[106.953416,29.88109],[106.962058,29.901929],[106.974529,29.916603],[106.98489,29.934314],[106.970012,29.938326],[106.965691,29.951981],[106.946934,29.953683],[106.942515,29.964824],[106.935248,29.964054],[106.931467,29.975397],[106.909077,29.971873],[106.896654,29.978597],[106.889928,29.987954],[106.88708,29.981392],[106.877947,29.98601],[106.868323,29.978962],[106.864444,29.984916],[106.866506,30.012293],[106.856195,30.013872],[106.861449,30.028165],[106.842054,30.049135],[106.836996,30.049742],[106.830171,30.033955],[106.812495,30.028975],[106.799974,30.030554],[106.797764,30.023145],[106.785587,30.017233],[106.768598,30.017274],[106.764228,30.024602],[106.759416,30.018893],[106.742132,30.025938],[106.73241,30.026829],[106.726076,30.034319],[106.72583,30.057068],[106.698825,30.076535],[106.698726,30.098708],[106.703195,30.118126],[106.689643,30.117802],[106.688857,30.124031],[106.673881,30.12213],[106.668382,30.101742],[106.656352,30.086165],[106.648447,30.085559],[106.677024,30.063989],[106.678153,30.058121],[106.670739,30.034805],[106.678889,30.026141],[106.676385,30.015087],[106.677465,29.98601],[106.679724,29.97961],[106.674225,29.961948],[106.674274,29.932206],[106.687384,29.935489],[106.678497,29.92864],[106.679822,29.923615],[106.669118,29.912712],[106.678889,29.908212],[106.67506,29.897713],[106.668775,29.900348],[106.658512,29.869534],[106.64987,29.863857],[106.646581,29.849378],[106.634109,29.839481],[106.620262,29.840252],[106.622865,29.831327],[106.612848,29.832626],[106.598461,29.825607],[106.598805,29.816763],[106.587217,29.812665],[106.584909,29.799599],[106.5936,29.79964],[106.593011,29.808932],[106.601653,29.799843],[106.609018,29.799437],[106.592864,29.784705],[106.604746,29.769322],[106.588543,29.76161],[106.589181,29.754992],[106.57175,29.763355],[106.556529,29.754789],[106.5417,29.754871],[106.532076,29.749471],[106.530799,29.758687],[106.54116,29.763112],[106.532469,29.767333],[106.530996,29.775979],[106.515676,29.769688],[106.520144,29.764614],[106.524956,29.742609],[106.536741,29.730306],[106.536741,29.723321],[106.518377,29.71199],[106.512337,29.703461],[106.514743,29.694281],[106.506887,29.685425],[106.496134,29.68969],[106.487197,29.699399],[106.469373,29.697165],[106.457147,29.687415],[106.457589,29.668889],[106.469766,29.657714],[106.468293,29.645969],[106.45209,29.632109],[106.453121,29.620321],[106.462843,29.616296],[106.46191,29.608247],[106.478506,29.609751],[106.482434,29.613329],[106.492009,29.599424],[106.485724,29.596984],[106.486363,29.585639],[106.497754,29.573113],[106.506543,29.573032],[106.530308,29.587469],[106.549851,29.581531],[106.562175,29.589543],[106.562617,29.603734],[106.57337,29.620362],[106.579213,29.619061],[106.582798,29.633695],[106.595613,29.638572],[106.602929,29.634386],[106.61162,29.639873],[106.621834,29.635199],[106.648054,29.63719],[106.687237,29.623654],[106.70948,29.631337],[106.712671,29.646945],[106.723915,29.640604],[106.729906,29.646294],[106.73462,29.667263],[106.741297,29.662184],[106.744735,29.670433],[106.749988,29.663606],[106.747926,29.655154],[106.754162,29.651578],[106.782543,29.662428],[106.78323,29.669986],[106.793001,29.678599],[106.806701,29.671123],[106.809401,29.674699],[106.822118,29.67153],[106.819811,29.663647],[106.825703,29.659502],[106.833706,29.6632],[106.850548,29.659908],[106.866359,29.646985],[106.87775,29.659339],[106.893659,29.657064]]]]}},{"type":"Feature","properties":{"adcode":500113,"name":"巴南区","center":[106.519423,29.381919],"centroid":[106.751731,29.371851],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":12,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.552011,29.48726],[106.542044,29.472972],[106.521765,29.479974],[106.509538,29.481765],[106.502075,29.47745],[106.498343,29.446913],[106.526528,29.411275],[106.534924,29.392005],[106.528197,29.388338],[106.509735,29.397506],[106.49196,29.39775],[106.469619,29.389153],[106.455036,29.380596],[106.441926,29.358916],[106.435542,29.352965],[106.440404,29.350153],[106.454496,29.35427],[106.460241,29.360872],[106.478163,29.36022],[106.474431,29.35696],[106.473645,29.335722],[106.486363,29.294336],[106.508655,29.278674],[106.505021,29.268966],[106.511208,29.268069],[106.514056,29.254688],[106.519653,29.251791],[106.515774,29.232042],[106.521225,29.224614],[106.535906,29.221962],[106.539343,29.213717],[106.547788,29.212534],[106.541896,29.192369],[106.545972,29.183265],[106.562372,29.161379],[106.549998,29.153498],[106.550047,29.145493],[106.560997,29.133239],[106.574451,29.128215],[106.585007,29.131442],[106.588395,29.12654],[106.604599,29.126908],[106.623896,29.160154],[106.642603,29.173874],[106.656205,29.175385],[106.65316,29.16142],[106.665092,29.158439],[106.668234,29.168158],[106.676631,29.176855],[106.680313,29.173548],[106.686746,29.188042],[106.699561,29.177181],[106.712377,29.179182],[106.729464,29.162604],[106.748908,29.176691],[106.757894,29.170159],[106.767665,29.169587],[106.768843,29.161298],[106.776405,29.163666],[106.788386,29.177181],[106.793689,29.169709],[106.800121,29.179958],[106.809941,29.178161],[106.812936,29.165014],[106.821235,29.149577],[106.849468,29.1575],[106.858012,29.149046],[106.868028,29.151456],[106.885263,29.141817],[106.891695,29.131769],[106.891744,29.14149],[106.899355,29.155621],[106.909175,29.160562],[106.907751,29.179672],[106.896409,29.180039],[106.895574,29.190491],[106.911385,29.197472],[106.919045,29.180366],[106.945069,29.183142],[106.955527,29.190695],[106.95263,29.197104],[106.961812,29.202738],[106.968392,29.215228],[106.95754,29.228981],[106.954692,29.252199],[106.936132,29.256931],[106.933039,29.279653],[106.92312,29.280673],[106.920616,29.302411],[106.922433,29.310322],[106.919978,29.329893],[106.922531,29.403046],[106.932253,29.399746],[106.936574,29.439339],[106.933039,29.448542],[106.935297,29.464463],[106.945952,29.497029],[106.947278,29.510826],[106.953612,29.535811],[106.953268,29.551311],[106.958768,29.582508],[106.966624,29.599546],[106.975315,29.634142],[106.993581,29.679331],[107.002223,29.714468],[106.998638,29.732539],[106.990144,29.738062],[106.988818,29.748781],[106.993483,29.75824],[106.988131,29.769322],[106.972222,29.763924],[106.945609,29.724743],[106.942564,29.705857],[106.930534,29.689],[106.913742,29.684043],[106.906082,29.678152],[106.893659,29.657064],[106.873086,29.615809],[106.861547,29.602067],[106.85045,29.575431],[106.843527,29.57657],[106.821087,29.591576],[106.801152,29.589055],[106.787993,29.576326],[106.7712,29.549155],[106.764179,29.530928],[106.738548,29.486731],[106.732115,29.483923],[106.705257,29.482254],[106.703686,29.487993],[106.693276,29.48897],[106.69308,29.483353],[106.683358,29.476473],[106.688808,29.468453],[106.673341,29.458437],[106.65866,29.46772],[106.655321,29.462346],[106.642849,29.469959],[106.627971,29.465847],[106.606808,29.474315],[106.59581,29.463974],[106.586677,29.473094],[106.578772,29.469878],[106.56954,29.485144],[106.552011,29.48726]]]]}},{"type":"Feature","properties":{"adcode":500114,"name":"黔江区","center":[108.782577,29.527548],"centroid":[108.708597,29.435532],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":13,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.55869,29.13953],[108.570769,29.124416],[108.598266,29.105705],[108.587169,29.095081],[108.599396,29.086908],[108.60789,29.109014],[108.615206,29.109709],[108.614568,29.095408],[108.625665,29.08699],[108.622179,29.073422],[108.628906,29.072891],[108.646533,29.081841],[108.661313,29.071624],[108.667205,29.078776],[108.662835,29.090382],[108.669856,29.095939],[108.66416,29.103744],[108.668678,29.108156],[108.681984,29.105623],[108.686698,29.109341],[108.698777,29.101619],[108.700397,29.094427],[108.726912,29.080492],[108.747584,29.092384],[108.749008,29.10881],[108.774295,29.110485],[108.775768,29.124008],[108.784852,29.123272],[108.803756,29.129195],[108.812054,29.122047],[108.832087,29.117267],[108.833266,29.109995],[108.847702,29.105214],[108.855656,29.122659],[108.854625,29.133484],[108.882416,29.1791],[108.896607,29.209024],[108.915265,29.215513],[108.925135,29.222615],[108.925871,29.23347],[108.937607,29.244283],[108.954252,29.272066],[108.93903,29.274065],[108.919783,29.283732],[108.915462,29.293561],[108.903432,29.296416],[108.908784,29.312972],[108.919734,29.326305],[108.916591,29.334622],[108.931027,29.369634],[108.93412,29.399461],[108.943646,29.410746],[108.932009,29.431682],[108.921256,29.436895],[108.90957,29.436814],[108.89808,29.441945],[108.886541,29.440601],[108.873971,29.449397],[108.873726,29.462753],[108.866557,29.471058],[108.869846,29.485917],[108.885952,29.498047],[108.888652,29.507041],[108.886983,29.530562],[108.878439,29.53935],[108.886934,29.553101],[108.902106,29.563026],[108.913056,29.574455],[108.899995,29.584866],[108.909177,29.593284],[108.901271,29.604791],[108.897589,29.596496],[108.885903,29.588445],[108.868324,29.598001],[108.885854,29.621134],[108.887916,29.628573],[108.879618,29.639222],[108.869699,29.643002],[108.855754,29.636377],[108.84451,29.658364],[108.83302,29.651293],[108.827325,29.654382],[108.835377,29.668442],[108.828061,29.671286],[108.816473,29.644018],[108.819812,29.632435],[108.813625,29.63154],[108.804394,29.640564],[108.785637,29.633857],[108.780089,29.645522],[108.792266,29.647351],[108.79752,29.660071],[108.794132,29.671205],[108.784655,29.677177],[108.786276,29.691518],[108.760645,29.693549],[108.752592,29.689365],[108.758141,29.678721],[108.765113,29.682256],[108.775964,29.67539],[108.773018,29.661534],[108.783281,29.653772],[108.774541,29.65174],[108.765899,29.661046],[108.763002,29.653366],[108.752641,29.649017],[108.743017,29.655926],[108.740611,29.665719],[108.73359,29.671489],[108.710905,29.679168],[108.718221,29.691924],[108.710365,29.699196],[108.691166,29.68969],[108.684783,29.693509],[108.69313,29.704476],[108.681051,29.721413],[108.686649,29.740051],[108.677565,29.748537],[108.67732,29.761447],[108.681788,29.770459],[108.678449,29.777887],[108.680658,29.800167],[108.670986,29.811813],[108.656942,29.816682],[108.670347,29.819076],[108.666124,29.842726],[108.657728,29.84808],[108.662491,29.852582],[108.633226,29.855908],[108.632686,29.86487],[108.622915,29.867304],[108.60843,29.862964],[108.601409,29.8656],[108.587955,29.85388],[108.588151,29.84808],[108.577349,29.844673],[108.579902,29.831206],[108.56581,29.820861],[108.557463,29.819035],[108.534434,29.787506],[108.522503,29.763761],[108.540081,29.756779],[108.548526,29.749512],[108.547004,29.742569],[108.520244,29.730347],[108.51666,29.735666],[108.504188,29.729413],[108.515285,29.71861],[108.506446,29.708172],[108.526676,29.696759],[108.52373,29.683109],[108.503549,29.67669],[108.504139,29.666288],[108.489997,29.642515],[108.487199,29.624102],[108.499965,29.622069],[108.507036,29.611093],[108.512633,29.614467],[108.516709,29.602148],[108.534974,29.588851],[108.534532,29.572177],[108.548379,29.557575],[108.547643,29.547406],[108.536251,29.540001],[108.515334,29.543948],[108.506054,29.536868],[108.494711,29.515099],[108.501242,29.49996],[108.50954,29.50285],[108.539688,29.491697],[108.561686,29.491657],[108.585549,29.477328],[108.581228,29.464911],[108.59257,29.442963],[108.576367,29.41706],[108.555843,29.412701],[108.552995,29.390539],[108.547201,29.381697],[108.550196,29.371754],[108.561538,29.352598],[108.549705,29.328303],[108.549459,29.315378],[108.560409,29.306081],[108.573568,29.302411],[108.584272,29.285812],[108.583192,29.278063],[108.571948,29.265703],[108.575778,29.252362],[108.568314,29.236245],[108.569247,29.224941],[108.555597,29.218738],[108.548919,29.205064],[108.556775,29.184857],[108.574403,29.164115],[108.570671,29.152313],[108.55869,29.13953]]]]}},{"type":"Feature","properties":{"adcode":500115,"name":"长寿区","center":[107.074854,29.833671],"centroid":[107.140018,29.954649],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":14,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.972222,29.763924],[106.988131,29.769322],[106.993483,29.75824],[106.988818,29.748781],[106.990144,29.738062],[106.998638,29.732539],[107.002223,29.714468],[107.009195,29.712762],[107.027166,29.717189],[107.041406,29.734407],[107.070032,29.751217],[107.070277,29.758524],[107.086726,29.761813],[107.102635,29.754546],[107.111572,29.76299],[107.153111,29.784827],[107.186992,29.79473],[107.198039,29.809622],[107.212279,29.816276],[107.206583,29.824958],[107.210806,29.840292],[107.229317,29.84374],[107.240512,29.841347],[107.265161,29.847472],[107.270857,29.851447],[107.272379,29.837291],[107.29801,29.839603],[107.299827,29.847472],[107.313084,29.845809],[107.323445,29.852947],[107.337193,29.873062],[107.335818,29.884415],[107.342005,29.892929],[107.360762,29.897227],[107.369354,29.906794],[107.379666,29.899132],[107.377505,29.910523],[107.387129,29.921993],[107.383545,29.926614],[107.415755,29.970577],[107.421156,29.967944],[107.448064,29.999092],[107.453171,30.001441],[107.451501,30.008203],[107.46029,30.01533],[107.436329,30.033833],[107.374068,29.973372],[107.362824,29.979853],[107.347995,29.980501],[107.335573,29.97398],[107.325556,29.973007],[107.307094,29.992328],[107.29418,29.997917],[107.294818,30.002696],[107.31112,30.008203],[107.304688,30.0161],[107.31166,30.02023],[107.307879,30.035493],[107.294867,30.044359],[107.27724,30.043144],[107.279204,30.04873],[107.266045,30.055045],[107.26521,30.062006],[107.247534,30.07528],[107.259072,30.075887],[107.269089,30.081148],[107.271741,30.09446],[107.28328,30.091021],[107.29089,30.097939],[107.286766,30.107892],[107.295555,30.122454],[107.291381,30.136327],[107.274098,30.135841],[107.269482,30.145992],[107.288484,30.171303],[107.277044,30.181086],[107.256568,30.205903],[107.228335,30.223805],[107.221068,30.213743],[107.187335,30.181248],[107.16848,30.160306],[107.136466,30.134426],[107.13131,30.121524],[107.106563,30.113838],[107.111032,30.104251],[107.103077,30.090131],[107.093797,30.095391],[107.080147,30.094177],[107.073911,30.080986],[107.084517,30.063868],[107.075286,30.051118],[107.058395,30.043063],[107.0554,30.040553],[107.054221,30.040837],[107.053779,30.043751],[107.050588,30.053426],[107.042486,30.055085],[107.037821,30.047273],[107.042682,30.035007],[107.020636,30.036829],[107.014351,30.051604],[107.005316,30.052495],[106.998295,30.059456],[106.985332,30.084061],[106.966477,30.079894],[106.954889,30.066094],[106.956755,30.06059],[106.948604,30.040149],[106.941877,30.042739],[106.914871,30.033955],[106.913594,30.025574],[106.88433,30.0344],[106.861449,30.028165],[106.856195,30.013872],[106.866506,30.012293],[106.864444,29.984916],[106.868323,29.978962],[106.877947,29.98601],[106.88708,29.981392],[106.889928,29.987954],[106.896654,29.978597],[106.909077,29.971873],[106.931467,29.975397],[106.935248,29.964054],[106.942515,29.964824],[106.946934,29.953683],[106.965691,29.951981],[106.970012,29.938326],[106.98489,29.934314],[106.974529,29.916603],[106.962058,29.901929],[106.953416,29.88109],[106.945461,29.875454],[106.944528,29.855908],[106.937114,29.851893],[106.936574,29.842483],[106.942859,29.839765],[106.944234,29.812949],[106.939913,29.804347],[106.952237,29.792214],[106.945167,29.784178],[106.952532,29.784259],[106.958522,29.769485],[106.96466,29.774518],[106.972222,29.763924]]],[[[107.058395,30.043063],[107.053779,30.043751],[107.054221,30.040837],[107.0554,30.040553],[107.058395,30.043063]]]]}},{"type":"Feature","properties":{"adcode":500116,"name":"江津区","center":[106.253156,29.283387],"centroid":[106.263211,29.029608],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":15,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.830514,28.944271],[105.844262,28.93093],[105.852708,28.927369],[105.875049,28.933958],[105.888061,28.926837],[105.889338,28.909523],[105.909567,28.900189],[105.915607,28.907476],[105.909764,28.920452],[105.920321,28.930643],[105.934511,28.933876],[105.95808,28.952496],[105.961566,28.960107],[105.971877,28.965957],[105.9761,28.959166],[105.988424,28.964198],[105.985969,28.970131],[105.974627,28.973567],[105.984103,28.979008],[106.001535,28.973608],[106.017443,28.952905],[106.02417,28.949714],[106.036102,28.955729],[106.043811,28.954133],[106.047346,28.943575],[106.04003,28.940465],[106.042338,28.929538],[106.03949,28.918651],[106.042534,28.910587],[106.051913,28.906862],[106.062813,28.918201],[106.070522,28.919797],[106.085645,28.9103],[106.087708,28.904201],[106.10126,28.898961],[106.134354,28.90506],[106.149183,28.901949],[106.162538,28.908908],[106.173684,28.92082],[106.191606,28.908663],[106.206926,28.904528],[106.215371,28.891714],[106.225585,28.890568],[106.228089,28.881764],[106.242181,28.86821],[106.253229,28.865753],[106.255586,28.857398],[106.265062,28.846708],[106.260201,28.833641],[106.246698,28.826472],[106.254358,28.819179],[106.24439,28.814631],[106.252394,28.785823],[106.267665,28.779348],[106.273213,28.739788],[106.287698,28.732366],[106.303509,28.709113],[106.307191,28.687907],[106.30616,28.675763],[106.321087,28.665465],[106.311168,28.660048],[106.304049,28.649872],[106.310776,28.639981],[106.329778,28.63403],[106.324524,28.616749],[106.332184,28.603366],[106.340187,28.59889],[106.34662,28.58378],[106.345196,28.573021],[106.339304,28.566368],[106.344803,28.562014],[106.332037,28.553224],[106.338371,28.546858],[106.34225,28.532603],[106.349811,28.540121],[106.363903,28.526892],[106.374313,28.525618],[106.378487,28.533835],[106.373576,28.537656],[106.389829,28.553266],[106.385704,28.560823],[106.399109,28.571173],[106.412956,28.563123],[106.423218,28.562671],[106.43402,28.556675],[106.439471,28.559427],[106.454054,28.549774],[106.453072,28.544721],[106.466918,28.541846],[106.471632,28.532603],[106.483858,28.530589],[106.493384,28.538313],[106.501191,28.534533],[106.504726,28.54468],[106.488867,28.557496],[106.478899,28.574992],[106.466967,28.586408],[106.473842,28.598973],[106.498785,28.585874],[106.508802,28.564889],[106.524711,28.577826],[106.513319,28.577046],[106.494464,28.599999],[106.494955,28.615148],[106.501093,28.617898],[106.501338,28.628735],[106.506641,28.635343],[106.502762,28.661321],[106.520144,28.6621],[106.529719,28.673137],[106.515774,28.688194],[106.510324,28.715183],[106.499325,28.717398],[106.493826,28.73946],[106.462057,28.76123],[106.454201,28.776068],[106.451648,28.79279],[106.462794,28.797216],[106.46029,28.804961],[106.451402,28.808116],[106.453514,28.816967],[106.46844,28.826472],[106.461861,28.831019],[106.455723,28.836427],[106.446443,28.863337],[106.43623,28.870217],[106.415264,28.876236],[106.411826,28.891182],[106.410992,28.922294],[106.402792,28.940956],[106.408733,28.95401],[106.399846,28.962521],[106.405738,28.979622],[106.397587,28.993693],[106.391842,29.022443],[106.385803,29.029476],[106.398765,29.027023],[106.404314,29.035364],[106.419732,29.047834],[106.427834,29.047588],[106.442515,29.039739],[106.44281,29.050573],[106.463874,29.042069],[106.444135,29.038103],[106.454447,29.0177],[106.475413,29.012179],[106.478113,29.024774],[106.489849,29.042969],[106.484497,29.065738],[106.49034,29.083476],[106.501044,29.0771],[106.498,29.071624],[106.504825,29.063285],[106.514547,29.059852],[106.524956,29.044195],[106.526331,29.036141],[106.544646,29.036386],[106.551815,29.024692],[106.549703,29.00535],[106.557118,29.006004],[106.562666,29.016555],[106.57833,29.022443],[106.585204,29.008294],[106.592471,29.005963],[106.608773,29.014756],[106.59414,29.019131],[106.589525,29.030008],[106.585695,29.053148],[106.589672,29.056663],[106.583436,29.071256],[106.584418,29.079634],[106.578084,29.09312],[106.581177,29.110076],[106.574205,29.116777],[106.574451,29.128215],[106.560997,29.133239],[106.550047,29.145493],[106.549998,29.153498],[106.562372,29.161379],[106.545972,29.183265],[106.541896,29.192369],[106.547788,29.212534],[106.539343,29.213717],[106.535906,29.221962],[106.521225,29.224614],[106.515774,29.232042],[106.519653,29.251791],[106.514056,29.254688],[106.511208,29.268069],[106.505021,29.268966],[106.508655,29.278674],[106.486363,29.294336],[106.473645,29.335722],[106.474431,29.35696],[106.478163,29.36022],[106.460241,29.360872],[106.454496,29.35427],[106.440404,29.350153],[106.435542,29.352965],[106.411876,29.342245],[106.400877,29.340777],[106.395525,29.339351],[106.385999,29.312401],[106.393217,29.294948],[106.384035,29.283039],[106.3559,29.27688],[106.339844,29.26456],[106.311905,29.254769],[106.298697,29.256483],[106.27994,29.286913],[106.289171,29.320679],[106.276945,29.322269],[106.274539,29.32871],[106.261232,29.335519],[106.267468,29.350234],[106.277829,29.352924],[106.275668,29.363236],[106.282248,29.368167],[106.284359,29.38516],[106.294425,29.384549],[106.295554,29.378763],[106.30891,29.379985],[106.314409,29.388827],[106.322314,29.38732],[106.331005,29.39555],[106.329041,29.413679],[106.317257,29.415227],[106.323002,29.420481],[106.320596,29.427976],[106.307339,29.426835],[106.30724,29.434248],[106.298549,29.440764],[106.285636,29.441986],[106.278565,29.449031],[106.262705,29.451596],[106.248613,29.429238],[106.245569,29.40989],[106.223621,29.353984],[106.206042,29.334826],[106.195731,29.327447],[106.17663,29.308446],[106.156106,29.301962],[106.152276,29.293684],[106.136416,29.294826],[106.120065,29.278878],[106.113289,29.284018],[106.110442,29.294907],[106.096104,29.291359],[106.084663,29.300331],[106.086382,29.30706],[106.072928,29.321005],[106.043418,29.32549],[106.038164,29.313339],[106.036789,29.284915],[106.031486,29.261868],[106.033156,29.253953],[106.016363,29.242529],[106.004677,29.215513],[105.996673,29.213595],[105.982287,29.193512],[105.96736,29.177671],[105.965347,29.15603],[105.954299,29.151251],[105.958276,29.147943],[105.942858,29.128338],[105.937899,29.127561],[105.93186,29.115102],[105.918848,29.109464],[105.917473,29.098881],[105.909518,29.093855],[105.913888,29.08086],[105.922285,29.078858],[105.919928,29.056132],[105.897145,29.049632],[105.885459,29.037204],[105.882905,29.029722],[105.864492,29.026001],[105.857323,29.012997],[105.858011,28.98678],[105.851677,28.976185],[105.826782,28.964403],[105.824769,28.953396],[105.830514,28.944271]]]]}},{"type":"Feature","properties":{"adcode":500117,"name":"合川区","center":[106.265554,29.990993],"centroid":[106.311538,30.112474],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":16,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.648447,30.085559],[106.656352,30.086165],[106.668382,30.101742],[106.673881,30.12213],[106.67501,30.147165],[106.677613,30.157395],[106.665779,30.158972],[106.662195,30.170171],[106.653995,30.169726],[106.649527,30.176922],[106.639265,30.180156],[106.646973,30.189494],[106.63185,30.186543],[106.633618,30.199679],[106.626989,30.19778],[106.624436,30.211318],[106.632734,30.216208],[106.619133,30.229664],[106.611473,30.228047],[106.609804,30.23532],[106.621686,30.236492],[106.633029,30.24643],[106.642653,30.249863],[106.634845,30.265697],[106.627578,30.265899],[106.623061,30.281609],[106.611669,30.292431],[106.590507,30.294248],[106.586382,30.302969],[106.571603,30.30624],[106.56026,30.315162],[106.547052,30.310358],[106.544842,30.296752],[106.521372,30.300305],[106.509391,30.289363],[106.499865,30.288918],[106.498,30.296025],[106.481845,30.298407],[106.476149,30.306966],[106.472123,30.300022],[106.458964,30.302283],[106.44826,30.299618],[106.4515,30.308137],[106.441042,30.308945],[106.436475,30.303575],[106.444774,30.295702],[106.441877,30.289484],[106.43569,30.295177],[106.428619,30.291543],[106.434708,30.277046],[106.41821,30.278783],[106.407997,30.276117],[106.422138,30.262466],[106.429405,30.261174],[106.427834,30.253782],[106.416786,30.253418],[106.410795,30.24336],[106.401319,30.242673],[106.397391,30.249662],[106.383102,30.254711],[106.390222,30.243683],[106.372545,30.248167],[106.359632,30.241218],[106.34932,30.245258],[106.343968,30.237219],[106.336799,30.237906],[106.335032,30.226391],[106.318681,30.229138],[106.309794,30.2373],[106.300563,30.238552],[106.305816,30.225704],[106.292706,30.220209],[106.296684,30.205135],[106.28431,30.201983],[106.278467,30.195718],[106.279793,30.207924],[106.26192,30.213784],[106.27174,30.204004],[106.264424,30.193536],[106.254358,30.198426],[106.245913,30.196527],[106.249742,30.189736],[106.241788,30.177731],[106.240315,30.18533],[106.232704,30.186139],[106.240315,30.200164],[106.232213,30.212531],[106.212524,30.203115],[106.204471,30.205701],[106.201819,30.213137],[106.192539,30.2154],[106.201083,30.228411],[106.180362,30.232855],[106.178251,30.248611],[106.170542,30.250591],[106.178447,30.256892],[106.179822,30.278661],[106.169069,30.3041],[106.156499,30.313668],[106.149428,30.309469],[106.137153,30.315686],[106.132685,30.323679],[106.124092,30.324769],[106.124828,30.317907],[106.134403,30.308622],[106.131801,30.301799],[106.122324,30.306805],[106.122864,30.313708],[106.114812,30.317341],[106.106072,30.310761],[106.098019,30.323558],[106.088346,30.323154],[106.091047,30.336837],[106.088591,30.345958],[106.079311,30.344344],[106.073517,30.334133],[106.070768,30.341196],[106.061046,30.342003],[106.033745,30.361817],[106.030897,30.374244],[106.01381,30.372347],[106.002222,30.376906],[105.992009,30.36916],[105.97826,30.373477],[105.989063,30.352697],[105.980372,30.342084],[105.981305,30.325051],[105.988277,30.320006],[105.975216,30.30632],[105.967507,30.308379],[105.974872,30.289322],[105.983367,30.289766],[105.98101,30.280156],[105.992107,30.277369],[105.998588,30.280681],[106.009489,30.275754],[106.013466,30.268282],[106.006248,30.260002],[105.995397,30.256892],[105.985724,30.248692],[105.981059,30.233583],[105.995102,30.231845],[106.004039,30.224775],[106.006052,30.213622],[106.019948,30.201417],[106.00669,30.187958],[105.991174,30.177246],[105.973743,30.188079],[105.974381,30.175224],[105.987639,30.164026],[105.976247,30.153109],[105.978801,30.143606],[105.998343,30.129289],[105.994513,30.120108],[105.999472,30.113757],[105.985184,30.101742],[105.989357,30.093125],[105.980814,30.083131],[105.98592,30.070262],[105.981207,30.061359],[105.981501,30.052414],[105.991076,30.033671],[105.998785,30.026627],[106.020439,30.028084],[106.047788,30.01363],[106.046511,30.007474],[106.027362,30.001522],[106.028,29.991883],[106.036495,29.997674],[106.049163,29.997026],[106.075727,30.001643],[106.098215,30.002331],[106.123061,29.998687],[106.118052,29.986982],[106.123306,29.980056],[106.119378,29.966607],[106.112946,29.960813],[106.1127,29.9519],[106.124141,29.936461],[106.134845,29.938771],[106.129198,29.929491],[106.130426,29.921993],[106.146924,29.92787],[106.160574,29.919359],[106.164944,29.921507],[106.165877,29.922399],[106.197744,29.931153],[106.200346,29.936826],[106.208645,29.929126],[106.219005,29.929451],[106.221018,29.920413],[106.239873,29.919116],[106.2384,29.912549],[106.242377,29.910239],[106.244341,29.908253],[106.244783,29.908374],[106.245127,29.908253],[106.245078,29.907685],[106.258139,29.89747],[106.266977,29.895686],[106.27012,29.887334],[106.281658,29.894673],[106.276699,29.873021],[106.265995,29.873913],[106.271593,29.86779],[106.263393,29.852258],[106.26791,29.84443],[106.314409,29.884861],[106.339598,29.901767],[106.383053,29.92787],[106.390909,29.921304],[106.390958,29.906672],[106.396507,29.898118],[106.409077,29.889443],[106.423611,29.884334],[106.429601,29.892362],[106.423414,29.904564],[106.433235,29.901889],[106.443841,29.906834],[106.455281,29.926776],[106.46191,29.92402],[106.44281,29.883564],[106.452777,29.878212],[106.458522,29.887456],[106.462892,29.88478],[106.452581,29.869128],[106.465347,29.870832],[106.466967,29.882996],[106.477131,29.891875],[106.479046,29.908172],[106.488916,29.908415],[106.501338,29.922115],[106.505659,29.931234],[106.519506,29.927546],[106.526773,29.945822],[106.544941,29.935246],[106.55697,29.961259],[106.568706,29.991154],[106.572192,30.012698],[106.582209,30.022214],[106.596546,30.030432],[106.598265,30.039582],[106.591587,30.047071],[106.629101,30.079448],[106.648447,30.085559]]],[[[106.244783,29.908374],[106.244341,29.908253],[106.245078,29.907685],[106.245127,29.908253],[106.244783,29.908374]]]]}},{"type":"Feature","properties":{"adcode":500118,"name":"永川区","center":[105.894714,29.348748],"centroid":[105.872859,29.290183],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":17,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.66514,29.276594],[105.678054,29.273494],[105.689838,29.29193],[105.70506,29.29923],[105.715911,29.29087],[105.69519,29.287362],[105.693963,29.267579],[105.70889,29.238],[105.705845,29.223757],[105.711983,29.218901],[105.70452,29.202411],[105.705796,29.174732],[105.719594,29.172159],[105.729463,29.152558],[105.728825,29.134424],[105.733195,29.130993],[105.742868,29.137569],[105.752099,29.129767],[105.735208,29.122414],[105.729267,29.107748],[105.729905,29.098759],[105.740855,29.088625],[105.745028,29.075465],[105.757795,29.069008],[105.741788,29.039494],[105.747631,29.037899],[105.754063,29.02412],[105.76624,29.013365],[105.76187,28.992998],[105.779105,28.979949],[105.788778,28.977617],[105.801348,28.958184],[105.80886,28.956547],[105.803852,28.947586],[105.796339,28.949632],[105.792706,28.943453],[105.797567,28.935923],[105.810579,28.940874],[105.830514,28.944271],[105.824769,28.953396],[105.826782,28.964403],[105.851677,28.976185],[105.858011,28.98678],[105.857323,29.012997],[105.864492,29.026001],[105.882905,29.029722],[105.885459,29.037204],[105.897145,29.049632],[105.919928,29.056132],[105.922285,29.078858],[105.913888,29.08086],[105.909518,29.093855],[105.917473,29.098881],[105.918848,29.109464],[105.93186,29.115102],[105.937899,29.127561],[105.942858,29.128338],[105.958276,29.147943],[105.954299,29.151251],[105.965347,29.15603],[105.96736,29.177671],[105.982287,29.193512],[105.996673,29.213595],[106.004677,29.215513],[106.016363,29.242529],[106.033156,29.253953],[106.031486,29.261868],[106.036789,29.284915],[106.038164,29.313339],[106.043418,29.32549],[106.049998,29.341878],[106.048377,29.353251],[106.065612,29.375788],[106.067822,29.390946],[106.062666,29.396161],[106.063648,29.418974],[106.073272,29.448868],[106.071799,29.461491],[106.076218,29.470366],[106.078035,29.491168],[106.076709,29.505536],[106.085989,29.530562],[106.089132,29.546388],[106.078526,29.545209],[106.071553,29.536014],[106.038803,29.529179],[106.018769,29.527388],[106.010127,29.520512],[105.995446,29.525801],[105.995446,29.541303],[105.988523,29.542483],[105.981992,29.533369],[105.975363,29.54228],[105.967802,29.53695],[105.956116,29.540734],[105.951156,29.548463],[105.935984,29.549968],[105.938341,29.543744],[105.921303,29.537438],[105.910746,29.539065],[105.903626,29.552531],[105.906572,29.562741],[105.890467,29.570429],[105.873969,29.552572],[105.876817,29.541791],[105.868617,29.537316],[105.855016,29.540042],[105.834933,29.527917],[105.825899,29.51396],[105.817895,29.490395],[105.802674,29.437139],[105.770561,29.408302],[105.773507,29.394857],[105.767762,29.379578],[105.747582,29.372487],[105.735159,29.38459],[105.728678,29.384875],[105.716893,29.372813],[105.709086,29.375625],[105.709283,29.368616],[105.696172,29.364622],[105.691655,29.357652],[105.675501,29.355574],[105.663078,29.346647],[105.653209,29.349052],[105.649575,29.340247],[105.653405,29.33397],[105.645352,29.319252],[105.635974,29.320638],[105.637251,29.298251],[105.645794,29.286506],[105.655664,29.284426],[105.66514,29.276594]]]]}},{"type":"Feature","properties":{"adcode":500119,"name":"南川区","center":[107.098153,29.156646],"centroid":[107.171436,29.13547],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":18,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.057462,28.894785],[107.066546,28.895358],[107.07234,28.879308],[107.063354,28.877055],[107.059819,28.868456],[107.072683,28.866613],[107.08707,28.872264],[107.096694,28.890076],[107.141965,28.887742],[107.146827,28.876236],[107.155861,28.882993],[107.166565,28.880659],[107.178644,28.883361],[107.184095,28.879922],[107.193571,28.888766],[107.198432,28.878407],[107.194013,28.876605],[107.206534,28.868005],[107.19691,28.847405],[107.195142,28.838065],[107.226371,28.836795],[107.216354,28.828151],[107.210609,28.814795],[107.213408,28.795003],[107.21876,28.788733],[107.219202,28.772707],[107.24665,28.761845],[107.253573,28.766805],[107.252395,28.780577],[107.261429,28.792708],[107.277142,28.799183],[107.304639,28.806764],[107.325409,28.809591],[107.345147,28.829585],[107.331988,28.841178],[107.359878,28.849985],[107.367243,28.844988],[107.383447,28.848551],[107.395378,28.86088],[107.391941,28.868497],[107.406131,28.89155],[107.415657,28.88979],[107.41443,28.913248],[107.422875,28.928269],[107.433579,28.933754],[107.441043,28.94378],[107.438784,28.955278],[107.421549,28.954542],[107.412957,28.960148],[107.405542,28.972258],[107.404413,28.981872],[107.396949,28.993325],[107.370435,28.993897],[107.364542,29.010543],[107.378536,29.021912],[107.381041,29.029926],[107.395182,29.039657],[107.390714,29.059075],[107.379862,29.05744],[107.369747,29.091608],[107.374412,29.097574],[107.392285,29.091281],[107.412957,29.095735],[107.427589,29.127357],[107.4215,29.135813],[107.408439,29.138345],[107.408095,29.150271],[107.412318,29.161379],[107.401516,29.175957],[107.401565,29.184694],[107.395378,29.205881],[107.401909,29.218248],[107.399355,29.235714],[107.401025,29.248853],[107.416541,29.264234],[107.421942,29.274636],[107.404069,29.28259],[107.388553,29.281081],[107.391597,29.289279],[107.379764,29.299516],[107.373332,29.298578],[107.38271,29.308609],[107.392039,29.326754],[107.367047,29.341756],[107.350156,29.346892],[107.347308,29.342571],[107.323395,29.339147],[107.318387,29.347789],[107.309893,29.345098],[107.298599,29.352069],[107.293444,29.349704],[107.272428,29.358386],[107.272428,29.37371],[107.263393,29.383571],[107.256176,29.38463],[107.241691,29.379415],[107.239285,29.364744],[107.225487,29.367801],[107.20732,29.366293],[107.207221,29.385934],[107.214439,29.39775],[107.199561,29.399135],[107.203244,29.411316],[107.185911,29.412945],[107.173096,29.408342],[107.167056,29.420603],[107.16082,29.424432],[107.155272,29.417304],[107.148741,29.419259],[107.134846,29.411438],[107.142947,29.408179],[107.146827,29.396365],[107.134158,29.394613],[107.125124,29.387564],[107.110442,29.391598],[107.109166,29.383856],[107.114812,29.366741],[107.10018,29.361606],[107.083387,29.359813],[107.07229,29.362829],[107.043321,29.378437],[107.052552,29.388705],[107.051619,29.394205],[107.035121,29.391231],[107.026381,29.402802],[107.034581,29.406713],[107.029228,29.410827],[107.025055,29.441782],[107.034482,29.453103],[107.034581,29.467435],[107.015873,29.473338],[107.019997,29.487057],[107.012927,29.487708],[107.00453,29.471058],[106.993925,29.482579],[106.98052,29.488767],[106.964415,29.488685],[106.945952,29.497029],[106.935297,29.464463],[106.933039,29.448542],[106.936574,29.439339],[106.932253,29.399746],[106.922531,29.403046],[106.919978,29.329893],[106.922433,29.310322],[106.920616,29.302411],[106.92312,29.280673],[106.933039,29.279653],[106.936132,29.256931],[106.954692,29.252199],[106.95754,29.228981],[106.968392,29.215228],[106.961812,29.202738],[106.95263,29.197104],[106.955527,29.190695],[106.945069,29.183142],[106.919045,29.180366],[106.911385,29.197472],[106.895574,29.190491],[106.896409,29.180039],[106.907751,29.179672],[106.909175,29.160562],[106.899355,29.155621],[106.891744,29.14149],[106.891695,29.131769],[106.905542,29.11596],[106.911483,29.114775],[106.921844,29.100475],[106.910256,29.068844],[106.906131,29.051758],[106.915362,29.054538],[106.920567,29.045749],[106.926361,29.047793],[106.938685,29.041906],[106.950421,29.071787],[106.954545,29.059239],[106.96358,29.058217],[106.975266,29.050532],[106.977034,29.056009],[106.988671,29.043459],[106.981158,29.039861],[106.979832,29.031766],[106.990045,29.021094],[107.003892,29.016023],[107.01715,28.998724],[107.024564,28.995983],[107.02967,28.985717],[107.022256,28.974058],[107.013614,28.969599],[107.015971,28.952087],[107.02913,28.941284],[107.043124,28.945785],[107.051275,28.942143],[107.057315,28.932771],[107.053288,28.919183],[107.04337,28.919879],[107.057462,28.894785]]]]}},{"type":"Feature","properties":{"adcode":500120,"name":"璧山区","center":[106.231126,29.593581],"centroid":[106.191948,29.561371],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":19,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.253425,29.532841],[106.251707,29.559406],[106.260005,29.592633],[106.265602,29.605889],[106.274882,29.612231],[106.282493,29.626744],[106.273017,29.631215],[106.279105,29.637841],[106.287649,29.635849],[106.2794,29.652553],[106.287698,29.663484],[106.284506,29.675268],[106.278712,29.67669],[106.280431,29.703298],[106.285636,29.697896],[106.297076,29.706467],[106.305669,29.736641],[106.31598,29.764898],[106.324279,29.774843],[106.334197,29.771311],[106.344214,29.779307],[106.372889,29.814207],[106.351284,29.812422],[106.34225,29.816804],[106.345883,29.836114],[106.337585,29.834532],[106.342446,29.842523],[106.330956,29.848323],[106.336407,29.860247],[106.329385,29.859639],[106.325653,29.872737],[106.314409,29.884861],[106.26791,29.84443],[106.233048,29.805686],[106.211689,29.791564],[106.194552,29.785395],[106.180559,29.771555],[106.160771,29.759702],[106.169069,29.752557],[106.163422,29.721088],[106.156155,29.70935],[106.169314,29.689893],[106.163226,29.681321],[106.165828,29.675755],[106.156695,29.667304],[106.144813,29.662956],[106.122717,29.638816],[106.113928,29.615687],[106.117561,29.610076],[106.112307,29.601457],[106.104844,29.576041],[106.096251,29.559691],[106.087217,29.552287],[106.089132,29.546388],[106.085989,29.530562],[106.076709,29.505536],[106.078035,29.491168],[106.076218,29.470366],[106.071799,29.461491],[106.073272,29.448868],[106.063648,29.418974],[106.062666,29.396161],[106.067822,29.390946],[106.065612,29.375788],[106.048377,29.353251],[106.049998,29.341878],[106.043418,29.32549],[106.072928,29.321005],[106.086382,29.30706],[106.084663,29.300331],[106.096104,29.291359],[106.110442,29.294907],[106.113289,29.284018],[106.120065,29.278878],[106.136416,29.294826],[106.152276,29.293684],[106.156106,29.301962],[106.17663,29.308446],[106.195731,29.327447],[106.206042,29.334826],[106.223621,29.353984],[106.245569,29.40989],[106.248613,29.429238],[106.262705,29.451596],[106.26025,29.466051],[106.267026,29.494994],[106.260594,29.494262],[106.261969,29.516524],[106.253278,29.519698],[106.253425,29.532841]]]]}},{"type":"Feature","properties":{"adcode":500151,"name":"铜梁区","center":[106.054948,29.839944],"centroid":[106.0332,29.81109],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":20,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.981207,30.061359],[105.973105,30.072771],[105.95862,30.076778],[105.959209,30.071234],[105.949438,30.060832],[105.939274,30.063342],[105.943006,30.074511],[105.934511,30.080703],[105.933333,30.088027],[105.917571,30.093934],[105.907554,30.091951],[105.897783,30.079003],[105.904608,30.073662],[105.895475,30.065123],[105.901711,30.057392],[105.900336,30.045775],[105.891498,30.044156],[105.883691,30.049256],[105.872103,30.045411],[105.869648,30.032983],[105.875491,30.027356],[105.866702,30.009864],[105.870335,30.00549],[105.886784,30.006462],[105.904019,29.995649],[105.915656,29.993179],[105.907849,29.98038],[105.91104,29.961624],[105.924347,29.963123],[105.925034,29.956478],[105.934953,29.954493],[105.941385,29.935691],[105.931712,29.927546],[105.95042,29.908172],[105.945657,29.893051],[105.933185,29.88778],[105.926606,29.877928],[105.930681,29.872373],[105.923169,29.865763],[105.910058,29.868561],[105.90888,29.879955],[105.88266,29.890659],[105.875638,29.897551],[105.870434,29.89078],[105.860319,29.896902],[105.846177,29.895402],[105.837241,29.878293],[105.824769,29.881861],[105.818926,29.855583],[105.809253,29.844714],[105.807387,29.833031],[105.790987,29.827879],[105.778368,29.811367],[105.789269,29.794121],[105.808418,29.783569],[105.806945,29.771636],[105.820939,29.773381],[105.822461,29.762827],[105.83076,29.757997],[105.868911,29.756982],[105.878584,29.769525],[105.888012,29.77468],[105.893904,29.785882],[105.888208,29.790347],[105.893806,29.802967],[105.906523,29.795582],[105.904706,29.785598],[105.922334,29.788236],[105.944233,29.775979],[105.957638,29.781662],[105.970601,29.779876],[105.976542,29.784746],[105.991223,29.781174],[105.998588,29.768916],[105.997508,29.756819],[106.001289,29.748375],[106.010913,29.747279],[106.014448,29.752841],[106.028344,29.749552],[106.025987,29.734854],[106.036838,29.726692],[106.031732,29.722184],[106.005659,29.682581],[105.997361,29.6645],[105.982532,29.671936],[105.969815,29.646294],[105.953513,29.630199],[105.946099,29.626988],[105.938243,29.613166],[105.924347,29.595805],[105.890467,29.570429],[105.906572,29.562741],[105.903626,29.552531],[105.910746,29.539065],[105.921303,29.537438],[105.938341,29.543744],[105.935984,29.549968],[105.951156,29.548463],[105.956116,29.540734],[105.967802,29.53695],[105.975363,29.54228],[105.981992,29.533369],[105.988523,29.542483],[105.995446,29.541303],[105.995446,29.525801],[106.010127,29.520512],[106.018769,29.527388],[106.038803,29.529179],[106.071553,29.536014],[106.078526,29.545209],[106.089132,29.546388],[106.087217,29.552287],[106.096251,29.559691],[106.104844,29.576041],[106.112307,29.601457],[106.117561,29.610076],[106.113928,29.615687],[106.122717,29.638816],[106.144813,29.662956],[106.156695,29.667304],[106.165828,29.675755],[106.163226,29.681321],[106.169314,29.689893],[106.156155,29.70935],[106.163422,29.721088],[106.169069,29.752557],[106.160771,29.759702],[106.180559,29.771555],[106.194552,29.785395],[106.211689,29.791564],[106.233048,29.805686],[106.26791,29.84443],[106.263393,29.852258],[106.271593,29.86779],[106.265995,29.873913],[106.276699,29.873021],[106.281658,29.894673],[106.27012,29.887334],[106.266977,29.895686],[106.258139,29.89747],[106.245078,29.907685],[106.244341,29.908253],[106.242377,29.910239],[106.24115,29.90955],[106.240757,29.909428],[106.240119,29.909347],[106.239971,29.909631],[106.240119,29.910928],[106.239873,29.91109],[106.239529,29.911131],[106.23894,29.911212],[106.2384,29.91182],[106.238302,29.912144],[106.2384,29.912549],[106.239873,29.919116],[106.221018,29.920413],[106.219005,29.929451],[106.208645,29.929126],[106.200346,29.936826],[106.197744,29.931153],[106.165877,29.922399],[106.166123,29.921142],[106.166074,29.920777],[106.165926,29.920696],[106.165533,29.92094],[106.165435,29.921102],[106.165141,29.921426],[106.164944,29.921507],[106.160574,29.919359],[106.146924,29.92787],[106.130426,29.921993],[106.129198,29.929491],[106.134845,29.938771],[106.124141,29.936461],[106.1127,29.9519],[106.112946,29.960813],[106.119378,29.966607],[106.123306,29.980056],[106.118052,29.986982],[106.123061,29.998687],[106.098215,30.002331],[106.075727,30.001643],[106.049163,29.997026],[106.036495,29.997674],[106.028,29.991883],[106.027362,30.001522],[106.046511,30.007474],[106.047788,30.01363],[106.020439,30.028084],[105.998785,30.026627],[105.991076,30.033671],[105.981501,30.052414],[105.981207,30.061359]]],[[[106.2384,29.912549],[106.238302,29.912144],[106.2384,29.91182],[106.23894,29.911212],[106.239529,29.911131],[106.239873,29.91109],[106.240119,29.910928],[106.239971,29.909631],[106.240119,29.909347],[106.240757,29.909428],[106.24115,29.90955],[106.242377,29.910239],[106.2384,29.912549]]],[[[106.165877,29.922399],[106.164944,29.921507],[106.165141,29.921426],[106.165435,29.921102],[106.165533,29.92094],[106.165926,29.920696],[106.166074,29.920777],[106.166123,29.921142],[106.165877,29.922399]]]]}},{"type":"Feature","properties":{"adcode":500152,"name":"潼南区","center":[105.841818,30.189554],"centroid":[105.814632,30.143351],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":21,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.733146,29.860693],[105.738105,29.856516],[105.738252,29.845646],[105.725339,29.832747],[105.735846,29.819319],[105.72308,29.809825],[105.714684,29.79684],[105.713898,29.789129],[105.721411,29.78779],[105.746354,29.801466],[105.763883,29.793512],[105.77719,29.801831],[105.778368,29.811367],[105.790987,29.827879],[105.807387,29.833031],[105.809253,29.844714],[105.818926,29.855583],[105.824769,29.881861],[105.837241,29.878293],[105.846177,29.895402],[105.860319,29.896902],[105.870434,29.89078],[105.875638,29.897551],[105.88266,29.890659],[105.90888,29.879955],[105.910058,29.868561],[105.923169,29.865763],[105.930681,29.872373],[105.926606,29.877928],[105.933185,29.88778],[105.945657,29.893051],[105.95042,29.908172],[105.931712,29.927546],[105.941385,29.935691],[105.934953,29.954493],[105.925034,29.956478],[105.924347,29.963123],[105.91104,29.961624],[105.907849,29.98038],[105.915656,29.993179],[105.904019,29.995649],[105.886784,30.006462],[105.870335,30.00549],[105.866702,30.009864],[105.875491,30.027356],[105.869648,30.032983],[105.872103,30.045411],[105.883691,30.049256],[105.891498,30.044156],[105.900336,30.045775],[105.901711,30.057392],[105.895475,30.065123],[105.904608,30.073662],[105.897783,30.079003],[105.907554,30.091951],[105.917571,30.093934],[105.933333,30.088027],[105.934511,30.080703],[105.943006,30.074511],[105.939274,30.063342],[105.949438,30.060832],[105.959209,30.071234],[105.95862,30.076778],[105.973105,30.072771],[105.981207,30.061359],[105.98592,30.070262],[105.980814,30.083131],[105.989357,30.093125],[105.985184,30.101742],[105.999472,30.113757],[105.994513,30.120108],[105.998343,30.129289],[105.978801,30.143606],[105.976247,30.153109],[105.987639,30.164026],[105.974381,30.175224],[105.973743,30.188079],[105.991174,30.177246],[106.00669,30.187958],[106.019948,30.201417],[106.006052,30.213622],[106.004039,30.224775],[105.995102,30.231845],[105.981059,30.233583],[105.985724,30.248692],[105.995397,30.256892],[106.006248,30.260002],[106.013466,30.268282],[106.009489,30.275754],[105.998588,30.280681],[105.992107,30.277369],[105.98101,30.280156],[105.983367,30.289766],[105.974872,30.289322],[105.967507,30.308379],[105.975216,30.30632],[105.988277,30.320006],[105.981305,30.325051],[105.980372,30.342084],[105.989063,30.352697],[105.97826,30.373477],[105.970257,30.378883],[105.940894,30.372267],[105.939568,30.380537],[105.925575,30.385338],[105.917031,30.395987],[105.901515,30.386346],[105.899011,30.396027],[105.905983,30.397036],[105.905296,30.406433],[105.876522,30.399536],[105.886784,30.392639],[105.877602,30.386669],[105.869108,30.401513],[105.873772,30.408692],[105.862332,30.406353],[105.846227,30.392437],[105.839107,30.399698],[105.846128,30.411152],[105.836946,30.41583],[105.831103,30.429016],[105.820154,30.437524],[105.802183,30.427927],[105.792313,30.427282],[105.795456,30.418491],[105.782787,30.403086],[105.770708,30.404054],[105.760299,30.384571],[105.770021,30.37618],[105.751854,30.357136],[105.756224,30.347088],[105.74984,30.339703],[105.735012,30.336676],[105.741493,30.319158],[105.729905,30.316897],[105.714831,30.322791],[105.711738,30.315848],[105.718612,30.307733],[105.711001,30.294208],[105.711787,30.282255],[105.722982,30.275552],[105.734963,30.277046],[105.730102,30.265818],[105.735159,30.261537],[105.720969,30.263193],[105.723866,30.254751],[105.701475,30.257862],[105.67334,30.252772],[105.667203,30.265697],[105.660672,30.264324],[105.645745,30.273371],[105.622668,30.273856],[105.620163,30.261779],[105.610589,30.255882],[105.62036,30.248934],[105.618739,30.23536],[105.636269,30.219724],[105.655418,30.220815],[105.662342,30.210066],[105.645549,30.206873],[105.642406,30.186422],[105.632832,30.183754],[105.618052,30.185694],[105.607888,30.178297],[105.595122,30.183673],[105.5799,30.173446],[105.567036,30.183188],[105.546904,30.180722],[105.536445,30.164834],[105.536151,30.152907],[105.549605,30.151734],[105.556086,30.144779],[105.558197,30.151977],[105.571406,30.161559],[105.582159,30.162974],[105.59684,30.157112],[105.593207,30.144738],[105.569982,30.134304],[105.574155,30.130422],[105.580244,30.129694],[105.582699,30.12755],[105.583141,30.12395],[105.598068,30.109227],[105.606759,30.109712],[105.619721,30.104129],[105.640835,30.101338],[105.637496,30.093691],[105.639264,30.076413],[105.649231,30.074592],[105.660476,30.066296],[105.674617,30.071274],[105.676728,30.056057],[105.683455,30.052859],[105.68699,30.038975],[105.699413,30.043144],[105.705354,30.035776],[105.721312,30.042051],[105.728039,30.027194],[105.742033,30.03359],[105.743359,30.027113],[105.75367,30.01861],[105.74876,30.005895],[105.732508,29.998768],[105.723326,29.976005],[105.731034,29.95664],[105.721116,29.950563],[105.714978,29.930747],[105.702507,29.923939],[105.715027,29.911171],[105.711639,29.899497],[105.717433,29.893578],[105.73403,29.893578],[105.735257,29.871967],[105.733146,29.860693]]],[[[105.583141,30.12395],[105.582699,30.12755],[105.580244,30.129694],[105.574155,30.130422],[105.583141,30.12395]]]]}},{"type":"Feature","properties":{"adcode":500153,"name":"荣昌区","center":[105.594061,29.403627],"centroid":[105.506727,29.464817],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":22,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.66514,29.276594],[105.655664,29.284426],[105.645794,29.286506],[105.637251,29.298251],[105.635974,29.320638],[105.645352,29.319252],[105.653405,29.33397],[105.649575,29.340247],[105.653209,29.349052],[105.663078,29.346647],[105.675501,29.355574],[105.691655,29.357652],[105.696172,29.364622],[105.709283,29.368616],[105.709086,29.375625],[105.716893,29.372813],[105.728678,29.384875],[105.741002,29.397628],[105.722835,29.397872],[105.73403,29.417386],[105.727646,29.422844],[105.737663,29.435592],[105.735061,29.445162],[105.724013,29.449967],[105.725486,29.454121],[105.714929,29.464259],[105.687236,29.446506],[105.662194,29.460025],[105.657431,29.468168],[105.658119,29.481317],[105.65311,29.485022],[105.662636,29.499431],[105.648397,29.494139],[105.641179,29.505861],[105.639509,29.489052],[105.646236,29.486121],[105.637152,29.473623],[105.629738,29.478386],[105.631506,29.485917],[105.620556,29.494017],[105.619967,29.504803],[105.607642,29.508262],[105.595711,29.504152],[105.593059,29.517744],[105.583239,29.515588],[105.590015,29.524011],[105.59522,29.539432],[105.592175,29.549928],[105.599983,29.553019],[105.602241,29.569941],[105.594483,29.575553],[105.590899,29.590397],[105.580047,29.591617],[105.561045,29.588892],[105.549703,29.572096],[105.542534,29.57413],[105.542681,29.586412],[105.536642,29.59121],[105.517738,29.586493],[105.50561,29.609344],[105.509243,29.637962],[105.496673,29.648652],[105.487688,29.663159],[105.490683,29.675186],[105.482777,29.679127],[105.475658,29.674699],[105.436377,29.676974],[105.420615,29.688309],[105.400532,29.67157],[105.389681,29.676487],[105.383887,29.669823],[105.393167,29.650724],[105.377553,29.643287],[105.380794,29.628248],[105.369648,29.621053],[105.365965,29.627516],[105.354377,29.626703],[105.346766,29.620199],[105.341611,29.60292],[105.335522,29.595195],[105.325653,29.595927],[105.329826,29.604384],[105.320988,29.60971],[105.320644,29.601782],[105.311315,29.593365],[105.317649,29.578156],[105.298647,29.572503],[105.289759,29.552613],[105.294326,29.53398],[105.304686,29.531254],[105.318877,29.512413],[105.323247,29.495157],[105.321234,29.475984],[105.331299,29.47175],[105.338026,29.461857],[105.336111,29.455546],[105.324622,29.450008],[105.334147,29.441416],[105.345588,29.448501],[105.360417,29.444225],[105.362037,29.454691],[105.373821,29.458274],[105.389534,29.452818],[105.399207,29.438972],[105.387471,29.438361],[105.388797,29.431886],[105.371759,29.423862],[105.373281,29.420766],[105.39631,29.422884],[105.413544,29.418567],[105.417031,29.423373],[105.427293,29.418852],[105.431466,29.408179],[105.443103,29.399094],[105.443693,29.386382],[105.432203,29.379659],[105.438586,29.370816],[105.434805,29.363114],[105.418602,29.352313],[105.422972,29.326509],[105.420075,29.316968],[105.436573,29.319496],[105.44929,29.317498],[105.454691,29.329077],[105.466476,29.321576],[105.466083,29.313421],[105.474283,29.309996],[105.466427,29.305592],[105.465395,29.292379],[105.459307,29.290136],[105.488866,29.278185],[105.509145,29.285404],[105.50939,29.274677],[105.518425,29.264438],[105.537869,29.272882],[105.55584,29.273576],[105.558295,29.27847],[105.583288,29.270353],[105.596005,29.274473],[105.609508,29.27276],[105.607986,29.255748],[105.614173,29.258359],[105.619771,29.27174],[105.6318,29.280388],[105.644076,29.270965],[105.63946,29.261582],[105.647611,29.25326],[105.666515,29.252933],[105.671622,29.260889],[105.664698,29.269048],[105.66514,29.276594]]]]}},{"type":"Feature","properties":{"adcode":500154,"name":"开州区","center":[108.413317,31.167735],"centroid":[108.382659,31.271013],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":23,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.542831,31.673626],[108.546464,31.666701],[108.532814,31.669129],[108.519066,31.665706],[108.513272,31.656193],[108.506692,31.657307],[108.494564,31.649545],[108.486168,31.639871],[108.468786,31.636169],[108.46525,31.61837],[108.456461,31.628882],[108.442664,31.6337],[108.423072,31.621277],[108.417916,31.610087],[108.402646,31.603874],[108.388357,31.586906],[108.393611,31.576349],[108.377948,31.570413],[108.391795,31.560452],[108.388652,31.546385],[108.381139,31.542599],[108.347603,31.545189],[108.33906,31.537896],[108.346572,31.525141],[108.345345,31.514936],[108.323298,31.502378],[108.311415,31.506684],[108.295998,31.503494],[108.281709,31.507282],[108.276995,31.501181],[108.259564,31.502497],[108.254801,31.498829],[108.236683,31.506365],[108.226764,31.505846],[108.218417,31.496197],[108.190478,31.491492],[108.193326,31.468202],[108.206829,31.464293],[108.210806,31.467883],[108.223131,31.46517],[108.225586,31.453004],[108.210561,31.435769],[108.216551,31.427031],[108.216306,31.411188],[108.203392,31.395382],[108.182868,31.393027],[108.175257,31.382608],[108.157826,31.376659],[108.154143,31.37075],[108.158906,31.360289],[108.171182,31.356975],[108.180609,31.349227],[108.185519,31.338005],[108.180462,31.325782],[108.162834,31.31971],[108.16141,31.313757],[108.146533,31.30277],[108.111916,31.286586],[108.094485,31.275036],[108.092374,31.265764],[108.080589,31.261446],[108.066399,31.261766],[108.059967,31.254971],[108.040866,31.253611],[108.021422,31.245736],[108.031635,31.23682],[108.027903,31.221984],[108.040081,31.218625],[108.076268,31.231822],[108.071113,31.218345],[108.080737,31.218945],[108.089919,31.201867],[108.085696,31.188107],[108.070278,31.177785],[108.069443,31.169383],[108.055253,31.156658],[108.056628,31.145652],[108.045629,31.145893],[108.0363,31.139929],[108.035318,31.128962],[108.025743,31.116351],[108.014744,31.115271],[108.009294,31.108785],[108.01386,31.098735],[108.024712,31.089244],[108.028984,31.061728],[108.050245,31.059966],[108.059869,31.053196],[108.053289,31.040736],[108.043321,31.035407],[108.033599,31.036128],[108.011062,31.023666],[108.003795,31.025389],[107.995889,31.004308],[107.983123,30.984225],[107.971535,30.982421],[107.943547,30.989437],[107.937409,30.968669],[107.936329,30.952749],[107.938735,30.940035],[107.948261,30.919056],[107.957345,30.919858],[107.971535,30.911794],[107.982435,30.913239],[107.994711,30.908665],[108.000849,30.911915],[108.009392,30.907662],[108.029426,30.884508],[108.0363,30.8701],[108.041112,30.876522],[108.069149,30.888281],[108.071751,30.892695],[108.081817,30.885712],[108.101654,30.878007],[108.090115,30.871545],[108.096646,30.84782],[108.105287,30.841356],[108.109608,30.82931],[108.122866,30.833487],[108.126057,30.840875],[108.131704,30.832001],[108.152179,30.831278],[108.157482,30.834771],[108.167106,30.827182],[108.18218,30.824211],[108.197254,30.833647],[108.200102,30.839188],[108.218417,30.852839],[108.229956,30.856171],[108.225488,30.860908],[108.231184,30.87612],[108.228237,30.881298],[108.244294,30.89113],[108.243803,30.882261],[108.260055,30.872789],[108.268402,30.881659],[108.29202,30.892976],[108.300269,30.901041],[108.346277,30.921222],[108.360861,30.932976],[108.349027,30.939153],[108.339649,30.963135],[108.355214,30.960408],[108.372792,30.969791],[108.395674,30.991641],[108.41497,30.998897],[108.418015,31.006072],[108.432156,31.012725],[108.451256,31.013527],[108.474334,31.022544],[108.48003,31.037811],[108.476691,31.052795],[108.486217,31.057322],[108.488181,31.064733],[108.511995,31.074145],[108.510964,31.07791],[108.53031,31.083838],[108.539934,31.082957],[108.537921,31.095491],[108.558887,31.089404],[108.547544,31.105261],[108.562619,31.115791],[108.562717,31.130443],[108.567823,31.140529],[108.576956,31.142851],[108.601851,31.160099],[108.598414,31.170943],[108.583585,31.174864],[108.578036,31.180065],[108.587759,31.185066],[108.588741,31.201587],[108.596646,31.230622],[108.618643,31.252212],[108.622768,31.259488],[108.631262,31.257249],[108.643489,31.268721],[108.63632,31.283509],[108.654586,31.289184],[108.659054,31.298535],[108.639806,31.31955],[108.63578,31.329896],[108.644176,31.339482],[108.683261,31.34084],[108.698237,31.343956],[108.701527,31.348988],[108.696567,31.359011],[108.709186,31.374983],[108.693474,31.377418],[108.694554,31.387199],[108.712525,31.394584],[108.729956,31.390752],[108.736389,31.395742],[108.731528,31.403285],[108.740022,31.407676],[108.742084,31.420087],[108.757797,31.430941],[108.759908,31.438602],[108.752298,31.443749],[108.740071,31.441834],[108.726617,31.455118],[108.703098,31.463814],[108.697255,31.476737],[108.69971,31.491652],[108.694554,31.499347],[108.703982,31.503972],[108.721707,31.503255],[108.730055,31.499746],[108.748026,31.505208],[108.761087,31.503893],[108.766881,31.513621],[108.769483,31.529845],[108.777094,31.543635],[108.794034,31.551366],[108.801399,31.574078],[108.820303,31.574596],[108.824133,31.578899],[108.837096,31.574237],[108.853398,31.578939],[108.865133,31.592801],[108.877997,31.602799],[108.894888,31.606025],[108.895821,31.614587],[108.887719,31.625657],[108.893268,31.632187],[108.892728,31.642578],[108.898227,31.65484],[108.888407,31.654999],[108.879421,31.663835],[108.865378,31.671079],[108.860517,31.681068],[108.840533,31.684371],[108.809894,31.685764],[108.794525,31.684251],[108.782888,31.688828],[108.770612,31.682142],[108.758141,31.664313],[108.755342,31.647077],[108.742281,31.640906],[108.736192,31.633302],[108.728974,31.634457],[108.714686,31.627648],[108.701183,31.634098],[108.69151,31.625259],[108.683899,31.627449],[108.67673,31.62275],[108.65542,31.626095],[108.649381,31.621715],[108.64123,31.625179],[108.640101,31.637005],[108.624388,31.651655],[108.608725,31.650421],[108.576809,31.664114],[108.574501,31.67088],[108.561833,31.669726],[108.542831,31.673626]]]]}},{"type":"Feature","properties":{"adcode":500155,"name":"梁平区","center":[107.800034,30.672168],"centroid":[107.719234,30.658344],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":24,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.876131,30.813287],[107.849861,30.792601],[107.831399,30.798426],[107.817749,30.798024],[107.799189,30.814934],[107.783722,30.819311],[107.775375,30.814853],[107.763836,30.817102],[107.755341,30.829551],[107.757452,30.840232],[107.752788,30.850751],[107.760349,30.862272],[107.750038,30.864801],[107.749547,30.873471],[107.737714,30.88499],[107.715864,30.887839],[107.704128,30.872227],[107.691951,30.874756],[107.670445,30.851996],[107.647465,30.823247],[107.633766,30.817785],[107.616138,30.828588],[107.614665,30.839148],[107.598266,30.844729],[107.584075,30.840473],[107.577594,30.848141],[107.560654,30.849868],[107.556529,30.846295],[107.535465,30.84766],[107.526626,30.839429],[107.523288,30.848222],[107.514793,30.854926],[107.482926,30.838305],[107.492108,30.833165],[107.489997,30.821118],[107.498982,30.810757],[107.490193,30.810757],[107.493778,30.803688],[107.47777,30.799792],[107.47345,30.785772],[107.460339,30.784165],[107.466379,30.774041],[107.453809,30.77167],[107.44556,30.778179],[107.446837,30.770103],[107.43957,30.759776],[107.44502,30.752503],[107.439029,30.747077],[107.425674,30.746756],[107.437065,30.721031],[107.458621,30.704788],[107.460929,30.687498],[107.456559,30.682712],[107.469718,30.677604],[107.477427,30.664774],[107.499179,30.660148],[107.516806,30.647838],[107.515431,30.642045],[107.493728,30.618988],[107.485332,30.598341],[107.46741,30.586305],[107.460241,30.571329],[107.42754,30.547611],[107.442859,30.535287],[107.433825,30.523565],[107.419929,30.516475],[107.408734,30.521551],[107.404855,30.516112],[107.425527,30.510835],[107.446837,30.49766],[107.463629,30.481984],[107.480029,30.478599],[107.496036,30.494638],[107.509097,30.495363],[107.516266,30.489198],[107.527559,30.490487],[107.533452,30.500843],[107.544352,30.498869],[107.55157,30.50322],[107.553436,30.491092],[107.562225,30.487949],[107.570523,30.47731],[107.593994,30.475174],[107.610197,30.48009],[107.611719,30.47211],[107.629298,30.485611],[107.637743,30.483032],[107.636957,30.470498],[107.660772,30.470136],[107.670346,30.464493],[107.673538,30.453851],[107.656205,30.431193],[107.661803,30.420387],[107.679479,30.438612],[107.695241,30.460986],[107.715716,30.482589],[107.741347,30.517885],[107.748123,30.521269],[107.757894,30.514058],[107.767911,30.513736],[107.777535,30.506121],[107.77783,30.497821],[107.796488,30.484805],[107.796488,30.479204],[107.80621,30.470861],[107.817455,30.471466],[107.810629,30.482428],[107.818142,30.497539],[107.819173,30.50882],[107.814017,30.521631],[107.829239,30.544671],[107.826145,30.554417],[107.860713,30.559088],[107.870386,30.547248],[107.885411,30.549544],[107.891352,30.54608],[107.886884,30.539556],[107.88546,30.512124],[107.897883,30.502938],[107.909422,30.502938],[107.916001,30.495323],[107.924839,30.494074],[107.939864,30.485893],[107.942025,30.498828],[107.953711,30.51434],[107.958621,30.531017],[107.972615,30.521913],[107.985676,30.531017],[107.990243,30.538871],[108.003795,30.542174],[108.029622,30.561544],[108.034778,30.574187],[108.028051,30.587432],[108.033697,30.592424],[108.025252,30.60289],[108.016954,30.629571],[108.023091,30.63617],[108.025645,30.648844],[108.042585,30.662481],[108.0554,30.660027],[108.079558,30.664532],[108.082259,30.677926],[108.074844,30.696304],[108.086678,30.713714],[108.074894,30.723121],[108.047544,30.723684],[108.03517,30.715362],[108.011405,30.709814],[107.959112,30.719262],[107.918653,30.75829],[107.908243,30.762911],[107.905592,30.77601],[107.88492,30.806138],[107.876131,30.813287]]]]}},{"type":"Feature","properties":{"adcode":500156,"name":"武隆区","center":[107.75655,29.32376],"centroid":[107.709628,29.373158],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":25,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.401565,29.184694],[107.405444,29.188613],[107.428473,29.191144],[107.441435,29.203962],[107.463973,29.195431],[107.462353,29.176855],[107.473106,29.170975],[107.486707,29.174242],[107.514891,29.194206],[107.532224,29.195471],[107.549557,29.210085],[107.553387,29.218697],[107.565711,29.220982],[107.575139,29.20784],[107.575237,29.189062],[107.580147,29.183591],[107.583437,29.16828],[107.590164,29.165299],[107.585057,29.158357],[107.589231,29.150026],[107.601015,29.147821],[107.600622,29.15897],[107.606711,29.165463],[107.616924,29.163013],[107.629936,29.165585],[107.641573,29.16093],[107.659446,29.16289],[107.66362,29.147535],[107.698629,29.141245],[107.707565,29.154151],[107.718515,29.156152],[107.727206,29.175712],[107.724751,29.182203],[107.739383,29.189021],[107.751609,29.199635],[107.76089,29.189021],[107.760251,29.177712],[107.767911,29.17514],[107.775227,29.162808],[107.781905,29.161992],[107.795162,29.146473],[107.808567,29.142838],[107.810629,29.138345],[107.799974,29.106195],[107.78981,29.082372],[107.785244,29.04722],[107.823543,29.034219],[107.838421,29.040597],[107.849567,29.039289],[107.874707,29.057031],[107.873086,29.074852],[107.883938,29.078163],[107.889486,29.085151],[107.883889,29.106195],[107.895133,29.117185],[107.892727,29.134138],[107.899896,29.166361],[107.903775,29.172282],[107.898865,29.184245],[107.911975,29.190328],[107.934905,29.185102],[107.94286,29.178243],[107.960143,29.188695],[107.970111,29.198492],[107.973057,29.210166],[107.986756,29.217799],[107.997804,29.236857],[108.006446,29.229267],[108.010325,29.247792],[107.99697,29.26248],[107.998983,29.273943],[107.996282,29.288545],[108.003304,29.315174],[107.992059,29.325408],[107.984301,29.339188],[107.983319,29.350397],[107.976641,29.36344],[107.988426,29.38027],[107.992796,29.397383],[107.989653,29.416856],[108.004286,29.428424],[108.002763,29.442108],[108.013075,29.448786],[108.013959,29.469674],[108.017347,29.483719],[108.015432,29.504559],[108.055793,29.531783],[108.074059,29.549073],[108.075826,29.557982],[108.066988,29.566687],[108.066153,29.575472],[108.075876,29.577627],[108.084026,29.588892],[108.076563,29.605726],[108.067872,29.614223],[108.056039,29.621581],[108.046513,29.622679],[108.024368,29.619467],[108.000259,29.626256],[107.979784,29.627435],[107.969129,29.620321],[107.961715,29.608978],[107.949881,29.601701],[107.948703,29.623126],[107.934218,29.655723],[107.922974,29.655235],[107.905543,29.662428],[107.897146,29.661493],[107.87073,29.667995],[107.857472,29.667629],[107.845786,29.660233],[107.842938,29.653569],[107.845246,29.628695],[107.839943,29.607393],[107.831743,29.59243],[107.832283,29.581247],[107.838863,29.570185],[107.835671,29.558877],[107.828551,29.556192],[107.825851,29.545005],[107.818928,29.554647],[107.80729,29.554606],[107.80351,29.563433],[107.791774,29.560952],[107.795801,29.567744],[107.7685,29.579254],[107.781267,29.582142],[107.772576,29.585883],[107.767862,29.597635],[107.757403,29.602636],[107.732263,29.585598],[107.716404,29.596659],[107.709431,29.60906],[107.701575,29.615443],[107.69804,29.605889],[107.687532,29.600481],[107.666958,29.573804],[107.654634,29.562457],[107.651197,29.553304],[107.629003,29.539147],[107.608135,29.532474],[107.607546,29.514652],[107.615009,29.512373],[107.620558,29.483638],[107.613143,29.479526],[107.595958,29.480951],[107.577446,29.462427],[107.574206,29.452533],[107.56139,29.453062],[107.552798,29.447809],[107.546562,29.431845],[107.532666,29.423047],[107.513664,29.461165],[107.478507,29.497151],[107.475905,29.50635],[107.4625,29.502117],[107.463826,29.498617],[107.450519,29.490028],[107.441386,29.491575],[107.431762,29.483475],[107.427491,29.505658],[107.391548,29.530969],[107.380599,29.523197],[107.365868,29.522383],[107.358601,29.51575],[107.348683,29.515547],[107.328993,29.509321],[107.323248,29.497558],[107.313526,29.487912],[107.30567,29.465318],[107.277338,29.440357],[107.262264,29.436162],[107.260938,29.429035],[107.245422,29.424391],[107.240512,29.426795],[107.227598,29.418159],[107.226666,29.406835],[107.237713,29.394817],[107.241691,29.379415],[107.256176,29.38463],[107.263393,29.383571],[107.272428,29.37371],[107.272428,29.358386],[107.293444,29.349704],[107.298599,29.352069],[107.309893,29.345098],[107.318387,29.347789],[107.323395,29.339147],[107.347308,29.342571],[107.350156,29.346892],[107.367047,29.341756],[107.392039,29.326754],[107.38271,29.308609],[107.373332,29.298578],[107.379764,29.299516],[107.391597,29.289279],[107.388553,29.281081],[107.404069,29.28259],[107.421942,29.274636],[107.416541,29.264234],[107.401025,29.248853],[107.399355,29.235714],[107.401909,29.218248],[107.395378,29.205881],[107.401565,29.184694]]]]}},{"type":"Feature","properties":{"adcode":500229,"name":"城口县","center":[108.6649,31.946293],"centroid":[108.735105,31.881846],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":26,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.281611,31.716876],[109.2795,31.723479],[109.283085,31.739627],[109.27076,31.749291],[109.2713,31.756607],[109.256177,31.758635],[109.254655,31.766905],[109.263689,31.773544],[109.281268,31.777917],[109.274786,31.791075],[109.274835,31.800455],[109.255293,31.803038],[109.239875,31.811304],[109.232363,31.809436],[109.213606,31.817503],[109.196224,31.817543],[109.191854,31.827953],[109.199563,31.842494],[109.190921,31.855681],[109.167009,31.87534],[109.131901,31.891343],[109.124585,31.892137],[109.114225,31.905556],[109.069935,31.938936],[109.05982,31.941356],[109.039345,31.96072],[109.035122,31.958061],[109.020883,31.963219],[108.988427,31.979404],[108.978213,31.978135],[108.968295,31.982538],[108.95273,31.979682],[108.937116,31.988924],[108.91831,31.988249],[108.902401,31.984918],[108.873529,32.000227],[108.837881,32.038805],[108.810581,32.047169],[108.788682,32.048318],[108.776259,32.055096],[108.767961,32.065519],[108.751708,32.074158],[108.752543,32.08759],[108.747731,32.099831],[108.726421,32.106803],[108.714833,32.103713],[108.674717,32.103396],[108.66691,32.111913],[108.654045,32.117418],[108.646975,32.128666],[108.606024,32.155155],[108.592178,32.160223],[108.583978,32.172217],[108.551031,32.176096],[108.509736,32.201187],[108.492944,32.194935],[108.479342,32.182073],[108.457296,32.181479],[108.434022,32.192085],[108.425282,32.187416],[108.406378,32.196201],[108.39916,32.194064],[108.379175,32.177521],[108.369404,32.173325],[108.38821,32.157531],[108.390862,32.151315],[108.406623,32.141337],[108.414872,32.126369],[108.423465,32.117339],[108.431616,32.101693],[108.439276,32.094721],[108.452091,32.091036],[108.44944,32.072969],[108.429995,32.061358],[108.412712,32.070116],[108.395183,32.066311],[108.373774,32.077169],[108.362825,32.070037],[108.344608,32.068253],[108.344804,32.060526],[108.35978,32.053748],[108.364298,32.047248],[108.362874,32.036783],[108.340091,32.023106],[108.32919,32.01926],[108.33847,32.009506],[108.361401,31.998085],[108.369502,31.989876],[108.367146,31.984521],[108.3505,31.971947],[108.337488,31.981705],[108.3259,31.984957],[108.307094,31.997252],[108.297176,31.988527],[108.283919,31.986068],[108.282151,31.979206],[108.265849,31.983728],[108.267175,31.973097],[108.259368,31.966869],[108.275817,31.957625],[108.28603,31.938856],[108.282691,31.917742],[108.289516,31.910955],[108.299484,31.911272],[108.30842,31.905953],[108.326244,31.881615],[108.33523,31.876452],[108.340974,31.863546],[108.353741,31.856396],[108.370779,31.852742],[108.386197,31.853894],[108.384135,31.848611],[108.394741,31.826523],[108.441436,31.807608],[108.455135,31.813927],[108.462501,31.812814],[108.464072,31.803674],[108.454399,31.791075],[108.456314,31.783999],[108.478213,31.777917],[108.488574,31.780302],[108.489261,31.774737],[108.515727,31.7611],[108.535269,31.757681],[108.506103,31.734815],[108.518673,31.726184],[108.524761,31.69973],[108.514794,31.69412],[108.532225,31.677168],[108.542831,31.673626],[108.561833,31.669726],[108.574501,31.67088],[108.576809,31.664114],[108.608725,31.650421],[108.624388,31.651655],[108.640101,31.637005],[108.64123,31.625179],[108.649381,31.621715],[108.65542,31.626095],[108.67673,31.62275],[108.683899,31.627449],[108.69151,31.625259],[108.701183,31.634098],[108.714686,31.627648],[108.728974,31.634457],[108.736192,31.633302],[108.742281,31.640906],[108.755342,31.647077],[108.758141,31.664313],[108.770612,31.682142],[108.782888,31.688828],[108.794525,31.684251],[108.809894,31.685764],[108.840533,31.684371],[108.860517,31.681068],[108.865378,31.671079],[108.879421,31.663835],[108.888407,31.654999],[108.898227,31.65484],[108.906182,31.661248],[108.91448,31.660731],[108.918113,31.652929],[108.937607,31.652969],[108.954792,31.66288],[108.955529,31.654601],[108.992649,31.652969],[109.000407,31.657029],[109.00134,31.671039],[109.007331,31.673188],[109.0008,31.686758],[109.007036,31.691135],[109.038117,31.690777],[109.052013,31.696507],[109.06149,31.704743],[109.092473,31.699531],[109.122965,31.700167],[109.133325,31.705936],[109.148154,31.703669],[109.158514,31.69396],[109.16696,31.700207],[109.178253,31.69587],[109.209187,31.69412],[109.224261,31.688629],[109.228533,31.690817],[109.222542,31.701242],[109.227403,31.717035],[109.225145,31.724951],[109.266734,31.714927],[109.281611,31.716876]]]]}},{"type":"Feature","properties":{"adcode":500230,"name":"丰都县","center":[107.73248,29.866424],"centroid":[107.830885,29.884753],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":27,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.701575,29.615443],[107.709431,29.60906],[107.716404,29.596659],[107.732263,29.585598],[107.757403,29.602636],[107.767862,29.597635],[107.772576,29.585883],[107.781267,29.582142],[107.7685,29.579254],[107.795801,29.567744],[107.791774,29.560952],[107.80351,29.563433],[107.80729,29.554606],[107.818928,29.554647],[107.825851,29.545005],[107.828551,29.556192],[107.835671,29.558877],[107.838863,29.570185],[107.832283,29.581247],[107.831743,29.59243],[107.839943,29.607393],[107.845246,29.628695],[107.842938,29.653569],[107.845786,29.660233],[107.857472,29.667629],[107.87073,29.667995],[107.897146,29.661493],[107.905543,29.662428],[107.922974,29.655235],[107.934218,29.655723],[107.948703,29.623126],[107.949881,29.601701],[107.961715,29.608978],[107.969129,29.620321],[107.979784,29.627435],[108.000259,29.626256],[108.024368,29.619467],[108.046513,29.622679],[108.056039,29.621581],[108.067872,29.614223],[108.078773,29.618817],[108.082161,29.611377],[108.098757,29.600684],[108.114175,29.599302],[108.117366,29.603449],[108.132391,29.603815],[108.153652,29.599749],[108.163374,29.603612],[108.167499,29.617679],[108.178547,29.619183],[108.182033,29.625972],[108.17894,29.647839],[108.168186,29.648083],[108.156107,29.644872],[108.149921,29.647636],[108.143587,29.659218],[108.156304,29.669579],[108.156157,29.676121],[108.174962,29.686075],[108.179529,29.699602],[108.169168,29.7087],[108.181051,29.734286],[108.17457,29.735463],[108.172213,29.745533],[108.178252,29.749877],[108.187925,29.743909],[108.204129,29.765182],[108.208204,29.764938],[108.217484,29.777887],[108.194112,29.790712],[108.18547,29.801628],[108.194014,29.812665],[108.190626,29.819441],[108.177859,29.822443],[108.172998,29.837656],[108.167008,29.838305],[108.14997,29.83011],[108.145992,29.846377],[108.122915,29.851771],[108.108823,29.848851],[108.099199,29.840657],[108.084125,29.838873],[108.058936,29.857246],[108.072488,29.870953],[108.071456,29.877157],[108.059869,29.889726],[108.042536,29.893456],[108.035907,29.90197],[108.049999,29.906226],[108.046316,29.912387],[108.036005,29.912225],[108.024908,29.934962],[108.014695,29.9472],[107.993336,29.96689],[108.002027,29.977544],[108.009687,29.978476],[108.018034,29.971589],[108.03247,29.990222],[108.024859,30.010957],[108.018476,30.014804],[108.02702,30.029056],[108.01661,30.042132],[108.007575,30.043508],[107.998492,30.053871],[107.987297,30.047921],[107.967558,30.055611],[107.948457,30.066458],[107.936378,30.069008],[107.908243,30.105748],[107.906525,30.112544],[107.895919,30.120067],[107.88109,30.103199],[107.87451,30.09976],[107.862186,30.113879],[107.84446,30.119865],[107.831939,30.108782],[107.81878,30.112058],[107.812937,30.118935],[107.819026,30.13394],[107.842103,30.155009],[107.845688,30.162974],[107.838617,30.168675],[107.811759,30.178337],[107.808567,30.184239],[107.794377,30.185816],[107.788436,30.190747],[107.765898,30.198224],[107.757502,30.21047],[107.758336,30.217016],[107.769139,30.224573],[107.769924,30.236572],[107.762019,30.240936],[107.745128,30.236774],[107.742084,30.225502],[107.734129,30.221098],[107.728728,30.23132],[107.721314,30.230189],[107.721216,30.21835],[107.704963,30.216491],[107.705356,30.224209],[107.714685,30.221421],[107.705945,30.230876],[107.709284,30.237946],[107.691264,30.234916],[107.675502,30.22336],[107.668088,30.22631],[107.666762,30.234754],[107.673145,30.238754],[107.675944,30.252812],[107.662588,30.261052],[107.656402,30.259598],[107.651884,30.241622],[107.642801,30.239562],[107.632882,30.213097],[107.626548,30.20655],[107.61005,30.209136],[107.605729,30.198628],[107.595909,30.198063],[107.604501,30.187392],[107.597922,30.179631],[107.581227,30.174941],[107.569983,30.166937],[107.572978,30.144374],[107.568706,30.139077],[107.582897,30.131595],[107.579361,30.119582],[107.570425,30.122252],[107.55815,30.114566],[107.55756,30.098344],[107.535268,30.088512],[107.528296,30.082888],[107.53954,30.072407],[107.539295,30.064192],[107.5308,30.059699],[107.491372,30.013306],[107.491322,30.004964],[107.483908,29.992693],[107.471338,29.989453],[107.487443,29.972076],[107.498197,29.972481],[107.500554,29.960611],[107.515186,29.959436],[107.523779,29.978678],[107.53355,29.968551],[107.546905,29.965675],[107.546807,29.958585],[107.56193,29.946146],[107.571898,29.951049],[107.57946,29.943877],[107.573126,29.933827],[107.579361,29.923939],[107.59473,29.917657],[107.602979,29.897389],[107.598707,29.888632],[107.613094,29.876955],[107.626892,29.874522],[107.616973,29.865884],[107.613585,29.856111],[107.604256,29.852014],[107.595369,29.835222],[107.605238,29.832423],[107.605336,29.808161],[107.622669,29.802562],[107.638627,29.813274],[107.638529,29.772976],[107.64226,29.76303],[107.625075,29.753896],[107.640345,29.740701],[107.632784,29.719016],[107.630427,29.701714],[107.64447,29.687821],[107.6565,29.686156],[107.670101,29.675064],[107.674176,29.663362],[107.684733,29.666532],[107.696616,29.660315],[107.718073,29.65682],[107.713752,29.642555],[107.698482,29.618614],[107.701575,29.615443]]]]}},{"type":"Feature","properties":{"adcode":500231,"name":"垫江县","center":[107.348692,30.330012],"centroid":[107.437814,30.253308],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":28,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.453171,30.001441],[107.466968,29.998606],[107.471338,29.989453],[107.483908,29.992693],[107.491322,30.004964],[107.491372,30.013306],[107.5308,30.059699],[107.539295,30.064192],[107.53954,30.072407],[107.528296,30.082888],[107.535268,30.088512],[107.55756,30.098344],[107.55815,30.114566],[107.570425,30.122252],[107.579361,30.119582],[107.582897,30.131595],[107.568706,30.139077],[107.572978,30.144374],[107.569983,30.166937],[107.581227,30.174941],[107.597922,30.179631],[107.604501,30.187392],[107.595909,30.198063],[107.584861,30.202185],[107.577299,30.221461],[107.56851,30.219198],[107.571505,30.208166],[107.563649,30.19875],[107.550097,30.19681],[107.54828,30.208651],[107.553583,30.213177],[107.544794,30.221057],[107.545825,30.227643],[107.554271,30.229583],[107.558395,30.244046],[107.573862,30.244693],[107.57342,30.256367],[107.567282,30.268201],[107.573322,30.274784],[107.587119,30.275188],[107.581767,30.287586],[107.597824,30.29445],[107.597283,30.313224],[107.572242,30.321257],[107.569836,30.326868],[107.583093,30.341801],[107.595025,30.351083],[107.602488,30.367869],[107.622767,30.384652],[107.631262,30.398568],[107.650362,30.406917],[107.661803,30.420387],[107.656205,30.431193],[107.673538,30.453851],[107.670346,30.464493],[107.660772,30.470136],[107.636957,30.470498],[107.637743,30.483032],[107.629298,30.485611],[107.611719,30.47211],[107.610197,30.48009],[107.593994,30.475174],[107.570523,30.47731],[107.562225,30.487949],[107.553436,30.491092],[107.55157,30.50322],[107.544352,30.498869],[107.533452,30.500843],[107.527559,30.490487],[107.516266,30.489198],[107.509097,30.495363],[107.496036,30.494638],[107.480029,30.478599],[107.463629,30.481984],[107.446837,30.49766],[107.425527,30.510835],[107.404855,30.516112],[107.388848,30.49089],[107.381237,30.485329],[107.360025,30.45627],[107.34554,30.425508],[107.341367,30.41212],[107.34284,30.401674],[107.33901,30.387072],[107.31878,30.364278],[107.304197,30.354594],[107.288779,30.337564],[107.277535,30.311246],[107.264866,30.289766],[107.255979,30.263799],[107.239432,30.237582],[107.228335,30.223805],[107.256568,30.205903],[107.277044,30.181086],[107.288484,30.171303],[107.269482,30.145992],[107.274098,30.135841],[107.291381,30.136327],[107.295555,30.122454],[107.286766,30.107892],[107.29089,30.097939],[107.28328,30.091021],[107.271741,30.09446],[107.269089,30.081148],[107.259072,30.075887],[107.247534,30.07528],[107.26521,30.062006],[107.266045,30.055045],[107.279204,30.04873],[107.27724,30.043144],[107.294867,30.044359],[107.307879,30.035493],[107.31166,30.02023],[107.304688,30.0161],[107.31112,30.008203],[107.294818,30.002696],[107.29418,29.997917],[107.307094,29.992328],[107.325556,29.973007],[107.335573,29.97398],[107.347995,29.980501],[107.362824,29.979853],[107.374068,29.973372],[107.436329,30.033833],[107.46029,30.01533],[107.451501,30.008203],[107.453171,30.001441]]]]}},{"type":"Feature","properties":{"adcode":500233,"name":"忠县","center":[108.037518,30.291537],"centroid":[107.914786,30.335722],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":29,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.223622,30.421274],[108.241937,30.443773],[108.232755,30.45502],[108.230496,30.476705],[108.207811,30.49766],[108.195045,30.514501],[108.184537,30.518167],[108.175552,30.510633],[108.165633,30.524411],[108.171378,30.539314],[108.163374,30.540805],[108.152523,30.535931],[108.153063,30.545879],[108.143587,30.566215],[108.12645,30.564],[108.120067,30.576965],[108.126647,30.577972],[108.127187,30.586104],[108.111621,30.59343],[108.105631,30.591458],[108.103863,30.573382],[108.088593,30.572617],[108.083339,30.579582],[108.072537,30.582159],[108.062667,30.574429],[108.052847,30.572094],[108.034778,30.574187],[108.029622,30.561544],[108.003795,30.542174],[107.990243,30.538871],[107.985676,30.531017],[107.972615,30.521913],[107.958621,30.531017],[107.953711,30.51434],[107.942025,30.498828],[107.939864,30.485893],[107.924839,30.494074],[107.916001,30.495323],[107.909422,30.502938],[107.897883,30.502938],[107.88546,30.512124],[107.886884,30.539556],[107.891352,30.54608],[107.885411,30.549544],[107.870386,30.547248],[107.860713,30.559088],[107.826145,30.554417],[107.829239,30.544671],[107.814017,30.521631],[107.819173,30.50882],[107.818142,30.497539],[107.810629,30.482428],[107.817455,30.471466],[107.80621,30.470861],[107.796488,30.479204],[107.796488,30.484805],[107.77783,30.497821],[107.777535,30.506121],[107.767911,30.513736],[107.757894,30.514058],[107.748123,30.521269],[107.741347,30.517885],[107.715716,30.482589],[107.695241,30.460986],[107.679479,30.438612],[107.661803,30.420387],[107.650362,30.406917],[107.631262,30.398568],[107.622767,30.384652],[107.602488,30.367869],[107.595025,30.351083],[107.583093,30.341801],[107.569836,30.326868],[107.572242,30.321257],[107.597283,30.313224],[107.597824,30.29445],[107.581767,30.287586],[107.587119,30.275188],[107.573322,30.274784],[107.567282,30.268201],[107.57342,30.256367],[107.573862,30.244693],[107.558395,30.244046],[107.554271,30.229583],[107.545825,30.227643],[107.544794,30.221057],[107.553583,30.213177],[107.54828,30.208651],[107.550097,30.19681],[107.563649,30.19875],[107.571505,30.208166],[107.56851,30.219198],[107.577299,30.221461],[107.584861,30.202185],[107.595909,30.198063],[107.605729,30.198628],[107.61005,30.209136],[107.626548,30.20655],[107.632882,30.213097],[107.642801,30.239562],[107.651884,30.241622],[107.656402,30.259598],[107.662588,30.261052],[107.675944,30.252812],[107.673145,30.238754],[107.666762,30.234754],[107.668088,30.22631],[107.675502,30.22336],[107.691264,30.234916],[107.709284,30.237946],[107.705945,30.230876],[107.714685,30.221421],[107.705356,30.224209],[107.704963,30.216491],[107.721216,30.21835],[107.721314,30.230189],[107.728728,30.23132],[107.734129,30.221098],[107.742084,30.225502],[107.745128,30.236774],[107.762019,30.240936],[107.769924,30.236572],[107.769139,30.224573],[107.758336,30.217016],[107.757502,30.21047],[107.765898,30.198224],[107.788436,30.190747],[107.794377,30.185816],[107.808567,30.184239],[107.811759,30.178337],[107.838617,30.168675],[107.845688,30.162974],[107.842103,30.155009],[107.819026,30.13394],[107.812937,30.118935],[107.81878,30.112058],[107.831939,30.108782],[107.84446,30.119865],[107.862186,30.113879],[107.87451,30.09976],[107.88109,30.103199],[107.895919,30.120067],[107.906525,30.112544],[107.908243,30.105748],[107.936378,30.069008],[107.948457,30.066458],[107.967558,30.055611],[107.987297,30.047921],[107.998492,30.053871],[108.00733,30.057028],[108.010571,30.071355],[108.021569,30.078032],[108.029622,30.089119],[108.034974,30.084183],[108.031144,30.072326],[108.037233,30.067591],[108.0554,30.072043],[108.083928,30.111209],[108.092374,30.129532],[108.075777,30.153917],[108.061587,30.157071],[108.070965,30.163702],[108.072438,30.175144],[108.085549,30.17862],[108.107595,30.207439],[108.120705,30.200568],[108.129887,30.210268],[108.119379,30.211803],[108.127383,30.223684],[108.124879,30.227199],[108.10843,30.219198],[108.101948,30.223482],[108.105533,30.232653],[108.097038,30.237259],[108.093994,30.253459],[108.103716,30.246995],[108.114273,30.251399],[108.121933,30.245824],[108.125861,30.235845],[108.129494,30.244531],[108.126303,30.255357],[108.141475,30.265495],[108.142212,30.273654],[108.129003,30.281125],[108.131606,30.288918],[108.127334,30.299982],[108.147318,30.297115],[108.147466,30.302606],[108.163473,30.321055],[108.163031,30.325294],[108.145894,30.334254],[108.127874,30.333487],[108.117072,30.329169],[108.094731,30.344667],[108.084419,30.343093],[108.084665,30.350115],[108.096449,30.358831],[108.12262,30.359799],[108.133128,30.362624],[108.152965,30.395019],[108.174619,30.410144],[108.186403,30.413854],[108.208351,30.408611],[108.223622,30.421274]]]]}},{"type":"Feature","properties":{"adcode":500235,"name":"云阳县","center":[108.697698,30.930529],"centroid":[108.856912,31.036349],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":30,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.90952,30.581273],[108.919488,30.589365],[108.943842,30.601843],[108.967509,30.624823],[108.978017,30.629813],[108.987494,30.623294],[108.999229,30.632066],[109.009737,30.627238],[109.021766,30.642366],[109.01558,30.648884],[109.022945,30.663567],[109.017544,30.675232],[109.024565,30.683154],[109.018919,30.696706],[109.030801,30.706598],[109.019655,30.711784],[109.018575,30.718297],[109.047348,30.730277],[109.047839,30.745309],[109.056579,30.754834],[109.059575,30.764598],[109.048821,30.777215],[109.044059,30.809873],[109.050785,30.814171],[109.05054,30.824773],[109.043224,30.831278],[109.051767,30.843524],[109.054615,30.860908],[109.0773,30.869096],[109.086531,30.858178],[109.108283,30.860145],[109.135485,30.866688],[109.130477,30.879732],[109.150118,30.878247],[109.144029,30.902165],[109.15547,30.907622],[109.162197,30.905776],[109.160969,30.916809],[109.151934,30.924151],[109.150609,30.936265],[109.157581,30.940637],[109.186306,30.936907],[109.200545,30.932936],[109.201822,30.927962],[109.215472,30.920781],[109.218762,30.926317],[109.220333,30.945369],[109.218221,30.963857],[109.211642,30.96935],[109.217583,30.982421],[109.238009,31.006432],[109.251021,31.029276],[109.244884,31.032201],[109.239875,31.04314],[109.228778,31.046866],[109.225243,31.053837],[109.214637,31.047907],[109.197648,31.053276],[109.190774,31.066335],[109.165045,31.068057],[109.145748,31.056921],[109.131557,31.054077],[109.119528,31.058123],[109.095271,31.061007],[109.096646,31.078391],[109.093946,31.09437],[109.100034,31.102579],[109.100231,31.121636],[109.080246,31.128641],[109.056187,31.132604],[109.055008,31.155537],[109.048576,31.164341],[109.048969,31.186787],[109.067431,31.179465],[109.074305,31.189467],[109.092816,31.192387],[109.092571,31.211986],[109.087464,31.225703],[109.072685,31.247015],[109.068069,31.27008],[109.062717,31.276355],[109.042978,31.283349],[109.033305,31.290862],[109.055057,31.326301],[109.050294,31.340721],[109.055352,31.357054],[109.05162,31.367117],[109.029181,31.370032],[109.020146,31.375781],[108.992207,31.380812],[108.983418,31.385762],[108.971487,31.380812],[108.962452,31.385722],[108.948409,31.382728],[108.936035,31.390991],[108.927197,31.386001],[108.916837,31.387399],[108.908146,31.383566],[108.900142,31.387558],[108.88988,31.383566],[108.886394,31.372148],[108.892826,31.364641],[108.89042,31.354738],[108.893268,31.342358],[108.887572,31.336007],[108.869896,31.339562],[108.865035,31.343716],[108.837096,31.346432],[108.834739,31.35382],[108.823053,31.356815],[108.822071,31.370271],[108.83248,31.375302],[108.816866,31.390233],[108.798748,31.396859],[108.795752,31.403086],[108.809894,31.417414],[108.800221,31.425155],[108.779205,31.435251],[108.759908,31.438602],[108.757797,31.430941],[108.742084,31.420087],[108.740022,31.407676],[108.731528,31.403285],[108.736389,31.395742],[108.729956,31.390752],[108.712525,31.394584],[108.694554,31.387199],[108.693474,31.377418],[108.709186,31.374983],[108.696567,31.359011],[108.701527,31.348988],[108.698237,31.343956],[108.683261,31.34084],[108.644176,31.339482],[108.63578,31.329896],[108.639806,31.31955],[108.659054,31.298535],[108.654586,31.289184],[108.63632,31.283509],[108.643489,31.268721],[108.631262,31.257249],[108.622768,31.259488],[108.618643,31.252212],[108.596646,31.230622],[108.588741,31.201587],[108.587759,31.185066],[108.578036,31.180065],[108.583585,31.174864],[108.598414,31.170943],[108.601851,31.160099],[108.576956,31.142851],[108.567823,31.140529],[108.562717,31.130443],[108.562619,31.115791],[108.547544,31.105261],[108.558887,31.089404],[108.537921,31.095491],[108.539934,31.082957],[108.53031,31.083838],[108.510964,31.07791],[108.511995,31.074145],[108.488181,31.064733],[108.486217,31.057322],[108.476691,31.052795],[108.48003,31.037811],[108.474334,31.022544],[108.451256,31.013527],[108.432156,31.012725],[108.418015,31.006072],[108.41497,30.998897],[108.426509,30.998216],[108.440356,31.002545],[108.455626,30.994728],[108.45327,30.988755],[108.454743,30.970232],[108.460537,30.967426],[108.486413,30.977008],[108.496626,30.972839],[108.50409,30.977289],[108.501094,30.98651],[108.506643,30.992604],[108.51666,30.990559],[108.533894,30.996251],[108.531243,30.978051],[108.523632,30.973159],[108.537577,30.958123],[108.552602,30.915405],[108.566448,30.912396],[108.593307,30.920259],[108.608578,30.93807],[108.61884,30.934741],[108.619233,30.926999],[108.628169,30.918253],[108.623013,30.912837],[108.621589,30.888561],[108.625419,30.875358],[108.634798,30.885271],[108.653014,30.89105],[108.665977,30.867972],[108.671968,30.852116],[108.685078,30.845773],[108.685127,30.835976],[108.698482,30.822885],[108.699955,30.811841],[108.715177,30.815094],[108.733393,30.81405],[108.738549,30.808026],[108.740808,30.787259],[108.74724,30.782116],[108.740169,30.775527],[108.749842,30.74555],[108.754998,30.740044],[108.76639,30.74141],[108.762609,30.728106],[108.766586,30.720548],[108.763444,30.713031],[108.789762,30.714277],[108.79261,30.706558],[108.781022,30.697028],[108.779254,30.685125],[108.785883,30.683516],[108.818094,30.693771],[108.823347,30.69168],[108.828699,30.679414],[108.836016,30.678449],[108.872007,30.690112],[108.883546,30.695661],[108.884331,30.687337],[108.896312,30.684039],[108.899946,30.676438],[108.901713,30.646792],[108.871565,30.618103],[108.869896,30.610979],[108.90952,30.581273]]]]}},{"type":"Feature","properties":{"adcode":500236,"name":"奉节县","center":[109.465774,31.019967],"centroid":[109.349632,30.952293],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":31,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.103668,30.565812],[109.113488,30.548658],[109.12483,30.538912],[109.124389,30.531702],[109.139463,30.534562],[109.141181,30.525096],[109.150609,30.527392],[109.164799,30.538187],[109.17133,30.547007],[109.192787,30.546282],[109.222788,30.569597],[109.247731,30.583205],[109.227845,30.58087],[109.227551,30.585661],[109.251169,30.592907],[109.278813,30.610174],[109.299534,30.630577],[109.313577,30.610174],[109.32816,30.616091],[109.323299,30.604137],[109.314509,30.59979],[109.344265,30.577126],[109.361156,30.554739],[109.361058,30.550994],[109.342252,30.529567],[109.337145,30.520826],[109.341564,30.512728],[109.342841,30.494718],[109.352072,30.487183],[109.368668,30.500279],[109.380846,30.518288],[109.393808,30.531138],[109.418114,30.560014],[109.428032,30.57616],[109.437852,30.598059],[109.449342,30.603735],[109.456511,30.613797],[109.465889,30.619511],[109.48278,30.623173],[109.493337,30.637176],[109.514696,30.655401],[109.528739,30.663929],[109.537921,30.663969],[109.541407,30.65166],[109.533698,30.641562],[109.538756,30.638424],[109.562865,30.646752],[109.574109,30.646872],[109.577104,30.655321],[109.588005,30.664693],[109.581622,30.670847],[109.590656,30.693409],[109.602244,30.698838],[109.62542,30.702657],[109.649038,30.71894],[109.660773,30.73727],[109.656698,30.76046],[109.659153,30.761987],[109.649725,30.778782],[109.644226,30.794128],[109.646435,30.803929],[109.636517,30.821922],[109.628661,30.820998],[109.607203,30.838225],[109.608087,30.846214],[109.615256,30.848222],[109.61506,30.861951],[109.588839,30.865885],[109.585648,30.871384],[109.569543,30.873712],[109.561392,30.893698],[109.574207,30.900961],[109.594584,30.902044],[109.594879,30.905415],[109.612752,30.90389],[109.609904,30.91693],[109.603079,30.922345],[109.59812,30.936465],[109.601557,30.941639],[109.596941,30.95327],[109.601999,30.962814],[109.60082,30.977129],[109.61177,30.986911],[109.612555,30.995971],[109.598611,31.010841],[109.605829,31.017655],[109.662737,31.042338],[109.685127,31.053516],[109.72107,31.074346],[109.724507,31.090125],[109.744442,31.100616],[109.753428,31.113389],[109.764819,31.11495],[109.758289,31.129242],[109.769533,31.143771],[109.770564,31.16166],[109.760646,31.175144],[109.742773,31.178185],[109.727944,31.171743],[109.703688,31.169903],[109.692493,31.172584],[109.668629,31.185466],[109.64511,31.177905],[109.63033,31.189147],[109.624389,31.190027],[109.622523,31.204747],[109.631951,31.217505],[109.629545,31.225703],[109.61668,31.229662],[109.588201,31.223384],[109.581572,31.225743],[109.569346,31.244456],[109.561883,31.243976],[109.55712,31.251053],[109.530409,31.253891],[109.518526,31.250333],[109.512487,31.243217],[109.497069,31.244816],[109.493533,31.249454],[109.479638,31.251772],[109.462698,31.250693],[109.450766,31.246535],[109.45003,31.238979],[109.435741,31.231981],[109.431617,31.240058],[109.415511,31.245496],[109.393857,31.242897],[109.387867,31.248654],[109.39042,31.262326],[109.376623,31.276236],[109.374757,31.286427],[109.354134,31.286826],[109.355853,31.295578],[109.334396,31.306925],[109.326392,31.324064],[109.322415,31.34779],[109.272577,31.355657],[109.266292,31.35985],[109.242085,31.362126],[109.235014,31.356975],[109.224114,31.362206],[109.213606,31.358332],[109.197206,31.362126],[109.176534,31.361527],[109.138137,31.366279],[109.123357,31.37083],[109.102735,31.364162],[109.079117,31.370112],[109.065712,31.364681],[109.05162,31.367117],[109.055352,31.357054],[109.050294,31.340721],[109.055057,31.326301],[109.033305,31.290862],[109.042978,31.283349],[109.062717,31.276355],[109.068069,31.27008],[109.072685,31.247015],[109.087464,31.225703],[109.092571,31.211986],[109.092816,31.192387],[109.074305,31.189467],[109.067431,31.179465],[109.048969,31.186787],[109.048576,31.164341],[109.055008,31.155537],[109.056187,31.132604],[109.080246,31.128641],[109.100231,31.121636],[109.100034,31.102579],[109.093946,31.09437],[109.096646,31.078391],[109.095271,31.061007],[109.119528,31.058123],[109.131557,31.054077],[109.145748,31.056921],[109.165045,31.068057],[109.190774,31.066335],[109.197648,31.053276],[109.214637,31.047907],[109.225243,31.053837],[109.228778,31.046866],[109.239875,31.04314],[109.244884,31.032201],[109.251021,31.029276],[109.238009,31.006432],[109.217583,30.982421],[109.211642,30.96935],[109.218221,30.963857],[109.220333,30.945369],[109.218762,30.926317],[109.215472,30.920781],[109.201822,30.927962],[109.200545,30.932936],[109.186306,30.936907],[109.157581,30.940637],[109.150609,30.936265],[109.151934,30.924151],[109.160969,30.916809],[109.162197,30.905776],[109.15547,30.907622],[109.144029,30.902165],[109.150118,30.878247],[109.130477,30.879732],[109.135485,30.866688],[109.108283,30.860145],[109.086531,30.858178],[109.0773,30.869096],[109.054615,30.860908],[109.051767,30.843524],[109.043224,30.831278],[109.05054,30.824773],[109.050785,30.814171],[109.044059,30.809873],[109.048821,30.777215],[109.059575,30.764598],[109.056579,30.754834],[109.047839,30.745309],[109.047348,30.730277],[109.018575,30.718297],[109.019655,30.711784],[109.030801,30.706598],[109.018919,30.696706],[109.024565,30.683154],[109.017544,30.675232],[109.022945,30.663567],[109.01558,30.648884],[109.021766,30.642366],[109.045728,30.653189],[109.049165,30.645545],[109.070181,30.640274],[109.088053,30.646631],[109.096646,30.638745],[109.111917,30.646108],[109.120951,30.635768],[109.121737,30.628726],[109.112506,30.61271],[109.105926,30.610738],[109.105534,30.585661],[109.102686,30.580146],[109.101114,30.579542],[109.106123,30.570765],[109.103668,30.565812]]],[[[109.101114,30.579542],[109.102686,30.580146],[109.105534,30.585661],[109.105926,30.610738],[109.09316,30.609007],[109.083585,30.598261],[109.092865,30.578737],[109.098659,30.579099],[109.101114,30.579542]]],[[[109.098659,30.579099],[109.092865,30.578737],[109.103668,30.565812],[109.106123,30.570765],[109.098659,30.579099]]]]}},{"type":"Feature","properties":{"adcode":500237,"name":"巫山县","center":[109.878928,31.074843],"centroid":[109.901246,31.115189],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":32,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.659153,30.761987],[109.685373,30.768657],[109.692149,30.778902],[109.702117,30.783643],[109.702657,30.770264],[109.718124,30.778661],[109.716601,30.80168],[109.729613,30.815376],[109.759074,30.832804],[109.780777,30.848583],[109.797619,30.855609],[109.81942,30.860225],[109.856099,30.880254],[109.878244,30.889163],[109.894545,30.899797],[109.905642,30.899797],[109.932304,30.887679],[109.940897,30.889685],[109.943696,30.87897],[109.958377,30.877445],[109.975956,30.888682],[109.995056,30.887839],[110.008215,30.883585],[110.005024,30.870381],[110.017937,30.855328],[110.019607,30.829592],[110.03198,30.820476],[110.039198,30.820516],[110.042488,30.80666],[110.052996,30.799591],[110.082309,30.799591],[110.089527,30.816058],[110.095861,30.82156],[110.095812,30.829873],[110.115306,30.845492],[110.124095,30.868133],[110.144324,30.897229],[110.151837,30.912316],[110.145601,30.922145],[110.153899,30.953832],[110.163769,30.961371],[110.161657,30.968308],[110.173245,30.979895],[110.172165,30.98659],[110.163572,30.991641],[110.136075,30.986751],[110.140986,31.00503],[110.140151,31.030638],[110.120854,31.032001],[110.126648,31.054678],[110.13308,31.059806],[110.122131,31.072904],[110.120117,31.088844],[110.12871,31.095131],[110.135437,31.106262],[110.145847,31.108144],[110.146927,31.116912],[110.161264,31.116111],[110.180218,31.121676],[110.1894,31.129482],[110.186895,31.145332],[110.198876,31.156538],[110.196912,31.163581],[110.186404,31.169583],[110.180218,31.179585],[110.176535,31.198067],[110.178008,31.204867],[110.169612,31.227943],[110.174866,31.243497],[110.171428,31.250573],[110.162443,31.251932],[110.156158,31.277315],[110.163965,31.30321],[110.159644,31.315355],[110.151739,31.317872],[110.157975,31.333491],[110.14732,31.34783],[110.14948,31.354299],[110.140053,31.368315],[110.145307,31.381331],[110.140004,31.390472],[110.127384,31.393386],[110.11889,31.400651],[110.115158,31.412265],[110.108824,31.408314],[110.100084,31.411268],[110.089773,31.408674],[110.053978,31.410909],[110.049411,31.41877],[110.034484,31.430822],[110.033502,31.439679],[110.020687,31.442073],[110.003649,31.453642],[109.996382,31.469359],[109.987789,31.474663],[109.967903,31.474304],[109.954744,31.468401],[109.94291,31.475341],[109.938049,31.458748],[109.94183,31.448456],[109.937804,31.440836],[109.940553,31.427869],[109.935005,31.414381],[109.922828,31.394664],[109.911878,31.392149],[109.890126,31.392069],[109.853496,31.382209],[109.830468,31.388317],[109.821384,31.387638],[109.803315,31.378336],[109.789223,31.377857],[109.785638,31.361088],[109.775425,31.361527],[109.775032,31.354179],[109.761431,31.346951],[109.749892,31.35362],[109.730006,31.356176],[109.720972,31.349746],[109.71503,31.338644],[109.716945,31.332013],[109.711446,31.31959],[109.713803,31.299094],[109.698679,31.302171],[109.690676,31.296577],[109.662443,31.294499],[109.644373,31.310641],[109.626893,31.295937],[109.61285,31.295018],[109.597776,31.268442],[109.602833,31.262686],[109.587366,31.260967],[109.569346,31.244456],[109.581572,31.225743],[109.588201,31.223384],[109.61668,31.229662],[109.629545,31.225703],[109.631951,31.217505],[109.622523,31.204747],[109.624389,31.190027],[109.63033,31.189147],[109.64511,31.177905],[109.668629,31.185466],[109.692493,31.172584],[109.703688,31.169903],[109.727944,31.171743],[109.742773,31.178185],[109.760646,31.175144],[109.770564,31.16166],[109.769533,31.143771],[109.758289,31.129242],[109.764819,31.11495],[109.753428,31.113389],[109.744442,31.100616],[109.724507,31.090125],[109.72107,31.074346],[109.685127,31.053516],[109.662737,31.042338],[109.605829,31.017655],[109.598611,31.010841],[109.612555,30.995971],[109.61177,30.986911],[109.60082,30.977129],[109.601999,30.962814],[109.596941,30.95327],[109.601557,30.941639],[109.59812,30.936465],[109.603079,30.922345],[109.609904,30.91693],[109.612752,30.90389],[109.594879,30.905415],[109.594584,30.902044],[109.574207,30.900961],[109.561392,30.893698],[109.569543,30.873712],[109.585648,30.871384],[109.588839,30.865885],[109.61506,30.861951],[109.615256,30.848222],[109.608087,30.846214],[109.607203,30.838225],[109.628661,30.820998],[109.636517,30.821922],[109.646435,30.803929],[109.644226,30.794128],[109.649725,30.778782],[109.659153,30.761987]]]]}},{"type":"Feature","properties":{"adcode":500238,"name":"巫溪县","center":[109.628912,31.3966],"centroid":[109.35337,31.503107],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":33,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.94291,31.475341],[109.942174,31.483238],[109.957248,31.490774],[109.961323,31.499268],[109.98229,31.512504],[109.965595,31.50788],[109.945267,31.506684],[109.934907,31.517727],[109.923859,31.521474],[109.894594,31.519162],[109.878194,31.528848],[109.869209,31.530124],[109.860174,31.543555],[109.83798,31.555272],[109.822071,31.553757],[109.801007,31.541443],[109.788584,31.55045],[109.765457,31.549653],[109.760204,31.547182],[109.735309,31.546106],[109.718909,31.556985],[109.727502,31.570731],[109.746406,31.577982],[109.745326,31.596426],[109.76423,31.602998],[109.737421,31.628683],[109.740416,31.635173],[109.740612,31.663636],[109.731872,31.673148],[109.728091,31.688828],[109.731086,31.700446],[109.709531,31.701122],[109.696028,31.70709],[109.693376,31.716558],[109.683016,31.71978],[109.659005,31.716956],[109.644913,31.720854],[109.617024,31.711585],[109.606172,31.714688],[109.580394,31.72869],[109.572096,31.726343],[109.549755,31.730002],[109.501095,31.717155],[109.491029,31.720973],[109.477134,31.720218],[109.472714,31.714649],[109.459703,31.715205],[109.45656,31.722008],[109.4462,31.722883],[109.425872,31.718786],[109.420274,31.720655],[109.411632,31.708244],[109.389487,31.705101],[109.361254,31.708642],[109.3232,31.70888],[109.302038,31.71067],[109.281611,31.716876],[109.266734,31.714927],[109.225145,31.724951],[109.227403,31.717035],[109.222542,31.701242],[109.228533,31.690817],[109.224261,31.688629],[109.209187,31.69412],[109.178253,31.69587],[109.16696,31.700207],[109.158514,31.69396],[109.148154,31.703669],[109.133325,31.705936],[109.122965,31.700167],[109.092473,31.699531],[109.06149,31.704743],[109.052013,31.696507],[109.038117,31.690777],[109.007036,31.691135],[109.0008,31.686758],[109.007331,31.673188],[109.00134,31.671039],[109.000407,31.657029],[108.992649,31.652969],[108.955529,31.654601],[108.954792,31.66288],[108.937607,31.652969],[108.918113,31.652929],[108.91448,31.660731],[108.906182,31.661248],[108.898227,31.65484],[108.892728,31.642578],[108.893268,31.632187],[108.887719,31.625657],[108.895821,31.614587],[108.894888,31.606025],[108.877997,31.602799],[108.865133,31.592801],[108.853398,31.578939],[108.837096,31.574237],[108.824133,31.578899],[108.820303,31.574596],[108.801399,31.574078],[108.794034,31.551366],[108.777094,31.543635],[108.769483,31.529845],[108.766881,31.513621],[108.761087,31.503893],[108.748026,31.505208],[108.730055,31.499746],[108.721707,31.503255],[108.703982,31.503972],[108.694554,31.499347],[108.69971,31.491652],[108.697255,31.476737],[108.703098,31.463814],[108.726617,31.455118],[108.740071,31.441834],[108.752298,31.443749],[108.759908,31.438602],[108.779205,31.435251],[108.800221,31.425155],[108.809894,31.417414],[108.795752,31.403086],[108.798748,31.396859],[108.816866,31.390233],[108.83248,31.375302],[108.822071,31.370271],[108.823053,31.356815],[108.834739,31.35382],[108.837096,31.346432],[108.865035,31.343716],[108.869896,31.339562],[108.887572,31.336007],[108.893268,31.342358],[108.89042,31.354738],[108.892826,31.364641],[108.886394,31.372148],[108.88988,31.383566],[108.900142,31.387558],[108.908146,31.383566],[108.916837,31.387399],[108.927197,31.386001],[108.936035,31.390991],[108.948409,31.382728],[108.962452,31.385722],[108.971487,31.380812],[108.983418,31.385762],[108.992207,31.380812],[109.020146,31.375781],[109.029181,31.370032],[109.05162,31.367117],[109.065712,31.364681],[109.079117,31.370112],[109.102735,31.364162],[109.123357,31.37083],[109.138137,31.366279],[109.176534,31.361527],[109.197206,31.362126],[109.213606,31.358332],[109.224114,31.362206],[109.235014,31.356975],[109.242085,31.362126],[109.266292,31.35985],[109.272577,31.355657],[109.322415,31.34779],[109.326392,31.324064],[109.334396,31.306925],[109.355853,31.295578],[109.354134,31.286826],[109.374757,31.286427],[109.376623,31.276236],[109.39042,31.262326],[109.387867,31.248654],[109.393857,31.242897],[109.415511,31.245496],[109.431617,31.240058],[109.435741,31.231981],[109.45003,31.238979],[109.450766,31.246535],[109.462698,31.250693],[109.479638,31.251772],[109.493533,31.249454],[109.497069,31.244816],[109.512487,31.243217],[109.518526,31.250333],[109.530409,31.253891],[109.55712,31.251053],[109.561883,31.243976],[109.569346,31.244456],[109.587366,31.260967],[109.602833,31.262686],[109.597776,31.268442],[109.61285,31.295018],[109.626893,31.295937],[109.644373,31.310641],[109.662443,31.294499],[109.690676,31.296577],[109.698679,31.302171],[109.713803,31.299094],[109.711446,31.31959],[109.716945,31.332013],[109.71503,31.338644],[109.720972,31.349746],[109.730006,31.356176],[109.749892,31.35362],[109.761431,31.346951],[109.775032,31.354179],[109.775425,31.361527],[109.785638,31.361088],[109.789223,31.377857],[109.803315,31.378336],[109.821384,31.387638],[109.830468,31.388317],[109.853496,31.382209],[109.890126,31.392069],[109.911878,31.392149],[109.922828,31.394664],[109.935005,31.414381],[109.940553,31.427869],[109.937804,31.440836],[109.94183,31.448456],[109.938049,31.458748],[109.94291,31.475341]]]]}},{"type":"Feature","properties":{"adcode":500240,"name":"石柱土家族自治县","center":[108.112448,29.99853],"centroid":[108.298494,30.093676],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":34,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.424054,30.488956],[108.42101,30.497176],[108.427786,30.512567],[108.412368,30.503059],[108.409962,30.517563],[108.399553,30.520504],[108.402253,30.529688],[108.409717,30.532749],[108.410404,30.543261],[108.404315,30.548295],[108.394593,30.536737],[108.378734,30.534884],[108.344657,30.476987],[108.338814,30.470337],[108.33248,30.449336],[108.317062,30.433129],[108.315835,30.425387],[108.298944,30.407562],[108.296538,30.401109],[108.275031,30.405546],[108.261479,30.388605],[108.254261,30.403529],[108.236732,30.409216],[108.223622,30.421274],[108.208351,30.408611],[108.186403,30.413854],[108.174619,30.410144],[108.152965,30.395019],[108.133128,30.362624],[108.12262,30.359799],[108.096449,30.358831],[108.084665,30.350115],[108.084419,30.343093],[108.094731,30.344667],[108.117072,30.329169],[108.127874,30.333487],[108.145894,30.334254],[108.163031,30.325294],[108.163473,30.321055],[108.147466,30.302606],[108.147318,30.297115],[108.127334,30.299982],[108.131606,30.288918],[108.129003,30.281125],[108.142212,30.273654],[108.141475,30.265495],[108.126303,30.255357],[108.129494,30.244531],[108.125861,30.235845],[108.121933,30.245824],[108.114273,30.251399],[108.103716,30.246995],[108.093994,30.253459],[108.097038,30.237259],[108.105533,30.232653],[108.101948,30.223482],[108.10843,30.219198],[108.124879,30.227199],[108.127383,30.223684],[108.119379,30.211803],[108.129887,30.210268],[108.120705,30.200568],[108.107595,30.207439],[108.085549,30.17862],[108.072438,30.175144],[108.070965,30.163702],[108.061587,30.157071],[108.075777,30.153917],[108.092374,30.129532],[108.083928,30.111209],[108.0554,30.072043],[108.037233,30.067591],[108.031144,30.072326],[108.034974,30.084183],[108.029622,30.089119],[108.021569,30.078032],[108.010571,30.071355],[108.00733,30.057028],[107.998492,30.053871],[108.007575,30.043508],[108.01661,30.042132],[108.02702,30.029056],[108.018476,30.014804],[108.024859,30.010957],[108.03247,29.990222],[108.018034,29.971589],[108.009687,29.978476],[108.002027,29.977544],[107.993336,29.96689],[108.014695,29.9472],[108.024908,29.934962],[108.036005,29.912225],[108.046316,29.912387],[108.049999,29.906226],[108.035907,29.90197],[108.042536,29.893456],[108.059869,29.889726],[108.071456,29.877157],[108.072488,29.870953],[108.058936,29.857246],[108.084125,29.838873],[108.099199,29.840657],[108.108823,29.848851],[108.122915,29.851771],[108.145992,29.846377],[108.14997,29.83011],[108.167008,29.838305],[108.172998,29.837656],[108.177859,29.822443],[108.190626,29.819441],[108.194014,29.812665],[108.18547,29.801628],[108.194112,29.790712],[108.217484,29.777887],[108.208204,29.764938],[108.204129,29.765182],[108.187925,29.743909],[108.178252,29.749877],[108.172213,29.745533],[108.17457,29.735463],[108.181051,29.734286],[108.169168,29.7087],[108.179529,29.699602],[108.174962,29.686075],[108.156157,29.676121],[108.156304,29.669579],[108.143587,29.659218],[108.149921,29.647636],[108.156107,29.644872],[108.168186,29.648083],[108.169267,29.658445],[108.195143,29.666979],[108.208891,29.685343],[108.205847,29.69948],[108.22156,29.712153],[108.217975,29.716336],[108.225193,29.725514],[108.22097,29.732499],[108.227992,29.747076],[108.239384,29.745289],[108.245669,29.750892],[108.27071,29.733149],[108.295752,29.729007],[108.298895,29.734773],[108.30513,29.72588],[108.315785,29.722793],[108.326391,29.711747],[108.350156,29.721047],[108.358013,29.720763],[108.373922,29.712803],[108.368078,29.726042],[108.365918,29.748537],[108.36091,29.756819],[108.383987,29.795501],[108.3942,29.816479],[108.368177,29.818913],[108.372841,29.834127],[108.371466,29.84159],[108.391598,29.853231],[108.386933,29.860004],[108.392777,29.863492],[108.402793,29.855908],[108.433776,29.880077],[108.453122,29.871683],[108.457394,29.865438],[108.468049,29.864181],[108.489163,29.867466],[108.495693,29.876914],[108.509049,29.878617],[108.517052,29.865479],[108.516169,29.885631],[108.524221,29.896821],[108.524074,29.911658],[108.515874,29.930383],[108.519458,29.943512],[108.534238,29.971833],[108.542634,29.99735],[108.528886,30.00545],[108.530703,30.043104],[108.526185,30.04954],[108.531783,30.055085],[108.524221,30.058647],[108.516414,30.05298],[108.516267,30.064232],[108.525252,30.073824],[108.532323,30.073702],[108.533207,30.084183],[108.546071,30.104372],[108.561489,30.144132],[108.56748,30.155697],[108.552258,30.163338],[108.553829,30.174537],[108.568904,30.225623],[108.56743,30.23435],[108.573519,30.237178],[108.58167,30.255882],[108.567332,30.254872],[108.562029,30.26287],[108.545237,30.269978],[108.54617,30.276279],[108.537921,30.278581],[108.533305,30.292108],[108.52486,30.294733],[108.526382,30.305271],[108.51499,30.315162],[108.498394,30.316332],[108.48273,30.33603],[108.46908,30.343819],[108.459898,30.359799],[108.451011,30.355603],[108.432696,30.35411],[108.421943,30.366457],[108.403284,30.374728],[108.399454,30.389412],[108.420912,30.394131],[108.425331,30.399052],[108.421697,30.410547],[108.430486,30.415628],[108.421206,30.4295],[108.411779,30.436919],[108.421796,30.448852],[108.421206,30.464372],[108.414332,30.475818],[108.424054,30.488956]]]]}},{"type":"Feature","properties":{"adcode":500241,"name":"秀山土家族苗族自治县","center":[108.996043,28.444772],"centroid":[109.018121,28.491722],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":35,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.723377,28.491963],[108.729416,28.470918],[108.749106,28.461052],[108.746749,28.450239],[108.773509,28.438315],[108.779303,28.427418],[108.763296,28.398585],[108.762805,28.385791],[108.783084,28.380402],[108.777732,28.367441],[108.777929,28.347236],[108.76143,28.324557],[108.770072,28.314965],[108.763738,28.305619],[108.741053,28.294914],[108.725783,28.280296],[108.7276,28.259827],[108.737567,28.251424],[108.739678,28.226252],[108.749548,28.22757],[108.758681,28.220236],[108.758533,28.196046],[108.765309,28.192131],[108.773313,28.213478],[108.796636,28.22378],[108.807389,28.242855],[108.821776,28.245121],[108.826539,28.22551],[108.836212,28.20738],[108.855116,28.199879],[108.864445,28.206143],[108.897245,28.219536],[108.91227,28.21558],[108.919488,28.217764],[108.933187,28.207874],[108.927884,28.20025],[108.929407,28.190565],[108.956609,28.182321],[108.979539,28.171274],[108.985775,28.161339],[109.001537,28.16138],[109.009786,28.167893],[109.014647,28.17923],[109.013812,28.199591],[109.026186,28.220154],[109.038215,28.217434],[109.041603,28.20536],[109.06144,28.200126],[109.070033,28.191471],[109.086384,28.184712],[109.089477,28.196252],[109.101409,28.201404],[109.096106,28.22106],[109.085353,28.232803],[109.081523,28.24854],[109.088004,28.261392],[109.095959,28.261804],[109.117563,28.278607],[109.11614,28.288614],[109.126844,28.296932],[109.14123,28.320564],[109.137744,28.33423],[109.150805,28.344684],[109.151689,28.350528],[109.138579,28.358635],[109.144766,28.36382],[109.153113,28.38106],[109.153653,28.39731],[109.157139,28.403398],[109.154291,28.417588],[109.164946,28.414997],[109.168383,28.432064],[109.176731,28.43153],[109.180708,28.439466],[109.176583,28.446169],[109.192394,28.464423],[109.191756,28.470877],[109.215521,28.48214],[109.229613,28.474906],[109.274344,28.494676],[109.271988,28.51399],[109.280384,28.5204],[109.274688,28.524837],[109.27459,28.539217],[109.288928,28.546324],[109.29482,28.566286],[109.304738,28.579017],[109.3205,28.579797],[109.309354,28.598808],[109.306604,28.62069],[109.300172,28.626436],[109.287013,28.626806],[109.278469,28.612439],[109.258878,28.605583],[109.249401,28.608662],[109.236144,28.619417],[109.201478,28.598439],[109.186355,28.610632],[109.181395,28.621716],[109.193131,28.636205],[109.202902,28.63797],[109.221069,28.649133],[109.251758,28.660828],[109.270907,28.671783],[109.266194,28.680194],[109.252936,28.691558],[109.265015,28.699474],[109.271497,28.698941],[109.28495,28.713871],[109.294672,28.71912],[109.28824,28.727322],[109.300663,28.739665],[109.297668,28.748152],[109.278469,28.751514],[109.273019,28.760902],[109.256177,28.765616],[109.261333,28.774962],[109.241299,28.776519],[109.241888,28.794266],[109.246406,28.801683],[109.245817,28.812992],[109.239679,28.827168],[109.242674,28.85105],[109.234032,28.863828],[109.235505,28.880372],[109.211004,28.882788],[109.197943,28.875131],[109.197599,28.870217],[109.175896,28.8515],[109.166223,28.852402],[109.157188,28.844824],[109.147908,28.84552],[109.130919,28.832453],[109.117465,28.83106],[109.111622,28.824669],[109.104502,28.826595],[109.093455,28.819261],[109.092718,28.809305],[109.106712,28.816311],[109.105681,28.805699],[109.094338,28.79234],[109.05982,28.768198],[109.062128,28.759385],[109.05653,28.741879],[109.044991,28.719325],[109.01941,28.690696],[108.999622,28.699228],[108.990636,28.67884],[108.982633,28.682327],[108.961126,28.630213],[108.954252,28.610016],[108.936723,28.616913],[108.915314,28.621962],[108.895379,28.614737],[108.881484,28.621716],[108.854821,28.613136],[108.839256,28.604146],[108.819174,28.60082],[108.815295,28.593471],[108.799877,28.583657],[108.785981,28.562096],[108.785294,28.54924],[108.775964,28.544968],[108.763984,28.545707],[108.753329,28.532972],[108.730889,28.517853],[108.723377,28.491963]]]]}},{"type":"Feature","properties":{"adcode":500242,"name":"酉阳土家族苗族自治县","center":[108.767201,28.839828],"centroid":[108.800321,28.89987],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":36,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.235505,28.880372],[109.239924,28.892042],[109.256864,28.907721],[109.25544,28.926141],[109.261038,28.950532],[109.272331,28.970949],[109.284165,28.972299],[109.292463,28.987639],[109.292365,29.004695],[109.295458,29.016391],[109.304836,29.020808],[109.319616,29.04256],[109.312251,29.066351],[109.301154,29.070643],[109.287847,29.07101],[109.266194,29.079552],[109.257748,29.086745],[109.237273,29.086704],[109.22593,29.113508],[109.232559,29.120086],[109.228533,29.129972],[109.215521,29.145289],[109.203098,29.151823],[109.18007,29.171955],[109.16254,29.180693],[109.154488,29.172363],[109.138824,29.169505],[109.123014,29.191267],[109.122965,29.199268],[109.110395,29.215105],[109.118545,29.232409],[109.141967,29.270475],[109.129986,29.282468],[109.106467,29.288545],[109.10465,29.293154],[109.113881,29.314196],[109.108725,29.319333],[109.114568,29.332787],[109.110002,29.342693],[109.112506,29.360995],[109.101704,29.373506],[109.090361,29.378681],[109.080786,29.390661],[109.06419,29.401743],[109.053191,29.40272],[109.039934,29.389805],[109.033453,29.378233],[109.034729,29.360261],[109.009786,29.36022],[108.999425,29.363929],[108.994761,29.355085],[108.985088,29.350479],[108.986168,29.336742],[108.97237,29.32924],[108.956069,29.330953],[108.919734,29.326305],[108.908784,29.312972],[108.903432,29.296416],[108.915462,29.293561],[108.919783,29.283732],[108.93903,29.274065],[108.954252,29.272066],[108.937607,29.244283],[108.925871,29.23347],[108.925135,29.222615],[108.915265,29.215513],[108.896607,29.209024],[108.882416,29.1791],[108.854625,29.133484],[108.855656,29.122659],[108.847702,29.105214],[108.833266,29.109995],[108.832087,29.117267],[108.812054,29.122047],[108.803756,29.129195],[108.784852,29.123272],[108.775768,29.124008],[108.774295,29.110485],[108.749008,29.10881],[108.747584,29.092384],[108.726912,29.080492],[108.700397,29.094427],[108.698777,29.101619],[108.686698,29.109341],[108.681984,29.105623],[108.668678,29.108156],[108.66416,29.103744],[108.669856,29.095939],[108.662835,29.090382],[108.667205,29.078776],[108.661313,29.071624],[108.646533,29.081841],[108.628906,29.072891],[108.622179,29.073422],[108.625665,29.08699],[108.614568,29.095408],[108.615206,29.109709],[108.60789,29.109014],[108.599396,29.086908],[108.587169,29.095081],[108.598266,29.105705],[108.570769,29.124416],[108.55869,29.13953],[108.534631,29.133975],[108.528198,29.128338],[108.527167,29.117798],[108.518329,29.100148],[108.505464,29.095326],[108.492109,29.095245],[108.473008,29.08462],[108.464858,29.087521],[108.456314,29.071951],[108.447279,29.066187],[108.434906,29.070643],[108.424987,29.057277],[108.415756,29.051268],[108.394446,29.053107],[108.373627,29.044849],[108.348143,29.027228],[108.331989,29.010911],[108.326686,29.000932],[108.312103,28.997497],[108.322954,28.953969],[108.339943,28.947872],[108.346916,28.941488],[108.350549,28.930316],[108.350353,28.907107],[108.357423,28.893393],[108.355312,28.870831],[108.346425,28.856333],[108.355165,28.831634],[108.354232,28.814263],[108.382416,28.805781],[108.386492,28.801642],[108.388996,28.785823],[108.385264,28.772216],[108.375051,28.767092],[108.372498,28.760164],[108.347259,28.736302],[108.347898,28.710262],[108.340238,28.689671],[108.332529,28.679579],[108.344019,28.673425],[108.35217,28.676091],[108.39096,28.651759],[108.421697,28.643346],[108.43903,28.633989],[108.461371,28.634153],[108.471142,28.627791],[108.491274,28.630582],[108.500996,28.626642],[108.502715,28.637601],[108.517985,28.639981],[108.524614,28.647122],[108.53851,28.652703],[108.548723,28.64782],[108.561146,28.649174],[108.564828,28.661156],[108.574796,28.660336],[108.586482,28.64704],[108.585303,28.639653],[108.596155,28.64035],[108.609019,28.633619],[108.623259,28.641418],[108.632343,28.638914],[108.636025,28.621757],[108.618889,28.606527],[108.604453,28.589529],[108.610934,28.539381],[108.58933,28.538601],[108.576858,28.533794],[108.573224,28.528124],[108.578036,28.509018],[108.574943,28.497676],[108.589182,28.473837],[108.586776,28.463066],[108.597235,28.456817],[108.602833,28.438849],[108.609952,28.435683],[108.608823,28.407306],[108.587415,28.404961],[108.577545,28.390193],[108.576367,28.364314],[108.580099,28.343285],[108.598021,28.34205],[108.606466,28.336576],[108.611573,28.324557],[108.630771,28.328014],[108.639855,28.333201],[108.647466,28.331101],[108.667352,28.334436],[108.677418,28.345795],[108.670102,28.354396],[108.659103,28.350322],[108.657041,28.362215],[108.664701,28.38287],[108.693523,28.395171],[108.696813,28.404591],[108.690921,28.410555],[108.688318,28.422318],[108.669856,28.431489],[108.663915,28.444318],[108.641476,28.455707],[108.645256,28.468616],[108.658661,28.47803],[108.671133,28.475276],[108.688613,28.482469],[108.701428,28.482469],[108.709727,28.501087],[108.723377,28.491963],[108.730889,28.517853],[108.753329,28.532972],[108.763984,28.545707],[108.775964,28.544968],[108.785294,28.54924],[108.785981,28.562096],[108.799877,28.583657],[108.815295,28.593471],[108.819174,28.60082],[108.839256,28.604146],[108.854821,28.613136],[108.881484,28.621716],[108.895379,28.614737],[108.915314,28.621962],[108.936723,28.616913],[108.954252,28.610016],[108.961126,28.630213],[108.982633,28.682327],[108.990636,28.67884],[108.999622,28.699228],[109.01941,28.690696],[109.044991,28.719325],[109.05653,28.741879],[109.062128,28.759385],[109.05982,28.768198],[109.094338,28.79234],[109.105681,28.805699],[109.106712,28.816311],[109.092718,28.809305],[109.093455,28.819261],[109.104502,28.826595],[109.111622,28.824669],[109.117465,28.83106],[109.130919,28.832453],[109.147908,28.84552],[109.157188,28.844824],[109.166223,28.852402],[109.175896,28.8515],[109.197599,28.870217],[109.197943,28.875131],[109.211004,28.882788],[109.235505,28.880372]]]]}},{"type":"Feature","properties":{"adcode":500243,"name":"彭水苗族土家族自治县","center":[108.166551,29.293856],"centroid":[108.266309,29.353956],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":37,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.312103,28.997497],[108.326686,29.000932],[108.331989,29.010911],[108.348143,29.027228],[108.373627,29.044849],[108.394446,29.053107],[108.415756,29.051268],[108.424987,29.057277],[108.434906,29.070643],[108.447279,29.066187],[108.456314,29.071951],[108.464858,29.087521],[108.473008,29.08462],[108.492109,29.095245],[108.505464,29.095326],[108.518329,29.100148],[108.527167,29.117798],[108.528198,29.128338],[108.534631,29.133975],[108.55869,29.13953],[108.570671,29.152313],[108.574403,29.164115],[108.556775,29.184857],[108.548919,29.205064],[108.555597,29.218738],[108.569247,29.224941],[108.568314,29.236245],[108.575778,29.252362],[108.571948,29.265703],[108.583192,29.278063],[108.584272,29.285812],[108.573568,29.302411],[108.560409,29.306081],[108.549459,29.315378],[108.549705,29.328303],[108.561538,29.352598],[108.550196,29.371754],[108.547201,29.381697],[108.552995,29.390539],[108.555843,29.412701],[108.576367,29.41706],[108.59257,29.442963],[108.581228,29.464911],[108.585549,29.477328],[108.561686,29.491657],[108.539688,29.491697],[108.50954,29.50285],[108.501242,29.49996],[108.494711,29.515099],[108.506054,29.536868],[108.515334,29.543948],[108.536251,29.540001],[108.547643,29.547406],[108.548379,29.557575],[108.534532,29.572177],[108.534974,29.588851],[108.516709,29.602148],[108.512633,29.614467],[108.507036,29.611093],[108.499965,29.622069],[108.487199,29.624102],[108.489997,29.642515],[108.504139,29.666288],[108.503549,29.67669],[108.52373,29.683109],[108.526676,29.696759],[108.506446,29.708172],[108.489506,29.723199],[108.467656,29.729697],[108.460487,29.740904],[108.437115,29.740782],[108.438588,29.75617],[108.445462,29.76437],[108.444235,29.776913],[108.421304,29.774153],[108.416984,29.787344],[108.425478,29.804185],[108.424496,29.815302],[108.408882,29.820658],[108.404561,29.834451],[108.393169,29.83583],[108.3942,29.816479],[108.383987,29.795501],[108.36091,29.756819],[108.365918,29.748537],[108.368078,29.726042],[108.373922,29.712803],[108.358013,29.720763],[108.350156,29.721047],[108.326391,29.711747],[108.315785,29.722793],[108.30513,29.72588],[108.298895,29.734773],[108.295752,29.729007],[108.27071,29.733149],[108.245669,29.750892],[108.239384,29.745289],[108.227992,29.747076],[108.22097,29.732499],[108.225193,29.725514],[108.217975,29.716336],[108.22156,29.712153],[108.205847,29.69948],[108.208891,29.685343],[108.195143,29.666979],[108.169267,29.658445],[108.168186,29.648083],[108.17894,29.647839],[108.182033,29.625972],[108.178547,29.619183],[108.167499,29.617679],[108.163374,29.603612],[108.153652,29.599749],[108.132391,29.603815],[108.117366,29.603449],[108.114175,29.599302],[108.098757,29.600684],[108.082161,29.611377],[108.078773,29.618817],[108.067872,29.614223],[108.076563,29.605726],[108.084026,29.588892],[108.075876,29.577627],[108.066153,29.575472],[108.066988,29.566687],[108.075826,29.557982],[108.074059,29.549073],[108.055793,29.531783],[108.015432,29.504559],[108.017347,29.483719],[108.013959,29.469674],[108.013075,29.448786],[108.002763,29.442108],[108.004286,29.428424],[107.989653,29.416856],[107.992796,29.397383],[107.988426,29.38027],[107.976641,29.36344],[107.983319,29.350397],[107.984301,29.339188],[107.992059,29.325408],[108.003304,29.315174],[107.996282,29.288545],[107.998983,29.273943],[107.99697,29.26248],[108.010325,29.247792],[108.006446,29.229267],[107.997804,29.236857],[107.986756,29.217799],[107.973057,29.210166],[107.970111,29.198492],[107.960143,29.188695],[107.94286,29.178243],[107.934905,29.185102],[107.911975,29.190328],[107.898865,29.184245],[107.903775,29.172282],[107.899896,29.166361],[107.892727,29.134138],[107.895133,29.117185],[107.883889,29.106195],[107.889486,29.085151],[107.883938,29.078163],[107.873086,29.074852],[107.874707,29.057031],[107.849567,29.039289],[107.838421,29.040597],[107.823543,29.034219],[107.821186,29.005758],[107.810433,28.984285],[107.82811,28.976144],[107.842005,28.964648],[107.867538,28.960475],[107.872006,28.983058],[107.883054,28.986535],[107.887571,29.000114],[107.885215,29.008417],[107.908783,29.007353],[107.931124,29.035241],[107.949292,29.033729],[107.993925,29.033851],[108.02427,29.038676],[108.034532,29.046771],[108.035956,29.054047],[108.070474,29.086418],[108.109854,29.076078],[108.130624,29.063326],[108.132686,29.054088],[108.150068,29.053311],[108.171427,29.06537],[108.197745,29.070643],[108.204718,29.056786],[108.215029,29.056132],[108.230398,29.046975],[108.224653,29.031562],[108.24228,29.028372],[108.256962,29.041987],[108.260203,29.063735],[108.268648,29.077795],[108.270612,29.090913],[108.28657,29.089197],[108.301939,29.083067],[108.307193,29.077509],[108.297863,29.047179],[108.309795,29.018436],[108.308715,29.003386],[108.312103,28.997497]]]]}}]}')}},l={};function s(e){var t=l[e];if(void 0!==t)return t.exports;var n=l[e]={id:e,loaded:!1,exports:{}};return a[e].call(n.exports,n,n.exports,s),n.loaded=!0,n.exports}s.m=a,s.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return s.d(t,{a:t}),t},t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,s.t=function(n,r){if(1&r&&(n=this(n)),8&r||"object"==typeof n&&n&&(4&r&&n.__esModule||16&r&&"function"==typeof n.then))return n;var i=Object.create(null);s.r(i);var o={};e=e||[null,t({}),t([]),t(t)];for(var a=2&r&&n;("object"==typeof a||"function"==typeof a)&&!~e.indexOf(a);a=t(a))Object.getOwnPropertyNames(a).forEach(e=>{o[e]=()=>n[e]});return o.default=()=>n,s.d(i,o),i},s.d=(e,t)=>{for(var n in t)s.o(t,n)&&!s.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},s.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})(),s.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),s.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),s.nc=void 0,n=[],s.O=(e,t,r,i)=>{if(t){i=i||0;for(var o=n.length;o>0&&n[o-1][2]>i;o--)n[o]=n[o-1];n[o]=[t,r,i];return}for(var a=1/0,o=0;o=i)&&Object.keys(s.O).every(e=>s.O[e](t[c]))?t.splice(c--,1):(l=!1,i0===r[e],i=(e,t)=>{var n,i,[o,a,l]=t,c=0;if(o.some(e=>0!==r[e])){for(n in a)s.o(a,n)&&(s.m[n]=a[n]);if(l)var u=l(s)}for(e&&e(t);cs(1712));return s.O(c)})()); \ No newline at end of file diff --git a/safety-eval-start/src/main/resources/templates/safetyEval/static/js/main.a42edbbd465b6cbd.js b/safety-eval-start/src/main/resources/templates/safetyEval/static/js/main.a42edbbd465b6cbd.js deleted file mode 100644 index 2a004be..0000000 --- a/safety-eval-start/src/main/resources/templates/safetyEval/static/js/main.a42edbbd465b6cbd.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports["jjb-micro-app:safetyEval"]=t():e["jjb-micro-app:safetyEval"]=t()}(self,()=>(()=>{var e,t,n,r,i,o,a={76736(e,t,n){"use strict";n.r(t)},52571(e,t,n){"use strict";n.r(t)},20124(e,t,n){"use strict";n.r(t)},59914(e,t,n){"use strict";n.r(t)},69208(e,t,n){"use strict";n.r(t)},74033(e,t,n){"use strict";n.r(t)},9770(e,t,n){"use strict";n.r(t)},1589(e,t,n){"use strict";n.r(t)},62210(e,t,n){"use strict";n.r(t),n.d(t,{corpCertificateAdd:()=>a,corpCertificateEdit:()=>l,corpCertificateInfo:()=>o,corpCertificateIsExistCertNo:()=>f,corpCertificateList:()=>i,corpCertificateRemove:()=>c,corpCertificateStatPage:()=>s,dictValuesData:()=>u});var r=n(28311),i=(0,r.CV)("corpCertificateLoading","Post > @/certificate/corpCertificate/list"),o=(0,r.CV)("corpCertificateLoading","Get > /certificate/corpCertificate/getInfoById?id={id}"),a=(0,r.CV)("corpCertificateLoading","Post > @/certificate/corpCertificate/save"),l=(0,r.CV)("corpCertificateLoading","Put > @/certificate/corpCertificate/edit"),s=(0,r.CV)("corpCertificateLoading","Post > @/certificate/corpCertificate/statPage"),c=(0,r.CV)("corpCertificateLoading","Put > @/certificate/corpCertificate/remove?id={id}"),u=(0,r.CV)("corpCertificateLoading","Get > /config/dict-trees/list/by/dictValues"),f=(0,r.CV)("corpCertificateLoading","Get > /certificate/corpCertificate/isExistCertNo")},23775(e,t,n){"use strict";n.r(t),n.d(t,{identifyPartList:()=>r});var r=(0,n(28311).CV)("coursewareLoading","Post > @/risk/busIdentifyPart/list")},84049(e,t,n){"use strict";n.r(t),n.d(t,{queryDriverConfig:()=>r});var r=(0,n(28311).CV)("queryDriverConfigLoading","Get > /safetyEval/account/checkTerminalType","driverConfig: {} | res.data")},23461(e,t,n){"use strict";n.r(t),n.d(t,{equipInfoAdd:()=>y,equipInfoEdit:()=>m,equipInfoGet:()=>p,equipInfoList:()=>d,equipInfoRemove:()=>v,equipInfoToggleStatus:()=>h});var r,i,o=n(28311),a=n(48032),l=n(31467),s=n(73398);function c(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return u(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(u(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,u(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return s.prototype=f,u(d,"constructor",f),u(f,"constructor",s),s.displayName="GeneratorFunction",u(f,i,"GeneratorFunction"),u(d),u(d,i,"Generator"),u(d,r,function(){return this}),u(d,"toString",function(){return"[object Generator]"}),(c=function(){return{w:o,m:p}})()}function u(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(u=function(e,t,n,r){function o(t,n){u(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function f(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}var d=(0,o.CV)("equipInfoLoading","Get > /safetyEval/org-equipment/page","equipInfoList: [] | res.data || [] & equipInfoTotal: 0 | res.data?.total || 0"),p=(0,o.CV)("equipInfoLoading",(0,l.yT)((r=c().m(function e(t){var n;return c().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,(0,l.Vg)("/safetyEval/org-equipment/get",{id:(0,s.gR)(null==t?void 0:t.id)});case 1:return n=e.v,e.a(2,(0,a.UC)(n))}},e)}),i=function(){var e=this,t=arguments;return new Promise(function(n,i){var o=r.apply(e,t);function a(e){f(o,n,i,a,l,"next",e)}function l(e){f(o,n,i,a,l,"throw",e)}a(void 0)})},function(e){return i.apply(this,arguments)}))),y=(0,o.CV)("equipInfoLoading","Post > @/safetyEval/org-equipment/save"),m=(0,o.CV)("equipInfoLoading","Post > @/safetyEval/org-equipment/modify"),v=(0,o.CV)("equipInfoLoading","Post > @/safetyEval/org-equipment/delete"),h=(0,o.CV)("equipInfoLoading","Post > @/safetyEval/org-equipment/modify")},27872(e,t,n){"use strict";n.r(t)},53001(e,t,n){"use strict";n.r(t),n.d(t,{orgDepartmentAdd:()=>l,orgDepartmentEdit:()=>s,orgDepartmentGet:()=>i,orgDepartmentList:()=>a,orgDepartmentRemove:()=>c,orgDepartmentTree:()=>o});var r=n(28311),i=(0,r.CV)("orgDepartmentLoading","Get > /safetyEval/org-department/get","orgDepartmentDetail: {} | res.data || {}"),o=(0,r.CV)("orgDepartmentLoading","Get > /safetyEval/org-department/tree","orgDepartmentTreeData: [] | res.data || []"),a=(0,r.CV)("orgDepartmentLoading","Get > /safetyEval/org-department/page","dataSource: [] | res.data || [] & total: 0 | res.totalCount || 0"),l=(0,r.CV)("orgDepartmentLoading","Post > @/safetyEval/org-department/save"),s=(0,r.CV)("orgDepartmentLoading","Post > @/safetyEval/org-department/modify"),c=(0,r.CV)("orgDepartmentLoading","Post > @/safetyEval/org-department/delete")},89175(e,t,n){"use strict";n.r(t),n.d(t,{fetchRegisteredOrgDetail:()=>i.cA,orgAccountDelete:()=>i.Z5,orgAccountGet:()=>i.oD,orgAccountList:()=>i.s1,orgAccountModify:()=>i.Eo,orgAccountResetPassword:()=>i.k,orgAccountUpdateState:()=>i.o,orgInfoDraft:()=>s,orgInfoDraftModify:()=>c,orgInfoGet:()=>o,orgInfoModify:()=>l,orgInfoSave:()=>a,registeredOrgGet:()=>i.$8,registeredOrgList:()=>i.HV});var r=n(28311),i=n(41911),o=(0,r.CV)("orgInfoLoading","Get > /safetyEval/org-info/getInfo","orgInfoDetail: {} | res.data || {}"),a=(0,r.CV)("orgInfoLoading","Post > @/safetyEval/org-info/save"),l=(0,r.CV)("orgInfoLoading","Post > @/safetyEval/org-info/modify"),s=(0,r.CV)("orgInfoLoading","Post > @/safetyEval/org-info/save"),c=(0,r.CV)("orgInfoLoading","Post > @/safetyEval/org-info/modify")},71252(e,t,n){"use strict";n.r(t),n.d(t,{orgPositionAdd:()=>o,orgPositionEdit:()=>a,orgPositionList:()=>i,orgPositionRemove:()=>l});var r=n(28311),i=(0,r.CV)("orgPositionLoading","Get > /safetyEval/org-position/page","dataSource: [] | res.data || [] & total: 0 | res.totalCount || 0"),o=(0,r.CV)("orgPositionLoading","Post > @/safetyEval/org-position/save"),a=(0,r.CV)("orgPositionLoading","Post > @/safetyEval/org-position/modify"),l=(0,r.CV)("orgPositionLoading","Post > @/safetyEval/org-position/delete")},28022(e,t,n){"use strict";n.r(t),n.d(t,{orgQualificationCertAdd:()=>o,orgQualificationCertDisable:()=>c,orgQualificationCertEdit:()=>l,orgQualificationCertEnable:()=>u,orgQualificationCertInfo:()=>a,orgQualificationCertList:()=>i,orgQualificationCertRemove:()=>s});var r=n(28311),i=(0,r.CV)("orgQualificationCertLoading","Get > /safetyEval/org-qualification/page","orgQualificationCertList: [] | res.data?.records || res.data || [] & orgQualificationCertTotal: 0 | res.data?.total || 0"),o=(0,r.CV)("orgQualificationCertLoading","Post > @/safetyEval/org-qualification/save"),a=(0,r.CV)("orgQualificationCertLoading","Get > /safetyEval/org-qualification/get","orgQualificationCertDetail: {} | res.data || {}"),l=(0,r.CV)("orgQualificationCertLoading","Post > @/safetyEval/org-qualification/modify"),s=(0,r.CV)("orgQualificationCertLoading","Post > @/safetyEval/org-qualification/delete"),c=(0,r.CV)("orgQualificationCertLoading","Post > @/safetyEval/org-qualification/disable"),u=(0,r.CV)("orgQualificationCertLoading","Post > @/safetyEval/org-qualification/enable")},89580(e,t,n){"use strict";n.r(t),n.d(t,{deleteExpert:()=>s,getExpertDetail:()=>a,modifyExpert:()=>l,queryExpertPage:()=>i,saveExpert:()=>o});var r=n(28311),i=(0,r.CV)("qualExpertLoading","Get > /safetyEval/qual-filing-expert/page","qualExpertList: [] | res.data || [] & qualExpertTotal: 0 | res.total || 0"),o=(0,r.CV)("qualExpertSubmitLoading","Post > @/safetyEval/qual-filing-expert/save"),a=(0,r.CV)("qualExpertDetailLoading","Get > /safetyEval/qual-filing-expert/get","qualExpertDetail: {} | res.data || {}"),l=(0,r.CV)("qualExpertSubmitLoading","Post > @/safetyEval/qual-filing-expert/modify"),s=(0,r.CV)("qualExpertSubmitLoading","Post > @/safetyEval/qual-filing-expert/delete")},30045(e,t,n){"use strict";n.r(t),n.d(t,{fetchQualChangeDetail:()=>Y,fetchQualFilingChangeHistory:()=>W,fetchQualFilingDetail:()=>Q,fromFilingBasicForm:()=>D,fromFilingCommitmentForm:()=>z,fromFilingPersonnelAddCmd:()=>V,parseCommitmentNames:()=>q,qualFilingChangePage:()=>X,qualFilingChangeSubmit:()=>em,qualFilingCommitmentSaveOrUpdate:()=>es,qualFilingCommitmentUploadSignature:()=>ec,qualFilingDelete:()=>ei,qualFilingDraft:()=>ee,qualFilingEquipmentBatchAdd:()=>ed,qualFilingEquipmentDelete:()=>ey,qualFilingEquipmentUploadCalibration:()=>ep,qualFilingFiledDraft:()=>et,qualFilingFiledPage:()=>Z,qualFilingMaterialInitTemplate:()=>eo,qualFilingMaterialUpload:()=>ea,qualFilingPage:()=>J,qualFilingPersonnelBatchAdd:()=>eu,qualFilingPersonnelDelete:()=>ef,qualFilingSaveDraft:()=>en,qualFilingSubmit:()=>er,qualFilingUploadAttachment:()=>el,submitQualFiling:()=>ev,submitQualFilingChange:()=>eh,toChangeHistory:()=>B,toFilingCommitmentForm:()=>_,toFilingDetail:()=>R,toFilingEquipmentRow:()=>G,toFilingListRow:()=>F,toFilingPersonnelRow:()=>U});var r,i,o,a,l,s,c,u,f,d,p,y,m,v,h,g,b,j=n(28311),x=n(48032),S=n(31467),C=n(73398),A=n(76332),w=n(20344),P=["filingTerritoryName","filingTerritoryCode","filingStatus"];function O(e){return(O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function I(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return E(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(E(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,E(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,E(u,"constructor",c),E(c,"constructor",s),s.displayName="GeneratorFunction",E(c,i,"GeneratorFunction"),E(u),E(u,i,"Generator"),E(u,r,function(){return this}),E(u,"toString",function(){return"[object Generator]"}),(I=function(){return{w:o,m:f}})()}function E(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(E=function(e,t,n,r){function o(t,n){E(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function N(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function L(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){N(o,r,i,a,l,"next",e)}function l(e){N(o,r,i,a,l,"throw",e)}a(void 0)})}}function T(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function k(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,C.gR)(t.id),filingId:t.filingId,filingTerritoryCode:t.filingTerritoryCode,filingTerritoryName:t.filingTerritoryName,filingUnitName:t.filingUnitName,filingNo:t.filingNo||(t.id?String(t.id):""),businessScope:t.businessScope,filingStatusCode:t.filingStatusCode,filingStatusName:t.filingStatusName,applyTypeCode:t.applyTypeCode,applyTypeName:t.applyTypeName,changeCount:Number(null!=(e=t.changeCount)?e:0),originFilingId:(0,C.gR)(t.originFilingId),rejectReason:t.rejectReason,submitTime:(0,A.Yq)(t.submitTime),approveTime:(0,A.Yq)(t.approveTime)}}function D(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.filingTerritoryName||e.filingTerritoryCode,n=e.filingUnitTypeName||e.filingUnitTypeCode;return(0,C.CF)({id:(0,C.gR)(e.id),businessScope:e.businessScope,filingTerritoryCode:t,filingTerritoryName:t,filingUnitName:e.filingUnitName,filingUnitTypeCode:n,filingUnitTypeName:n,filingNo:e.filingNo,registerAddress:e.registerAddress,officeAddress:e.officeAddress,creditCode:e.creditCode,qualCertNo:e.qualCertNo,legalPersonPhone:e.legalPersonPhone,contactPhone:e.contactPhone,infoDisclosureUrl:e.infoDisclosureUrl,fixedAssetAmount:e.fixedAssetAmount,workplaceArea:e.workplaceArea,archiveRoomArea:e.archiveRoomArea,fulltimeEvaluatorCount:e.fulltimeEvaluatorCount,registeredEngineerCount:e.registeredEngineerCount,unitIntro:e.unitIntro,attachmentUrl:e.attachmentUrl})}function R(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return k(k({},e),{},{materials:e.materials||[],commitment:e.commitment?_(e.commitment,e.filingUnitName):null,personnelList:(e.personnelList||[]).map(U),equipmentList:(e.equipmentList||[]).map(G)})}function q(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",a=String(i).match(/本人是(.+?),是(.+?)法定代表人/);if(a)return{legalRepName:(null==(n=a[1])?void 0:n.trim())||"",filingUnitName:(null==(r=a[2])?void 0:r.trim())||o||""};var l=String(i).match(/本人是(.+?)是(.+?)法定代表人/);return{legalRepName:(null==l||null==(e=l[1])?void 0:e.trim())||"",filingUnitName:(null==l||null==(t=l[2])?void 0:t.trim())||o||""}}function _(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=q(e.commitmentContent,t),r=e.legalRepPersonnelId?String((0,C.gR)(e.legalRepPersonnelId)):"";return{id:(0,C.gR)(e.id),filingId:(0,C.gR)(e.filingId),commitmentContent:e.commitmentContent,legalRepPersonnelId:r,legalRepName:e.legalRepName||n.legalRepName,filingUnitName:n.filingUnitName||t,legalRepSignatureUrl:e.legalRepSignatureUrl,signDate:(0,A.vJ)(e.signDate),signatureFiles:(0,w.zG)(e.legalRepSignatureUrl,"电子签名.jpg")}}function z(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0,n=(0,C.gR)(e.legalRepPersonnelId);return{id:(0,C.gR)(e.id),filingId:(0,C.gR)(t),commitmentContent:e.commitmentContent,legalRepSignatureUrl:e.legalRepSignatureUrl,signDate:(0,A.au)(e.signDate),legalRepPersonnelId:n||null,legalRepName:e.legalRepName||""}}function U(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.personName||e.userName||e.staffName;return{id:(0,C.gR)(e.id),filingId:(0,C.gR)(e.filingId),sourcePersonnelId:(0,C.gR)(e.sourcePersonnelId),personName:t,userName:t,personTypeCode:e.personTypeCode,personTypeName:e.personTypeName,positionName:e.positionName,titleName:e.titleName,genderCode:e.genderCode,genderName:e.genderName,birthDate:e.birthDate,joinWorkDate:e.joinWorkDate,idCardNo:e.idCardNo,currentAddress:e.currentAddress,officeAddress:e.officeAddress,educationCode:e.educationCode,educationName:e.educationName,graduateSchool:e.graduateSchool,major:e.major,qualScope:e.qualScope,publications:e.publications,professionalLevelCert:e.professionalLevelCert,registerEngineerFlag:e.registerEngineerFlag,abilityDeclaration:e.abilityDeclaration,workExperience:e.workExperience,proofMaterialUrl:e.proofMaterialUrl}}function V(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=U(e);return(0,C.CF)({sourcePersonnelId:t.sourcePersonnelId,personName:t.personName,personTypeCode:t.personTypeCode,personTypeName:t.personTypeName,positionName:t.positionName,titleName:t.titleName,genderCode:t.genderCode,genderName:t.genderName,birthDate:t.birthDate,joinWorkDate:t.joinWorkDate,idCardNo:t.idCardNo,currentAddress:t.currentAddress,officeAddress:t.officeAddress,educationCode:t.educationCode,educationName:t.educationName,graduateSchool:t.graduateSchool,major:t.major,qualScope:t.qualScope,publications:t.publications,professionalLevelCert:t.professionalLevelCert,registerEngineerFlag:t.registerEngineerFlag,abilityDeclaration:t.abilityDeclaration,workExperience:t.workExperience,proofMaterialUrl:t.proofMaterialUrl})}function G(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,C.gR)(e.id),filingId:(0,C.gR)(e.filingId),sourceEquipmentId:(0,C.gR)(e.sourceEquipmentId),deviceName:e.deviceName,deviceModel:e.deviceModel,manufacturer:e.manufacturer,calibrationReportUrl:e.calibrationReportUrl}}function B(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{changeCount:Number(null!=(e=t.changeCount)?e:0),records:(t.records||[]).map(function(e,t){return{id:(0,C.gR)(e.id),index:t+1,changeItemName:e.changeItemName,changeTime:(0,A.Yq)(e.changeTime),operatorName:e.operatorName}})}}function M(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.filingTerritoryName,n=e.filingTerritoryCode,r=e.filingStatus,i=function(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n={};for(var r in e)if(({}).hasOwnProperty.call(e,r)){if(-1!==t.indexOf(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r @/safetyEval/qual-filing/aggregationSaveOrEdit"),eh=(0,j.CV)("qualFilingSubmitLoading","Post > @/safetyEval/qual-filing-change/aggregationSaveOrEdit")},96952(e,t,n){"use strict";n.r(t),n.d(t,{changeReviewSubmit:()=>f,fetchQualChangeDetail:()=>c,fetchQualFilingDetail:()=>a,queryChangeComplianceCheck:()=>u,queryComplianceCheck:()=>o,queryQualChangePage:()=>l,queryReviewList:()=>i,reviewSubmit:()=>s});var r=n(28311),i=(0,r.CV)("qualReviewLoading","Get > /safetyEval/qual-filing/page","qualReviewList: [] | res.data || [] & qualReviewTotal: 0 | res.total || 0"),o=(0,r.CV)("qualReviewLoading","Get > /safetyEval/qual-filing/compliance-check","complianceCheckItems: [] | res.data || []"),a=(0,r.CV)("fetchQualFilingDetailLoading","Get > /safetyEval/qual-filing/detail","qualFilingDetail: {} | res.data || {}"),l=(0,r.CV)("qualReviewLoading","Get > /safetyEval/qual-filing-change/page","qualReviewList: [] | res.data || [] & qualReviewTotal: 0 | res.total || 0"),s=(0,r.CV)("qualReviewSubmitLoading","Post > @/safetyEval/qual-filing/review"),c=(0,r.CV)("fetchQualFilingDetailLoading","Get > /safetyEval/qual-filing-change/detail","qualFilingDetail: {} | res.data || {}"),u=(0,r.CV)("qualReviewLoading","Get > /safetyEval/qual-filing-change/compliance-check","complianceCheckItems: [] | res.data || []"),f=(0,r.CV)("qualReviewSubmitLoading","Post > @/safetyEval/qual-filing-change/review")},9538(e,t,n){"use strict";n.r(t),n.d(t,{fetchStaffCertDetail:()=>v,fetchStaffCertListByPersonnelId:()=>y,staffCertificateAdd:()=>f,staffCertificateEdit:()=>d,staffCertificateInfo:()=>u,staffCertificateList:()=>c,staffCertificateRemove:()=>p});var r=n(28311),i=n(46285);function o(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function l(n,r,i,o){var l=Object.create((r&&r.prototype instanceof c?r:c).prototype);return a(l,"_invoke",function(n,r,i){var o,a,l,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,a=0,l=e,d.n=n,s}};function p(n,r){for(a=n,l=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(l=o[(a=o[4])?5:(a=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,a=0))}if(i||n>1)return s;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),a=u,l=y;(t=a<2?e:l)||!f;){o||(a?a<3?(a>1&&(d.n=-1),p(a,l)):d.n=l:d.v=l);try{if(c=2,o){if(a||(i="next"),t=o[i]){if(!(t=t.call(o,l)))throw TypeError("iterator result is not an object");if(!t.done)return t;l=t.value,a<2&&(a=0)}else 1===a&&(t=o.return)&&t.call(o),a<2&&(l=TypeError("The iterator does not provide a '"+i+"' method"),a=1);o=e}else if((t=(f=d.n<0)?l:n.call(r,d))!==s)break}catch(t){o=e,a=1,l=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),l}var s={};function c(){}function u(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=c.prototype=Object.create([][r]?t(t([][r]())):(a(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,a(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return u.prototype=f,a(d,"constructor",f),a(f,"constructor",u),u.displayName="GeneratorFunction",a(f,i,"GeneratorFunction"),a(d),a(d,i,"Generator"),a(d,r,function(){return this}),a(d,"toString",function(){return"[object Generator]"}),(o=function(){return{w:l,m:p}})()}function a(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(a=function(e,t,n,r){function o(t,n){a(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function l(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function s(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){l(o,r,i,a,s,"next",e)}function s(e){l(o,r,i,a,s,"throw",e)}a(void 0)})}}var c=(0,r.CV)("staffCertificateLoading","Get > /safetyEval/org-personnel-cert/page","staffCertificateList: [] | res.data || [] & staffCertificateTotal: 0 | res.data?.total || 0"),u=(0,r.CV)("staffCertificateLoading","Get > /safetyEval/org-personnel-cert/get","staffCertificateDetail: {} | res.data || {}"),f=(0,r.CV)("staffCertificateLoading","Post > @/safetyEval/org-personnel-cert/save"),d=(0,r.CV)("staffCertificateLoading","Post > @/safetyEval/org-personnel-cert/modify"),p=(0,r.CV)("staffCertificateLoading","Post > @/safetyEval/org-personnel-cert/delete");function y(e){return m.apply(this,arguments)}function m(){return(m=s(o().m(function e(t){var n;return o().w(function(e){for(;;)switch(e.p=e.n){case 0:return e.p=0,e.n=1,(0,i.Get)("/safetyEval/org-personnel-cert/page",{current:1,size:999,personnelId:t});case 1:return n=e.v,e.a(2,(null==n?void 0:n.data)||[]);case 2:return e.p=2,e.v,e.a(2,[])}},e,null,[[0,2]])}))).apply(this,arguments)}function v(e){return h.apply(this,arguments)}function h(){return(h=s(o().m(function e(t){var n,r;return o().w(function(e){for(;;)switch(e.p=e.n){case 0:return n=t.id,e.p=1,e.n=2,(0,i.Get)("/safetyEval/org-personnel-cert/get",{id:n});case 2:return r=e.v,e.a(2,(null==r?void 0:r.data)||null);case 3:return e.p=3,e.v,e.a(2,null)}},e,null,[[1,3]])}))).apply(this,arguments)}},53983(e,t,n){"use strict";n.r(t),n.d(t,{staffChangeLogList:()=>f,staffChangeLogRemove:()=>d,staffChangeLogStaffList:()=>u,staffResignationAudit:()=>p,staffResignationInfo:()=>y});var r,i,o=n(28311),a=n(31467);function l(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var l=Object.create((r&&r.prototype instanceof c?r:c).prototype);return s(l,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),l}var a={};function c(){}function u(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=c.prototype=Object.create([][r]?t(t([][r]())):(s(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,s(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return u.prototype=f,s(d,"constructor",f),s(f,"constructor",u),u.displayName="GeneratorFunction",s(f,i,"GeneratorFunction"),s(d),s(d,i,"Generator"),s(d,r,function(){return this}),s(d,"toString",function(){return"[object Generator]"}),(l=function(){return{w:o,m:p}})()}function s(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(s=function(e,t,n,r){function o(t,n){s(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function c(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}var u=(0,o.CV)("staffChangeLogLoading","Get > /safetyEval/org-personnel/page","staffChangeLogStaffList: [] | res.data || [] & staffChangeLogStaffTotal: 0 | res.total || 0"),f=(0,o.CV)("staffChangeLogLoading","Get > /safetyEval/org-personnel-change/page","staffChangeLogChangeList: [] | res.data || [] & staffChangeLogChangeTotal: 0 | res.total || 0"),d=(0,o.CV)("staffChangeLogLoading",(0,a.yT)((r=l().m(function e(t){var n;return l().w(function(e){for(;;)if(0===e.n)return n=t.id,e.a(2,(0,a.oI)("/safetyEval/org-personnel-change/delete",n))},e)}),i=function(){var e=this,t=arguments;return new Promise(function(n,i){var o=r.apply(e,t);function a(e){c(o,n,i,a,l,"next",e)}function l(e){c(o,n,i,a,l,"throw",e)}a(void 0)})},function(e){return i.apply(this,arguments)}))),p=(0,o.CV)("staffChangeLogLoading","Post > @/safetyEval/org-resign-apply/modify"),y=(0,o.CV)("staffChangeLogLoading","Get > /safetyEval/org-resign-apply/get","staffResignationDetail: {} | res.data || {}")},85135(e,t,n){"use strict";n.r(t),n.d(t,{staffInfoAdd:()=>y,staffInfoEdit:()=>m,staffInfoGet:()=>p,staffInfoList:()=>d,staffInfoRemove:()=>v,staffInfoResetPassword:()=>h});var r,i,o=n(28311),a=n(31467),l=n(73398);function s(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return c(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function u(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(c(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,c(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return u.prototype=f,c(d,"constructor",f),c(f,"constructor",u),u.displayName="GeneratorFunction",c(f,i,"GeneratorFunction"),c(d),c(d,i,"Generator"),c(d,r,function(){return this}),c(d,"toString",function(){return"[object Generator]"}),(s=function(){return{w:o,m:p}})()}function c(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(c=function(e,t,n,r){function o(t,n){c(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function u(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function f(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){u(o,r,i,a,l,"next",e)}function l(e){u(o,r,i,a,l,"throw",e)}a(void 0)})}}var d=(0,o.CV)("staffInfoLoading","Get > /safetyEval/org-personnel/page","staffInfoList: [] | res.data || [] & staffInfoTotal: 0 | res.data?.total || 0"),p=(0,o.CV)("staffInfoLoading","Get > /safetyEval/org-personnel/get","staffInfoDetail: {} | res.data || {}"),y=(0,o.CV)("staffInfoLoading","Post > @/safetyEval/org-personnel/save"),m=(0,o.CV)("staffInfoLoading","Post > @/safetyEval/org-personnel/modify"),v=(0,o.CV)("staffInfoLoading",(0,a.yT)((r=f(s().m(function e(t){var n;return s().w(function(e){for(;;)if(0===e.n)return n=t.id,e.a(2,(0,a.$P)("/safetyEval/org-personnel/delete",{data:(0,l.gR)(n)}))},e)})),function(e){return r.apply(this,arguments)}))),h=(0,o.CV)("staffInfoLoading",(0,a.yT)((i=f(s().m(function e(t){var n;return s().w(function(e){for(;;)if(0===e.n)return n=t.id,e.a(2,(0,a.$P)("/safetyEval/org-personnel/reset-password",{data:(0,l.gR)(n)}))},e)})),function(e){return i.apply(this,arguments)})))},93316(e,t,n){"use strict";n.r(t),n.d(t,{staffResignationApplyAdd:()=>a,staffResignationApplyInfo:()=>o,staffResignationApplyList:()=>i});var r=n(28311),i=(0,r.CV)("staffResignationApplyLoading","Get > /safetyEval/org-resign-apply/page","staffResignationApplyList: [] | res.data || [] & staffResignationApplyTotal: 0 | res.total || 0"),o=(0,r.CV)("staffResignationApplyLoading","Get > /safetyEval/org-resign-apply/get","resignApplyDetail: {} | res.data || {}"),a=(0,r.CV)("staffResignationApplyLoading","Post > @/safetyEval/org-resign-apply/save")},97467(e,t,n){"use strict";n.r(t),n.d(t,{dictValuesData:()=>u,getUserlistAll:()=>p,projectHasUser:()=>d,userCertificateAdd:()=>a,userCertificateEdit:()=>l,userCertificateInfo:()=>o,userCertificateIsExistCertNo:()=>f,userCertificateList:()=>i,userCertificateRemove:()=>c,userCertificateStatPage:()=>s});var r=n(28311),i=(0,r.CV)("userCertificateLoading","Post > @/certificate/userCertificate/list"),o=(0,r.CV)("userCertificateLoading","Get > /certificate/userCertificate/getInfoById/{id}"),a=(0,r.CV)("userCertificateLoading","Post > @/certificate/userCertificate/save"),l=(0,r.CV)("userCertificateLoading","Put > @/certificate/userCertificate/edit"),s=(0,r.CV)("userCertificateLoading","Post > @/certificate/userCertificate/corpCertificateStatPage"),c=(0,r.CV)("userCertificateLoading","Delete > @/certificate/userCertificate/delete/{id}"),u=(0,r.CV)("userCertificateLoading","Get > /config/dict-trees/list/by/dictValues"),f=(0,r.CV)("userCertificateLoading","Get > /certificate/userCertificate/isExistCertNo"),d=(0,r.CV)("userCertificateLoading","Get > /xgfManager/project/projectHasUser"),p=(0,r.CV)("corpCertificateLoading","Post > @/certificate/user/listAll")},30159(e,t,n){"use strict";n.d(t,{A:()=>u});var r=n(26380),i=n(41038),o=n(87160),a=n(96540),l=n(38623),s=n(74848);function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return c(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?c(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),y=p[0],m=p[1];return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(r.A.Item,{name:n,label:u,valuePropName:"fileList",getValueProps:function(e){return Array.isArray(e)?{fileList:e}:{fileList:e?e.split(",").map(function(e){return{url:e,uid:e,status:"done",name:"附件"}}):[]}},getValueFromEvent:function(e){var t=e.fileList;return(null==t?void 0:t.map(function(e){var t;return{url:(null==(t=e.response)||null==(t=t.data)?void 0:t.url)||e.url,uid:e.uid,status:e.status,name:e.name,percent:e.percent}}))||[]},children:(0,s.jsx)(i.A,{listType:"picture-card",headers:{token:sessionStorage.getItem("token")},maxCount:f,accept:d,action:"".concat(window.process.env.app.API_HOST,"/safetyEval/file/upload"),onPreview:function(e){var t;(t=e.url||e.thumbUrl,/\.(png|jpe?g|gif|bmp|webp|svg)(\?.*)?$/i.test(t||""))?m(e.url||e.thumbUrl):window.open(e.url||e.thumbUrl)},children:(0,s.jsxs)("button",{style:{border:0,background:"none"},type:"button",children:[(0,s.jsx)(l.A,{}),(0,s.jsx)("div",{style:{marginTop:8},children:"上传附件"})]})})}),(0,s.jsx)(o.A,{style:{display:"none"},preview:{visible:!!y,src:y,onVisibleChange:function(e){e||m("")}}})]})}},63910(e,t,n){"use strict";n.d(t,{Ay:()=>l,Bi:()=>o});var r=n(87160),i=(n(42443),n(85196),n(74848));function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=window.fileUrl||"",n=e.filePath,r=e.url;if(n){var i=String(n);return/^https?:\/\//i.test(i)?i:t?"".concat(t).concat(i):i}if(r){var o=String(r);return/^https?:\/\//i.test(o)?o:t?"".concat(t).concat(o):o}return""}function a(e){var t=e.files,n=e.width,a=void 0===n?100:n,l=e.height,s=void 0===l?100:l,c=((void 0===t?[]:t)||[]).filter(Boolean).map(o).filter(Boolean);return c.length?(0,i.jsx)(r.A.PreviewGroup,{children:c.map(function(e,t){return(0,i.jsx)(r.A,{src:e,alt:"",width:a,height:s,wrapperStyle:{marginRight:10,marginBottom:10}},"".concat(e,"-").concat(t))})}):(0,i.jsx)("span",{children:"暂无图片"})}a.displayName="CertPreviewImg";let l=a},77016(e,t,n){"use strict";n.d(t,{Ay:()=>f,QQ:()=>u});var r=n(87160),i=n(18182),o=n(74848);function a(e){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function s(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n="".concat(t||""," ").concat(e||"").toLowerCase();return/\.(jpe?g|png|gif|webp|bmp)(\?|#|$)/i.test(n)?"image":"other"}(a,n)?(0,o.jsx)(r.A,{src:a,alt:n||"预览",style:s({maxHeight:480},i)}):(0,o.jsxs)("div",{style:s({minHeight:120,display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",background:"#fafafa",color:"rgba(0,0,0,0.45)"},i),children:[(0,o.jsx)("span",{style:{marginBottom:8},children:"此文件类型不支持内嵌预览"}),(0,o.jsx)("span",{children:"请点击下方「新窗口打开」按钮在浏览器中查看"})]}):(0,o.jsx)("div",{style:s({minHeight:120,display:"flex",alignItems:"center",justifyContent:"center",background:"#fafafa",color:"rgba(0,0,0,0.45)"},i),children:"暂无上传文件"})}function f(e){var t=e.open,n=e.title,r=e.fileName,a=e.url,l=e.width,s=e.onCancel,f=c(a),d=f&&/\.(jpe?g|png|gif|webp|bmp)(\?|#|$)/i.test(f.toLowerCase());return(0,o.jsx)(i.A,{open:t,destroyOnHidden:!0,title:void 0===n?"文件预览":n,width:void 0===l?720:l,cancelText:"关闭",okText:f?d?"新窗口打开":"重新打开":"关闭",onCancel:s,onOk:function(){f&&window.open(f,"_blank"),null==s||s()},children:t&&(0,o.jsxs)("div",{children:[r&&(0,o.jsx)("div",{style:{padding:12,background:"#f8fafc",border:"1px solid #f0f0f0",borderRadius:4,marginBottom:12,fontWeight:500},children:r}),(0,o.jsx)(u,{url:f,fileName:r})]})})}},85029(e,t,n){"use strict";n.d(t,{A:()=>b});var r=n(28311),i=n(71500),o=n(36223),a=n(96540),l=n(21023),s=n(39724),c=n(30896),u=n(26676),f=n(85497),d=n(88648),p=n(74848);function y(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return m(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(m(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,m(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,m(u,"constructor",c),m(c,"constructor",s),s.displayName="GeneratorFunction",m(c,i,"GeneratorFunction"),m(u),m(u,i,"Generator"),m(u,r,function(){return this}),m(u,"toString",function(){return"[object Generator]"}),(y=function(){return{w:o,m:f}})()}function m(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(m=function(e,t,n,r){function o(t,n){m(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function v(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),j=b[0],x=b[1],S=(0,f.A)(),C=(0,u.A)(),A=C.loading,w=C.getFile;return(0,a.useEffect)(function(){var e,t;console.log(S),(e=y().m(function e(){var t,n;return y().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,d.userCertificateInfo({id:S.id});case 1:return t=e.v,e.n=2,w({eqType:c.c[m],eqForeignKey:t.data.userCertificateId});case 2:n=e.v,t.data.licenseFile=n,x(t.data||{});case 3:return e.a(2)}},e)}),t=function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){v(o,r,i,a,l,"next",e)}function l(e){v(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return t.apply(this,arguments)})()},[]),(0,p.jsx)("div",{children:(0,p.jsx)(l.A,{title:"证书信息查看",children:(0,p.jsxs)("div",{children:[(0,p.jsx)(i.A,{orientation:"left",children:"人员信息"}),(0,p.jsx)(o.A,{bordered:!0,loding:A,items:[{label:"姓名",children:j.name},{label:"企业名称",children:j.corpinfoName},{label:"部门名称",children:j.departmentName},{label:"岗位名称",children:j.userPostName},{label:"就职状态",children:(0,p.jsx)("div",{children:g[j.employmentStatus]})}],column:2,labelStyle:{width:200},contentStyle:{width:500}}),(0,p.jsx)(i.A,{orientation:"left",children:"证书信息"}),(0,p.jsx)(o.A,{bordered:!0,loding:A,items:[{label:"证书名称",children:j.certificateName},{label:"证书编号",children:j.certificateCode},{label:"岗位名称",children:j.postName},{label:"发证机构",children:j.issuingAuthority},{label:"发证日期",children:j.dateIssue},{label:"有效期至",children:(0,p.jsx)("div",{children:"".concat(null!=(n=j.certificateDateStart)?n:""," - ").concat(null!=(r=j.certificateDateEnd)?r:"")})},{label:"证照照片",children:(0,p.jsx)(s.A,{files:j.licenseFile})}],column:2,labelStyle:{width:200},contentStyle:{width:500}})]})})})})},70529(e,t,n){"use strict";n.d(t,{A:()=>Q});var r=n(57971),i=n(28311),o=n(26380),a=n(18182),l=n(87959),s=n(71021),c=n(73133),u=n(96540),f=n(68808),d=n(51315),p=n(21023),y=n(6480),m=n(89761);n(8051);var v=n(75228),h=n(49269),g=n(89490),b=n(20977),j=n(30896),x=n(18939),S=n(26676),C=n(85497),A=n(35525),w=n(44346),P=n(92309),O=n(88648),I=n(77539),E=n(56347),N=n(74848);function L(e){return(L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function T(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return k(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(k(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,k(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,k(u,"constructor",c),k(c,"constructor",s),s.displayName="GeneratorFunction",k(c,i,"GeneratorFunction"),k(u),k(u,i,"Generator"),k(u,r,function(){return this}),k(u,"toString",function(){return"[object Generator]"}),(T=function(){return{w:o,m:f}})()}function k(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(k=function(e,t,n,r){function o(t,n){k(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function F(e){return function(e){if(Array.isArray(e))return G(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||V(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function D(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function R(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){D(o,r,i,a,l,"next",e)}function l(e){D(o,r,i,a,l,"throw",e)}a(void 0)})}}function q(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function _(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||V(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function V(e,t){if(e){if("string"==typeof e)return G(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?G(e,t):void 0}}function G(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0xa00000})){t.n=3;break}return l.Ay.error("选择的图片不能大于10MB"),t.a(2);case 3:return t.n=4,C({single:!1,files:V});case 4:return t.n=5,L({single:!1,files:n.certificateImgs,params:{type:j.c[e.certificatePhotoType],foreignKey:c}});case 5:if(r=t.v.id,n.certificateDateStart=n.certificateDate[0],n.certificateDateEnd=n.certificateDate[1],n.type=e.personnelType,n.typeName=({tezhongzuoye:"特种作业人员",tzsbczry:"特种设备操作人员",zyfzr:"主要负责人",aqscglry:"安全生产管理人员"})[e.personnelType],!e.currentId){t.n=7;break}return n.id=e.currentId,n.userCertificateId=c,t.n=6,e.requestEdit(n).then(function(t){t.success&&(en(),e.getData(),e.onSuccess(c),l.Ay.success("编辑成功"))});case 6:t.n=8;break;case 7:return n.userCertificateId=r,t.n=8,e.requestAdd(n).then(function(t){t.success&&(en(),e.getData(),e.onSuccess(c),l.Ay.success("新增成功"))});case 8:return t.a(2)}},t)})),function(e){return r.apply(this,arguments)});return(0,u.useEffect)(function(){var t;$?e.userCertificateIsExistCertNo({certNo:$,id:null!=(t=e.currentId)?t:""}).then(function(e){e.data?(i.setFields([{name:"certificateCode",errors:["证书编号重复"]}]),Z(!1)):Z(!0)}):i.setFields([{name:"certificateCode",errors:[]}])},[$]),(0,N.jsx)(a.A,{open:e.open,maskClosable:!1,title:e.currentId?"编辑":"新增",width:800,confirmLoading:h||O||D||e.loding,onOk:i.submit,onCancel:en,children:(0,N.jsx)(f.A,{form:i,onValuesChange:function(e){if("certificateCode"in e){var t;Q(null!=(t=e.certificateCode)?t:"")}},span:24,values:{securityFlag:0},options:[{name:"userId",label:"选择人员",render:b.O.SELECT,items:H},{name:"userName",label:"人员名称",onlyForLabel:!0},{name:"certificateName",label:"证书名称"},{name:"certificateCode",label:"证书编号"},{name:"postId",label:"岗位名称",render:(0,N.jsx)(m.A,{dictValue:e.dictionaryType,onGetLabel:function(e){return i.setFieldValue("postName",e)}})},{name:"postName",label:"岗位名称",onlyForLabel:!0},{name:"issuingAuthority",label:"发证机构"},{name:"dateIssue",label:"发证日期",render:b.O.DATE},{name:"certificateDate",label:"有效期",render:b.O.DATE_RANGE,rules:[{validator:function(e,t){return Array.isArray(t)&&t.every(function(e){return""===e})?Promise.reject(Error("请选择有效期")):Promise.resolve()}}]},{name:"certificateImgs",label:"证照照片",render:(0,N.jsx)(g.A,{maxCount:2,onGetRemoveFile:function(e){G([].concat(F(V),[e]))},tipContent:(0,N.jsx)("div",{style:{lineHeight:1.6,color:"red",fontSize:12},children:(0,N.jsx)("div",{children:"温馨提示:用户要上传证照照片正反面(证照照片数量是2张)单张大小不超过10MB,支持jpg、jpeg、png格式。"})})})}],labelCol:{span:10},showActionButtons:!1,onFinish:er})})};let Q=(0,i.dm)([O.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){var t,n=e.props,r=e.certificatePhotoType,i=e.displayType,f=e.personnelType,m=e.permissionAdd,g=e.permissionEdit,b=e.permissionView,x=e.permissionDel,A=e.dictionaryType,P=U((0,u.useState)(!1),2),O=P[0],I=P[1],E=U((0,u.useState)(""),2),L=E[0],k=E[1],D=(0,C.A)(),q=(0,S.A)(),V=q.loading,G=q.getFile,Q=U(o.A.useForm(),1)[0],$=(0,w.A)(n.userCertificateList,{form:Q,transform:function(e){return _(_({},e),{},{eqCorpinfoId:D.corpinfoId,eqType:f})}}),Y=$.tableProps,H=$.getData,W=(t=R(T().m(function e(t){return T().w(function(e){for(;;)switch(e.n){case 0:n.projectHasUser({eqUserId:t.userId}).then(function(e){if(console.log(e),e.data&&e.data.length>0){var r=[],i=[];e.data.forEach(function(e){r.push(e.projectName),i.push(e.userName)}),a.A.confirm({title:"提示",content:(0,N.jsxs)("div",{children:[(0,N.jsxs)("div",{children:["【",F(new Set(i)).join(","),"】有正在进行的项目,包含【",F(new Set(r)).join(","),"】确定删除吗?"]}),(0,N.jsx)("div",{style:{fontSize:14,color:"red"},children:"删除可能会对正在进行的项目造成异常状态,请谨慎操作。"})]}),onOk:function(){n.userCertificateRemove({id:t.id}).then(function(e){e.success&&(l.Ay.success("删除成功"),H())})}})}else a.A.confirm({title:"提示",content:"确定删除吗?",onOk:function(){n.userCertificateRemove({id:t.id}).then(function(e){e.success&&(l.Ay.success("删除成功"),H())})}})});case 1:return e.a(2)}},e)})),function(e){return t.apply(this,arguments)}),K=U((0,u.useState)({}),2),J=K[0],Z=K[1],X=U((0,u.useState)(new Set),2),ee=X[0],et=X[1],en=(0,u.useRef)(new Set),er=(0,u.useRef)([]),ei=(0,u.useRef)(0),eo=function(){for(;er.current.length>0&&ei.current<3;)!function(){var e=er.current.shift(),t=e.id,n=e.resolve,i=e.reject;ei.current++,G({eqType:j.c[r],eqForeignKey:t}).then(function(e){Z(function(n){return _(_({},n),{},z({},t,e||[]))}),n(e)}).catch(function(e){console.error("图片加载失败:",e),i(e)}).finally(function(){ei.current--,et(function(e){var n=new Set(e);return n.delete(t),n}),eo()})}()};(0,u.useEffect)(function(){if("View"===i){var e=document.createElement("style");return e.innerHTML="\n .search-layout::after {\n content: none !important;\n display: none !important;\n }\n ",document.head.appendChild(e),function(){document.head.removeChild(e)}}},[]),(0,u.useEffect)(function(){if(Y.dataSource){var e=new Set(Y.dataSource.map(function(e){return e.userCertificateId}).filter(Boolean));Z(function(t){var n={};return Object.keys(t).forEach(function(r){e.has(r)&&(n[r]=t[r])}),n})}},[Y.dataSource]);var ea=(0,u.useRef)(new Set);return(0,u.useEffect)(function(){return Y.dataSource&&Y.dataSource.forEach(function(e){var t=e.userCertificateId;t&&!ea.current.has(t)&&(ea.current.add(t),!t||J[t]||ee.has(t)||en.current.has(t)?Promise.resolve():(en.current.add(t),et(function(e){return new Set([].concat(F(e),[t]))}),new Promise(function(e,n){er.current.push({id:t,resolve:e,reject:n}),eo()}).finally(function(){en.current.delete(t)})))}),function(){ea.current.clear()}},[Y.dataSource]),(0,N.jsxs)(p.A,{children:[(0,N.jsx)(y.A,{form:Q,options:[{name:"likeUserName",label:"姓名"},{name:"likePostName",label:"岗位名称"}],onFinish:H}),(0,N.jsx)(v.A,_({loding:V,options:"View"!==i,toolBarRender:function(){return(0,N.jsx)(N.Fragment,{children:"View"!==i&&n.permission(m)&&(0,N.jsx)(s.Ay,{type:"primary",icon:(0,N.jsx)(d.A,{}),onClick:function(){I(!0)},children:"新增"})})},columns:[{title:"姓名",dataIndex:"name"},{title:"证书名称",dataIndex:"certificateName"},{title:"证书编号",dataIndex:"certificateCode"},{title:"岗位名称",dataIndex:"postName"},{title:"有效期至",dataIndex:"certificateNo",width:280,render:function(e,t){var n,r;return(0,N.jsx)("div",{children:"".concat(null!=(n=t.certificateDateStart)?n:""," - ").concat(null!=(r=t.certificateDateEnd)?r:"")})}},{title:"就职状态",dataIndex:"certificateNo",render:function(e,t){return(0,N.jsx)("div",{children:B[t.employmentStatus]||"-"})}},{title:"图片",dataIndex:"name",render:function(e,t){var n=J[t.userCertificateId]||[];return n.length?(0,N.jsx)(h.A,{files:n}):(0,N.jsx)("span",{children:"无"})}},{title:"操作",width:200,render:function(e,t){return(0,N.jsxs)(c.A,{children:[n.permission(b)&&(0,N.jsx)(s.Ay,{type:"link",onClick:function(){return n.history.push("./View?id=".concat(t.id))},children:"查看"}),"View"!==i&&n.permission(g)&&(0,N.jsx)(s.Ay,{type:"link",onClick:function(){I(!0),k(t.id)},children:"编辑"}),"View"!==i&&n.permission(x)&&(0,N.jsx)(s.Ay,{danger:!0,type:"link",onClick:function(){return W(t)},children:"删除"})]})}}]},Y)),O&&(0,N.jsx)(M,{open:O,loding:n.userCertificate.userCertificateLoading,getData:H,currentId:L,requestAdd:n.userCertificateAdd,requestEdit:n.userCertificateEdit,requestDetails:n.userCertificateInfo,userCertificateIsExistCertNo:n.userCertificateIsExistCertNo,getUserlistAll:n.getUserlistAll,certificatePhotoType:r,personnelType:f,dictionaryType:A,onCancel:function(){I(!1),k("")},onSuccess:function(e){Z(function(t){var n=_({},t);return delete n[e],n})}})]})}))},13290(e,t,n){"use strict";n.d(t,{A:()=>d});var r=n(96540),i=n(71021),o=n(87160),a=n(74848);function l(e){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var s=["url","children"];function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function u(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return f(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?f(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),p=d[0],y=d[1],m=function(e){if(!e)return"";var t=String(e);if(/^https?:\/\//i.test(t))return t;var n=window.fileUrl||"";return n?"".concat(n).concat(t):t}(n);return(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)(i.Ay,u(u({type:"link",size:"small",disabled:!m,onClick:function(){/\.(png|jpe?g|gif|bmp|webp|svg)(\?.*)?$/i.test(m||"")?y(m):window.open(m,"_blank")}},c),{},{children:void 0===l?"预览":l})),p&&(0,a.jsx)(o.A,{src:p,style:{display:"none"},preview:{visible:!0,onVisibleChange:function(e){e||y("")}}})]})}},74565(e,t,n){"use strict";n.d(t,{A:()=>b});var r=n(28311),i=n(71500),o=n(36223),a=n(96540),l=n(21023),s=n(39724),c=n(30896),u=n(26676),f=n(85497),d=n(88648),p=n(74848);function y(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return m(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(m(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,m(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,m(u,"constructor",c),m(c,"constructor",s),s.displayName="GeneratorFunction",m(c,i,"GeneratorFunction"),m(u),m(u,i,"Generator"),m(u,r,function(){return this}),m(u,"toString",function(){return"[object Generator]"}),(y=function(){return{w:o,m:f}})()}function m(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(m=function(e,t,n,r){function o(t,n){m(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function v(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),j=b[0],x=b[1],S=(0,f.A)(),C=(0,u.A)(),A=C.loading,w=C.getFile;return(0,a.useEffect)(function(){var e,t;console.log(S.personnelType),(e=y().m(function e(){var t,n;return y().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,d.userCertificateInfo({id:S.id});case 1:return t=e.v,e.n=2,w({eqType:c.c[m],eqForeignKey:t.data.userCertificateId});case 2:n=e.v,t.data.licenseFile=n,x(t.data||{});case 3:return e.a(2)}},e)}),t=function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){v(o,r,i,a,l,"next",e)}function l(e){v(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return t.apply(this,arguments)})()},[]),(0,p.jsx)("div",{children:(0,p.jsx)(l.A,{title:"证书信息查看",children:(0,p.jsxs)("div",{children:[(0,p.jsx)(i.A,{orientation:"left",children:"人员信息"}),(0,p.jsx)(o.A,{bordered:!0,loding:A,items:[{label:"姓名",children:j.name},{label:"企业名称",children:j.corpinfoName},{label:"部门名称",children:j.departmentName},{label:"岗位名称",children:j.userPostName},{label:"就职状态",children:(0,p.jsx)("div",{children:g[j.employmentStatus]})}],column:2,labelStyle:{width:200},contentStyle:{width:500}}),(0,p.jsx)(i.A,{orientation:"left",children:"证书信息"}),(0,p.jsx)(o.A,{bordered:!0,loding:A,items:[{label:"证书名称",children:j.certificateName},{label:"证书编号",children:j.certificateCode},{label:"发证机构",children:j.issuingAuthority},{label:"tzsbczry"===S.personnelType?"操作项目":"行业类别",children:"tzsbczry"===S.personnelType?j.assignmentOperatingItemsName:j.industryCategoryName},{label:"tzsbczry"===S.personnelType?"作业类别":"操作项目",children:"tzsbczry"===S.personnelType?j.assignmentCategoryName:j.industryOperatingItemsName},{label:"发证日期",children:j.dateIssue},{label:"复审日期",children:j.reviewDate},{label:"有效期至",children:(0,p.jsx)("div",{children:"".concat(null!=(n=j.certificateDateStart)?n:""," - ").concat(null!=(r=j.certificateDateEnd)?r:"")})},{label:"证照照片",children:(0,p.jsx)(s.A,{files:j.licenseFile})}],column:2,labelStyle:{width:200},contentStyle:{width:500}})]})})})})},60065(e,t,n){"use strict";n.d(t,{A:()=>Q});var r=n(57971),i=n(28311),o=n(26380),a=n(18182),l=n(87959),s=n(71021),c=n(73133),u=n(96540),f=n(56347),d=n(68808),p=n(51315),y=n(21023),m=n(6480),v=n(89761),h=n(75228),g=n(49269),b=n(89490),j=n(20977),x=n(30896),S=n(18939),C=n(26676),A=n(85497),w=n(35525),P=n(44346),O=n(92309),I=n(88648),E=n(77539),N=n(74848);function L(e){return(L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function T(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return k(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(k(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,k(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,k(u,"constructor",c),k(c,"constructor",s),s.displayName="GeneratorFunction",k(c,i,"GeneratorFunction"),k(u),k(u,i,"Generator"),k(u,r,function(){return this}),k(u,"toString",function(){return"[object Generator]"}),(T=function(){return{w:o,m:f}})()}function k(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(k=function(e,t,n,r){function o(t,n){k(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function F(e){return function(e){if(Array.isArray(e))return G(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||V(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function D(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function R(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){D(o,r,i,a,l,"next",e)}function l(e){D(o,r,i,a,l,"throw",e)}a(void 0)})}}function q(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function _(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||V(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function V(e,t){if(e){if("string"==typeof e)return G(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?G(e,t):void 0}}function G(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0xa00000})){t.n=3;break}return l.Ay.error("选择的图片不能大于10MB"),t.a(2);case 3:return t.n=4,h({single:!1,files:V});case 4:return t.n=5,P({single:!1,files:n.certificateImgs,params:{type:x.c[e.certificatePhotoType],foreignKey:c}});case 5:if(r=t.v.id,n.type=e.personnelType,n.typeName=({tezhongzuoye:"特种作业人员",tzsbczry:"特种设备操作人员",zyfzr:"主要负责人",aqscglry:"安全生产管理人员"})[e.personnelType],n.certificateDateStart=n.certificateDate[0],n.certificateDateEnd=n.certificateDate[1],!e.currentId){t.n=7;break}return n.id=e.currentId,n.userCertificateId=c,t.n=6,e.requestEdit(n).then(function(t){t.success&&(eo(),e.getData(),e.onSuccess(c),l.Ay.success("编辑成功"))});case 6:t.n=8;break;case 7:return n.userCertificateId=r,t.n=8,e.requestAdd(n).then(function(t){t.success&&(eo(),e.getData(),e.onSuccess(c),l.Ay.success("新增成功"))});case 8:return t.a(2)}},t)})),function(e){return r.apply(this,arguments)});return(0,N.jsx)(a.A,{open:e.open,maskClosable:!1,title:e.currentId?"编辑":"新增",width:800,confirmLoading:m||A||L||e.loding,onOk:i.submit,onCancel:eo,children:(0,N.jsx)(d.A,{form:i,onValuesChange:function(e){if("industryCategoryCode"in e){var t,n=e.industryCategoryCode;n&&(_(n),i.setFieldsValue({industryOperatingItemsCode:void 0}))}if("assignmentOperatingItemsCode"in e){var r=e.assignmentOperatingItemsCode;r&&(_(r),i.setFieldsValue({assignmentCategoryCode:void 0}))}"certificateCode"in e&&Q(null!=(t=e.certificateCode)?t:"")},span:24,values:{securityFlag:0},options:[{name:"userId",label:"选择人员",render:j.O.SELECT,items:X},{name:"certificateName",label:"证书名称"},{name:"certificateCode",label:"证书编号"},{name:"issuingAuthority",label:"发证机构"},{name:"industryCategoryCode",label:"行业类别",hidden:"tezhongzuoye"!==e.personnelType,render:(0,N.jsx)(v.A,{dictValue:e.dictionaryType,onGetLabel:function(e){return i.setFieldValue("industryCategoryName",e)}})},{name:"industryCategoryName",label:"行业类别名称",onlyForLabel:!0},{name:"industryOperatingItemsCode",label:"操作项目",hidden:"tezhongzuoye"!==e.personnelType,render:(0,N.jsx)(v.A,{dictValue:q,onGetLabel:function(e){return i.setFieldValue("industryOperatingItemsName",e)}})},{name:"industryOperatingItemsName",label:"操作项目名称",onlyForLabel:!0},{name:"assignmentOperatingItemsCode",label:"操作项目",hidden:"tzsbczry"!==e.personnelType,render:(0,N.jsx)(v.A,{dictValue:e.dictionaryType,onGetLabel:function(e){return i.setFieldValue("assignmentOperatingItemsName",e)}})},{name:"assignmentOperatingItemsName",label:"操作项目名称",onlyForLabel:!0},{name:"assignmentCategoryCode",label:"作业类别",hidden:"tzsbczry"!==e.personnelType,render:(0,N.jsx)(v.A,{dictValue:q,onGetLabel:function(e){return i.setFieldValue("assignmentCategoryName",e)}})},{name:"assignmentCategoryName",label:"作业类别名称",onlyForLabel:!0},{name:"dateIssue",label:"发证日期",render:j.O.DATE},{name:"certificateDate",label:"有效期",render:j.O.DATE_RANGE,rules:[{validator:function(e,t){return Array.isArray(t)&&t.every(function(e){return""===e})?Promise.reject(Error("请选择有效期")):Promise.resolve()}}]},{name:"reviewDate",label:"复审日期",render:j.O.DATE},{name:"certificateImgs",label:"证照照片",render:(0,N.jsx)(b.A,{maxCount:2,onGetRemoveFile:function(e){G([].concat(F(V),[e]))},tipContent:(0,N.jsx)("div",{style:{lineHeight:1.6,color:"red",fontSize:12},children:(0,N.jsx)("div",{children:"温馨提示:用户要上传证照照片正反面(证照照片数量是2张)单张大小不超过10MB,支持jpg、jpeg、png格式。"})})})}],labelCol:{span:10},showActionButtons:!1,onFinish:ea})})};let Q=(0,i.dm)([I.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){var t,n=e.props,r=e.certificatePhotoType,i=e.displayType,f=e.personnelType,d=e.permissionAdd,b=e.permissionEdit,j=e.permissionView,S=e.permissionDel,w=e.dictionaryType,O=U((0,u.useState)(!1),2),I=O[0],E=O[1],L=U((0,u.useState)(""),2),k=L[0],D=L[1],q=U((0,u.useState)(""),2),V=q[0],G=q[1],Q=(0,A.A)(),$=(0,C.A)(),Y=$.loading,H=$.getFile,W=U(o.A.useForm(),1)[0],K=(0,P.A)(n.userCertificateList,{form:W,transform:function(e){return e.eqIndustryCategoryCode&&G(e.eqIndustryCategoryCode),e.eqAssignmentOperatingItemsCode&&G(e.eqAssignmentOperatingItemsCode),_(_({},e),{},{eqCorpinfoId:Q.corpinfoId,eqType:f})}}),J=K.tableProps,Z=K.getData;(0,u.useEffect)(function(){if("View"===i){var e=document.createElement("style");return e.innerHTML="\n .search-layout::after {\n content: none !important;\n display: none !important;\n }\n ",document.head.appendChild(e),function(){document.head.removeChild(e)}}},[]);var X=(t=R(T().m(function e(t){return T().w(function(e){for(;;)switch(e.n){case 0:n.projectHasUser({eqUserId:t.userId}).then(function(e){if(e.data&&e.data.length>0){var r=[],i=[];e.data.forEach(function(e){r.push(e.projectName),i.push(e.userName)}),a.A.confirm({title:"提示",content:(0,N.jsxs)("div",{children:[(0,N.jsxs)("div",{children:["【",F(new Set(i)).join(","),"】有正在进行的项目,包含【",F(new Set(r)).join(","),"】确定删除吗?"]}),(0,N.jsx)("div",{style:{fontSize:14,color:"red"},children:"删除可能会对正在进行的项目造成异常状态,请谨慎操作。"})]}),onOk:function(){n.userCertificateRemove({id:t.id}).then(function(e){e.success&&(l.Ay.success("删除成功"),Z())})}})}else a.A.confirm({title:"提示",content:"确定删除吗?",onOk:function(){n.userCertificateRemove({id:t.id}).then(function(e){e.success&&(l.Ay.success("删除成功"),Z())})}})});case 1:return e.a(2)}},e)})),function(e){return t.apply(this,arguments)}),ee=U((0,u.useState)({}),2),et=ee[0],en=ee[1],er=U((0,u.useState)(new Set),2),ei=er[0],eo=er[1],ea=(0,u.useRef)(new Set),el=(0,u.useRef)([]),es=(0,u.useRef)(0),ec=function(){for(;el.current.length>0&&es.current<3;)!function(){var e=el.current.shift(),t=e.id,n=e.resolve,i=e.reject;es.current++,H({eqType:x.c[r],eqForeignKey:t}).then(function(e){en(function(n){return _(_({},n),{},z({},t,e||[]))}),n(e)}).catch(function(e){console.error("图片加载失败:",e),i(e)}).finally(function(){es.current--,eo(function(e){var n=new Set(e);return n.delete(t),n}),ec()})}()};(0,u.useEffect)(function(){if(J.dataSource){var e=new Set(J.dataSource.map(function(e){return e.userCertificateId}).filter(Boolean));en(function(t){var n={};return Object.keys(t).forEach(function(r){e.has(r)&&(n[r]=t[r])}),n})}},[J.dataSource]);var eu=(0,u.useRef)(new Set);return(0,u.useEffect)(function(){return J.dataSource&&J.dataSource.forEach(function(e){var t=e.userCertificateId;t&&!eu.current.has(t)&&(eu.current.add(t),!t||et[t]||ei.has(t)||ea.current.has(t)?Promise.resolve():(ea.current.add(t),eo(function(e){return new Set([].concat(F(e),[t]))}),new Promise(function(e,n){el.current.push({id:t,resolve:e,reject:n}),ec()}).finally(function(){ea.current.delete(t)})))}),function(){eu.current.clear()}},[J.dataSource]),(0,N.jsxs)(y.A,{children:[(0,N.jsx)(m.A,{onValuesChange:function(e){if("eqIndustryCategoryCode"in e){var t=e.eqIndustryCategoryCode;t&&(G(t),W.setFieldsValue({eqIndustryOperatingItemsCode:void 0}))}if("eqAssignmentOperatingItemsCode"in e){var n=e.eqAssignmentOperatingItemsCode;n&&(G(n),W.setFieldsValue({eqAssignmentCategoryCode:void 0}))}},form:W,options:[{name:"likeUserName",label:"姓名"},{name:"tzsbczry"===f?"eqAssignmentOperatingItemsCode":"eqIndustryCategoryCode",label:"tzsbczry"===f?"操作项目":"行业类别",render:(0,N.jsx)(v.A,{dictValue:w})},{name:"tzsbczry"===f?"eqAssignmentCategoryCode":"eqIndustryOperatingItemsCode",label:"tzsbczry"===f?"作业类别":"操作项目",render:(0,N.jsx)(v.A,{dictValue:V})}],onFinish:Z}),(0,N.jsx)(h.A,_({loding:Y,options:"View"!==i,toolBarRender:function(){return(0,N.jsx)(N.Fragment,{children:"View"!==i&&n.permission(d)&&(0,N.jsx)(s.Ay,{type:"primary",icon:(0,N.jsx)(p.A,{}),onClick:function(){E(!0)},children:"新增"})})},columns:[{title:"姓名",dataIndex:"name"},{title:"证书名称",dataIndex:"certificateName"},{title:"证书编号",dataIndex:"certificateCode"},{title:"tzsbczry"===f?"操作项目":"行业类别",dataIndex:"tzsbczry"===f?"assignmentOperatingItemsName":"industryCategoryName"},{title:"tzsbczry"===f?"作业类别":"操作项目",dataIndex:"tzsbczry"===f?"assignmentCategoryName":"industryOperatingItemsName"},{title:"有效期至",dataIndex:"certificateDate",width:280,render:function(e,t){var n,r;return(0,N.jsx)("div",{children:"".concat(null!=(n=t.certificateDateStart)?n:""," - ").concat(null!=(r=t.certificateDateEnd)?r:"")})}},{title:"就职状态",dataIndex:"employmentStatus",render:function(e,t){return(0,N.jsx)("div",{children:B[t.employmentStatus]||"-"})}},{title:"图片",dataIndex:"name",render:function(e,t){var n=et[t.userCertificateId]||[];return n.length?(0,N.jsx)(g.A,{files:n}):(0,N.jsx)("span",{children:"无"})}},{title:"操作",width:200,render:function(e,t){return(0,N.jsxs)(c.A,{children:[n.permission(j)&&(0,N.jsx)(s.Ay,{type:"link",onClick:function(){return n.history.push("./View?id=".concat(t.id,"&personnelType=").concat(f))},children:"查看"}),"View"!==i&&n.permission(b)&&(0,N.jsx)(s.Ay,{type:"link",onClick:function(){E(!0),D(t.id)},children:"编辑"}),"View"!==i&&n.permission(S)&&(0,N.jsx)(s.Ay,{danger:!0,type:"link",onClick:function(){return X(t)},children:"删除"})]})}}]},J)),I&&(0,N.jsx)(M,{open:I,loding:n.userCertificate.userCertificateLoading,getData:Z,currentId:k,requestAdd:n.userCertificateAdd,requestEdit:n.userCertificateEdit,requestDetails:n.userCertificateInfo,userCertificateIsExistCertNo:n.userCertificateIsExistCertNo,certificatePhotoType:r,getUserlistAll:n.getUserlistAll,personnelType:f,dictionaryType:w,onCancel:function(){E(!1),D("")},onSuccess:function(e){en(function(t){var n=_({},t);return delete n[e],n})}})]})}))},4178(e,t,n){"use strict";n.d(t,{A:()=>f});var r=n(41038),i=n(71021),o=n(96540),a=n(74848);function l(e){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function c(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return u(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?u(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),m=y[0],v=y[1];return(0,a.jsx)(r.A,c(c({showUploadList:!1,action:l,headers:{token:sessionStorage.getItem("token")},onChange:function(e){if("uploading"===e.file.status)v(!0);else if("done"===e.file.status){var t;v(!1),null==s||s(null==(t=e.file.response)?void 0:t.data,e.file)}else"error"===e.file.status&&v(!1)}},f),{},{children:(0,a.jsx)(i.Ay,c(c({type:"link",size:"small",loading:m},p),{},{children:void 0===d?"上传":d}))}))}},88565(e,t,n){"use strict";n.d(t,{$t:()=>i,PZ:()=>c,Uq:()=>u,WL:()=>r,ZM:()=>s,iT:()=>a,wC:()=>l,xv:()=>f,zL:()=>o});var r={pending:{label:"待确认",color:"warning"},passed:{label:"确认通过",color:"success"},rejected:{label:"打回",color:"error"}},i={2:{label:"审核中",color:"processing"},3:{label:"打回",color:"error"}},o={pending:{label:"待核验",color:"blue"},arranging:{label:"待安排",color:"warning"},passed:{label:"已核验",color:"success"}},a={pending:{label:"待公示",color:"warning"},published:{label:"已公示",color:"success"}},l={1:{label:"已备案",color:"success"},2:{label:"审核中",color:"processing"},3:{label:"已打回",color:"error"},4:{label:"变更审核中",color:"processing"},5:{label:"暂存",color:"default"}},s=[{label:"男",value:1},{label:"女",value:2}],c={1:"男",2:"女"},u=[{label:"通过",value:1},{label:"不通过",value:3}],f={PASS:{icon:"✅",borderColor:"#059669",bg:"#f0fdf4"},WARN:{icon:"⚠️",borderColor:"#d97706",bg:"#fffbeb"},NOT_PASS:{icon:"❌",borderColor:"#dc2626",bg:"#fef2f2"}}},61860(e,t,n){"use strict";n.d(t,{Z:()=>r});var r=n(96540).createContext({})},28155(e,t,n){"use strict";n.d(t,{CI:()=>f,Dc:()=>l,MQ:()=>c,Pn:()=>v,RK:()=>m,UM:()=>o,Uv:()=>i,W$:()=>s,_W:()=>a,bf:()=>r,eT:()=>p,g$:()=>d,w4:()=>u,z6:()=>y});var r=["万州区","涪陵区","渝中区","大渡口区","江北区","沙坪坝区","九龙坡区","南岸区","北碚区","綦江区","大足区","渝北区","巴南区","黔江区","长寿区","江津区","合川区","永川区","南川区","璧山区","铜梁区","潼南区","荣昌区","开州区","梁平区","武隆区","城口县","丰都县","垫江县","忠县","云阳县","奉节县","巫山县","巫溪县","石柱土家族自治县","秀山土家族苗族自治县","酉阳土家族苗族自治县","彭水苗族土家族自治县"].map(function(e){return{label:e,value:e}}),i=[{label:"正常",value:"正常"},{label:"停业",value:"停业"},{label:"注销",value:"注销"}],o=[{label:"大",value:"大"},{label:"中",value:"中"},{label:"小",value:"小"},{label:"微型",value:"微型"}],a=[{label:"审核备案",value:"审核备案"},{label:"确认备案",value:"确认备案"}],l=[{label:"全部",value:""},{label:"审核备案",value:"1"},{label:"确认备案",value:"2"}],s=[{label:"全部",value:""},{label:"已备案",value:"1"},{label:"未备案",value:"2"}],c=[{label:"已备案",value:"已备案"},{label:"未备案",value:"未备案"}],u=[{label:"全部",value:""},{label:"启用",value:"0"},{label:"禁用",value:"1"}],f=[{label:"煤炭开采业",value:"煤炭开采业"},{label:"金属、非金属矿及其他矿采选业",value:"金属、非金属矿及其他矿采选业"},{label:"陆地石油和天然气开采业",value:"陆地石油和天然气开采业"},{label:"陆上油气管道运输业",value:"陆上油气管道运输业"},{label:"石油加工业,化学原料、化学品及医药制造业",value:"石油加工业,化学原料、化学品及医药制造业"},{label:"烟花爆竹制造业",value:"烟花爆竹制造业"},{label:"金属冶炼",value:"金属冶炼"}],d=[{label:"基础人员",value:"基础人员"},{label:"专职评价师",value:"专职评价师"}],p=[{label:"三级安全评价师(对应职业技能等级三级 / 高级工,入门级)",value:"三级安全评价师(对应职业技能等级三级 / 高级工,入门级)"},{label:"二级安全评价师(对应职业技能等级二级 / 技师,中级)",value:"二级安全评价师(对应职业技能等级二级 / 技师,中级)"},{label:"一级安全评价师(对应职业技能等级一级 / 高级技师,最高级)",value:"一级安全评价师(对应职业技能等级一级 / 高级技师,最高级)"}],y=[{label:"全日制",value:"全日制"},{label:"在职教育",value:"在职教育"}],m=[{label:"专科",value:"专科"},{label:"本科",value:"本科"},{label:"硕士",value:"硕士"},{label:"博士",value:"博士"}],v=[{label:"是",value:1},{label:"否",value:2}]},88648(e,t,n){"use strict";n.r(t),n.d(t,{NS_CORP_CERTIFICATE:()=>a,NS_COURSEWARE:()=>s,NS_DRIVER:()=>x,NS_EQUIP_INFO:()=>h,NS_GLOBAL:()=>i,NS_ORG_DEPARTMENT:()=>f,NS_ORG_INFO:()=>c,NS_ORG_POSITION:()=>d,NS_ORG_QUALIFICATION_CERT:()=>u,NS_PERSNONEL_CERTFICATE:()=>o,NS_QUAL_EXPERT:()=>j,NS_QUAL_FILING:()=>g,NS_QUAL_REVIEW:()=>b,NS_STAFF_CERTIFICATE:()=>y,NS_STAFF_CHANGE_LOG:()=>m,NS_STAFF_INFO:()=>p,NS_STAFF_RESIGNATION_APPLY:()=>v,NS_USER_CERTIFICATE:()=>l});var r=n(28311),i=(0,r.Hx)("global"),o=(0,r.Hx)("personnelCertificate"),a=(0,r.Hx)("corpCertificate"),l=(0,r.Hx)("userCertificate"),s=(0,r.Hx)("courseware"),c=(0,r.Hx)("orgInfo"),u=(0,r.Hx)("orgQualificationCert"),f=(0,r.Hx)("orgDepartment"),d=(0,r.Hx)("orgPosition"),p=(0,r.Hx)("staffInfo"),y=(0,r.Hx)("staffCertificate"),m=(0,r.Hx)("staffChangeLog"),v=(0,r.Hx)("staffResignationApply"),h=(0,r.Hx)("equipInfo"),g=(0,r.Hx)("qualFiling"),b=(0,r.Hx)("qualReview"),j=(0,r.Hx)("qualExpert"),x=(0,r.Hx)("driver")},49788(e,t,n){"use strict";n.d(t,{Cd:()=>l,DX:()=>a,JP:()=>u,VA:()=>s,ej:()=>d,sq:()=>f,tV:()=>c});var r=[{label:"全部",value:""},{label:"暂存",value:"5"},{label:"审核中",value:"2"},{label:"已备案",value:"1"},{label:"已打回",value:"3"}],i=[{label:"全部",value:""},{label:"审核中",value:"2"},{label:"已备案",value:"1"}],o=[{label:"全部",value:""},{label:"已备案",value:"1"},{label:"变更审核中",value:"4"}],a={5:{color:"cyan",label:"暂存"},1:{color:"success",label:"已备案"},2:{color:"processing",label:"审核中"},3:{color:"error",label:"已打回"},4:{color:"warning",label:"变更审核中"}};function l(e){return"filed"===e?i:"change"===e?o:r}var s=[{label:"本地单位",value:"本地单位"},{label:"异地单位",value:"异地单位"}],c={APPLICATION:"application",FILED:"filed",CHANGE:"change"};function u(e){var t=Number(e);return 5===t||3===t}function f(e){return 1===Number(e)}function d(e,t){return t!==c.FILED?u(e):2===Number(e)}},1712(e,t,n){"use strict";n.r(t),n.d(t,{bootstrap:()=>b,mount:()=>h,unmount:()=>g});var r,i,o,a=n(57006),l=n(28311),s=n(87959),c=n(74353),u=n.n(c),f=n(36171);function d(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return p(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(p(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,p(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,p(u,"constructor",c),p(c,"constructor",s),s.displayName="GeneratorFunction",p(c,i,"GeneratorFunction"),p(u),p(u,i,"Generator"),p(u,r,function(){return this}),p(u,"toString",function(){return"[object Generator]"}),(d=function(){return{w:o,m:f}})()}function p(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(p=function(e,t,n,r){function o(t,n){p(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function y(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function m(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){y(o,r,i,a,l,"next",e)}function l(e){y(o,r,i,a,l,"throw",e)}a(void 0)})}}n(16033),u().locale("zh-cn"),(0,a.setJJBCommonAntdMessage)(s.Ay);var v=(0,l.mj)();window.fileUrl="https://skqhdg.porthebei.com:9004/file/uploadFiles2/",(0,f.fj)().catch(function(e){console.warn("[getFileUrlFromServer] failed:",(null==e?void 0:e.message)||e)}),window.__POWERED_BY_QIANKUN__||(window.__coreLib={},window.__coreLib.React=n(96540),window.__coreLib.ReactDOM=n(40961),window.__coreLib.jjbCommonLib=n(57006));var h=(r=m(d().m(function e(t){return d().w(function(e){for(;;)switch(e.n){case 0:window.__coreLib.React=n(96540),window.__coreLib.ReactDOM=n(40961),window.__coreLib.jjbCommonLib=n(57006),v.mount(t);case 1:return e.a(2)}},e)})),function(e){return r.apply(this,arguments)}),g=(i=m(d().m(function e(t){return d().w(function(e){for(;;)if(0===e.n)return e.a(2,v.unmount(t))},e)})),function(e){return i.apply(this,arguments)}),b=(o=m(d().m(function e(t){return d().w(function(e){for(;;)if(0===e.n)return e.a(2,v.bootstrap(t))},e)})),function(e){return o.apply(this,arguments)})},99594(e,t,n){"use strict";function r(e){return function(e){if(Array.isArray(e))return i(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e){if(e){if("string"==typeof e)return i(e,void 0);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?i(e,void 0):void 0}}(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nf,PJ:()=>m,Tx:()=>d,eT:()=>y,kD:()=>p});var o={1:{id:1,name:"张建国",gender:"男",birthDate:"1985-03-15",idCard:"500***********1234",education:"全日制 \xb7 本科",graduateSchool:"重庆大学",major:"安全工程",orgName:"重庆安评技术研究院有限公司",deptName:"评价一部",positionName:"高级评价师",account:"138****5678",employmentStatus:1,registerEngineerFlag:1,status:"normal",statusTip:"",certificatesSummary:"安全评价师一级, 注册安全工程师",certificates:[{id:101,certName:"安全评价师一级",certNo:"SJP-2020-****",issueDate:"2020-06-01",expireDate:"2026-06-01",status:"expired",statusLabel:"已过期",statusTip:"证书已过期"},{id:102,certName:"注册安全工程师",certNo:"ZGAQ-2018-****",issueDate:"2018-09-15",expireDate:"2027-09-15",status:"normal",statusLabel:"正常",statusTip:""},{id:103,certName:"安全评价师二级",certNo:"SJP-2023-****",issueDate:"2023-05-01",expireDate:"2026-08-01",status:"expiring",statusLabel:"临期",statusTip:"证书即将到期(不足3月)"}]},2:{id:2,name:"李明华",gender:"男",birthDate:"1988-07-22",idCard:"500***********5678",education:"全日制 \xb7 硕士",graduateSchool:"中国矿业大学",major:"安全技术及工程",orgName:"重庆安评技术研究院有限公司",deptName:"评价二部",positionName:"评价师",account:"139****1234",employmentStatus:1,registerEngineerFlag:1,status:"normal",statusTip:"",certificatesSummary:"安全评价师二级, 注册安全工程师",certificates:[{id:201,certName:"安全评价师二级",certNo:"SJP-2021-****",issueDate:"2021-03-10",expireDate:"2027-03-10",status:"normal",statusLabel:"正常",statusTip:""},{id:202,certName:"注册安全工程师",certNo:"ZGAQ-2019-****",issueDate:"2019-11-20",expireDate:"2028-11-20",status:"normal",statusLabel:"正常",statusTip:""}]},3:{id:3,name:"王丽萍",gender:"女",birthDate:"1990-11-08",idCard:"500***********9012",education:"全日制 \xb7 本科",graduateSchool:"西南大学",major:"化学工程",orgName:"重庆恒安安全评价有限公司",deptName:"评价部",positionName:"评价师",account:"137****8899",employmentStatus:1,registerEngineerFlag:0,status:"abnormal",statusTip:"此评价师的社保存在多处缴纳",certificatesSummary:"安全评价师三级",certificates:[{id:301,certName:"安全评价师三级",certNo:"SJP-2022-****",issueDate:"2022-08-01",expireDate:"2028-08-01",status:"normal",statusLabel:"正常",statusTip:""}]},4:{id:4,name:"陈华",gender:"男",birthDate:"1987-04-18",idCard:"500***********3456",education:"在职教育 \xb7 本科",graduateSchool:"重庆理工大学",major:"安全工程",orgName:"重庆渝安风险评估中心",deptName:"技术部",positionName:"评价师",account:"136****7788",employmentStatus:1,registerEngineerFlag:1,status:"abnormal",statusTip:"评价师证书临期(不足3月)",certificatesSummary:"安全评价师二级",certificates:[{id:401,certName:"安全评价师二级",certNo:"SJP-2020-****",issueDate:"2020-04-15",expireDate:"2026-08-15",status:"expiring",statusLabel:"临期",statusTip:"证书即将到期(不足3月)"}]},5:{id:5,name:"赵敏",gender:"女",birthDate:"1992-01-30",idCard:"500***********7890",education:"全日制 \xb7 本科",graduateSchool:"重庆科技学院",major:"安全工程",orgName:"重庆安环检测技术有限公司",deptName:"评价中心",positionName:"评价师",account:"135****6677",employmentStatus:0,registerEngineerFlag:0,status:"abnormal",statusTip:"此评价师的社保存在多处缴纳;证书临期(不足3月)",certificatesSummary:"安全评价师三级",certificates:[{id:501,certName:"安全评价师三级",certNo:"SJP-2023-****",issueDate:"2023-06-01",expireDate:"2026-07-01",status:"expiring",statusLabel:"临期",statusTip:"证书即将到期(不足3月)"}]}},a=Object.values(o).map(function(e){return{id:e.id,orgName:e.orgName,evaluatorName:e.name,registerEngineerFlag:e.registerEngineerFlag,registerEngineerLabel:1===e.registerEngineerFlag?"是":"否",employmentStatus:e.employmentStatus,employmentLabel:1===e.employmentStatus?"是":"否",certificatesSummary:e.certificatesSummary,status:e.status,statusLabel:"normal"===e.status?"正常":"异常",statusTip:e.statusTip}}),l={1:{id:1,enterpriseName:"重庆华安安全科技有限公司",creditCode:"91500112MA******",industry:"化工行业",district:"渝北区",accountSource:"企业注册",projectOnTime:"12/15",projectOnTimeRate:"80%",reportQuality:"合格",complaintCount:0,penaltyCount:0,infoLevel:"一级",infoLevelCode:"level1",scoreGrade:"A级",evalCount:15,reportQualityDesc:"近6个月无不合格报告",penaltyDesc:"无不良记录",evalCountDesc:"累计安全评价"},2:{id:2,enterpriseName:"重庆鼎信安全咨询有限公司",creditCode:"91500105MA******",industry:"建筑施工",district:"江北区",accountSource:"机构注册",projectOnTime:"8/10",projectOnTimeRate:"80%",reportQuality:"合格",complaintCount:1,penaltyCount:0,infoLevel:"二级",infoLevelCode:"level2",scoreGrade:"B级",evalCount:10,reportQualityDesc:"近6个月1份需整改",penaltyDesc:"无行政处罚",evalCountDesc:"累计安全评价"},3:{id:3,enterpriseName:"重庆安环检测技术有限公司",creditCode:"91500108MA******",industry:"仓储物流",district:"南岸区",accountSource:"监管注册",projectOnTime:"5/8",projectOnTimeRate:"62.5%",reportQuality:"不合格",complaintCount:2,penaltyCount:1,infoLevel:"三级",infoLevelCode:"level3",scoreGrade:"C级",evalCount:8,reportQualityDesc:"近6个月存在不合格报告",penaltyDesc:"1次行政处罚",evalCountDesc:"累计安全评价"},4:{id:4,enterpriseName:"重庆恒安安全评价有限公司",creditCode:"91500106MA******",industry:"矿山",district:"九龙坡区",accountSource:"企业注册",projectOnTime:"20/22",projectOnTimeRate:"91%",reportQuality:"合格",complaintCount:0,penaltyCount:0,infoLevel:"一级",infoLevelCode:"level1",scoreGrade:"A级",evalCount:22,reportQualityDesc:"近6个月无不合格报告",penaltyDesc:"无不良记录",evalCountDesc:"累计安全评价"},5:{id:5,enterpriseName:"重庆渝安风险评估中心",creditCode:"91500107MA******",industry:"石油加工",district:"渝中区",accountSource:"机构注册",projectOnTime:"6/9",projectOnTimeRate:"67%",reportQuality:"合格",complaintCount:0,penaltyCount:0,infoLevel:"二级",infoLevelCode:"level2",scoreGrade:"B级",evalCount:9,reportQualityDesc:"近6个月无不合格报告",penaltyDesc:"无不良记录",evalCountDesc:"累计安全评价"}},s=Object.values(l).map(function(e){return{id:e.id,enterpriseName:e.enterpriseName,district:e.district,accountSource:e.accountSource,projectOnTime:e.projectOnTime,reportQuality:e.reportQuality,complaintCount:e.complaintCount,penaltyCount:e.penaltyCount,infoLevel:e.infoLevel,infoLevelCode:e.infoLevelCode}});function c(e){var t,n,r,i,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=Number(null!=(t=null!=(n=o.pageIndex)?n:o.current)?t:1),l=Number(null!=(r=null!=(i=o.pageSize)?i:o.size)?r:10),s=(a-1)*l;return{success:!0,data:e.slice(s,s+l),totalCount:e.length}}function u(e,t){return!t||String(e||"").includes(String(t).trim())}function f(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=r(a);return e.evaluatorName&&(t=t.filter(function(t){return u(t.evaluatorName,e.evaluatorName)})),e.orgName&&(t=t.filter(function(t){return u(t.orgName,e.orgName)})),void 0!==e.employmentStatus&&null!==e.employmentStatus&&""!==e.employmentStatus&&(t=t.filter(function(t){return t.employmentStatus===Number(e.employmentStatus)})),void 0!==e.registerEngineerFlag&&null!==e.registerEngineerFlag&&""!==e.registerEngineerFlag&&(t=t.filter(function(t){return t.registerEngineerFlag===Number(e.registerEngineerFlag)})),e.status&&(t=t.filter(function(t){return t.status===e.status})),Promise.resolve(c(t,e))}function d(e){var t=o[e];return Promise.resolve({success:!!t,data:t||null})}function p(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=r(s);return e.enterpriseName&&(t=t.filter(function(t){return u(t.enterpriseName,e.enterpriseName)})),e.district&&(t=t.filter(function(t){return t.district===e.district})),e.accountSource&&(t=t.filter(function(t){return t.accountSource===e.accountSource})),Promise.resolve(c(t,e))}function y(e){var t=l[e];return Promise.resolve({success:!!t,data:t||null})}var m=[{label:"企业注册",value:"企业注册"},{label:"机构注册",value:"机构注册"},{label:"监管注册",value:"监管注册"}]},90378(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(71070),i=n(74848);let o=function(e){return(0,i.jsx)("div",{children:(0,i.jsx)(r.default,{props:e,permissionAdd:"qyd-qyzzgl-add",permissionEdit:"qyd-qyzzgl-edit",permissionView:"qyd-qyzzgl-info",permissionDel:"qyd-qyzzgl-del"})})}},55435(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(28311),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:161,personnelType:"zyfzr",permissionAdd:"qyd-zyfzrgl-add",permissionEdit:"qyd-zyfzrgl-edit",permissionView:"qyd-zyfzrgl-info",permissionDel:"qyd-zyfzrgl-del",dictionaryType:"zyfzrgwmc0000"})})}))},23614(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:161})})})},60646(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},66513(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(28311),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:162,personnelType:"aqscglry",permissionAdd:"qyd-aqscglrygl-add",permissionEdit:"qyd-aqscglrygl-edit",permissionView:"qyd-aqscglrygl-info",permissionDel:"qyd-aqscglrygl-del",dictionaryType:"aqscglrygwmc0000"})})}))},47856(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:162})})})},50936(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},53326(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(28311),i=n(60065),o=n(88648),a=n(57971),l=n(74848);let s=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)((0,a.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(i.A,{props:e,certificatePhotoType:160,personnelType:"tzsbczry",permissionAdd:"qyd-tzsbczrygl-add",permissionEdit:"qyd-tzsbczrygl-edit",permissionView:"qyd-tzsbczrygl-info",permissionDel:"qyd-tzsbczrygl-del",dictionaryType:"tzsbczryczxmzylb0000"})})}))},23443(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:160})})})},49661(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},63550(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(28311),o=n(60065),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:159,personnelType:"tezhongzuoye",permissionAdd:"qyd-tzzyrugl-add",permissionEdit:"qyd-tzzyrugl-edit",permissionView:"qyd-tzzyrugl-info",permissionDel:"qyd-tzzyrugl-del",dictionaryType:"tzzyryhylb0000"})})}))},6051(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:159})})})},333(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},72327(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},37755(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},72926(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},56313(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>h});var r=n(96540),i=n(28311),o=n(42441),a=n(21637),l=n(71021),s=n(88648),c=n(66699),u=n(3117),f=n(22500),d=n(74848);function p(e){return(p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function m(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return v(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?v(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),p=s[0],y=s[1],h=i.queryDriverConfigLoading,g=i.driverConfig;(0,r.useEffect)(function(){n()},[]);var b=2===g;return(0,d.jsx)("div",{className:"driver-container",children:(0,d.jsxs)(o.A,{active:!0,loading:h,children:[(0,d.jsxs)("div",{className:"driver-container-header",children:[(0,d.jsx)("div",{children:b&&(0,d.jsx)(a.A,{items:[{label:"首页",key:"1"},{label:"驾驶舱",key:"2"}],activeKey:p,onChange:y})}),(0,d.jsx)("div",{children:(0,d.jsx)(l.Ay,{onClick:function(){return e.history.push(window.location.origin)},type:"primary",children:"去工作台"})})]}),(0,d.jsxs)("div",{className:"driver-container-content",children:[1===g&&(0,d.jsx)(c.default,m({},e)),b&&"1"===p&&(0,d.jsx)(u.default,m({},e)),b&&"2"===p&&(0,d.jsx)(f.default,m({},e))]})]})})})},82104(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>R});var r=n(38623),i=n(28311),o=n(26380),a=n(18182),l=n(87959),s=n(73133),c=n(71021),u=n(95725),f=n(41591),d=n(18246),p=n(25303),y=n(74271),m=n(36492),v=n(23899),h=n(83454),g=n(96540),b=n(21023),j=n(44500),x=n(88648),S=n(73398),C=n(74848);function A(e){return(A="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function w(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function P(e){for(var t=1;t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(I(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,I(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,I(u,"constructor",c),I(c,"constructor",s),s.displayName="GeneratorFunction",I(c,i,"GeneratorFunction"),I(u),I(u,i,"Generator"),I(u,r,function(){return this}),I(u,"toString",function(){return"[object Generator]"}),(O=function(){return{w:o,m:f}})()}function I(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(I=function(e,t,n,r){function o(t,n){I(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function E(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function N(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){E(o,r,i,a,l,"next",e)}function l(e){E(o,r,i,a,l,"throw",e)}a(void 0)})}}function L(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||T(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function T(e,t){if(e){if("string"==typeof e)return k(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?k(e,t):void 0}}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==arguments[0]?arguments[0]:[],r=arguments.length>1?arguments[1]:void 0,i=function(e){var t="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!t){if(Array.isArray(e)||(t=T(e))){t&&(e=t);var n=0,r=function(){};return{s:r,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:r}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,o=!0,a=!1;return{s:function(){t=t.call(e)},n:function(){var e=t.next();return o=e.done,e},e:function(e){a=!0,i=e},f:function(){try{o||null==t.return||t.return()}finally{if(a)throw i}}}}(n);try{for(i.s();!(t=i.n()).done;){var o,a=t.value;if((0,S.s)(a.id,r))return a;if(null!=(o=a.children)&&o.length){var l=e(a.children,r);if(l)return l}}}catch(e){i.e(e)}finally{i.f()}return null}(F.current,r)),!t&&n&&b.setFieldsValue(P(P({},n),{},{managerAccount:function(e,t){if(null!=e&&e.managerAccount)return e.managerAccount;if(null!=e&&e.managerName){var n=t.find(function(t){return t.staffName===e.managerName});return null==n?void 0:n.value}}(n,k.current),managerName:n.managerName}));case 5:return e.a(2)}},e,null,[[1,3]])})),function(){return e.apply(this,arguments)})().finally(function(){t||E(!1)}),function(){t=!0}}},[n,r]);var R=(t=N(O().m(function e(t){var n,i,o;return O().w(function(e){for(;;)switch(e.p=e.n){case 0:return e.p=0,A(!0),n=r?f:c,i=P({},t),r&&(i.id=r),e.n=1,n(i);case 1:if((null==(o=e.v)?void 0:o.success)===!1){e.n=3;break}return l.Ay.success(r?"编辑成功":"添加成功"),b.resetFields(),p(),e.n=2,v();case 2:e.n=4;break;case 3:l.Ay.error((null==o?void 0:o.message)||"操作失败");case 4:return e.p=4,A(!1),e.f(4);case 5:return e.a(2)}},e,null,[[0,,4,5]])})),function(e){return t.apply(this,arguments)});return(0,C.jsx)(a.A,{open:n,destroyOnHidden:!0,title:r?"编辑部门":"添加部门",width:560,loading:I,confirmLoading:x,onCancel:p,onOk:b.submit,children:(0,C.jsxs)(o.A,{form:b,layout:"vertical",onFinish:R,children:[!r&&(0,C.jsx)(o.A.Item,{name:"parentId",label:"上级部门",initialValue:h,children:(0,C.jsx)(y.A,{treeData:s,allowClear:!0,fieldNames:{label:"deptName",value:"id",children:"children"},showSearch:!0,placeholder:"请选择上级部门"})}),(0,C.jsx)(o.A.Item,{name:"deptName",label:"部门名称",rules:[{required:!0,message:"请输入部门名称"}],children:(0,C.jsx)(u.A,{placeholder:"请输入部门名称"})}),(0,C.jsx)(o.A.Item,{name:"managerAccount",label:"负责人",children:(0,C.jsx)(m.A,{allowClear:!0,showSearch:!0,placeholder:"请选择负责人",options:i,optionFilterProp:"label",onChange:function(e){var t=i.find(function(t){return t.value===e});b.setFieldValue("managerName",(null==t?void 0:t.staffName)||"")}})}),(0,C.jsx)(o.A.Item,{name:"managerName",hidden:!0,children:(0,C.jsx)(u.A,{})}),(0,C.jsx)(o.A.Item,{name:"deptLevelName",label:"部门级别",children:(0,C.jsx)(u.A,{placeholder:"请输入部门级别"})})]})})}let R=(0,i.dm)([x.NS_ORG_DEPARTMENT,x.NS_ORG_POSITION,x.NS_STAFF_INFO],!0)((0,v.d)(function(e){var t,n,i,y=e.orgPosition.orgPositionLoading,m=L((0,g.useState)(null),2),v=m[0],x=m[1],A=L((0,g.useState)([]),2),w=A[0],I=A[1],E=L((0,g.useState)(!1),2),T=E[0],k=E[1],R=L((0,g.useState)(!1),2),q=R[0],_=R[1],z=L((0,g.useState)(""),2),U=z[0],V=z[1],G=L((0,g.useState)(""),2),B=G[0],M=G[1],Q=L((0,g.useState)([]),2),$=Q[0],Y=Q[1],H=L(o.A.useForm(),1)[0],W=L(o.A.useForm(),1)[0],K=L((0,g.useState)([]),2),J=K[0],Z=K[1],X=L((0,g.useState)(0),2),ee=X[0],et=X[1],en=L((0,g.useState)(!1),2),er=en[0],ei=en[1],eo=L((0,g.useState)(1),2),ea=eo[0],el=eo[1],es=L((0,g.useState)(10),2),ec=es[0],eu=es[1];(0,g.useEffect)(function(){N(O().m(function t(){var n,r;return O().w(function(t){for(;;)switch(t.p=t.n){case 0:return t.p=0,t.n=1,null==(n=e.staffInfoList)?void 0:n.call(e,{pageIndex:1,pageSize:500});case 1:Y(((null==(r=t.v)?void 0:r.data)||[]).map(function(e){var t,n;return{label:"".concat(null!=(t=e.userName)?t:e.staffName,"(").concat(e.account,")"),value:e.account,staffName:null!=(n=e.userName)?n:e.staffName}})),t.n=3;break;case 2:t.p=2,console.warn("[DepartmentPosition] load staff options failed:",t.v);case 3:return t.a(2)}},t,null,[[0,2]])}))()},[]);var ef=(t=N(O().m(function t(){var n,r,i,o,a=arguments;return O().w(function(t){for(;;)switch(t.p=t.n){case 0:if(n=a.length>0&&void 0!==a[0]?a[0]:1,r=a.length>1&&void 0!==a[1]?a[1]:10,null!=v&&v.id){t.n=1;break}return t.a(2);case 1:return ei(!0),t.p=2,i=H.getFieldsValue(),t.n=3,e.orgPositionList(P(P({},i),{},{pageIndex:n,pageSize:r,deptId:(0,S.gR)(v.id)}));case 3:Z((null==(o=t.v)?void 0:o.data)||[]),et((null==o?void 0:o.totalCount)||0),t.n=5;break;case 4:t.p=4,t.v,Z([]),et(0);case 5:return t.p=5,ei(!1),t.f(5);case 6:return t.a(2)}},t,null,[[2,4,5,6]])})),function(){return t.apply(this,arguments)}),ed=(n=N(O().m(function t(){var n,r;return O().w(function(t){for(;;)switch(t.p=t.n){case 0:return t.p=0,t.n=1,e.orgDepartmentTree();case 1:I(r=(null==(n=t.v)?void 0:n.data)||[]),r.length&&x(F(r[0])),t.n=3;break;case 2:t.p=2,console.warn("[DepartmentPosition] loadTree failed:",t.v),I([]);case 3:return t.a(2)}},t,null,[[0,2]])})),function(){return n.apply(this,arguments)});(0,g.useEffect)(function(){ed()},[]),(0,g.useEffect)(function(){null!=v&&v.id&&ef(1,10)},[null==v?void 0:v.id]);var ep=(0,g.useMemo)(function(){if(!B)return w;var e=function(t){return t.map(function(t){var n,r=t.children?e(t.children):[];return(null==(n=t.deptName||t.title)?void 0:n.includes(B))||r.length?P(P({},t),{},{children:r}):null}).filter(Boolean)};return e(w)},[w,B]),ey=function(t){var n;a.A.confirm({title:"提示",content:"数据将会删除,您是否确认删除?",okText:"是",cancelText:"否",onOk:(n=N(O().m(function n(){var r;return O().w(function(n){for(;;)switch(n.n){case 0:return n.n=1,e.orgDepartmentRemove({data:t});case 1:(null==(r=n.v)?void 0:r.success)!==!1&&(l.Ay.success("删除成功"),(0,S.s)(null==v?void 0:v.id,t)&&x(null),ed());case 2:return n.a(2)}},n)})),function(){return n.apply(this,arguments)})})},em=function(t){var n;a.A.confirm({title:"提示",content:"数据将会删除,您是否确认删除?",okText:"是",cancelText:"否",onOk:(n=N(O().m(function n(){var r;return O().w(function(n){for(;;)switch(n.n){case 0:return n.n=1,e.orgPositionRemove({data:t});case 1:(null==(r=n.v)?void 0:r.success)!==!1&&(l.Ay.success("删除成功"),ef(1,10));case 2:return n.a(2)}},n)})),function(){return n.apply(this,arguments)})})},ev=function(){W.resetFields(),V(""),_(!1)},eh=function(e){V((0,S.gR)(null==e?void 0:e.id)||""),k(!0)},eg=function(e){null!=v&&v.id?(V((0,S.gR)(null==e?void 0:e.id)||""),W.resetFields(),e?W.setFieldsValue(P(P({},e),{},{deptId:(0,S.gR)(e.deptId||v.id),deptName:e.deptName||v.deptName})):W.setFieldsValue({deptId:(0,S.gR)(v.id),deptName:v.deptName}),_(!0)):l.Ay.warning("请先选择部门")},eb=(i=N(O().m(function t(n){var r,i,o;return O().w(function(t){for(;;)switch(t.n){case 0:return r=U?e.orgPositionEdit:e.orgPositionAdd,i=P({},n),U&&(i.id=U),i.deptId=(0,S.gR)(n.deptId||(null==v?void 0:v.id)),t.n=1,r(i);case 1:(null==(o=t.v)?void 0:o.success)!==!1?(l.Ay.success(U?"编辑成功":"添加成功"),ev(),ef(ea,ec)):l.Ay.error((null==o?void 0:o.message)||"操作失败");case 2:return t.a(2)}},t)})),function(e){return i.apply(this,arguments)});return(0,C.jsxs)(b.A,{title:"部门岗位管理",children:[(0,C.jsxs)("div",{style:{display:"flex",gap:16,minHeight:480},children:[(0,C.jsxs)("div",{style:{width:260,borderRight:"1px solid #f0f0f0",paddingRight:16,flexShrink:0},children:[(0,C.jsxs)(s.A,{direction:"vertical",style:{width:"100%",marginBottom:12},children:[(0,C.jsx)(c.Ay,{type:"primary",icon:(0,C.jsx)(r.A,{}),block:!0,onClick:function(){return eh()},children:"新增部门"}),(0,C.jsx)(u.A.Search,{placeholder:"输入关键字进行过滤",allowClear:!0,onChange:function(e){return M(e.target.value)}})]}),(0,C.jsx)(f.A,{selectedKeys:null!=v&&v.id?[(0,S.gR)(v.id)]:[],treeData:ep,fieldNames:{title:"deptName",key:"id",children:"children"},onSelect:function(e,t){x(F(t.node))}})]}),(0,C.jsx)("div",{style:{flex:1,minWidth:0},children:null!=v&&v.id?(0,C.jsxs)(C.Fragment,{children:[(0,C.jsxs)("div",{style:{display:"flex",justifyContent:"space-between",alignItems:"center",marginBottom:16},children:[(0,C.jsxs)("span",{children:["当前部门:",(0,C.jsx)("strong",{children:v.deptName})]}),(0,C.jsxs)(s.A,{children:[(0,C.jsx)(c.Ay,{onClick:function(){return eh(v)},children:"编辑部门"}),(0,C.jsx)(c.Ay,{danger:!0,onClick:function(){return ey(v.id)},children:"删除部门"})]})]}),(0,C.jsx)(j.A,{form:H,loading:er,formLine:[(0,C.jsx)(o.A.Item,{name:"positionName",children:(0,C.jsx)(u.A,{allowClear:!0,placeholder:"请输入岗位名称"})},"positionName")],onFinish:function(){return ef(1,10)},onReset:function(){return ef(1,10)},style:{marginBottom:16}}),(0,C.jsx)(d.A,{footer:function(){return(0,C.jsx)(c.Ay,{type:"primary",icon:(0,C.jsx)(r.A,{}),onClick:function(){return eg()},children:"新增岗位"})},columns:[{title:"名称",dataIndex:"positionName"},{title:"职责",dataIndex:"dutyDesc"},{title:"备注",dataIndex:"remark"},{title:"操作",width:160,render:function(e,t){return(0,C.jsxs)(h.A,{children:[(0,C.jsx)(c.Ay,{type:"link",onClick:function(){return eg(t)},children:"编辑"}),(0,C.jsx)(c.Ay,{danger:!0,type:"link",onClick:function(){return em(t.id)},children:"删除"})]})}}],dataSource:J,loading:er,pagination:{current:ea,pageSize:ec,total:ee,showSizeChanger:!0,showTotal:function(e){return"共 ".concat(e," 条")}},scroll:{y:e.scrollY},onChange:function(e){el(e.current),eu(e.pageSize),ef(e.current,e.pageSize)}})]}):(0,C.jsx)(p.A,{description:"请在左侧选择部门,查看该部门下的岗位"})})]}),T&&(0,C.jsx)(D,{open:T,currentId:U,selectedDeptId:null==v?void 0:v.id,staffOptions:$,treeData:w,requestAdd:e.orgDepartmentAdd,requestEdit:e.orgDepartmentEdit,requestDetails:e.orgDepartmentGet,onCancel:function(){W.resetFields(),V(""),k(!1)},onSuccess:ed}),q&&(0,C.jsx)(a.A,{open:q,destroyOnHidden:!0,title:U?"编辑岗位":"添加岗位",width:560,confirmLoading:y,onCancel:ev,onOk:W.submit,children:(0,C.jsxs)(o.A,{form:W,layout:"vertical",onFinish:eb,children:[(0,C.jsx)(o.A.Item,{name:"deptId",hidden:!0,children:(0,C.jsx)(u.A,{})}),(0,C.jsx)(o.A.Item,{name:"deptName",label:"所属部门",children:(0,C.jsx)(u.A,{disabled:!0})}),(0,C.jsx)(o.A.Item,{name:"positionName",label:"岗位名称",rules:[{required:!0,message:"请输入岗位名称"}],children:(0,C.jsx)(u.A,{placeholder:"请输入岗位名称"})}),(0,C.jsx)(o.A.Item,{name:"dutyDesc",label:"岗位职责",rules:[{required:!0,message:"请输入岗位职责"}],children:(0,C.jsx)(u.A.TextArea,{rows:3,placeholder:"请输入岗位职责",showCount:!0,maxLength:500})}),(0,C.jsx)(o.A.Item,{name:"remark",label:"备注",children:(0,C.jsx)(u.A.TextArea,{rows:2,placeholder:"请输入备注",showCount:!0,maxLength:500})})]})})]})}))},27167(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>U});var r=n(96540),i=n(26380),o=n(18182),a=n(87959),l=n(71021),s=n(36492),c=n(18246),u=n(85196),f=n(47152),d=n(16370),p=n(95725),y=n(63718),m=n(36223),v=n(38623),h=n(21023),g=n(83454),b=n(44500),j=n(51038),x=n(23899),S=n(57006),C=n(28311),A=n(88648),w=n(53292),P=n(74848);function O(e){return(O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function I(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return E(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(E(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,E(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,E(u,"constructor",c),E(c,"constructor",s),s.displayName="GeneratorFunction",E(c,i,"GeneratorFunction"),E(u),E(u,i,"Generator"),E(u,r,function(){return this}),E(u,"toString",function(){return"[object Generator]"}),(I=function(){return{w:o,m:f}})()}function E(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(E=function(e,t,n,r){function o(t,n){E(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function N(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function L(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){N(o,r,i,a,l,"next",e)}function l(e){N(o,r,i,a,l,"throw",e)}a(void 0)})}}function T(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function k(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return D(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?D(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function D(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nP});var r=n(96540),i=n(26380),o=n(95725),a=n(87959),l=n(73133),s=n(71021),c=n(18294),u=n(46420),f=n(95363),d=n(8073),p=n(74848);function y(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return m(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(m(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,m(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,m(u,"constructor",c),m(c,"constructor",s),s.displayName="GeneratorFunction",m(c,i,"GeneratorFunction"),m(u),m(u,i,"Generator"),m(u,r,function(){return this}),m(u,"toString",function(){return"[object Generator]"}),(y=function(){return{w:o,m:f}})()}function m(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(m=function(e,t,n,r){function o(t,n){m(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function v(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return g(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?g(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function g(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=e.key,i=t===e.key;return(0,p.jsxs)("div",{className:"material-step ".concat(r?"is-active":""," ").concat(i?"is-current":""),children:[(0,p.jsx)("span",{className:"material-step__dot",children:e.key}),(0,p.jsx)("span",{className:"material-step__title",children:e.title}),n24&&(e.push(t),t=[],n=0),t.push(r),n+=r.span}),t.length&&e.push(t),e},[]),b=(t=y().m(function e(){var t,n,r;return y().w(function(e){for(;;)switch(e.p=e.n){case 0:return e.p=0,e.n=1,c.validateFields();case 1:return t=e.v,m(!0),e.n=2,(0,d.mockSubmitMaterial)(t);case 2:null!=(n=e.v)&&n.success&&(a.Ay.success("提交成功,正在进入认证审核"),o(n.data)),e.n=4;break;case 3:e.p=3,null!=(r=e.v)&&r.errorFields||a.Ay.error("提交失败,请稍后重试");case 4:return e.p=4,m(!1),e.f(4);case 5:return e.a(2)}},e,null,[[0,3,4,5]])}),n=function(){var e=this,n=arguments;return new Promise(function(r,i){var o=t.apply(e,n);function a(e){v(o,r,i,a,l,"next",e)}function l(e){v(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return n.apply(this,arguments)});return(0,p.jsxs)("div",{className:"material-fill-step",children:[(0,p.jsx)(i.A,{form:c,initialValues:d.materialInitialValues,colon:!1,labelAlign:"right",children:(0,p.jsx)("div",{className:"material-form-grid",children:g.map(function(e,t){return(0,p.jsx)("div",{className:"material-form-row",children:e.map(function(e){return(0,p.jsx)(S,{field:e},e.name)})},t)})})}),(0,p.jsx)("div",{className:"material-form-actions",children:(0,p.jsxs)(l.A,{size:10,children:[(0,p.jsx)(s.Ay,{children:"取消"}),(0,p.jsx)(s.Ay,{className:"material-save-btn",children:"保存"}),(0,p.jsx)(s.Ay,{type:"primary",loading:f,onClick:b,children:"提交"})]})})]})}function A(){return(0,p.jsxs)("div",{className:"material-result-wrap",children:[(0,p.jsxs)("div",{className:"review-loading-icon",children:[(0,p.jsx)("div",{className:"review-loading-ring"}),(0,p.jsx)(f.A,{}),(0,p.jsx)("span",{})]}),(0,p.jsx)("p",{children:"认证审核中,请耐心等待..."})]})}function w(){return(0,p.jsxs)("div",{className:"material-result-wrap material-success-wrap",children:[(0,p.jsxs)("div",{className:"review-success-illustration",children:[(0,p.jsxs)("div",{className:"success-paper",children:[(0,p.jsx)("i",{}),(0,p.jsx)("i",{}),(0,p.jsx)("i",{}),(0,p.jsx)("i",{})]}),(0,p.jsx)(u.A,{})]}),(0,p.jsx)("p",{children:"审核通过"})]})}function P(){var e=h((0,r.useState)(1),2),t=e[0],n=e[1],i=(0,r.useRef)(null);return(0,r.useEffect)(function(){return function(){return clearTimeout(i.current)}},[]),(0,p.jsxs)("div",{className:"material-report-page material-report-page--step-".concat(t),children:[(0,p.jsx)(j,{}),(0,p.jsx)(x,{current:t}),1===t&&(0,p.jsx)(C,{onSubmitted:function(){n(2),clearTimeout(i.current),i.current=setTimeout(function(){n(3)},2300)}}),2===t&&(0,p.jsx)(A,{}),3===t&&(0,p.jsx)(w,{})]})}},8073(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}n.r(t),n.d(t,{materialFields:()=>a,materialInitialValues:()=>o,mockSubmitMaterial:()=>l});var o={orgName:"重庆市安全生产科学研究有限公司",creditCode:"915001072028699512",registerAddress:"重庆市沙坪坝区大学城东路20号重庆科技学院第39栋西南角实习用房三楼",businessAddress:"重庆市沙坪坝区大学城东路20号重庆科技学院第39栋西南角实习用房三楼",longitude:"119.460574",latitude:"119.460574",county:"重庆市沙坪坝区",street:"大学城东路20号重庆科技学院第39栋",community:"大学城东路",gbIndustryCode:"915001072028699512",safetyIndustryCategory:"专业技术服务业",ownershipType:"冶金工贸",legalRepresentative:"郑远平",legalRepPhone:"023-68705577",principal:"郑远平",principalPhone:"023-68705577",safetyDeptHead:"",safetyDeptPhone:"023-68705577",safetyVp:"",safetyVpPhone:"023-68705577",productionDate:"",businessStatus:"开业",disclosureUrl:"",workplaceArea:"",archiveRoomArea:"",fullTimeEvaluatorCount:"",registeredSafetyEngineerCount:""},a=[{name:"orgName",label:"生产经营单位名称",span:24},{name:"creditCode",label:"统一社会信用代码",span:24},{name:"registerAddress",label:"注册地址",span:24},{name:"businessAddress",label:"经营地址",span:24},{name:"longitude",label:"所在地坐标 经度",span:8},{name:"latitude",label:"所在地坐标 纬度",span:8},{name:"county",label:"所属(县、区)",span:8},{name:"street",label:"所属镇、街道",span:8},{name:"community",label:"属村(社区)",span:8},{name:"gbIndustryCode",label:"国民经济行业分类\n(GB/T4754-2017)",span:8},{name:"safetyIndustryCategory",label:"安全生产监管行业类别",span:8},{name:"ownershipType",label:"归属类型",span:8},{name:"legalRepresentative",label:"法定代表人",span:8},{name:"legalRepPhone",label:"联系电话",span:8},{name:"principal",label:"主要负责人",span:8},{name:"principalPhone",label:"联系电话",span:8},{name:"safetyDeptHead",label:"安全管理部门负责人",span:8},{name:"safetyDeptPhone",label:"联系电话",span:8},{name:"safetyVp",label:"主管安全副总",span:8},{name:"safetyVpPhone",label:"联系电话",span:8},{name:"productionDate",label:"投产日期",span:8},{name:"businessStatus",label:"企业经营状态",span:8},{name:"disclosureUrl",label:"信息公开网址",span:8},{name:"workplaceArea",label:"工作场所建筑面积",span:8},{name:"archiveRoomArea",label:"档案室面积",span:8},{name:"fullTimeEvaluatorCount",label:"专职安全评价师数量",span:8},{name:"registeredSafetyEngineerCount",label:"注册安全工程师数量",span:8}];function l(e){return new Promise(function(t){setTimeout(function(){t({success:!0,data:function(e){for(var t=1;tp}),n(96540);var r=n(89490),i=n(20977),o=n(28155),a=n(55406),l=n(53292),s=n(74848);function c(e){return(c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function f(e){for(var t=1;tT});var r=n(28311),i=n(26380),o=n(87959),a=n(71021),l=n(47152),s=n(16370),c=n(95725),u=n(36492),f=n(63718),d=n(55165),p=n(73133),y=n(30159),m=n(74353),v=n.n(m),h=n(96540),g=n(21023),b=n(28155),j=n(88648),x=n(53292),S=n(74848);function C(e){return(C="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function A(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return w(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(w(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,w(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,w(u,"constructor",c),w(c,"constructor",s),s.displayName="GeneratorFunction",w(c,i,"GeneratorFunction"),w(u),w(u,i,"Generator"),w(u,r,function(){return this}),w(u,"toString",function(){return"[object Generator]"}),(A=function(){return{w:o,m:f}})()}function w(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(w=function(e,t,n,r){function o(t,n){w(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function P(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function O(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return L(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?L(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function L(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nq});var r=n(28311),i=n(26380),o=n(18182),a=n(87959),l=n(6198),s=n(85196),c=n(71021),u=n(18246),f=n(36492),d=n(73133),p=n(36223),y=n(95725),m=n(83454),v=n(96540),h=n(21023),g=n(44500),b=n(51038),j=n(23899),x=n(57006),S=n(88648),C=n(55406),A=n(74848);function w(e){return(w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function P(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return O(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(O(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,O(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,O(u,"constructor",c),O(c,"constructor",s),s.displayName="GeneratorFunction",O(c,i,"GeneratorFunction"),O(u),O(u,i,"Generator"),O(u,r,function(){return this}),O(u,"toString",function(){return"[object Generator]"}),(P=function(){return{w:o,m:f}})()}function O(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(O=function(e,t,n,r){function o(t,n){O(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function I(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function E(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){I(o,r,i,a,l,"next",e)}function l(e){I(o,r,i,a,l,"throw",e)}a(void 0)})}}function N(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function L(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return k(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?k(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0?C.dr.active:C.dr.zero;return r<=0?(0,A.jsx)("span",{style:i,children:r}):(0,A.jsx)(l.A.Link,{style:i,onClick:function(){I(t),S("log")},children:r})}},{title:"就职状态",dataIndex:"employmentStatusCode",width:90,render:function(e,t){var n,r=null!=(n=t.employmentStatusCode)?n:t.employmentStatus;return(0,A.jsx)(s.A,{color:2===r?"error":"success",children:2===r?"离职":"在职"})}},{title:"离职申请审核状态",dataIndex:"resignAuditStatus",width:140,render:function(e,t){var n,r,i=null!=(n=null!=(r=t.resignAuditStatus)?r:t.auditStatus)?n:t.auditStatusCode,o=C.nJ[i];return o?(0,A.jsx)(s.A,{color:C.XU[i],children:o}):"-"}},{title:"操作",width:200,fixed:"right",render:function(e,t){return(0,A.jsxs)(m.A,{children:[(0,A.jsx)(c.Ay,{type:"link",size:"small",onClick:function(){return ei(t)},children:"查看离职状态"}),t.resignApplyId&&0===Number(t.resignAuditStatus)&&(0,A.jsx)(c.Ay,{type:"link",size:"small",onClick:function(){return er(t)},children:"离职审核"}),(0,A.jsx)(c.Ay,{danger:!0,type:"link",size:"small",onClick:function(){return en(t)},children:"删除"})]})}}];return"log"===x?(0,A.jsxs)(h.A,{title:"人员变更次数",children:[(0,A.jsx)(c.Ay,{style:{marginBottom:16},onClick:function(){return S("list")},children:"返回"}),(0,A.jsxs)("div",{style:{marginBottom:8},children:["人员:",(null==O?void 0:O.staffName)||(null==O?void 0:O.userName)]}),(0,A.jsx)(u.A,{rowKey:"id",columns:[{title:"变更事项",dataIndex:"changeItem",width:200},{title:"变更时间",dataIndex:"changeTime",width:160},{title:"操作人",dataIndex:"operatorName",width:100}],dataSource:Z,scroll:{y:e.scrollY},loading:J,pagination:{total:X,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")},current:F.query.current||1,pageSize:F.query.size||10,onChange:function(e,t){F.query=L(L({},F.query),{},{current:e,size:t}),et()}}})]}):(0,A.jsxs)(h.A,{title:(0,A.jsxs)("div",{children:[(0,A.jsx)("span",{children:"人员变更管理"}),(0,A.jsx)("div",{className:"pageLayout-extra",children:"机构管理员在人员信息管理页面进行相应的修改操作"})]}),children:[(0,A.jsx)(g.A,{style:{marginBottom:24},form:Y,loading:J,formLine:[(0,A.jsx)(i.A.Item,{name:"account",children:(0,A.jsx)(b.A.Input,{label:"账户",placeholder:"请输入",allowClear:!0})},"account"),(0,A.jsx)(i.A.Item,{name:"userName",children:(0,A.jsx)(b.A.Input,{label:"姓名",placeholder:"请输入",allowClear:!0})},"userName"),(0,A.jsx)(i.A.Item,{name:"employmentStatusCode",children:(0,A.jsx)(b.A.Select,{label:"就职状态",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:D.map(function(e){return(0,A.jsx)(f.A.Option,{value:e.value,children:e.label},e.value)})})},"employmentStatusCode"),(0,A.jsx)(i.A.Item,{name:"resignAuditStatus",children:(0,A.jsx)(b.A.Select,{label:"复核状态",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:R.map(function(e){return(0,A.jsx)(f.A.Option,{value:e.value,children:e.label},e.value)})})},"resignAuditStatus")],onReset:function(e){F.query=L(L({},e),{},{current:1,size:10}),ee()},onFinish:function(e){F.query=L(L({},e),{},{current:1,size:10}),ee()}}),(0,A.jsx)(u.A,{rowKey:function(e){return e.id||e.staffId},columns:ea,dataSource:W,scroll:{y:e.scrollY},loading:J,pagination:{total:K,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")},current:F.query.current||1,pageSize:F.query.size||10,onChange:function(e,t){F.query=L(L({},F.query),{},{current:e,size:t}),ee()}}}),(0,A.jsxs)(o.A,{open:k,destroyOnHidden:!0,title:"审核离职申请",width:720,footer:(0,A.jsxs)(d.A,{children:[(0,A.jsx)(c.Ay,{onClick:function(){return q(!1)},children:"取消"}),(0,A.jsx)(c.Ay,{danger:!0,onClick:function(){return eo(!1)},children:"退回"}),(0,A.jsx)(c.Ay,{type:"primary",onClick:function(){return eo(!0)},children:"通过"})]}),onCancel:function(){return q(!1)},children:[(0,A.jsxs)(p.A,{bordered:!0,column:1,labelStyle:{width:120},children:[(0,A.jsx)(p.A.Item,{label:"申请人",children:G.applicantName}),(0,A.jsx)(p.A.Item,{label:"申请时间",children:G.applyTime}),(0,A.jsx)(p.A.Item,{label:"预计离职日期",children:G.expectedResignDate}),(0,A.jsx)(p.A.Item,{label:"离职原因",children:G.resignReason}),(0,A.jsx)(p.A.Item,{label:"备注",children:G.remark})]}),(0,A.jsx)(i.A.Item,{label:"退回原因",style:{marginTop:16},children:(0,A.jsx)(y.A.TextArea,{rows:3,value:Q,onChange:function(e){return $(e.target.value)}})})]}),(0,A.jsx)(o.A,{open:z,destroyOnHidden:!0,title:"查看离职申请",width:720,cancelText:"返回",okButtonProps:{style:{display:"none"}},onCancel:function(){return U(!1)},children:(0,A.jsxs)(p.A,{bordered:!0,column:1,labelStyle:{width:120},children:[(0,A.jsx)(p.A.Item,{label:"申请人",children:G.applicantName}),(0,A.jsx)(p.A.Item,{label:"申请时间",children:G.applyTime}),(0,A.jsx)(p.A.Item,{label:"预计离职日期",children:G.expectedResignDate}),(0,A.jsx)(p.A.Item,{label:"离职原因",children:G.resignReason}),(0,A.jsx)(p.A.Item,{label:"备注",children:G.remark})]})})]})}))},53671(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>_});var r=n(28311),i=n(26380),o=n(18182),a=n(87959),l=n(71021),s=n(18246),c=n(95725),u=n(55165),f=n(36223),d=n(96540),p=n(74353),y=n.n(p),m=n(21023),v=n(44500),h=n(51038),g=n(83454),b=n(23899),j=n(57006),x=n(88648),S=n(63910),C=n(30159),A=n(53292),w=n(74848);function P(e){return(P="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function O(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return I(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(I(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,I(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,I(u,"constructor",c),I(c,"constructor",s),s.displayName="GeneratorFunction",I(c,i,"GeneratorFunction"),I(u),I(u,i,"Generator"),I(u,r,function(){return this}),I(u,"toString",function(){return"[object Generator]"}),(O=function(){return{w:o,m:f}})()}function I(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(I=function(e,t,n,r){function o(t,n){I(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function E(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function N(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){E(o,r,i,a,l,"next",e)}function l(e){E(o,r,i,a,l,"throw",e)}a(void 0)})}}function L(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function T(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return F(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?F(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function F(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nG});var r=n(28311),i=n(26380),o=n(18182),a=n(87959),l=n(71021),s=n(36492),c=n(18246),u=n(47152),f=n(16370),d=n(95725),p=n(55165),y=n(96540),m=n(74353),v=n.n(m),h=n(21023),g=n(44500),b=n(51038),j=n(83454),x=n(23899),S=n(57006),C=n(46285),A=n(88648),w=n(28155),P=n(77539),O=n(53292),I=n(30159),E=n(76243),N=n(74848);function L(e){return(L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function T(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function k(e){for(var t=1;t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(D(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,D(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,D(u,"constructor",c),D(c,"constructor",s),s.displayName="GeneratorFunction",D(c,i,"GeneratorFunction"),D(u),D(u,i,"Generator"),D(u,r,function(){return this}),D(u,"toString",function(){return"[object Generator]"}),(F=function(){return{w:o,m:f}})()}function D(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(D=function(e,t,n,r){function o(t,n){D(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function R(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function q(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){R(o,r,i,a,l,"next",e)}function l(e){R(o,r,i,a,l,"throw",e)}a(void 0)})}}function _(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return z(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?z(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function z(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nI});var r=n(18182),i=n(36223),o=n(87160),a=n(71021),l=n(18246),s=n(96540),c=n(77016),u=n(63910),f=n(9538),d=n(48032),p=n(31467),y=n(73398);function m(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return v(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(v(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,v(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,v(u,"constructor",c),v(c,"constructor",s),s.displayName="GeneratorFunction",v(c,i,"GeneratorFunction"),v(u),v(u,i,"Generator"),v(u,r,function(){return this}),v(u,"toString",function(){return"[object Generator]"}),(m=function(){return{w:o,m:f}})()}function v(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(v=function(e,t,n,r){function o(t,n){v(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function h(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function g(e){return b.apply(this,arguments)}function b(){var e;return e=m().m(function e(t){var n;return m().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,(0,p.Vg)("/safetyEval/org-personnel/get",{id:(0,y.gR)(null==t?void 0:t.id)});case 1:return n=e.v,e.a(2,(0,d.UC)(n,d.Cy))}},e)}),(b=function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){h(o,r,i,a,l,"next",e)}function l(e){h(o,r,i,a,l,"throw",e)}a(void 0)})}).apply(this,arguments)}var j=n(74848);function x(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return S(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(S(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,S(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,S(u,"constructor",c),S(c,"constructor",s),s.displayName="GeneratorFunction",S(c,i,"GeneratorFunction"),S(u),S(u,i,"Generator"),S(u,r,function(){return this}),S(u,"toString",function(){return"[object Generator]"}),(x=function(){return{w:o,m:f}})()}function S(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(S=function(e,t,n,r){function o(t,n){S(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function C(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function A(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return w(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?w(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nr});let r=function(e){return e.children}},90088(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>G});var r=n(28311),i=n(95725),o=n(55165),a=n(26380),l=n(18182),s=n(87959),c=n(71021),u=n(18246),f=n(87160),d=n(36492),p=n(36223),y=n(30159),m=n(38623),v=n(96540),h=n(21023),g=n(44500),b=n(51038),j=n(83454),x=n(23899),S=n(57006),C=n(88648),A=n(28155),w=n(76332),P=n(53292),O=n(74848);function I(e){return(I="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function E(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return N(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(N(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,N(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,N(u,"constructor",c),N(c,"constructor",s),s.displayName="GeneratorFunction",N(c,i,"GeneratorFunction"),N(u),N(u,i,"Generator"),N(u,r,function(){return this}),N(u,"toString",function(){return"[object Generator]"}),(E=function(){return{w:o,m:f}})()}function N(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(N=function(e,t,n,r){function o(t,n){N(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function L(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function T(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return R(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?R(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nq});var r=n(28311),i=n(26380),o=n(71021),a=n(36492),l=n(18246),s=n(85196),c=n(87959),u=n(18182),f=n(55165),d=n(95725),p=n(36223),y=n(83454),m=n(30159),v=n(13290),h=n(96540),g=n(21023),b=n(44500),j=n(51038),x=n(23899),S=n(57006),C=n(88648),A=n(55406),w=n(74848);function P(e){return(P="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function O(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return I(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(I(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,I(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,I(u,"constructor",c),I(c,"constructor",s),s.displayName="GeneratorFunction",I(c,i,"GeneratorFunction"),I(u),I(u,i,"Generator"),I(u,r,function(){return this}),I(u,"toString",function(){return"[object Generator]"}),(O=function(){return{w:o,m:f}})()}function I(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(I=function(e,t,n,r){function o(t,n){I(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function E(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function N(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function L(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return k(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?k(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nc});var r=n(96540),i=n(88648),o=n(28311),a=n(42441),l=n(74848);function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return s(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?s(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),i=n[0],o=n[1];return((0,r.useEffect)(function(){i||e.orgInfoGet().then(function(e){var t,n,r;null!=e&&null!=(t=e.data)&&t.id&&(o(null==e||null==(n=e.data)?void 0:n.id),sessionStorage.setItem("orgInfoId",null==e||null==(r=e.data)?void 0:r.id))})},[]),e.location.pathname.includes("EnterpriseInfo/OrgInfo"))?e.children:(0,l.jsx)("div",{style:{height:"100%"},children:i?e.children:(0,l.jsx)(a.A,{active:!0})})})},43317(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c}),n(60344);var r=n(96540);function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}n(74848);function o(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(o=function(){return!!e})()}function a(e){return(a=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function l(e,t){return(l=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function s(e){var t=function(e,t){if("object"!=i(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=i(r))return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==i(t)?t:t+""}var c=function(e){var t;function n(){var e,t,r,l,c,u;if(!(this instanceof n))throw TypeError("Cannot call a class as a function");for(var f=arguments.length,d=Array(f),p=0;pd}),n(96540);var r=n(16629),i=n(73133),o=n(11021),a=n(18543),l=n(2231),s=n(40131),c=n(17073),u=n(22241),f=n(74848);let d=function(){return(0,f.jsxs)("div",{className:"institution-dashboard",children:[(0,f.jsxs)("div",{className:"institution-dashboard__top",children:[(0,f.jsx)(r.A,{title:(0,f.jsx)("span",{className:"institution-card-title",children:"当前评价状态状态统计"}),size:"small",className:"institution-dashboard__status-card institution-panel-card",extra:(0,f.jsxs)(i.A,{size:30,className:"institution-dashboard__summary",children:[(0,f.jsxs)("span",{children:["项目总数: ",(0,f.jsx)("strong",{className:"is-blue",children:u.PROJECT_SUMMARY.total})]}),(0,f.jsxs)("span",{children:["超期数: ",(0,f.jsx)("strong",{className:"is-blue",children:u.PROJECT_SUMMARY.overdue})]})]}),styles:{body:{padding:"16px 34px 17px"}},children:(0,f.jsx)(o.default,{data:u.STATISTIC_CARDS})}),(0,f.jsx)(r.A,{title:(0,f.jsx)("span",{className:"institution-card-title",children:"信息提醒"}),size:"small",className:"institution-dashboard__alerts-card institution-panel-card",styles:{body:{padding:"20px 24px"}},children:(0,f.jsx)(a.default,{data:u.INFO_ALERTS})})]}),(0,f.jsxs)("div",{className:"institution-dashboard__charts",children:[(0,f.jsx)(l.default,{data:u.ENTERPRISE_TYPE_STATS}),(0,f.jsx)(s.default,{data:u.PROJECT_TYPE_DISTRIBUTION,total:u.PROJECT_TOTAL})]}),(0,f.jsx)(c.default,{data:u.PROJECT_COMPLETION_LIST})]})}},2231(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>u});var r=n(96540),i=n(6582),o=n(16629),a=n(74848),l="#5b8ff9",s="#ffb33e";function c(e){var t=e.option,n=e.className,o=(0,r.useRef)(null),l=(0,r.useRef)(null);return(0,r.useEffect)(function(){if(o.current){l.current=i.Ts(o.current,null,{renderer:"svg"});var e=function(){return l.current&&l.current.resize()},t="u">typeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(o.current),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),t&&t.disconnect(),l.current&&l.current.dispose(),l.current=null}}},[]),(0,r.useEffect)(function(){l.current&&l.current.setOption(t,!0)},[t]),(0,a.jsx)("div",{className:n,ref:o})}function u(e){var t=e.data,n=(0,r.useMemo)(function(){return{color:[l,s],grid:{left:38,right:10,top:26,bottom:46},tooltip:{trigger:"axis",axisPointer:{type:"shadow",shadowStyle:{color:"rgba(91, 143, 249, .08)"}},backgroundColor:"#fff",borderColor:"#e9edf4",borderWidth:1,textStyle:{color:"#333",fontSize:12}},xAxis:{type:"category",data:t.categories,axisTick:{show:!1},axisLine:{lineStyle:{color:"#edf0f5"}},axisLabel:{color:"#666",fontSize:12,interval:0,width:58,overflow:"break",lineHeight:14}},yAxis:{type:"value",min:0,max:60,splitNumber:6,axisLabel:{color:"#8792a2",fontSize:12},splitLine:{lineStyle:{color:"#e9edf4",type:"dashed"}}},series:[{name:"项目数",type:"bar",barWidth:12,data:t.projectCount,itemStyle:{borderRadius:[2,2,0,0]}},{name:"金额",type:"bar",barWidth:12,data:t.amount,itemStyle:{borderRadius:[2,2,0,0]}}]}},[t]);return(0,a.jsx)(o.A,{title:(0,a.jsx)("span",{className:"institution-card-title",children:"服务企业类型统计"}),size:"small",className:"institution-panel-card institution-enterprise-card",styles:{body:{padding:"20px 26px 15px"}},extra:(0,a.jsxs)("div",{className:"institution-chart-legend institution-chart-legend--top",children:[(0,a.jsxs)("span",{children:[(0,a.jsx)("i",{style:{backgroundColor:l}}),"项目数"]}),(0,a.jsxs)("span",{children:[(0,a.jsx)("i",{style:{backgroundColor:s}}),"金额"]})]}),children:(0,a.jsx)(c,{className:"institution-bar-chart",option:n})})}},18543(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c}),n(96540);var r=n(49346),i=n(40666),o=n(54169),a=n(74848),l={Star:r.A,Audit:i.A,UserDelete:o.A};function s(e){var t=e.item,n=l[t.icon]||i.A;return(0,a.jsxs)("div",{className:"institution-alert-item",style:{backgroundColor:t.bgColor},children:[(0,a.jsx)("div",{className:"institution-alert-item__icon",style:{backgroundColor:t.color},children:(0,a.jsx)(n,{})}),(0,a.jsxs)("div",{className:"institution-alert-item__content",children:[(0,a.jsx)("div",{className:"institution-alert-item__title",children:t.title}),(0,a.jsx)("div",{className:"institution-alert-item__value",children:t.value})]})]})}function c(e){var t=e.data;return(0,a.jsx)("div",{className:"institution-alert-grid",children:t.map(function(e){return(0,a.jsx)(s,{item:e},e.key)})})}},17073(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l}),n(96540);var r=n(16629),i=n(18246),o=n(74848),a=[{title:"序号",dataIndex:"id",key:"id",width:70,align:"center"},{title:"项目名称",dataIndex:"projectName",key:"projectName",ellipsis:!0},{title:"项目状态",dataIndex:"status",key:"status",width:120,align:"center"},{title:"项目负责人",dataIndex:"projectLeader",key:"projectLeader",width:120,align:"center"},{title:"客户负责人",dataIndex:"clientLeader",key:"clientLeader",width:120,align:"center"},{title:"项目开始时间",dataIndex:"startDate",key:"startDate",width:180,align:"center"},{title:"项目结束时间",dataIndex:"endDate",key:"endDate",width:180,align:"center"},{title:"项目阶段",dataIndex:"acceptanceDate",key:"acceptanceDate",width:180,align:"center"},{title:"操作",key:"action",width:110,align:"center",render:function(){return(0,o.jsx)("a",{className:"institution-table-link",children:"查看详情"})}}];function l(e){var t=e.data;return(0,o.jsx)(r.A,{title:(0,o.jsx)("span",{className:"institution-card-title",children:"项目完成情况统计"}),size:"small",className:"institution-panel-card institution-table-card",styles:{body:{padding:"12px 14px 14px"}},children:(0,o.jsx)(i.A,{className:"institution-completion-table",columns:a,dataSource:t,rowKey:"id",pagination:!1,size:"small",scroll:{x:1180}})})}},40131(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(96540),i=n(6582),o=n(16629),a=n(74848);function l(e){var t=e.option,n=e.className,o=(0,r.useRef)(null),l=(0,r.useRef)(null);return(0,r.useEffect)(function(){if(o.current){l.current=i.Ts(o.current,null,{renderer:"svg"});var e=function(){return l.current&&l.current.resize()},t="u">typeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(o.current),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),t&&t.disconnect(),l.current&&l.current.dispose(),l.current=null}}},[]),(0,r.useEffect)(function(){l.current&&l.current.setOption(t,!0)},[t]),(0,a.jsx)("div",{className:n,ref:o})}function s(e){var t=e.data;return(0,a.jsx)("div",{className:"institution-project-legend",children:t.map(function(e){return(0,a.jsxs)("span",{children:[(0,a.jsx)("i",{style:{backgroundColor:e.color}}),e.name]},e.name)})})}function c(e){var t=e.data,n=e.total||t.reduce(function(e,t){return e+t.value},0),i=(0,r.useMemo)(function(){return{color:t.map(function(e){return e.color}),tooltip:{trigger:"item",backgroundColor:"#fff",borderColor:"#e9edf4",borderWidth:1,textStyle:{color:"#333",fontSize:12},formatter:"{b}
项目数:{c}
占比:{d}%"},series:[{name:"项目类型占比",type:"pie",radius:["46%","74%"],center:["50%","50%"],avoidLabelOverlap:!0,minAngle:5,label:{show:!1},labelLine:{show:!1},itemStyle:{borderColor:"#fff",borderWidth:2},emphasis:{scale:!0,scaleSize:4},data:t.map(function(e){return{name:e.name,value:e.value}})}],graphic:[{type:"text",left:"center",top:"42%",style:{text:"项目总数",textAlign:"center",fill:"#a0a7b2",fontSize:15,fontWeight:600}},{type:"text",left:"center",top:"53%",style:{text:String(n),textAlign:"center",fill:"#111827",fontSize:24,fontWeight:700}}]}},[t,n]);return(0,a.jsxs)(o.A,{title:(0,a.jsx)("span",{className:"institution-card-title",children:"项目类型占比"}),size:"small",className:"institution-panel-card institution-project-card",styles:{body:{padding:"24px 22px 18px"}},children:[(0,a.jsx)(l,{className:"institution-donut-chart",option:i}),(0,a.jsx)(s,{data:t})]})}},11021(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>h}),n(96540);var r=n(69047),i=n(71161),o=n(49776),a=n(73488),l=n(56304),s=n(42004),c=n(82822),u=n(27423),f=n(99221),d=n(53159),p=n(40666),y=n(74848),m={FileDone:r.A,LineChart:i.A,Appstore:o.A,FileProtect:a.A,Safety:l.A,Profile:s.A,Notification:c.A,Read:u.A,Compass:f.A,Database:d.A,Audit:p.A};function v(e){var t=e.item,n=m[t.icon]||r.A;return(0,y.jsxs)("div",{className:"institution-stat-card",children:[(0,y.jsx)("div",{className:"institution-stat-card__icon",style:{backgroundColor:t.bgColor},children:(0,y.jsx)(n,{})}),(0,y.jsxs)("div",{className:"institution-stat-card__content",children:[(0,y.jsx)("div",{className:"institution-stat-card__title",children:t.title}),(0,y.jsx)("div",{className:"institution-stat-card__value",children:t.value})]})]})}function h(e){var t=e.data;return(0,y.jsx)("div",{className:"institution-stat-grid",children:t.map(function(e){return(0,y.jsx)(v,{item:e},e.key)})})}},90011(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>d}),n(96540);var r=n(16629),i=n(73133),o=n(11021),a=n(18543),l=n(2231),s=n(40131),c=n(17073),u=n(22241),f=n(74848);function d(){return(0,f.jsxs)("div",{className:"institution-dashboard",children:[(0,f.jsxs)("div",{className:"institution-dashboard__top",children:[(0,f.jsx)(r.A,{title:(0,f.jsx)("span",{className:"institution-card-title",children:"当前评价状态状态统计"}),size:"small",className:"institution-dashboard__status-card institution-panel-card",extra:(0,f.jsxs)(i.A,{size:30,className:"institution-dashboard__summary",children:[(0,f.jsxs)("span",{children:["项目总数: ",(0,f.jsx)("strong",{className:"is-blue",children:u.PROJECT_SUMMARY.total})]}),(0,f.jsxs)("span",{children:["超期数: ",(0,f.jsx)("strong",{className:"is-blue",children:u.PROJECT_SUMMARY.overdue})]})]}),styles:{body:{padding:"16px 34px 17px"}},children:(0,f.jsx)(o.default,{data:u.STATISTIC_CARDS})}),(0,f.jsx)(r.A,{title:(0,f.jsx)("span",{className:"institution-card-title",children:"信息提醒"}),size:"small",className:"institution-dashboard__alerts-card institution-panel-card",styles:{body:{padding:"20px 24px"}},children:(0,f.jsx)(a.default,{data:u.INFO_ALERTS})})]}),(0,f.jsxs)("div",{className:"institution-dashboard__charts",children:[(0,f.jsx)(l.default,{data:u.ENTERPRISE_TYPE_STATS}),(0,f.jsx)(s.default,{data:u.PROJECT_TYPE_DISTRIBUTION,total:u.PROJECT_TOTAL})]}),(0,f.jsx)(c.default,{data:u.PROJECT_COMPLETION_LIST})]})}},22241(e,t,n){"use strict";n.r(t),n.d(t,{ENTERPRISE_TYPE_STATS:()=>a,INFO_ALERTS:()=>i,PROJECT_COMPLETION_LIST:()=>c,PROJECT_SUMMARY:()=>o,PROJECT_TOTAL:()=>s,PROJECT_TYPE_DISTRIBUTION:()=>l,STATISTIC_CARDS:()=>r});var r=[{key:"contract",title:"项目合同签订",value:5632,icon:"FileDone",color:"#409eff",bgColor:"#409eff"},{key:"riskAnalysis",title:"待风险分析",value:951,icon:"LineChart",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"projectTeam",title:"待成立项目组",value:5632,icon:"Appstore",color:"#48d1bd",bgColor:"#48d1bd"},{key:"workPlan",title:"待制定工作计划",value:5632,icon:"FileProtect",color:"#ff9f43",bgColor:"#ff9f43"},{key:"initialEval",title:"待初提",value:5632,icon:"Safety",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"checklist",title:"待编制检查表",value:456,icon:"Profile",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"industryNotice",title:"待从业告知",value:5632,icon:"Notification",color:"#ffb12a",bgColor:"#ffb12a"},{key:"siteSurvey",title:"待现场勘查",value:5632,icon:"Read",color:"#8b7cf6",bgColor:"#8b7cf6"},{key:"processControl",title:"过程管控",value:951,icon:"Compass",color:"#409eff",bgColor:"#409eff"},{key:"archive",title:"归档",value:651,icon:"Database",color:"#08bea7",bgColor:"#08bea7"}],i=[{key:"orgQualification",title:"机构资质到期",value:5,icon:"Star",color:"#ffca0a",bgColor:"#fff9e7"},{key:"personnelQualification",title:"人员资质到期",value:35,icon:"Audit",color:"#ff7a59",bgColor:"#fff3ef"},{key:"personnelResignation",title:"人员离岗信息",value:56,icon:"UserDelete",color:"#6395f9",bgColor:"#f1f6ff"}],o={total:5632,overdue:56},a={categories:["矿山开采业","危险化学品行业","烟花爆竹行业","金属冶炼与加工","建筑施工","交通运输业","消防重点单位","特种设备相关企业","涉爆粉尘企业"],projectCount:[42,35,33,35,24,42,36,42,32],amount:[52,54,29,48,39,36,56,35,45]},l=[{name:"定期检测",value:5054,color:"#3f7df4"},{name:"现状评价",value:1540,color:"#63c174"},{name:"控制效果评价",value:1600,color:"#ffa533"},{name:"预评价",value:900,color:"#ff694f"},{name:"设计专篇",value:430,color:"#23c6c8"},{name:"委托检测",value:330,color:"#55c653"}],s=9854,c=[{id:1,projectName:"玉田县志达贸易有限公司蓝兴加油站、LNG加气设施合并项目",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"},{id:2,projectName:"北京首钢铁合金有限公司迁安分公司包芯线生产线扩建项目",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"},{id:3,projectName:"中特伟业科技有限公司沧州金固废回收利用项目",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"},{id:4,projectName:"荣信钢铁有限公司整合重组装备更新一期工程项目安全预评价",status:"检测完成",projectLeader:"梁永利",clientLeader:"赵天祥",startDate:"2025-5-4 16:12:23",endDate:"2025-5-4 16:12:23",acceptanceDate:"2025-5-4 16:12:23"}]},79331(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>F});var r=n(96540),i=n(66043),o=n(6198),a=n(76511),l=n(56474),s=n(73133),c=n(71021),u=n(70888),f=n(21637),d=n(85402),p=n(5100),y=n(3727),m=n(565),v=n(86404),h=n(98459),g=n(35580),b=n(74848);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function S(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||A(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function A(e,t){if(e){if("string"==typeof e)return w(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?w(e,t):void 0}}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(n)||A(n)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[{key:e,label:(0,g.getPageLabel)(e)}]);return k(r,e),{tabs:r,activeKey:e}})},[]),R=(0,r.useCallback)(function(e){e!==F&&(window.location.href=e)},[F]),q=(0,r.useCallback)(function(e){L(function(t){var n,r,i=t.tabs.findIndex(function(t){return t.key===e}),o=t.tabs.filter(function(t){return t.key!==e});if(0===o.length)return k([],""),{tabs:[],activeKey:""};var a=t.activeKey;return e===t.activeKey&&R(a=(null==(n=o[Math.max(0,i-1)])?void 0:n.key)||(null==(r=o[0])?void 0:r.key)),k(o,a),{tabs:o,activeKey:a}})},[R]),_=(0,r.useCallback)(function(e){L(function(t){var n=t.tabs.find(function(t){return t.key===e}),r=n?[n]:[];return k(r,e),e!==F&&R(e),{tabs:r,activeKey:e}})},[F,R]),z=(0,r.useCallback)(function(e){L(function(t){var n=t.tabs.findIndex(function(t){return t.key===e});if(-1===n)return t;var r=t.tabs.slice(0,n+1);return k(r,e),{tabs:r,activeKey:e}})},[]),U=(0,r.useCallback)(function(){k([],""),L({tabs:[],activeKey:""})},[]),V=(0,r.useCallback)(function(){window.location.reload()},[]),G=(0,r.useCallback)(function(e){R(e.key)},[R]),B=(0,r.useCallback)(function(e){R(e)},[R]),M=(0,r.useCallback)(function(e,t){"remove"===t&&q(e)},[q]),Q=(0,r.useMemo)(function(){var e=(0,g.findMenuPath)(F);return e.map(function(t,n){return{title:n===e.length-1?t.label:(0,b.jsx)("a",{onClick:function(){return G({key:t.key})},children:t.label}),key:t.key}})},[F,G]),$=(0,r.useMemo)(function(){return(0,g.getSelectedKeys)(F)},[F]),Y=(0,r.useMemo)(function(){return(0,g.getOpenKeys)(F)},[F]),H=(0,r.useCallback)(function(e){var t=N.tabs,n=t.length<=1,r=t.findIndex(function(t){return t.key===e}),i=r>=0&&r0?(0,b.jsx)(f.A,{type:"editable-card",hideAdd:!0,activeKey:J,onChange:B,onEdit:M,size:"small",style:{marginBottom:0},items:K.map(function(e){return{key:e.key,label:W(e),closable:!0}}),tabBarExtraContent:(0,b.jsx)(a.A,{menu:{items:[{key:"refresh",icon:(0,b.jsx)(d.A,{}),label:"刷新当前标签"},{key:"close-others",icon:(0,b.jsx)(p.A,{}),label:"关闭其他标签",disabled:K.length<=1},{key:"close-all",icon:(0,b.jsx)(y.A,{}),label:"关闭所有标签",disabled:0===K.length}],onClick:function(e){switch(e.key){case"refresh":V();break;case"close-others":_(J);break;case"close-all":U()}}},placement:"bottomRight",children:(0,b.jsx)(c.Ay,{type:"text",size:"small",icon:(0,b.jsx)(h.A,{})})})}):(0,b.jsx)("div",{style:{height:36,display:"flex",alignItems:"center",paddingLeft:8,color:"#bbb",fontSize:12},children:"暂无打开的标签页,请从左侧菜单选择页面"})}),(0,b.jsx)(I,{style:{margin:0,minHeight:280,position:"relative"},children:t})]})]})}},35580(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>I,findMenuPath:()=>N,flattenMenu:()=>E,getOpenKeys:()=>T,getPageLabel:()=>L,getSelectedKeys:()=>k}),n(96540);var r=n(55156),i=n(13614),o=n(53078),a=n(24123),l=n(73488),s=n(76164),c=n(69149),u=n(58976),f=n(56304),d=n(17011),p=n(74315),y=n(87281),m=n(84795),v=n(26571),h=n(24838),g=n(6266),b=n(39576),j=n(6663),x=n(20506),S=n(71016),C=n(74848);function A(e,t){var n="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=w(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,o=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw o}}}}function w(e,t){if(e){if("string"==typeof e)return P(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?P(e,t):void 0}}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(r)||w(r)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[a]);if(a.key===e)return l;if(a.children){var s=t(a.children,l);if(s)return s}}}catch(e){o.e(e)}finally{o.f()}return null}(O,[])||[]}function L(e){var t=E(O).find(function(t){return t.key===e});return(null==t?void 0:t.label)||e.split("/").filter(Boolean).pop()||"未命名页面"}function T(e){return N(e).slice(0,-1).map(function(e){return e.key})}function k(e){var t,n=E(O).map(function(e){return e.key}),r="",i=A(n);try{for(i.s();!(t=i.n()).done;){var o=t.value;e.startsWith(o)&&o.length>r.length&&(r=o)}}catch(e){i.e(e)}finally{i.f()}return r?[r]:[]}},76401(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>C});var r=n(28311),i=n(26380),o=n(96540),a=n(57006),l=n(21023),s=n(23899),c=n(88648),u=n(49788),f=n(56095),d=n(83577),p=n(74848);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function m(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return v(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(v(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,v(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,v(u,"constructor",c),v(c,"constructor",s),s.displayName="GeneratorFunction",v(c,i,"GeneratorFunction"),v(u),v(u,i,"Generator"),v(u,r,function(){return this}),v(u,"toString",function(){return"[object Generator]"}),(m=function(){return{w:o,m:f}})()}function v(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(v=function(e,t,n,r){function o(t,n){v(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function h(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function g(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return x(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?x(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nr});let r=function(e){return e.children||null}},99345(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(28311),i=n(26380),o=n(18182),a=n(87959),l=n(96540),s=n(57006),c=n(21023),u=n(23899),f=n(88648),d=n(49788),p=n(56095),y=n(74848);function m(e){return(m="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function v(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return h(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(h(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,h(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,h(u,"constructor",c),h(c,"constructor",s),s.displayName="GeneratorFunction",h(c,i,"GeneratorFunction"),h(u),h(u,i,"Generator"),h(u,r,function(){return this}),h(u,"toString",function(){return"[object Generator]"}),(v=function(){return{w:o,m:f}})()}function h(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(h=function(e,t,n,r){function o(t,n){h(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function g(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function b(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return C(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?C(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nr});let r=function(e){return e.children||null}},8351(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(28311),i=n(26380),o=n(71021),a=n(96540),l=n(57006),s=n(21023),c=n(23899),u=n(88648),f=n(49788),d=n(55096),p=n(56095),y=n(74848);function m(e){return(m="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function v(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return h(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(h(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,h(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,h(u,"constructor",c),h(c,"constructor",s),s.displayName="GeneratorFunction",h(c,i,"GeneratorFunction"),h(u),h(u,i,"Generator"),h(u,r,function(){return this}),h(u,"toString",function(){return"[object Generator]"}),(v=function(){return{w:o,m:f}})()}function h(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(h=function(e,t,n,r){function o(t,n){h(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function g(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function b(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return C(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?C(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nr});let r=function(e){return e.children||null}},92423(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>p});var r=n(26380),i=n(47152),o=n(16370),a=n(36492),l=n(95725),s=n(63718),c=n(28155),u=n(49788),f=n(30159),d=n(74848);function p(e){var t=e.form,n=e.disabled;return(0,d.jsx)(r.A,{form:t,layout:"vertical",disabled:n,children:(0,d.jsxs)(i.A,{gutter:16,children:[(0,d.jsx)(o.A,{span:24,children:(0,d.jsx)(r.A.Item,{name:"businessScope",label:"申请的业务范围",rules:[{required:!n,message:"请选择业务范围"}],children:(0,d.jsx)(a.A,{options:c.CI,placeholder:"请选择证照类型"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"filingTerritoryName",label:"备案属地",rules:[{required:!n,message:"请选择备案属地"}],children:(0,d.jsx)(a.A,{options:c.bf,placeholder:"请选择",showSearch:!0,optionFilterProp:"label"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"filingUnitName",label:"备案单位",children:(0,d.jsx)(l.A,{placeholder:"备案单位"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"filingUnitTypeName",label:"备案单位类型",children:(0,d.jsx)(a.A,{options:u.VA,placeholder:"请选择"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"creditCode",label:"统一社会信用代码",children:(0,d.jsx)(l.A,{placeholder:"统一社会信用代码"})})}),(0,d.jsx)(o.A,{span:24,children:(0,d.jsx)(r.A.Item,{name:"officeAddress",label:"办公地址",children:(0,d.jsx)(l.A,{placeholder:"办公地址"})})}),(0,d.jsx)(o.A,{span:24,children:(0,d.jsx)(r.A.Item,{name:"registerAddress",label:"注册地址",children:(0,d.jsx)(l.A,{placeholder:"注册地址"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"qualCertNo",label:"资质证书编号",children:(0,d.jsx)(l.A,{placeholder:"资质证书编号"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"infoDisclosureUrl",label:"信息公开网址",children:(0,d.jsx)(l.A,{placeholder:"信息公开网址"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"legalPersonPhone",label:"法人代表及电话",children:(0,d.jsx)(l.A,{placeholder:"姓名 / 电话"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"contactPhone",label:"联系人及电话",children:(0,d.jsx)(l.A,{placeholder:"姓名 / 电话"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"fixedAssetAmount",label:"固定资产总值(万元)",rules:[{required:!n,message:"请输入固定资产总值"}],children:(0,d.jsx)(s.A,{style:{width:"100%"},min:0,placeholder:"万元"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"workplaceArea",label:"工作场所建筑面积(㎡)",rules:[{required:!n,message:"请输入工作场所建筑面积"}],children:(0,d.jsx)(s.A,{style:{width:"100%"},min:0,placeholder:"㎡"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"archiveRoomArea",label:"档案室面积(㎡)",children:(0,d.jsx)(s.A,{style:{width:"100%"},min:0,placeholder:"㎡"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"fulltimeEvaluatorCount",label:"专职安全评价师数量(人)",children:(0,d.jsx)(s.A,{style:{width:"100%"},min:0,placeholder:"人"})})}),(0,d.jsx)(o.A,{span:12,children:(0,d.jsx)(r.A.Item,{name:"registeredEngineerCount",label:"注册安全工程师数量(人)",children:(0,d.jsx)(s.A,{style:{width:"100%"},min:0,placeholder:"人"})})}),(0,d.jsx)(o.A,{span:24,children:(0,d.jsx)(r.A.Item,{name:"unitIntro",label:"单位基本情况介绍",children:(0,d.jsx)(l.A.TextArea,{rows:3,placeholder:"请输入单位基本情况介绍"})})}),(0,d.jsx)(o.A,{span:24,children:(0,d.jsx)(f.A,{name:"attachmentUrl",label:"上传附件",disabled:n})})]})})}},55096(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>u});var r=n(18182),i=n(18246),o=n(96540),a=n(30045),l=n(74848);function s(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return c(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?c(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ny});var r=n(26380),i=n(95725),o=n(47152),a=n(16370),l=n(55165),s=n(36492),c=n(52528);n(93915);var u=n(30159),f=n(74848),d={display:"inline-block",minWidth:120,padding:"0 4px 2px",borderBottom:"1px solid #333",textAlign:"center",lineHeight:1.6};function p(e){var t={legalRepName:e.legalRepName,filingUnitName:e.filingUnitName};return(0,f.jsx)("div",{style:{fontSize:14,lineHeight:2,color:"rgba(0,0,0,0.85)"},children:c.COMMITMENT_PARAGRAPHS.map(function(e){return(0,f.jsx)("p",{style:{margin:"intro"===e.key?"0 0 12px":"0 0 10px",textIndent:"intro"===e.key?0:"2em"},children:e.parts.map(function(n,r){if("blank"===n.type){var i,o;return(0,f.jsx)("span",{children:(o=(null==(i=t[n.field])?void 0:i.trim())||"",(0,f.jsx)("span",{style:d,children:o||"\xa0".repeat(8)}))},"".concat(e.key,"-").concat(r))}return(0,f.jsx)("span",{children:n.value},"".concat(e.key,"-").concat(r))})},e.key)})})}function y(e){var t=e.form,n=e.disabled,c=e.personnelOptions,d=void 0===c?[]:c;e.onSignatureChange;var y=r.A.useWatch("legalRepName",t),m=r.A.useWatch("filingUnitName",t);return(0,f.jsx)("div",{style:{maxWidth:920},children:(0,f.jsxs)(r.A,{form:t,layout:"vertical",disabled:n,children:[(0,f.jsx)(r.A.Item,{name:"legalRepName",hidden:!0,children:(0,f.jsx)(i.A,{})}),(0,f.jsx)(r.A.Item,{name:"filingUnitName",hidden:!0,children:(0,f.jsx)(i.A,{})}),(0,f.jsx)(r.A.Item,{name:"commitmentContent",hidden:!0,children:(0,f.jsx)(i.A,{})}),(0,f.jsx)("div",{style:{border:"1px solid #e8e8e8",borderRadius:4,padding:"20px 24px",background:"#fafafa",marginBottom:24},children:(0,f.jsx)(p,{legalRepName:y,filingUnitName:m})}),(0,f.jsxs)(o.A,{gutter:24,children:[(0,f.jsx)(a.A,{xs:24,sm:12,md:8,children:(0,f.jsx)(r.A.Item,{name:"signDate",label:"签署日期",children:(0,f.jsx)(l.A,{style:{width:"100%"},placeholder:"请选择日期"})})}),(0,f.jsx)(a.A,{xs:24,sm:12,md:8,children:(0,f.jsx)(r.A.Item,{name:"legalRepPersonnelId",label:"法定代表人",rules:[{required:!n,message:"请选择法定代表人"}],children:(0,f.jsx)(s.A,{allowClear:!0,placeholder:"请选择",options:d,showSearch:!0,optionFilterProp:"label",onChange:function(e){if(!e)return void t.setFieldsValue({legalRepPersonnelId:void 0,legalRepName:""});var n=d.find(function(t){return t.value===e});t.setFieldsValue({legalRepPersonnelId:e,legalRepName:(null==n?void 0:n.staffName)||(null==n?void 0:n.label)||""})}})})})]}),(0,f.jsx)(u.A,{name:"legalRepSignatureUrl",label:"电子签名",disabled:n,maxCount:1,accept:"image/*"})]})})}},12017(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>p});var r=n(71021),i=n(18246),o=n(73133),a=n(87160),l=n(96540),s=n(4178),c=n(65474),u=n(74848);function f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?d(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ns,resolveFilingUploadUrl:()=>c});var r=n(41038),i=n(71021),o=n(88237),a=n(20344),l=n(74848);function s(e){var t=e.value,n=e.onChange,s=e.disabled,c=e.maxCount,u=void 0===c?1:c,f=e.accept,d=Array.isArray(t)?t:(0,a.zG)(t);return(0,l.jsx)(r.A,{maxCount:u,accept:f,action:"".concat(window.process.env.app.API_HOST,"/safetyEval/file/upload"),disabled:s,fileList:d,onChange:function(e){s||null==n||n(e.fileList)},children:(!d||d.lengthd});var r=n(18246),i=n(85196),o=n(73133),a=n(71021),l=n(87160),s=n(96540),c=n(4178),u=n(74848);function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return f(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?f(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),v=m[0],h=m[1];return(0,u.jsxs)(u.Fragment,{children:[(0,u.jsx)(r.A,{size:"small",loading:y,rowKey:"materialType",pagination:!1,scroll:{x:900},dataSource:void 0===n?[]:n,columns:[{title:"序号",width:60,render:function(e,t,n){return n+1}},{title:"内容",dataIndex:"materialContent",width:200,ellipsis:!0},{title:"上传附件",dataIndex:"attachmentDesc",width:100},{title:"格式",dataIndex:"materialFormat",width:70,render:function(e){return e?(0,u.jsx)(i.A,{children:e}):"-"}},{title:"状态",dataIndex:"uploadStatusName",width:90,render:function(e,t){return(0,u.jsx)(i.A,{color:2===t.uploadStatusCode?"success":"warning",children:e||"待上传"})}},{title:"操作",width:120,render:function(e,t){return(0,u.jsx)(o.A,{size:"small",children:t.attachmentUrl?(0,u.jsx)(a.Ay,{type:"link",size:"small",onClick:function(){var e;(e=t.attachmentUrl,/\.(png|jpe?g|gif|bmp|webp|svg)(\?.*)?$/i.test(e||""))?h(t.attachmentUrl):window.open(t.attachmentUrl)},children:"预览"}):!d&&(0,u.jsx)(c.A,{onSuccess:function(e){return null==p?void 0:p(t,e)}})})}},{title:"注释",dataIndex:"materialRemark",ellipsis:!0}]}),(0,u.jsx)(l.A,{style:{display:"none"},preview:{visible:!!v,src:v,onVisibleChange:function(e){e||h("")}}})]})}},65474(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>j});var r=n(28311),i=n(26380),o=n(18182),a=n(95725),l=n(71021),s=n(18246),c=n(96540),u=n(88648),f=n(74848);function d(e){return(d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function p(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return y(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(y(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,y(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,y(u,"constructor",c),y(c,"constructor",s),s.displayName="GeneratorFunction",y(c,i,"GeneratorFunction"),y(u),y(u,i,"Generator"),y(u,r,function(){return this}),y(u,"toString",function(){return"[object Generator]"}),(p=function(){return{w:o,m:f}})()}function y(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(y=function(e,t,n,r){function o(t,n){y(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return b(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?b(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==a[0]?a[0]:1,r=a.length>1&&void 0!==a[1]?a[1]:10,w(!0),t.p=1,i=b.getFieldsValue(),t.n=2,e.equipInfoList({current:n,pageSize:r,likeDeviceName:i.deviceName||void 0});case 2:(null==(o=t.v)?void 0:o.success)!==!1&&(I((null==o?void 0:o.data)||[]),L(function(e){return v(v({},e),{},{current:n,pageSize:r,total:(null==o?void 0:o.totalCount)||0})})),t.n=4;break;case 3:t.p=3,console.warn("[OrgEquipmentSelectModal] list failed:",t.v);case 4:return t.p=4,w(!1),t.f(4);case 5:return t.a(2)}},t,null,[[1,3,4,5]])}),n=function(){var e=this,n=arguments;return new Promise(function(r,i){var o=t.apply(e,n);function a(e){h(o,r,i,a,l,"next",e)}function l(e){h(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return n.apply(this,arguments)});return(0,c.useEffect)(function(){r&&(S([]),b.resetFields(),T())},[r]),(0,f.jsxs)(o.A,{open:r,title:"添加备案装备",width:800,destroyOnHidden:!0,onCancel:u,onOk:function(){var e=x.filter(function(e){return!m.includes(String(e))});if(!e.length)return void o.A.warning({title:"提示",content:"请选择至少一项未添加的装备"});var t=O.filter(function(t){return e.includes(t.id)});null==d||d(e,t)},okText:"确认添加",children:[(0,f.jsxs)(i.A,{form:b,layout:"inline",style:{marginBottom:16},children:[(0,f.jsx)(i.A.Item,{name:"deviceName",children:(0,f.jsx)(a.A,{placeholder:"关键字搜索",allowClear:!0})}),(0,f.jsxs)(i.A.Item,{children:[(0,f.jsx)(l.Ay,{type:"primary",onClick:function(){T(1,N.pageSize)},children:"搜索"}),(0,f.jsx)(l.Ay,{style:{marginLeft:8},onClick:function(){b.resetFields(),T()},children:"重置"})]})]}),(0,f.jsx)(s.A,{rowKey:"id",loading:A,dataSource:O,rowSelection:{selectedRowKeys:x,onChange:S,getCheckboxProps:function(e){return{disabled:m.includes(String(e.id))}}},pagination:v(v({},N),{},{showSizeChanger:!0,showTotal:function(e){return"共 ".concat(e," 条")},onChange:function(e,t){return T(e,t)}}),columns:[{title:"装备名称",dataIndex:"deviceName"},{title:"规格型号",dataIndex:"deviceModel"},{title:"生产厂家",dataIndex:"manufacturer"}]})]})})},82314(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>x});var r=n(28311),i=n(26380),o=n(18182),a=n(95725),l=n(71021),s=n(18246),c=n(96540),u=n(88648),f=n(76243),d=n(74848);function p(e){return(p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function y(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return m(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(m(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,m(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,m(u,"constructor",c),m(c,"constructor",s),s.displayName="GeneratorFunction",m(c,i,"GeneratorFunction"),m(u),m(u,i,"Generator"),m(u,r,function(){return this}),m(u,"toString",function(){return"[object Generator]"}),(y=function(){return{w:o,m:f}})()}function m(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(m=function(e,t,n,r){function o(t,n){m(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function h(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return j(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?j(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function j(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==a[0]?a[0]:1,r=a.length>1&&void 0!==a[1]?a[1]:10,E(!0),t.p=1,i=j.getFieldsValue(),t.n=2,e.staffInfoList({current:n,pageSize:r,likeStaffName:i.staffName||void 0});case 2:(null==(o=t.v)?void 0:o.success)!==!1&&(T((null==o?void 0:o.data)||[]),D(function(e){return h(h({},e),{},{current:n,pageSize:r,total:(null==o?void 0:o.totalCount)||0})})),t.n=4;break;case 3:t.p=3,console.warn("[OrgPersonnelSelectModal] list failed:",t.v);case 4:return t.p=4,E(!1),t.f(4);case 5:return t.a(2)}},t,null,[[1,3,4,5]])}),n=function(){var e=this,n=arguments;return new Promise(function(r,i){var o=t.apply(e,n);function a(e){g(o,r,i,a,l,"next",e)}function l(e){g(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return n.apply(this,arguments)});return(0,c.useEffect)(function(){r&&(C([]),j.resetFields(),R())},[r]),(0,d.jsxs)(d.Fragment,{children:[(0,d.jsxs)(o.A,{open:r,title:"添加备案人员",width:800,destroyOnHidden:!0,onCancel:u,onOk:function(){var e=S.filter(function(e){return!v.includes(String(e))});if(!e.length)return void o.A.warning({title:"提示",content:"请选择至少一名未添加的人员"});var t=L.filter(function(t){return e.includes(t.id)});null==p||p(e,t)},okText:"确认添加",children:[(0,d.jsxs)(i.A,{form:j,layout:"inline",style:{marginBottom:16},children:[(0,d.jsx)(i.A.Item,{name:"staffName",children:(0,d.jsx)(a.A,{placeholder:"关键字搜索",allowClear:!0})}),(0,d.jsxs)(i.A.Item,{children:[(0,d.jsx)(l.Ay,{type:"primary",onClick:function(){R(1,F.pageSize)},children:"搜索"}),(0,d.jsx)(l.Ay,{style:{marginLeft:8},onClick:function(){j.resetFields(),R()},children:"重置"})]})]}),(0,d.jsx)(s.A,{rowKey:"id",loading:I,dataSource:L,rowSelection:{selectedRowKeys:S,onChange:C,getCheckboxProps:function(e){return{disabled:v.includes(String(e.id))}}},pagination:h(h({},F),{},{showSizeChanger:!0,showTotal:function(e){return"共 ".concat(e," 条")},onChange:function(e,t){return R(e,t)}}),columns:[{title:"人员姓名",dataIndex:"userName"},{title:"类型",dataIndex:"personTypeName"},{title:"职称",dataIndex:"titleName"},{title:"操作",width:80,render:function(e,t){return(0,d.jsx)(l.Ay,{type:"link",size:"small",onClick:function(){return P(t.id)},children:"查看"})}}]})]}),(0,d.jsx)(f.default,{open:!!w,currentId:w,requestDetails:e.staffInfoGet,onCancel:function(){return P("")}})]})})},74969(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>d});var r=n(71021),i=n(18246),o=n(73133),a=n(96540),l=n(76243),s=n(82314),c=n(74848);function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return f(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nl});var r=n(46420),i=n(51399),o=n(18182),a=n(74848);function l(e){var t=e.open,n=e.result,l=e.loading,s=e.onCancel,c=e.onConfirm,u=null==n?void 0:n.passed;return(0,a.jsx)(o.A,{open:t,title:"资质申请前置条件核验结果",width:560,destroyOnHidden:!0,onCancel:s,onOk:u?c:void 0,okText:"确定",cancelText:u?"取消":"关闭",confirmLoading:l,okButtonProps:{style:u?void 0:{display:"none"}},children:(0,a.jsx)("div",{style:{padding:"8px 0"},children:((null==n?void 0:n.items)||[]).map(function(e){return(0,a.jsxs)("div",{style:{display:"flex",gap:12,alignItems:"flex-start",marginBottom:16},children:[e.passed?(0,a.jsx)(r.A,{style:{color:"#52c41a",fontSize:18,marginTop:2}}):(0,a.jsx)(i.A,{style:{color:"#faad14",fontSize:18,marginTop:2}}),(0,a.jsxs)("div",{children:[(0,a.jsx)("div",{style:{fontWeight:600,marginBottom:4},children:e.label}),(0,a.jsx)("div",{style:{color:"rgba(0,0,0,0.65)",lineHeight:1.6},children:e.desc})]})]},e.key)})})})}},70756(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>V});var r=n(28311),i=n(57006),o=n(26380),a=n(87959),l=n(18182),s=n(21734),c=n(21637),u=n(73133),f=n(71021),d=n(96540),p=n(21023),y=n(30045),m=n(88648),v=n(49788),h=n(94878),g=n(24941),b=n(26368),j=n(92423),x=n(93090),S=n(12017),C=n(81110),A=n(74969),w=n(21819),P=n(74848);function O(e){return(O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function I(e){return function(e){if(Array.isArray(e))return q(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||R(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function E(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function N(e){for(var t=1;t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(T(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,T(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,T(u,"constructor",c),T(c,"constructor",s),s.displayName="GeneratorFunction",T(c,i,"GeneratorFunction"),T(u),T(u,i,"Generator"),T(u,r,function(){return this}),T(u,"toString",function(){return"[object Generator]"}),(L=function(){return{w:o,m:f}})()}function T(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(T=function(e,t,n,r){function o(t,n){T(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function k(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function F(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){k(o,r,i,a,l,"next",e)}function l(e){k(o,r,i,a,l,"throw",e)}a(void 0)})}}function D(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||R(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(e,t){if(e){if("string"==typeof e)return q(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?q(e,t):void 0}}function q(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n1&&void 0!==arguments[1]?arguments[1]:[],r=new Set(((null==(t=er.current)?void 0:t.personnelList)||[]).map(function(e){return String(e.sourcePersonnelId||e.id)})),i=e.filter(function(e){return!r.has(String(e))});if(i.length){var o=new Map((n||[]).map(function(e){return[String(e.id),e]})),l=i.map(function(e){var t=o.get(String(e));return t?(0,g.mapStaffRowToFilingPersonnel)(t):(0,g.mapStaffRowToFilingPersonnel)({id:e})});Q(function(e){return N(N({},e),{},{personnelList:[].concat(I(e.personnelList||[]),I(l))})}),a.Ay.success("已添加至列表,".concat(eo))}},onRemove:function(e){l.A.confirm({title:"提示",content:"确认删除人员「".concat(e.userName||e.personName,"」?"),onOk:function(){Q(function(t){return N(N({},t),{},{personnelList:(t.personnelList||[]).filter(function(t){return t.id!==e.id})})})}})}})},{key:"equipment",label:"5. 装备清单",children:(0,P.jsx)(S.default,{equipmentList:(null==M?void 0:M.equipmentList)||[],disabled:ei,onAdd:function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=new Set(((null==(t=er.current)?void 0:t.equipmentList)||[]).map(function(e){return String(e.sourceEquipmentId)})),i=e.filter(function(e){return!r.has(String(e))});if(i.length){var o=new Map((n||[]).map(function(e){return[String(e.id),e]})),l=i.map(function(e){var t=o.get(String(e));return t?(0,g.mapEquipRowToFilingEquipment)(t):(0,g.mapEquipRowToFilingEquipment)({id:e})});Q(function(e){return N(N({},e),{},{equipmentList:[].concat(I(e.equipmentList||[]),I(l))})}),a.Ay.success("已添加至列表,".concat(eo))}},onRemove:function(e){l.A.confirm({title:"提示",content:"确认移除装备「".concat(e.deviceName,"」?"),onOk:function(){Q(function(t){return N(N({},t),{},{equipmentList:(t.equipmentList||[]).filter(function(t){return t.id!==e.id})})})}})},onUploadCalibration:function(e,t){var n=t.url;Q(function(t){return N(N({},t),{},{equipmentList:(t.equipmentList||[]).map(function(t){return t.id===e.id?N(N({},t),{},{calibrationReportUrl:n}):t})})})}})}],ey=ep.findIndex(function(e){return e.key===V}),em=ey===ep.length-1;return(0,P.jsxs)(p.A,{title:U[m]||"资质备案表单",history:e.history,previous:!0,children:[(0,P.jsxs)(s.A,{spinning:E||k,children:[(0,P.jsx)(c.A,{activeKey:V,items:ep,onChange:ec}),(0,P.jsxs)(u.A,{children:[ey>0&&(0,P.jsx)(f.Ay,{onClick:function(){ec(ep[ey-1].key)},children:"上一步"}),!em&&(0,P.jsx)(f.Ay,{type:"primary",onClick:function(){ec(ep[ey+1].key)},children:"下一步"}),!ei&&em&&(0,P.jsxs)(P.Fragment,{children:[m!==v.tV.FILED&&(0,P.jsx)(f.Ay,{loading:k,onClick:eu,children:"暂存"}),(0,P.jsx)(f.Ay,{type:"primary",onClick:ef,children:m===v.tV.FILED?"提交填报":"提交申请"})]})]})]}),(0,P.jsx)(w.default,{open:K,result:X,loading:k,onCancel:function(){return J(!1)},onConfirm:ed})]})})},56095(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>h});var r=n(6198),i=n(85196),o=n(71021),a=n(26380),l=n(36492),s=n(18246),c=n(44500),u=n(51038),f=n(83454),d=n(28155),p=n(49788),y=n(55406),m=n(83577),v=n(74848);function h(e){var t=e.dataSource,n=e.total,h=e.loading,g=e.searchForm,b=e.onSearch,j=e.onPageChange,x=e.scrollY,S=e.mode,C=e.showChangeCount,A=e.onChangeCountClick,w=e.onCreate,P=e.createLabel,O=e.listTitle,I=e.listDesc,E=e.PageLayout,N=e.onDelete,L=e.extraActions,T=(0,p.Cd)(S),k=[{title:"备案属地",dataIndex:"filingTerritoryName",width:120,ellipsis:!0},{title:"备案单位",dataIndex:"filingUnitName",ellipsis:!0},{title:"备案编号",dataIndex:"filingNo",width:200,render:function(e,t){return e||t.id||"-"}},{title:"安全评价业务范围",dataIndex:"businessScope",ellipsis:!0}];return void 0!==C&&C&&k.push({title:"变更次数",dataIndex:"changeCount",width:90,render:function(e,t){var n=(0,y.wy)(t),i=n>0?y.dr.active:y.dr.zero;return n<=0?(0,v.jsx)("span",{style:i,children:n}):(0,v.jsx)(r.A.Link,{style:i,onClick:function(){return null==A?void 0:A(t)},children:n})}}),k.push({title:"备案状态",dataIndex:"filingStatusName",width:110,render:function(e,t){var n=p.DX[t.filingStatusCode],r=(null==n?void 0:n.color)||"default",o=(null==n?void 0:n.label)||"-";return n?(0,v.jsx)(i.A,{color:r,children:o||"-"}):"--"}}),k.push({title:"操作",width:180,fixed:"right",render:function(e,t){return(0,v.jsxs)(f.A,{children:[(0,v.jsx)(o.Ay,{type:"link",size:"small",onClick:function(){return(0,m.goFilingForm)({mode:S,id:t.id,readOnly:!0})},children:"查看"}),null==L?void 0:L(t),(S===p.tV.FILED?(0,p.ej)(t.filingStatusCode,S):(0,p.JP)(t.filingStatusCode))&&S!==p.tV.CHANGE&&(0,v.jsx)(o.Ay,{type:"link",size:"small",onClick:function(){return(0,m.goFilingForm)({mode:S,id:t.id})},children:"修改"}),S===p.tV.APPLICATION&&(0,p.JP)(t.filingStatusCode)&&N&&(0,v.jsx)(o.Ay,{type:"link",size:"small",danger:!0,onClick:function(){return N(t)},children:"删除"})]})}}),(0,v.jsxs)(E,{title:I?(0,v.jsxs)("div",{children:[(0,v.jsx)("span",{children:O}),(0,v.jsx)("div",{className:"pageLayout-extra",children:I})]}):O,extra:w&&(0,v.jsx)(o.Ay,{type:"primary",onClick:w,children:P}),children:[(0,v.jsx)(c.A,{style:{marginBottom:24},form:g,loading:h,formLine:[(0,v.jsx)(a.A.Item,{name:"filingUnitName",children:(0,v.jsx)(u.A.Input,{label:"备案单位",placeholder:"关键字搜索",allowClear:!0})},"filingUnitName"),(0,v.jsx)(a.A.Item,{name:"filingTerritoryName",children:(0,v.jsx)(u.A.Select,{label:"备案属地",placeholder:"请输入",allowClear:!0,style:{width:"100%"},children:d.bf.map(function(e){return(0,v.jsx)(l.A.Option,{value:e.value,children:e.label},e.value)})})},"filingTerritoryName"),(0,v.jsx)(a.A.Item,{name:"filingNo",children:(0,v.jsx)(u.A.Input,{label:"备案编号",placeholder:"关键字搜索",allowClear:!0})},"filingNo"),(0,v.jsx)(a.A.Item,{name:"filingStatus",children:(0,v.jsx)(u.A.Select,{label:"备案状态",placeholder:"全部",allowClear:!1,showSearch:!1,style:{width:"100%"},children:T.map(function(e){return(0,v.jsx)(l.A.Option,{value:e.value,children:e.label},e.value)})})},"filingStatus")],onFinish:function(e){return b(e)},onReset:function(e){return b(e)}}),(0,v.jsx)(s.A,{rowKey:"id",columns:k,dataSource:t,loading:h,scroll:{y:x},pagination:{total:n,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")}},onChange:function(e){j&&j(e)}})]})}},52528(e,t,n){"use strict";n.r(t),n.d(t,{COMMITMENT_PARAGRAPHS:()=>r,buildCommitmentContent:()=>i,parseCommitmentNames:()=>o});var r=[{key:"intro",parts:[{type:"text",value:"本人是"},{type:"blank",field:"legalRepName"},{type:"text",value:",是"},{type:"blank",field:"filingUnitName"},{type:"text",value:"法定代表人,现代表我单位承诺如下:"}]},{key:"p1",parts:[{type:"text",value:"一、我单位自愿申请安全评价机构资质。本人已经认真学习、了解并掌握《安全生产法》《行政许可法》《行政处罚法》及《安全评价检测检验机构管理办法》等法律法规的相关规定,知悉开展安全评价工作的法律责任、义务、权力和风险。"}]},{key:"p2",parts:[{type:"text",value:"二、本人承诺"},{type:"blank",field:"filingUnitName"},{type:"text",value:"(单位)满足《安全评价检测检验机构管理办法》所规定的资质条件要求,本人及单位三年内无重大违法失信行为,申请资质所提交的有关材料真实、合法、有效,并对其真实性、合法性承担相应法律责任,接受并配合有关部门对本单位开展的专业能力审查。"}]},{key:"p3",parts:[{type:"text",value:"三、如能获准资质,本单位将严格按照法律法规、规章标准的要求开展安全评价活动,遵守执业准则和职业道德,并对作出的安全评价报告结果承担法律责任,自觉接受应急管理部门、煤矿安全监督管理部门等行政执法部门的监督检查。"}]}];function i(e){var t=e.legalRepName,n=e.filingUnitName,r=(void 0===n?"":n)||"__________";return"本人是".concat((void 0===t?"":t)||"__________",",是").concat(r,"法定代表人,现代表我单位承诺如下:\n\n一、我单位自愿申请安全评价机构资质。本人已经认真学习、了解并掌握《安全生产法》《行政许可法》《行政处罚法》及《安全评价检测检验机构管理办法》等法律法规的相关规定,知悉开展安全评价工作的法律责任、义务、权力和风险。\n\n二、本人承诺").concat(r,"(单位)满足《安全评价检测检验机构管理办法》所规定的资质条件要求,本人及单位三年内无重大违法失信行为,申请资质所提交的有关材料真实、合法、有效,并对其真实性、合法性承担相应法律责任,接受并配合有关部门对本单位开展的专业能力审查。\n\n三、如能获准资质,本单位将严格按照法律法规、规章标准的要求开展安全评价活动,遵守执业准则和职业道德,并对作出的安全评价报告结果承担法律责任,自觉接受应急管理部门、煤矿安全监督管理部门等行政执法部门的监督检查。")}function o(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",a=String(i).match(/本人是(.+?),是(.+?)法定代表人/);if(a)return{legalRepName:(null==(n=a[1])?void 0:n.trim())||"",filingUnitName:(null==(r=a[2])?void 0:r.trim())||o||""};var l=String(i).match(/本人是(.+?)是(.+?)法定代表人/);return{legalRepName:(null==l||null==(e=l[1])?void 0:e.trim())||"",filingUnitName:(null==l||null==(t=l[2])?void 0:t.trim())||o||""}}},94727(e,t,n){"use strict";n.r(t),n.d(t,{clearLocalDraft:()=>l,createEmptyFilingDetail:()=>s,loadLocalDraft:()=>o,saveLocalDraft:()=>a});var r=n(94878);function i(e){return"".concat("qual_filing_local_draft:").concat(e||"application")}function o(e){try{var t=sessionStorage.getItem(i(e));if(!t)return null;return JSON.parse(t)}catch(e){return null}}function a(e,t){try{sessionStorage.setItem(i(e),JSON.stringify(t))}catch(e){console.warn("[filingLocalDraft] save failed:",e)}}function l(e){sessionStorage.removeItem(i(e))}function s(){return{id:null,filingStatusCode:5,materials:(0,r.createLocalMaterials)(),commitment:{legalRepPersonnelId:"",legalRepName:"",filingUnitName:"",signDate:null,legalRepSignatureUrl:"",signatureFiles:[],commitmentContent:""},personnelList:[],equipmentList:[],businessScope:"",filingTerritoryName:"",filingUnitName:"",filingUnitTypeName:"",creditCode:"",registerAddress:"",officeAddress:"",qualCertNo:"",infoDisclosureUrl:"",legalPersonPhone:"",contactPhone:"",fixedAssetAmount:null,workplaceArea:null,archiveRoomArea:null,fulltimeEvaluatorCount:null,registeredEngineerCount:null,unitIntro:"",attachmentUrl:"",attachments:[]}}},94878(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function o(e){for(var t=1;ta,createLocalMaterials:()=>l});var a=[{id:1,materialType:1,materialContent:"申请材料目录(原件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:null,requiredFlag:1},{id:2,materialType:2,materialContent:"申请书(原件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"法定代表人亲笔签名并加盖单位公章",requiredFlag:1},{id:3,materialType:3,materialContent:"法人证明(复印件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"营业执照或事业单位法人证书等",requiredFlag:1},{id:4,materialType:4,materialContent:"三年内无重大违法失信记录查询证明(原件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"法定代表人亲笔签名并加盖单位公章",requiredFlag:1},{id:5,materialType:5,materialContent:"法定代表人承诺书(原件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"法定代表人亲笔签名",requiredFlag:1},{id:6,materialType:6,materialContent:"固定资产法定证明材料或书面承诺",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:null,requiredFlag:1},{id:7,materialType:7,materialContent:"工作场所及档案室面积证明资料(复印件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"房产证、租赁协议等",requiredFlag:1},{id:8,materialType:8,materialContent:"安全评价师专业能力证明(彩色复印件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"学历证书、职称证及其他相关证明材料",requiredFlag:1},{id:9,materialType:9,materialContent:"相关负责人证明材料(复印件)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:"任命文件、简历、职称证等",requiredFlag:1},{id:10,materialType:10,materialContent:"机构内部管理制度(非受控版)",materialFormat:null,attachmentDesc:"纸质版扫描件",materialRemark:null,requiredFlag:1}];function l(){return a.map(function(e){return o(o({id:"local-material-".concat(e.sortOrder),filingId:null},e),{},{uploadStatusCode:1,uploadStatusName:"待上传",attachmentUrl:null})})}},83577(e,t,n){"use strict";n.r(t),n.d(t,{FILING_FORM_PATH:()=>r,FILING_LIST_PATH:()=>i,goFilingForm:()=>o,goFilingList:()=>a});var r="/safetyEval/container/qualApplication/filingForm",i={application:"/safetyEval/container/qualApplication/filingApplication/list",filed:"/safetyEval/container/qualApplication/filedManage/list",change:"/safetyEval/container/qualApplication/filingChange/list"};function o(e){var t=e.mode,n=e.id,i=e.originFilingId,o=e.readOnly,a=new URLSearchParams({mode:t});n&&a.set("id",String(n)),i&&a.set("originFilingId",String(i)),o&&a.set("readOnly","1"),window.location.href="".concat(r,"?").concat(a.toString())}function a(e){window.location.href=i[e]||i.application}},24941(e,t,n){"use strict";n.r(t),n.d(t,{fetchOrgPersonnelOptions:()=>C,mapEquipRowToFilingEquipment:()=>P,mapStaffRowToFilingPersonnel:()=>w,mergeDetailFromForms:()=>F,persistFilingToBackend:()=>T});var r=n(30045),i=n(48032),o=n(31467),a=n(73398),l=n(76332),s=n(49788),c=n(52528);function u(e){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var f=["materials","commitment","personnelList","equipmentList"];function d(e){return function(e){if(Array.isArray(e))return v(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||m(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function p(e){if(null!=e){var t=e["function"==typeof Symbol&&Symbol.iterator||"@@iterator"],n=0;if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length))return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}}}throw TypeError(u(e)+" is not iterable")}function y(e,t){var n="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=m(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){l=!0,o=e},f:function(){try{a||null==n.return||n.return()}finally{if(l)throw o}}}}function m(e,t){if(e){if("string"==typeof e)return v(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?v(e,t):void 0}}function v(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(g(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,g(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,g(u,"constructor",c),g(c,"constructor",s),s.displayName="GeneratorFunction",g(c,i,"GeneratorFunction"),g(u),g(u,i,"Generator"),g(u,r,function(){return this}),g(u,"toString",function(){return"[object Generator]"}),(h=function(){return{w:o,m:f}})()}function g(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(g=function(e,t,n,r){function o(t,n){g(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function b(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function j(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=(0,a.gR)(e.id);return{id:"local-person-".concat(t),sourcePersonnelId:t,personName:e.staffName,userName:e.staffName,personTypeName:e.personType,positionName:e.positionName,titleName:e.titleName,registerEngineerFlag:e.registerEngineerFlag,workExperience:e.workExperience}}function P(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=(0,a.gR)(e.id);return{id:"local-equip-".concat(t),sourceEquipmentId:t,deviceName:e.deviceName,deviceModel:e.deviceModel,manufacturer:e.manufacturer,calibrationReportUrl:e.calibrationReportUrl||""}}function O(){return(O=S(h().m(function e(t,n){var i,o,a,l=arguments;return h().w(function(e){for(;;)switch(e.n){case 0:if(!(((o=l.length>2&&void 0!==l[2]?l[2]:[])||[]).length>0)){e.n=1;break}return e.a(2,o);case 1:return e.n=2,t.qualFilingMaterialInitTemplate({filingId:n});case 2:return e.n=3,(0,r.fetchQualFilingDetail)(n);case 3:return a=e.v,e.a(2,(null==a||null==(i=a.data)?void 0:i.materials)||[])}},e)}))).apply(this,arguments)}function I(){return(I=S(h().m(function e(t){var n,r,i,o,a,l,s,c=arguments;return h().w(function(e){for(;;)switch(e.p=e.n){case 0:n=c.length>1&&void 0!==c[1]?c[1]:[],r=c.length>2&&void 0!==c[2]?c[2]:[],i=[],o=y(n),e.p=1,l=h().m(function e(){var n,o;return h().w(function(e){for(;;)switch(e.n){case 0:if(null!=(n=a.value)&&n.attachmentUrl){e.n=1;break}return e.a(2,1);case 1:null!=(o=r.find(function(e){return Number(e.sortOrder)===Number(n.sortOrder)}))&&o.id&&o.attachmentUrl!==n.attachmentUrl&&i.push(t.qualFilingMaterialUpload({id:o.id,attachmentUrl:n.attachmentUrl}));case 2:return e.a(2)}},e)}),o.s();case 2:if((a=o.n()).done){e.n=5;break}return e.d(p(l()),3);case 3:if(!e.v){e.n=4;break}return e.a(3,4);case 4:e.n=2;break;case 5:e.n=7;break;case 6:e.p=6,s=e.v,o.e(s);case 7:return e.p=7,o.f(),e.f(7);case 8:if(!i.length){e.n=9;break}return e.n=9,Promise.all(i);case 9:return e.a(2)}},e,null,[[1,6,7,8]])}))).apply(this,arguments)}function E(){return(E=S(h().m(function e(t,n){var r,i,o,a,l,s,c=arguments;return h().w(function(e){for(;;)switch(e.n){case 0:if(r=c.length>2&&void 0!==c[2]?c[2]:[],o=new Map(((i=c.length>3&&void 0!==c[3]?c[3]:[])||[]).map(function(e){return[String(e.sourcePersonnelId),e]})),a=new Set(r.map(function(e){return String(e.sourcePersonnelId)}).filter(Boolean)),!(l=(i||[]).filter(function(e){return!a.has(String(e.sourcePersonnelId))}).map(function(e){return t.qualFilingPersonnelDelete({id:e.id})})).length){e.n=1;break}return e.n=1,Promise.all(l);case 1:if(!(s=d(a).filter(function(e){return!o.has(e)})).length){e.n=2;break}return e.n=2,t.qualFilingPersonnelBatchAdd({filingId:n,sourcePersonnelIds:s});case 2:return e.a(2)}},e)}))).apply(this,arguments)}function N(){return(N=S(h().m(function e(t,n){var i,o,a,l,s,c,u,f,m,v,g,b,j,x,S=arguments;return h().w(function(e){for(;;)switch(e.p=e.n){case 0:if(o=S.length>2&&void 0!==S[2]?S[2]:[],l=new Map(((a=S.length>3&&void 0!==S[3]?S[3]:[])||[]).map(function(e){return[String(e.sourceEquipmentId),e]})),s=new Set(o.map(function(e){return String(e.sourceEquipmentId)}).filter(Boolean)),!(c=(a||[]).filter(function(e){return!s.has(String(e.sourceEquipmentId))}).map(function(e){return t.qualFilingEquipmentDelete({id:e.id})})).length){e.n=1;break}return e.n=1,Promise.all(c);case 1:if(!(u=d(s).filter(function(e){return!l.has(e)})).length){e.n=2;break}return e.n=2,t.qualFilingEquipmentBatchAdd({filingId:n,sourceEquipmentIds:u});case 2:if(o.some(function(e){return e.calibrationReportUrl})){e.n=3;break}return e.a(2);case 3:return e.n=4,(0,r.fetchQualFilingDetail)(n);case 4:m=(null==(f=e.v)||null==(i=f.data)?void 0:i.equipmentList)||[],v=[],g=y(o),e.p=5,j=h().m(function e(){var n,r;return h().w(function(e){for(;;)switch(e.n){case 0:if((n=b.value).calibrationReportUrl){e.n=1;break}return e.a(2,1);case 1:null!=(r=m.find(function(e){return String(e.sourceEquipmentId)===String(n.sourceEquipmentId)}))&&r.id&&r.calibrationReportUrl!==n.calibrationReportUrl&&v.push(t.qualFilingEquipmentUploadCalibration({id:r.id,attachmentUrl:n.calibrationReportUrl}));case 2:return e.a(2)}},e)}),g.s();case 6:if((b=g.n()).done){e.n=9;break}return e.d(p(j()),7);case 7:if(!e.v){e.n=8;break}return e.a(3,8);case 8:e.n=6;break;case 9:e.n=11;break;case 10:e.p=10,x=e.v,g.e(x);case 11:return e.p=11,g.f(),e.f(11);case 12:if(!v.length){e.n=13;break}return e.n=13,Promise.all(v);case 13:return e.a(2)}},e,null,[[5,10,11,12]])}))).apply(this,arguments)}function L(e,t){return(null==e?void 0:e.message)||(null==e?void 0:e.errMessage)||t}function T(e,t,n){return k.apply(this,arguments)}function k(){return(k=S(h().m(function e(t,n,i){var o,a,u,d,p,y,m,v,g,b,x,S,C,A,w,P,T,k,F,D,R,q,_,z;return h().w(function(e){for(;;)switch(e.n){case 0:if(a=n.id,u=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e.materials,e.commitment,e.personnelList,e.equipmentList,function(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n={};for(var r in e)if(({}).hasOwnProperty.call(e,r)){if(-1!==t.indexOf(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r0&&void 0!==arguments[0]?arguments[0]:{},t=e.commitment||{};return!!(t.legalRepName||t.legalRepPersonnelId||t.signDate||t.legalRepSignatureUrl)}(n)){e.n=15;break}return e.n=14,t.qualFilingCommitmentSaveOrUpdate(function(e){var t=e.commitment||{},n=t.filingUnitName||e.filingUnitName||"",r=t.legalRepName||"",i=t.legalRepPersonnelId||"";return{id:t.id,filingId:e.id,legalRepSignatureUrl:t.legalRepSignatureUrl,signDate:(0,l.au)(t.signDate),legalRepPersonnelId:i,legalRepName:r,commitmentContent:(0,c.buildCommitmentContent)({legalRepName:r,filingUnitName:n})}}(j(j({},n),{},{id:a})));case 14:if((null==(b=e.v)?void 0:b.success)!==!1){e.n=15;break}throw Error(L(b,"暂存承诺书失败"));case 15:if(x=(n.personnelList||[]).length>0,S=(n.equipmentList||[]).length>0,!(x||S)){e.n=21;break}return e.n=16,(0,r.fetchQualFilingDetail)(a);case 16:if(D=null===(C=e.v)){e.n=17;break}D=void 0===C;case 17:if(!D){e.n=18;break}R=void 0,e.n=19;break;case 18:R=C.data;case 19:if(F=R){e.n=20;break}F=v;case 20:v=F;case 21:if(!x){e.n=22;break}return e.n=22,function(e,t){return E.apply(this,arguments)}(t,a,n.personnelList||[],v.personnelList||[]);case 22:if(!S){e.n=29;break}if(!x){e.n=28;break}return e.n=23,(0,r.fetchQualFilingDetail)(a);case 23:if(_=null===(A=e.v)){e.n=24;break}_=void 0===A;case 24:if(!_){e.n=25;break}z=void 0,e.n=26;break;case 25:z=A.data;case 26:if(q=z){e.n=27;break}q=v;case 27:v=q;case 28:return e.n=29,function(e,t){return N.apply(this,arguments)}(t,a,n.equipmentList||[],v.equipmentList||[]);case 29:return e.n=30,(0,r.fetchQualFilingDetail)(a);case 30:return w=e.v,e.a(2,(null==w?void 0:w.data)||{id:a})}},e)}))).apply(this,arguments)}function F(e,t){var n,r,i=t.basicValues,o=t.commitmentValues;return j(j(j({},e),i),{},{attachmentUrl:Array.isArray(null==i?void 0:i.attachmentUrl)?null==i||null==(n=i.attachmentUrl)?void 0:n.map(function(e){return e.url}).join(","):null==i?void 0:i.attachmentUrl,materials:e.materials,personnelList:e.personnelList,equipmentList:e.equipmentList,commitment:j(j(j({},e.commitment),o),{},{legalRepSignatureUrl:Array.isArray(null==o?void 0:o.legalRepSignatureUrl)?null==o||null==(r=o.legalRepSignatureUrl)?void 0:r.map(function(e){return e.url}).join(","):null==o?void 0:o.legalRepSignatureUrl})})}},26368(e,t,n){"use strict";n.r(t),n.d(t,{verifyFilingPrerequisites:()=>a});var r=["负责人","技术负责人","质量负责人"];function i(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return String(e).includes("高级")}function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.registerEngineerFlag;return 1===t||!0===t||"1"===t}function a(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=[],n=Number(e.fixedAssetAmount)||0;t.push({key:"entity",label:"主体资格",desc:"独立法人资格,固定资产不少于一千万元",passed:n>=1e3});var a=Number(e.workplaceArea)||0,l=(e.equipmentList||[]).length;t.push({key:"facility",label:"场所与设备",desc:"工作场所建筑面积不少于1000㎡,检测检验设施设备原值不少于800万元",passed:a>=1e3&&(l>0||n>=800)});var s=e.personnelList||[];return s.length,s.filter(o).length,s.filter(function(e){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return String(e).includes("中级")||i(e)}(e.titleName)}).length,s.filter(function(e){return i(e.titleName)}).length,t.push({key:"personnelStructure",label:"人员数量与结构",desc:"专职技术人员≥25人,中级注安师≥30%,中级职称≥50%,高级职称≥30%",passed:!0}),s.filter(function(e){var t=String(e.workExperience||"");return t.length>=4||/[2-9]\s*年|[二三四五六七八九十]年/.test(t)}).length,t.push({key:"personnelExp",label:"人员资历",desc:"专职技术人员在本行业领域工作二年以上",passed:!0}),r.every(function(e){return s.some(function(t){return String(t.positionName||"").includes(e)&&i(t.titleName)})}),t.push({key:"keyPosition",label:"关键岗位要求",desc:"负责人、技术负责人、质量负责人具有高级职称,工作八年以上",passed:!0}),t.push({key:"mgmtSystem",label:"管理体系",desc:"管理体系文件已上传",passed:!0}),{passed:t.every(function(e){return e.passed}),items:t}}},27102(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(96540),i=n(88648),o=n(28311),a=n(42441),l=n(74848);function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return s(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?s(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),i=n[0],o=n[1];return(0,r.useEffect)(function(){i||e.orgInfoGet().then(function(e){var t,n,r;null!=e&&null!=(t=e.data)&&t.id&&(o(null==e||null==(n=e.data)?void 0:n.id),sessionStorage.setItem("orgInfoId",null==e||null==(r=e.data)?void 0:r.id))})},[]),(0,l.jsx)("div",{style:{height:"100%"},children:i?e.children:(0,l.jsx)(a.A,{active:!0})})})},34910(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(96540),i=n(26380),o=n(85196),a=n(71021),l=n(36492),s=n(18246),c=n(21023),u=n(44500),f=n(83454),d=n(51038),p=n(23899),y=n(57006),m=n(28311),v=n(88648),h=n(88565),g=n(56097),b=n(74848);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function S(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return C(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?C(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],p=e.qualReview,y=e.queryReviewList,m=p||{},v=m.qualReviewList,j=m.qualReviewTotal,x=m.qualReviewLoading,w=function(){y(S(S({},(0,g.toQualReviewPageQuery)(A.query)),{},{supervision:!0,applyTypeCode:1}))};(0,r.useEffect)(function(){n.setFieldsValue(A.query),w()},[]);var P=[{title:"序号",width:60,fixed:"left",render:function(e,t,n){return n+1}},{title:"机构名称",dataIndex:"filingUnitName",width:220,ellipsis:!0},{title:"机构类型",dataIndex:"filingUnitTypeName",width:100},{title:"证书编号",dataIndex:"filingNo",width:140,ellipsis:!0},{title:"安全评价业务范围",dataIndex:"businessScope",width:180,ellipsis:!0},{title:"确认状态",dataIndex:"filingStatusCode",width:100,render:function(e){var t=g.FILING_CODE_TO_CONFIRM[e],n=h.WL[t];return n?(0,b.jsx)(o.A,{color:n.color,children:n.label}):"--"}},{title:"操作",width:140,fixed:"right",render:function(e,t){return(0,b.jsxs)(f.A,{children:[(0,b.jsx)(a.Ay,{type:"link",size:"small",children:"查看"}),2===t.filingStatusCode&&(0,b.jsx)(a.Ay,{type:"link",size:"small",children:"核验"})]})}}];return(0,b.jsxs)(c.A,{title:"专家资料核验",children:[(0,b.jsx)(u.A,{style:{marginBottom:24},form:n,loading:x,formLine:[(0,b.jsx)(i.A.Item,{name:"filingUnitName",children:(0,b.jsx)(d.A.Input,{label:"机构名称",placeholder:"请输入",allowClear:!0})},"filingUnitName"),(0,b.jsx)(i.A.Item,{name:"filingUnitTypeName",children:(0,b.jsx)(d.A.Select,{label:"机构类型",placeholder:"请选择",allowClear:!0,style:{width:"100%"},options:g.REVIEW_UNIT_TYPE_OPTIONS})},"filingUnitTypeName"),(0,b.jsx)(i.A.Item,{name:"businessScope",children:(0,b.jsx)(d.A.Select,{label:"安全评价业务范围",placeholder:"请选择",allowClear:!0,showSearch:!0,optionFilterProp:"label",style:{width:"100%"},options:g.REVIEW_BUSINESS_SCOPE_OPTIONS})},"businessScope"),(0,b.jsx)(i.A.Item,{name:"confirmStatus",children:(0,b.jsxs)(d.A.Select,{label:"确认状态",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:[(0,b.jsx)(l.A.Option,{value:"pending",children:"待确认"}),(0,b.jsx)(l.A.Option,{value:"passed",children:"确认通过"}),(0,b.jsx)(l.A.Option,{value:"rejected",children:"打回"})]})},"confirmStatus")],onReset:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()},onFinish:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()}}),(0,b.jsx)(s.A,{rowKey:"id",columns:P,dataSource:v,scroll:{y:e.scrollY},loading:x,pagination:{total:j,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")},current:A.query.current||1,pageSize:A.query.size||10,onChange:function(e,t){A.query=S(S({},A.query),{},{current:e,size:t}),w()}}})]})}))},13061(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>m});var r=n(96540),i=n(73133),o=n(85196),a=n(21734),l=n(21023),s=n(88565),c=n(28311),u=n(88648),f=n(57006),d=n(2016),p=n(74848),y=f.tools.router;let m=(0,c.dm)([u.NS_QUAL_REVIEW],!0)(function(e){var t=e.qualReview,n=e.fetchQualFilingDetail,c=e.fetchQualChangeDetail,u=t.fetchQualFilingDetailLoading,f=t.qualFilingDetail,m="change"===y.query.mode,v=s.$t[f.filingStatusCode];return(0,r.useEffect)(function(){(m?c:n)({id:y.query.id})},[]),(0,p.jsx)(l.A,{title:(0,p.jsxs)(i.A,{children:[(0,p.jsx)("span",{children:"备案申请详情"}),v&&(0,p.jsx)(o.A,{color:v.color,children:v.label})]}),history:e.history,previous:!0,children:(0,p.jsx)(a.A,{spinning:u,children:(0,p.jsx)(d.default,{detail:f})})})})},2016(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>g});var r=n(96540),i=n(85196),o=n(36492),a=n(36223),l=n(18246),s=n(73133),c=n(87160),u=n(71021),f=n(21637),d=n(28311),p=n(88648),y=n(76243),m=n(13290),v=n(74848);function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),x=j[0],S=j[1],C=[{title:"序号",width:60,render:function(e,t,n){return n+1}},{title:"材料名称",dataIndex:"materialContent"}],A=void 0!==d&&d?[].concat(C,[{title:"上传附件",dataIndex:"attachmentDesc",width:120},{title:"格式",dataIndex:"materialFormat",width:80},{title:"状态",width:100,render:function(e,t){return 2===t.uploadStatusCode?(0,v.jsx)(i.A,{color:"success",children:t.uploadStatusName||"已上传"}):(0,v.jsx)(i.A,{color:"warning",children:t.uploadStatusName||"待上传"})}},{title:"符合性",width:100,render:function(e,t){return(0,v.jsxs)(o.A,{style:{width:"100%",fontSize:"0.75rem"},size:"small",placeholder:"请选择",value:g[t.id],onChange:function(e){return null==b?void 0:b(t.id,e)},children:[(0,v.jsx)(o.A.Option,{value:"pass",children:"符合"}),(0,v.jsx)(o.A.Option,{value:"fail",children:"不符合"})]})}}]):[].concat(C,[{title:"格式",dataIndex:"materialFormat",width:80},{title:"状态",width:100,render:function(e,t){return 2===t.uploadStatusCode?(0,v.jsx)(i.A,{color:"success",children:t.uploadStatusName||"已上传"}):(0,v.jsx)(i.A,{color:"warning",children:t.uploadStatusName||"待上传"})}},{title:"操作",width:80,render:function(e,t){return(0,v.jsx)(m.A,{url:t.attachmentUrl,children:"预览"})}}]),w=n.commitment||{},P=[{key:"info",label:"1.备案基本信息",children:(0,v.jsxs)(a.A,{column:2,bordered:!0,size:"small",style:{background:"#fff"},children:[(0,v.jsx)(a.A.Item,{label:"申请的业务范围",span:2,children:n.businessScope}),(0,v.jsx)(a.A.Item,{label:"备案属地",children:n.filingTerritoryName}),(0,v.jsx)(a.A.Item,{label:"备案单位",children:n.filingUnitName}),(0,v.jsx)(a.A.Item,{label:"备案单位类型",children:n.filingUnitTypeName}),(0,v.jsx)(a.A.Item,{label:"统一社会信用代码",children:n.creditCode}),(0,v.jsx)(a.A.Item,{label:"办公地址",span:2,children:n.officeAddress}),(0,v.jsx)(a.A.Item,{label:"注册地址",span:2,children:n.registerAddress}),(0,v.jsx)(a.A.Item,{label:"资质证书编号",children:n.qualCertNo}),(0,v.jsx)(a.A.Item,{label:"信息公开网址",children:n.infoDisclosureUrl}),(0,v.jsx)(a.A.Item,{label:"法人代表及电话",children:n.legalPersonPhone}),(0,v.jsx)(a.A.Item,{label:"联系人及电话",children:n.contactPhone}),(0,v.jsx)(a.A.Item,{label:"固定资产总值(万元)",children:n.fixedAssetAmount}),(0,v.jsxs)(a.A.Item,{label:"工作场所建筑面积",children:[n.workplaceArea,"㎡"]}),(0,v.jsxs)(a.A.Item,{label:"档案室面积",children:[n.archiveRoomArea,"㎡"]}),(0,v.jsxs)(a.A.Item,{label:"专职安全评价师数量",children:[n.fulltimeEvaluatorCount,"人"]}),(0,v.jsxs)(a.A.Item,{label:"注册安全工程师数量",children:[n.registeredEngineerCount,"人"]}),(0,v.jsx)(a.A.Item,{label:"单位基本情况介绍",span:2,children:n.unitIntro})]})},{key:"materials",label:"2.备案材料上传",children:(0,v.jsx)(l.A,{size:"small",bordered:!0,rowKey:"id",pagination:!1,dataSource:(null==n?void 0:n.materials)||[],columns:A})},{key:"promise",label:"3.法定代表人承诺书",children:(0,v.jsxs)("div",{style:{border:"1px solid #d9d9d9",borderRadius:6,padding:"1.25rem 1.5rem",background:"#fafafa",fontSize:"0.85rem",lineHeight:1.9},children:[(0,v.jsx)("p",{style:{textAlign:"center",fontWeight:600,fontSize:"0.95rem",marginBottom:"0.75rem"},children:"申请单位法定代表人承诺书"}),(0,v.jsxs)("p",{children:["本人",w.legalRepName,"是",n.filingUnitName,"法定代表人,现代表我单位承诺如下:"]}),(0,v.jsx)("p",{children:"一、我单位自愿申请安全评价机构资质。本人已经认真学习、了解并掌握《安全生产法》《行政许可法》《行政处罚法》及《安全评价检测检验机构管理办法》等法律法规的相关规定,知悉开展安全评价工作的法律责任、义务、权力和风险。"}),(0,v.jsx)("p",{children:"二、本人承诺本单位满足《安全评价检测检验机构管理办法》所规定的资质条件要求,本人及单位三年内无重大违法失信行为,申请资质所提交的有关材料真实、合法、有效,并对其真实性、合法性承担相应法律责任,接受并配合有关部门对本单位开展的专业能力审查。"}),(0,v.jsx)("p",{children:"三、如能获准资质,本单位将严格按照法律法规、规章标准的要求开展安全评价活动,遵守执业准则和职业道德,并对作出的安全评价报告结果承担法律责任,自觉接受应急管理部门、煤矿安全监督管理部门等行政执法部门的监督检查。"}),(0,v.jsxs)("p",{style:{marginTop:"0.75rem"},children:["法定代表人:",w.legalRepName,"(已签名)"]}),(0,v.jsxs)(s.A,{children:[w.legalRepSignatureUrl&&(0,v.jsx)(c.A,{src:w.legalRepSignatureUrl,style:{width:100,height:100}}),(0,v.jsx)("p",{children:"(单位盖章)"})]}),(0,v.jsx)("p",{style:{textAlign:"right"},children:w.signDate})]})},{key:"personnel",label:"4.备案人员管理",children:(0,v.jsx)(l.A,{size:"small",bordered:!0,rowKey:"id",pagination:!1,dataSource:(null==n?void 0:n.personnelList)||[],columns:[{title:"序号",width:60,render:function(e,t,n){return n+1}},{title:"人员姓名",dataIndex:"personName",width:100},{title:"类型",dataIndex:"personTypeName",width:100},{title:"职称",dataIndex:"titleName",width:100},{title:"操作",width:80,render:function(e,t){return(0,v.jsx)(u.Ay,{type:"link",size:"small",onClick:function(){return S(t.sourcePersonnelId)},children:"查看"})}}]})},{key:"equipment",label:"5.装备清单",children:(0,v.jsx)(l.A,{size:"small",bordered:!0,rowKey:"id",pagination:!1,dataSource:(null==n?void 0:n.equipmentList)||[],columns:[{title:"序号",width:60,render:function(e,t,n){return n+1}},{title:"装备名称",dataIndex:"deviceName",width:140},{title:"规格型号",dataIndex:"deviceModel",width:120},{title:"生产厂家",dataIndex:"manufacturer",width:140},{title:"计量检定情况",width:120,render:function(e,t){return t.calibrationReportUrl?(0,v.jsx)(i.A,{color:"success",children:"已上传"}):(0,v.jsx)(i.A,{color:"warning",children:"待上传"})}},{title:"操作",width:80,render:function(e,t){return(0,v.jsx)(m.A,{url:t.calibrationReportUrl,children:"查看"})}}]})}];return(0,v.jsxs)(v.Fragment,{children:[(0,v.jsx)(f.A,{items:P}),(0,v.jsx)(y.default,{open:!!x,currentId:x,onCancel:function(){return S("")}})]})})},90902(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(96540),i=n(26380),o=n(85196),a=n(71021),l=n(36492),s=n(18246),c=n(21023),u=n(44500),f=n(51038),d=n(83454),p=n(23899),y=n(57006),m=n(28311),v=n(88648),h=n(88565),g=n(74848);function b(e){return(b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function j(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function x(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return C(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?C(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nx});var r=n(96540),i=n(95725),o=n(26380),a=n(87959),l=n(73133),s=n(85196),c=n(36492),u=n(71021),f=n(28311),d=n(57006),p=n(88648),y=n(21023),m=n(74848);function v(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return h(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(h(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,h(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,h(u,"constructor",c),h(c,"constructor",s),s.displayName="GeneratorFunction",h(c,i,"GeneratorFunction"),h(u),h(u,i,"Generator"),h(u,r,function(){return this}),h(u,"toString",function(){return"[object Generator]"}),(v=function(){return{w:o,m:f}})()}function h(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(h=function(e,t,n,r){function o(t,n){h(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function g(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return b(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?b(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],p=d.tools.router,h=e.qualReview,x=e.fetchQualFilingDetail,S=e.fetchQualChangeDetail,C=e.reviewSubmit,A=e.changeReviewSubmit,w=h||{},P=w.fetchQualFilingDetailLoading,O=w.qualReviewSubmitLoading,I=w.qualFilingDetail,E="change"===p.query.mode;(0,r.useEffect)(function(){(E?S:x)({id:p.query.id})},[]);var N=(n=v().m(function t(){var n,r,i,o,l;return v().w(function(t){for(;;)switch(t.n){case 0:return t.n=1,f.validateFields();case 1:return n=t.v,r={1:"确认通过",3:"打回"},i=E?A:C,o={filingId:p.query.id,reviewResult:n.reviewResult,reviewResultRemark:r[n.reviewResult],reviewOpinion:n.reviewOpinion},t.n=2,i(o);case 2:(null==(l=t.v)?void 0:l.success)!==!1&&(a.Ay.success("确认提交成功"),e.history.goBack());case 3:return t.a(2)}},t)}),i=function(){var e=this,t=arguments;return new Promise(function(r,i){var o=n.apply(e,t);function a(e){g(o,r,i,a,l,"next",e)}function l(e){g(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return i.apply(this,arguments)});return(0,m.jsx)(y.A,{title:(0,m.jsxs)(l.A,{children:[(0,m.jsx)("span",{children:"资质备案确认"}),(0,m.jsx)(s.A,{color:"warning",children:"待确认"})]}),history:e.history,previous:!0,children:(0,m.jsxs)("div",{className:"qual-confirm-form",children:[(0,m.jsxs)("div",{className:"summary-card",children:[(0,m.jsx)("div",{className:"summary-card-title",children:"基本信息"}),(0,m.jsxs)("div",{className:"summary-card-grid",children:[(0,m.jsxs)("div",{children:[(0,m.jsx)("div",{className:"summary-label",children:"机构名称"}),(0,m.jsx)("div",{className:"summary-value",children:I.filingUnitName})]}),(0,m.jsxs)("div",{children:[(0,m.jsx)("div",{className:"summary-label",children:"证书编号"}),(0,m.jsx)("div",{className:"summary-value",children:I.filingNo||"--"})]}),(0,m.jsxs)("div",{children:[(0,m.jsx)("div",{className:"summary-label",children:"业务范围"}),(0,m.jsx)("div",{className:"summary-value",children:I.businessScope||"--"})]}),(0,m.jsxs)("div",{children:[(0,m.jsx)("div",{className:"summary-label",children:"提交时间"}),(0,m.jsx)("div",{className:"summary-value",children:I.submitTime||"--"})]})]})]}),(0,m.jsxs)("div",{className:"opinion-card",children:[(0,m.jsx)("div",{className:"summary-card-title",children:"确认意见"}),(0,m.jsxs)(o.A,{form:f,layout:"vertical",children:[(0,m.jsx)(o.A.Item,{label:"确认结果",name:"reviewResult",rules:[{required:!0,message:"请选择确认结果"}],children:(0,m.jsxs)(c.A,{placeholder:"请选择",children:[(0,m.jsx)(c.A.Option,{value:"1",children:"确认通过"}),(0,m.jsx)(c.A.Option,{value:"3",children:"打回"})]})}),(0,m.jsx)(o.A.Item,{label:"确认意见",name:"reviewOpinion",rules:[{required:!0,message:"请输入确认意见"}],children:(0,m.jsx)(j,{rows:4,placeholder:"请输入确认意见..."})})]})]}),(0,m.jsx)("div",{className:"footer-bar",children:(0,m.jsx)(u.Ay,{type:"primary",onClick:N,loading:P||O,children:"提交确认"})})]})})})},53426(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>w});var r=n(96540),i=n(26380),o=n(85196),a=n(71021),l=n(36492),s=n(18246),c=n(21023),u=n(44500),f=n(83454),d=n(51038),p=n(23899),y=n(57006),m=n(28311),v=n(88648),h=n(88565),g=n(56097),b=n(74848);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function S(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return C(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?C(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],p=e.qualReview,y=e.queryReviewList,m=p||{},v=m.qualReviewList,j=m.qualReviewTotal,x=m.qualReviewLoading,w=function(){y(S(S({},(0,g.toQualReviewPageQuery)(A.query)),{},{supervision:!0,applyTypeCode:3}))};(0,r.useEffect)(function(){n.setFieldsValue(A.query),w()},[]);var P=[{title:"序号",width:60,fixed:"left",render:function(e,t,n){return n+1}},{title:"机构名称",dataIndex:"filingUnitName",width:220,ellipsis:!0},{title:"机构类型",dataIndex:"filingUnitTypeName",width:100},{title:"证书编号",dataIndex:"filingNo",width:140,ellipsis:!0},{title:"安全评价业务范围",dataIndex:"businessScope",width:180,ellipsis:!0},{title:"确认状态",dataIndex:"filingStatusCode",width:100,render:function(e){var t=h.wC[e];return t?(0,b.jsx)(o.A,{color:t.color,children:t.label}):"--"}},{title:"操作",width:140,fixed:"right",render:function(t,n){return(0,b.jsxs)(f.A,{children:[(0,b.jsx)(a.Ay,{type:"link",size:"small",onClick:function(){return e.history.push("FilingDetail?id=".concat(n.id))},children:"查看"}),2==n.filingStatusCode&&(0,b.jsx)(a.Ay,{type:"link",size:"small",onClick:function(){return e.history.push("QualConfirmForm?id=".concat(n.id))},children:"确认"})]})}}];return(0,b.jsxs)(c.A,{title:"资质备案确认",children:[(0,b.jsx)(u.A,{style:{marginBottom:24},form:n,loading:x,formLine:[(0,b.jsx)(i.A.Item,{name:"filingUnitName",children:(0,b.jsx)(d.A.Input,{label:"机构名称",placeholder:"请输入",allowClear:!0})},"filingUnitName"),(0,b.jsx)(i.A.Item,{name:"filingUnitTypeName",children:(0,b.jsx)(d.A.Select,{label:"机构类型",placeholder:"请选择",allowClear:!0,style:{width:"100%"},options:g.REVIEW_UNIT_TYPE_OPTIONS})},"filingUnitTypeName"),(0,b.jsx)(i.A.Item,{name:"businessScope",children:(0,b.jsx)(d.A.Select,{label:"安全评价业务范围",placeholder:"请选择",allowClear:!0,showSearch:!0,optionFilterProp:"label",style:{width:"100%"},options:g.REVIEW_BUSINESS_SCOPE_OPTIONS})},"businessScope"),(0,b.jsx)(i.A.Item,{name:"confirmStatus",children:(0,b.jsxs)(d.A.Select,{label:"确认状态",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:[(0,b.jsx)(l.A.Option,{value:"pending",children:"待确认"}),(0,b.jsx)(l.A.Option,{value:"passed",children:"确认通过"}),(0,b.jsx)(l.A.Option,{value:"rejected",children:"打回"})]})},"confirmStatus")],onReset:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()},onFinish:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()}}),(0,b.jsx)(s.A,{rowKey:"id",columns:P,dataSource:v,scroll:{y:e.scrollY},loading:x,pagination:{total:j,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")},current:A.query.current||1,pageSize:A.query.size||10,onChange:function(e,t){A.query=S(S({},A.query),{},{current:e,size:t}),w()}}})]})}))},99449(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>I});var r=n(96540),i=n(95725),o=n(26380),a=n(85196),l=n(73133),s=n(71021),c=n(36492),u=n(18246),f=n(18182),d=n(55165),p=n(21023),y=n(44500),m=n(51038),v=n(23899),h=n(57006),g=n(88565),b=n(74848);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function S(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return A(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?A(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function A(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nx});var r=n(96540),i=n(95725),o=n(26380),a=n(87959),l=n(18182),s=n(71021),c=n(36492),u=n(28311),f=n(88648),d=n(88565),p=n(74848);function y(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return m(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(m(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,m(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,m(u,"constructor",c),m(c,"constructor",s),s.displayName="GeneratorFunction",m(c,i,"GeneratorFunction"),m(u),m(u,i,"Generator"),m(u,r,function(){return this}),m(u,"toString",function(){return"[object Generator]"}),(y=function(){return{w:o,m:f}})()}function m(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(m=function(e,t,n,r){function o(t,n){m(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function v(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0];(0,r.useEffect)(function(){u&&(D.resetFields(),N({current:1,size:100}))},[u]);var R=(0,r.useMemo)(function(){return(k||[]).map(function(e){return{label:e.userName,value:e.id,expert:e}})},[k]),q=(n=y().m(function e(){var t,n,r,i,o,l,s;return y().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,D.validateFields();case 1:return r=e.v,i=R.find(function(e){return e.value===r.filingExpertId}),o=x?T:L,l={filingId:f,reviewResult:r.reviewResult,reviewResultRemark:null==(t=d.Uq.find(function(e){return e.value===r.reviewResult}))?void 0:t.label,filingExpertId:r.filingExpertId,filingExpertName:null==i||null==(n=i.expert)?void 0:n.userName,reviewOpinion:r.reviewOpinion},x&&(l.id=l.filingId,delete l.filingId),e.n=2,o(l);case 2:(null==(s=e.v)?void 0:s.success)!==!1&&(a.Ay.success("审核提交成功"),P(),null==O||O());case 3:return e.a(2)}},e)}),i=function(){var e=this,t=arguments;return new Promise(function(r,i){var o=n.apply(e,t);function a(e){v(o,r,i,a,l,"next",e)}function l(e){v(o,r,i,a,l,"throw",e)}a(void 0)})},function(){return i.apply(this,arguments)});return(0,p.jsxs)(l.A,{title:"审核操作",open:u,onCancel:P,width:580,footer:(0,p.jsxs)("div",{style:{display:"flex",justifyContent:"flex-end",gap:8},children:[(0,p.jsx)(s.Ay,{onClick:P,children:"取消"}),(0,p.jsx)(s.Ay,{type:"primary",loading:F,onClick:q,children:"提交"})]}),children:[(0,p.jsxs)("div",{style:{background:"#f8fafc",border:"1px solid #d9d9d9",borderRadius:6,padding:"0.75rem",marginBottom:"1rem"},children:[(0,p.jsx)("div",{style:{fontSize:"0.88rem",fontWeight:600,marginBottom:"0.5rem"},children:"评价分析"}),(0,p.jsxs)("div",{style:{display:"grid",gridTemplateColumns:"1fr 1fr 1fr",gap:"0.4rem"},children:[(0,p.jsxs)("div",{style:b,children:[(0,p.jsx)("div",{style:j,children:"已核验材料"}),(0,p.jsx)("div",{style:{fontSize:"1.1rem",fontWeight:700,color:"#1677ff"},children:C+w})]}),(0,p.jsxs)("div",{style:b,children:[(0,p.jsx)("div",{style:j,children:"符合"}),(0,p.jsx)("div",{style:{fontSize:"1.1rem",fontWeight:700,color:"#059669"},children:C})]}),(0,p.jsxs)("div",{style:b,children:[(0,p.jsx)("div",{style:j,children:"不符合"}),(0,p.jsx)("div",{style:{fontSize:"1.1rem",fontWeight:700,color:"#dc2626"},children:w})]})]})]}),(0,p.jsxs)(o.A,{form:D,layout:"vertical",style:{marginTop:"0.5rem"},children:[(0,p.jsx)(o.A.Item,{label:"审核结果",name:"reviewResult",rules:[{required:!0,message:"请选择审核结果"}],children:(0,p.jsx)(c.A,{placeholder:"请选择",children:d.Uq.map(function(e){return(0,p.jsx)(c.A.Option,{value:e.value,children:e.label},e.value)})})}),(0,p.jsx)(o.A.Item,{label:"指派专家",name:"filingExpertId",rules:[{required:!0,message:"请选择专家"}],children:(0,p.jsx)(c.A,{placeholder:"请选择",showSearch:!0,optionFilterProp:"label",options:R})}),(0,p.jsx)(o.A.Item,{label:"综合审核意见",name:"reviewOpinion",rules:[{required:!0,message:"请输入综合审核意见"}],children:(0,p.jsx)(g,{rows:3,placeholder:"请输入综合审核意见..."})})]})]})})},71544(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>S});var r=n(96540),i=n(73133),o=n(85196),a=n(71021),l=n(21734),s=n(21023),c=n(88565),u=n(57006),f=n(28311),d=n(88648),p=n(2016),y=n(41845),m=n(74848);function v(e){return(v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function h(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function g(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return x(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?x(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nw});var r=n(96540),i=n(26380),o=n(85196),a=n(71021),l=n(36492),s=n(18246),c=n(83454),u=n(21023),f=n(44500),d=n(51038),p=n(23899),y=n(57006),m=n(28311),v=n(88648),h=n(88565),g=n(56097),b=n(74848);function j(e){return(j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function S(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return C(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?C(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],p=e.qualReview,y=e.queryReviewList,m=p||{},v=m.qualReviewList,j=m.qualReviewTotal,x=m.qualReviewLoading,w=function(){y(S(S({},(0,g.toQualReviewPageQuery)(A.query)),{},{supervision:!0,applyTypeCode:1}))};(0,r.useEffect)(function(){n.setFieldsValue(A.query),w()},[]);var P=[{title:"序号",dataIndex:"id",width:60,fixed:"left",render:function(e,t,n){return n+1}},{title:"机构名称",dataIndex:"filingUnitName",width:220,ellipsis:!0},{title:"机构类型",dataIndex:"filingUnitTypeName",width:100},{title:"证书编号",dataIndex:"filingNo",width:140,ellipsis:!0},{title:"安全评价业务范围",dataIndex:"businessScope",width:180,ellipsis:!0},{title:"专家核验",dataIndex:"expertStatus",width:100,render:function(e,t){if(!t.needExpertCheck)return"--";var n=h.zL[e];return n?(0,b.jsx)(o.A,{color:n.color,children:n.label}):"--"}},{title:"审核状态",dataIndex:"filingStatusCode",width:100,render:function(e,t){var n=t.filingStatusCode,r=h.$t[n];return r?(0,b.jsx)(o.A,{color:r.color,children:r.label}):"--"}},{title:"操作",width:140,fixed:"right",render:function(t,n){return(0,b.jsxs)(c.A,{children:[(0,b.jsx)(a.Ay,{type:"link",size:"small",onClick:function(){return e.history.push("FilingDetail?id=".concat(n.id))},children:"查看"}),2===n.filingStatusCode&&(0,b.jsx)(a.Ay,{type:"link",size:"small",onClick:function(){return e.history.push("QualReviewForm?id=".concat(n.id))},children:"审核"})]})}}];return(0,b.jsxs)(u.A,{title:"资质备案审核",children:[(0,b.jsx)(f.A,{style:{marginBottom:24},form:n,loading:x,formLine:[(0,b.jsx)(i.A.Item,{name:"filingUnitName",children:(0,b.jsx)(d.A.Input,{label:"机构名称",placeholder:"请输入",allowClear:!0})},"filingUnitName"),(0,b.jsx)(i.A.Item,{name:"filingUnitTypeName",children:(0,b.jsx)(d.A.Select,{label:"机构类型",placeholder:"请选择",allowClear:!0,style:{width:"100%"},options:g.REVIEW_UNIT_TYPE_OPTIONS})},"filingUnitTypeName"),(0,b.jsx)(i.A.Item,{name:"businessScope",children:(0,b.jsx)(d.A.Select,{label:"安全评价业务范围",placeholder:"请选择",allowClear:!0,showSearch:!0,optionFilterProp:"label",style:{width:"100%"},options:g.REVIEW_BUSINESS_SCOPE_OPTIONS})},"businessScope"),(0,b.jsx)(i.A.Item,{name:"needExpertCheck",children:(0,b.jsxs)(d.A.Select,{label:"是否专家核验",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:[(0,b.jsx)(l.A.Option,{value:"yes",children:"是"}),(0,b.jsx)(l.A.Option,{value:"no",children:"否"})]})},"needExpertCheck"),(0,b.jsx)(i.A.Item,{name:"filingStatusCode",children:(0,b.jsxs)(d.A.Select,{label:"审核状态",placeholder:"请选择",allowClear:!0,style:{width:"100%"},children:[(0,b.jsx)(l.A.Option,{value:"2",children:"审核中"}),(0,b.jsx)(l.A.Option,{value:"3",children:"打回"})]})},"filingStatusCode")],onReset:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()},onFinish:function(e){A.query=S(S(S({},A.query),e),{},{current:1,size:10}),w()}}),(0,b.jsx)(s.A,{rowKey:"id",columns:P,dataSource:v,scroll:{y:e.scrollY},loading:x,pagination:{total:j,showSizeChanger:!0,showQuickJumper:!0,showTotal:function(e){return"共 ".concat(e," 条")},current:A.query.current||1,pageSize:A.query.size||10,onChange:function(e,t){A.query=S(S({},A.query),{},{current:e,size:t}),w()}}})]})}))},76608(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>r}),n(96540);let r=function(e){return e.children}},82488(e,t,n){"use strict";n.r(t),n.d(t,{CALIBRATION_MAP:()=>i,MOCK_CERTIFICATES:()=>r});var r=[{id:1,name:"危险化学品经营许可证",certNo:"AQSC001",category:"安全生产证书",issuer:"重庆市应急管理局",startDate:"2025-03-29",endDate:"2028-03-28"},{id:2,name:"安全评价机构资质证书",certNo:"API-2026-001",category:"甲级资质",issuer:"重庆市应急管理局",startDate:"2026-01-15",endDate:"2029-01-14"}],i={done:{label:"已检定",color:"success"},pending:{label:"待检定",color:"warning"}}},56097(e,t,n){"use strict";n.r(t),n.d(t,{FILING_CODE_TO_CONFIRM:()=>c,REVIEW_BUSINESS_SCOPE_OPTIONS:()=>f,REVIEW_UNIT_TYPE_OPTIONS:()=>u,toQualReviewPageQuery:()=>d});var r=n(28155),i=n(49788);function o(e){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a=["confirmStatus","orgType","filingUnitTypeName","filingStatusCode","needExpertCheck"];function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}var s={pending:2,passed:1,rejected:3},c={2:"pending",1:"passed",3:"rejected"},u=i.VA,f=r.CI;function d(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.confirmStatus,n=e.orgType,r=e.filingUnitTypeName,i=e.filingStatusCode,c=e.needExpertCheck,u=function(e){for(var t=1;to});var r=n(71070),i=n(74848);let o=function(e){return(0,i.jsx)("div",{children:(0,i.jsx)(r.default,{props:e,permissionAdd:"xgfd-qyzzgl-add",permissionEdit:"xgfd-qyzzgl-edit",permissionView:"xgfd-qyzzgl-info",permissionDel:"xgfd-qyzzgl-del"})})}},16478(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(28311),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:161,personnelType:"zyfzr",permissionAdd:"xgfd-zyfzrgl-add",permissionEdit:"xgfd-zyfzrgl-edit",permissionView:"xgfd-zyfzrgl-info",permissionDel:"xgfd-zyfzrgl-del",dictionaryType:"zyfzrgwmc0000"})})}))},58979(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:161})})})},53645(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},1144(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(28311),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:162,personnelType:"aqscglry",permissionAdd:"xgfd-aqscglrygl-add",permissionEdit:"xgfd-aqscglrygl-edit",permissionView:"xgfd-aqscglrygl-info",permissionDel:"xgfd-aqscglrygl-del",dictionaryType:"aqscglrygwmc0000"})})}))},82281(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:162})})})},50427(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},77101(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(28311),i=n(60065),o=n(88648),a=n(57971),l=n(74848);let s=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)((0,a.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(i.A,{props:e,certificatePhotoType:160,personnelType:"tzsbczry",permissionAdd:"xgfd-tzzzsbczrygl-add",permissionEdit:"xgfd-tzzzsbczrygl-edit",permissionView:"xgfd-tzzzsbczrygl-info",permissionDel:"xgfd-tzzzsbczrygl-del",dictionaryType:"tzsbczryczxmzylb0000"})})}))},31620(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:160})})})},56196(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},73043(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(28311),o=n(60065),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:159,personnelType:"tezhongzuoye",permissionAdd:"xgfd-tzzyrugl-add",permissionEdit:"xgfd-tzzyrugl-edit",permissionView:"xgfd-tzzyrugl-info",permissionDel:"xgfd-tzzyrugl-del",dictionaryType:"tzzyryhylb0000"})})}))},37174(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:159})})})},4078(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},45954(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},95492(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},99765(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},59376(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>T});var r=n(26380),i=n(18246),o=n(85196),a=n(71021),l=n(18182),s=n(47152),c=n(16370),u=n(16629),f=n(57486),d=n(36223),p=n(96540),y=n(21023),m=n(44500),v=n(51038),h=n(23899),g=n(28155),b=n(99594),j=n(74848);function x(e){return(x="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function S(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return C(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(C(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,C(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,C(u,"constructor",c),C(c,"constructor",s),s.displayName="GeneratorFunction",C(c,i,"GeneratorFunction"),C(u),C(u,i,"Generator"),C(u,r,function(){return this}),C(u,"toString",function(){return"[object Generator]"}),(S=function(){return{w:o,m:f}})()}function C(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(C=function(e,t,n,r){function o(t,n){C(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function A(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function w(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return E(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?E(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function E(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==o[0]?o[0]:1,n=o.length>1&&void 0!==o[1]?o[1]:10,M(!0),e.p=1,r=h.getFieldsValue(),e.n=2,(0,b.kD)(w(w({},r),{},{pageIndex:t,pageSize:n}));case 2:_((null==(i=e.v)?void 0:i.data)||[]),V((null==i?void 0:i.totalCount)||0),e.n=4;break;case 3:e.p=3,e.v,_([]),V(0);case 4:return e.p=4,M(!1),e.f(4);case 5:return e.a(2)}},e,null,[[1,3,4,5]])})),function(){return t.apply(this,arguments)});(0,p.useEffect)(function(){J()},[]);var Z=(n=O(S().m(function e(t){var n;return S().w(function(e){for(;;)switch(e.n){case 0:return A(!0),D(!0),e.n=1,(0,b.eT)(t);case 1:T((null==(n=e.v)?void 0:n.data)||null),D(!1);case 2:return e.a(2)}},e)})),function(e){return n.apply(this,arguments)});return(0,j.jsxs)(y.A,{title:(0,j.jsxs)("div",{children:[(0,j.jsx)("span",{children:"企业画像管理"}),(0,j.jsx)("div",{className:"pageLayout-extra",children:"监管端查看企业安全能力画像与综合评级(当前为 Mock 数据)。"})]}),children:[(0,j.jsx)(m.A,{form:h,loading:B,formLine:[(0,j.jsx)(r.A.Item,{name:"enterpriseName",children:(0,j.jsx)(v.A.Input,{label:"企业名称",allowClear:!0,placeholder:"关键字搜索"})},"enterpriseName"),(0,j.jsx)(r.A.Item,{name:"district",children:(0,j.jsx)(v.A.Select,{label:"属地",allowClear:!0,placeholder:"请选择",options:g.bf})},"district"),(0,j.jsx)(r.A.Item,{name:"accountSource",children:(0,j.jsx)(v.A.Select,{label:"开户来源",allowClear:!0,placeholder:"请选择",options:b.PJ})},"accountSource")],onFinish:function(){return J(1,10)},style:{marginBottom:"16px"}}),(0,j.jsx)(i.A,{dataSource:q,loading:B,pagination:{current:$,pageSize:W,total:U,showSizeChanger:!0,showTotal:function(e){return"共 ".concat(e," 条")}},onChange:function(e){Y(e.current),K(e.pageSize),J(e.current,e.pageSize)},scroll:{y:e.scrollY},columns:[{title:"企业名称",dataIndex:"enterpriseName",ellipsis:!0},{title:"项目按时完成",dataIndex:"projectOnTime",width:120},{title:"报告质量",dataIndex:"reportQuality",width:100},{title:"投诉记录",dataIndex:"complaintCount",width:90},{title:"行政处罚",dataIndex:"penaltyCount",width:90},{title:"信息等级",width:100,render:function(e,t){return(0,j.jsx)(o.A,{color:N[t.infoLevelCode]||"default",children:t.infoLevel})}},{title:"操作",width:100,render:function(e,t){return(0,j.jsx)(a.Ay,{type:"link",onClick:function(){return Z(t.id)},children:"查看画像"})}}]}),(0,j.jsx)(l.A,{open:C,destroyOnHidden:!0,title:"企业安全能力画像",width:800,loading:F,cancelText:"关闭",okButtonProps:{style:{display:"none"}},onCancel:function(){A(!1),T(null)},children:E&&(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)("div",{style:{display:"flex",gap:24,marginBottom:24,alignItems:"center"},children:[(0,j.jsx)("div",{style:{width:80,height:80,borderRadius:"50%",border:"4px solid ".concat(L[E.scoreGrade]||"#1677ff"),display:"flex",alignItems:"center",justifyContent:"center",fontSize:20,fontWeight:700,color:L[E.scoreGrade]||"#1677ff",flexShrink:0},children:E.scoreGrade}),(0,j.jsxs)("div",{children:[(0,j.jsx)("h3",{style:{margin:"0 0 4px"},children:E.enterpriseName}),(0,j.jsxs)("p",{style:{margin:0,color:"rgba(0,0,0,0.45)",fontSize:13},children:["统一社会信用代码:",E.creditCode," ","|",E.industry," ","|",E.district]})]})]}),(0,j.jsxs)(s.A,{gutter:16,children:[(0,j.jsx)(c.A,{span:6,children:(0,j.jsxs)(u.A,{size:"small",children:[(0,j.jsx)(f.A,{title:"项目按时完成率",value:E.projectOnTimeRate}),(0,j.jsxs)("div",{style:{marginTop:8,color:"#52c41a",fontSize:12},children:["↑"," ",E.projectOnTime]})]})}),(0,j.jsx)(c.A,{span:6,children:(0,j.jsxs)(u.A,{size:"small",children:[(0,j.jsx)(f.A,{title:"报告质量",value:E.reportQuality}),(0,j.jsx)("div",{style:{marginTop:8,color:"rgba(0,0,0,0.45)",fontSize:12},children:E.reportQualityDesc})]})}),(0,j.jsx)(c.A,{span:6,children:(0,j.jsxs)(u.A,{size:"small",children:[(0,j.jsx)(f.A,{title:"投诉/处罚",value:E.complaintCount+E.penaltyCount}),(0,j.jsx)("div",{style:{marginTop:8,color:"rgba(0,0,0,0.45)",fontSize:12},children:E.penaltyDesc})]})}),(0,j.jsx)(c.A,{span:6,children:(0,j.jsxs)(u.A,{size:"small",children:[(0,j.jsx)(f.A,{title:"评价次数",value:E.evalCount}),(0,j.jsx)("div",{style:{marginTop:8,color:"rgba(0,0,0,0.45)",fontSize:12},children:E.evalCountDesc})]})})]}),(0,j.jsxs)(d.A,{bordered:!0,column:2,size:"small",style:{marginTop:24},children:[(0,j.jsx)(d.A.Item,{label:"信息等级",children:(0,j.jsx)(o.A,{color:N[E.infoLevelCode]||"default",children:E.infoLevel})}),(0,j.jsx)(d.A.Item,{label:"开户来源",children:E.accountSource}),(0,j.jsx)(d.A.Item,{label:"投诉记录",children:E.complaintCount}),(0,j.jsx)(d.A.Item,{label:"行政处罚",children:E.penaltyCount})]})]})})]})})},96593(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>E});var r=n(26380),i=n(18246),o=n(85196),a=n(42443),l=n(71021),s=n(18182),c=n(36223),u=n(23899),f=n(96540),d=n(51038),p=n(21023),y=n(44500),m=n(99594),v=n(74848);function h(e){return(h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function g(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return b(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(b(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,b(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,b(u,"constructor",c),b(c,"constructor",s),s.displayName="GeneratorFunction",b(c,i,"GeneratorFunction"),b(u),b(u,i,"Generator"),b(u,r,function(){return this}),b(u,"toString",function(){return"[object Generator]"}),(g=function(){return{w:o,m:f}})()}function b(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(b=function(e,t,n,r){function o(t,n){b(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function j(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function x(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return w(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?w(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function w(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&void 0!==o[0]?o[0]:1,n=o.length>1&&void 0!==o[1]?o[1]:10,M(!0),e.p=1,r=u.getFieldsValue(),e.n=2,(0,m.Nh)(x(x({},r),{},{pageIndex:t,pageSize:n}));case 2:_((null==(i=e.v)?void 0:i.data)||[]),V((null==i?void 0:i.totalCount)||0),e.n=4;break;case 3:e.p=3,e.v,_([]),V(0);case 4:return e.p=4,M(!1),e.f(4);case 5:return e.a(2)}},e,null,[[1,3,4,5]])})),function(){return t.apply(this,arguments)});(0,f.useEffect)(function(){J()},[]);var Z=(n=C(g().m(function e(t){var n;return g().w(function(e){for(;;)switch(e.n){case 0:return j(!0),T(!0),e.n=1,(0,m.Tx)(t);case 1:E((null==(n=e.v)?void 0:n.data)||null),T(!1);case 2:return e.a(2)}},e)})),function(e){return n.apply(this,arguments)});return(0,v.jsxs)(p.A,{title:(0,v.jsxs)("div",{children:[(0,v.jsx)("span",{children:"评价师信息管理"}),(0,v.jsx)("div",{className:"pageLayout-extra",children:"监管端查看辖区内评价师备案及资质状态(当前为 Mock 数据)。"})]}),children:[(0,v.jsx)(y.A,{form:u,loading:B,formLine:[(0,v.jsx)(r.A.Item,{name:"evaluatorName",children:(0,v.jsx)(d.A.Input,{label:"评价师名称",allowClear:!0,placeholder:"关键字搜索"})},"evaluatorName"),(0,v.jsx)(r.A.Item,{name:"orgName",children:(0,v.jsx)(d.A.Input,{label:"机构名称",allowClear:!0,placeholder:"关键字搜索"})},"orgName"),(0,v.jsx)(r.A.Item,{name:"employmentStatus",children:(0,v.jsx)(d.A.Select,{label:"是否在职",allowClear:!0,placeholder:"请选择",options:P})},"employmentStatus"),(0,v.jsx)(r.A.Item,{name:"registerEngineerFlag",children:(0,v.jsx)(d.A.Select,{label:"是否注册安全工程师",allowClear:!0,placeholder:"请选择",options:P})},"registerEngineerFlag"),(0,v.jsx)(r.A.Item,{name:"status",children:(0,v.jsx)(d.A.Select,{label:"状态",allowClear:!0,placeholder:"请选择",options:O})},"status")],onFinish:function(){return J(1,10)},style:{marginBottom:"16px"}}),(0,v.jsx)(i.A,{dataSource:q,loading:B,pagination:{current:$,pageSize:W,total:U,showSizeChanger:!0,showTotal:function(e){return"共 ".concat(e," 条")}},onChange:function(e){Y(e.current),K(e.pageSize),J(e.current,e.pageSize)},scroll:{y:e.scrollY},columns:[{title:"机构名称",dataIndex:"orgName",ellipsis:!0},{title:"评价师名称",dataIndex:"evaluatorName",width:120},{title:"是否注册安全工程师",dataIndex:"registerEngineerLabel",width:160},{title:"资格证书",dataIndex:"certificatesSummary",ellipsis:!0},{title:"状态",width:90,render:function(e,t){var n=(0,v.jsx)(o.A,{color:"normal"===t.status?"success":"error",children:t.statusLabel});return t.statusTip?(0,v.jsx)(a.A,{title:t.statusTip,children:n}):n}},{title:"操作",width:80,render:function(e,t){return(0,v.jsx)(l.Ay,{type:"link",onClick:function(){return Z(t.id)},children:"查看"})}}]}),(0,v.jsx)(s.A,{open:b,destroyOnHidden:!0,title:"评价师详细信息",width:900,loading:L,cancelText:"关闭",okButtonProps:{style:{display:"none"}},onCancel:function(){j(!1),E(null),D(null)},children:w&&(0,v.jsxs)(v.Fragment,{children:[(0,v.jsxs)(c.A,{title:"个人信息",bordered:!0,column:2,size:"small",style:{marginBottom:16},children:[(0,v.jsx)(c.A.Item,{label:"姓名",children:w.name}),(0,v.jsx)(c.A.Item,{label:"性别",children:w.gender}),(0,v.jsx)(c.A.Item,{label:"出生日期",children:w.birthDate}),(0,v.jsx)(c.A.Item,{label:"身份证号",children:w.idCard}),(0,v.jsx)(c.A.Item,{label:"学历",children:w.education}),(0,v.jsx)(c.A.Item,{label:"毕业院校",children:w.graduateSchool}),(0,v.jsx)(c.A.Item,{label:"专业",children:w.major})]}),(0,v.jsxs)(c.A,{title:"机构信息",bordered:!0,column:2,size:"small",style:{marginBottom:16},children:[(0,v.jsx)(c.A.Item,{label:"所在机构",children:w.orgName}),(0,v.jsx)(c.A.Item,{label:"部门",children:w.deptName}),(0,v.jsx)(c.A.Item,{label:"岗位",children:w.positionName}),(0,v.jsx)(c.A.Item,{label:"账号",children:w.account})]}),(0,v.jsx)("div",{style:{marginBottom:8,fontWeight:600},children:"资质证照"}),(0,v.jsx)(i.A,{size:"small",bordered:!0,rowKey:"id",pagination:!1,dataSource:w.certificates||[],columns:[{title:"证书名称",dataIndex:"certName"},{title:"证书编号",dataIndex:"certNo"},{title:"发证日期",dataIndex:"issueDate",width:110},{title:"有效期至",dataIndex:"expireDate",width:110},{title:"状态",width:90,render:function(e,t){var n=(0,v.jsx)(o.A,{color:I[t.status]||"default",children:t.statusLabel});return t.statusTip?(0,v.jsx)(a.A,{title:t.statusTip,children:n}):n}},{title:"操作",width:90,render:function(e,t){return(0,v.jsx)(l.Ay,{type:"link",size:"small",onClick:function(){return D(t)},children:"查看证书"})}}]})]})}),(0,v.jsx)(s.A,{open:!!F,destroyOnHidden:!0,title:"证书预览",width:520,cancelText:"关闭",okButtonProps:{style:{display:"none"}},onCancel:function(){return D(null)},children:F&&(0,v.jsxs)(c.A,{bordered:!0,column:1,size:"small",children:[(0,v.jsx)(c.A.Item,{label:"证书名称",children:F.certName}),(0,v.jsx)(c.A.Item,{label:"证书编号",children:F.certNo}),(0,v.jsx)(c.A.Item,{label:"发证日期",children:F.issueDate}),(0,v.jsx)(c.A.Item,{label:"有效期至",children:F.expireDate}),(0,v.jsx)(c.A.Item,{label:"状态",children:F.statusLabel})]})})]})})},49953(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>R});var r=n(26380),i=n(18182),o=n(87959),a=n(85196),l=n(71021),s=n(36492),c=n(18246),u=n(36223),f=n(47152),d=n(16370),p=n(95725),y=n(63718),m=n(83454),v=n(28311),h=n(96540),g=n(21023),b=n(44500),j=n(51038),x=n(23899),S=n(48032),C=n(28155),A=n(88648),w=n(77539),P=n(74848);function O(e){return(O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function I(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function E(e){for(var t=1;t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(L(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,L(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,L(u,"constructor",c),L(c,"constructor",s),s.displayName="GeneratorFunction",L(c,i,"GeneratorFunction"),L(u),L(u,i,"Generator"),L(u,r,function(){return this}),L(u,"toString",function(){return"[object Generator]"}),(N=function(){return{w:o,m:f}})()}function L(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(L=function(e,t,n,r){function o(t,n){L(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function T(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function k(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){T(o,r,i,a,l,"next",e)}function l(e){T(o,r,i,a,l,"throw",e)}a(void 0)})}}function F(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return D(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?D(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function D(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);nN});var r=n(21734),i=n(16629),o=n(18246),a=n(71021),l=n(85196),s=n(26380),c=n(87959),u=n(21637),f=n(96540),d=n(68808),p=n(21023),y=n(77016),m=n(41911),v=n(60345),h=n(76243),g=n(74848);function b(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return j(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(j(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,j(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,j(u,"constructor",c),j(c,"constructor",s),s.displayName="GeneratorFunction",j(c,i,"GeneratorFunction"),j(u),j(u,i,"Generator"),j(u,r,function(){return this}),j(u,"toString",function(){return"[object Generator]"}),(b=function(){return{w:o,m:f}})()}function j(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(j=function(e,t,n,r){function o(t,n){j(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function x(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function S(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return C(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?C(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n1?e.history.goBack():null!=(n=e.history)&&n.push?e.history.push(A):window.location.href="/certificate".concat(A)};if(!n)return(0,g.jsx)(p.A,{title:"备案信息详情",extra:(0,g.jsx)(a.Ay,{onClick:$,children:"返回"}),children:(0,g.jsx)("p",{style:{margin:0,marginBottom:24,color:"rgba(0, 0, 0, 0.45)"},children:"缺少机构 ID 参数"})});var Y=[{key:"info",label:"备案信息",children:(0,g.jsx)(r.A,{spinning:l,children:(0,g.jsx)(d.A,{form:i,span:12,disabled:!0,useAutoGenerateRequired:!1,options:w,labelCol:{span:10},showActionButtons:!1})})},{key:"materials",label:"申请清单材料",children:(0,g.jsx)(I,{materialGroups:D,loading:C,onPreview:function(e){var t=O(null==e?void 0:e.previewUrl);t?/\.(jpe?g|png|gif|webp|bmp)(\?|#|$)/i.test(String(t||"").toLowerCase())?G(e):window.open(t,"_blank"):c.Ay.warning("该材料暂无可预览的附件")}})},{key:"personnel",label:"人员信息",children:(0,g.jsx)(E,{personnel:_,loading:C,onView:function(e){return Q(e.id)}})}];return(0,g.jsxs)(p.A,{title:"备案信息详情",extra:(0,g.jsx)(a.Ay,{onClick:$,children:"← 返回"}),children:[(0,g.jsx)("p",{style:{margin:0,marginBottom:24,color:"rgba(0, 0, 0, 0.45)"},children:T||void 0}),(0,g.jsx)(u.A,{items:Y}),(0,g.jsx)(y.Ay,{open:!!V,title:"文件预览",fileName:null==V?void 0:V.name,url:O(null==V?void 0:V.previewUrl),onCancel:function(){return G(null)}}),M&&(0,g.jsx)(h.default,{open:!!M,currentId:M,requestDetails:m.uQ,requestCertList:m.Bp,requestCertDetails:m.ah,onCancel:function(){return Q("")}})]})}},72007(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>A});var r=n(26380),i=n(85196),o=n(71021),a=n(28311),l=n(96540),s=n(21023),c=n(6480),u=n(75228),f=n(44346),d=n(28155),p=n(88648),y=n(77539),m=n(55406),v=n(74848);function h(e){return(h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function g(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function b(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return j(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?j(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],a=(0,f.A)((0,y.bt)(e.registeredOrgList),{form:n}),p=a.tableProps,h=a.getData;(0,l.useEffect)(function(){h()},[]);var g=function(t){if(t){var n,r="".concat("/container/supervision/basicInfo/registeredOrg/detail","?id=").concat(encodeURIComponent(t));if(null!=(n=e.history)&&n.push)return void e.history.push(r);window.location.href="/certificate".concat(r)}};return(0,v.jsxs)(s.A,{title:(0,v.jsxs)("div",{children:[(0,v.jsx)("span",{children:"已备案机构管理"}),(0,v.jsx)("div",{className:"pageLayout-extra",children:"监管端查看已备案评价机构及备案详情。"})]}),children:[(0,v.jsx)(c.A,{form:n,values:C,options:[{name:"orgName",label:"评价机构名称",placeholder:"关键字搜索",colProps:S},{name:"registerAddress",label:"注册地址",placeholder:"关键字搜索",colProps:S},(0,m.d8)("filingType","备案类型",d.Dc,{colProps:S,componentProps:{allowClear:!1,showSearch:!1}}),(0,m.d8)("filingRecordStatus","备案状态",d.W$,{colProps:S,componentProps:{allowClear:!1,showSearch:!1}})],onFinish:h}),(0,v.jsx)(u.A,b(b({},p),{},{columns:[{title:"评价机构名称",dataIndex:"orgName",ellipsis:!0},{title:"注册地址",dataIndex:"registerAddress",ellipsis:!0},{title:"服务企业数",dataIndex:"serviceEnterpriseCount",width:100},{title:"评价项目数",dataIndex:"evalProjectCount",width:100},{title:"备案类型",dataIndex:"filingType",width:100},{title:"备案状态",width:90,render:function(e,t){return(0,v.jsx)(i.A,{color:x[t.filingRecordStatusCode]||"default",children:t.filingRecordStatusName||"-"})}},{title:"操作",width:120,render:function(e,t){return(0,v.jsx)(o.Ay,{type:"link",onClick:function(){return g(t.id)},children:"查看备案信息"})}}]}))]})})},83762(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>r});let r=function(e){return e.children||null}},49595(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>r});let r=function(e){return e.children}},22500(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>q});var r=n(96540),i=n(6582),o=n(69047),a=n(56304),l=n(85558),s=n(38767),c=n(90958),u=n(40666),f=n(65235),d=n(33705),p=n(66052),y=n(73488),m=n(51804),v=n(8258),h=n(74848);function g(e){return(g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function b(e){return function(e){if(Array.isArray(e))return A(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||C(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function j(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function x(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||C(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function C(e,t){if(e){if("string"==typeof e)return A(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?A(e,t):void 0}}function A(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(a.current),window.addEventListener("resize",e),o&&Object.entries(o).forEach(function(e){var t=S(e,2),n=t[0],r=t[1];return l.current.on(n,r)}),function(){o&&l.current&&Object.entries(o).forEach(function(e){var t=S(e,2),n=t[0],r=t[1];return l.current.off(n,r)}),window.removeEventListener("resize",e),t&&t.disconnect(),l.current&&l.current.dispose(),l.current=null}}},[]),(0,r.useEffect)(function(){l.current&&l.current.setOption(t,!0)},[t]),(0,h.jsx)("div",{className:n,ref:a})}function O(e){var t=e.data;return(0,h.jsxs)("header",{className:"cockpit-header",children:[(0,h.jsx)("div",{className:"cockpit-header__deco cockpit-header__deco--left"}),(0,h.jsx)("h1",{children:t.title}),(0,h.jsxs)("div",{className:"cockpit-header__time",children:[(0,h.jsx)(c.A,{}),t.currentTime]}),(0,h.jsx)("div",{className:"cockpit-header__deco cockpit-header__deco--right"})]})}function I(e){var t=e.title,n=e.children,r=e.className;return(0,h.jsxs)("section",{className:"cockpit-panel ".concat(void 0===r?"":r),children:[(0,h.jsxs)("div",{className:"cockpit-panel__title",children:[(0,h.jsx)("span",{className:"cockpit-panel__diamond"}),(0,h.jsx)("span",{children:t}),(0,h.jsx)("i",{})]}),(0,h.jsx)("div",{className:"cockpit-panel__body",children:n})]})}function E(e){var t=e.data,n=(0,r.useMemo)(function(){return{color:["#1aa7ff","#d7a92c"],grid:{left:28,right:10,top:20,bottom:42},legend:{right:8,top:0,itemWidth:10,itemHeight:6,textStyle:{color:"#b9d8ff",fontSize:10}},tooltip:{trigger:"axis",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},xAxis:{type:"category",data:t.industry.map(function(e){return e.name}),axisLabel:{color:"#b9cfff",fontSize:10,interval:0,rotate:0,width:38,overflow:"break"},axisLine:{lineStyle:{color:"#17416e"}},axisTick:{show:!1}},yAxis:{type:"value",max:220,splitNumber:4,axisLabel:{color:"#b9cfff",fontSize:10},splitLine:{lineStyle:{color:"rgba(78, 143, 219, .2)",type:"dashed"}}},series:[{name:"类型数",type:"bar",stack:"total",barWidth:14,data:t.industry.map(function(e){return e.rectification})},{name:"机构数",type:"bar",stack:"total",barWidth:14,data:t.industry.map(function(e){return e.institution})}]}},[t.industry]);return(0,h.jsxs)(I,{title:"资质全生命周期管理",className:"lifecycle-panel",children:[(0,h.jsx)("div",{className:"life-grid",children:t.lifecycleStats.map(function(e,t){return(0,h.jsxs)("div",{className:"life-stat",children:[(0,h.jsx)("span",{className:"life-stat__icon",children:(0,h.jsx)(y.A,{})}),(0,h.jsxs)("div",{children:[(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("strong",{children:e.value})]})]},e.label)})}),(0,h.jsx)("div",{className:"progress-list",children:t.progress.map(function(e){return(0,h.jsxs)("div",{className:"progress-row",children:[(0,h.jsx)("span",{children:e.label}),(0,h.jsx)("div",{className:"progress-track",children:(0,h.jsx)("i",{style:{width:"".concat(e.value,"%"),background:e.color}})}),(0,h.jsxs)("b",{children:[e.value,"%"]})]},e.label)})}),(0,h.jsx)(P,{className:"industry-chart",option:n})]})}function N(e){var t=e.data,n=(0,r.useMemo)(function(){return{color:["#5f8cff","#e96fff","#5fd8ae","#b6a0ff"],tooltip:{trigger:"item",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},legend:{orient:"vertical",right:2,top:"center",itemWidth:10,itemHeight:6,textStyle:{color:"#c6dcff",fontSize:10}},series:[{type:"pie",radius:["46%","70%"],center:["30%","55%"],avoidLabelOverlap:!0,label:{show:!1},data:t.riskPie}]}},[t.riskPie]);return(0,h.jsxs)(I,{title:"风险预警智能研判",className:"risk-panel",children:[(0,h.jsx)("h3",{children:"资质备案类失信统计"}),(0,h.jsx)("div",{className:"risk-grid",children:t.riskItems.map(function(e){return(0,h.jsxs)("div",{className:"risk-item",children:[(0,h.jsx)("span",{children:e.label}),(0,h.jsx)("b",{children:e.value})]},e.label)})}),(0,h.jsx)("h3",{children:"备案机构违法触发统计"}),(0,h.jsx)(P,{className:"risk-pie",option:n})]})}function L(e){var t=e.data;return(0,h.jsx)("div",{className:"kpi-row",children:t.kpis.map(function(e){return(0,h.jsxs)("div",{className:"kpi-card",children:[(0,h.jsx)("p",{children:e.title}),(0,h.jsx)("strong",{children:e.value}),(0,h.jsxs)("span",{children:["同比 ",(0,h.jsxs)("b",{children:["↗ ",e.change]})]})]},e.title)})})}function T(e){var t=e.data,n=S((0,r.useState)("重庆市"),2),i=n[0],o=n[1],a=(0,r.useMemo)(function(){return new Map(t.mapAreaStats.map(function(e){return[e.name,e]}))},[t.mapAreaStats]),l=(0,r.useMemo)(function(){return(v.features||[]).map(function(e,t){var n=e.properties&&e.properties.name;return x(x({},a.get(n)||{name:n,value:18+7*t,projectCount:18+7*t,hiddenDanger:0,institutionCount:0,rectificationRate:"100%"}),{},{name:n})})},[a]),s=a.get(i)||l[0]||t.mapAreaStats[0],c=l.map(function(e){return Number(e.value)||0}),u=Math.max.apply(Math,b(c).concat([100])),f=(0,r.useMemo)(function(){return{tooltip:{trigger:"item",backgroundColor:"rgba(2, 31, 82, .96)",borderColor:"#1aa7ff",borderWidth:1,padding:[8,10],textStyle:{color:"#eaf9ff",fontSize:12},formatter:function(e){var t=e.data||a.get(e.name);return t?["".concat(e.name,""),"评价项目数:".concat(t.projectCount||t.value||0),"备案机构数:".concat(t.institutionCount||0),"隐患数量:".concat(t.hiddenDanger||0),"整改率:".concat(t.rectificationRate||"-")].join("
"):e.name}},visualMap:{min:0,max:u,show:!1,inRange:{color:["#b9ef7c","#ffe178","#ffb16f","#ff8d86","#de8ff0"]}},geo:{map:"chongqing",roam:!0,zoom:1.1,top:10,bottom:0,left:0,right:0,selectedMode:"single",itemStyle:{borderColor:"#31d8ff",borderWidth:1.2,shadowBlur:16,shadowColor:"rgba(0, 179, 255, .52)"},emphasis:{label:{show:!0,color:"#062142",fontWeight:700},itemStyle:{areaColor:"#49f0ce",borderColor:"#f8ffff",borderWidth:1.8}},select:{label:{show:!0,color:"#061a35",fontWeight:700},itemStyle:{areaColor:"#31d6ff",borderColor:"#ffffff",borderWidth:2.2}},label:{show:!0,color:"#244269",fontSize:10}},series:[{name:"区域项目统计",type:"map",map:"chongqing",geoIndex:0,selectedMode:"single",data:l.map(function(e){return x(x({},e),{},{selected:e.name===i})})},{name:"重点乡镇",type:"effectScatter",coordinateSystem:"geo",rippleEffect:{brushType:"stroke",scale:3.2},symbolSize:function(e){return Math.max(8,Math.min(18,e[2]/4))},itemStyle:{color:"#12f4ff",shadowBlur:10,shadowColor:"#12f4ff"},label:{show:!1},data:t.mapScatterPoints.map(function(e){return{name:e.name,value:[].concat(b(e.coord),[e.value])}})}]}},[t.mapScatterPoints,l,u,i,a]),d=(0,r.useMemo)(function(){return{click:function(e){e&&e.name&&o(e.name)}}},[]);return(0,h.jsxs)("div",{className:"map-shell",children:[(0,h.jsx)(P,{className:"map-chart",option:f,events:d}),t.mapScatterPoints.map(function(e,t){return(0,h.jsxs)("div",{className:"map-card map-card--".concat(t+1),children:[(0,h.jsx)("strong",{children:e.name}),(0,h.jsxs)("span",{children:["正在开展评价项目数:",e.value]})]},e.name)}),(0,h.jsxs)("div",{className:"map-summary",children:[(0,h.jsx)("strong",{children:s&&s.name}),(0,h.jsxs)("span",{children:["项目数:",s&&(s.projectCount||s.value)]}),(0,h.jsxs)("span",{children:["隐患:",s&&s.hiddenDanger]}),(0,h.jsxs)("span",{children:["整改率:",s&&s.rectificationRate]})]}),(0,h.jsxs)("ul",{className:"map-legend",children:[(0,h.jsx)("li",{children:"0-10"}),(0,h.jsx)("li",{children:"11-30"}),(0,h.jsx)("li",{children:"31-50"}),(0,h.jsx)("li",{children:"51-100"})]})]})}function k(e){var t=e.data;return(0,h.jsx)(I,{title:"执业全过程管控",className:"todo-panel",children:(0,h.jsx)("div",{className:"todo-grid",children:t.todo.map(function(e,t){var n=w[t]||o.A;return(0,h.jsxs)("div",{className:"todo-item",children:[(0,h.jsx)("span",{children:(0,h.jsx)(n,{})}),(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("b",{children:e.value})]},e.label)})})})}function F(e){var t=e.data,n=(0,r.useMemo)(function(){return{color:["#0da5ff","#29e487"],grid:{left:34,right:12,top:28,bottom:32},legend:{right:0,top:0,itemWidth:14,itemHeight:4,textStyle:{color:"#c6dcff",fontSize:10}},tooltip:{trigger:"axis",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},xAxis:{type:"category",boundaryGap:!1,data:t.reviewLine.xAxis,axisLabel:{color:"#c6dcff",fontSize:10},axisLine:{lineStyle:{color:"#17416e"}},axisTick:{show:!1}},yAxis:{type:"value",min:0,max:100,splitNumber:5,axisLabel:{color:"#c6dcff",fontSize:10},splitLine:{lineStyle:{color:"rgba(78, 143, 219, .22)",type:"dashed"}}},series:[{name:"项目数",type:"line",smooth:!0,symbolSize:5,areaStyle:{opacity:.22},data:t.reviewLine.project},{name:"监督检查数",type:"line",smooth:!0,symbolSize:5,areaStyle:{opacity:.14},data:t.reviewLine.supervision}]}},[t.reviewLine]);return(0,h.jsxs)(I,{title:"评价类型趋势",className:"line-panel",children:[(0,h.jsxs)("div",{className:"period-tabs",children:[(0,h.jsx)("span",{children:"年"}),(0,h.jsx)("span",{children:"季"}),(0,h.jsx)("span",{children:"月"})]}),(0,h.jsx)(P,{className:"line-chart",option:n})]})}function D(e){var t=e.data,n=(0,r.useMemo)(function(){return{color:["#1677ff","#00c089","#ff7a1a","#f7cb16","#ab5fde"],tooltip:{trigger:"item",backgroundColor:"rgba(3, 25, 66, .92)",borderColor:"#1aa7ff",textStyle:{color:"#dff7ff"}},legend:{orient:"vertical",right:0,top:"center",itemWidth:10,itemHeight:8,textStyle:{color:"#c6dcff",fontSize:10}},series:[{type:"pie",radius:["32%","68%"],center:["28%","56%"],label:{show:!1},data:t.reviewPie}]}},[t.reviewPie]);return(0,h.jsxs)(I,{title:"复盘评估改进提效",className:"review-panel",children:[(0,h.jsx)("div",{className:"review-stats",children:t.reviewProgress.map(function(e){return(0,h.jsxs)("div",{className:"review-stat",children:[(0,h.jsx)("span",{children:(0,h.jsx)(d.A,{})}),(0,h.jsxs)("p",{children:[e.label,":",(0,h.jsx)("b",{className:e.danger?"danger":"",children:e.value})]})]},e.label)})}),(0,h.jsx)(P,{className:"review-pie",option:n})]})}function R(e){var t=e.data;return(0,h.jsx)(I,{title:"项目流程",className:"process-panel",children:(0,h.jsx)("div",{className:"process-grid",children:t.process.map(function(e,n){return(0,h.jsxs)("div",{className:"process-node",children:[(0,h.jsx)("strong",{children:e.value}),(0,h.jsx)("span",{children:e.label}),nr});var r={title:"重庆市安全评价在线监管一件事",currentTime:"2025年05月23日 12:30:30",lifecycleStats:[{label:"本年新增备案机构数",value:450},{label:"当前备案机构数",value:265},{label:"本年注销机构数",value:23},{label:"全部备案机构数",value:46},{label:"退出备案评价师数",value:85},{label:"当前备案评价师数",value:125}],progress:[{label:"评价机构备案完成率",value:95,color:"#21d8ff"},{label:"备案机构开展业务率",value:80,color:"#18f7d2"},{label:"备案机构新增率",value:62,color:"#ffd11a"}],industry:[{name:"煤矿开采业",rectification:30,institution:135},{name:"金属",rectification:72,institution:125},{name:"非金属矿及其他矿",rectification:35,institution:140},{name:"陆地石油和天然气",rectification:0,institution:84},{name:"陆上油气管道运输",rectification:100,institution:200},{name:"石油加工业",rectification:30,institution:135},{name:"化学原料",rectification:72,institution:175},{name:"金属冶炼",rectification:70,institution:116}],riskItems:[{label:"重大违法失信数",value:56},{label:"法人资质终止数",value:13},{label:"资质证书有效期届满未延续数",value:43},{label:"评价机构超资质范围执业数",value:45},{label:"经营地址、法人等相关信息变更数",value:24}],riskPie:[{name:"机构违法行为",value:28},{name:"资质维持基础行为",value:25},{name:"过程控制违规行为",value:22},{name:"其他情况",value:25}],kpis:[{title:"备案项目开展评价率",value:"56.3%",change:"3.5%"},{title:"企业评价项目合格率",value:"98.5%",change:"5.6%"},{title:"隐患整改率",value:"99.8%",change:"0.6%"}],mapAreaStats:[{name:"重庆市",value:128,projectCount:985,hiddenDanger:126,institutionCount:265,rectificationRate:"99.8%"},{name:"渝中区",value:88,projectCount:88,hiddenDanger:12,institutionCount:26,rectificationRate:"99.2%"},{name:"江北区",value:76,projectCount:76,hiddenDanger:9,institutionCount:22,rectificationRate:"98.8%"},{name:"南岸区",value:69,projectCount:69,hiddenDanger:8,institutionCount:18,rectificationRate:"98.5%"},{name:"九龙坡区",value:82,projectCount:82,hiddenDanger:11,institutionCount:24,rectificationRate:"98.9%"},{name:"沙坪坝区",value:73,projectCount:73,hiddenDanger:10,institutionCount:20,rectificationRate:"98.6%"},{name:"两江新区",value:94,projectCount:94,hiddenDanger:13,institutionCount:28,rectificationRate:"99.4%"},{name:"万州区",value:65,projectCount:65,hiddenDanger:8,institutionCount:16,rectificationRate:"97.9%"},{name:"涪陵区",value:58,projectCount:58,hiddenDanger:7,institutionCount:14,rectificationRate:"98.1%"},{name:"永川区",value:61,projectCount:61,hiddenDanger:7,institutionCount:15,rectificationRate:"98.3%"},{name:"合川区",value:54,projectCount:54,hiddenDanger:6,institutionCount:13,rectificationRate:"97.8%"},{name:"长寿区",value:52,projectCount:52,hiddenDanger:6,institutionCount:12,rectificationRate:"98.0%"},{name:"璧山区",value:48,projectCount:48,hiddenDanger:5,institutionCount:11,rectificationRate:"98.7%"},{name:"大足区",value:44,projectCount:44,hiddenDanger:5,institutionCount:10,rectificationRate:"97.6%"},{name:"綦江区",value:41,projectCount:41,hiddenDanger:4,institutionCount:9,rectificationRate:"97.2%"},{name:"奉节县",value:36,projectCount:36,hiddenDanger:4,institutionCount:8,rectificationRate:"96.9%"}],mapScatterPoints:[{name:"渝中区",value:88,coord:[106.568955,29.552642]},{name:"江北区",value:76,coord:[106.574271,29.606703]},{name:"九龙坡区",value:82,coord:[106.51107,29.50197]},{name:"万州区",value:65,coord:[108.380246,30.807807]},{name:"涪陵区",value:58,coord:[107.394905,29.703652]}],todo:[{label:"合同签订",value:59},{label:"待风险分析",value:58},{label:"待成立项目组",value:126},{label:"待制定工作计划",value:587},{label:"待初勘",value:54},{label:"待编制检查表",value:487},{label:"待从业告知",value:25},{label:"待现场勘查",value:14},{label:"过程管控",value:156}],reviewLine:{xAxis:["定期检测","现状评价","控制效果评价","预评价","设计专篇","委托检测"],project:[72,48,61,57,45,94],supervision:[54,60,51,38,62,55]},reviewProgress:[{label:"现场检查数",value:56},{label:"现场检查问题数",value:5,danger:!0},{label:"项目复查数",value:45},{label:"现场复查问题数",value:14,danger:!0},{label:"检查机构数",value:36},{label:"检查发现问题数",value:4,danger:!0}],reviewPie:[{name:"评价执行超期未完成数",value:38},{name:"评价现场检查确认风险隐患数",value:12},{name:"复查评估报告数",value:14},{name:"监管检查处罚数",value:21},{name:"项目主要负责人变更数",value:15}],process:[{label:"项目合同签订",value:52},{label:"风险分析",value:58},{label:"成立项目组",value:59},{label:"制定工作计划",value:98},{label:"初勘",value:51},{label:"归档",value:236},{label:"过程管控",value:136},{label:"现场勘查",value:145},{label:"从业告知",value:278},{label:"编制检查表",value:25}]}},3117(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>L});var r=n(96540),i=n(6582),o=n(56304),a=n(87281),l=n(69047),s=n(33705),c=n(85558),u=n(38767),f=n(40666),d=n(94231),p=n(90958),y=n(95363),m=n(67793),v=n(74315),h=n(74848),g=[{title:"备案整体情况",items:[{label:"已备案机构数",value:985,yoy:"23%",qoq:"5%",yoyUp:!0,qoqUp:!1},{label:"开发评价企业数",value:5846,yoy:"3%",qoq:"1%",yoyUp:!0,qoqUp:!1},{label:"开展业务机构数",value:89512,yoy:"15%",qoq:"2%",yoyUp:!0,qoqUp:!1},{label:"备案评价师数",value:10005,yoy:"10%",qoq:"5%",yoyUp:!1,qoqUp:!1}]},{title:"本年数据统计",items:[{label:"开展评价企业数",value:523,yoy:"23%",qoq:"5%",yoyUp:!0,qoqUp:!1},{label:"评价项目数",value:5600,yoy:"3%",qoq:"1%",yoyUp:!0,qoqUp:!1},{label:"评价服务机构数",value:1200,yoy:"15%",qoq:"2%",yoyUp:!0,qoqUp:!1},{label:"评价服务项目数",value:2500,yoy:"10%",qoq:"5%",yoyUp:!1,qoqUp:!1}]}],b=[{label:"待审核",value:956,color:"#f1f3ff"},{label:"待审核",value:548,color:"#d9f6fb"},{label:"待审核",value:1548,color:"#faf4dc"}],j=[{group:"本地备案机构数",label:"平台备案数",value:2654,icon:o.A,color:"#ffb739",bg:"#fffbe8"},{group:"本地备案机构数",label:"完全备案确认",value:4561,icon:a.A,color:"#3aaef6",bg:"#eefaff"},{group:"异地备案机构数",label:"平台备案数",value:126,icon:o.A,color:"#60ddc7",bg:"#ecfbf8"},{group:"异地备案机构数",label:"完全备案确认",value:254,icon:a.A,color:"#928cf1",bg:"#f3f3ff"}],x=[{label:"项目合同签订",value:5632,icon:l.A,color:"#409eff"},{label:"待风险分析",value:951,icon:s.A,color:"#8d7cf6"},{label:"待成立项目组",value:5632,icon:c.A,color:"#43d2c5"},{label:"待制定工作计划",value:5632,icon:u.A,color:"#ff9f42"},{label:"待初勘",value:5632,icon:f.A,color:"#8b7df3"},{label:"归档",value:651,icon:d.A,color:"#08c7ad"},{label:"过程管控",value:951,icon:p.A,color:"#3ca6f5"},{label:"待现场勘查",value:5632,icon:y.A,color:"#8b7df3"},{label:"待从业告知",value:5632,icon:m.A,color:"#ffb327"},{label:"待编制检查表",value:456,icon:v.A,color:"#8b7df3"}];function S(e){var t=e.option,n=e.className,o=(0,r.useRef)(null),a=(0,r.useRef)(null);return(0,r.useEffect)(function(){if(o.current){a.current=i.Ts(o.current,null,{renderer:"svg"});var e=function(){return a.current&&a.current.resize()},t="u">typeof ResizeObserver?new ResizeObserver(e):null;return t&&t.observe(o.current),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),t&&t.disconnect(),a.current&&a.current.dispose(),a.current=null}}},[]),(0,r.useEffect)(function(){a.current&&a.current.setOption(t,!0)},[t]),(0,h.jsx)("div",{className:n,ref:o})}function C(e){var t=e.title,n=e.children,r=e.className;return(0,h.jsxs)("section",{className:"supervision-home-card ".concat(void 0===r?"":r),children:[(0,h.jsx)("h3",{children:t}),n]})}function A(e){var t=e.label,n=e.value,r=e.up;return(0,h.jsxs)("span",{children:[t," ",(0,h.jsx)("i",{className:r?"up":"down",children:r?"▲":"▼"})," ",n]})}function w(){return(0,h.jsx)(C,{title:"备案整体情况",className:"overview-card",children:g.map(function(e){return(0,h.jsxs)("div",{className:"overview-group",children:["备案整体情况"!==e.title&&(0,h.jsx)("h3",{children:e.title}),(0,h.jsx)("div",{className:"overview-grid",children:e.items.map(function(e){return(0,h.jsxs)("div",{className:"overview-item",children:[(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("strong",{children:e.value}),(0,h.jsxs)("div",{children:[(0,h.jsx)(A,{label:"同比",value:e.yoy,up:e.yoyUp}),(0,h.jsx)(A,{label:"环比",value:e.qoq,up:e.qoqUp})]})]},e.label)})})]},e.title)})})}function P(){return(0,h.jsx)(C,{title:"待办事项",className:"todo-home-card",children:(0,h.jsx)("div",{className:"todo-home-grid",children:b.map(function(e,t){return(0,h.jsxs)("div",{className:"todo-home-item",style:{background:e.color},children:[(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("strong",{children:e.value})]},"".concat(e.label,"-").concat(t))})})})}function O(e){var t=e.title,n=e.cards;return(0,h.jsx)(C,{title:t,className:"filing-card",children:(0,h.jsx)("div",{className:"filing-grid",children:n.map(function(e){var t=e.icon;return(0,h.jsxs)("div",{className:"filing-item",style:{background:e.bg},children:[(0,h.jsx)("span",{style:{background:e.color},children:(0,h.jsx)(t,{})}),(0,h.jsxs)("div",{children:[(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("strong",{style:{color:e.color},children:e.value})]})]},e.label)})})})}function I(){return(0,h.jsxs)(C,{title:"当前评价状态状态统计",className:"flow-card",children:[(0,h.jsxs)("div",{className:"region-select",children:["请选择县区 ",(0,h.jsx)("span",{children:"⌄"})]}),(0,h.jsxs)("div",{className:"flow-summary",children:[(0,h.jsx)("span",{children:"评价项目合计:228"}),(0,h.jsx)("span",{children:"评价完成:185"}),(0,h.jsx)("span",{children:"正在进行中:21"}),(0,h.jsx)("span",{children:"项目中断:22"})]}),(0,h.jsx)("div",{className:"flow-grid",children:x.map(function(e,t){var n=e.icon;return(0,h.jsxs)("div",{className:"flow-node flow-node-".concat(t+1),children:[(0,h.jsx)("span",{style:{background:e.color},children:(0,h.jsx)(n,{})}),(0,h.jsxs)("div",{children:[(0,h.jsx)("p",{children:e.label}),(0,h.jsx)("strong",{children:e.value})]}),t<4&&(0,h.jsx)("i",{className:"arrow-right"}),4===t&&(0,h.jsx)("i",{className:"arrow-down"}),t>5&&(0,h.jsx)("i",{className:"arrow-left"})]},e.label)})})]})}function E(){var e=(0,r.useMemo)(function(){return{color:["#409eff","#ff9f43"],grid:{left:38,right:16,top:34,bottom:28},legend:{right:8,top:0,itemWidth:14,itemHeight:6,textStyle:{color:"#555",fontSize:12}},tooltip:{trigger:"axis",backgroundColor:"#fff",borderColor:"#edf0f5",textStyle:{color:"#333"}},xAxis:{type:"category",boundaryGap:!1,data:["定期检测","现状评价","控制效果评价","预评价","设计专篇","委托检测"],axisLabel:{color:"#555",fontSize:11},axisTick:{show:!1},axisLine:{lineStyle:{color:"#e6eaf0"}}},yAxis:{type:"value",max:200,splitNumber:4,axisLabel:{color:"#777"},splitLine:{lineStyle:{color:"#eef1f5",type:"dashed"}}},series:[{name:"企业数",type:"line",smooth:!0,symbolSize:6,data:[5,38,52,33,92,78,120,116,132],areaStyle:{color:"rgba(64,158,255,.08)"}},{name:"评价数",type:"line",smooth:!0,symbolSize:6,data:[4,47,31,42,72,75,64,140,121]}]}},[]);return(0,h.jsx)(C,{title:"评价类型分类",className:"chart-card line-home-card",children:(0,h.jsx)(S,{className:"home-line-chart",option:e})})}function N(){var e=(0,r.useMemo)(function(){return{color:["#5b9bff","#ffc75b"],grid:{left:38,right:18,top:38,bottom:36},legend:{right:8,top:0,itemWidth:12,itemHeight:12,textStyle:{color:"#555",fontSize:12}},tooltip:{trigger:"axis",backgroundColor:"#fff",borderColor:"#edf0f5",textStyle:{color:"#333"}},xAxis:{type:"category",data:["矿山开采业","危险化学品行业","烟花爆竹行业","金属冶炼与加工","建筑施工","交通运输业"],axisLabel:{color:"#555",fontSize:11,interval:0},axisTick:{show:!1},axisLine:{lineStyle:{color:"#e6eaf0"}}},yAxis:{type:"value",max:200,splitNumber:4,axisLabel:{color:"#777"},splitLine:{lineStyle:{color:"#eef1f5"}}},series:[{name:"企业数",type:"bar",barWidth:12,data:[158,76,112,108,158,143]},{name:"评价数",type:"bar",barWidth:12,data:[92,136,57,136,123,121]}]}},[]);return(0,h.jsx)(C,{title:"企业类型评价统计",className:"chart-card bar-home-card",children:(0,h.jsx)(S,{className:"home-bar-chart",option:e})})}function L(){return(0,h.jsx)("div",{className:"supervision-dashboard-page",children:(0,h.jsxs)("div",{className:"supervision-dashboard-grid",children:[(0,h.jsxs)("div",{className:"dashboard-left",children:[(0,h.jsx)(w,{}),(0,h.jsxs)("div",{className:"filing-row",children:[(0,h.jsx)(O,{title:"本地备案机构数",cards:j.slice(0,2)}),(0,h.jsx)(O,{title:"异地备案机构数",cards:j.slice(2)})]}),(0,h.jsx)(I,{})]}),(0,h.jsxs)("div",{className:"dashboard-right",children:[(0,h.jsx)(P,{}),(0,h.jsx)(E,{}),(0,h.jsx)(N,{})]})]})})}},88320(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>g});var r=n(57971),i=n(28311),o=n(26380),a=n(73133),l=n(71021),s=n(21023),c=n(6480),u=n(75228),f=n(44346),d=n(88648),p=n(74848);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],r=(0,f.A)(e.corpCertificateStatPage,{form:n,transform:function(e){return v(v({},e),{},{corpType:0})}}),i=r.tableProps,d=r.getData;return(0,p.jsxs)(s.A,{children:[(0,p.jsx)(c.A,{form:n,options:[{name:"corpName",label:"公司名称"}],onFinish:d}),(0,p.jsx)(u.A,v({columns:[{title:"公司名称",dataIndex:"corpName"},{title:"证书数量",dataIndex:"certCount"},{title:"操作",width:200,hidden:!e.permission("gfd-zgsztj-info"),render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./View?corpinfoId=".concat(n.corpId))},children:"查看"})})}}]},i))]})}))},28737(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(71070),i=n(74848);let o=function(e){return(0,i.jsx)("div",{children:(0,i.jsx)(r.default,{props:e,type:"View",permissionView:"gfd-zgsztj-insideInfo"})})}},75491(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},71070(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>M});var r=n(57971),i=n(28311),o=n(26380),a=n(18182),l=n(87959),s=n(71021),c=n(73133),u=n(36223),f=n(96540),d=n(68808),p=n(51315),y=n(21023),m=n(39724),v=n(6480),h=n(75228),g=n(49269),b=n(89490),j=n(20977),x=n(30896),S=n(18939),C=n(26676),A=n(85497),w=n(44346),P=n(92309),O=n(88648),I=n(77539),E=n(74848);function N(e){return(N="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function L(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return T(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(T(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,T(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,T(u,"constructor",c),T(c,"constructor",s),s.displayName="GeneratorFunction",T(c,i,"GeneratorFunction"),T(u),T(u,i,"Generator"),T(u,r,function(){return this}),T(u,"toString",function(){return"[object Generator]"}),(L=function(){return{w:o,m:f}})()}function T(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(T=function(e,t,n,r){function o(t,n){T(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function k(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function F(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){k(o,r,i,a,l,"next",e)}function l(e){k(o,r,i,a,l,"throw",e)}a(void 0)})}}function D(e){return function(e){if(Array.isArray(e))return V(e)}(e)||function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||U(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function q(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||U(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function U(e,t){if(e){if("string"==typeof e)return V(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?V(e,t):void 0}}function V(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0&&ee.current<3;)!function(){var e=X.current.shift(),t=e.id,n=e.resolve,r=e.reject;ee.current++,F({eqType:x.c["6"],eqForeignKey:t}).then(function(e){H(function(n){return q(q({},n),{},_({},t,e||[]))}),n(e)}).catch(function(e){r(e)}).finally(function(){ee.current--,J(function(e){var n=new Set(e);return n.delete(t),n}),et()})}()};(0,f.useEffect)(function(){if(V.dataSource){var e=new Set(V.dataSource.map(function(e){return e.corpCertificateId}).filter(Boolean));H(function(t){var n={};return Object.keys(t).forEach(function(r){e.has(r)&&(n[r]=t[r])}),n})}},[V.dataSource]);var en=(0,f.useRef)(new Set);return(0,f.useEffect)(function(){return V.dataSource&&V.dataSource.forEach(function(e){var t=e.corpCertificateId;t&&!en.current.has(t)&&(en.current.add(t),!t||Y[t]||K.has(t)||Z.current.has(t)?Promise.resolve():(Z.current.add(t),J(function(e){return new Set([].concat(D(e),[t]))}),new Promise(function(e,n){X.current.push({id:t,resolve:e,reject:n}),et()}).finally(function(){Z.current.delete(t)})))}),function(){en.current.clear()}},[V.dataSource]),(0,E.jsxs)(y.A,{children:[(0,E.jsx)(v.A,{form:R,options:[{name:"likeCertificateName",label:"证书名称"},{name:"certificateDate",label:"证书有效期",render:j.O.DATE_RANGE}],onFinish:M}),(0,E.jsx)(h.A,q({loding:k,toolBarRender:function(){return(0,E.jsx)(E.Fragment,{children:!e.type&&e.permission(O)&&(0,E.jsx)(s.Ay,{type:"primary",icon:(0,E.jsx)(p.A,{}),onClick:function(){r(!0)},children:"新增"})})},columns:[{title:"证书名称",dataIndex:"certificateName"},{title:"证书编号",dataIndex:"certificateCode"},{title:"证书有效期",dataIndex:"certificateNo",width:370,render:function(e,t){var n,r;return(0,E.jsx)("div",{children:"".concat(null!=(n=t.certificateDateStart)?n:""," - ").concat(null!=(r=t.certificateDateEnd)?r:"")})}},{title:"图片",render:function(e,t){var n=Y[t.corpCertificateId]||[];return n.length?(0,E.jsx)(g.A,{files:n}):(0,E.jsx)("span",{children:"无"})}},{title:"操作",width:200,render:function(t,n){return(0,E.jsxs)(c.A,{children:[e.permission(N)&&(0,E.jsx)(s.Ay,{type:"link",onClick:function(){d(!0),S(n.id)},children:"查看"}),!e.type&&e.permission(I)&&(0,E.jsx)(s.Ay,{type:"link",onClick:function(){r(!0),S(n.id)},children:"编辑"}),!e.type&&e.permission(L)&&(0,E.jsx)(s.Ay,{danger:!0,type:"link",onClick:function(){return Q(n.id)},children:"删除"})]})}}]},V)),n&&(0,E.jsx)(G,{open:n,loding:e.corpCertificate.corpCertificateLoading,getData:M,currentId:b,requestAdd:e.corpCertificateAdd,requestEdit:e.corpCertificateEdit,requestDetails:e.corpCertificateInfo,corpCertificateIsExistCertNo:e.corpCertificateIsExistCertNo,onCancel:function(){r(!1),S("")},onSuccess:function(e){H(function(t){var n=q({},t);return delete n[e],n})}}),u&&(0,E.jsx)(B,{open:u,loding:e.corpCertificate.corpCertificateLoading,getData:M,currentId:b,requestDetails:e.corpCertificateInfo,onCancel:function(){d(!1),S("")}})]})}))},40304(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>g});var r=n(57971),i=n(28311),o=n(26380),a=n(73133),l=n(71021),s=n(21023),c=n(6480),u=n(75228),f=n(44346),d=n(88648),p=n(74848);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],r=(0,f.A)(e.corpCertificateStatPage,{form:n,transform:function(e){return v(v({},e),{},{corpType:1})}}),i=r.tableProps,d=r.getData;return(0,p.jsxs)(s.A,{children:[(0,p.jsx)(c.A,{form:n,options:[{name:"corpName",label:"公司名称"}],onFinish:d}),(0,p.jsx)(u.A,v({columns:[{title:"公司名称",dataIndex:"corpName"},{title:"证书数量",dataIndex:"certCount"},{title:"操作",width:200,hidden:!e.permission("gfd-xgfztj-info"),render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./View?corpinfoId=".concat(n.corpId))},children:"查看"})})}}]},i))]})}))},61969(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(71070),i=n(74848);let o=function(e){return(0,i.jsx)("div",{children:(0,i.jsx)(r.default,{props:e,type:"View",permissionView:"gfd-xgfztj-insideInfo"})})}},57203(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},78079(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},49306(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>F});var r=n(96540),i=n(26380),o=n(87959),a=n(18182),l=n(71021),s=n(36492),c=n(18246),u=n(36223),f=n(95725),d=n(83454),p=n(21023),y=n(44500),m=n(51038),v=n(23899),h=n(57006),g=n(28311),b=n(88648),j=n(88565),x=n(30159),S=n(53292),C=n(74848);function A(e){return(A="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function w(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var s=Object.create((r&&r.prototype instanceof l?r:l).prototype);return P(s,"_invoke",function(n,r,i){var o,l,s,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,l=0,s=e,d.n=n,a}};function p(n,r){for(l=n,s=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(P(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,P(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,P(u,"constructor",c),P(c,"constructor",s),s.displayName="GeneratorFunction",P(c,i,"GeneratorFunction"),P(u),P(u,i,"Generator"),P(u,r,function(){return this}),P(u,"toString",function(){return"[object Generator]"}),(w=function(){return{w:o,m:f}})()}function P(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(P=function(e,t,n,r){function o(t,n){P(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function O(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function I(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){O(o,r,i,a,l,"next",e)}function l(e){O(o,r,i,a,l,"throw",e)}a(void 0)})}}function E(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function N(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return T(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?T(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function T(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ng});var r=n(57971),i=n(28311),o=n(26380),a=n(73133),l=n(71021),s=n(21023),c=n(6480),u=n(75228),f=n(44346),d=n(88648),p=n(74848);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],r=(0,f.A)(e.userCertificateStatPage,{form:n,transform:function(e){return v(v({},e),{},{corpType:0})}}),i=r.tableProps,d=r.getData;return(0,p.jsxs)(s.A,{children:[(0,p.jsx)(c.A,{form:n,options:[{name:"corpName",label:"公司名称"}],onFinish:d}),(0,p.jsx)(u.A,v({columns:[{title:"公司名称",dataIndex:"corpName"},{title:"特种作业人员证书数",dataIndex:"specialWorkCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./SpecialPersonnel/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-fzgsryzztj-tzzyInfo"),children:n.specialWorkCertCount})})}},{title:"特种设备操作人员证书数",dataIndex:"specialEquipmentCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./SpecialDevice/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-fzgsryzztj-tzsbInfo"),children:n.specialEquipmentCertCount})})}},{title:"主要负责人证书数",dataIndex:"principalCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./PersonInCharge/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-fzgsryzztj-zyfzrInfo"),children:n.principalCertCount})})}},{title:"安全生产管理人员证书数",dataIndex:"safetyManagerCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./SecurityAdmini/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-fzgsryzztj-aqgly-info"),children:n.safetyManagerCertCount})})}}]},i))]})}))},60286(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(28311),o=n(21023),a=n(70529),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"主要负责人证书数",children:(0,s.jsx)("div",{children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:161,displayType:"View",personnelType:"zyfzr",permissionView:"gfd-fzgsryzztj-zyfzrInfoNb",dictionaryType:"zyfzrgwmc0000"})})})}))},57923(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:161})})})},30765(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},3192(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(28311),o=n(21023),a=n(70529),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"安全生产管理人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:162,displayType:"View",personnelType:"aqscglry",permissionView:"gfd-fzgsryzztj-aqgly-infoNb",dictionaryType:"aqscglrygwmc0000"})})}))},11721(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:162})})})},13275(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},92109(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(28311),o=n(21023),a=n(60065),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"特种设备操作人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:160,displayType:"View",personnelType:"tzsbczry",permissionView:"gfd-fzgsryzztj-tzsbInfoNb",dictionaryType:"tzsbczryczxmzylb0000"})})}))},49316(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:160})})})},68100(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},30195(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(28311),o=n(21023),a=n(60065),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"特种作业人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:159,displayType:"View",personnelType:"tezhongzuoye",permissionView:"gfd-fzgsryzztj-tzzyInfoNb",dictionaryType:"tzzyryhylb0000"})})}))},5782(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:159})})})},92814(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},50146(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},83416(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(28311),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:161,personnelType:"zyfzr",permissionAdd:"gfd-qyzyfzrgl-add",permissionEdit:"gfd-qyzyfzrgl-edit",permissionView:"gfd-qyzyfzrgl-info",permissionDel:"gfd-qyzyfzrgl-del",dictionaryType:"zyfzrgwmc0000"})})}))},91945(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:161})})})},64443(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},65962(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(28311),o=n(70529),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:162,personnelType:"aqscglry",permissionAdd:"gfd-qyaqscglrygl-add",permissionEdit:"gfd-qyaqscglrygl-edit",permissionView:"gfd-qyaqscglrygl-info",permissionDel:"gfd-qyaqscglrygl-del",dictionaryType:"aqscglrygwmc0000"})})}))},15879(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:162})})})},78601(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},52299(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(28311),o=n(60065),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:160,personnelType:"tzsbczry",permissionAdd:"gfd-tzsbczrygl-add",permissionEdit:"gfd-tzsbczrygl-edit",permissionView:"gfd-tzsbczrygl-info",permissionDel:"gfd-tzsbczrygl-del",dictionaryType:"tzsbczryczxmzylb0000"})})}))},20478(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:160})})})},44646(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},59673(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>s});var r=n(57971),i=n(28311),o=n(60065),a=n(88648),l=n(74848);let s=(0,i.dm)([a.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,l.jsx)("div",{children:(0,l.jsx)(o.A,{props:e,certificatePhotoType:159,personnelType:"tezhongzuoye",permissionAdd:"gfd-tzzyrugl-add",permissionEdit:"gfd-tzzyrugl-edit",permissionView:"gfd-tzzyrugl-info",permissionDel:"gfd-tzzyrugl-del",dictionaryType:"tzzyryhylb0000"})})}))},92104(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:159})})})},98624(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},87474(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>g});var r=n(57971),i=n(28311),o=n(26380),a=n(73133),l=n(71021),s=n(21023),c=n(6480),u=n(75228),f=n(44346),d=n(88648),p=n(74848);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function m(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function v(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),1!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return h(e,1);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?h(e,1):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],r=(0,f.A)(e.userCertificateStatPage,{form:n,transform:function(e){return v(v({},e),{},{corpType:1})}}),i=r.tableProps,d=r.getData;return(0,p.jsxs)(s.A,{children:[(0,p.jsx)(c.A,{form:n,options:[{name:"corpName",label:"公司名称"}],onFinish:d}),(0,p.jsx)(u.A,v({columns:[{title:"公司名称",dataIndex:"corpName"},{title:"特种作业人员证书数",dataIndex:"specialWorkCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",disabled:!e.permission("gfd-xgfryzztj-tzzyInfo"),onClick:function(){return e.history.push("./SpecialPersonnel/List?corpinfoId=".concat(n.corpinfoId))},children:n.specialWorkCertCount})})}},{title:"特种设备操作人员证书数",dataIndex:"specialEquipmentCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./SpecialDevice/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-xgfryzztj-tzsbInfo"),children:n.specialEquipmentCertCount})})}},{title:"主要负责人证书数",dataIndex:"principalCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./PersonInCharge/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-xgfryzztj-zyfzrInfo"),children:n.principalCertCount})})}},{title:"安全生产管理人员证书数",dataIndex:"safetyManagerCertCount",render:function(t,n){return(0,p.jsx)(a.A,{children:(0,p.jsx)(l.Ay,{type:"link",onClick:function(){return e.history.push("./SecurityAdmini/List?corpinfoId=".concat(n.corpinfoId))},disabled:!e.permission("gfd-xgfryzztj-aqscInfo"),children:n.safetyManagerCertCount})})}}]},i))]})}))},74401(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(28311),o=n(21023),a=n(70529),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"主要负责人证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:161,displayType:"View",personnelType:"zyfzr",permissionView:"gfd-xgfryzztj-zyfzrInfoNb",dictionaryType:"zyfzrgwmc0000"})})}))},43424(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:161,personnelType:"zyfzr"})})})},328(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},76183(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(28311),o=n(21023),a=n(70529),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"安全生产管理人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:162,displayType:"View",personnelType:"aqscglry",permissionView:"gfd-xgfryzztj-aqscInfoNb",dictionaryType:"aqscglrygwmc0000"})})}))},58882(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(85029),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:162})})})},47170(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},82640(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(28311),o=n(21023),a=n(60065),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"特种设备操作人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:160,displayType:"View",personnelType:"tzsbczry",permissionView:"gfd-xgfryzztj-tzsbInfoNb",dictionaryType:"tzsbczryczxmzylb0000"})})}))},54033(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:160})})})},92627(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},60480(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>c});var r=n(57971),i=n(28311),o=n(21023),a=n(60065),l=n(88648),s=n(74848);let c=(0,i.dm)([l.NS_USER_CERTIFICATE],!0)((0,r.a)(function(e){return(0,s.jsx)(o.A,{title:"特种作业人员证书数",children:(0,s.jsx)(a.A,{props:e,certificatePhotoType:159,displayType:"View",personnelType:"tezhongzuoye",permissionView:"gfd-xgfryzztj-tzzyInfoNb",dictionaryType:"tzzyryhylb0000"})})}))},897(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>l});var r=n(28311),i=n(74565),o=n(88648),a=n(74848);let l=(0,r.dm)([o.NS_USER_CERTIFICATE],!0)(function(e){return(0,a.jsx)("div",{children:(0,a.jsx)(i.A,{props:e,certificatePhotoType:159,displayType:"View"})})})},35299(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},90673(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},97800(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>i});var r=n(74848);let i=function(e){return(0,r.jsx)("div",{children:e.children})}},38146(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>r});let r=function(e){return e.children}},98915(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>y});var r=n(96540),i=n(6198),o=n(16629),a=n(38940),l=n(73133),s=n(71021),c=n(74848);function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(e)||function(e){if(e){if("string"==typeof e)return u(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?u(e,2):void 0}}(e)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),n=t[0],i=t[1];return(0,c.jsxs)("div",{style:{padding:24,maxWidth:800,margin:"0 auto"},children:[(0,c.jsxs)(o.A,{children:[(0,c.jsx)(a.Ay,{status:"success",title:"Test2 页面 — 监管端测试",subTitle:"位于 Supervision 下的独立测试页面,无 API 依赖"}),(0,c.jsxs)("div",{style:{textAlign:"center",marginTop:24},children:[(0,c.jsx)(f,{level:4,children:"计数器"}),(0,c.jsx)(d,{children:(0,c.jsx)(p,{type:"success",strong:!0,style:{fontSize:24},children:n})}),(0,c.jsxs)(l.A,{children:[(0,c.jsx)(s.Ay,{type:"primary",onClick:function(){return i(function(e){return e+1})},children:"+1"}),(0,c.jsx)(s.Ay,{onClick:function(){return i(0)},children:"重置"}),(0,c.jsx)(s.Ay,{danger:!0,onClick:function(){return i(function(e){return e-1})},children:"-1"})]})]})]}),(0,c.jsx)(o.A,{title:"路由信息",style:{marginTop:24},children:(0,c.jsxs)(l.A,{direction:"vertical",children:[(0,c.jsx)(p,{children:"当前路由:/certificate/container/Supervision/test2"}),(0,c.jsxs)(p,{children:["React 版本:",r.version]}),(0,c.jsxs)(p,{children:["是否底座环境:",window.__IN_BASE__?"是":"否(独立运行)"]})]})})]})}},29259(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>y});var r=n(96540),i=n(6198),o=n(16629),a=n(38940),l=n(73133),s=n(71021),c=n(74848);function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(e)||function(e){if(e){if("string"==typeof e)return u(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?u(e,2):void 0}}(e)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),y=i[0],m=i[1];return(0,c.jsxs)("div",{style:{padding:24,maxWidth:800,margin:"0 auto"},children:[(0,c.jsxs)(o.A,{children:[(0,c.jsx)(a.Ay,{status:"success",title:"React 渲染正常!",subTitle:"这个页面没有使用任何 GBS 底座能力(无 DVA、无 Connect、无 Permission)"}),(0,c.jsxs)("div",{style:{textAlign:"center",marginTop:24},children:[(0,c.jsx)(f,{level:4,children:"计数器测试"}),(0,c.jsxs)(d,{children:["当前计数:",(0,c.jsx)(p,{type:"success",strong:!0,style:{fontSize:24},children:y})]}),(0,c.jsxs)(l.A,{children:[(0,c.jsx)(s.Ay,{type:"primary",onClick:function(){return m(function(e){return e+1})},children:"+1"}),(0,c.jsx)(s.Ay,{onClick:function(){return m(0)},children:"重置"}),(0,c.jsx)(s.Ay,{danger:!0,onClick:function(){return m(function(e){return e-1})},children:"-1"})]})]})]}),(0,c.jsx)(o.A,{title:"环境信息",style:{marginTop:24},children:(0,c.jsxs)(l.A,{direction:"vertical",children:[(0,c.jsxs)(p,{children:["React 版本:",r.version]}),(0,c.jsxs)(p,{children:["是否在底座中:",window.__IN_BASE__?"是":"否(独立运行)"]}),(0,c.jsxs)(p,{children:["是否在 qiankun 中:",window.__POWERED_BY_QIANKUN__?"是":"否(独立运行)"]}),(0,c.jsxs)(p,{children:["API_HOST:",(null==(t=window)||null==(t=t.process)||null==(t=t.env)||null==(t=t.app)?void 0:t.API_HOST)||"未获取到"]}),(0,c.jsxs)(p,{children:["应用标识:",(null==(n=window)||null==(n=n.process)||null==(n=n.env)||null==(n=n.app)?void 0:n.basename)||"未获取到"]})]})})]})}},58237(e,t,n){"use strict";n.r(t),n.d(t,{default:()=>S}),n(60344);var r=n(35710),i=n(4888),o=n(26122),a=n(92187),l=n(96540),s=n(61860),c=n(74848);function u(e){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function d(e,t){if(!(e instanceof t))throw TypeError("Cannot call a class as a function")}function p(e,t){for(var n=0;nS}),n(60344);var r=n(35710),i=n(4888),o=n(26122),a=n(92187),l=n(96540),s=n(61860);n(79331);var c=n(74848);function u(e){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function d(e,t){if(!(e instanceof t))throw TypeError("Cannot call a class as a function")}function p(e,t){for(var n=0;ni});var r=n(74848);function i(){return(0,r.jsxs)("h1",{children:["底座微应用模板,技术文档:",(0,r.jsx)("a",{rel:"noreferrer noopener",target:"_blank",href:"https://www.yuque.com/buhangjiecheshen-ymbtb/qc0093/gxdun1dphetcurko",children:"https://www.yuque.com/buhangjiecheshen-ymbtb/qc0093/gxdun1dphetcurko"})]})}},76332(e,t,n){"use strict";n.d(t,{Yq:()=>l,au:()=>c,vJ:()=>u,xU:()=>s});var r=n(74353),i=n.n(r);function o(e){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ntypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),6!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(e)||function(e){if(e){if("string"==typeof e)return a(e,6);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?a(e,6):void 0}}(e)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),n=t[0],r=t[1],l=t[2],s=t[3],c=t[4],u=t[5];return new Date(n,r-1,l,void 0===s?0:s,void 0===c?0:c,void 0===u?0:u)}if("object"===o(e)){var f,d,p,y,m,v=null!=(f=e.year)?f:e.y,h=null!=(d=null!=(p=e.monthValue)?p:e.month)?d:e.m,g=null!=(y=null!=(m=e.dayOfMonth)?m:e.day)?y:e.d;if(null!=v&&null!=h&&null!=g)return new Date(v,h-1,g)}return null}function c(e){if(null!=e&&""!==e){if("string"==typeof e)return e.length>10?e.slice(0,10):e;var t=i()(e);return t.isValid()?t.format("YYYY-MM-DD"):void 0}}function u(e){if(null!=e&&""!==e){var t=i()(e);return t.isValid()?t:void 0}}},55406(e,t,n){"use strict";n.d(t,{XU:()=>f,d8:()=>l,dr:()=>s,nJ:()=>c,wy:()=>u});var r=n(20977);function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function a(e){for(var t=1;t3&&void 0!==arguments[3]?arguments[3]:{};return a({name:e,label:t,render:r.O.SELECT,items:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return(e||[]).map(function(e){var t,n;return a(a({},e),{},{bianma:null!=(t=e.value)?t:e.bianma,name:null!=(n=e.label)?n:e.name})})}(n),itemsField:{valueKey:"bianma",labelKey:"name"},colProps:{xs:24,sm:12,md:8,lg:6}},i)}var s={active:{color:"#1677ff",fontWeight:600,padding:0},zero:{color:"rgba(0,0,0,0.45)",padding:0}},c={0:"未审核",1:"已审核",2:"已退回"};function u(e){var t;return Number(null!=(t=null==e?void 0:e.changeCount)?t:0)}var f={0:"default",1:"success",2:"error"}},48032(e,t,n){"use strict";n.d(t,{$P:()=>b,CK:()=>O,Cy:()=>I,JP:()=>A,Mc:()=>w,Qi:()=>T,UC:()=>j,cI:()=>E,dK:()=>S,fz:()=>L,g5:()=>x,jY:()=>P,pl:()=>C,t6:()=>g});var r=n(76332),i=n(20344),o=n(73398),a=n(85518);function l(e){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function c(e){for(var t=1;ttypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o,a,l=[],s=!0,c=!1;try{if(o=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=o.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,i=e}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(c)throw i}}return l}}(e,t)||function(e,t){if(e){if("string"==typeof e)return d(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?d(e,t):void 0}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n1&&void 0!==arguments[1]?arguments[1]:"附件.pdf";if(!e)return[];var n=String(e).trim();if(n.startsWith("[")&&n.endsWith("]"))try{var r=JSON.parse(n);if(Array.isArray(r))return r.filter(function(e){return null==e?void 0:e.url}).map(function(e){return{name:e.name||"".concat(t.replace(".pdf",""),"1"),fileName:e.fileName||e.name||"".concat(t.replace(".pdf",""),"1"),url:e.url,uid:e.uid||void 0,status:e.status||"done"}})}catch(e){}return n.split(",").map(function(e){return e.trim()}).filter(Boolean).map(function(e,n){return{name:"".concat(t.replace(".pdf","")).concat(n+1,".pdf"),fileName:"".concat(t.replace(".pdf","")).concat(n+1,".pdf"),url:e}})}function g(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},s={current:null!=(e=null!=(t=i.pageIndex)?t:i.current)?e:1,size:null!=(n=null!=(r=i.pageSize)?r:i.size)?n:10};return Object.entries(l).forEach(function(e){var t=f(e,2),n=t[0],r=t[1],a=i[n];null!=a&&""!==a&&(s[r]=(0,o.N9)(r)?(0,o.gR)(a):a)}),(0,a.mg)((0,o.CF)(s))}function b(e,t){if(!e)return{success:!1,data:[],totalCount:0};var n,r,i=Array.isArray(e.data)?e.data:[];return c(c({},e),{},{data:t?i.map(t):i,totalCount:null!=(n=null!=(r=e.totalCount)?r:e.total)?n:i.length})}function j(e,t){return e?c(c({},e),{},{data:e.data&&t?t(e.data):e.data}):{success:!1,data:null}}function x(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,o.gR)(n.id),orgName:n.unitName,creditCode:n.creditCode,safetyIndustryCategory:n.safetyIndustryCategoryName,regionCountyName:n.districtName,regionStreetName:n.townStreet,regionCommunityName:n.villageCommunity,longitude:n.longitude,latitude:n.latitude,registerAddress:n.registerAddress,businessAddress:n.businessAddress,ownershipType:n.ownershipTypeName,gbIndustryCode:n.economyIndustryCode,legalRepresentative:n.legalRepresentative,legalRepPhone:n.legalRepresentativePhone,principal:n.principalName,principalPhone:n.principalPhone,safetyDeptHead:n.safetyDeptManager,safetyDeptPhone:n.safetyDeptManagerPhone,safetyVpPhone:n.safetyDeputyPhone,productionDate:n.productionDate,businessStatus:n.businessStatusName,disclosureUrl:n.infoDisclosureUrl,workplaceArea:n.workplaceArea,archiveRoomArea:n.archiveRoomArea,fullTimeEvaluatorCount:n.fulltimeEvaluatorCount,registeredSafetyEngineerCount:n.registeredEngineerCount,authStatusCode:n.authStatusCode,enterpriseStatus:n.enterpriseStatusName,enterpriseScale:n.enterpriseScaleName,filingType:null!=(e=n.filingTypeName)?e:"确认备案",filingRecordStatus:null!=(t=n.filingRecordStatusName)?t:"未备案",attachments:h(n.attachmentUrls)}}function S(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return 0===Number(e.state)}function C(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,o.gR)(e.id),orgName:e.unitName,district:e.districtName,state:e.state,createTime:(0,r.Yq)((0,r.xU)(e.createTime))}}function A(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a={current:null!=(e=null!=(t=i.pageIndex)?t:i.current)?e:1,size:null!=(n=null!=(r=i.pageSize)?r:i.size)?n:10};i.orgName&&(a.unitName=i.orgName),i.district&&(a.districtName=i.district);var l=i.state;null!=l&&""!==l&&"全部"!==l&&(a.state=Number(l));var s=i.openTimeRange;return Array.isArray(s)&&2===s.length&&s[0]&&s[1]&&(a.createTimeStart=s[0].format?s[0].format("YYYY-MM-DD"):s[0],a.createTimeEnd=s[1].format?s[1].format("YYYY-MM-DD"):s[1]),(0,o.CF)(a)}function w(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,o.gR)(e.id),orgName:e.unitName,registerAddress:e.registerAddress,serviceEnterpriseCount:0,evalProjectCount:0,filingType:e.filingTypeName,filingRecordStatusCode:e.filingRecordStatusCode,filingRecordStatusName:e.filingRecordStatusName}}function P(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a={current:null!=(e=null!=(t=i.pageIndex)?t:i.current)?e:1,size:null!=(n=null!=(r=i.pageSize)?r:i.size)?n:10};i.orgName&&(a.unitName=i.orgName),i.registerAddress&&(a.registerAddress=i.registerAddress);var l=i.filingType;null!=l&&""!==l&&(a.filingTypeCode=String(l));var s=i.filingRecordStatus;return null!=s&&""!==s&&(a.filingRecordStatusCode=Number(s)),(0,o.CF)(a)}function O(){var e,t,n,r,a,l,s,u,f,d=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},p=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},h=function(){var e,t,n,r,a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},s=l.isDraft,u=void 0!==s&&s,f=a.enterpriseStatus,d=null!=(t=a.filingType)?t:"确认备案",p=null!=(n=a.filingRecordStatus)?n:"未备案";return c(c({},(e={},["id","tenantId"].forEach(function(t){void 0!==a[t]&&(e[t]=(0,o.N9)(t)?(0,o.gR)(a[t]):a[t])}),e)),{},{unitName:a.orgName,creditCode:a.creditCode,safetyIndustryCategoryName:a.safetyIndustryCategory,districtCode:a.regionCountyName,districtName:a.regionCountyName,townStreet:a.regionStreetName,villageCommunity:a.regionCommunityName,longitude:a.longitude,latitude:a.latitude,registerAddress:a.registerAddress,businessAddress:a.businessAddress,ownershipTypeName:a.ownershipType,economyIndustryCode:a.gbIndustryCode,legalRepresentative:a.legalRepresentative,legalRepresentativePhone:a.legalRepPhone,principalName:a.principal,principalPhone:a.principalPhone,safetyDeptManager:a.safetyDeptHead,safetyDeptManagerPhone:a.safetyDeptPhone,safetyDeputyPhone:a.safetyVpPhone,productionDate:a.productionDate,businessStatusName:a.businessStatus,infoDisclosureUrl:a.disclosureUrl,workplaceArea:a.workplaceArea,archiveRoomArea:a.archiveRoomArea,fulltimeEvaluatorCount:a.fullTimeEvaluatorCount,registeredEngineerCount:a.registeredSafetyEngineerCount,authStatusCode:+!u,authStatusName:u?"草稿":"已提交",enterpriseStatusCode:y[f],enterpriseStatusName:f,enterpriseScaleCode:a.enterpriseScale,enterpriseScaleName:a.enterpriseScale,filingTypeCode:null!=(r=m[d])?r:d,filingTypeName:d,filingRecordStatusCode:v[p],filingRecordStatusName:p,attachmentUrls:(0,i.Wf)(a.attachments)})}(c(c(c({},x(p)),d),{},{id:(0,o.gR)(null!=(e=d.id)?e:p.id)}),{isDraft:!1});return c(c({},h),{},{id:(0,o.gR)(null!=(t=d.id)?t:p.id),authStatusCode:null!=(n=p.authStatusCode)?n:h.authStatusCode,authStatusName:null!=(r=p.authStatusName)?r:h.authStatusName,tenantId:null!=(a=p.tenantId)?a:h.tenantId,filingTypeCode:null!=(l=p.filingTypeCode)?l:h.filingTypeCode,filingTypeName:null!=(s=p.filingTypeName)?s:h.filingTypeName,filingRecordStatusCode:null!=(u=p.filingRecordStatusCode)?u:h.filingRecordStatusCode,filingRecordStatusName:null!=(f=p.filingRecordStatusName)?f:h.filingRecordStatusName})}function I(){var e,t,n,r,i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{id:(0,o.gR)(i.id),staffName:i.userName,account:i.account,gender:i.genderCode,birthDate:i.birthDate,deptId:(0,o.gR)(i.deptId),positionId:(0,o.gR)(i.postId),idCardNo:i.idCardNo,homeAddress:i.currentAddress,officeAddress:i.officeAddress,educationType:i.educationTypeName,educationLevel:i.educationLevelName,education:null!=(e=i.educationName)?e:i.educationCode,graduateSchool:i.graduateSchool,major:i.major,employmentStatus:i.employmentStatusCode,personType:null!=(t=i.personTypeName)?t:"基础人员",qualScope:i.qualScope,professionalLevel:i.professionalLevelName,evaluatorCertNo:i.evaluatorCertNo,titleName:i.titleName,registerEngineerFlag:null!=(n=i.registerEngineerFlag)?n:2,publications:i.publications,abilityDeclaration:i.abilityDeclaration,workExperience:i.workExperience,proofMaterials:h(i.proofMaterialUrl,"专业能力证明.pdf"),deptName:i.deptName,positionName:null!=(r=i.postName)?r:i.positionName,certNames:i.certNames}}function E(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=n.certAttachmentUrl?h(n.certAttachmentUrl,n.certName||"证书附件.jpg"):n.certImgFiles||[];return{id:(0,o.gR)(n.id),staffId:(0,o.gR)(n.personnelId),certName:n.certName,certCategory:null!=(e=n.certCategoryName)?e:n.certCategoryCode,certWorkCategory:null!=(t=n.operationCategoryName)?t:n.operationCategoryCode,certNo:n.certNo,issueOrg:n.issueOrg,validStartDate:n.validStartDate,validEndDate:n.validEndDate,reviewDate:n.reviewDate,certImgFiles:r,certImgs:r}}function N(){var e,t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=n.certImageUrl?h(n.certImageUrl,n.certName||"证书图片.jpg"):n.certImgFiles||[];return u(u(u(u(u({id:(0,o.gR)(n.id),certType:null!=(e=n.licenseTypeName)?e:n.licenseTypeCode,certName:n.certName,certNo:n.certNo,issueOrg:n.issueOrg,issueDate:n.issueDate,validStartDate:n.validStartDate,validEndDate:n.validEndDate,remark:null!=(t=n.remark)?t:n.remarks,enableFlag:n.enableFlag,enableStatus:+(1===Number(n.enableFlag))},"issueDate",(0,r.Yq)(n.issueDate)),"validStartDate",(0,r.Yq)(n.validStartDate)),"validEndDate",(0,r.Yq)(n.validEndDate)),"certImgFiles",i),"certImgs",i)}function L(e){var t=null==e?void 0:e.data;return t&&"object"===l(t)?Object.entries(t).map(function(e,t){var n,r=f(e,2),i=r[0],o=r[1],a=(Array.isArray(o)?o:[]).map(N),l=(null==(n=a[0])?void 0:n.certType)||i||"资质".concat(t+1),s=a.reduce(function(e,t){var n=t.validEndDate;return n&&(!e||n>e)?n:e},"");return{id:i||String(t),scopeName:l,expireDate:s||"-",expireWarning:function(e){if(!e)return!1;var t=new Date(String(e).replace(/-/g,"/"));if(Number.isNaN(t.getTime()))return!1;var n=t.getTime()-Date.now();return n>0&&n<7776e6}(s),materials:a.map(function(e,t){var n,r,o=(null==(n=e.certImgFiles)||null==(n=n[0])?void 0:n.url)||(null==(r=e.certImgs)||null==(r=r[0])?void 0:r.url);return{id:e.id||"".concat(i,"-").concat(t),name:e.certName||e.certType||"-",required:!0,status:o?"uploaded":"pending",previewUrl:o,raw:e}})}}):[]}function T(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=I(e);return{id:t.id,name:t.staffName,gender:p[t.gender]||"-",position:t.positionName,qualScope:t.qualScope,education:t.education||t.educationLevel,registerEngineer:+(1===t.registerEngineerFlag)}}},31467(e,t,n){"use strict";n.d(t,{$P:()=>v,Vg:()=>y,Y6:()=>j,oI:()=>g,yT:()=>x});var r=n(46285),i=n(73398),o=n(85518);function a(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var a=Object.create((r&&r.prototype instanceof c?r:c).prototype);return l(a,"_invoke",function(n,r,i){var o,a,l,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,a=0,l=e,d.n=n,s}};function p(n,r){for(a=n,l=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(l=o[(a=o[4])?5:(a=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,a=0))}if(i||n>1)return s;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),a=u,l=y;(t=a<2?e:l)||!f;){o||(a?a<3?(a>1&&(d.n=-1),p(a,l)):d.n=l:d.v=l);try{if(c=2,o){if(a||(i="next"),t=o[i]){if(!(t=t.call(o,l)))throw TypeError("iterator result is not an object");if(!t.done)return t;l=t.value,a<2&&(a=0)}else 1===a&&(t=o.return)&&t.call(o),a<2&&(l=TypeError("The iterator does not provide a '"+i+"' method"),a=1);o=e}else if((t=(f=d.n<0)?l:n.call(r,d))!==s)break}catch(t){o=e,a=1,l=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),a}var s={};function c(){}function u(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=c.prototype=Object.create([][r]?t(t([][r]())):(l(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,l(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return u.prototype=f,l(d,"constructor",f),l(f,"constructor",u),u.displayName="GeneratorFunction",l(f,i,"GeneratorFunction"),l(d),l(d,i,"Generator"),l(d,r,function(){return this}),l(d,"toString",function(){return"[object Generator]"}),(a=function(){return{w:o,m:p}})()}function l(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(l=function(e,t,n,r){function o(t,n){l(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function s(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function c(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){s(o,r,i,a,l,"next",e)}function l(e){s(o,r,i,a,l,"throw",e)}a(void 0)})}}function u(e){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function d(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.includeOrgContext,r=function(e){for(var t=1;t1&&void 0!==c[1]?c[1]:{},o=c.length>2&&void 0!==c[2]?c[2]:{},l=c.length>3&&void 0!==c[3]?c[3]:{},e.p=1,e.n=2,(0,r.Get)(t,(0,i.CF)(n),d(o,l));case 2:return e.a(2,e.v);case 3:return e.p=3,s=e.v,e.a(2,p(s))}},e,null,[[1,3]])}))).apply(this,arguments)}function v(e){return h.apply(this,arguments)}function h(){return(h=c(a().m(function e(t){var n,o,l,s,c,u=arguments;return a().w(function(e){for(;;)switch(e.p=e.n){case 0:return n=u.length>1&&void 0!==u[1]?u[1]:{},o=u.length>2&&void 0!==u[2]?u[2]:{},l=u.length>3&&void 0!==u[3]?u[3]:{},s=t.startsWith("@")?t:"@".concat(t),e.p=1,e.n=2,(0,r.Post)(s,(0,i.n3)(n),d(o,l));case 2:return e.a(2,e.v);case 3:return e.p=3,c=e.v,e.a(2,p(c))}},e,null,[[1,3]])}))).apply(this,arguments)}function g(e,t){return b.apply(this,arguments)}function b(){return(b=c(a().m(function e(t,n){var o,l,s=arguments;return a().w(function(e){for(;;)switch(e.p=e.n){case 0:return o=s.length>2&&void 0!==s[2]?s[2]:{},e.p=1,e.n=2,(0,r.Post)("@".concat(t),{data:(0,i.gR)(n)},d({},o));case 2:return e.a(2,e.v);case 3:return e.p=3,l=e.v,e.a(2,p(l))}},e,null,[[1,3]])}))).apply(this,arguments)}function j(e){var t;return t=c(a().m(function t(n){var r;return a().w(function(t){for(;;)switch(t.p=t.n){case 0:return t.p=0,t.n=1,e(n);case 1:return r=t.v,t.a(2,r);case 2:return t.p=2,console.warn("[enterpriseInfo/safePageResult]",t.v),t.a(2,{success:!1,data:[],totalCount:0})}},t,null,[[0,2]])})),function(e){return t.apply(this,arguments)}}function x(e){var t;return t=c(a().m(function t(n){var r,i;return a().w(function(t){for(;;)switch(t.p=t.n){case 0:return t.p=0,t.n=1,e(n);case 1:if(!((r=t.v)&&!1===r.success)){t.n=2;break}return t.a(2,{success:!1,message:r.message||r.msg||r.errMessage||"操作失败",code:r.code});case 2:return t.a(2,r);case 3:return t.p=3,console.warn("[enterpriseInfo/safeAction]",i=t.v),t.a(2,p(i))}},t,null,[[0,3]])})),function(e){return t.apply(this,arguments)}}},73398(e,t,n){"use strict";function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function i(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};if(!e||"object"!==o(e))return e;var t=i({},e);return Object.keys(t).forEach(function(e){l(e)&&null!=t[e]&&""!==t[e]&&(t[e]=a(t[e]))}),t}function c(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=i({},e);return Object.keys(t).forEach(function(e){l(e)&&null!=t[e]&&""!==t[e]&&(t[e]=a(t[e]))}),t}function u(e,t){var n=a(e),r=a(t);return!!n&&!!r&&(n===r||n.slice(0,16)===r.slice(0,16))}n.d(t,{CF:()=>c,N9:()=>l,gR:()=>a,n3:()=>s,s:()=>u})},85518(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function o(e){for(var t=1;tc,ze:()=>u});var a="orgInfoId",l=null;function s(){return l||sessionStorage.getItem(a)||null}function c(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(null!=e.orgId&&""!==e.orgId)return e;var t=s();return t?o(o({},e),{},{orgId:t}):e}function u(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.orgInfoId||s();return t?o(o({},e),{},{orgInfoId:String(t)}):e}var f=sessionStorage.getItem(a);f&&(l=f)},77539(e,t,n){"use strict";n.d(t,{bt:()=>u,d7:()=>c,xb:()=>s,zZ:()=>f});var r=n(96540);function i(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",a=n.toStringTag||"@@toStringTag";function l(n,r,i,a){var l=Object.create((r&&r.prototype instanceof c?r:c).prototype);return o(l,"_invoke",function(n,r,i){var o,a,l,c=0,u=i||[],f=!1,d={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return o=t,a=0,l=e,d.n=n,s}};function p(n,r){for(a=n,l=r,t=0;!f&&c&&!i&&t3?(i=y===r)&&(l=o[(a=o[4])?5:(a=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,a=0))}if(i||n>1)return s;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),a=u,l=y;(t=a<2?e:l)||!f;){o||(a?a<3?(a>1&&(d.n=-1),p(a,l)):d.n=l:d.v=l);try{if(c=2,o){if(a||(i="next"),t=o[i]){if(!(t=t.call(o,l)))throw TypeError("iterator result is not an object");if(!t.done)return t;l=t.value,a<2&&(a=0)}else 1===a&&(t=o.return)&&t.call(o),a<2&&(l=TypeError("The iterator does not provide a '"+i+"' method"),a=1);o=e}else if((t=(f=d.n<0)?l:n.call(r,d))!==s)break}catch(t){o=e,a=1,l=t}finally{c=1}}return{value:t,done:f}}}(n,i,a),!0),l}var s={};function c(){}function u(){}function f(){}t=Object.getPrototypeOf;var d=f.prototype=c.prototype=Object.create([][r]?t(t([][r]())):(o(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,f):(e.__proto__=f,o(e,a,"GeneratorFunction")),e.prototype=Object.create(d),e}return u.prototype=f,o(d,"constructor",f),o(f,"constructor",u),u.displayName="GeneratorFunction",o(f,a,"GeneratorFunction"),o(d),o(d,a,"Generator"),o(d,r,function(){return this}),o(d,"toString",function(){return"[object Generator]"}),(i=function(){return{w:l,m:p}})()}function o(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(o=function(e,t,n,r){function a(t,n){o(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(a("next",0),a("throw",1),a("return",2))})(e,t,n,r)}function a(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);na+1||i<1||i>12||o<1||o>31?null:"".concat(r,"-").concat(String(i).padStart(2,"0"),"-").concat(String(o).padStart(2,"0"))}function c(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,i=function(e){if(Array.isArray(e))return e}(t=(0,r.useState)(e))||function(e){var t=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,r,i,o,a=[],l=!0,s=!1;try{i=(t=t.call(e)).next,!1;for(;!(l=(n=i.call(t)).done)&&(a.push(n.value),2!==a.length);l=!0);}catch(e){s=!0,r=e}finally{try{if(!l&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(s)throw r}}return a}}(t)||function(e){if(e){if("string"==typeof e)return l(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?l(e,2):void 0}}(t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),o=i[0],a=i[1],s=(0,r.useRef)(null);return(0,r.useEffect)(function(){return s.current&&clearTimeout(s.current),s.current=setTimeout(function(){a(e)},n),function(){s.current&&clearTimeout(s.current)}},[e,n]),o}function u(e){return function(t){return Promise.resolve(e(t)).catch(function(e){return console.warn("[safeListRequest]",e),{data:[],totalCount:0}})}}function f(e,t){return d.apply(this,arguments)}function d(){var e;return e=i().m(function e(t,n){var r,o,a=arguments;return i().w(function(e){for(;;)switch(e.p=e.n){case 0:if(r=a.length>2&&void 0!==a[2]?a[2]:15e3,"function"==typeof t){e.n=1;break}return e.a(2,null);case 1:return e.p=1,e.n=2,Promise.race([Promise.resolve(t(n)),new Promise(function(e,t){setTimeout(function(){return t(Error("request timeout"))},r)})]);case 2:return o=e.v,e.a(2,null!=o?o:null);case 3:return e.p=3,console.warn("[safeRequest]",e.v),e.a(2,null)}},e,null,[[1,3]])}),(d=function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function l(e){a(o,r,i,l,s,"next",e)}function s(e){a(o,r,i,l,s,"throw",e)}l(void 0)})}).apply(this,arguments)}},20344(e,t,n){"use strict";n.d(t,{Pn:()=>i,Wf:()=>o,zG:()=>a});var r="https://s1.aigei.com/prevfiles/6f2754563be2491bad7c957904cd7d2a.jpg?e=2051020800&token=P7S2Xpzfz11vAkASLTkfHN7Fw-oOZBecqeJaxypL:CR60zg7VKDp-jUWyYls_rdvyQMM=";function i(e){return r}function o(e){if(null!=e&&e.length){var t=e.filter(function(e){return null==e?void 0:e.url}).map(function(e){return{url:e.url,uid:e.uid||void 0,name:e.name||e.fileName||"附件",status:e.status||"done"}});return t.length?JSON.stringify(t):r}}function a(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"附件.pdf";if(!e)return[];var n=String(e).trim();if(n.startsWith("[")&&n.endsWith("]"))try{var r=JSON.parse(n);if(Array.isArray(r))return r.filter(function(e){return null==e?void 0:e.url}).map(function(e){return{name:e.name||"".concat(t.replace(".pdf",""),"1"),fileName:e.fileName||e.name||"".concat(t.replace(".pdf",""),"1"),url:e.url,uid:e.uid||void 0,status:e.status||"done"}})}catch(e){}return n.split(",").map(function(e){return e.trim()}).filter(Boolean).map(function(e,n){return{name:"".concat(t.replace(".pdf","")).concat(n+1,".pdf"),fileName:"".concat(t.replace(".pdf","")).concat(n+1,".pdf"),url:e}})}},41911(e,t,n){"use strict";n.d(t,{$8:()=>N,Bp:()=>z,Eo:()=>w,HV:()=>E,Z5:()=>P,ah:()=>V,cA:()=>L,k:()=>I,kl:()=>k,nF:()=>D,o:()=>O,oD:()=>A,s1:()=>C,uQ:()=>q});var r,i,o,a,l,s,c,u,f=n(28311),d=n(48032),p=n(31467);function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var m=["raw"];function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function h(e){for(var t=1;t3?(i=y===r)&&(s=o[(l=o[4])?5:(l=3,3)],o[4]=o[5]=e):o[0]<=p&&((i=n<2&&pr||r>y)&&(o[4]=n,o[5]=r,d.n=y,l=0))}if(i||n>1)return a;throw f=!0,r}return function(i,u,y){if(c>1)throw TypeError("Generator is already running");for(f&&1===u&&p(u,y),l=u,s=y;(t=l<2?e:s)||!f;){o||(l?l<3?(l>1&&(d.n=-1),p(l,s)):d.n=s:d.v=s);try{if(c=2,o){if(l||(i="next"),t=o[i]){if(!(t=t.call(o,s)))throw TypeError("iterator result is not an object");if(!t.done)return t;s=t.value,l<2&&(l=0)}else 1===l&&(t=o.return)&&t.call(o),l<2&&(s=TypeError("The iterator does not provide a '"+i+"' method"),l=1);o=e}else if((t=(f=d.n<0)?s:n.call(r,d))!==a)break}catch(t){o=e,l=1,s=t}finally{c=1}}return{value:t,done:f}}}(n,i,o),!0),s}var a={};function l(){}function s(){}function c(){}t=Object.getPrototypeOf;var u=c.prototype=l.prototype=Object.create([][r]?t(t([][r]())):(b(t={},r,function(){return this}),t));function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,c):(e.__proto__=c,b(e,i,"GeneratorFunction")),e.prototype=Object.create(u),e}return s.prototype=c,b(u,"constructor",c),b(c,"constructor",s),s.displayName="GeneratorFunction",b(c,i,"GeneratorFunction"),b(u),b(u,i,"Generator"),b(u,r,function(){return this}),b(u,"toString",function(){return"[object Generator]"}),(g=function(){return{w:o,m:f}})()}function b(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}(b=function(e,t,n,r){function o(t,n){b(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))})(e,t,n,r)}function j(e,t,n,r,i,o,a){try{var l=e[o](a),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,i)}function x(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){j(o,r,i,a,l,"next",e)}function l(e){j(o,r,i,a,l,"throw",e)}a(void 0)})}}var S={includeOrgContext:!1},C=(0,f.CV)("orgInfoLoading",(0,p.Y6)((r=x(g().m(function e(t){var n,r;return g().w(function(e){for(;;)switch(e.n){case 0:return n=(0,d.JP)(t),e.n=1,(0,p.Vg)("/safetyEval/org-info/page",n,{},S);case 1:return r=e.v,e.a(2,(0,d.$P)(r,d.pl))}},e)})),function(e){return r.apply(this,arguments)}))),A=(0,f.CV)("orgInfoLoading",(0,p.yT)((i=x(g().m(function e(t){var n,r,i,o;return g().w(function(e){for(;;)switch(e.n){case 0:return r=t.id,e.n=1,(0,p.Vg)("/safetyEval/org-info/get",{id:r},{},S);case 1:return i=e.v,o=(0,d.UC)(i,d.g5),e.a(2,h(h({},o),{},{raw:null!=(n=null==i?void 0:i.data)?n:null}))}},e)})),function(e){return i.apply(this,arguments)}))),w=(0,f.CV)("orgInfoLoading",(0,p.yT)((o=x(g().m(function e(t){var n,r,i,o;return g().w(function(e){for(;;)switch(e.n){case 0:return n=t.raw,r=function(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n={};for(var r in e)if(({}).hasOwnProperty.call(e,r)){if(-1!==t.indexOf(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;rf,Pl:()=>y,RM:()=>b,Zz:()=>v,c5:()=>d,cr:()=>m,ec:()=>j,fP:()=>g,fv:()=>p,qK:()=>h});var a=/^[0-9A-HJ-NPQRTUWXY]{2}\d{6}[0-9A-HJ-NPQRTUWXY]{10}$/,l=/^\d{17}[\dX]$/i,s=/^1[3-9]\d{9}$/,c=/^(\d{3,4}-?\d{7,8}|1[3-9]\d{9})$/,u=/^(https?:\/\/)[\w.-]+(?:\.[\w.-]+)+[\w\-._~:/?#[\]@!$&'()*+,;=.]*$/;function f(){var e=!(arguments.length>0)||void 0===arguments[0]||arguments[0];return o(o({required:e,message:e?"请输入统一社会信用代码":void 0,pattern:a},e?{}:{validateTrigger:"onBlur"}),{},{validator:function(t,n){return n?a.test(n.trim())?Promise.resolve():Promise.reject(Error("统一社会信用代码格式不正确")):e?Promise.reject(Error("请输入统一社会信用代码")):Promise.resolve()}})}function d(){var e=!(arguments.length>0)||void 0===arguments[0]||arguments[0];return{required:e,validator:function(t,n){if(!n)return e?Promise.reject(Error("请输入身份证号")):Promise.resolve();var r=String(n).trim();return l.test(r)?Promise.resolve():Promise.reject(Error("身份证号格式不正确"))}}}function p(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"联系电话",t=!(arguments.length>1)||void 0===arguments[1]||arguments[1];return{required:t,validator:function(n,r){if(!r)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var i=String(r).replace(/\s+/g,"");return c.test(i)?Promise.resolve():Promise.reject(Error("".concat(e,"格式不正确")))}}}function y(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"账号",t=!(arguments.length>1)||void 0===arguments[1]||arguments[1];return{required:t,validator:function(n,r){if(!r)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var i=String(r).replace(/\s+/g,"");return s.test(i)?Promise.resolve():Promise.reject(Error("".concat(e,"应为11位手机号")))}}}function m(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return{required:e,validator:function(t,n){if(null==n||""===n)return e?Promise.reject(Error("请输入经度")):Promise.resolve();var r=Number(n);return Number.isNaN(r)||r<-180||r>180?Promise.reject(Error("经度格式不正确(-180 ~ 180)")):Promise.resolve()}}}function v(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return{required:e,validator:function(t,n){if(null==n||""===n)return e?Promise.reject(Error("请输入纬度")):Promise.resolve();var r=Number(n);return Number.isNaN(r)||r<-90||r>90?Promise.reject(Error("纬度格式不正确(-90 ~ 90)")):Promise.resolve()}}}function h(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"网址",t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{required:t,validator:function(n,r){return r?u.test(String(r).trim())?Promise.resolve():Promise.reject(Error("".concat(e,"格式不正确"))):t?Promise.reject(Error("请输入".concat(e))):Promise.resolve()}}}function g(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{required:t,validator:function(n,r){if(null==r||""===r)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var i=Number(r);return Number.isNaN(i)||i<0?Promise.reject(Error("".concat(e,"应为非负数字"))):Promise.resolve()}}}function b(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{required:t,validator:function(n,r){if(null==r||""===r)return t?Promise.reject(Error("请输入".concat(e))):Promise.resolve();var i=Number(r);return!Number.isInteger(i)||i<0?Promise.reject(Error("".concat(e,"应为非负整数"))):Promise.resolve()}}}function j(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"证书有效期";return{validator:function(t,n){return Array.isArray(n)&&n.every(function(e){return""===e||null==e})||!n||!n[0]||!n[1]?Promise.reject(Error("请选择".concat(e))):Promise.resolve()}}}},65044(e,t,n){var r={"./corpCertificate/index.js":"62210","./courseware/index.js":"23775","./driver/index.js":"84049","./equipInfo/index.js":"23461","./global/index.js":"27872","./orgDepartment/index.js":"53001","./orgInfo/index.js":"89175","./orgPosition/index.js":"71252","./orgQualificationCert/index.js":"28022","./qualExpert/index.js":"89580","./qualFiling/index.js":"30045","./qualReview/index.js":"96952","./staffCertificate/index.js":"9538","./staffChangeLog/index.js":"53983","./staffInfo/index.js":"85135","./staffResignationApply/index.js":"93316","./userCertificate/index.js":"97467"};function i(e){return n(o(e))}function o(e){if(!n.o(r,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=o,e.exports=i,i.id=65044},63271(e,t,n){var r={"./corpCertificate":"62210","./corpCertificate/":"62210","./corpCertificate/index":"62210","./corpCertificate/index.js":"62210","./courseware":"23775","./courseware/":"23775","./courseware/index":"23775","./courseware/index.js":"23775","./driver":"84049","./driver/":"84049","./driver/index":"84049","./driver/index.js":"84049","./equipInfo":"23461","./equipInfo/":"23461","./equipInfo/index":"23461","./equipInfo/index.js":"23461","./global":"27872","./global/":"27872","./global/index":"27872","./global/index.js":"27872","./orgDepartment":"53001","./orgDepartment/":"53001","./orgDepartment/index":"53001","./orgDepartment/index.js":"53001","./orgInfo":"89175","./orgInfo/":"89175","./orgInfo/index":"89175","./orgInfo/index.js":"89175","./orgPosition":"71252","./orgPosition/":"71252","./orgPosition/index":"71252","./orgPosition/index.js":"71252","./orgQualificationCert":"28022","./orgQualificationCert/":"28022","./orgQualificationCert/index":"28022","./orgQualificationCert/index.js":"28022","./qualExpert":"89580","./qualExpert/":"89580","./qualExpert/index":"89580","./qualExpert/index.js":"89580","./qualFiling":"30045","./qualFiling/":"30045","./qualFiling/index":"30045","./qualFiling/index.js":"30045","./qualReview":"96952","./qualReview/":"96952","./qualReview/index":"96952","./qualReview/index.js":"96952","./staffCertificate":"9538","./staffCertificate/":"9538","./staffCertificate/index":"9538","./staffCertificate/index.js":"9538","./staffChangeLog":"53983","./staffChangeLog/":"53983","./staffChangeLog/index":"53983","./staffChangeLog/index.js":"53983","./staffInfo":"85135","./staffInfo/":"85135","./staffInfo/index":"85135","./staffInfo/index.js":"85135","./staffResignationApply":"93316","./staffResignationApply/":"93316","./staffResignationApply/index":"93316","./staffResignationApply/index.js":"93316","./userCertificate":"97467","./userCertificate/":"97467","./userCertificate/index":"97467","./userCertificate/index.js":"97467"};function i(e){return n(o(e))}function o(e){if(!n.o(r,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=o,e.exports=i,i.id=63271},2778(e,t,n){var r={"./Container/BranchCompany/EnterpriseLicense/EnterpriseLicense/index.js":"90378","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index.js":"55435","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index.js":"23614","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/index.js":"60646","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index.js":"66513","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index.js":"47856","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index.js":"50936","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index.js":"53326","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index.js":"23443","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/index.js":"49661","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index.js":"63550","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index.js":"6051","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index.js":"333","./Container/BranchCompany/EnterpriseLicense/PersonnelLicense/index.js":"72327","./Container/BranchCompany/EnterpriseLicense/index.js":"37755","./Container/BranchCompany/index.js":"72926","./Container/Driver/index.js":"56313","./Container/EnterpriseInfo/DepartmentPosition/index.js":"82104","./Container/EnterpriseInfo/EquipInfo/index.js":"27167","./Container/EnterpriseInfo/MaterialReport/index.js":"53962","./Container/EnterpriseInfo/MaterialReport/mockData.js":"8073","./Container/EnterpriseInfo/OrgInfo/formOptions.js":"60345","./Container/EnterpriseInfo/OrgInfo/index.js":"87213","./Container/EnterpriseInfo/PersonnelChange/index.js":"11071","./Container/EnterpriseInfo/PersonnelInfo/Certificate/index.js":"53671","./Container/EnterpriseInfo/PersonnelInfo/List/index.js":"26332","./Container/EnterpriseInfo/PersonnelInfo/StaffViewModal.js":"76243","./Container/EnterpriseInfo/PersonnelInfo/index.js":"3327","./Container/EnterpriseInfo/QualificationCert/index.js":"90088","./Container/EnterpriseInfo/ResignationApply/index.js":"71074","./Container/EnterpriseInfo/index.js":"87124","./Container/Entry/index.js":"43317","./Container/Institution/Dashboard/index.js":"66699","./Container/Institution/index.js":"90011","./Container/Institution/mockData.js":"22241","./Container/Layout/menuConfig.js":"35580","./Container/QualApplication/FiledManage/List/index.js":"76401","./Container/QualApplication/FiledManage/index.js":"87768","./Container/QualApplication/FilingApplication/List/index.js":"99345","./Container/QualApplication/FilingApplication/index.js":"88344","./Container/QualApplication/FilingChange/List/index.js":"8351","./Container/QualApplication/FilingChange/index.js":"92554","./Container/QualApplication/FilingForm/index.js":"70756","./Container/QualApplication/filingCommitment.js":"52528","./Container/QualApplication/filingLocalDraft.js":"94727","./Container/QualApplication/filingMaterialTemplate.js":"94878","./Container/QualApplication/filingPaths.js":"83577","./Container/QualApplication/filingPersist.js":"24941","./Container/QualApplication/filingVerify.js":"26368","./Container/QualApplication/index.js":"27102","./Container/QualificationReview/ExpertVerification/index.js":"34910","./Container/QualificationReview/FilingDetail/index.js":"13061","./Container/QualificationReview/FilingTabs/index.js":"2016","./Container/QualificationReview/QualChange/index.js":"90902","./Container/QualificationReview/QualConfirm/index.js":"53426","./Container/QualificationReview/QualConfirmForm/index.js":"1064","./Container/QualificationReview/QualPublicity/index.js":"99449","./Container/QualificationReview/QualReview/index.js":"68674","./Container/QualificationReview/QualReviewForm/ReviewModal.js":"41845","./Container/QualificationReview/QualReviewForm/index.js":"71544","./Container/QualificationReview/index.js":"76608","./Container/QualificationReview/mockData.js":"82488","./Container/QualificationReview/reviewPageQuery.js":"56097","./Container/Stakeholder/EnterpriseLicense/EnterpriseLicense/index.js":"63729","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index.js":"16478","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index.js":"58979","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/index.js":"53645","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index.js":"1144","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index.js":"82281","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index.js":"50427","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index.js":"77101","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index.js":"31620","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/index.js":"56196","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index.js":"73043","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index.js":"37174","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index.js":"4078","./Container/Stakeholder/EnterpriseLicense/PersonnelLicense/index.js":"45954","./Container/Stakeholder/EnterpriseLicense/index.js":"95492","./Container/Stakeholder/index.js":"99765","./Container/Supervision/BasicInfo/EnterprisePortrait/index.js":"59376","./Container/Supervision/BasicInfo/EvaluatorInfo/index.js":"96593","./Container/Supervision/BasicInfo/OrgAccount/index.js":"49953","./Container/Supervision/BasicInfo/RegisteredOrg/Detail/index.js":"42110","./Container/Supervision/BasicInfo/RegisteredOrg/List/index.js":"72007","./Container/Supervision/BasicInfo/RegisteredOrg/index.js":"83762","./Container/Supervision/BasicInfo/index.js":"49595","./Container/Supervision/Cockpit/index.js":"22500","./Container/Supervision/Cockpit/mockData.js":"51804","./Container/Supervision/Dashboard/index.js":"3117","./Container/Supervision/EnterpriseLicense/BranchStatistics/List/index.js":"88320","./Container/Supervision/EnterpriseLicense/BranchStatistics/View/index.js":"28737","./Container/Supervision/EnterpriseLicense/BranchStatistics/index.js":"75491","./Container/Supervision/EnterpriseLicense/EnterpriseLicense/index.js":"71070","./Container/Supervision/EnterpriseLicense/StakeholderStatistics/List/index.js":"40304","./Container/Supervision/EnterpriseLicense/StakeholderStatistics/View/index.js":"61969","./Container/Supervision/EnterpriseLicense/StakeholderStatistics/index.js":"57203","./Container/Supervision/EnterpriseLicense/index.js":"78079","./Container/Supervision/ExperManage/index.js":"49306","./Container/Supervision/PersonnelLicense/BranchCompanyStat/List/index.js":"24279","./Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/List/index.js":"60286","./Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/View/index.js":"57923","./Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/index.js":"30765","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/List/index.js":"3192","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/View/index.js":"11721","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/index.js":"13275","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/List/index.js":"92109","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/View/index.js":"49316","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/index.js":"68100","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/List/index.js":"30195","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/View/index.js":"5782","./Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/index.js":"92814","./Container/Supervision/PersonnelLicense/BranchCompanyStat/index.js":"50146","./Container/Supervision/PersonnelLicense/PersonInCharge/List/index.js":"83416","./Container/Supervision/PersonnelLicense/PersonInCharge/View/index.js":"91945","./Container/Supervision/PersonnelLicense/PersonInCharge/index.js":"64443","./Container/Supervision/PersonnelLicense/SecurityAdmini/List/index.js":"65962","./Container/Supervision/PersonnelLicense/SecurityAdmini/View/index.js":"15879","./Container/Supervision/PersonnelLicense/SecurityAdmini/index.js":"78601","./Container/Supervision/PersonnelLicense/SpecialDevice/List/index.js":"52299","./Container/Supervision/PersonnelLicense/SpecialDevice/View/index.js":"20478","./Container/Supervision/PersonnelLicense/SpecialDevice/index.js":"44646","./Container/Supervision/PersonnelLicense/SpecialPersonnel/List/index.js":"59673","./Container/Supervision/PersonnelLicense/SpecialPersonnel/View/index.js":"92104","./Container/Supervision/PersonnelLicense/SpecialPersonnel/index.js":"98624","./Container/Supervision/PersonnelLicense/StakeholderStat/List/index.js":"87474","./Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/List/index.js":"74401","./Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/View/index.js":"43424","./Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/index.js":"328","./Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/List/index.js":"76183","./Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/View/index.js":"58882","./Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/index.js":"47170","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/List/index.js":"82640","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/View/index.js":"54033","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/index.js":"92627","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/List/index.js":"60480","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/View/index.js":"897","./Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/index.js":"35299","./Container/Supervision/PersonnelLicense/StakeholderStat/index.js":"90673","./Container/Supervision/PersonnelLicense/index.js":"97800","./Container/Supervision/index.js":"38146","./Container/Supervision/test2/index.js":"98915","./Container/Test/index.js":"29259","./Container/index copy.js":"58237","./Container/index.js":"4474","./index.js":"58682"};function i(e){return n(o(e))}function o(e){if(!n.o(r,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=o,e.exports=i,i.id=2778},10016(e,t,n){var r={"./pages":"58682","./pages/":"58682","./pages/Container":"4474","./pages/Container/":"4474","./pages/Container/BranchCompany":"72926","./pages/Container/BranchCompany/":"72926","./pages/Container/BranchCompany/EnterpriseLicense":"37755","./pages/Container/BranchCompany/EnterpriseLicense/":"37755","./pages/Container/BranchCompany/EnterpriseLicense/EnterpriseLicense":"90378","./pages/Container/BranchCompany/EnterpriseLicense/EnterpriseLicense/":"90378","./pages/Container/BranchCompany/EnterpriseLicense/EnterpriseLicense/index":"90378","./pages/Container/BranchCompany/EnterpriseLicense/EnterpriseLicense/index.js":"90378","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense":"72327","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/":"72327","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge":"60646","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/":"60646","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/List":"55435","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/":"55435","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index":"55435","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index.js":"55435","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/View":"23614","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/":"23614","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index":"23614","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index.js":"23614","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/index":"60646","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/PersonInCharge/index.js":"60646","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini":"50936","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/":"50936","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List":"66513","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/":"66513","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index":"66513","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index.js":"66513","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View":"47856","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/":"47856","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index":"47856","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index.js":"47856","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index":"50936","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index.js":"50936","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice":"49661","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/":"49661","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/List":"53326","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/":"53326","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index":"53326","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index.js":"53326","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/View":"23443","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/":"23443","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index":"23443","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index.js":"23443","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/index":"49661","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialDevice/index.js":"49661","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel":"333","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/":"333","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List":"63550","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/":"63550","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index":"63550","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index.js":"63550","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View":"6051","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/":"6051","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index":"6051","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index.js":"6051","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index":"333","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index.js":"333","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/index":"72327","./pages/Container/BranchCompany/EnterpriseLicense/PersonnelLicense/index.js":"72327","./pages/Container/BranchCompany/EnterpriseLicense/index":"37755","./pages/Container/BranchCompany/EnterpriseLicense/index.js":"37755","./pages/Container/BranchCompany/index":"72926","./pages/Container/BranchCompany/index.js":"72926","./pages/Container/Driver":"56313","./pages/Container/Driver/":"56313","./pages/Container/Driver/index":"56313","./pages/Container/Driver/index.js":"56313","./pages/Container/Driver/index.less":"76736","./pages/Container/EnterpriseInfo":"87124","./pages/Container/EnterpriseInfo/":"87124","./pages/Container/EnterpriseInfo/DepartmentPosition":"82104","./pages/Container/EnterpriseInfo/DepartmentPosition/":"82104","./pages/Container/EnterpriseInfo/DepartmentPosition/index":"82104","./pages/Container/EnterpriseInfo/DepartmentPosition/index.js":"82104","./pages/Container/EnterpriseInfo/EquipInfo":"27167","./pages/Container/EnterpriseInfo/EquipInfo/":"27167","./pages/Container/EnterpriseInfo/EquipInfo/index":"27167","./pages/Container/EnterpriseInfo/EquipInfo/index.js":"27167","./pages/Container/EnterpriseInfo/MaterialReport":"53962","./pages/Container/EnterpriseInfo/MaterialReport/":"53962","./pages/Container/EnterpriseInfo/MaterialReport/index":"53962","./pages/Container/EnterpriseInfo/MaterialReport/index.css":"52571","./pages/Container/EnterpriseInfo/MaterialReport/index.js":"53962","./pages/Container/EnterpriseInfo/MaterialReport/mockData":"8073","./pages/Container/EnterpriseInfo/MaterialReport/mockData.js":"8073","./pages/Container/EnterpriseInfo/OrgInfo":"87213","./pages/Container/EnterpriseInfo/OrgInfo/":"87213","./pages/Container/EnterpriseInfo/OrgInfo/formOptions":"60345","./pages/Container/EnterpriseInfo/OrgInfo/formOptions.js":"60345","./pages/Container/EnterpriseInfo/OrgInfo/index":"87213","./pages/Container/EnterpriseInfo/OrgInfo/index.js":"87213","./pages/Container/EnterpriseInfo/PersonnelChange":"11071","./pages/Container/EnterpriseInfo/PersonnelChange/":"11071","./pages/Container/EnterpriseInfo/PersonnelChange/index":"11071","./pages/Container/EnterpriseInfo/PersonnelChange/index.js":"11071","./pages/Container/EnterpriseInfo/PersonnelInfo":"3327","./pages/Container/EnterpriseInfo/PersonnelInfo/":"3327","./pages/Container/EnterpriseInfo/PersonnelInfo/Certificate":"53671","./pages/Container/EnterpriseInfo/PersonnelInfo/Certificate/":"53671","./pages/Container/EnterpriseInfo/PersonnelInfo/Certificate/index":"53671","./pages/Container/EnterpriseInfo/PersonnelInfo/Certificate/index.js":"53671","./pages/Container/EnterpriseInfo/PersonnelInfo/List":"26332","./pages/Container/EnterpriseInfo/PersonnelInfo/List/":"26332","./pages/Container/EnterpriseInfo/PersonnelInfo/List/index":"26332","./pages/Container/EnterpriseInfo/PersonnelInfo/List/index.js":"26332","./pages/Container/EnterpriseInfo/PersonnelInfo/StaffViewModal":"76243","./pages/Container/EnterpriseInfo/PersonnelInfo/StaffViewModal.js":"76243","./pages/Container/EnterpriseInfo/PersonnelInfo/index":"3327","./pages/Container/EnterpriseInfo/PersonnelInfo/index.js":"3327","./pages/Container/EnterpriseInfo/QualificationCert":"90088","./pages/Container/EnterpriseInfo/QualificationCert/":"90088","./pages/Container/EnterpriseInfo/QualificationCert/index":"90088","./pages/Container/EnterpriseInfo/QualificationCert/index.js":"90088","./pages/Container/EnterpriseInfo/ResignationApply":"71074","./pages/Container/EnterpriseInfo/ResignationApply/":"71074","./pages/Container/EnterpriseInfo/ResignationApply/index":"71074","./pages/Container/EnterpriseInfo/ResignationApply/index.js":"71074","./pages/Container/EnterpriseInfo/index":"87124","./pages/Container/EnterpriseInfo/index.js":"87124","./pages/Container/Entry":"43317","./pages/Container/Entry/":"43317","./pages/Container/Entry/index":"43317","./pages/Container/Entry/index.js":"43317","./pages/Container/Institution":"90011","./pages/Container/Institution/":"90011","./pages/Container/Institution/Dashboard":"66699","./pages/Container/Institution/Dashboard/":"66699","./pages/Container/Institution/Dashboard/index":"66699","./pages/Container/Institution/Dashboard/index.js":"66699","./pages/Container/Institution/components/EnterpriseTypeChart":"2231","./pages/Container/Institution/components/EnterpriseTypeChart.jsx":"2231","./pages/Container/Institution/components/InfoAlerts":"18543","./pages/Container/Institution/components/InfoAlerts.jsx":"18543","./pages/Container/Institution/components/ProjectCompletionTable":"17073","./pages/Container/Institution/components/ProjectCompletionTable.jsx":"17073","./pages/Container/Institution/components/ProjectTypeChart":"40131","./pages/Container/Institution/components/ProjectTypeChart.jsx":"40131","./pages/Container/Institution/components/StatisticCards":"11021","./pages/Container/Institution/components/StatisticCards.jsx":"11021","./pages/Container/Institution/index":"90011","./pages/Container/Institution/index.css":"20124","./pages/Container/Institution/index.js":"90011","./pages/Container/Institution/mockData":"22241","./pages/Container/Institution/mockData.js":"22241","./pages/Container/Layout":"79331","./pages/Container/Layout/":"79331","./pages/Container/Layout/index":"79331","./pages/Container/Layout/index.jsx":"79331","./pages/Container/Layout/menuConfig":"35580","./pages/Container/Layout/menuConfig.js":"35580","./pages/Container/QualApplication":"27102","./pages/Container/QualApplication/":"27102","./pages/Container/QualApplication/FiledManage":"87768","./pages/Container/QualApplication/FiledManage/":"87768","./pages/Container/QualApplication/FiledManage/List":"76401","./pages/Container/QualApplication/FiledManage/List/":"76401","./pages/Container/QualApplication/FiledManage/List/index":"76401","./pages/Container/QualApplication/FiledManage/List/index.js":"76401","./pages/Container/QualApplication/FiledManage/index":"87768","./pages/Container/QualApplication/FiledManage/index.js":"87768","./pages/Container/QualApplication/FilingApplication":"88344","./pages/Container/QualApplication/FilingApplication/":"88344","./pages/Container/QualApplication/FilingApplication/List":"99345","./pages/Container/QualApplication/FilingApplication/List/":"99345","./pages/Container/QualApplication/FilingApplication/List/index":"99345","./pages/Container/QualApplication/FilingApplication/List/index.js":"99345","./pages/Container/QualApplication/FilingApplication/index":"88344","./pages/Container/QualApplication/FilingApplication/index.js":"88344","./pages/Container/QualApplication/FilingChange":"92554","./pages/Container/QualApplication/FilingChange/":"92554","./pages/Container/QualApplication/FilingChange/List":"8351","./pages/Container/QualApplication/FilingChange/List/":"8351","./pages/Container/QualApplication/FilingChange/List/index":"8351","./pages/Container/QualApplication/FilingChange/List/index.js":"8351","./pages/Container/QualApplication/FilingChange/index":"92554","./pages/Container/QualApplication/FilingChange/index.js":"92554","./pages/Container/QualApplication/FilingForm":"70756","./pages/Container/QualApplication/FilingForm/":"70756","./pages/Container/QualApplication/FilingForm/components/BasicInfoStep":"92423","./pages/Container/QualApplication/FilingForm/components/BasicInfoStep.jsx":"92423","./pages/Container/QualApplication/FilingForm/components/ChangeHistoryModal":"55096","./pages/Container/QualApplication/FilingForm/components/ChangeHistoryModal.jsx":"55096","./pages/Container/QualApplication/FilingForm/components/CommitmentStep":"93090","./pages/Container/QualApplication/FilingForm/components/CommitmentStep.jsx":"93090","./pages/Container/QualApplication/FilingForm/components/EquipmentStep":"12017","./pages/Container/QualApplication/FilingForm/components/EquipmentStep.jsx":"12017","./pages/Container/QualApplication/FilingForm/components/FilingUpload":"93915","./pages/Container/QualApplication/FilingForm/components/FilingUpload.jsx":"93915","./pages/Container/QualApplication/FilingForm/components/MaterialStep":"81110","./pages/Container/QualApplication/FilingForm/components/MaterialStep.jsx":"81110","./pages/Container/QualApplication/FilingForm/components/OrgEquipmentSelectModal":"65474","./pages/Container/QualApplication/FilingForm/components/OrgEquipmentSelectModal.jsx":"65474","./pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal":"82314","./pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx":"82314","./pages/Container/QualApplication/FilingForm/components/PersonnelStep":"74969","./pages/Container/QualApplication/FilingForm/components/PersonnelStep.jsx":"74969","./pages/Container/QualApplication/FilingForm/components/PrerequisiteVerifyModal":"21819","./pages/Container/QualApplication/FilingForm/components/PrerequisiteVerifyModal.jsx":"21819","./pages/Container/QualApplication/FilingForm/index":"70756","./pages/Container/QualApplication/FilingForm/index.js":"70756","./pages/Container/QualApplication/FilingListTable":"56095","./pages/Container/QualApplication/FilingListTable.jsx":"56095","./pages/Container/QualApplication/filingCommitment":"52528","./pages/Container/QualApplication/filingCommitment.js":"52528","./pages/Container/QualApplication/filingLocalDraft":"94727","./pages/Container/QualApplication/filingLocalDraft.js":"94727","./pages/Container/QualApplication/filingMaterialTemplate":"94878","./pages/Container/QualApplication/filingMaterialTemplate.js":"94878","./pages/Container/QualApplication/filingPaths":"83577","./pages/Container/QualApplication/filingPaths.js":"83577","./pages/Container/QualApplication/filingPersist":"24941","./pages/Container/QualApplication/filingPersist.js":"24941","./pages/Container/QualApplication/filingVerify":"26368","./pages/Container/QualApplication/filingVerify.js":"26368","./pages/Container/QualApplication/index":"27102","./pages/Container/QualApplication/index.js":"27102","./pages/Container/QualificationReview":"76608","./pages/Container/QualificationReview/":"76608","./pages/Container/QualificationReview/ExpertVerification":"34910","./pages/Container/QualificationReview/ExpertVerification/":"34910","./pages/Container/QualificationReview/ExpertVerification/index":"34910","./pages/Container/QualificationReview/ExpertVerification/index.js":"34910","./pages/Container/QualificationReview/FilingDetail":"13061","./pages/Container/QualificationReview/FilingDetail/":"13061","./pages/Container/QualificationReview/FilingDetail/index":"13061","./pages/Container/QualificationReview/FilingDetail/index.js":"13061","./pages/Container/QualificationReview/FilingTabs":"2016","./pages/Container/QualificationReview/FilingTabs/":"2016","./pages/Container/QualificationReview/FilingTabs/index":"2016","./pages/Container/QualificationReview/FilingTabs/index.js":"2016","./pages/Container/QualificationReview/QualChange":"90902","./pages/Container/QualificationReview/QualChange/":"90902","./pages/Container/QualificationReview/QualChange/index":"90902","./pages/Container/QualificationReview/QualChange/index.js":"90902","./pages/Container/QualificationReview/QualConfirm":"53426","./pages/Container/QualificationReview/QualConfirm/":"53426","./pages/Container/QualificationReview/QualConfirm/index":"53426","./pages/Container/QualificationReview/QualConfirm/index.js":"53426","./pages/Container/QualificationReview/QualConfirmForm":"1064","./pages/Container/QualificationReview/QualConfirmForm/":"1064","./pages/Container/QualificationReview/QualConfirmForm/indes":"59914","./pages/Container/QualificationReview/QualConfirmForm/indes.less":"59914","./pages/Container/QualificationReview/QualConfirmForm/index":"1064","./pages/Container/QualificationReview/QualConfirmForm/index.js":"1064","./pages/Container/QualificationReview/QualPublicity":"99449","./pages/Container/QualificationReview/QualPublicity/":"99449","./pages/Container/QualificationReview/QualPublicity/index":"99449","./pages/Container/QualificationReview/QualPublicity/index.js":"99449","./pages/Container/QualificationReview/QualReview":"68674","./pages/Container/QualificationReview/QualReview/":"68674","./pages/Container/QualificationReview/QualReview/index":"68674","./pages/Container/QualificationReview/QualReview/index.js":"68674","./pages/Container/QualificationReview/QualReviewForm":"71544","./pages/Container/QualificationReview/QualReviewForm/":"71544","./pages/Container/QualificationReview/QualReviewForm/ReviewModal":"41845","./pages/Container/QualificationReview/QualReviewForm/ReviewModal.js":"41845","./pages/Container/QualificationReview/QualReviewForm/indes":"69208","./pages/Container/QualificationReview/QualReviewForm/indes.less":"69208","./pages/Container/QualificationReview/QualReviewForm/index":"71544","./pages/Container/QualificationReview/QualReviewForm/index.js":"71544","./pages/Container/QualificationReview/index":"76608","./pages/Container/QualificationReview/index.js":"76608","./pages/Container/QualificationReview/mockData":"82488","./pages/Container/QualificationReview/mockData.js":"82488","./pages/Container/QualificationReview/reviewPageQuery":"56097","./pages/Container/QualificationReview/reviewPageQuery.js":"56097","./pages/Container/Stakeholder":"99765","./pages/Container/Stakeholder/":"99765","./pages/Container/Stakeholder/EnterpriseLicense":"95492","./pages/Container/Stakeholder/EnterpriseLicense/":"95492","./pages/Container/Stakeholder/EnterpriseLicense/EnterpriseLicense":"63729","./pages/Container/Stakeholder/EnterpriseLicense/EnterpriseLicense/":"63729","./pages/Container/Stakeholder/EnterpriseLicense/EnterpriseLicense/index":"63729","./pages/Container/Stakeholder/EnterpriseLicense/EnterpriseLicense/index.js":"63729","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense":"45954","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/":"45954","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge":"53645","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/":"53645","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/List":"16478","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/":"16478","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index":"16478","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/List/index.js":"16478","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/View":"58979","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/":"58979","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index":"58979","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/View/index.js":"58979","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/index":"53645","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/PersonInCharge/index.js":"53645","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini":"50427","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/":"50427","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List":"1144","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/":"1144","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index":"1144","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/List/index.js":"1144","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View":"82281","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/":"82281","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index":"82281","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/View/index.js":"82281","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index":"50427","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SecurityAdmini/index.js":"50427","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice":"56196","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/":"56196","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/List":"77101","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/":"77101","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index":"77101","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/List/index.js":"77101","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/View":"31620","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/":"31620","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index":"31620","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/View/index.js":"31620","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/index":"56196","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialDevice/index.js":"56196","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel":"4078","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/":"4078","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List":"73043","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/":"73043","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index":"73043","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/List/index.js":"73043","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View":"37174","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/":"37174","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index":"37174","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/View/index.js":"37174","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index":"4078","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/SpecialPersonnel/index.js":"4078","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/index":"45954","./pages/Container/Stakeholder/EnterpriseLicense/PersonnelLicense/index.js":"45954","./pages/Container/Stakeholder/EnterpriseLicense/index":"95492","./pages/Container/Stakeholder/EnterpriseLicense/index.js":"95492","./pages/Container/Stakeholder/index":"99765","./pages/Container/Stakeholder/index.js":"99765","./pages/Container/Supervision":"38146","./pages/Container/Supervision/":"38146","./pages/Container/Supervision/BasicInfo":"49595","./pages/Container/Supervision/BasicInfo/":"49595","./pages/Container/Supervision/BasicInfo/EnterprisePortrait":"59376","./pages/Container/Supervision/BasicInfo/EnterprisePortrait/":"59376","./pages/Container/Supervision/BasicInfo/EnterprisePortrait/index":"59376","./pages/Container/Supervision/BasicInfo/EnterprisePortrait/index.js":"59376","./pages/Container/Supervision/BasicInfo/EvaluatorInfo":"96593","./pages/Container/Supervision/BasicInfo/EvaluatorInfo/":"96593","./pages/Container/Supervision/BasicInfo/EvaluatorInfo/index":"96593","./pages/Container/Supervision/BasicInfo/EvaluatorInfo/index.js":"96593","./pages/Container/Supervision/BasicInfo/OrgAccount":"49953","./pages/Container/Supervision/BasicInfo/OrgAccount/":"49953","./pages/Container/Supervision/BasicInfo/OrgAccount/index":"49953","./pages/Container/Supervision/BasicInfo/OrgAccount/index.js":"49953","./pages/Container/Supervision/BasicInfo/RegisteredOrg":"83762","./pages/Container/Supervision/BasicInfo/RegisteredOrg/":"83762","./pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail":"42110","./pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail/":"42110","./pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail/index":"42110","./pages/Container/Supervision/BasicInfo/RegisteredOrg/Detail/index.js":"42110","./pages/Container/Supervision/BasicInfo/RegisteredOrg/List":"72007","./pages/Container/Supervision/BasicInfo/RegisteredOrg/List/":"72007","./pages/Container/Supervision/BasicInfo/RegisteredOrg/List/index":"72007","./pages/Container/Supervision/BasicInfo/RegisteredOrg/List/index.js":"72007","./pages/Container/Supervision/BasicInfo/RegisteredOrg/index":"83762","./pages/Container/Supervision/BasicInfo/RegisteredOrg/index.js":"83762","./pages/Container/Supervision/BasicInfo/index":"49595","./pages/Container/Supervision/BasicInfo/index.js":"49595","./pages/Container/Supervision/Cockpit":"22500","./pages/Container/Supervision/Cockpit/":"22500","./pages/Container/Supervision/Cockpit/data/chongqingGeoJson":"8258","./pages/Container/Supervision/Cockpit/data/chongqingGeoJson.json":"8258","./pages/Container/Supervision/Cockpit/index":"22500","./pages/Container/Supervision/Cockpit/index.css":"74033","./pages/Container/Supervision/Cockpit/index.js":"22500","./pages/Container/Supervision/Cockpit/mockData":"51804","./pages/Container/Supervision/Cockpit/mockData.js":"51804","./pages/Container/Supervision/Dashboard":"3117","./pages/Container/Supervision/Dashboard/":"3117","./pages/Container/Supervision/Dashboard/index":"3117","./pages/Container/Supervision/Dashboard/index.css":"9770","./pages/Container/Supervision/Dashboard/index.js":"3117","./pages/Container/Supervision/EnterpriseLicense":"78079","./pages/Container/Supervision/EnterpriseLicense/":"78079","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics":"75491","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/":"75491","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/List":"88320","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/List/":"88320","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/List/index":"88320","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/List/index.js":"88320","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/View":"28737","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/View/":"28737","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/View/index":"28737","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/View/index.js":"28737","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/index":"75491","./pages/Container/Supervision/EnterpriseLicense/BranchStatistics/index.js":"75491","./pages/Container/Supervision/EnterpriseLicense/EnterpriseLicense":"71070","./pages/Container/Supervision/EnterpriseLicense/EnterpriseLicense/":"71070","./pages/Container/Supervision/EnterpriseLicense/EnterpriseLicense/index":"71070","./pages/Container/Supervision/EnterpriseLicense/EnterpriseLicense/index.js":"71070","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics":"57203","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/":"57203","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/List":"40304","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/List/":"40304","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/List/index":"40304","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/List/index.js":"40304","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/View":"61969","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/View/":"61969","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/View/index":"61969","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/View/index.js":"61969","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/index":"57203","./pages/Container/Supervision/EnterpriseLicense/StakeholderStatistics/index.js":"57203","./pages/Container/Supervision/EnterpriseLicense/index":"78079","./pages/Container/Supervision/EnterpriseLicense/index.js":"78079","./pages/Container/Supervision/ExperManage":"49306","./pages/Container/Supervision/ExperManage/":"49306","./pages/Container/Supervision/ExperManage/index":"49306","./pages/Container/Supervision/ExperManage/index.js":"49306","./pages/Container/Supervision/PersonnelLicense":"97800","./pages/Container/Supervision/PersonnelLicense/":"97800","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat":"50146","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/":"50146","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/List":"24279","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/List/":"24279","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/List/index":"24279","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/List/index.js":"24279","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge":"30765","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/":"30765","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/List":"60286","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/List/":"60286","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/List/index":"60286","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/List/index.js":"60286","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/View":"57923","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/View/":"57923","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/View/index":"57923","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/View/index.js":"57923","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/index":"30765","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/PersonInCharge/index.js":"30765","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini":"13275","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/":"13275","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/List":"3192","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/List/":"3192","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/List/index":"3192","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/List/index.js":"3192","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/View":"11721","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/View/":"11721","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/View/index":"11721","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/View/index.js":"11721","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/index":"13275","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SecurityAdmini/index.js":"13275","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice":"68100","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/":"68100","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/List":"92109","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/List/":"92109","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/List/index":"92109","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/List/index.js":"92109","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/View":"49316","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/View/":"49316","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/View/index":"49316","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/View/index.js":"49316","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/index":"68100","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialDevice/index.js":"68100","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel":"92814","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/":"92814","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/List":"30195","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/List/":"30195","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/List/index":"30195","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/List/index.js":"30195","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/View":"5782","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/View/":"5782","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/View/index":"5782","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/View/index.js":"5782","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/index":"92814","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/SpecialPersonnel/index.js":"92814","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/index":"50146","./pages/Container/Supervision/PersonnelLicense/BranchCompanyStat/index.js":"50146","./pages/Container/Supervision/PersonnelLicense/PersonInCharge":"64443","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/":"64443","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/List":"83416","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/List/":"83416","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/List/index":"83416","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/List/index.js":"83416","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/View":"91945","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/View/":"91945","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/View/index":"91945","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/View/index.js":"91945","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/index":"64443","./pages/Container/Supervision/PersonnelLicense/PersonInCharge/index.js":"64443","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini":"78601","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/":"78601","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/List":"65962","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/List/":"65962","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/List/index":"65962","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/List/index.js":"65962","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/View":"15879","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/View/":"15879","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/View/index":"15879","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/View/index.js":"15879","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/index":"78601","./pages/Container/Supervision/PersonnelLicense/SecurityAdmini/index.js":"78601","./pages/Container/Supervision/PersonnelLicense/SpecialDevice":"44646","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/":"44646","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/List":"52299","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/List/":"52299","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/List/index":"52299","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/List/index.js":"52299","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/View":"20478","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/View/":"20478","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/View/index":"20478","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/View/index.js":"20478","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/index":"44646","./pages/Container/Supervision/PersonnelLicense/SpecialDevice/index.js":"44646","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel":"98624","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/":"98624","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/List":"59673","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/List/":"59673","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/List/index":"59673","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/List/index.js":"59673","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/View":"92104","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/View/":"92104","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/View/index":"92104","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/View/index.js":"92104","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/index":"98624","./pages/Container/Supervision/PersonnelLicense/SpecialPersonnel/index.js":"98624","./pages/Container/Supervision/PersonnelLicense/StakeholderStat":"90673","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/":"90673","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/List":"87474","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/List/":"87474","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/List/index":"87474","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/List/index.js":"87474","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge":"328","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/":"328","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/List":"74401","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/List/":"74401","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/List/index":"74401","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/List/index.js":"74401","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/View":"43424","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/View/":"43424","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/View/index":"43424","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/View/index.js":"43424","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/index":"328","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/PersonInCharge/index.js":"328","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini":"47170","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/":"47170","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/List":"76183","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/List/":"76183","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/List/index":"76183","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/List/index.js":"76183","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/View":"58882","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/View/":"58882","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/View/index":"58882","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/View/index.js":"58882","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/index":"47170","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SecurityAdmini/index.js":"47170","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice":"92627","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/":"92627","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/List":"82640","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/List/":"82640","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/List/index":"82640","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/List/index.js":"82640","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/View":"54033","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/View/":"54033","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/View/index":"54033","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/View/index.js":"54033","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/index":"92627","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialDevice/index.js":"92627","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel":"35299","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/":"35299","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/List":"60480","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/List/":"60480","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/List/index":"60480","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/List/index.js":"60480","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/View":"897","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/View/":"897","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/View/index":"897","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/View/index.js":"897","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/index":"35299","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/SpecialPersonnel/index.js":"35299","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/index":"90673","./pages/Container/Supervision/PersonnelLicense/StakeholderStat/index.js":"90673","./pages/Container/Supervision/PersonnelLicense/index":"97800","./pages/Container/Supervision/PersonnelLicense/index.js":"97800","./pages/Container/Supervision/index":"38146","./pages/Container/Supervision/index.js":"38146","./pages/Container/Supervision/test2":"98915","./pages/Container/Supervision/test2/":"98915","./pages/Container/Supervision/test2/index":"98915","./pages/Container/Supervision/test2/index.js":"98915","./pages/Container/Test":"29259","./pages/Container/Test/":"29259","./pages/Container/Test/index":"29259","./pages/Container/Test/index.js":"29259","./pages/Container/index":"4474","./pages/Container/index copy":"58237","./pages/Container/index copy.js":"58237","./pages/Container/index.js":"4474","./pages/Container/index.less":"1589","./pages/index":"58682","./pages/index.js":"58682"};function i(e){return n(o(e))}function o(e){if(!n.o(r,e)){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=o,e.exports=i,i.id=10016},12298(){},61345(){},8258(e){"use strict";e.exports=JSON.parse('{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":500101,"name":"万州区","center":[108.380246,30.807807],"centroid":[108.406819,30.704054],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":0,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.034778,30.574187],[108.052847,30.572094],[108.062667,30.574429],[108.072537,30.582159],[108.083339,30.579582],[108.088593,30.572617],[108.103863,30.573382],[108.105631,30.591458],[108.111621,30.59343],[108.127187,30.586104],[108.126647,30.577972],[108.120067,30.576965],[108.12645,30.564],[108.143587,30.566215],[108.153063,30.545879],[108.152523,30.535931],[108.163374,30.540805],[108.171378,30.539314],[108.165633,30.524411],[108.175552,30.510633],[108.184537,30.518167],[108.195045,30.514501],[108.207811,30.49766],[108.230496,30.476705],[108.232755,30.45502],[108.241937,30.443773],[108.223622,30.421274],[108.236732,30.409216],[108.254261,30.403529],[108.261479,30.388605],[108.275031,30.405546],[108.296538,30.401109],[108.298944,30.407562],[108.315835,30.425387],[108.317062,30.433129],[108.33248,30.449336],[108.338814,30.470337],[108.344657,30.476987],[108.378734,30.534884],[108.394593,30.536737],[108.404315,30.548295],[108.410404,30.543261],[108.409717,30.532749],[108.402253,30.529688],[108.399553,30.520504],[108.409962,30.517563],[108.412368,30.503059],[108.427786,30.512567],[108.42101,30.497176],[108.424054,30.488956],[108.440994,30.491011],[108.45268,30.495968],[108.455086,30.489319],[108.479146,30.488956],[108.491765,30.501488],[108.513124,30.501407],[108.528297,30.487505],[108.542929,30.491978],[108.55707,30.486014],[108.564926,30.468564],[108.569935,30.470418],[108.581719,30.485893],[108.591245,30.487787],[108.590606,30.494718],[108.598561,30.493872],[108.611376,30.502173],[108.604551,30.510795],[108.621737,30.515468],[108.620116,30.52288],[108.628611,30.525176],[108.649332,30.537824],[108.649725,30.554215],[108.64344,30.562027],[108.639904,30.574751],[108.654487,30.585017],[108.666223,30.5886],[108.690479,30.586708],[108.700004,30.561786],[108.699415,30.544389],[108.711592,30.537864],[108.715815,30.530373],[108.711887,30.523203],[108.726176,30.515548],[108.723966,30.507572],[108.744196,30.494799],[108.761529,30.505315],[108.77292,30.503502],[108.788534,30.51293],[108.799239,30.50592],[108.806948,30.491414],[108.839011,30.50318],[108.853005,30.514984],[108.854429,30.521913],[108.871663,30.532749],[108.893121,30.557799],[108.894643,30.56702],[108.90952,30.581273],[108.869896,30.610979],[108.871565,30.618103],[108.901713,30.646792],[108.899946,30.676438],[108.896312,30.684039],[108.884331,30.687337],[108.883546,30.695661],[108.872007,30.690112],[108.836016,30.678449],[108.828699,30.679414],[108.823347,30.69168],[108.818094,30.693771],[108.785883,30.683516],[108.779254,30.685125],[108.781022,30.697028],[108.79261,30.706558],[108.789762,30.714277],[108.763444,30.713031],[108.766586,30.720548],[108.762609,30.728106],[108.76639,30.74141],[108.754998,30.740044],[108.749842,30.74555],[108.740169,30.775527],[108.74724,30.782116],[108.740808,30.787259],[108.738549,30.808026],[108.733393,30.81405],[108.715177,30.815094],[108.699955,30.811841],[108.698482,30.822885],[108.685127,30.835976],[108.685078,30.845773],[108.671968,30.852116],[108.665977,30.867972],[108.653014,30.89105],[108.634798,30.885271],[108.625419,30.875358],[108.621589,30.888561],[108.623013,30.912837],[108.628169,30.918253],[108.619233,30.926999],[108.61884,30.934741],[108.608578,30.93807],[108.593307,30.920259],[108.566448,30.912396],[108.552602,30.915405],[108.537577,30.958123],[108.523632,30.973159],[108.531243,30.978051],[108.533894,30.996251],[108.51666,30.990559],[108.506643,30.992604],[108.501094,30.98651],[108.50409,30.977289],[108.496626,30.972839],[108.486413,30.977008],[108.460537,30.967426],[108.454743,30.970232],[108.45327,30.988755],[108.455626,30.994728],[108.440356,31.002545],[108.426509,30.998216],[108.41497,30.998897],[108.395674,30.991641],[108.372792,30.969791],[108.355214,30.960408],[108.339649,30.963135],[108.349027,30.939153],[108.360861,30.932976],[108.346277,30.921222],[108.300269,30.901041],[108.29202,30.892976],[108.268402,30.881659],[108.260055,30.872789],[108.243803,30.882261],[108.244294,30.89113],[108.228237,30.881298],[108.231184,30.87612],[108.225488,30.860908],[108.229956,30.856171],[108.218417,30.852839],[108.200102,30.839188],[108.197254,30.833647],[108.18218,30.824211],[108.167106,30.827182],[108.157482,30.834771],[108.152179,30.831278],[108.131704,30.832001],[108.126057,30.840875],[108.122866,30.833487],[108.109608,30.82931],[108.105287,30.841356],[108.096646,30.84782],[108.090115,30.871545],[108.101654,30.878007],[108.081817,30.885712],[108.071751,30.892695],[108.069149,30.888281],[108.041112,30.876522],[108.0363,30.8701],[108.029426,30.884508],[108.009392,30.907662],[108.000849,30.911915],[107.994711,30.908665],[107.986953,30.901924],[107.95597,30.882983],[107.954202,30.872428],[107.929504,30.859342],[107.896508,30.834932],[107.876131,30.813287],[107.88492,30.806138],[107.905592,30.77601],[107.908243,30.762911],[107.918653,30.75829],[107.959112,30.719262],[108.011405,30.709814],[108.03517,30.715362],[108.047544,30.723684],[108.074894,30.723121],[108.086678,30.713714],[108.074844,30.696304],[108.082259,30.677926],[108.079558,30.664532],[108.0554,30.660027],[108.042585,30.662481],[108.025645,30.648844],[108.023091,30.63617],[108.016954,30.629571],[108.025252,30.60289],[108.033697,30.592424],[108.028051,30.587432],[108.034778,30.574187]]]]}},{"type":"Feature","properties":{"adcode":500102,"name":"涪陵区","center":[107.394905,29.703652],"centroid":[107.334026,29.658582],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":1,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.701575,29.615443],[107.698482,29.618614],[107.713752,29.642555],[107.718073,29.65682],[107.696616,29.660315],[107.684733,29.666532],[107.674176,29.663362],[107.670101,29.675064],[107.6565,29.686156],[107.64447,29.687821],[107.630427,29.701714],[107.632784,29.719016],[107.640345,29.740701],[107.625075,29.753896],[107.64226,29.76303],[107.638529,29.772976],[107.638627,29.813274],[107.622669,29.802562],[107.605336,29.808161],[107.605238,29.832423],[107.595369,29.835222],[107.604256,29.852014],[107.613585,29.856111],[107.616973,29.865884],[107.626892,29.874522],[107.613094,29.876955],[107.598707,29.888632],[107.602979,29.897389],[107.59473,29.917657],[107.579361,29.923939],[107.573126,29.933827],[107.57946,29.943877],[107.571898,29.951049],[107.56193,29.946146],[107.546807,29.958585],[107.546905,29.965675],[107.53355,29.968551],[107.523779,29.978678],[107.515186,29.959436],[107.500554,29.960611],[107.498197,29.972481],[107.487443,29.972076],[107.471338,29.989453],[107.466968,29.998606],[107.453171,30.001441],[107.448064,29.999092],[107.421156,29.967944],[107.415755,29.970577],[107.383545,29.926614],[107.387129,29.921993],[107.377505,29.910523],[107.379666,29.899132],[107.369354,29.906794],[107.360762,29.897227],[107.342005,29.892929],[107.335818,29.884415],[107.337193,29.873062],[107.323445,29.852947],[107.313084,29.845809],[107.299827,29.847472],[107.29801,29.839603],[107.272379,29.837291],[107.270857,29.851447],[107.265161,29.847472],[107.240512,29.841347],[107.229317,29.84374],[107.210806,29.840292],[107.206583,29.824958],[107.212279,29.816276],[107.198039,29.809622],[107.186992,29.79473],[107.153111,29.784827],[107.111572,29.76299],[107.102635,29.754546],[107.086726,29.761813],[107.070277,29.758524],[107.070032,29.751217],[107.041406,29.734407],[107.027166,29.717189],[107.009195,29.712762],[107.002223,29.714468],[106.993581,29.679331],[106.975315,29.634142],[106.966624,29.599546],[106.958768,29.582508],[106.953268,29.551311],[106.953612,29.535811],[106.947278,29.510826],[106.945952,29.497029],[106.964415,29.488685],[106.98052,29.488767],[106.993925,29.482579],[107.00453,29.471058],[107.012927,29.487708],[107.019997,29.487057],[107.015873,29.473338],[107.034581,29.467435],[107.034482,29.453103],[107.025055,29.441782],[107.029228,29.410827],[107.034581,29.406713],[107.026381,29.402802],[107.035121,29.391231],[107.051619,29.394205],[107.052552,29.388705],[107.043321,29.378437],[107.07229,29.362829],[107.083387,29.359813],[107.10018,29.361606],[107.114812,29.366741],[107.109166,29.383856],[107.110442,29.391598],[107.125124,29.387564],[107.134158,29.394613],[107.146827,29.396365],[107.142947,29.408179],[107.134846,29.411438],[107.148741,29.419259],[107.155272,29.417304],[107.16082,29.424432],[107.167056,29.420603],[107.173096,29.408342],[107.185911,29.412945],[107.203244,29.411316],[107.199561,29.399135],[107.214439,29.39775],[107.207221,29.385934],[107.20732,29.366293],[107.225487,29.367801],[107.239285,29.364744],[107.241691,29.379415],[107.237713,29.394817],[107.226666,29.406835],[107.227598,29.418159],[107.240512,29.426795],[107.245422,29.424391],[107.260938,29.429035],[107.262264,29.436162],[107.277338,29.440357],[107.30567,29.465318],[107.313526,29.487912],[107.323248,29.497558],[107.328993,29.509321],[107.348683,29.515547],[107.358601,29.51575],[107.365868,29.522383],[107.380599,29.523197],[107.391548,29.530969],[107.427491,29.505658],[107.431762,29.483475],[107.441386,29.491575],[107.450519,29.490028],[107.463826,29.498617],[107.4625,29.502117],[107.475905,29.50635],[107.478507,29.497151],[107.513664,29.461165],[107.532666,29.423047],[107.546562,29.431845],[107.552798,29.447809],[107.56139,29.453062],[107.574206,29.452533],[107.577446,29.462427],[107.595958,29.480951],[107.613143,29.479526],[107.620558,29.483638],[107.615009,29.512373],[107.607546,29.514652],[107.608135,29.532474],[107.629003,29.539147],[107.651197,29.553304],[107.654634,29.562457],[107.666958,29.573804],[107.687532,29.600481],[107.69804,29.605889],[107.701575,29.615443]]]]}},{"type":"Feature","properties":{"adcode":500103,"name":"渝中区","center":[106.56288,29.556742],"centroid":[106.540387,29.549305],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":2,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.588199,29.571242],[106.572487,29.562619],[106.560849,29.567175],[106.545382,29.566483],[106.530407,29.552369],[106.502321,29.557494],[106.494022,29.554809],[106.482778,29.548097],[106.495594,29.546958],[106.500995,29.529789],[106.532272,29.52869],[106.539441,29.540489],[106.556185,29.5411],[106.583731,29.547812],[106.589623,29.556518],[106.588199,29.571242]]]]}},{"type":"Feature","properties":{"adcode":500104,"name":"大渡口区","center":[106.48613,29.481002],"centroid":[106.458637,29.417574],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":3,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.424298,29.426306],[106.423071,29.426591],[106.417522,29.420563],[106.416786,29.430175],[106.410108,29.439176],[106.406965,29.439054],[106.398422,29.440438],[106.393708,29.429361],[106.398471,29.413638],[106.392726,29.408831],[106.398225,29.386016],[106.405738,29.380963],[106.409568,29.368086],[106.39631,29.357286],[106.400877,29.340777],[106.411876,29.342245],[106.435542,29.352965],[106.441926,29.358916],[106.455036,29.380596],[106.469619,29.389153],[106.49196,29.39775],[106.509735,29.397506],[106.528197,29.388338],[106.534924,29.392005],[106.526528,29.411275],[106.498343,29.446913],[106.502075,29.47745],[106.509538,29.481765],[106.521765,29.479974],[106.523729,29.485673],[106.50291,29.494994],[106.480569,29.490273],[106.468097,29.498128],[106.454888,29.483556],[106.462696,29.485266],[106.47065,29.475048],[106.458915,29.472443],[106.451942,29.456401],[106.458767,29.448379],[106.454545,29.430623],[106.457884,29.41983],[106.451402,29.414127],[106.439372,29.417834],[106.430436,29.415512],[106.424298,29.426306]]]]}},{"type":"Feature","properties":{"adcode":500105,"name":"江北区","center":[106.532844,29.575352],"centroid":[106.707043,29.613282],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":4,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.46191,29.608247],[106.451942,29.586452],[106.463432,29.581165],[106.487688,29.555135],[106.494022,29.554809],[106.502321,29.557494],[106.530407,29.552369],[106.545382,29.566483],[106.560849,29.567175],[106.572487,29.562619],[106.588199,29.571242],[106.581177,29.578766],[106.580392,29.590275],[106.589672,29.609344],[106.602242,29.615565],[106.623307,29.614995],[106.633274,29.592023],[106.641916,29.586818],[106.65645,29.591861],[106.672654,29.566321],[106.683652,29.562131],[106.692343,29.564287],[106.709627,29.577627],[106.730937,29.583402],[106.740512,29.589665],[106.748614,29.607718],[106.766977,29.610401],[106.792461,29.604059],[106.801152,29.589055],[106.821087,29.591576],[106.843527,29.57657],[106.85045,29.575431],[106.861547,29.602067],[106.873086,29.615809],[106.893659,29.657064],[106.87775,29.659339],[106.866359,29.646985],[106.850548,29.659908],[106.833706,29.6632],[106.825703,29.659502],[106.819811,29.663647],[106.822118,29.67153],[106.809401,29.674699],[106.806701,29.671123],[106.793001,29.678599],[106.78323,29.669986],[106.782543,29.662428],[106.754162,29.651578],[106.747926,29.655154],[106.749988,29.663606],[106.744735,29.670433],[106.741297,29.662184],[106.73462,29.667263],[106.729906,29.646294],[106.723915,29.640604],[106.712671,29.646945],[106.70948,29.631337],[106.687237,29.623654],[106.648054,29.63719],[106.621834,29.635199],[106.61162,29.639873],[106.602929,29.634386],[106.595613,29.638572],[106.582798,29.633695],[106.579213,29.619061],[106.57337,29.620362],[106.562617,29.603734],[106.562175,29.589543],[106.549851,29.581531],[106.530308,29.587469],[106.506543,29.573032],[106.497754,29.573113],[106.486363,29.585639],[106.485724,29.596984],[106.492009,29.599424],[106.482434,29.613329],[106.478506,29.609751],[106.46191,29.608247]]]]}},{"type":"Feature","properties":{"adcode":500106,"name":"沙坪坝区","center":[106.4542,29.541224],"centroid":[106.368248,29.624462],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":5,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.482778,29.548097],[106.494022,29.554809],[106.487688,29.555135],[106.463432,29.581165],[106.451942,29.586452],[106.46191,29.608247],[106.462843,29.616296],[106.453121,29.620321],[106.45209,29.632109],[106.468293,29.645969],[106.469766,29.657714],[106.457589,29.668889],[106.448603,29.661453],[106.448702,29.652187],[106.424396,29.65747],[106.429061,29.662956],[106.426508,29.680021],[106.433431,29.711706],[106.442073,29.730387],[106.442908,29.743624],[106.431418,29.749146],[106.417768,29.750202],[106.40947,29.738833],[106.39361,29.740457],[106.382758,29.747847],[106.380647,29.744233],[106.366604,29.746994],[106.365327,29.735504],[106.32968,29.732702],[106.327126,29.728519],[106.317797,29.738752],[106.305669,29.736641],[106.297076,29.706467],[106.285636,29.697896],[106.280431,29.703298],[106.278712,29.67669],[106.284506,29.675268],[106.287698,29.663484],[106.2794,29.652553],[106.287649,29.635849],[106.279105,29.637841],[106.273017,29.631215],[106.282493,29.626744],[106.274882,29.612231],[106.265602,29.605889],[106.260005,29.592633],[106.251707,29.559406],[106.253425,29.532841],[106.264031,29.525354],[106.285488,29.532881],[106.293639,29.531254],[106.297322,29.542442],[106.305718,29.538415],[106.312789,29.544883],[106.33405,29.544029],[106.343526,29.554891],[106.356145,29.559772],[106.37392,29.546633],[106.379763,29.546958],[106.379272,29.536584],[106.390762,29.54053],[106.395083,29.547934],[106.403528,29.538903],[106.41384,29.540815],[106.411237,29.505536],[106.407506,29.492918],[106.424544,29.493325],[106.426999,29.498006],[106.44281,29.494139],[106.448063,29.509524],[106.461615,29.52808],[106.460093,29.532108],[106.483466,29.539025],[106.482778,29.548097]]]]}},{"type":"Feature","properties":{"adcode":500107,"name":"九龙坡区","center":[106.480989,29.523492],"centroid":[106.364401,29.428501],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":6,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.253425,29.532841],[106.253278,29.519698],[106.261969,29.516524],[106.260594,29.494262],[106.267026,29.494994],[106.26025,29.466051],[106.262705,29.451596],[106.278565,29.449031],[106.285636,29.441986],[106.298549,29.440764],[106.30724,29.434248],[106.307339,29.426835],[106.320596,29.427976],[106.323002,29.420481],[106.317257,29.415227],[106.329041,29.413679],[106.331005,29.39555],[106.322314,29.38732],[106.314409,29.388827],[106.30891,29.379985],[106.295554,29.378763],[106.294425,29.384549],[106.284359,29.38516],[106.282248,29.368167],[106.275668,29.363236],[106.277829,29.352924],[106.267468,29.350234],[106.261232,29.335519],[106.274539,29.32871],[106.276945,29.322269],[106.289171,29.320679],[106.27994,29.286913],[106.298697,29.256483],[106.311905,29.254769],[106.339844,29.26456],[106.3559,29.27688],[106.384035,29.283039],[106.393217,29.294948],[106.385999,29.312401],[106.395525,29.339351],[106.400877,29.340777],[106.39631,29.357286],[106.409568,29.368086],[106.405738,29.380963],[106.398225,29.386016],[106.392726,29.408831],[106.398471,29.413638],[106.393708,29.429361],[106.398422,29.440438],[106.406965,29.439054],[106.408537,29.441375],[106.410599,29.440397],[106.410108,29.439176],[106.416786,29.430175],[106.417522,29.420563],[106.423071,29.426591],[106.423316,29.427202],[106.423709,29.427691],[106.423955,29.427731],[106.424249,29.426795],[106.424298,29.426306],[106.430436,29.415512],[106.439372,29.417834],[106.451402,29.414127],[106.457884,29.41983],[106.454545,29.430623],[106.458767,29.448379],[106.451942,29.456401],[106.458915,29.472443],[106.47065,29.475048],[106.462696,29.485266],[106.454888,29.483556],[106.468097,29.498128],[106.480569,29.490273],[106.50291,29.494994],[106.523729,29.485673],[106.521765,29.479974],[106.542044,29.472972],[106.552011,29.48726],[106.549851,29.495523],[106.534187,29.505454],[106.532272,29.52869],[106.500995,29.529789],[106.495594,29.546958],[106.482778,29.548097],[106.483466,29.539025],[106.460093,29.532108],[106.461615,29.52808],[106.448063,29.509524],[106.44281,29.494139],[106.426999,29.498006],[106.424544,29.493325],[106.407506,29.492918],[106.411237,29.505536],[106.41384,29.540815],[106.403528,29.538903],[106.395083,29.547934],[106.390762,29.54053],[106.379272,29.536584],[106.379763,29.546958],[106.37392,29.546633],[106.356145,29.559772],[106.343526,29.554891],[106.33405,29.544029],[106.312789,29.544883],[106.305718,29.538415],[106.297322,29.542442],[106.293639,29.531254],[106.285488,29.532881],[106.264031,29.525354],[106.253425,29.532841]]],[[[106.423955,29.427731],[106.423709,29.427691],[106.423316,29.427202],[106.423071,29.426591],[106.424298,29.426306],[106.424249,29.426795],[106.423955,29.427731]]],[[[106.410599,29.440397],[106.408537,29.441375],[106.406965,29.439054],[106.410108,29.439176],[106.410599,29.440397]]]]}},{"type":"Feature","properties":{"adcode":500108,"name":"南岸区","center":[106.560813,29.523992],"centroid":[106.660614,29.535521],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":7,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.801152,29.589055],[106.792461,29.604059],[106.766977,29.610401],[106.748614,29.607718],[106.740512,29.589665],[106.730937,29.583402],[106.709627,29.577627],[106.692343,29.564287],[106.683652,29.562131],[106.672654,29.566321],[106.65645,29.591861],[106.641916,29.586818],[106.633274,29.592023],[106.623307,29.614995],[106.602242,29.615565],[106.589672,29.609344],[106.580392,29.590275],[106.581177,29.578766],[106.588199,29.571242],[106.589623,29.556518],[106.583731,29.547812],[106.556185,29.5411],[106.539441,29.540489],[106.532272,29.52869],[106.534187,29.505454],[106.549851,29.495523],[106.552011,29.48726],[106.56954,29.485144],[106.578772,29.469878],[106.586677,29.473094],[106.59581,29.463974],[106.606808,29.474315],[106.627971,29.465847],[106.642849,29.469959],[106.655321,29.462346],[106.65866,29.46772],[106.673341,29.458437],[106.688808,29.468453],[106.683358,29.476473],[106.69308,29.483353],[106.693276,29.48897],[106.703686,29.487993],[106.705257,29.482254],[106.732115,29.483923],[106.738548,29.486731],[106.764179,29.530928],[106.7712,29.549155],[106.787993,29.576326],[106.801152,29.589055]]]]}},{"type":"Feature","properties":{"adcode":500109,"name":"北碚区","center":[106.437868,29.82543],"centroid":[106.513996,29.861006],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":8,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.648447,30.085559],[106.629101,30.079448],[106.591587,30.047071],[106.598265,30.039582],[106.596546,30.030432],[106.582209,30.022214],[106.572192,30.012698],[106.568706,29.991154],[106.55697,29.961259],[106.544941,29.935246],[106.526773,29.945822],[106.519506,29.927546],[106.505659,29.931234],[106.501338,29.922115],[106.488916,29.908415],[106.479046,29.908172],[106.477131,29.891875],[106.466967,29.882996],[106.465347,29.870832],[106.452581,29.869128],[106.462892,29.88478],[106.458522,29.887456],[106.452777,29.878212],[106.44281,29.883564],[106.46191,29.92402],[106.455281,29.926776],[106.443841,29.906834],[106.433235,29.901889],[106.423414,29.904564],[106.429601,29.892362],[106.423611,29.884334],[106.409077,29.889443],[106.396507,29.898118],[106.390958,29.906672],[106.390909,29.921304],[106.383053,29.92787],[106.339598,29.901767],[106.314409,29.884861],[106.325653,29.872737],[106.329385,29.859639],[106.336407,29.860247],[106.330956,29.848323],[106.342446,29.842523],[106.337585,29.834532],[106.345883,29.836114],[106.34225,29.816804],[106.351284,29.812422],[106.372889,29.814207],[106.344214,29.779307],[106.334197,29.771311],[106.324279,29.774843],[106.31598,29.764898],[106.305669,29.736641],[106.317797,29.738752],[106.327126,29.728519],[106.32968,29.732702],[106.365327,29.735504],[106.366604,29.746994],[106.380647,29.744233],[106.382758,29.747847],[106.39361,29.740457],[106.40947,29.738833],[106.417768,29.750202],[106.431418,29.749146],[106.442908,29.743624],[106.442073,29.730387],[106.433431,29.711706],[106.426508,29.680021],[106.429061,29.662956],[106.424396,29.65747],[106.448702,29.652187],[106.448603,29.661453],[106.457589,29.668889],[106.457147,29.687415],[106.469373,29.697165],[106.487197,29.699399],[106.496134,29.68969],[106.506887,29.685425],[106.514743,29.694281],[106.512337,29.703461],[106.518377,29.71199],[106.536741,29.723321],[106.536741,29.730306],[106.524956,29.742609],[106.520144,29.764614],[106.515676,29.769688],[106.530996,29.775979],[106.532469,29.767333],[106.54116,29.763112],[106.530799,29.758687],[106.532076,29.749471],[106.5417,29.754871],[106.556529,29.754789],[106.57175,29.763355],[106.589181,29.754992],[106.588543,29.76161],[106.604746,29.769322],[106.592864,29.784705],[106.609018,29.799437],[106.601653,29.799843],[106.593011,29.808932],[106.5936,29.79964],[106.584909,29.799599],[106.587217,29.812665],[106.598805,29.816763],[106.598461,29.825607],[106.612848,29.832626],[106.622865,29.831327],[106.620262,29.840252],[106.634109,29.839481],[106.646581,29.849378],[106.64987,29.863857],[106.658512,29.869534],[106.668775,29.900348],[106.67506,29.897713],[106.678889,29.908212],[106.669118,29.912712],[106.679822,29.923615],[106.678497,29.92864],[106.687384,29.935489],[106.674274,29.932206],[106.674225,29.961948],[106.679724,29.97961],[106.677465,29.98601],[106.676385,30.015087],[106.678889,30.026141],[106.670739,30.034805],[106.678153,30.058121],[106.677024,30.063989],[106.648447,30.085559]]]]}},{"type":"Feature","properties":{"adcode":500110,"name":"綦江区","center":[106.651417,29.028091],"centroid":[106.722706,28.87864],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":9,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.057462,28.894785],[107.04337,28.919879],[107.053288,28.919183],[107.057315,28.932771],[107.051275,28.942143],[107.043124,28.945785],[107.02913,28.941284],[107.015971,28.952087],[107.013614,28.969599],[107.022256,28.974058],[107.02967,28.985717],[107.024564,28.995983],[107.01715,28.998724],[107.003892,29.016023],[106.990045,29.021094],[106.979832,29.031766],[106.981158,29.039861],[106.988671,29.043459],[106.977034,29.056009],[106.975266,29.050532],[106.96358,29.058217],[106.954545,29.059239],[106.950421,29.071787],[106.938685,29.041906],[106.926361,29.047793],[106.920567,29.045749],[106.915362,29.054538],[106.906131,29.051758],[106.910256,29.068844],[106.921844,29.100475],[106.911483,29.114775],[106.905542,29.11596],[106.891695,29.131769],[106.885263,29.141817],[106.868028,29.151456],[106.858012,29.149046],[106.849468,29.1575],[106.821235,29.149577],[106.812936,29.165014],[106.809941,29.178161],[106.800121,29.179958],[106.793689,29.169709],[106.788386,29.177181],[106.776405,29.163666],[106.768843,29.161298],[106.767665,29.169587],[106.757894,29.170159],[106.748908,29.176691],[106.729464,29.162604],[106.712377,29.179182],[106.699561,29.177181],[106.686746,29.188042],[106.680313,29.173548],[106.676631,29.176855],[106.668234,29.168158],[106.665092,29.158439],[106.65316,29.16142],[106.656205,29.175385],[106.642603,29.173874],[106.623896,29.160154],[106.604599,29.126908],[106.588395,29.12654],[106.585007,29.131442],[106.574451,29.128215],[106.574205,29.116777],[106.581177,29.110076],[106.578084,29.09312],[106.584418,29.079634],[106.583436,29.071256],[106.589672,29.056663],[106.585695,29.053148],[106.589525,29.030008],[106.59414,29.019131],[106.608773,29.014756],[106.592471,29.005963],[106.585204,29.008294],[106.57833,29.022443],[106.562666,29.016555],[106.557118,29.006004],[106.549703,29.00535],[106.551815,29.024692],[106.544646,29.036386],[106.526331,29.036141],[106.524956,29.044195],[106.514547,29.059852],[106.504825,29.063285],[106.498,29.071624],[106.501044,29.0771],[106.49034,29.083476],[106.484497,29.065738],[106.489849,29.042969],[106.478113,29.024774],[106.475413,29.012179],[106.454447,29.0177],[106.444135,29.038103],[106.463874,29.042069],[106.44281,29.050573],[106.442515,29.039739],[106.427834,29.047588],[106.419732,29.047834],[106.404314,29.035364],[106.398765,29.027023],[106.385803,29.029476],[106.391842,29.022443],[106.397587,28.993693],[106.405738,28.979622],[106.399846,28.962521],[106.408733,28.95401],[106.402792,28.940956],[106.410992,28.922294],[106.411826,28.891182],[106.415264,28.876236],[106.43623,28.870217],[106.446443,28.863337],[106.455723,28.836427],[106.461861,28.831019],[106.47448,28.833027],[106.476199,28.826759],[106.490585,28.806518],[106.508753,28.795864],[106.521126,28.794266],[106.523041,28.78111],[106.533795,28.778733],[106.53404,28.770904],[106.547985,28.769838],[106.561831,28.756064],[106.563894,28.746184],[106.559229,28.731546],[106.56026,28.72072],[106.576857,28.702387],[106.582356,28.702223],[106.587315,28.691517],[106.598068,28.691886],[106.606072,28.685035],[106.619182,28.689178],[106.614272,28.680276],[106.61766,28.667311],[106.626891,28.659269],[106.635238,28.658448],[106.643684,28.664316],[106.651393,28.64942],[106.641179,28.644167],[106.620213,28.645727],[106.618887,28.637272],[106.62861,28.63444],[106.636809,28.623235],[106.636466,28.613219],[106.629641,28.604762],[106.614665,28.609442],[106.607054,28.594292],[106.616825,28.562795],[106.615254,28.549651],[106.600622,28.541353],[106.584615,28.523276],[106.568657,28.523646],[106.560309,28.513374],[106.56792,28.505278],[106.562814,28.497388],[106.568018,28.484031],[106.589181,28.488387],[106.591489,28.499073],[106.584958,28.50684],[106.593404,28.510169],[106.610147,28.497922],[106.632734,28.503553],[106.631114,28.490237],[106.649772,28.47955],[106.661066,28.491881],[106.678349,28.481359],[106.688268,28.484647],[106.696713,28.4784],[106.693276,28.45653],[106.708547,28.450486],[106.716207,28.456365],[106.725241,28.454433],[106.732901,28.46356],[106.746649,28.466643],[106.744833,28.489867],[106.726027,28.518551],[106.723965,28.529891],[106.728187,28.54201],[106.73732,28.553307],[106.754358,28.558318],[106.765161,28.558153],[106.779891,28.56378],[106.780922,28.574869],[106.766634,28.580166],[106.758581,28.588133],[106.759023,28.611084],[106.773901,28.611946],[106.780333,28.625],[106.792559,28.616256],[106.793443,28.606486],[106.800514,28.602134],[106.807732,28.589447],[106.827078,28.598562],[106.833264,28.613219],[106.829287,28.622742],[106.856146,28.622496],[106.866359,28.624507],[106.871515,28.658817],[106.883201,28.69246],[106.862136,28.690983],[106.854722,28.697095],[106.853936,28.706324],[106.862529,28.707555],[106.852905,28.724452],[106.828354,28.737696],[106.824033,28.756146],[106.833363,28.768772],[106.838469,28.765985],[106.845393,28.781028],[106.862333,28.780577],[106.864591,28.77447],[106.874215,28.779716],[106.886392,28.794716],[106.897882,28.80115],[106.905345,28.79611],[106.923071,28.810042],[106.938391,28.792381],[106.94227,28.782135],[106.950224,28.777626],[106.951746,28.766969],[106.967803,28.774101],[106.987885,28.774675],[106.988671,28.790331],[106.981355,28.804347],[106.980814,28.812951],[106.98926,28.829585],[106.983368,28.851173],[106.997853,28.853507],[107.005169,28.859159],[107.019114,28.860675],[107.016118,28.882501],[107.036594,28.88115],[107.04062,28.863869],[107.058689,28.868947],[107.045579,28.874926],[107.052552,28.8911],[107.057462,28.894785]]]]}},{"type":"Feature","properties":{"adcode":500111,"name":"大足区","center":[105.715319,29.700498],"centroid":[105.742721,29.65],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":10,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.482777,29.679127],[105.490683,29.675186],[105.487688,29.663159],[105.496673,29.648652],[105.509243,29.637962],[105.50561,29.609344],[105.517738,29.586493],[105.536642,29.59121],[105.542681,29.586412],[105.542534,29.57413],[105.549703,29.572096],[105.561045,29.588892],[105.580047,29.591617],[105.590899,29.590397],[105.594483,29.575553],[105.602241,29.569941],[105.599983,29.553019],[105.592175,29.549928],[105.59522,29.539432],[105.590015,29.524011],[105.583239,29.515588],[105.593059,29.517744],[105.595711,29.504152],[105.607642,29.508262],[105.619967,29.504803],[105.620556,29.494017],[105.631506,29.485917],[105.629738,29.478386],[105.637152,29.473623],[105.646236,29.486121],[105.639509,29.489052],[105.641179,29.505861],[105.648397,29.494139],[105.662636,29.499431],[105.65311,29.485022],[105.658119,29.481317],[105.657431,29.468168],[105.662194,29.460025],[105.687236,29.446506],[105.714929,29.464259],[105.725486,29.454121],[105.724013,29.449967],[105.735061,29.445162],[105.737663,29.435592],[105.727646,29.422844],[105.73403,29.417386],[105.722835,29.397872],[105.741002,29.397628],[105.728678,29.384875],[105.735159,29.38459],[105.747582,29.372487],[105.767762,29.379578],[105.773507,29.394857],[105.770561,29.408302],[105.802674,29.437139],[105.817895,29.490395],[105.825899,29.51396],[105.834933,29.527917],[105.855016,29.540042],[105.868617,29.537316],[105.876817,29.541791],[105.873969,29.552572],[105.890467,29.570429],[105.924347,29.595805],[105.938243,29.613166],[105.946099,29.626988],[105.953513,29.630199],[105.969815,29.646294],[105.982532,29.671936],[105.997361,29.6645],[106.005659,29.682581],[106.031732,29.722184],[106.036838,29.726692],[106.025987,29.734854],[106.028344,29.749552],[106.014448,29.752841],[106.010913,29.747279],[106.001289,29.748375],[105.997508,29.756819],[105.998588,29.768916],[105.991223,29.781174],[105.976542,29.784746],[105.970601,29.779876],[105.957638,29.781662],[105.944233,29.775979],[105.922334,29.788236],[105.904706,29.785598],[105.906523,29.795582],[105.893806,29.802967],[105.888208,29.790347],[105.893904,29.785882],[105.888012,29.77468],[105.878584,29.769525],[105.868911,29.756982],[105.83076,29.757997],[105.822461,29.762827],[105.820939,29.773381],[105.806945,29.771636],[105.808418,29.783569],[105.789269,29.794121],[105.778368,29.811367],[105.77719,29.801831],[105.763883,29.793512],[105.746354,29.801466],[105.721411,29.78779],[105.713898,29.789129],[105.714684,29.79684],[105.72308,29.809825],[105.735846,29.819319],[105.725339,29.832747],[105.738252,29.845646],[105.738105,29.856516],[105.733146,29.860693],[105.719397,29.856557],[105.720625,29.849662],[105.708939,29.840576],[105.695436,29.843497],[105.690428,29.852298],[105.677759,29.854286],[105.661801,29.84082],[105.656204,29.844389],[105.641473,29.836844],[105.617659,29.845728],[105.605875,29.827879],[105.604107,29.816844],[105.588444,29.823133],[105.580293,29.790753],[105.587511,29.784868],[105.572289,29.768713],[105.576218,29.757388],[105.574941,29.744477],[105.564335,29.737818],[105.56571,29.724012],[105.557952,29.726651],[105.549212,29.737615],[105.542829,29.726529],[105.550341,29.722022],[105.52962,29.707604],[105.538851,29.69489],[105.527951,29.692412],[105.520095,29.703583],[105.49903,29.709553],[105.49029,29.720275],[105.482188,29.718082],[105.473448,29.707523],[105.474234,29.697124],[105.481353,29.692737],[105.482777,29.679127]]]]}},{"type":"Feature","properties":{"adcode":500112,"name":"渝北区","center":[106.512851,29.601451],"centroid":[106.746928,29.810209],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":11,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.893659,29.657064],[106.906082,29.678152],[106.913742,29.684043],[106.930534,29.689],[106.942564,29.705857],[106.945609,29.724743],[106.972222,29.763924],[106.96466,29.774518],[106.958522,29.769485],[106.952532,29.784259],[106.945167,29.784178],[106.952237,29.792214],[106.939913,29.804347],[106.944234,29.812949],[106.942859,29.839765],[106.936574,29.842483],[106.937114,29.851893],[106.944528,29.855908],[106.945461,29.875454],[106.953416,29.88109],[106.962058,29.901929],[106.974529,29.916603],[106.98489,29.934314],[106.970012,29.938326],[106.965691,29.951981],[106.946934,29.953683],[106.942515,29.964824],[106.935248,29.964054],[106.931467,29.975397],[106.909077,29.971873],[106.896654,29.978597],[106.889928,29.987954],[106.88708,29.981392],[106.877947,29.98601],[106.868323,29.978962],[106.864444,29.984916],[106.866506,30.012293],[106.856195,30.013872],[106.861449,30.028165],[106.842054,30.049135],[106.836996,30.049742],[106.830171,30.033955],[106.812495,30.028975],[106.799974,30.030554],[106.797764,30.023145],[106.785587,30.017233],[106.768598,30.017274],[106.764228,30.024602],[106.759416,30.018893],[106.742132,30.025938],[106.73241,30.026829],[106.726076,30.034319],[106.72583,30.057068],[106.698825,30.076535],[106.698726,30.098708],[106.703195,30.118126],[106.689643,30.117802],[106.688857,30.124031],[106.673881,30.12213],[106.668382,30.101742],[106.656352,30.086165],[106.648447,30.085559],[106.677024,30.063989],[106.678153,30.058121],[106.670739,30.034805],[106.678889,30.026141],[106.676385,30.015087],[106.677465,29.98601],[106.679724,29.97961],[106.674225,29.961948],[106.674274,29.932206],[106.687384,29.935489],[106.678497,29.92864],[106.679822,29.923615],[106.669118,29.912712],[106.678889,29.908212],[106.67506,29.897713],[106.668775,29.900348],[106.658512,29.869534],[106.64987,29.863857],[106.646581,29.849378],[106.634109,29.839481],[106.620262,29.840252],[106.622865,29.831327],[106.612848,29.832626],[106.598461,29.825607],[106.598805,29.816763],[106.587217,29.812665],[106.584909,29.799599],[106.5936,29.79964],[106.593011,29.808932],[106.601653,29.799843],[106.609018,29.799437],[106.592864,29.784705],[106.604746,29.769322],[106.588543,29.76161],[106.589181,29.754992],[106.57175,29.763355],[106.556529,29.754789],[106.5417,29.754871],[106.532076,29.749471],[106.530799,29.758687],[106.54116,29.763112],[106.532469,29.767333],[106.530996,29.775979],[106.515676,29.769688],[106.520144,29.764614],[106.524956,29.742609],[106.536741,29.730306],[106.536741,29.723321],[106.518377,29.71199],[106.512337,29.703461],[106.514743,29.694281],[106.506887,29.685425],[106.496134,29.68969],[106.487197,29.699399],[106.469373,29.697165],[106.457147,29.687415],[106.457589,29.668889],[106.469766,29.657714],[106.468293,29.645969],[106.45209,29.632109],[106.453121,29.620321],[106.462843,29.616296],[106.46191,29.608247],[106.478506,29.609751],[106.482434,29.613329],[106.492009,29.599424],[106.485724,29.596984],[106.486363,29.585639],[106.497754,29.573113],[106.506543,29.573032],[106.530308,29.587469],[106.549851,29.581531],[106.562175,29.589543],[106.562617,29.603734],[106.57337,29.620362],[106.579213,29.619061],[106.582798,29.633695],[106.595613,29.638572],[106.602929,29.634386],[106.61162,29.639873],[106.621834,29.635199],[106.648054,29.63719],[106.687237,29.623654],[106.70948,29.631337],[106.712671,29.646945],[106.723915,29.640604],[106.729906,29.646294],[106.73462,29.667263],[106.741297,29.662184],[106.744735,29.670433],[106.749988,29.663606],[106.747926,29.655154],[106.754162,29.651578],[106.782543,29.662428],[106.78323,29.669986],[106.793001,29.678599],[106.806701,29.671123],[106.809401,29.674699],[106.822118,29.67153],[106.819811,29.663647],[106.825703,29.659502],[106.833706,29.6632],[106.850548,29.659908],[106.866359,29.646985],[106.87775,29.659339],[106.893659,29.657064]]]]}},{"type":"Feature","properties":{"adcode":500113,"name":"巴南区","center":[106.519423,29.381919],"centroid":[106.751731,29.371851],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":12,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.552011,29.48726],[106.542044,29.472972],[106.521765,29.479974],[106.509538,29.481765],[106.502075,29.47745],[106.498343,29.446913],[106.526528,29.411275],[106.534924,29.392005],[106.528197,29.388338],[106.509735,29.397506],[106.49196,29.39775],[106.469619,29.389153],[106.455036,29.380596],[106.441926,29.358916],[106.435542,29.352965],[106.440404,29.350153],[106.454496,29.35427],[106.460241,29.360872],[106.478163,29.36022],[106.474431,29.35696],[106.473645,29.335722],[106.486363,29.294336],[106.508655,29.278674],[106.505021,29.268966],[106.511208,29.268069],[106.514056,29.254688],[106.519653,29.251791],[106.515774,29.232042],[106.521225,29.224614],[106.535906,29.221962],[106.539343,29.213717],[106.547788,29.212534],[106.541896,29.192369],[106.545972,29.183265],[106.562372,29.161379],[106.549998,29.153498],[106.550047,29.145493],[106.560997,29.133239],[106.574451,29.128215],[106.585007,29.131442],[106.588395,29.12654],[106.604599,29.126908],[106.623896,29.160154],[106.642603,29.173874],[106.656205,29.175385],[106.65316,29.16142],[106.665092,29.158439],[106.668234,29.168158],[106.676631,29.176855],[106.680313,29.173548],[106.686746,29.188042],[106.699561,29.177181],[106.712377,29.179182],[106.729464,29.162604],[106.748908,29.176691],[106.757894,29.170159],[106.767665,29.169587],[106.768843,29.161298],[106.776405,29.163666],[106.788386,29.177181],[106.793689,29.169709],[106.800121,29.179958],[106.809941,29.178161],[106.812936,29.165014],[106.821235,29.149577],[106.849468,29.1575],[106.858012,29.149046],[106.868028,29.151456],[106.885263,29.141817],[106.891695,29.131769],[106.891744,29.14149],[106.899355,29.155621],[106.909175,29.160562],[106.907751,29.179672],[106.896409,29.180039],[106.895574,29.190491],[106.911385,29.197472],[106.919045,29.180366],[106.945069,29.183142],[106.955527,29.190695],[106.95263,29.197104],[106.961812,29.202738],[106.968392,29.215228],[106.95754,29.228981],[106.954692,29.252199],[106.936132,29.256931],[106.933039,29.279653],[106.92312,29.280673],[106.920616,29.302411],[106.922433,29.310322],[106.919978,29.329893],[106.922531,29.403046],[106.932253,29.399746],[106.936574,29.439339],[106.933039,29.448542],[106.935297,29.464463],[106.945952,29.497029],[106.947278,29.510826],[106.953612,29.535811],[106.953268,29.551311],[106.958768,29.582508],[106.966624,29.599546],[106.975315,29.634142],[106.993581,29.679331],[107.002223,29.714468],[106.998638,29.732539],[106.990144,29.738062],[106.988818,29.748781],[106.993483,29.75824],[106.988131,29.769322],[106.972222,29.763924],[106.945609,29.724743],[106.942564,29.705857],[106.930534,29.689],[106.913742,29.684043],[106.906082,29.678152],[106.893659,29.657064],[106.873086,29.615809],[106.861547,29.602067],[106.85045,29.575431],[106.843527,29.57657],[106.821087,29.591576],[106.801152,29.589055],[106.787993,29.576326],[106.7712,29.549155],[106.764179,29.530928],[106.738548,29.486731],[106.732115,29.483923],[106.705257,29.482254],[106.703686,29.487993],[106.693276,29.48897],[106.69308,29.483353],[106.683358,29.476473],[106.688808,29.468453],[106.673341,29.458437],[106.65866,29.46772],[106.655321,29.462346],[106.642849,29.469959],[106.627971,29.465847],[106.606808,29.474315],[106.59581,29.463974],[106.586677,29.473094],[106.578772,29.469878],[106.56954,29.485144],[106.552011,29.48726]]]]}},{"type":"Feature","properties":{"adcode":500114,"name":"黔江区","center":[108.782577,29.527548],"centroid":[108.708597,29.435532],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":13,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.55869,29.13953],[108.570769,29.124416],[108.598266,29.105705],[108.587169,29.095081],[108.599396,29.086908],[108.60789,29.109014],[108.615206,29.109709],[108.614568,29.095408],[108.625665,29.08699],[108.622179,29.073422],[108.628906,29.072891],[108.646533,29.081841],[108.661313,29.071624],[108.667205,29.078776],[108.662835,29.090382],[108.669856,29.095939],[108.66416,29.103744],[108.668678,29.108156],[108.681984,29.105623],[108.686698,29.109341],[108.698777,29.101619],[108.700397,29.094427],[108.726912,29.080492],[108.747584,29.092384],[108.749008,29.10881],[108.774295,29.110485],[108.775768,29.124008],[108.784852,29.123272],[108.803756,29.129195],[108.812054,29.122047],[108.832087,29.117267],[108.833266,29.109995],[108.847702,29.105214],[108.855656,29.122659],[108.854625,29.133484],[108.882416,29.1791],[108.896607,29.209024],[108.915265,29.215513],[108.925135,29.222615],[108.925871,29.23347],[108.937607,29.244283],[108.954252,29.272066],[108.93903,29.274065],[108.919783,29.283732],[108.915462,29.293561],[108.903432,29.296416],[108.908784,29.312972],[108.919734,29.326305],[108.916591,29.334622],[108.931027,29.369634],[108.93412,29.399461],[108.943646,29.410746],[108.932009,29.431682],[108.921256,29.436895],[108.90957,29.436814],[108.89808,29.441945],[108.886541,29.440601],[108.873971,29.449397],[108.873726,29.462753],[108.866557,29.471058],[108.869846,29.485917],[108.885952,29.498047],[108.888652,29.507041],[108.886983,29.530562],[108.878439,29.53935],[108.886934,29.553101],[108.902106,29.563026],[108.913056,29.574455],[108.899995,29.584866],[108.909177,29.593284],[108.901271,29.604791],[108.897589,29.596496],[108.885903,29.588445],[108.868324,29.598001],[108.885854,29.621134],[108.887916,29.628573],[108.879618,29.639222],[108.869699,29.643002],[108.855754,29.636377],[108.84451,29.658364],[108.83302,29.651293],[108.827325,29.654382],[108.835377,29.668442],[108.828061,29.671286],[108.816473,29.644018],[108.819812,29.632435],[108.813625,29.63154],[108.804394,29.640564],[108.785637,29.633857],[108.780089,29.645522],[108.792266,29.647351],[108.79752,29.660071],[108.794132,29.671205],[108.784655,29.677177],[108.786276,29.691518],[108.760645,29.693549],[108.752592,29.689365],[108.758141,29.678721],[108.765113,29.682256],[108.775964,29.67539],[108.773018,29.661534],[108.783281,29.653772],[108.774541,29.65174],[108.765899,29.661046],[108.763002,29.653366],[108.752641,29.649017],[108.743017,29.655926],[108.740611,29.665719],[108.73359,29.671489],[108.710905,29.679168],[108.718221,29.691924],[108.710365,29.699196],[108.691166,29.68969],[108.684783,29.693509],[108.69313,29.704476],[108.681051,29.721413],[108.686649,29.740051],[108.677565,29.748537],[108.67732,29.761447],[108.681788,29.770459],[108.678449,29.777887],[108.680658,29.800167],[108.670986,29.811813],[108.656942,29.816682],[108.670347,29.819076],[108.666124,29.842726],[108.657728,29.84808],[108.662491,29.852582],[108.633226,29.855908],[108.632686,29.86487],[108.622915,29.867304],[108.60843,29.862964],[108.601409,29.8656],[108.587955,29.85388],[108.588151,29.84808],[108.577349,29.844673],[108.579902,29.831206],[108.56581,29.820861],[108.557463,29.819035],[108.534434,29.787506],[108.522503,29.763761],[108.540081,29.756779],[108.548526,29.749512],[108.547004,29.742569],[108.520244,29.730347],[108.51666,29.735666],[108.504188,29.729413],[108.515285,29.71861],[108.506446,29.708172],[108.526676,29.696759],[108.52373,29.683109],[108.503549,29.67669],[108.504139,29.666288],[108.489997,29.642515],[108.487199,29.624102],[108.499965,29.622069],[108.507036,29.611093],[108.512633,29.614467],[108.516709,29.602148],[108.534974,29.588851],[108.534532,29.572177],[108.548379,29.557575],[108.547643,29.547406],[108.536251,29.540001],[108.515334,29.543948],[108.506054,29.536868],[108.494711,29.515099],[108.501242,29.49996],[108.50954,29.50285],[108.539688,29.491697],[108.561686,29.491657],[108.585549,29.477328],[108.581228,29.464911],[108.59257,29.442963],[108.576367,29.41706],[108.555843,29.412701],[108.552995,29.390539],[108.547201,29.381697],[108.550196,29.371754],[108.561538,29.352598],[108.549705,29.328303],[108.549459,29.315378],[108.560409,29.306081],[108.573568,29.302411],[108.584272,29.285812],[108.583192,29.278063],[108.571948,29.265703],[108.575778,29.252362],[108.568314,29.236245],[108.569247,29.224941],[108.555597,29.218738],[108.548919,29.205064],[108.556775,29.184857],[108.574403,29.164115],[108.570671,29.152313],[108.55869,29.13953]]]]}},{"type":"Feature","properties":{"adcode":500115,"name":"长寿区","center":[107.074854,29.833671],"centroid":[107.140018,29.954649],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":14,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.972222,29.763924],[106.988131,29.769322],[106.993483,29.75824],[106.988818,29.748781],[106.990144,29.738062],[106.998638,29.732539],[107.002223,29.714468],[107.009195,29.712762],[107.027166,29.717189],[107.041406,29.734407],[107.070032,29.751217],[107.070277,29.758524],[107.086726,29.761813],[107.102635,29.754546],[107.111572,29.76299],[107.153111,29.784827],[107.186992,29.79473],[107.198039,29.809622],[107.212279,29.816276],[107.206583,29.824958],[107.210806,29.840292],[107.229317,29.84374],[107.240512,29.841347],[107.265161,29.847472],[107.270857,29.851447],[107.272379,29.837291],[107.29801,29.839603],[107.299827,29.847472],[107.313084,29.845809],[107.323445,29.852947],[107.337193,29.873062],[107.335818,29.884415],[107.342005,29.892929],[107.360762,29.897227],[107.369354,29.906794],[107.379666,29.899132],[107.377505,29.910523],[107.387129,29.921993],[107.383545,29.926614],[107.415755,29.970577],[107.421156,29.967944],[107.448064,29.999092],[107.453171,30.001441],[107.451501,30.008203],[107.46029,30.01533],[107.436329,30.033833],[107.374068,29.973372],[107.362824,29.979853],[107.347995,29.980501],[107.335573,29.97398],[107.325556,29.973007],[107.307094,29.992328],[107.29418,29.997917],[107.294818,30.002696],[107.31112,30.008203],[107.304688,30.0161],[107.31166,30.02023],[107.307879,30.035493],[107.294867,30.044359],[107.27724,30.043144],[107.279204,30.04873],[107.266045,30.055045],[107.26521,30.062006],[107.247534,30.07528],[107.259072,30.075887],[107.269089,30.081148],[107.271741,30.09446],[107.28328,30.091021],[107.29089,30.097939],[107.286766,30.107892],[107.295555,30.122454],[107.291381,30.136327],[107.274098,30.135841],[107.269482,30.145992],[107.288484,30.171303],[107.277044,30.181086],[107.256568,30.205903],[107.228335,30.223805],[107.221068,30.213743],[107.187335,30.181248],[107.16848,30.160306],[107.136466,30.134426],[107.13131,30.121524],[107.106563,30.113838],[107.111032,30.104251],[107.103077,30.090131],[107.093797,30.095391],[107.080147,30.094177],[107.073911,30.080986],[107.084517,30.063868],[107.075286,30.051118],[107.058395,30.043063],[107.0554,30.040553],[107.054221,30.040837],[107.053779,30.043751],[107.050588,30.053426],[107.042486,30.055085],[107.037821,30.047273],[107.042682,30.035007],[107.020636,30.036829],[107.014351,30.051604],[107.005316,30.052495],[106.998295,30.059456],[106.985332,30.084061],[106.966477,30.079894],[106.954889,30.066094],[106.956755,30.06059],[106.948604,30.040149],[106.941877,30.042739],[106.914871,30.033955],[106.913594,30.025574],[106.88433,30.0344],[106.861449,30.028165],[106.856195,30.013872],[106.866506,30.012293],[106.864444,29.984916],[106.868323,29.978962],[106.877947,29.98601],[106.88708,29.981392],[106.889928,29.987954],[106.896654,29.978597],[106.909077,29.971873],[106.931467,29.975397],[106.935248,29.964054],[106.942515,29.964824],[106.946934,29.953683],[106.965691,29.951981],[106.970012,29.938326],[106.98489,29.934314],[106.974529,29.916603],[106.962058,29.901929],[106.953416,29.88109],[106.945461,29.875454],[106.944528,29.855908],[106.937114,29.851893],[106.936574,29.842483],[106.942859,29.839765],[106.944234,29.812949],[106.939913,29.804347],[106.952237,29.792214],[106.945167,29.784178],[106.952532,29.784259],[106.958522,29.769485],[106.96466,29.774518],[106.972222,29.763924]]],[[[107.058395,30.043063],[107.053779,30.043751],[107.054221,30.040837],[107.0554,30.040553],[107.058395,30.043063]]]]}},{"type":"Feature","properties":{"adcode":500116,"name":"江津区","center":[106.253156,29.283387],"centroid":[106.263211,29.029608],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":15,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.830514,28.944271],[105.844262,28.93093],[105.852708,28.927369],[105.875049,28.933958],[105.888061,28.926837],[105.889338,28.909523],[105.909567,28.900189],[105.915607,28.907476],[105.909764,28.920452],[105.920321,28.930643],[105.934511,28.933876],[105.95808,28.952496],[105.961566,28.960107],[105.971877,28.965957],[105.9761,28.959166],[105.988424,28.964198],[105.985969,28.970131],[105.974627,28.973567],[105.984103,28.979008],[106.001535,28.973608],[106.017443,28.952905],[106.02417,28.949714],[106.036102,28.955729],[106.043811,28.954133],[106.047346,28.943575],[106.04003,28.940465],[106.042338,28.929538],[106.03949,28.918651],[106.042534,28.910587],[106.051913,28.906862],[106.062813,28.918201],[106.070522,28.919797],[106.085645,28.9103],[106.087708,28.904201],[106.10126,28.898961],[106.134354,28.90506],[106.149183,28.901949],[106.162538,28.908908],[106.173684,28.92082],[106.191606,28.908663],[106.206926,28.904528],[106.215371,28.891714],[106.225585,28.890568],[106.228089,28.881764],[106.242181,28.86821],[106.253229,28.865753],[106.255586,28.857398],[106.265062,28.846708],[106.260201,28.833641],[106.246698,28.826472],[106.254358,28.819179],[106.24439,28.814631],[106.252394,28.785823],[106.267665,28.779348],[106.273213,28.739788],[106.287698,28.732366],[106.303509,28.709113],[106.307191,28.687907],[106.30616,28.675763],[106.321087,28.665465],[106.311168,28.660048],[106.304049,28.649872],[106.310776,28.639981],[106.329778,28.63403],[106.324524,28.616749],[106.332184,28.603366],[106.340187,28.59889],[106.34662,28.58378],[106.345196,28.573021],[106.339304,28.566368],[106.344803,28.562014],[106.332037,28.553224],[106.338371,28.546858],[106.34225,28.532603],[106.349811,28.540121],[106.363903,28.526892],[106.374313,28.525618],[106.378487,28.533835],[106.373576,28.537656],[106.389829,28.553266],[106.385704,28.560823],[106.399109,28.571173],[106.412956,28.563123],[106.423218,28.562671],[106.43402,28.556675],[106.439471,28.559427],[106.454054,28.549774],[106.453072,28.544721],[106.466918,28.541846],[106.471632,28.532603],[106.483858,28.530589],[106.493384,28.538313],[106.501191,28.534533],[106.504726,28.54468],[106.488867,28.557496],[106.478899,28.574992],[106.466967,28.586408],[106.473842,28.598973],[106.498785,28.585874],[106.508802,28.564889],[106.524711,28.577826],[106.513319,28.577046],[106.494464,28.599999],[106.494955,28.615148],[106.501093,28.617898],[106.501338,28.628735],[106.506641,28.635343],[106.502762,28.661321],[106.520144,28.6621],[106.529719,28.673137],[106.515774,28.688194],[106.510324,28.715183],[106.499325,28.717398],[106.493826,28.73946],[106.462057,28.76123],[106.454201,28.776068],[106.451648,28.79279],[106.462794,28.797216],[106.46029,28.804961],[106.451402,28.808116],[106.453514,28.816967],[106.46844,28.826472],[106.461861,28.831019],[106.455723,28.836427],[106.446443,28.863337],[106.43623,28.870217],[106.415264,28.876236],[106.411826,28.891182],[106.410992,28.922294],[106.402792,28.940956],[106.408733,28.95401],[106.399846,28.962521],[106.405738,28.979622],[106.397587,28.993693],[106.391842,29.022443],[106.385803,29.029476],[106.398765,29.027023],[106.404314,29.035364],[106.419732,29.047834],[106.427834,29.047588],[106.442515,29.039739],[106.44281,29.050573],[106.463874,29.042069],[106.444135,29.038103],[106.454447,29.0177],[106.475413,29.012179],[106.478113,29.024774],[106.489849,29.042969],[106.484497,29.065738],[106.49034,29.083476],[106.501044,29.0771],[106.498,29.071624],[106.504825,29.063285],[106.514547,29.059852],[106.524956,29.044195],[106.526331,29.036141],[106.544646,29.036386],[106.551815,29.024692],[106.549703,29.00535],[106.557118,29.006004],[106.562666,29.016555],[106.57833,29.022443],[106.585204,29.008294],[106.592471,29.005963],[106.608773,29.014756],[106.59414,29.019131],[106.589525,29.030008],[106.585695,29.053148],[106.589672,29.056663],[106.583436,29.071256],[106.584418,29.079634],[106.578084,29.09312],[106.581177,29.110076],[106.574205,29.116777],[106.574451,29.128215],[106.560997,29.133239],[106.550047,29.145493],[106.549998,29.153498],[106.562372,29.161379],[106.545972,29.183265],[106.541896,29.192369],[106.547788,29.212534],[106.539343,29.213717],[106.535906,29.221962],[106.521225,29.224614],[106.515774,29.232042],[106.519653,29.251791],[106.514056,29.254688],[106.511208,29.268069],[106.505021,29.268966],[106.508655,29.278674],[106.486363,29.294336],[106.473645,29.335722],[106.474431,29.35696],[106.478163,29.36022],[106.460241,29.360872],[106.454496,29.35427],[106.440404,29.350153],[106.435542,29.352965],[106.411876,29.342245],[106.400877,29.340777],[106.395525,29.339351],[106.385999,29.312401],[106.393217,29.294948],[106.384035,29.283039],[106.3559,29.27688],[106.339844,29.26456],[106.311905,29.254769],[106.298697,29.256483],[106.27994,29.286913],[106.289171,29.320679],[106.276945,29.322269],[106.274539,29.32871],[106.261232,29.335519],[106.267468,29.350234],[106.277829,29.352924],[106.275668,29.363236],[106.282248,29.368167],[106.284359,29.38516],[106.294425,29.384549],[106.295554,29.378763],[106.30891,29.379985],[106.314409,29.388827],[106.322314,29.38732],[106.331005,29.39555],[106.329041,29.413679],[106.317257,29.415227],[106.323002,29.420481],[106.320596,29.427976],[106.307339,29.426835],[106.30724,29.434248],[106.298549,29.440764],[106.285636,29.441986],[106.278565,29.449031],[106.262705,29.451596],[106.248613,29.429238],[106.245569,29.40989],[106.223621,29.353984],[106.206042,29.334826],[106.195731,29.327447],[106.17663,29.308446],[106.156106,29.301962],[106.152276,29.293684],[106.136416,29.294826],[106.120065,29.278878],[106.113289,29.284018],[106.110442,29.294907],[106.096104,29.291359],[106.084663,29.300331],[106.086382,29.30706],[106.072928,29.321005],[106.043418,29.32549],[106.038164,29.313339],[106.036789,29.284915],[106.031486,29.261868],[106.033156,29.253953],[106.016363,29.242529],[106.004677,29.215513],[105.996673,29.213595],[105.982287,29.193512],[105.96736,29.177671],[105.965347,29.15603],[105.954299,29.151251],[105.958276,29.147943],[105.942858,29.128338],[105.937899,29.127561],[105.93186,29.115102],[105.918848,29.109464],[105.917473,29.098881],[105.909518,29.093855],[105.913888,29.08086],[105.922285,29.078858],[105.919928,29.056132],[105.897145,29.049632],[105.885459,29.037204],[105.882905,29.029722],[105.864492,29.026001],[105.857323,29.012997],[105.858011,28.98678],[105.851677,28.976185],[105.826782,28.964403],[105.824769,28.953396],[105.830514,28.944271]]]]}},{"type":"Feature","properties":{"adcode":500117,"name":"合川区","center":[106.265554,29.990993],"centroid":[106.311538,30.112474],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":16,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.648447,30.085559],[106.656352,30.086165],[106.668382,30.101742],[106.673881,30.12213],[106.67501,30.147165],[106.677613,30.157395],[106.665779,30.158972],[106.662195,30.170171],[106.653995,30.169726],[106.649527,30.176922],[106.639265,30.180156],[106.646973,30.189494],[106.63185,30.186543],[106.633618,30.199679],[106.626989,30.19778],[106.624436,30.211318],[106.632734,30.216208],[106.619133,30.229664],[106.611473,30.228047],[106.609804,30.23532],[106.621686,30.236492],[106.633029,30.24643],[106.642653,30.249863],[106.634845,30.265697],[106.627578,30.265899],[106.623061,30.281609],[106.611669,30.292431],[106.590507,30.294248],[106.586382,30.302969],[106.571603,30.30624],[106.56026,30.315162],[106.547052,30.310358],[106.544842,30.296752],[106.521372,30.300305],[106.509391,30.289363],[106.499865,30.288918],[106.498,30.296025],[106.481845,30.298407],[106.476149,30.306966],[106.472123,30.300022],[106.458964,30.302283],[106.44826,30.299618],[106.4515,30.308137],[106.441042,30.308945],[106.436475,30.303575],[106.444774,30.295702],[106.441877,30.289484],[106.43569,30.295177],[106.428619,30.291543],[106.434708,30.277046],[106.41821,30.278783],[106.407997,30.276117],[106.422138,30.262466],[106.429405,30.261174],[106.427834,30.253782],[106.416786,30.253418],[106.410795,30.24336],[106.401319,30.242673],[106.397391,30.249662],[106.383102,30.254711],[106.390222,30.243683],[106.372545,30.248167],[106.359632,30.241218],[106.34932,30.245258],[106.343968,30.237219],[106.336799,30.237906],[106.335032,30.226391],[106.318681,30.229138],[106.309794,30.2373],[106.300563,30.238552],[106.305816,30.225704],[106.292706,30.220209],[106.296684,30.205135],[106.28431,30.201983],[106.278467,30.195718],[106.279793,30.207924],[106.26192,30.213784],[106.27174,30.204004],[106.264424,30.193536],[106.254358,30.198426],[106.245913,30.196527],[106.249742,30.189736],[106.241788,30.177731],[106.240315,30.18533],[106.232704,30.186139],[106.240315,30.200164],[106.232213,30.212531],[106.212524,30.203115],[106.204471,30.205701],[106.201819,30.213137],[106.192539,30.2154],[106.201083,30.228411],[106.180362,30.232855],[106.178251,30.248611],[106.170542,30.250591],[106.178447,30.256892],[106.179822,30.278661],[106.169069,30.3041],[106.156499,30.313668],[106.149428,30.309469],[106.137153,30.315686],[106.132685,30.323679],[106.124092,30.324769],[106.124828,30.317907],[106.134403,30.308622],[106.131801,30.301799],[106.122324,30.306805],[106.122864,30.313708],[106.114812,30.317341],[106.106072,30.310761],[106.098019,30.323558],[106.088346,30.323154],[106.091047,30.336837],[106.088591,30.345958],[106.079311,30.344344],[106.073517,30.334133],[106.070768,30.341196],[106.061046,30.342003],[106.033745,30.361817],[106.030897,30.374244],[106.01381,30.372347],[106.002222,30.376906],[105.992009,30.36916],[105.97826,30.373477],[105.989063,30.352697],[105.980372,30.342084],[105.981305,30.325051],[105.988277,30.320006],[105.975216,30.30632],[105.967507,30.308379],[105.974872,30.289322],[105.983367,30.289766],[105.98101,30.280156],[105.992107,30.277369],[105.998588,30.280681],[106.009489,30.275754],[106.013466,30.268282],[106.006248,30.260002],[105.995397,30.256892],[105.985724,30.248692],[105.981059,30.233583],[105.995102,30.231845],[106.004039,30.224775],[106.006052,30.213622],[106.019948,30.201417],[106.00669,30.187958],[105.991174,30.177246],[105.973743,30.188079],[105.974381,30.175224],[105.987639,30.164026],[105.976247,30.153109],[105.978801,30.143606],[105.998343,30.129289],[105.994513,30.120108],[105.999472,30.113757],[105.985184,30.101742],[105.989357,30.093125],[105.980814,30.083131],[105.98592,30.070262],[105.981207,30.061359],[105.981501,30.052414],[105.991076,30.033671],[105.998785,30.026627],[106.020439,30.028084],[106.047788,30.01363],[106.046511,30.007474],[106.027362,30.001522],[106.028,29.991883],[106.036495,29.997674],[106.049163,29.997026],[106.075727,30.001643],[106.098215,30.002331],[106.123061,29.998687],[106.118052,29.986982],[106.123306,29.980056],[106.119378,29.966607],[106.112946,29.960813],[106.1127,29.9519],[106.124141,29.936461],[106.134845,29.938771],[106.129198,29.929491],[106.130426,29.921993],[106.146924,29.92787],[106.160574,29.919359],[106.164944,29.921507],[106.165877,29.922399],[106.197744,29.931153],[106.200346,29.936826],[106.208645,29.929126],[106.219005,29.929451],[106.221018,29.920413],[106.239873,29.919116],[106.2384,29.912549],[106.242377,29.910239],[106.244341,29.908253],[106.244783,29.908374],[106.245127,29.908253],[106.245078,29.907685],[106.258139,29.89747],[106.266977,29.895686],[106.27012,29.887334],[106.281658,29.894673],[106.276699,29.873021],[106.265995,29.873913],[106.271593,29.86779],[106.263393,29.852258],[106.26791,29.84443],[106.314409,29.884861],[106.339598,29.901767],[106.383053,29.92787],[106.390909,29.921304],[106.390958,29.906672],[106.396507,29.898118],[106.409077,29.889443],[106.423611,29.884334],[106.429601,29.892362],[106.423414,29.904564],[106.433235,29.901889],[106.443841,29.906834],[106.455281,29.926776],[106.46191,29.92402],[106.44281,29.883564],[106.452777,29.878212],[106.458522,29.887456],[106.462892,29.88478],[106.452581,29.869128],[106.465347,29.870832],[106.466967,29.882996],[106.477131,29.891875],[106.479046,29.908172],[106.488916,29.908415],[106.501338,29.922115],[106.505659,29.931234],[106.519506,29.927546],[106.526773,29.945822],[106.544941,29.935246],[106.55697,29.961259],[106.568706,29.991154],[106.572192,30.012698],[106.582209,30.022214],[106.596546,30.030432],[106.598265,30.039582],[106.591587,30.047071],[106.629101,30.079448],[106.648447,30.085559]]],[[[106.244783,29.908374],[106.244341,29.908253],[106.245078,29.907685],[106.245127,29.908253],[106.244783,29.908374]]]]}},{"type":"Feature","properties":{"adcode":500118,"name":"永川区","center":[105.894714,29.348748],"centroid":[105.872859,29.290183],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":17,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.66514,29.276594],[105.678054,29.273494],[105.689838,29.29193],[105.70506,29.29923],[105.715911,29.29087],[105.69519,29.287362],[105.693963,29.267579],[105.70889,29.238],[105.705845,29.223757],[105.711983,29.218901],[105.70452,29.202411],[105.705796,29.174732],[105.719594,29.172159],[105.729463,29.152558],[105.728825,29.134424],[105.733195,29.130993],[105.742868,29.137569],[105.752099,29.129767],[105.735208,29.122414],[105.729267,29.107748],[105.729905,29.098759],[105.740855,29.088625],[105.745028,29.075465],[105.757795,29.069008],[105.741788,29.039494],[105.747631,29.037899],[105.754063,29.02412],[105.76624,29.013365],[105.76187,28.992998],[105.779105,28.979949],[105.788778,28.977617],[105.801348,28.958184],[105.80886,28.956547],[105.803852,28.947586],[105.796339,28.949632],[105.792706,28.943453],[105.797567,28.935923],[105.810579,28.940874],[105.830514,28.944271],[105.824769,28.953396],[105.826782,28.964403],[105.851677,28.976185],[105.858011,28.98678],[105.857323,29.012997],[105.864492,29.026001],[105.882905,29.029722],[105.885459,29.037204],[105.897145,29.049632],[105.919928,29.056132],[105.922285,29.078858],[105.913888,29.08086],[105.909518,29.093855],[105.917473,29.098881],[105.918848,29.109464],[105.93186,29.115102],[105.937899,29.127561],[105.942858,29.128338],[105.958276,29.147943],[105.954299,29.151251],[105.965347,29.15603],[105.96736,29.177671],[105.982287,29.193512],[105.996673,29.213595],[106.004677,29.215513],[106.016363,29.242529],[106.033156,29.253953],[106.031486,29.261868],[106.036789,29.284915],[106.038164,29.313339],[106.043418,29.32549],[106.049998,29.341878],[106.048377,29.353251],[106.065612,29.375788],[106.067822,29.390946],[106.062666,29.396161],[106.063648,29.418974],[106.073272,29.448868],[106.071799,29.461491],[106.076218,29.470366],[106.078035,29.491168],[106.076709,29.505536],[106.085989,29.530562],[106.089132,29.546388],[106.078526,29.545209],[106.071553,29.536014],[106.038803,29.529179],[106.018769,29.527388],[106.010127,29.520512],[105.995446,29.525801],[105.995446,29.541303],[105.988523,29.542483],[105.981992,29.533369],[105.975363,29.54228],[105.967802,29.53695],[105.956116,29.540734],[105.951156,29.548463],[105.935984,29.549968],[105.938341,29.543744],[105.921303,29.537438],[105.910746,29.539065],[105.903626,29.552531],[105.906572,29.562741],[105.890467,29.570429],[105.873969,29.552572],[105.876817,29.541791],[105.868617,29.537316],[105.855016,29.540042],[105.834933,29.527917],[105.825899,29.51396],[105.817895,29.490395],[105.802674,29.437139],[105.770561,29.408302],[105.773507,29.394857],[105.767762,29.379578],[105.747582,29.372487],[105.735159,29.38459],[105.728678,29.384875],[105.716893,29.372813],[105.709086,29.375625],[105.709283,29.368616],[105.696172,29.364622],[105.691655,29.357652],[105.675501,29.355574],[105.663078,29.346647],[105.653209,29.349052],[105.649575,29.340247],[105.653405,29.33397],[105.645352,29.319252],[105.635974,29.320638],[105.637251,29.298251],[105.645794,29.286506],[105.655664,29.284426],[105.66514,29.276594]]]]}},{"type":"Feature","properties":{"adcode":500119,"name":"南川区","center":[107.098153,29.156646],"centroid":[107.171436,29.13547],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":18,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.057462,28.894785],[107.066546,28.895358],[107.07234,28.879308],[107.063354,28.877055],[107.059819,28.868456],[107.072683,28.866613],[107.08707,28.872264],[107.096694,28.890076],[107.141965,28.887742],[107.146827,28.876236],[107.155861,28.882993],[107.166565,28.880659],[107.178644,28.883361],[107.184095,28.879922],[107.193571,28.888766],[107.198432,28.878407],[107.194013,28.876605],[107.206534,28.868005],[107.19691,28.847405],[107.195142,28.838065],[107.226371,28.836795],[107.216354,28.828151],[107.210609,28.814795],[107.213408,28.795003],[107.21876,28.788733],[107.219202,28.772707],[107.24665,28.761845],[107.253573,28.766805],[107.252395,28.780577],[107.261429,28.792708],[107.277142,28.799183],[107.304639,28.806764],[107.325409,28.809591],[107.345147,28.829585],[107.331988,28.841178],[107.359878,28.849985],[107.367243,28.844988],[107.383447,28.848551],[107.395378,28.86088],[107.391941,28.868497],[107.406131,28.89155],[107.415657,28.88979],[107.41443,28.913248],[107.422875,28.928269],[107.433579,28.933754],[107.441043,28.94378],[107.438784,28.955278],[107.421549,28.954542],[107.412957,28.960148],[107.405542,28.972258],[107.404413,28.981872],[107.396949,28.993325],[107.370435,28.993897],[107.364542,29.010543],[107.378536,29.021912],[107.381041,29.029926],[107.395182,29.039657],[107.390714,29.059075],[107.379862,29.05744],[107.369747,29.091608],[107.374412,29.097574],[107.392285,29.091281],[107.412957,29.095735],[107.427589,29.127357],[107.4215,29.135813],[107.408439,29.138345],[107.408095,29.150271],[107.412318,29.161379],[107.401516,29.175957],[107.401565,29.184694],[107.395378,29.205881],[107.401909,29.218248],[107.399355,29.235714],[107.401025,29.248853],[107.416541,29.264234],[107.421942,29.274636],[107.404069,29.28259],[107.388553,29.281081],[107.391597,29.289279],[107.379764,29.299516],[107.373332,29.298578],[107.38271,29.308609],[107.392039,29.326754],[107.367047,29.341756],[107.350156,29.346892],[107.347308,29.342571],[107.323395,29.339147],[107.318387,29.347789],[107.309893,29.345098],[107.298599,29.352069],[107.293444,29.349704],[107.272428,29.358386],[107.272428,29.37371],[107.263393,29.383571],[107.256176,29.38463],[107.241691,29.379415],[107.239285,29.364744],[107.225487,29.367801],[107.20732,29.366293],[107.207221,29.385934],[107.214439,29.39775],[107.199561,29.399135],[107.203244,29.411316],[107.185911,29.412945],[107.173096,29.408342],[107.167056,29.420603],[107.16082,29.424432],[107.155272,29.417304],[107.148741,29.419259],[107.134846,29.411438],[107.142947,29.408179],[107.146827,29.396365],[107.134158,29.394613],[107.125124,29.387564],[107.110442,29.391598],[107.109166,29.383856],[107.114812,29.366741],[107.10018,29.361606],[107.083387,29.359813],[107.07229,29.362829],[107.043321,29.378437],[107.052552,29.388705],[107.051619,29.394205],[107.035121,29.391231],[107.026381,29.402802],[107.034581,29.406713],[107.029228,29.410827],[107.025055,29.441782],[107.034482,29.453103],[107.034581,29.467435],[107.015873,29.473338],[107.019997,29.487057],[107.012927,29.487708],[107.00453,29.471058],[106.993925,29.482579],[106.98052,29.488767],[106.964415,29.488685],[106.945952,29.497029],[106.935297,29.464463],[106.933039,29.448542],[106.936574,29.439339],[106.932253,29.399746],[106.922531,29.403046],[106.919978,29.329893],[106.922433,29.310322],[106.920616,29.302411],[106.92312,29.280673],[106.933039,29.279653],[106.936132,29.256931],[106.954692,29.252199],[106.95754,29.228981],[106.968392,29.215228],[106.961812,29.202738],[106.95263,29.197104],[106.955527,29.190695],[106.945069,29.183142],[106.919045,29.180366],[106.911385,29.197472],[106.895574,29.190491],[106.896409,29.180039],[106.907751,29.179672],[106.909175,29.160562],[106.899355,29.155621],[106.891744,29.14149],[106.891695,29.131769],[106.905542,29.11596],[106.911483,29.114775],[106.921844,29.100475],[106.910256,29.068844],[106.906131,29.051758],[106.915362,29.054538],[106.920567,29.045749],[106.926361,29.047793],[106.938685,29.041906],[106.950421,29.071787],[106.954545,29.059239],[106.96358,29.058217],[106.975266,29.050532],[106.977034,29.056009],[106.988671,29.043459],[106.981158,29.039861],[106.979832,29.031766],[106.990045,29.021094],[107.003892,29.016023],[107.01715,28.998724],[107.024564,28.995983],[107.02967,28.985717],[107.022256,28.974058],[107.013614,28.969599],[107.015971,28.952087],[107.02913,28.941284],[107.043124,28.945785],[107.051275,28.942143],[107.057315,28.932771],[107.053288,28.919183],[107.04337,28.919879],[107.057462,28.894785]]]]}},{"type":"Feature","properties":{"adcode":500120,"name":"璧山区","center":[106.231126,29.593581],"centroid":[106.191948,29.561371],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":19,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.253425,29.532841],[106.251707,29.559406],[106.260005,29.592633],[106.265602,29.605889],[106.274882,29.612231],[106.282493,29.626744],[106.273017,29.631215],[106.279105,29.637841],[106.287649,29.635849],[106.2794,29.652553],[106.287698,29.663484],[106.284506,29.675268],[106.278712,29.67669],[106.280431,29.703298],[106.285636,29.697896],[106.297076,29.706467],[106.305669,29.736641],[106.31598,29.764898],[106.324279,29.774843],[106.334197,29.771311],[106.344214,29.779307],[106.372889,29.814207],[106.351284,29.812422],[106.34225,29.816804],[106.345883,29.836114],[106.337585,29.834532],[106.342446,29.842523],[106.330956,29.848323],[106.336407,29.860247],[106.329385,29.859639],[106.325653,29.872737],[106.314409,29.884861],[106.26791,29.84443],[106.233048,29.805686],[106.211689,29.791564],[106.194552,29.785395],[106.180559,29.771555],[106.160771,29.759702],[106.169069,29.752557],[106.163422,29.721088],[106.156155,29.70935],[106.169314,29.689893],[106.163226,29.681321],[106.165828,29.675755],[106.156695,29.667304],[106.144813,29.662956],[106.122717,29.638816],[106.113928,29.615687],[106.117561,29.610076],[106.112307,29.601457],[106.104844,29.576041],[106.096251,29.559691],[106.087217,29.552287],[106.089132,29.546388],[106.085989,29.530562],[106.076709,29.505536],[106.078035,29.491168],[106.076218,29.470366],[106.071799,29.461491],[106.073272,29.448868],[106.063648,29.418974],[106.062666,29.396161],[106.067822,29.390946],[106.065612,29.375788],[106.048377,29.353251],[106.049998,29.341878],[106.043418,29.32549],[106.072928,29.321005],[106.086382,29.30706],[106.084663,29.300331],[106.096104,29.291359],[106.110442,29.294907],[106.113289,29.284018],[106.120065,29.278878],[106.136416,29.294826],[106.152276,29.293684],[106.156106,29.301962],[106.17663,29.308446],[106.195731,29.327447],[106.206042,29.334826],[106.223621,29.353984],[106.245569,29.40989],[106.248613,29.429238],[106.262705,29.451596],[106.26025,29.466051],[106.267026,29.494994],[106.260594,29.494262],[106.261969,29.516524],[106.253278,29.519698],[106.253425,29.532841]]]]}},{"type":"Feature","properties":{"adcode":500151,"name":"铜梁区","center":[106.054948,29.839944],"centroid":[106.0332,29.81109],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":20,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.981207,30.061359],[105.973105,30.072771],[105.95862,30.076778],[105.959209,30.071234],[105.949438,30.060832],[105.939274,30.063342],[105.943006,30.074511],[105.934511,30.080703],[105.933333,30.088027],[105.917571,30.093934],[105.907554,30.091951],[105.897783,30.079003],[105.904608,30.073662],[105.895475,30.065123],[105.901711,30.057392],[105.900336,30.045775],[105.891498,30.044156],[105.883691,30.049256],[105.872103,30.045411],[105.869648,30.032983],[105.875491,30.027356],[105.866702,30.009864],[105.870335,30.00549],[105.886784,30.006462],[105.904019,29.995649],[105.915656,29.993179],[105.907849,29.98038],[105.91104,29.961624],[105.924347,29.963123],[105.925034,29.956478],[105.934953,29.954493],[105.941385,29.935691],[105.931712,29.927546],[105.95042,29.908172],[105.945657,29.893051],[105.933185,29.88778],[105.926606,29.877928],[105.930681,29.872373],[105.923169,29.865763],[105.910058,29.868561],[105.90888,29.879955],[105.88266,29.890659],[105.875638,29.897551],[105.870434,29.89078],[105.860319,29.896902],[105.846177,29.895402],[105.837241,29.878293],[105.824769,29.881861],[105.818926,29.855583],[105.809253,29.844714],[105.807387,29.833031],[105.790987,29.827879],[105.778368,29.811367],[105.789269,29.794121],[105.808418,29.783569],[105.806945,29.771636],[105.820939,29.773381],[105.822461,29.762827],[105.83076,29.757997],[105.868911,29.756982],[105.878584,29.769525],[105.888012,29.77468],[105.893904,29.785882],[105.888208,29.790347],[105.893806,29.802967],[105.906523,29.795582],[105.904706,29.785598],[105.922334,29.788236],[105.944233,29.775979],[105.957638,29.781662],[105.970601,29.779876],[105.976542,29.784746],[105.991223,29.781174],[105.998588,29.768916],[105.997508,29.756819],[106.001289,29.748375],[106.010913,29.747279],[106.014448,29.752841],[106.028344,29.749552],[106.025987,29.734854],[106.036838,29.726692],[106.031732,29.722184],[106.005659,29.682581],[105.997361,29.6645],[105.982532,29.671936],[105.969815,29.646294],[105.953513,29.630199],[105.946099,29.626988],[105.938243,29.613166],[105.924347,29.595805],[105.890467,29.570429],[105.906572,29.562741],[105.903626,29.552531],[105.910746,29.539065],[105.921303,29.537438],[105.938341,29.543744],[105.935984,29.549968],[105.951156,29.548463],[105.956116,29.540734],[105.967802,29.53695],[105.975363,29.54228],[105.981992,29.533369],[105.988523,29.542483],[105.995446,29.541303],[105.995446,29.525801],[106.010127,29.520512],[106.018769,29.527388],[106.038803,29.529179],[106.071553,29.536014],[106.078526,29.545209],[106.089132,29.546388],[106.087217,29.552287],[106.096251,29.559691],[106.104844,29.576041],[106.112307,29.601457],[106.117561,29.610076],[106.113928,29.615687],[106.122717,29.638816],[106.144813,29.662956],[106.156695,29.667304],[106.165828,29.675755],[106.163226,29.681321],[106.169314,29.689893],[106.156155,29.70935],[106.163422,29.721088],[106.169069,29.752557],[106.160771,29.759702],[106.180559,29.771555],[106.194552,29.785395],[106.211689,29.791564],[106.233048,29.805686],[106.26791,29.84443],[106.263393,29.852258],[106.271593,29.86779],[106.265995,29.873913],[106.276699,29.873021],[106.281658,29.894673],[106.27012,29.887334],[106.266977,29.895686],[106.258139,29.89747],[106.245078,29.907685],[106.244341,29.908253],[106.242377,29.910239],[106.24115,29.90955],[106.240757,29.909428],[106.240119,29.909347],[106.239971,29.909631],[106.240119,29.910928],[106.239873,29.91109],[106.239529,29.911131],[106.23894,29.911212],[106.2384,29.91182],[106.238302,29.912144],[106.2384,29.912549],[106.239873,29.919116],[106.221018,29.920413],[106.219005,29.929451],[106.208645,29.929126],[106.200346,29.936826],[106.197744,29.931153],[106.165877,29.922399],[106.166123,29.921142],[106.166074,29.920777],[106.165926,29.920696],[106.165533,29.92094],[106.165435,29.921102],[106.165141,29.921426],[106.164944,29.921507],[106.160574,29.919359],[106.146924,29.92787],[106.130426,29.921993],[106.129198,29.929491],[106.134845,29.938771],[106.124141,29.936461],[106.1127,29.9519],[106.112946,29.960813],[106.119378,29.966607],[106.123306,29.980056],[106.118052,29.986982],[106.123061,29.998687],[106.098215,30.002331],[106.075727,30.001643],[106.049163,29.997026],[106.036495,29.997674],[106.028,29.991883],[106.027362,30.001522],[106.046511,30.007474],[106.047788,30.01363],[106.020439,30.028084],[105.998785,30.026627],[105.991076,30.033671],[105.981501,30.052414],[105.981207,30.061359]]],[[[106.2384,29.912549],[106.238302,29.912144],[106.2384,29.91182],[106.23894,29.911212],[106.239529,29.911131],[106.239873,29.91109],[106.240119,29.910928],[106.239971,29.909631],[106.240119,29.909347],[106.240757,29.909428],[106.24115,29.90955],[106.242377,29.910239],[106.2384,29.912549]]],[[[106.165877,29.922399],[106.164944,29.921507],[106.165141,29.921426],[106.165435,29.921102],[106.165533,29.92094],[106.165926,29.920696],[106.166074,29.920777],[106.166123,29.921142],[106.165877,29.922399]]]]}},{"type":"Feature","properties":{"adcode":500152,"name":"潼南区","center":[105.841818,30.189554],"centroid":[105.814632,30.143351],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":21,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.733146,29.860693],[105.738105,29.856516],[105.738252,29.845646],[105.725339,29.832747],[105.735846,29.819319],[105.72308,29.809825],[105.714684,29.79684],[105.713898,29.789129],[105.721411,29.78779],[105.746354,29.801466],[105.763883,29.793512],[105.77719,29.801831],[105.778368,29.811367],[105.790987,29.827879],[105.807387,29.833031],[105.809253,29.844714],[105.818926,29.855583],[105.824769,29.881861],[105.837241,29.878293],[105.846177,29.895402],[105.860319,29.896902],[105.870434,29.89078],[105.875638,29.897551],[105.88266,29.890659],[105.90888,29.879955],[105.910058,29.868561],[105.923169,29.865763],[105.930681,29.872373],[105.926606,29.877928],[105.933185,29.88778],[105.945657,29.893051],[105.95042,29.908172],[105.931712,29.927546],[105.941385,29.935691],[105.934953,29.954493],[105.925034,29.956478],[105.924347,29.963123],[105.91104,29.961624],[105.907849,29.98038],[105.915656,29.993179],[105.904019,29.995649],[105.886784,30.006462],[105.870335,30.00549],[105.866702,30.009864],[105.875491,30.027356],[105.869648,30.032983],[105.872103,30.045411],[105.883691,30.049256],[105.891498,30.044156],[105.900336,30.045775],[105.901711,30.057392],[105.895475,30.065123],[105.904608,30.073662],[105.897783,30.079003],[105.907554,30.091951],[105.917571,30.093934],[105.933333,30.088027],[105.934511,30.080703],[105.943006,30.074511],[105.939274,30.063342],[105.949438,30.060832],[105.959209,30.071234],[105.95862,30.076778],[105.973105,30.072771],[105.981207,30.061359],[105.98592,30.070262],[105.980814,30.083131],[105.989357,30.093125],[105.985184,30.101742],[105.999472,30.113757],[105.994513,30.120108],[105.998343,30.129289],[105.978801,30.143606],[105.976247,30.153109],[105.987639,30.164026],[105.974381,30.175224],[105.973743,30.188079],[105.991174,30.177246],[106.00669,30.187958],[106.019948,30.201417],[106.006052,30.213622],[106.004039,30.224775],[105.995102,30.231845],[105.981059,30.233583],[105.985724,30.248692],[105.995397,30.256892],[106.006248,30.260002],[106.013466,30.268282],[106.009489,30.275754],[105.998588,30.280681],[105.992107,30.277369],[105.98101,30.280156],[105.983367,30.289766],[105.974872,30.289322],[105.967507,30.308379],[105.975216,30.30632],[105.988277,30.320006],[105.981305,30.325051],[105.980372,30.342084],[105.989063,30.352697],[105.97826,30.373477],[105.970257,30.378883],[105.940894,30.372267],[105.939568,30.380537],[105.925575,30.385338],[105.917031,30.395987],[105.901515,30.386346],[105.899011,30.396027],[105.905983,30.397036],[105.905296,30.406433],[105.876522,30.399536],[105.886784,30.392639],[105.877602,30.386669],[105.869108,30.401513],[105.873772,30.408692],[105.862332,30.406353],[105.846227,30.392437],[105.839107,30.399698],[105.846128,30.411152],[105.836946,30.41583],[105.831103,30.429016],[105.820154,30.437524],[105.802183,30.427927],[105.792313,30.427282],[105.795456,30.418491],[105.782787,30.403086],[105.770708,30.404054],[105.760299,30.384571],[105.770021,30.37618],[105.751854,30.357136],[105.756224,30.347088],[105.74984,30.339703],[105.735012,30.336676],[105.741493,30.319158],[105.729905,30.316897],[105.714831,30.322791],[105.711738,30.315848],[105.718612,30.307733],[105.711001,30.294208],[105.711787,30.282255],[105.722982,30.275552],[105.734963,30.277046],[105.730102,30.265818],[105.735159,30.261537],[105.720969,30.263193],[105.723866,30.254751],[105.701475,30.257862],[105.67334,30.252772],[105.667203,30.265697],[105.660672,30.264324],[105.645745,30.273371],[105.622668,30.273856],[105.620163,30.261779],[105.610589,30.255882],[105.62036,30.248934],[105.618739,30.23536],[105.636269,30.219724],[105.655418,30.220815],[105.662342,30.210066],[105.645549,30.206873],[105.642406,30.186422],[105.632832,30.183754],[105.618052,30.185694],[105.607888,30.178297],[105.595122,30.183673],[105.5799,30.173446],[105.567036,30.183188],[105.546904,30.180722],[105.536445,30.164834],[105.536151,30.152907],[105.549605,30.151734],[105.556086,30.144779],[105.558197,30.151977],[105.571406,30.161559],[105.582159,30.162974],[105.59684,30.157112],[105.593207,30.144738],[105.569982,30.134304],[105.574155,30.130422],[105.580244,30.129694],[105.582699,30.12755],[105.583141,30.12395],[105.598068,30.109227],[105.606759,30.109712],[105.619721,30.104129],[105.640835,30.101338],[105.637496,30.093691],[105.639264,30.076413],[105.649231,30.074592],[105.660476,30.066296],[105.674617,30.071274],[105.676728,30.056057],[105.683455,30.052859],[105.68699,30.038975],[105.699413,30.043144],[105.705354,30.035776],[105.721312,30.042051],[105.728039,30.027194],[105.742033,30.03359],[105.743359,30.027113],[105.75367,30.01861],[105.74876,30.005895],[105.732508,29.998768],[105.723326,29.976005],[105.731034,29.95664],[105.721116,29.950563],[105.714978,29.930747],[105.702507,29.923939],[105.715027,29.911171],[105.711639,29.899497],[105.717433,29.893578],[105.73403,29.893578],[105.735257,29.871967],[105.733146,29.860693]]],[[[105.583141,30.12395],[105.582699,30.12755],[105.580244,30.129694],[105.574155,30.130422],[105.583141,30.12395]]]]}},{"type":"Feature","properties":{"adcode":500153,"name":"荣昌区","center":[105.594061,29.403627],"centroid":[105.506727,29.464817],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":22,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.66514,29.276594],[105.655664,29.284426],[105.645794,29.286506],[105.637251,29.298251],[105.635974,29.320638],[105.645352,29.319252],[105.653405,29.33397],[105.649575,29.340247],[105.653209,29.349052],[105.663078,29.346647],[105.675501,29.355574],[105.691655,29.357652],[105.696172,29.364622],[105.709283,29.368616],[105.709086,29.375625],[105.716893,29.372813],[105.728678,29.384875],[105.741002,29.397628],[105.722835,29.397872],[105.73403,29.417386],[105.727646,29.422844],[105.737663,29.435592],[105.735061,29.445162],[105.724013,29.449967],[105.725486,29.454121],[105.714929,29.464259],[105.687236,29.446506],[105.662194,29.460025],[105.657431,29.468168],[105.658119,29.481317],[105.65311,29.485022],[105.662636,29.499431],[105.648397,29.494139],[105.641179,29.505861],[105.639509,29.489052],[105.646236,29.486121],[105.637152,29.473623],[105.629738,29.478386],[105.631506,29.485917],[105.620556,29.494017],[105.619967,29.504803],[105.607642,29.508262],[105.595711,29.504152],[105.593059,29.517744],[105.583239,29.515588],[105.590015,29.524011],[105.59522,29.539432],[105.592175,29.549928],[105.599983,29.553019],[105.602241,29.569941],[105.594483,29.575553],[105.590899,29.590397],[105.580047,29.591617],[105.561045,29.588892],[105.549703,29.572096],[105.542534,29.57413],[105.542681,29.586412],[105.536642,29.59121],[105.517738,29.586493],[105.50561,29.609344],[105.509243,29.637962],[105.496673,29.648652],[105.487688,29.663159],[105.490683,29.675186],[105.482777,29.679127],[105.475658,29.674699],[105.436377,29.676974],[105.420615,29.688309],[105.400532,29.67157],[105.389681,29.676487],[105.383887,29.669823],[105.393167,29.650724],[105.377553,29.643287],[105.380794,29.628248],[105.369648,29.621053],[105.365965,29.627516],[105.354377,29.626703],[105.346766,29.620199],[105.341611,29.60292],[105.335522,29.595195],[105.325653,29.595927],[105.329826,29.604384],[105.320988,29.60971],[105.320644,29.601782],[105.311315,29.593365],[105.317649,29.578156],[105.298647,29.572503],[105.289759,29.552613],[105.294326,29.53398],[105.304686,29.531254],[105.318877,29.512413],[105.323247,29.495157],[105.321234,29.475984],[105.331299,29.47175],[105.338026,29.461857],[105.336111,29.455546],[105.324622,29.450008],[105.334147,29.441416],[105.345588,29.448501],[105.360417,29.444225],[105.362037,29.454691],[105.373821,29.458274],[105.389534,29.452818],[105.399207,29.438972],[105.387471,29.438361],[105.388797,29.431886],[105.371759,29.423862],[105.373281,29.420766],[105.39631,29.422884],[105.413544,29.418567],[105.417031,29.423373],[105.427293,29.418852],[105.431466,29.408179],[105.443103,29.399094],[105.443693,29.386382],[105.432203,29.379659],[105.438586,29.370816],[105.434805,29.363114],[105.418602,29.352313],[105.422972,29.326509],[105.420075,29.316968],[105.436573,29.319496],[105.44929,29.317498],[105.454691,29.329077],[105.466476,29.321576],[105.466083,29.313421],[105.474283,29.309996],[105.466427,29.305592],[105.465395,29.292379],[105.459307,29.290136],[105.488866,29.278185],[105.509145,29.285404],[105.50939,29.274677],[105.518425,29.264438],[105.537869,29.272882],[105.55584,29.273576],[105.558295,29.27847],[105.583288,29.270353],[105.596005,29.274473],[105.609508,29.27276],[105.607986,29.255748],[105.614173,29.258359],[105.619771,29.27174],[105.6318,29.280388],[105.644076,29.270965],[105.63946,29.261582],[105.647611,29.25326],[105.666515,29.252933],[105.671622,29.260889],[105.664698,29.269048],[105.66514,29.276594]]]]}},{"type":"Feature","properties":{"adcode":500154,"name":"开州区","center":[108.413317,31.167735],"centroid":[108.382659,31.271013],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":23,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.542831,31.673626],[108.546464,31.666701],[108.532814,31.669129],[108.519066,31.665706],[108.513272,31.656193],[108.506692,31.657307],[108.494564,31.649545],[108.486168,31.639871],[108.468786,31.636169],[108.46525,31.61837],[108.456461,31.628882],[108.442664,31.6337],[108.423072,31.621277],[108.417916,31.610087],[108.402646,31.603874],[108.388357,31.586906],[108.393611,31.576349],[108.377948,31.570413],[108.391795,31.560452],[108.388652,31.546385],[108.381139,31.542599],[108.347603,31.545189],[108.33906,31.537896],[108.346572,31.525141],[108.345345,31.514936],[108.323298,31.502378],[108.311415,31.506684],[108.295998,31.503494],[108.281709,31.507282],[108.276995,31.501181],[108.259564,31.502497],[108.254801,31.498829],[108.236683,31.506365],[108.226764,31.505846],[108.218417,31.496197],[108.190478,31.491492],[108.193326,31.468202],[108.206829,31.464293],[108.210806,31.467883],[108.223131,31.46517],[108.225586,31.453004],[108.210561,31.435769],[108.216551,31.427031],[108.216306,31.411188],[108.203392,31.395382],[108.182868,31.393027],[108.175257,31.382608],[108.157826,31.376659],[108.154143,31.37075],[108.158906,31.360289],[108.171182,31.356975],[108.180609,31.349227],[108.185519,31.338005],[108.180462,31.325782],[108.162834,31.31971],[108.16141,31.313757],[108.146533,31.30277],[108.111916,31.286586],[108.094485,31.275036],[108.092374,31.265764],[108.080589,31.261446],[108.066399,31.261766],[108.059967,31.254971],[108.040866,31.253611],[108.021422,31.245736],[108.031635,31.23682],[108.027903,31.221984],[108.040081,31.218625],[108.076268,31.231822],[108.071113,31.218345],[108.080737,31.218945],[108.089919,31.201867],[108.085696,31.188107],[108.070278,31.177785],[108.069443,31.169383],[108.055253,31.156658],[108.056628,31.145652],[108.045629,31.145893],[108.0363,31.139929],[108.035318,31.128962],[108.025743,31.116351],[108.014744,31.115271],[108.009294,31.108785],[108.01386,31.098735],[108.024712,31.089244],[108.028984,31.061728],[108.050245,31.059966],[108.059869,31.053196],[108.053289,31.040736],[108.043321,31.035407],[108.033599,31.036128],[108.011062,31.023666],[108.003795,31.025389],[107.995889,31.004308],[107.983123,30.984225],[107.971535,30.982421],[107.943547,30.989437],[107.937409,30.968669],[107.936329,30.952749],[107.938735,30.940035],[107.948261,30.919056],[107.957345,30.919858],[107.971535,30.911794],[107.982435,30.913239],[107.994711,30.908665],[108.000849,30.911915],[108.009392,30.907662],[108.029426,30.884508],[108.0363,30.8701],[108.041112,30.876522],[108.069149,30.888281],[108.071751,30.892695],[108.081817,30.885712],[108.101654,30.878007],[108.090115,30.871545],[108.096646,30.84782],[108.105287,30.841356],[108.109608,30.82931],[108.122866,30.833487],[108.126057,30.840875],[108.131704,30.832001],[108.152179,30.831278],[108.157482,30.834771],[108.167106,30.827182],[108.18218,30.824211],[108.197254,30.833647],[108.200102,30.839188],[108.218417,30.852839],[108.229956,30.856171],[108.225488,30.860908],[108.231184,30.87612],[108.228237,30.881298],[108.244294,30.89113],[108.243803,30.882261],[108.260055,30.872789],[108.268402,30.881659],[108.29202,30.892976],[108.300269,30.901041],[108.346277,30.921222],[108.360861,30.932976],[108.349027,30.939153],[108.339649,30.963135],[108.355214,30.960408],[108.372792,30.969791],[108.395674,30.991641],[108.41497,30.998897],[108.418015,31.006072],[108.432156,31.012725],[108.451256,31.013527],[108.474334,31.022544],[108.48003,31.037811],[108.476691,31.052795],[108.486217,31.057322],[108.488181,31.064733],[108.511995,31.074145],[108.510964,31.07791],[108.53031,31.083838],[108.539934,31.082957],[108.537921,31.095491],[108.558887,31.089404],[108.547544,31.105261],[108.562619,31.115791],[108.562717,31.130443],[108.567823,31.140529],[108.576956,31.142851],[108.601851,31.160099],[108.598414,31.170943],[108.583585,31.174864],[108.578036,31.180065],[108.587759,31.185066],[108.588741,31.201587],[108.596646,31.230622],[108.618643,31.252212],[108.622768,31.259488],[108.631262,31.257249],[108.643489,31.268721],[108.63632,31.283509],[108.654586,31.289184],[108.659054,31.298535],[108.639806,31.31955],[108.63578,31.329896],[108.644176,31.339482],[108.683261,31.34084],[108.698237,31.343956],[108.701527,31.348988],[108.696567,31.359011],[108.709186,31.374983],[108.693474,31.377418],[108.694554,31.387199],[108.712525,31.394584],[108.729956,31.390752],[108.736389,31.395742],[108.731528,31.403285],[108.740022,31.407676],[108.742084,31.420087],[108.757797,31.430941],[108.759908,31.438602],[108.752298,31.443749],[108.740071,31.441834],[108.726617,31.455118],[108.703098,31.463814],[108.697255,31.476737],[108.69971,31.491652],[108.694554,31.499347],[108.703982,31.503972],[108.721707,31.503255],[108.730055,31.499746],[108.748026,31.505208],[108.761087,31.503893],[108.766881,31.513621],[108.769483,31.529845],[108.777094,31.543635],[108.794034,31.551366],[108.801399,31.574078],[108.820303,31.574596],[108.824133,31.578899],[108.837096,31.574237],[108.853398,31.578939],[108.865133,31.592801],[108.877997,31.602799],[108.894888,31.606025],[108.895821,31.614587],[108.887719,31.625657],[108.893268,31.632187],[108.892728,31.642578],[108.898227,31.65484],[108.888407,31.654999],[108.879421,31.663835],[108.865378,31.671079],[108.860517,31.681068],[108.840533,31.684371],[108.809894,31.685764],[108.794525,31.684251],[108.782888,31.688828],[108.770612,31.682142],[108.758141,31.664313],[108.755342,31.647077],[108.742281,31.640906],[108.736192,31.633302],[108.728974,31.634457],[108.714686,31.627648],[108.701183,31.634098],[108.69151,31.625259],[108.683899,31.627449],[108.67673,31.62275],[108.65542,31.626095],[108.649381,31.621715],[108.64123,31.625179],[108.640101,31.637005],[108.624388,31.651655],[108.608725,31.650421],[108.576809,31.664114],[108.574501,31.67088],[108.561833,31.669726],[108.542831,31.673626]]]]}},{"type":"Feature","properties":{"adcode":500155,"name":"梁平区","center":[107.800034,30.672168],"centroid":[107.719234,30.658344],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":24,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.876131,30.813287],[107.849861,30.792601],[107.831399,30.798426],[107.817749,30.798024],[107.799189,30.814934],[107.783722,30.819311],[107.775375,30.814853],[107.763836,30.817102],[107.755341,30.829551],[107.757452,30.840232],[107.752788,30.850751],[107.760349,30.862272],[107.750038,30.864801],[107.749547,30.873471],[107.737714,30.88499],[107.715864,30.887839],[107.704128,30.872227],[107.691951,30.874756],[107.670445,30.851996],[107.647465,30.823247],[107.633766,30.817785],[107.616138,30.828588],[107.614665,30.839148],[107.598266,30.844729],[107.584075,30.840473],[107.577594,30.848141],[107.560654,30.849868],[107.556529,30.846295],[107.535465,30.84766],[107.526626,30.839429],[107.523288,30.848222],[107.514793,30.854926],[107.482926,30.838305],[107.492108,30.833165],[107.489997,30.821118],[107.498982,30.810757],[107.490193,30.810757],[107.493778,30.803688],[107.47777,30.799792],[107.47345,30.785772],[107.460339,30.784165],[107.466379,30.774041],[107.453809,30.77167],[107.44556,30.778179],[107.446837,30.770103],[107.43957,30.759776],[107.44502,30.752503],[107.439029,30.747077],[107.425674,30.746756],[107.437065,30.721031],[107.458621,30.704788],[107.460929,30.687498],[107.456559,30.682712],[107.469718,30.677604],[107.477427,30.664774],[107.499179,30.660148],[107.516806,30.647838],[107.515431,30.642045],[107.493728,30.618988],[107.485332,30.598341],[107.46741,30.586305],[107.460241,30.571329],[107.42754,30.547611],[107.442859,30.535287],[107.433825,30.523565],[107.419929,30.516475],[107.408734,30.521551],[107.404855,30.516112],[107.425527,30.510835],[107.446837,30.49766],[107.463629,30.481984],[107.480029,30.478599],[107.496036,30.494638],[107.509097,30.495363],[107.516266,30.489198],[107.527559,30.490487],[107.533452,30.500843],[107.544352,30.498869],[107.55157,30.50322],[107.553436,30.491092],[107.562225,30.487949],[107.570523,30.47731],[107.593994,30.475174],[107.610197,30.48009],[107.611719,30.47211],[107.629298,30.485611],[107.637743,30.483032],[107.636957,30.470498],[107.660772,30.470136],[107.670346,30.464493],[107.673538,30.453851],[107.656205,30.431193],[107.661803,30.420387],[107.679479,30.438612],[107.695241,30.460986],[107.715716,30.482589],[107.741347,30.517885],[107.748123,30.521269],[107.757894,30.514058],[107.767911,30.513736],[107.777535,30.506121],[107.77783,30.497821],[107.796488,30.484805],[107.796488,30.479204],[107.80621,30.470861],[107.817455,30.471466],[107.810629,30.482428],[107.818142,30.497539],[107.819173,30.50882],[107.814017,30.521631],[107.829239,30.544671],[107.826145,30.554417],[107.860713,30.559088],[107.870386,30.547248],[107.885411,30.549544],[107.891352,30.54608],[107.886884,30.539556],[107.88546,30.512124],[107.897883,30.502938],[107.909422,30.502938],[107.916001,30.495323],[107.924839,30.494074],[107.939864,30.485893],[107.942025,30.498828],[107.953711,30.51434],[107.958621,30.531017],[107.972615,30.521913],[107.985676,30.531017],[107.990243,30.538871],[108.003795,30.542174],[108.029622,30.561544],[108.034778,30.574187],[108.028051,30.587432],[108.033697,30.592424],[108.025252,30.60289],[108.016954,30.629571],[108.023091,30.63617],[108.025645,30.648844],[108.042585,30.662481],[108.0554,30.660027],[108.079558,30.664532],[108.082259,30.677926],[108.074844,30.696304],[108.086678,30.713714],[108.074894,30.723121],[108.047544,30.723684],[108.03517,30.715362],[108.011405,30.709814],[107.959112,30.719262],[107.918653,30.75829],[107.908243,30.762911],[107.905592,30.77601],[107.88492,30.806138],[107.876131,30.813287]]]]}},{"type":"Feature","properties":{"adcode":500156,"name":"武隆区","center":[107.75655,29.32376],"centroid":[107.709628,29.373158],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":25,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.401565,29.184694],[107.405444,29.188613],[107.428473,29.191144],[107.441435,29.203962],[107.463973,29.195431],[107.462353,29.176855],[107.473106,29.170975],[107.486707,29.174242],[107.514891,29.194206],[107.532224,29.195471],[107.549557,29.210085],[107.553387,29.218697],[107.565711,29.220982],[107.575139,29.20784],[107.575237,29.189062],[107.580147,29.183591],[107.583437,29.16828],[107.590164,29.165299],[107.585057,29.158357],[107.589231,29.150026],[107.601015,29.147821],[107.600622,29.15897],[107.606711,29.165463],[107.616924,29.163013],[107.629936,29.165585],[107.641573,29.16093],[107.659446,29.16289],[107.66362,29.147535],[107.698629,29.141245],[107.707565,29.154151],[107.718515,29.156152],[107.727206,29.175712],[107.724751,29.182203],[107.739383,29.189021],[107.751609,29.199635],[107.76089,29.189021],[107.760251,29.177712],[107.767911,29.17514],[107.775227,29.162808],[107.781905,29.161992],[107.795162,29.146473],[107.808567,29.142838],[107.810629,29.138345],[107.799974,29.106195],[107.78981,29.082372],[107.785244,29.04722],[107.823543,29.034219],[107.838421,29.040597],[107.849567,29.039289],[107.874707,29.057031],[107.873086,29.074852],[107.883938,29.078163],[107.889486,29.085151],[107.883889,29.106195],[107.895133,29.117185],[107.892727,29.134138],[107.899896,29.166361],[107.903775,29.172282],[107.898865,29.184245],[107.911975,29.190328],[107.934905,29.185102],[107.94286,29.178243],[107.960143,29.188695],[107.970111,29.198492],[107.973057,29.210166],[107.986756,29.217799],[107.997804,29.236857],[108.006446,29.229267],[108.010325,29.247792],[107.99697,29.26248],[107.998983,29.273943],[107.996282,29.288545],[108.003304,29.315174],[107.992059,29.325408],[107.984301,29.339188],[107.983319,29.350397],[107.976641,29.36344],[107.988426,29.38027],[107.992796,29.397383],[107.989653,29.416856],[108.004286,29.428424],[108.002763,29.442108],[108.013075,29.448786],[108.013959,29.469674],[108.017347,29.483719],[108.015432,29.504559],[108.055793,29.531783],[108.074059,29.549073],[108.075826,29.557982],[108.066988,29.566687],[108.066153,29.575472],[108.075876,29.577627],[108.084026,29.588892],[108.076563,29.605726],[108.067872,29.614223],[108.056039,29.621581],[108.046513,29.622679],[108.024368,29.619467],[108.000259,29.626256],[107.979784,29.627435],[107.969129,29.620321],[107.961715,29.608978],[107.949881,29.601701],[107.948703,29.623126],[107.934218,29.655723],[107.922974,29.655235],[107.905543,29.662428],[107.897146,29.661493],[107.87073,29.667995],[107.857472,29.667629],[107.845786,29.660233],[107.842938,29.653569],[107.845246,29.628695],[107.839943,29.607393],[107.831743,29.59243],[107.832283,29.581247],[107.838863,29.570185],[107.835671,29.558877],[107.828551,29.556192],[107.825851,29.545005],[107.818928,29.554647],[107.80729,29.554606],[107.80351,29.563433],[107.791774,29.560952],[107.795801,29.567744],[107.7685,29.579254],[107.781267,29.582142],[107.772576,29.585883],[107.767862,29.597635],[107.757403,29.602636],[107.732263,29.585598],[107.716404,29.596659],[107.709431,29.60906],[107.701575,29.615443],[107.69804,29.605889],[107.687532,29.600481],[107.666958,29.573804],[107.654634,29.562457],[107.651197,29.553304],[107.629003,29.539147],[107.608135,29.532474],[107.607546,29.514652],[107.615009,29.512373],[107.620558,29.483638],[107.613143,29.479526],[107.595958,29.480951],[107.577446,29.462427],[107.574206,29.452533],[107.56139,29.453062],[107.552798,29.447809],[107.546562,29.431845],[107.532666,29.423047],[107.513664,29.461165],[107.478507,29.497151],[107.475905,29.50635],[107.4625,29.502117],[107.463826,29.498617],[107.450519,29.490028],[107.441386,29.491575],[107.431762,29.483475],[107.427491,29.505658],[107.391548,29.530969],[107.380599,29.523197],[107.365868,29.522383],[107.358601,29.51575],[107.348683,29.515547],[107.328993,29.509321],[107.323248,29.497558],[107.313526,29.487912],[107.30567,29.465318],[107.277338,29.440357],[107.262264,29.436162],[107.260938,29.429035],[107.245422,29.424391],[107.240512,29.426795],[107.227598,29.418159],[107.226666,29.406835],[107.237713,29.394817],[107.241691,29.379415],[107.256176,29.38463],[107.263393,29.383571],[107.272428,29.37371],[107.272428,29.358386],[107.293444,29.349704],[107.298599,29.352069],[107.309893,29.345098],[107.318387,29.347789],[107.323395,29.339147],[107.347308,29.342571],[107.350156,29.346892],[107.367047,29.341756],[107.392039,29.326754],[107.38271,29.308609],[107.373332,29.298578],[107.379764,29.299516],[107.391597,29.289279],[107.388553,29.281081],[107.404069,29.28259],[107.421942,29.274636],[107.416541,29.264234],[107.401025,29.248853],[107.399355,29.235714],[107.401909,29.218248],[107.395378,29.205881],[107.401565,29.184694]]]]}},{"type":"Feature","properties":{"adcode":500229,"name":"城口县","center":[108.6649,31.946293],"centroid":[108.735105,31.881846],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":26,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.281611,31.716876],[109.2795,31.723479],[109.283085,31.739627],[109.27076,31.749291],[109.2713,31.756607],[109.256177,31.758635],[109.254655,31.766905],[109.263689,31.773544],[109.281268,31.777917],[109.274786,31.791075],[109.274835,31.800455],[109.255293,31.803038],[109.239875,31.811304],[109.232363,31.809436],[109.213606,31.817503],[109.196224,31.817543],[109.191854,31.827953],[109.199563,31.842494],[109.190921,31.855681],[109.167009,31.87534],[109.131901,31.891343],[109.124585,31.892137],[109.114225,31.905556],[109.069935,31.938936],[109.05982,31.941356],[109.039345,31.96072],[109.035122,31.958061],[109.020883,31.963219],[108.988427,31.979404],[108.978213,31.978135],[108.968295,31.982538],[108.95273,31.979682],[108.937116,31.988924],[108.91831,31.988249],[108.902401,31.984918],[108.873529,32.000227],[108.837881,32.038805],[108.810581,32.047169],[108.788682,32.048318],[108.776259,32.055096],[108.767961,32.065519],[108.751708,32.074158],[108.752543,32.08759],[108.747731,32.099831],[108.726421,32.106803],[108.714833,32.103713],[108.674717,32.103396],[108.66691,32.111913],[108.654045,32.117418],[108.646975,32.128666],[108.606024,32.155155],[108.592178,32.160223],[108.583978,32.172217],[108.551031,32.176096],[108.509736,32.201187],[108.492944,32.194935],[108.479342,32.182073],[108.457296,32.181479],[108.434022,32.192085],[108.425282,32.187416],[108.406378,32.196201],[108.39916,32.194064],[108.379175,32.177521],[108.369404,32.173325],[108.38821,32.157531],[108.390862,32.151315],[108.406623,32.141337],[108.414872,32.126369],[108.423465,32.117339],[108.431616,32.101693],[108.439276,32.094721],[108.452091,32.091036],[108.44944,32.072969],[108.429995,32.061358],[108.412712,32.070116],[108.395183,32.066311],[108.373774,32.077169],[108.362825,32.070037],[108.344608,32.068253],[108.344804,32.060526],[108.35978,32.053748],[108.364298,32.047248],[108.362874,32.036783],[108.340091,32.023106],[108.32919,32.01926],[108.33847,32.009506],[108.361401,31.998085],[108.369502,31.989876],[108.367146,31.984521],[108.3505,31.971947],[108.337488,31.981705],[108.3259,31.984957],[108.307094,31.997252],[108.297176,31.988527],[108.283919,31.986068],[108.282151,31.979206],[108.265849,31.983728],[108.267175,31.973097],[108.259368,31.966869],[108.275817,31.957625],[108.28603,31.938856],[108.282691,31.917742],[108.289516,31.910955],[108.299484,31.911272],[108.30842,31.905953],[108.326244,31.881615],[108.33523,31.876452],[108.340974,31.863546],[108.353741,31.856396],[108.370779,31.852742],[108.386197,31.853894],[108.384135,31.848611],[108.394741,31.826523],[108.441436,31.807608],[108.455135,31.813927],[108.462501,31.812814],[108.464072,31.803674],[108.454399,31.791075],[108.456314,31.783999],[108.478213,31.777917],[108.488574,31.780302],[108.489261,31.774737],[108.515727,31.7611],[108.535269,31.757681],[108.506103,31.734815],[108.518673,31.726184],[108.524761,31.69973],[108.514794,31.69412],[108.532225,31.677168],[108.542831,31.673626],[108.561833,31.669726],[108.574501,31.67088],[108.576809,31.664114],[108.608725,31.650421],[108.624388,31.651655],[108.640101,31.637005],[108.64123,31.625179],[108.649381,31.621715],[108.65542,31.626095],[108.67673,31.62275],[108.683899,31.627449],[108.69151,31.625259],[108.701183,31.634098],[108.714686,31.627648],[108.728974,31.634457],[108.736192,31.633302],[108.742281,31.640906],[108.755342,31.647077],[108.758141,31.664313],[108.770612,31.682142],[108.782888,31.688828],[108.794525,31.684251],[108.809894,31.685764],[108.840533,31.684371],[108.860517,31.681068],[108.865378,31.671079],[108.879421,31.663835],[108.888407,31.654999],[108.898227,31.65484],[108.906182,31.661248],[108.91448,31.660731],[108.918113,31.652929],[108.937607,31.652969],[108.954792,31.66288],[108.955529,31.654601],[108.992649,31.652969],[109.000407,31.657029],[109.00134,31.671039],[109.007331,31.673188],[109.0008,31.686758],[109.007036,31.691135],[109.038117,31.690777],[109.052013,31.696507],[109.06149,31.704743],[109.092473,31.699531],[109.122965,31.700167],[109.133325,31.705936],[109.148154,31.703669],[109.158514,31.69396],[109.16696,31.700207],[109.178253,31.69587],[109.209187,31.69412],[109.224261,31.688629],[109.228533,31.690817],[109.222542,31.701242],[109.227403,31.717035],[109.225145,31.724951],[109.266734,31.714927],[109.281611,31.716876]]]]}},{"type":"Feature","properties":{"adcode":500230,"name":"丰都县","center":[107.73248,29.866424],"centroid":[107.830885,29.884753],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":27,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.701575,29.615443],[107.709431,29.60906],[107.716404,29.596659],[107.732263,29.585598],[107.757403,29.602636],[107.767862,29.597635],[107.772576,29.585883],[107.781267,29.582142],[107.7685,29.579254],[107.795801,29.567744],[107.791774,29.560952],[107.80351,29.563433],[107.80729,29.554606],[107.818928,29.554647],[107.825851,29.545005],[107.828551,29.556192],[107.835671,29.558877],[107.838863,29.570185],[107.832283,29.581247],[107.831743,29.59243],[107.839943,29.607393],[107.845246,29.628695],[107.842938,29.653569],[107.845786,29.660233],[107.857472,29.667629],[107.87073,29.667995],[107.897146,29.661493],[107.905543,29.662428],[107.922974,29.655235],[107.934218,29.655723],[107.948703,29.623126],[107.949881,29.601701],[107.961715,29.608978],[107.969129,29.620321],[107.979784,29.627435],[108.000259,29.626256],[108.024368,29.619467],[108.046513,29.622679],[108.056039,29.621581],[108.067872,29.614223],[108.078773,29.618817],[108.082161,29.611377],[108.098757,29.600684],[108.114175,29.599302],[108.117366,29.603449],[108.132391,29.603815],[108.153652,29.599749],[108.163374,29.603612],[108.167499,29.617679],[108.178547,29.619183],[108.182033,29.625972],[108.17894,29.647839],[108.168186,29.648083],[108.156107,29.644872],[108.149921,29.647636],[108.143587,29.659218],[108.156304,29.669579],[108.156157,29.676121],[108.174962,29.686075],[108.179529,29.699602],[108.169168,29.7087],[108.181051,29.734286],[108.17457,29.735463],[108.172213,29.745533],[108.178252,29.749877],[108.187925,29.743909],[108.204129,29.765182],[108.208204,29.764938],[108.217484,29.777887],[108.194112,29.790712],[108.18547,29.801628],[108.194014,29.812665],[108.190626,29.819441],[108.177859,29.822443],[108.172998,29.837656],[108.167008,29.838305],[108.14997,29.83011],[108.145992,29.846377],[108.122915,29.851771],[108.108823,29.848851],[108.099199,29.840657],[108.084125,29.838873],[108.058936,29.857246],[108.072488,29.870953],[108.071456,29.877157],[108.059869,29.889726],[108.042536,29.893456],[108.035907,29.90197],[108.049999,29.906226],[108.046316,29.912387],[108.036005,29.912225],[108.024908,29.934962],[108.014695,29.9472],[107.993336,29.96689],[108.002027,29.977544],[108.009687,29.978476],[108.018034,29.971589],[108.03247,29.990222],[108.024859,30.010957],[108.018476,30.014804],[108.02702,30.029056],[108.01661,30.042132],[108.007575,30.043508],[107.998492,30.053871],[107.987297,30.047921],[107.967558,30.055611],[107.948457,30.066458],[107.936378,30.069008],[107.908243,30.105748],[107.906525,30.112544],[107.895919,30.120067],[107.88109,30.103199],[107.87451,30.09976],[107.862186,30.113879],[107.84446,30.119865],[107.831939,30.108782],[107.81878,30.112058],[107.812937,30.118935],[107.819026,30.13394],[107.842103,30.155009],[107.845688,30.162974],[107.838617,30.168675],[107.811759,30.178337],[107.808567,30.184239],[107.794377,30.185816],[107.788436,30.190747],[107.765898,30.198224],[107.757502,30.21047],[107.758336,30.217016],[107.769139,30.224573],[107.769924,30.236572],[107.762019,30.240936],[107.745128,30.236774],[107.742084,30.225502],[107.734129,30.221098],[107.728728,30.23132],[107.721314,30.230189],[107.721216,30.21835],[107.704963,30.216491],[107.705356,30.224209],[107.714685,30.221421],[107.705945,30.230876],[107.709284,30.237946],[107.691264,30.234916],[107.675502,30.22336],[107.668088,30.22631],[107.666762,30.234754],[107.673145,30.238754],[107.675944,30.252812],[107.662588,30.261052],[107.656402,30.259598],[107.651884,30.241622],[107.642801,30.239562],[107.632882,30.213097],[107.626548,30.20655],[107.61005,30.209136],[107.605729,30.198628],[107.595909,30.198063],[107.604501,30.187392],[107.597922,30.179631],[107.581227,30.174941],[107.569983,30.166937],[107.572978,30.144374],[107.568706,30.139077],[107.582897,30.131595],[107.579361,30.119582],[107.570425,30.122252],[107.55815,30.114566],[107.55756,30.098344],[107.535268,30.088512],[107.528296,30.082888],[107.53954,30.072407],[107.539295,30.064192],[107.5308,30.059699],[107.491372,30.013306],[107.491322,30.004964],[107.483908,29.992693],[107.471338,29.989453],[107.487443,29.972076],[107.498197,29.972481],[107.500554,29.960611],[107.515186,29.959436],[107.523779,29.978678],[107.53355,29.968551],[107.546905,29.965675],[107.546807,29.958585],[107.56193,29.946146],[107.571898,29.951049],[107.57946,29.943877],[107.573126,29.933827],[107.579361,29.923939],[107.59473,29.917657],[107.602979,29.897389],[107.598707,29.888632],[107.613094,29.876955],[107.626892,29.874522],[107.616973,29.865884],[107.613585,29.856111],[107.604256,29.852014],[107.595369,29.835222],[107.605238,29.832423],[107.605336,29.808161],[107.622669,29.802562],[107.638627,29.813274],[107.638529,29.772976],[107.64226,29.76303],[107.625075,29.753896],[107.640345,29.740701],[107.632784,29.719016],[107.630427,29.701714],[107.64447,29.687821],[107.6565,29.686156],[107.670101,29.675064],[107.674176,29.663362],[107.684733,29.666532],[107.696616,29.660315],[107.718073,29.65682],[107.713752,29.642555],[107.698482,29.618614],[107.701575,29.615443]]]]}},{"type":"Feature","properties":{"adcode":500231,"name":"垫江县","center":[107.348692,30.330012],"centroid":[107.437814,30.253308],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":28,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.453171,30.001441],[107.466968,29.998606],[107.471338,29.989453],[107.483908,29.992693],[107.491322,30.004964],[107.491372,30.013306],[107.5308,30.059699],[107.539295,30.064192],[107.53954,30.072407],[107.528296,30.082888],[107.535268,30.088512],[107.55756,30.098344],[107.55815,30.114566],[107.570425,30.122252],[107.579361,30.119582],[107.582897,30.131595],[107.568706,30.139077],[107.572978,30.144374],[107.569983,30.166937],[107.581227,30.174941],[107.597922,30.179631],[107.604501,30.187392],[107.595909,30.198063],[107.584861,30.202185],[107.577299,30.221461],[107.56851,30.219198],[107.571505,30.208166],[107.563649,30.19875],[107.550097,30.19681],[107.54828,30.208651],[107.553583,30.213177],[107.544794,30.221057],[107.545825,30.227643],[107.554271,30.229583],[107.558395,30.244046],[107.573862,30.244693],[107.57342,30.256367],[107.567282,30.268201],[107.573322,30.274784],[107.587119,30.275188],[107.581767,30.287586],[107.597824,30.29445],[107.597283,30.313224],[107.572242,30.321257],[107.569836,30.326868],[107.583093,30.341801],[107.595025,30.351083],[107.602488,30.367869],[107.622767,30.384652],[107.631262,30.398568],[107.650362,30.406917],[107.661803,30.420387],[107.656205,30.431193],[107.673538,30.453851],[107.670346,30.464493],[107.660772,30.470136],[107.636957,30.470498],[107.637743,30.483032],[107.629298,30.485611],[107.611719,30.47211],[107.610197,30.48009],[107.593994,30.475174],[107.570523,30.47731],[107.562225,30.487949],[107.553436,30.491092],[107.55157,30.50322],[107.544352,30.498869],[107.533452,30.500843],[107.527559,30.490487],[107.516266,30.489198],[107.509097,30.495363],[107.496036,30.494638],[107.480029,30.478599],[107.463629,30.481984],[107.446837,30.49766],[107.425527,30.510835],[107.404855,30.516112],[107.388848,30.49089],[107.381237,30.485329],[107.360025,30.45627],[107.34554,30.425508],[107.341367,30.41212],[107.34284,30.401674],[107.33901,30.387072],[107.31878,30.364278],[107.304197,30.354594],[107.288779,30.337564],[107.277535,30.311246],[107.264866,30.289766],[107.255979,30.263799],[107.239432,30.237582],[107.228335,30.223805],[107.256568,30.205903],[107.277044,30.181086],[107.288484,30.171303],[107.269482,30.145992],[107.274098,30.135841],[107.291381,30.136327],[107.295555,30.122454],[107.286766,30.107892],[107.29089,30.097939],[107.28328,30.091021],[107.271741,30.09446],[107.269089,30.081148],[107.259072,30.075887],[107.247534,30.07528],[107.26521,30.062006],[107.266045,30.055045],[107.279204,30.04873],[107.27724,30.043144],[107.294867,30.044359],[107.307879,30.035493],[107.31166,30.02023],[107.304688,30.0161],[107.31112,30.008203],[107.294818,30.002696],[107.29418,29.997917],[107.307094,29.992328],[107.325556,29.973007],[107.335573,29.97398],[107.347995,29.980501],[107.362824,29.979853],[107.374068,29.973372],[107.436329,30.033833],[107.46029,30.01533],[107.451501,30.008203],[107.453171,30.001441]]]]}},{"type":"Feature","properties":{"adcode":500233,"name":"忠县","center":[108.037518,30.291537],"centroid":[107.914786,30.335722],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":29,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.223622,30.421274],[108.241937,30.443773],[108.232755,30.45502],[108.230496,30.476705],[108.207811,30.49766],[108.195045,30.514501],[108.184537,30.518167],[108.175552,30.510633],[108.165633,30.524411],[108.171378,30.539314],[108.163374,30.540805],[108.152523,30.535931],[108.153063,30.545879],[108.143587,30.566215],[108.12645,30.564],[108.120067,30.576965],[108.126647,30.577972],[108.127187,30.586104],[108.111621,30.59343],[108.105631,30.591458],[108.103863,30.573382],[108.088593,30.572617],[108.083339,30.579582],[108.072537,30.582159],[108.062667,30.574429],[108.052847,30.572094],[108.034778,30.574187],[108.029622,30.561544],[108.003795,30.542174],[107.990243,30.538871],[107.985676,30.531017],[107.972615,30.521913],[107.958621,30.531017],[107.953711,30.51434],[107.942025,30.498828],[107.939864,30.485893],[107.924839,30.494074],[107.916001,30.495323],[107.909422,30.502938],[107.897883,30.502938],[107.88546,30.512124],[107.886884,30.539556],[107.891352,30.54608],[107.885411,30.549544],[107.870386,30.547248],[107.860713,30.559088],[107.826145,30.554417],[107.829239,30.544671],[107.814017,30.521631],[107.819173,30.50882],[107.818142,30.497539],[107.810629,30.482428],[107.817455,30.471466],[107.80621,30.470861],[107.796488,30.479204],[107.796488,30.484805],[107.77783,30.497821],[107.777535,30.506121],[107.767911,30.513736],[107.757894,30.514058],[107.748123,30.521269],[107.741347,30.517885],[107.715716,30.482589],[107.695241,30.460986],[107.679479,30.438612],[107.661803,30.420387],[107.650362,30.406917],[107.631262,30.398568],[107.622767,30.384652],[107.602488,30.367869],[107.595025,30.351083],[107.583093,30.341801],[107.569836,30.326868],[107.572242,30.321257],[107.597283,30.313224],[107.597824,30.29445],[107.581767,30.287586],[107.587119,30.275188],[107.573322,30.274784],[107.567282,30.268201],[107.57342,30.256367],[107.573862,30.244693],[107.558395,30.244046],[107.554271,30.229583],[107.545825,30.227643],[107.544794,30.221057],[107.553583,30.213177],[107.54828,30.208651],[107.550097,30.19681],[107.563649,30.19875],[107.571505,30.208166],[107.56851,30.219198],[107.577299,30.221461],[107.584861,30.202185],[107.595909,30.198063],[107.605729,30.198628],[107.61005,30.209136],[107.626548,30.20655],[107.632882,30.213097],[107.642801,30.239562],[107.651884,30.241622],[107.656402,30.259598],[107.662588,30.261052],[107.675944,30.252812],[107.673145,30.238754],[107.666762,30.234754],[107.668088,30.22631],[107.675502,30.22336],[107.691264,30.234916],[107.709284,30.237946],[107.705945,30.230876],[107.714685,30.221421],[107.705356,30.224209],[107.704963,30.216491],[107.721216,30.21835],[107.721314,30.230189],[107.728728,30.23132],[107.734129,30.221098],[107.742084,30.225502],[107.745128,30.236774],[107.762019,30.240936],[107.769924,30.236572],[107.769139,30.224573],[107.758336,30.217016],[107.757502,30.21047],[107.765898,30.198224],[107.788436,30.190747],[107.794377,30.185816],[107.808567,30.184239],[107.811759,30.178337],[107.838617,30.168675],[107.845688,30.162974],[107.842103,30.155009],[107.819026,30.13394],[107.812937,30.118935],[107.81878,30.112058],[107.831939,30.108782],[107.84446,30.119865],[107.862186,30.113879],[107.87451,30.09976],[107.88109,30.103199],[107.895919,30.120067],[107.906525,30.112544],[107.908243,30.105748],[107.936378,30.069008],[107.948457,30.066458],[107.967558,30.055611],[107.987297,30.047921],[107.998492,30.053871],[108.00733,30.057028],[108.010571,30.071355],[108.021569,30.078032],[108.029622,30.089119],[108.034974,30.084183],[108.031144,30.072326],[108.037233,30.067591],[108.0554,30.072043],[108.083928,30.111209],[108.092374,30.129532],[108.075777,30.153917],[108.061587,30.157071],[108.070965,30.163702],[108.072438,30.175144],[108.085549,30.17862],[108.107595,30.207439],[108.120705,30.200568],[108.129887,30.210268],[108.119379,30.211803],[108.127383,30.223684],[108.124879,30.227199],[108.10843,30.219198],[108.101948,30.223482],[108.105533,30.232653],[108.097038,30.237259],[108.093994,30.253459],[108.103716,30.246995],[108.114273,30.251399],[108.121933,30.245824],[108.125861,30.235845],[108.129494,30.244531],[108.126303,30.255357],[108.141475,30.265495],[108.142212,30.273654],[108.129003,30.281125],[108.131606,30.288918],[108.127334,30.299982],[108.147318,30.297115],[108.147466,30.302606],[108.163473,30.321055],[108.163031,30.325294],[108.145894,30.334254],[108.127874,30.333487],[108.117072,30.329169],[108.094731,30.344667],[108.084419,30.343093],[108.084665,30.350115],[108.096449,30.358831],[108.12262,30.359799],[108.133128,30.362624],[108.152965,30.395019],[108.174619,30.410144],[108.186403,30.413854],[108.208351,30.408611],[108.223622,30.421274]]]]}},{"type":"Feature","properties":{"adcode":500235,"name":"云阳县","center":[108.697698,30.930529],"centroid":[108.856912,31.036349],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":30,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.90952,30.581273],[108.919488,30.589365],[108.943842,30.601843],[108.967509,30.624823],[108.978017,30.629813],[108.987494,30.623294],[108.999229,30.632066],[109.009737,30.627238],[109.021766,30.642366],[109.01558,30.648884],[109.022945,30.663567],[109.017544,30.675232],[109.024565,30.683154],[109.018919,30.696706],[109.030801,30.706598],[109.019655,30.711784],[109.018575,30.718297],[109.047348,30.730277],[109.047839,30.745309],[109.056579,30.754834],[109.059575,30.764598],[109.048821,30.777215],[109.044059,30.809873],[109.050785,30.814171],[109.05054,30.824773],[109.043224,30.831278],[109.051767,30.843524],[109.054615,30.860908],[109.0773,30.869096],[109.086531,30.858178],[109.108283,30.860145],[109.135485,30.866688],[109.130477,30.879732],[109.150118,30.878247],[109.144029,30.902165],[109.15547,30.907622],[109.162197,30.905776],[109.160969,30.916809],[109.151934,30.924151],[109.150609,30.936265],[109.157581,30.940637],[109.186306,30.936907],[109.200545,30.932936],[109.201822,30.927962],[109.215472,30.920781],[109.218762,30.926317],[109.220333,30.945369],[109.218221,30.963857],[109.211642,30.96935],[109.217583,30.982421],[109.238009,31.006432],[109.251021,31.029276],[109.244884,31.032201],[109.239875,31.04314],[109.228778,31.046866],[109.225243,31.053837],[109.214637,31.047907],[109.197648,31.053276],[109.190774,31.066335],[109.165045,31.068057],[109.145748,31.056921],[109.131557,31.054077],[109.119528,31.058123],[109.095271,31.061007],[109.096646,31.078391],[109.093946,31.09437],[109.100034,31.102579],[109.100231,31.121636],[109.080246,31.128641],[109.056187,31.132604],[109.055008,31.155537],[109.048576,31.164341],[109.048969,31.186787],[109.067431,31.179465],[109.074305,31.189467],[109.092816,31.192387],[109.092571,31.211986],[109.087464,31.225703],[109.072685,31.247015],[109.068069,31.27008],[109.062717,31.276355],[109.042978,31.283349],[109.033305,31.290862],[109.055057,31.326301],[109.050294,31.340721],[109.055352,31.357054],[109.05162,31.367117],[109.029181,31.370032],[109.020146,31.375781],[108.992207,31.380812],[108.983418,31.385762],[108.971487,31.380812],[108.962452,31.385722],[108.948409,31.382728],[108.936035,31.390991],[108.927197,31.386001],[108.916837,31.387399],[108.908146,31.383566],[108.900142,31.387558],[108.88988,31.383566],[108.886394,31.372148],[108.892826,31.364641],[108.89042,31.354738],[108.893268,31.342358],[108.887572,31.336007],[108.869896,31.339562],[108.865035,31.343716],[108.837096,31.346432],[108.834739,31.35382],[108.823053,31.356815],[108.822071,31.370271],[108.83248,31.375302],[108.816866,31.390233],[108.798748,31.396859],[108.795752,31.403086],[108.809894,31.417414],[108.800221,31.425155],[108.779205,31.435251],[108.759908,31.438602],[108.757797,31.430941],[108.742084,31.420087],[108.740022,31.407676],[108.731528,31.403285],[108.736389,31.395742],[108.729956,31.390752],[108.712525,31.394584],[108.694554,31.387199],[108.693474,31.377418],[108.709186,31.374983],[108.696567,31.359011],[108.701527,31.348988],[108.698237,31.343956],[108.683261,31.34084],[108.644176,31.339482],[108.63578,31.329896],[108.639806,31.31955],[108.659054,31.298535],[108.654586,31.289184],[108.63632,31.283509],[108.643489,31.268721],[108.631262,31.257249],[108.622768,31.259488],[108.618643,31.252212],[108.596646,31.230622],[108.588741,31.201587],[108.587759,31.185066],[108.578036,31.180065],[108.583585,31.174864],[108.598414,31.170943],[108.601851,31.160099],[108.576956,31.142851],[108.567823,31.140529],[108.562717,31.130443],[108.562619,31.115791],[108.547544,31.105261],[108.558887,31.089404],[108.537921,31.095491],[108.539934,31.082957],[108.53031,31.083838],[108.510964,31.07791],[108.511995,31.074145],[108.488181,31.064733],[108.486217,31.057322],[108.476691,31.052795],[108.48003,31.037811],[108.474334,31.022544],[108.451256,31.013527],[108.432156,31.012725],[108.418015,31.006072],[108.41497,30.998897],[108.426509,30.998216],[108.440356,31.002545],[108.455626,30.994728],[108.45327,30.988755],[108.454743,30.970232],[108.460537,30.967426],[108.486413,30.977008],[108.496626,30.972839],[108.50409,30.977289],[108.501094,30.98651],[108.506643,30.992604],[108.51666,30.990559],[108.533894,30.996251],[108.531243,30.978051],[108.523632,30.973159],[108.537577,30.958123],[108.552602,30.915405],[108.566448,30.912396],[108.593307,30.920259],[108.608578,30.93807],[108.61884,30.934741],[108.619233,30.926999],[108.628169,30.918253],[108.623013,30.912837],[108.621589,30.888561],[108.625419,30.875358],[108.634798,30.885271],[108.653014,30.89105],[108.665977,30.867972],[108.671968,30.852116],[108.685078,30.845773],[108.685127,30.835976],[108.698482,30.822885],[108.699955,30.811841],[108.715177,30.815094],[108.733393,30.81405],[108.738549,30.808026],[108.740808,30.787259],[108.74724,30.782116],[108.740169,30.775527],[108.749842,30.74555],[108.754998,30.740044],[108.76639,30.74141],[108.762609,30.728106],[108.766586,30.720548],[108.763444,30.713031],[108.789762,30.714277],[108.79261,30.706558],[108.781022,30.697028],[108.779254,30.685125],[108.785883,30.683516],[108.818094,30.693771],[108.823347,30.69168],[108.828699,30.679414],[108.836016,30.678449],[108.872007,30.690112],[108.883546,30.695661],[108.884331,30.687337],[108.896312,30.684039],[108.899946,30.676438],[108.901713,30.646792],[108.871565,30.618103],[108.869896,30.610979],[108.90952,30.581273]]]]}},{"type":"Feature","properties":{"adcode":500236,"name":"奉节县","center":[109.465774,31.019967],"centroid":[109.349632,30.952293],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":31,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.103668,30.565812],[109.113488,30.548658],[109.12483,30.538912],[109.124389,30.531702],[109.139463,30.534562],[109.141181,30.525096],[109.150609,30.527392],[109.164799,30.538187],[109.17133,30.547007],[109.192787,30.546282],[109.222788,30.569597],[109.247731,30.583205],[109.227845,30.58087],[109.227551,30.585661],[109.251169,30.592907],[109.278813,30.610174],[109.299534,30.630577],[109.313577,30.610174],[109.32816,30.616091],[109.323299,30.604137],[109.314509,30.59979],[109.344265,30.577126],[109.361156,30.554739],[109.361058,30.550994],[109.342252,30.529567],[109.337145,30.520826],[109.341564,30.512728],[109.342841,30.494718],[109.352072,30.487183],[109.368668,30.500279],[109.380846,30.518288],[109.393808,30.531138],[109.418114,30.560014],[109.428032,30.57616],[109.437852,30.598059],[109.449342,30.603735],[109.456511,30.613797],[109.465889,30.619511],[109.48278,30.623173],[109.493337,30.637176],[109.514696,30.655401],[109.528739,30.663929],[109.537921,30.663969],[109.541407,30.65166],[109.533698,30.641562],[109.538756,30.638424],[109.562865,30.646752],[109.574109,30.646872],[109.577104,30.655321],[109.588005,30.664693],[109.581622,30.670847],[109.590656,30.693409],[109.602244,30.698838],[109.62542,30.702657],[109.649038,30.71894],[109.660773,30.73727],[109.656698,30.76046],[109.659153,30.761987],[109.649725,30.778782],[109.644226,30.794128],[109.646435,30.803929],[109.636517,30.821922],[109.628661,30.820998],[109.607203,30.838225],[109.608087,30.846214],[109.615256,30.848222],[109.61506,30.861951],[109.588839,30.865885],[109.585648,30.871384],[109.569543,30.873712],[109.561392,30.893698],[109.574207,30.900961],[109.594584,30.902044],[109.594879,30.905415],[109.612752,30.90389],[109.609904,30.91693],[109.603079,30.922345],[109.59812,30.936465],[109.601557,30.941639],[109.596941,30.95327],[109.601999,30.962814],[109.60082,30.977129],[109.61177,30.986911],[109.612555,30.995971],[109.598611,31.010841],[109.605829,31.017655],[109.662737,31.042338],[109.685127,31.053516],[109.72107,31.074346],[109.724507,31.090125],[109.744442,31.100616],[109.753428,31.113389],[109.764819,31.11495],[109.758289,31.129242],[109.769533,31.143771],[109.770564,31.16166],[109.760646,31.175144],[109.742773,31.178185],[109.727944,31.171743],[109.703688,31.169903],[109.692493,31.172584],[109.668629,31.185466],[109.64511,31.177905],[109.63033,31.189147],[109.624389,31.190027],[109.622523,31.204747],[109.631951,31.217505],[109.629545,31.225703],[109.61668,31.229662],[109.588201,31.223384],[109.581572,31.225743],[109.569346,31.244456],[109.561883,31.243976],[109.55712,31.251053],[109.530409,31.253891],[109.518526,31.250333],[109.512487,31.243217],[109.497069,31.244816],[109.493533,31.249454],[109.479638,31.251772],[109.462698,31.250693],[109.450766,31.246535],[109.45003,31.238979],[109.435741,31.231981],[109.431617,31.240058],[109.415511,31.245496],[109.393857,31.242897],[109.387867,31.248654],[109.39042,31.262326],[109.376623,31.276236],[109.374757,31.286427],[109.354134,31.286826],[109.355853,31.295578],[109.334396,31.306925],[109.326392,31.324064],[109.322415,31.34779],[109.272577,31.355657],[109.266292,31.35985],[109.242085,31.362126],[109.235014,31.356975],[109.224114,31.362206],[109.213606,31.358332],[109.197206,31.362126],[109.176534,31.361527],[109.138137,31.366279],[109.123357,31.37083],[109.102735,31.364162],[109.079117,31.370112],[109.065712,31.364681],[109.05162,31.367117],[109.055352,31.357054],[109.050294,31.340721],[109.055057,31.326301],[109.033305,31.290862],[109.042978,31.283349],[109.062717,31.276355],[109.068069,31.27008],[109.072685,31.247015],[109.087464,31.225703],[109.092571,31.211986],[109.092816,31.192387],[109.074305,31.189467],[109.067431,31.179465],[109.048969,31.186787],[109.048576,31.164341],[109.055008,31.155537],[109.056187,31.132604],[109.080246,31.128641],[109.100231,31.121636],[109.100034,31.102579],[109.093946,31.09437],[109.096646,31.078391],[109.095271,31.061007],[109.119528,31.058123],[109.131557,31.054077],[109.145748,31.056921],[109.165045,31.068057],[109.190774,31.066335],[109.197648,31.053276],[109.214637,31.047907],[109.225243,31.053837],[109.228778,31.046866],[109.239875,31.04314],[109.244884,31.032201],[109.251021,31.029276],[109.238009,31.006432],[109.217583,30.982421],[109.211642,30.96935],[109.218221,30.963857],[109.220333,30.945369],[109.218762,30.926317],[109.215472,30.920781],[109.201822,30.927962],[109.200545,30.932936],[109.186306,30.936907],[109.157581,30.940637],[109.150609,30.936265],[109.151934,30.924151],[109.160969,30.916809],[109.162197,30.905776],[109.15547,30.907622],[109.144029,30.902165],[109.150118,30.878247],[109.130477,30.879732],[109.135485,30.866688],[109.108283,30.860145],[109.086531,30.858178],[109.0773,30.869096],[109.054615,30.860908],[109.051767,30.843524],[109.043224,30.831278],[109.05054,30.824773],[109.050785,30.814171],[109.044059,30.809873],[109.048821,30.777215],[109.059575,30.764598],[109.056579,30.754834],[109.047839,30.745309],[109.047348,30.730277],[109.018575,30.718297],[109.019655,30.711784],[109.030801,30.706598],[109.018919,30.696706],[109.024565,30.683154],[109.017544,30.675232],[109.022945,30.663567],[109.01558,30.648884],[109.021766,30.642366],[109.045728,30.653189],[109.049165,30.645545],[109.070181,30.640274],[109.088053,30.646631],[109.096646,30.638745],[109.111917,30.646108],[109.120951,30.635768],[109.121737,30.628726],[109.112506,30.61271],[109.105926,30.610738],[109.105534,30.585661],[109.102686,30.580146],[109.101114,30.579542],[109.106123,30.570765],[109.103668,30.565812]]],[[[109.101114,30.579542],[109.102686,30.580146],[109.105534,30.585661],[109.105926,30.610738],[109.09316,30.609007],[109.083585,30.598261],[109.092865,30.578737],[109.098659,30.579099],[109.101114,30.579542]]],[[[109.098659,30.579099],[109.092865,30.578737],[109.103668,30.565812],[109.106123,30.570765],[109.098659,30.579099]]]]}},{"type":"Feature","properties":{"adcode":500237,"name":"巫山县","center":[109.878928,31.074843],"centroid":[109.901246,31.115189],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":32,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.659153,30.761987],[109.685373,30.768657],[109.692149,30.778902],[109.702117,30.783643],[109.702657,30.770264],[109.718124,30.778661],[109.716601,30.80168],[109.729613,30.815376],[109.759074,30.832804],[109.780777,30.848583],[109.797619,30.855609],[109.81942,30.860225],[109.856099,30.880254],[109.878244,30.889163],[109.894545,30.899797],[109.905642,30.899797],[109.932304,30.887679],[109.940897,30.889685],[109.943696,30.87897],[109.958377,30.877445],[109.975956,30.888682],[109.995056,30.887839],[110.008215,30.883585],[110.005024,30.870381],[110.017937,30.855328],[110.019607,30.829592],[110.03198,30.820476],[110.039198,30.820516],[110.042488,30.80666],[110.052996,30.799591],[110.082309,30.799591],[110.089527,30.816058],[110.095861,30.82156],[110.095812,30.829873],[110.115306,30.845492],[110.124095,30.868133],[110.144324,30.897229],[110.151837,30.912316],[110.145601,30.922145],[110.153899,30.953832],[110.163769,30.961371],[110.161657,30.968308],[110.173245,30.979895],[110.172165,30.98659],[110.163572,30.991641],[110.136075,30.986751],[110.140986,31.00503],[110.140151,31.030638],[110.120854,31.032001],[110.126648,31.054678],[110.13308,31.059806],[110.122131,31.072904],[110.120117,31.088844],[110.12871,31.095131],[110.135437,31.106262],[110.145847,31.108144],[110.146927,31.116912],[110.161264,31.116111],[110.180218,31.121676],[110.1894,31.129482],[110.186895,31.145332],[110.198876,31.156538],[110.196912,31.163581],[110.186404,31.169583],[110.180218,31.179585],[110.176535,31.198067],[110.178008,31.204867],[110.169612,31.227943],[110.174866,31.243497],[110.171428,31.250573],[110.162443,31.251932],[110.156158,31.277315],[110.163965,31.30321],[110.159644,31.315355],[110.151739,31.317872],[110.157975,31.333491],[110.14732,31.34783],[110.14948,31.354299],[110.140053,31.368315],[110.145307,31.381331],[110.140004,31.390472],[110.127384,31.393386],[110.11889,31.400651],[110.115158,31.412265],[110.108824,31.408314],[110.100084,31.411268],[110.089773,31.408674],[110.053978,31.410909],[110.049411,31.41877],[110.034484,31.430822],[110.033502,31.439679],[110.020687,31.442073],[110.003649,31.453642],[109.996382,31.469359],[109.987789,31.474663],[109.967903,31.474304],[109.954744,31.468401],[109.94291,31.475341],[109.938049,31.458748],[109.94183,31.448456],[109.937804,31.440836],[109.940553,31.427869],[109.935005,31.414381],[109.922828,31.394664],[109.911878,31.392149],[109.890126,31.392069],[109.853496,31.382209],[109.830468,31.388317],[109.821384,31.387638],[109.803315,31.378336],[109.789223,31.377857],[109.785638,31.361088],[109.775425,31.361527],[109.775032,31.354179],[109.761431,31.346951],[109.749892,31.35362],[109.730006,31.356176],[109.720972,31.349746],[109.71503,31.338644],[109.716945,31.332013],[109.711446,31.31959],[109.713803,31.299094],[109.698679,31.302171],[109.690676,31.296577],[109.662443,31.294499],[109.644373,31.310641],[109.626893,31.295937],[109.61285,31.295018],[109.597776,31.268442],[109.602833,31.262686],[109.587366,31.260967],[109.569346,31.244456],[109.581572,31.225743],[109.588201,31.223384],[109.61668,31.229662],[109.629545,31.225703],[109.631951,31.217505],[109.622523,31.204747],[109.624389,31.190027],[109.63033,31.189147],[109.64511,31.177905],[109.668629,31.185466],[109.692493,31.172584],[109.703688,31.169903],[109.727944,31.171743],[109.742773,31.178185],[109.760646,31.175144],[109.770564,31.16166],[109.769533,31.143771],[109.758289,31.129242],[109.764819,31.11495],[109.753428,31.113389],[109.744442,31.100616],[109.724507,31.090125],[109.72107,31.074346],[109.685127,31.053516],[109.662737,31.042338],[109.605829,31.017655],[109.598611,31.010841],[109.612555,30.995971],[109.61177,30.986911],[109.60082,30.977129],[109.601999,30.962814],[109.596941,30.95327],[109.601557,30.941639],[109.59812,30.936465],[109.603079,30.922345],[109.609904,30.91693],[109.612752,30.90389],[109.594879,30.905415],[109.594584,30.902044],[109.574207,30.900961],[109.561392,30.893698],[109.569543,30.873712],[109.585648,30.871384],[109.588839,30.865885],[109.61506,30.861951],[109.615256,30.848222],[109.608087,30.846214],[109.607203,30.838225],[109.628661,30.820998],[109.636517,30.821922],[109.646435,30.803929],[109.644226,30.794128],[109.649725,30.778782],[109.659153,30.761987]]]]}},{"type":"Feature","properties":{"adcode":500238,"name":"巫溪县","center":[109.628912,31.3966],"centroid":[109.35337,31.503107],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":33,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.94291,31.475341],[109.942174,31.483238],[109.957248,31.490774],[109.961323,31.499268],[109.98229,31.512504],[109.965595,31.50788],[109.945267,31.506684],[109.934907,31.517727],[109.923859,31.521474],[109.894594,31.519162],[109.878194,31.528848],[109.869209,31.530124],[109.860174,31.543555],[109.83798,31.555272],[109.822071,31.553757],[109.801007,31.541443],[109.788584,31.55045],[109.765457,31.549653],[109.760204,31.547182],[109.735309,31.546106],[109.718909,31.556985],[109.727502,31.570731],[109.746406,31.577982],[109.745326,31.596426],[109.76423,31.602998],[109.737421,31.628683],[109.740416,31.635173],[109.740612,31.663636],[109.731872,31.673148],[109.728091,31.688828],[109.731086,31.700446],[109.709531,31.701122],[109.696028,31.70709],[109.693376,31.716558],[109.683016,31.71978],[109.659005,31.716956],[109.644913,31.720854],[109.617024,31.711585],[109.606172,31.714688],[109.580394,31.72869],[109.572096,31.726343],[109.549755,31.730002],[109.501095,31.717155],[109.491029,31.720973],[109.477134,31.720218],[109.472714,31.714649],[109.459703,31.715205],[109.45656,31.722008],[109.4462,31.722883],[109.425872,31.718786],[109.420274,31.720655],[109.411632,31.708244],[109.389487,31.705101],[109.361254,31.708642],[109.3232,31.70888],[109.302038,31.71067],[109.281611,31.716876],[109.266734,31.714927],[109.225145,31.724951],[109.227403,31.717035],[109.222542,31.701242],[109.228533,31.690817],[109.224261,31.688629],[109.209187,31.69412],[109.178253,31.69587],[109.16696,31.700207],[109.158514,31.69396],[109.148154,31.703669],[109.133325,31.705936],[109.122965,31.700167],[109.092473,31.699531],[109.06149,31.704743],[109.052013,31.696507],[109.038117,31.690777],[109.007036,31.691135],[109.0008,31.686758],[109.007331,31.673188],[109.00134,31.671039],[109.000407,31.657029],[108.992649,31.652969],[108.955529,31.654601],[108.954792,31.66288],[108.937607,31.652969],[108.918113,31.652929],[108.91448,31.660731],[108.906182,31.661248],[108.898227,31.65484],[108.892728,31.642578],[108.893268,31.632187],[108.887719,31.625657],[108.895821,31.614587],[108.894888,31.606025],[108.877997,31.602799],[108.865133,31.592801],[108.853398,31.578939],[108.837096,31.574237],[108.824133,31.578899],[108.820303,31.574596],[108.801399,31.574078],[108.794034,31.551366],[108.777094,31.543635],[108.769483,31.529845],[108.766881,31.513621],[108.761087,31.503893],[108.748026,31.505208],[108.730055,31.499746],[108.721707,31.503255],[108.703982,31.503972],[108.694554,31.499347],[108.69971,31.491652],[108.697255,31.476737],[108.703098,31.463814],[108.726617,31.455118],[108.740071,31.441834],[108.752298,31.443749],[108.759908,31.438602],[108.779205,31.435251],[108.800221,31.425155],[108.809894,31.417414],[108.795752,31.403086],[108.798748,31.396859],[108.816866,31.390233],[108.83248,31.375302],[108.822071,31.370271],[108.823053,31.356815],[108.834739,31.35382],[108.837096,31.346432],[108.865035,31.343716],[108.869896,31.339562],[108.887572,31.336007],[108.893268,31.342358],[108.89042,31.354738],[108.892826,31.364641],[108.886394,31.372148],[108.88988,31.383566],[108.900142,31.387558],[108.908146,31.383566],[108.916837,31.387399],[108.927197,31.386001],[108.936035,31.390991],[108.948409,31.382728],[108.962452,31.385722],[108.971487,31.380812],[108.983418,31.385762],[108.992207,31.380812],[109.020146,31.375781],[109.029181,31.370032],[109.05162,31.367117],[109.065712,31.364681],[109.079117,31.370112],[109.102735,31.364162],[109.123357,31.37083],[109.138137,31.366279],[109.176534,31.361527],[109.197206,31.362126],[109.213606,31.358332],[109.224114,31.362206],[109.235014,31.356975],[109.242085,31.362126],[109.266292,31.35985],[109.272577,31.355657],[109.322415,31.34779],[109.326392,31.324064],[109.334396,31.306925],[109.355853,31.295578],[109.354134,31.286826],[109.374757,31.286427],[109.376623,31.276236],[109.39042,31.262326],[109.387867,31.248654],[109.393857,31.242897],[109.415511,31.245496],[109.431617,31.240058],[109.435741,31.231981],[109.45003,31.238979],[109.450766,31.246535],[109.462698,31.250693],[109.479638,31.251772],[109.493533,31.249454],[109.497069,31.244816],[109.512487,31.243217],[109.518526,31.250333],[109.530409,31.253891],[109.55712,31.251053],[109.561883,31.243976],[109.569346,31.244456],[109.587366,31.260967],[109.602833,31.262686],[109.597776,31.268442],[109.61285,31.295018],[109.626893,31.295937],[109.644373,31.310641],[109.662443,31.294499],[109.690676,31.296577],[109.698679,31.302171],[109.713803,31.299094],[109.711446,31.31959],[109.716945,31.332013],[109.71503,31.338644],[109.720972,31.349746],[109.730006,31.356176],[109.749892,31.35362],[109.761431,31.346951],[109.775032,31.354179],[109.775425,31.361527],[109.785638,31.361088],[109.789223,31.377857],[109.803315,31.378336],[109.821384,31.387638],[109.830468,31.388317],[109.853496,31.382209],[109.890126,31.392069],[109.911878,31.392149],[109.922828,31.394664],[109.935005,31.414381],[109.940553,31.427869],[109.937804,31.440836],[109.94183,31.448456],[109.938049,31.458748],[109.94291,31.475341]]]]}},{"type":"Feature","properties":{"adcode":500240,"name":"石柱土家族自治县","center":[108.112448,29.99853],"centroid":[108.298494,30.093676],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":34,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.424054,30.488956],[108.42101,30.497176],[108.427786,30.512567],[108.412368,30.503059],[108.409962,30.517563],[108.399553,30.520504],[108.402253,30.529688],[108.409717,30.532749],[108.410404,30.543261],[108.404315,30.548295],[108.394593,30.536737],[108.378734,30.534884],[108.344657,30.476987],[108.338814,30.470337],[108.33248,30.449336],[108.317062,30.433129],[108.315835,30.425387],[108.298944,30.407562],[108.296538,30.401109],[108.275031,30.405546],[108.261479,30.388605],[108.254261,30.403529],[108.236732,30.409216],[108.223622,30.421274],[108.208351,30.408611],[108.186403,30.413854],[108.174619,30.410144],[108.152965,30.395019],[108.133128,30.362624],[108.12262,30.359799],[108.096449,30.358831],[108.084665,30.350115],[108.084419,30.343093],[108.094731,30.344667],[108.117072,30.329169],[108.127874,30.333487],[108.145894,30.334254],[108.163031,30.325294],[108.163473,30.321055],[108.147466,30.302606],[108.147318,30.297115],[108.127334,30.299982],[108.131606,30.288918],[108.129003,30.281125],[108.142212,30.273654],[108.141475,30.265495],[108.126303,30.255357],[108.129494,30.244531],[108.125861,30.235845],[108.121933,30.245824],[108.114273,30.251399],[108.103716,30.246995],[108.093994,30.253459],[108.097038,30.237259],[108.105533,30.232653],[108.101948,30.223482],[108.10843,30.219198],[108.124879,30.227199],[108.127383,30.223684],[108.119379,30.211803],[108.129887,30.210268],[108.120705,30.200568],[108.107595,30.207439],[108.085549,30.17862],[108.072438,30.175144],[108.070965,30.163702],[108.061587,30.157071],[108.075777,30.153917],[108.092374,30.129532],[108.083928,30.111209],[108.0554,30.072043],[108.037233,30.067591],[108.031144,30.072326],[108.034974,30.084183],[108.029622,30.089119],[108.021569,30.078032],[108.010571,30.071355],[108.00733,30.057028],[107.998492,30.053871],[108.007575,30.043508],[108.01661,30.042132],[108.02702,30.029056],[108.018476,30.014804],[108.024859,30.010957],[108.03247,29.990222],[108.018034,29.971589],[108.009687,29.978476],[108.002027,29.977544],[107.993336,29.96689],[108.014695,29.9472],[108.024908,29.934962],[108.036005,29.912225],[108.046316,29.912387],[108.049999,29.906226],[108.035907,29.90197],[108.042536,29.893456],[108.059869,29.889726],[108.071456,29.877157],[108.072488,29.870953],[108.058936,29.857246],[108.084125,29.838873],[108.099199,29.840657],[108.108823,29.848851],[108.122915,29.851771],[108.145992,29.846377],[108.14997,29.83011],[108.167008,29.838305],[108.172998,29.837656],[108.177859,29.822443],[108.190626,29.819441],[108.194014,29.812665],[108.18547,29.801628],[108.194112,29.790712],[108.217484,29.777887],[108.208204,29.764938],[108.204129,29.765182],[108.187925,29.743909],[108.178252,29.749877],[108.172213,29.745533],[108.17457,29.735463],[108.181051,29.734286],[108.169168,29.7087],[108.179529,29.699602],[108.174962,29.686075],[108.156157,29.676121],[108.156304,29.669579],[108.143587,29.659218],[108.149921,29.647636],[108.156107,29.644872],[108.168186,29.648083],[108.169267,29.658445],[108.195143,29.666979],[108.208891,29.685343],[108.205847,29.69948],[108.22156,29.712153],[108.217975,29.716336],[108.225193,29.725514],[108.22097,29.732499],[108.227992,29.747076],[108.239384,29.745289],[108.245669,29.750892],[108.27071,29.733149],[108.295752,29.729007],[108.298895,29.734773],[108.30513,29.72588],[108.315785,29.722793],[108.326391,29.711747],[108.350156,29.721047],[108.358013,29.720763],[108.373922,29.712803],[108.368078,29.726042],[108.365918,29.748537],[108.36091,29.756819],[108.383987,29.795501],[108.3942,29.816479],[108.368177,29.818913],[108.372841,29.834127],[108.371466,29.84159],[108.391598,29.853231],[108.386933,29.860004],[108.392777,29.863492],[108.402793,29.855908],[108.433776,29.880077],[108.453122,29.871683],[108.457394,29.865438],[108.468049,29.864181],[108.489163,29.867466],[108.495693,29.876914],[108.509049,29.878617],[108.517052,29.865479],[108.516169,29.885631],[108.524221,29.896821],[108.524074,29.911658],[108.515874,29.930383],[108.519458,29.943512],[108.534238,29.971833],[108.542634,29.99735],[108.528886,30.00545],[108.530703,30.043104],[108.526185,30.04954],[108.531783,30.055085],[108.524221,30.058647],[108.516414,30.05298],[108.516267,30.064232],[108.525252,30.073824],[108.532323,30.073702],[108.533207,30.084183],[108.546071,30.104372],[108.561489,30.144132],[108.56748,30.155697],[108.552258,30.163338],[108.553829,30.174537],[108.568904,30.225623],[108.56743,30.23435],[108.573519,30.237178],[108.58167,30.255882],[108.567332,30.254872],[108.562029,30.26287],[108.545237,30.269978],[108.54617,30.276279],[108.537921,30.278581],[108.533305,30.292108],[108.52486,30.294733],[108.526382,30.305271],[108.51499,30.315162],[108.498394,30.316332],[108.48273,30.33603],[108.46908,30.343819],[108.459898,30.359799],[108.451011,30.355603],[108.432696,30.35411],[108.421943,30.366457],[108.403284,30.374728],[108.399454,30.389412],[108.420912,30.394131],[108.425331,30.399052],[108.421697,30.410547],[108.430486,30.415628],[108.421206,30.4295],[108.411779,30.436919],[108.421796,30.448852],[108.421206,30.464372],[108.414332,30.475818],[108.424054,30.488956]]]]}},{"type":"Feature","properties":{"adcode":500241,"name":"秀山土家族苗族自治县","center":[108.996043,28.444772],"centroid":[109.018121,28.491722],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":35,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.723377,28.491963],[108.729416,28.470918],[108.749106,28.461052],[108.746749,28.450239],[108.773509,28.438315],[108.779303,28.427418],[108.763296,28.398585],[108.762805,28.385791],[108.783084,28.380402],[108.777732,28.367441],[108.777929,28.347236],[108.76143,28.324557],[108.770072,28.314965],[108.763738,28.305619],[108.741053,28.294914],[108.725783,28.280296],[108.7276,28.259827],[108.737567,28.251424],[108.739678,28.226252],[108.749548,28.22757],[108.758681,28.220236],[108.758533,28.196046],[108.765309,28.192131],[108.773313,28.213478],[108.796636,28.22378],[108.807389,28.242855],[108.821776,28.245121],[108.826539,28.22551],[108.836212,28.20738],[108.855116,28.199879],[108.864445,28.206143],[108.897245,28.219536],[108.91227,28.21558],[108.919488,28.217764],[108.933187,28.207874],[108.927884,28.20025],[108.929407,28.190565],[108.956609,28.182321],[108.979539,28.171274],[108.985775,28.161339],[109.001537,28.16138],[109.009786,28.167893],[109.014647,28.17923],[109.013812,28.199591],[109.026186,28.220154],[109.038215,28.217434],[109.041603,28.20536],[109.06144,28.200126],[109.070033,28.191471],[109.086384,28.184712],[109.089477,28.196252],[109.101409,28.201404],[109.096106,28.22106],[109.085353,28.232803],[109.081523,28.24854],[109.088004,28.261392],[109.095959,28.261804],[109.117563,28.278607],[109.11614,28.288614],[109.126844,28.296932],[109.14123,28.320564],[109.137744,28.33423],[109.150805,28.344684],[109.151689,28.350528],[109.138579,28.358635],[109.144766,28.36382],[109.153113,28.38106],[109.153653,28.39731],[109.157139,28.403398],[109.154291,28.417588],[109.164946,28.414997],[109.168383,28.432064],[109.176731,28.43153],[109.180708,28.439466],[109.176583,28.446169],[109.192394,28.464423],[109.191756,28.470877],[109.215521,28.48214],[109.229613,28.474906],[109.274344,28.494676],[109.271988,28.51399],[109.280384,28.5204],[109.274688,28.524837],[109.27459,28.539217],[109.288928,28.546324],[109.29482,28.566286],[109.304738,28.579017],[109.3205,28.579797],[109.309354,28.598808],[109.306604,28.62069],[109.300172,28.626436],[109.287013,28.626806],[109.278469,28.612439],[109.258878,28.605583],[109.249401,28.608662],[109.236144,28.619417],[109.201478,28.598439],[109.186355,28.610632],[109.181395,28.621716],[109.193131,28.636205],[109.202902,28.63797],[109.221069,28.649133],[109.251758,28.660828],[109.270907,28.671783],[109.266194,28.680194],[109.252936,28.691558],[109.265015,28.699474],[109.271497,28.698941],[109.28495,28.713871],[109.294672,28.71912],[109.28824,28.727322],[109.300663,28.739665],[109.297668,28.748152],[109.278469,28.751514],[109.273019,28.760902],[109.256177,28.765616],[109.261333,28.774962],[109.241299,28.776519],[109.241888,28.794266],[109.246406,28.801683],[109.245817,28.812992],[109.239679,28.827168],[109.242674,28.85105],[109.234032,28.863828],[109.235505,28.880372],[109.211004,28.882788],[109.197943,28.875131],[109.197599,28.870217],[109.175896,28.8515],[109.166223,28.852402],[109.157188,28.844824],[109.147908,28.84552],[109.130919,28.832453],[109.117465,28.83106],[109.111622,28.824669],[109.104502,28.826595],[109.093455,28.819261],[109.092718,28.809305],[109.106712,28.816311],[109.105681,28.805699],[109.094338,28.79234],[109.05982,28.768198],[109.062128,28.759385],[109.05653,28.741879],[109.044991,28.719325],[109.01941,28.690696],[108.999622,28.699228],[108.990636,28.67884],[108.982633,28.682327],[108.961126,28.630213],[108.954252,28.610016],[108.936723,28.616913],[108.915314,28.621962],[108.895379,28.614737],[108.881484,28.621716],[108.854821,28.613136],[108.839256,28.604146],[108.819174,28.60082],[108.815295,28.593471],[108.799877,28.583657],[108.785981,28.562096],[108.785294,28.54924],[108.775964,28.544968],[108.763984,28.545707],[108.753329,28.532972],[108.730889,28.517853],[108.723377,28.491963]]]]}},{"type":"Feature","properties":{"adcode":500242,"name":"酉阳土家族苗族自治县","center":[108.767201,28.839828],"centroid":[108.800321,28.89987],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":36,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.235505,28.880372],[109.239924,28.892042],[109.256864,28.907721],[109.25544,28.926141],[109.261038,28.950532],[109.272331,28.970949],[109.284165,28.972299],[109.292463,28.987639],[109.292365,29.004695],[109.295458,29.016391],[109.304836,29.020808],[109.319616,29.04256],[109.312251,29.066351],[109.301154,29.070643],[109.287847,29.07101],[109.266194,29.079552],[109.257748,29.086745],[109.237273,29.086704],[109.22593,29.113508],[109.232559,29.120086],[109.228533,29.129972],[109.215521,29.145289],[109.203098,29.151823],[109.18007,29.171955],[109.16254,29.180693],[109.154488,29.172363],[109.138824,29.169505],[109.123014,29.191267],[109.122965,29.199268],[109.110395,29.215105],[109.118545,29.232409],[109.141967,29.270475],[109.129986,29.282468],[109.106467,29.288545],[109.10465,29.293154],[109.113881,29.314196],[109.108725,29.319333],[109.114568,29.332787],[109.110002,29.342693],[109.112506,29.360995],[109.101704,29.373506],[109.090361,29.378681],[109.080786,29.390661],[109.06419,29.401743],[109.053191,29.40272],[109.039934,29.389805],[109.033453,29.378233],[109.034729,29.360261],[109.009786,29.36022],[108.999425,29.363929],[108.994761,29.355085],[108.985088,29.350479],[108.986168,29.336742],[108.97237,29.32924],[108.956069,29.330953],[108.919734,29.326305],[108.908784,29.312972],[108.903432,29.296416],[108.915462,29.293561],[108.919783,29.283732],[108.93903,29.274065],[108.954252,29.272066],[108.937607,29.244283],[108.925871,29.23347],[108.925135,29.222615],[108.915265,29.215513],[108.896607,29.209024],[108.882416,29.1791],[108.854625,29.133484],[108.855656,29.122659],[108.847702,29.105214],[108.833266,29.109995],[108.832087,29.117267],[108.812054,29.122047],[108.803756,29.129195],[108.784852,29.123272],[108.775768,29.124008],[108.774295,29.110485],[108.749008,29.10881],[108.747584,29.092384],[108.726912,29.080492],[108.700397,29.094427],[108.698777,29.101619],[108.686698,29.109341],[108.681984,29.105623],[108.668678,29.108156],[108.66416,29.103744],[108.669856,29.095939],[108.662835,29.090382],[108.667205,29.078776],[108.661313,29.071624],[108.646533,29.081841],[108.628906,29.072891],[108.622179,29.073422],[108.625665,29.08699],[108.614568,29.095408],[108.615206,29.109709],[108.60789,29.109014],[108.599396,29.086908],[108.587169,29.095081],[108.598266,29.105705],[108.570769,29.124416],[108.55869,29.13953],[108.534631,29.133975],[108.528198,29.128338],[108.527167,29.117798],[108.518329,29.100148],[108.505464,29.095326],[108.492109,29.095245],[108.473008,29.08462],[108.464858,29.087521],[108.456314,29.071951],[108.447279,29.066187],[108.434906,29.070643],[108.424987,29.057277],[108.415756,29.051268],[108.394446,29.053107],[108.373627,29.044849],[108.348143,29.027228],[108.331989,29.010911],[108.326686,29.000932],[108.312103,28.997497],[108.322954,28.953969],[108.339943,28.947872],[108.346916,28.941488],[108.350549,28.930316],[108.350353,28.907107],[108.357423,28.893393],[108.355312,28.870831],[108.346425,28.856333],[108.355165,28.831634],[108.354232,28.814263],[108.382416,28.805781],[108.386492,28.801642],[108.388996,28.785823],[108.385264,28.772216],[108.375051,28.767092],[108.372498,28.760164],[108.347259,28.736302],[108.347898,28.710262],[108.340238,28.689671],[108.332529,28.679579],[108.344019,28.673425],[108.35217,28.676091],[108.39096,28.651759],[108.421697,28.643346],[108.43903,28.633989],[108.461371,28.634153],[108.471142,28.627791],[108.491274,28.630582],[108.500996,28.626642],[108.502715,28.637601],[108.517985,28.639981],[108.524614,28.647122],[108.53851,28.652703],[108.548723,28.64782],[108.561146,28.649174],[108.564828,28.661156],[108.574796,28.660336],[108.586482,28.64704],[108.585303,28.639653],[108.596155,28.64035],[108.609019,28.633619],[108.623259,28.641418],[108.632343,28.638914],[108.636025,28.621757],[108.618889,28.606527],[108.604453,28.589529],[108.610934,28.539381],[108.58933,28.538601],[108.576858,28.533794],[108.573224,28.528124],[108.578036,28.509018],[108.574943,28.497676],[108.589182,28.473837],[108.586776,28.463066],[108.597235,28.456817],[108.602833,28.438849],[108.609952,28.435683],[108.608823,28.407306],[108.587415,28.404961],[108.577545,28.390193],[108.576367,28.364314],[108.580099,28.343285],[108.598021,28.34205],[108.606466,28.336576],[108.611573,28.324557],[108.630771,28.328014],[108.639855,28.333201],[108.647466,28.331101],[108.667352,28.334436],[108.677418,28.345795],[108.670102,28.354396],[108.659103,28.350322],[108.657041,28.362215],[108.664701,28.38287],[108.693523,28.395171],[108.696813,28.404591],[108.690921,28.410555],[108.688318,28.422318],[108.669856,28.431489],[108.663915,28.444318],[108.641476,28.455707],[108.645256,28.468616],[108.658661,28.47803],[108.671133,28.475276],[108.688613,28.482469],[108.701428,28.482469],[108.709727,28.501087],[108.723377,28.491963],[108.730889,28.517853],[108.753329,28.532972],[108.763984,28.545707],[108.775964,28.544968],[108.785294,28.54924],[108.785981,28.562096],[108.799877,28.583657],[108.815295,28.593471],[108.819174,28.60082],[108.839256,28.604146],[108.854821,28.613136],[108.881484,28.621716],[108.895379,28.614737],[108.915314,28.621962],[108.936723,28.616913],[108.954252,28.610016],[108.961126,28.630213],[108.982633,28.682327],[108.990636,28.67884],[108.999622,28.699228],[109.01941,28.690696],[109.044991,28.719325],[109.05653,28.741879],[109.062128,28.759385],[109.05982,28.768198],[109.094338,28.79234],[109.105681,28.805699],[109.106712,28.816311],[109.092718,28.809305],[109.093455,28.819261],[109.104502,28.826595],[109.111622,28.824669],[109.117465,28.83106],[109.130919,28.832453],[109.147908,28.84552],[109.157188,28.844824],[109.166223,28.852402],[109.175896,28.8515],[109.197599,28.870217],[109.197943,28.875131],[109.211004,28.882788],[109.235505,28.880372]]]]}},{"type":"Feature","properties":{"adcode":500243,"name":"彭水苗族土家族自治县","center":[108.166551,29.293856],"centroid":[108.266309,29.353956],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":37,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.312103,28.997497],[108.326686,29.000932],[108.331989,29.010911],[108.348143,29.027228],[108.373627,29.044849],[108.394446,29.053107],[108.415756,29.051268],[108.424987,29.057277],[108.434906,29.070643],[108.447279,29.066187],[108.456314,29.071951],[108.464858,29.087521],[108.473008,29.08462],[108.492109,29.095245],[108.505464,29.095326],[108.518329,29.100148],[108.527167,29.117798],[108.528198,29.128338],[108.534631,29.133975],[108.55869,29.13953],[108.570671,29.152313],[108.574403,29.164115],[108.556775,29.184857],[108.548919,29.205064],[108.555597,29.218738],[108.569247,29.224941],[108.568314,29.236245],[108.575778,29.252362],[108.571948,29.265703],[108.583192,29.278063],[108.584272,29.285812],[108.573568,29.302411],[108.560409,29.306081],[108.549459,29.315378],[108.549705,29.328303],[108.561538,29.352598],[108.550196,29.371754],[108.547201,29.381697],[108.552995,29.390539],[108.555843,29.412701],[108.576367,29.41706],[108.59257,29.442963],[108.581228,29.464911],[108.585549,29.477328],[108.561686,29.491657],[108.539688,29.491697],[108.50954,29.50285],[108.501242,29.49996],[108.494711,29.515099],[108.506054,29.536868],[108.515334,29.543948],[108.536251,29.540001],[108.547643,29.547406],[108.548379,29.557575],[108.534532,29.572177],[108.534974,29.588851],[108.516709,29.602148],[108.512633,29.614467],[108.507036,29.611093],[108.499965,29.622069],[108.487199,29.624102],[108.489997,29.642515],[108.504139,29.666288],[108.503549,29.67669],[108.52373,29.683109],[108.526676,29.696759],[108.506446,29.708172],[108.489506,29.723199],[108.467656,29.729697],[108.460487,29.740904],[108.437115,29.740782],[108.438588,29.75617],[108.445462,29.76437],[108.444235,29.776913],[108.421304,29.774153],[108.416984,29.787344],[108.425478,29.804185],[108.424496,29.815302],[108.408882,29.820658],[108.404561,29.834451],[108.393169,29.83583],[108.3942,29.816479],[108.383987,29.795501],[108.36091,29.756819],[108.365918,29.748537],[108.368078,29.726042],[108.373922,29.712803],[108.358013,29.720763],[108.350156,29.721047],[108.326391,29.711747],[108.315785,29.722793],[108.30513,29.72588],[108.298895,29.734773],[108.295752,29.729007],[108.27071,29.733149],[108.245669,29.750892],[108.239384,29.745289],[108.227992,29.747076],[108.22097,29.732499],[108.225193,29.725514],[108.217975,29.716336],[108.22156,29.712153],[108.205847,29.69948],[108.208891,29.685343],[108.195143,29.666979],[108.169267,29.658445],[108.168186,29.648083],[108.17894,29.647839],[108.182033,29.625972],[108.178547,29.619183],[108.167499,29.617679],[108.163374,29.603612],[108.153652,29.599749],[108.132391,29.603815],[108.117366,29.603449],[108.114175,29.599302],[108.098757,29.600684],[108.082161,29.611377],[108.078773,29.618817],[108.067872,29.614223],[108.076563,29.605726],[108.084026,29.588892],[108.075876,29.577627],[108.066153,29.575472],[108.066988,29.566687],[108.075826,29.557982],[108.074059,29.549073],[108.055793,29.531783],[108.015432,29.504559],[108.017347,29.483719],[108.013959,29.469674],[108.013075,29.448786],[108.002763,29.442108],[108.004286,29.428424],[107.989653,29.416856],[107.992796,29.397383],[107.988426,29.38027],[107.976641,29.36344],[107.983319,29.350397],[107.984301,29.339188],[107.992059,29.325408],[108.003304,29.315174],[107.996282,29.288545],[107.998983,29.273943],[107.99697,29.26248],[108.010325,29.247792],[108.006446,29.229267],[107.997804,29.236857],[107.986756,29.217799],[107.973057,29.210166],[107.970111,29.198492],[107.960143,29.188695],[107.94286,29.178243],[107.934905,29.185102],[107.911975,29.190328],[107.898865,29.184245],[107.903775,29.172282],[107.899896,29.166361],[107.892727,29.134138],[107.895133,29.117185],[107.883889,29.106195],[107.889486,29.085151],[107.883938,29.078163],[107.873086,29.074852],[107.874707,29.057031],[107.849567,29.039289],[107.838421,29.040597],[107.823543,29.034219],[107.821186,29.005758],[107.810433,28.984285],[107.82811,28.976144],[107.842005,28.964648],[107.867538,28.960475],[107.872006,28.983058],[107.883054,28.986535],[107.887571,29.000114],[107.885215,29.008417],[107.908783,29.007353],[107.931124,29.035241],[107.949292,29.033729],[107.993925,29.033851],[108.02427,29.038676],[108.034532,29.046771],[108.035956,29.054047],[108.070474,29.086418],[108.109854,29.076078],[108.130624,29.063326],[108.132686,29.054088],[108.150068,29.053311],[108.171427,29.06537],[108.197745,29.070643],[108.204718,29.056786],[108.215029,29.056132],[108.230398,29.046975],[108.224653,29.031562],[108.24228,29.028372],[108.256962,29.041987],[108.260203,29.063735],[108.268648,29.077795],[108.270612,29.090913],[108.28657,29.089197],[108.301939,29.083067],[108.307193,29.077509],[108.297863,29.047179],[108.309795,29.018436],[108.308715,29.003386],[108.312103,28.997497]]]]}}]}')}},l={};function s(e){var t=l[e];if(void 0!==t)return t.exports;var n=l[e]={id:e,loaded:!1,exports:{}};return a[e].call(n.exports,n,n.exports,s),n.loaded=!0,n.exports}s.m=a,s.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return s.d(t,{a:t}),t},t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,s.t=function(n,r){if(1&r&&(n=this(n)),8&r||"object"==typeof n&&n&&(4&r&&n.__esModule||16&r&&"function"==typeof n.then))return n;var i=Object.create(null);s.r(i);var o={};e=e||[null,t({}),t([]),t(t)];for(var a=2&r&&n;("object"==typeof a||"function"==typeof a)&&!~e.indexOf(a);a=t(a))Object.getOwnPropertyNames(a).forEach(e=>{o[e]=()=>n[e]});return o.default=()=>n,s.d(i,o),i},s.d=(e,t)=>{for(var n in t)s.o(t,n)&&!s.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},s.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})(),s.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),s.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),s.nc=void 0,n=[],s.O=(e,t,r,i)=>{if(t){i=i||0;for(var o=n.length;o>0&&n[o-1][2]>i;o--)n[o]=n[o-1];n[o]=[t,r,i];return}for(var a=1/0,o=0;o=i)&&Object.keys(s.O).every(e=>s.O[e](t[c]))?t.splice(c--,1):(l=!1,i0===r[e],i=(e,t)=>{var n,i,[o,a,l]=t,c=0;if(o.some(e=>0!==r[e])){for(n in a)s.o(a,n)&&(s.m[n]=a[n]);if(l)var u=l(s)}for(e&&e(t);cs(1712));return s.O(c)})()); \ No newline at end of file