| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292 |
- <template>
- <div class="home container">
- <!-- <div class="affix-container" >
- <el-affix :offset="200" >
- <div style="padding: 10px;font-size: 14px;height:300px;cursor: pointer;display: flex;justify-content: center;align-items: center;">
- <el-steps direction="vertical" :active="activeIndex">
- <el-step title="顶部" @click="goAnchor('top')" :icon="Edit"/>
- <el-step title="基础能力" @click="goAnchor('jcnl')" :icon="Edit"/>
- <el-step title="统建应用" @click="goAnchor('tjyy')" :icon="Edit"/>
- <el-step title="应用支撑" @click="goAnchor('yyzc')" :icon="Edit"/>
- </el-steps>
-
- </div>
- </el-affix>
- </div> -->
- <div class="part1" id="top">
- <div style="margin-left: 10%;">
- <div class="super-title">青浦区“一张图”区级节点</div>
- <div class="title-sub">以二三维一体化引擎为核心</div>
- <div class="title-sub">构建政务时空数据治理与应用服务生态</div>
- <div class="title-sub">赋能城市精细化治理</div>
- <div class="count-title">调用总数</div>
- <div><digitalScrollersComp :val="totalCallNumber" /></div>
- <div class="count-title" style="margin: 20px 0px 20px 0px;">
- <span class="text1">昨日调用量</span>
- <span class="count"><NumberScroll :value="lastDayCall" :duration="2000" /></span>
- <span class="text1">次</span>
- </div>
- <!-- <div class="part1-1">
- <div class="part1-1-1">
- <span class="text">调用总数</span>
- <div class="number-container">
-
- <digitalScrollersComp :val="totalCallNumber" /> -->
- <!-- <span v-for="(num, index) in totalCall" :key="index">
- <span v-if="num.indexOf(',') > -1">
- <span class="separator">,</span>
- </span>
- <span v-else>
- <span class="number-item">
- <NumberScroll :value="num" :duration="2000" />
- </span>
- </span>
- </span> -->
- <!-- <span class="text">次</span> -->
- <!-- </div>
- </div>
- <div class="part1-1-2">
- <div class="call-count-container">
- <div class="line"></div>
- <div>
- <span class="text1">昨日调用量</span>
- <span class="count"><NumberScroll :value="lastDayCall" :duration="2000" /></span>
- <span class="text2">次</span>
- </div>
- <div class="line"></div>
- </div>
- </div>
- </div> -->
- </div>
- </div>
- <div class="darkblue-background">
- <div class="row">
- <div class="radius-container">
- <div>
- <div class="strong-data text-color"><NumberScroll :value="unitNum" :duration="2000" />个</div>
- <div class="font text-desc-color">授权委办数</div>
- </div>
- </div>
- <div class="radius-container">
- <div>
- <div class="strong-data text-color"><NumberScroll :value="appNum" :duration="2000" />个</div>
- <div class="font text-desc-color">授权应用数</div>
- </div>
- </div>
- <div class="radius-container">
- <div>
- <div class="strong-data text-color"><NumberScroll :value="userNum" :duration="2000" />个</div>
- <div class="font text-desc-color">授权用户数</div>
- </div>
- </div>
- </div>
- <div class="row" style="margin-top: 50px;margin-bottom: 50px;justify-content: space-between;">
- <div class="al-container">
- <div class="al-container-border">
- <div>
- <div class="strong-data text-color"><NumberScroll :value="329" :duration="2000" />个</div>
- <div class="font text-color">地图服务</div>
- </div>
- </div>
- </div>
- <div class="al-container">
- <div class="al-container-border">
- <div>
- <div class="strong-data text-color"><NumberScroll :value="54" :duration="2000" />个</div>
- <div class="font text-color">算法能力</div>
- </div>
- </div>
- </div>
- <div class="al-container">
- <div class="al-container-border">
- <div>
- <div class="strong-data text-color"><NumberScroll :value="105" :duration="2000" />个</div>
- <div class="font text-color">支撑组件</div>
- </div>
- </div>
- </div>
- </div>
- <div class="second-title ">
- 服务调用趋势(近30天)
- </div>
- <div id="echart1"></div>
- <div class="second-title ">
- 平台核心运行清单
- </div>
- <!--四组统计-->
- <div class="row">
- <div class="lighter-container" style="flex: 2;">
- <div class="third-title ">
- <el-icon color="#0071e3" size="30px">
- <Stopwatch></Stopwatch>
- </el-icon>
- <div>基础统计</div>
- </div>
- <div class="grid-2x2">
- <div class="lighter-container middle-container">
- <div class="strong-data white"><NumberScroll :value="weekCall" :duration="2000" /></div>
- <div class="title-sub white">近一周总调用</div>
- </div>
- <div class="lighter-container middle-container">
- <div class="strong-data white"><NumberScroll :value="monthCall" :duration="2000" /></div>
- <div class="title-sub white">近一月总调用</div>
- </div>
- <div class="lighter-container middle-container">
- <div class="strong-data white"><NumberScroll :value="seasonCall" :duration="2000" /></div>
- <div class="title-sub white">近三月总调用</div>
- </div>
- <div class="lighter-container middle-container">
- <div class="strong-data white"><NumberScroll :value="yearCall" :duration="2000" /></div>
- <div class="title-sub white">近一年总调用</div>
- </div>
- </div>
- </div>
- <div class="lighter-container" style="flex: 3;">
- <div class="between-row">
- <div class="third-title">
- <el-icon color="#0071e3" size="30px">
- <Histogram />
- </el-icon>
- <div>委办调用情况</div>
- </div>
- <span>
- <el-button v-show="this.chartMluLevel != 'unit'" text size="large" circle @click="chartMluBack()">
- <el-icon color="#0071e3" size="30px">
- <Back />
- </el-icon>
- </el-button>
- <el-date-picker v-model="chartMluTimeRange" :clearable="false" type="daterange" range-separator="到" start-placeholder="开始日期"
- end-placeholder="结束日期" @change="chartMluFocus()" />
- </span>
- </div>
- <div id="echartMultiLevelUse"></div>
- </div>
- </div>
- <div class="row">
- <div class="lighter-container" style="flex: 3;">
- <div class="third-title ">
- <!-- <el-icon color="#0071e3" size="30px">
- <List></List>
- </el-icon> -->
- <div>热点资源 Top10</div>
- </div>
- <div class="row">
- <div class="top-list" style="flex-grow: 1;">
- <div v-for="index in 5" :key="index" class="list-item">
- <template v-if="resourceTop[index - 1] != null">
- <el-avatar size="small" class="circle-number blue">
- {{ index }}
- </el-avatar>
- <div class="font" style="flex-grow: 100;">{{ resourceTop[index - 1].name }}</div>
- <div class="font number-color">{{ resourceTop[index - 1].value }}</div>
- </template>
- </div>
- </div>
- <div style="flex-grow: 0.2;"> </div>
- <div class="top-list" style="flex-grow: 0.5;">
- <div v-for="index in 5" :key="index" class="list-item">
- <template v-if="resourceTop[index + 4] != null">
- <el-avatar size="small" class="circle-number blue">
- {{ index + 5 }}
- </el-avatar>
- <div class="font" style="flex-grow: 100;">{{ resourceTop[index + 4].name }}</div>
- <div class="font number-color">{{ resourceTop[index + 4].value }}</div>
- </template>
- </div>
- </div>
- </div>
- </div>
- <div class="lighter-container" style="flex: 2;">
- <div class="third-title ">
- <!-- <el-icon color="#0071e3" size="30px">
- <School />
- </el-icon> -->
- <div>委办调用 Top5</div>
- </div>
- <div class="top-list">
- <div v-for="index in 5" :key="index" class="list-item">
- <template v-if="userTop[index - 1] != null">
- <el-avatar size="small" class="circle-number blue">
- {{ index }}
- </el-avatar>
- <div class="font" style="flex-grow: 100;">{{ userTop[index - 1].name }}</div>
- <div class="font number-color">{{ userTop[index - 1].value }}</div>
- </template>
- </div>
- </div>
- </div>
- </div>
-
- <!-- <div class="title " style="margin-top:90px ;" id="yyal">应用案例</div>
- <div class="title-sub ">技术创新与政务需求深度融合,打造高效、安全、可扩展的时空数据安全平台</div>
- <div class="row" style="margin-top: 90px;justify-content: space-between;">
- <div class="al-container">
- <div class="al-container-border">
- <div>
- <div class="strong-data text-color"><NumberScroll :value="3212560" :duration="2000" />次</div>
- <div class="font text-color">地名地址</div>
- </div>
- </div>
- </div>
- <div class="al-container">
- <div class="al-container-border">
- <div>
- <div class="strong-data text-color"><NumberScroll :value="2362106" :duration="2000" />次</div>
- <div class="font text-color">坐标转换</div>
- </div>
- </div>
- </div>
- <div class="al-container">
- <div class="al-container-border">
- <div>
- <div class="strong-data text-color"><NumberScroll :value="8625997" :duration="2000" />次</div>
- <div class="font text-color">地图服务</div>
- </div>
- </div>
- </div>
- </div> -->
- <!-- <div v-for="useCaseItem in examplelist" :key="useCaseItem.title" :id="useCaseItem.title === '基础能力' ? 'jcnl' : useCaseItem.title === '统建应用' ? 'tjyy' : useCaseItem.title === '应用支撑' ? 'yyzc' : ''">
- <div class="title " style="margin-top:90px;margin-bottom: 20px;">{{useCaseItem.title}}</div>
- <div class="warp-container">
- <div class="warp-page-card" v-for="item in useCaseItem.data" :key="item.title" @click="handleTabsOpenPage(item)">
- <div class="warp-page-img" :style="`background-image: url(${item.picture});`"></div>
- <div class="warp-page-text">
- <div class="warp-page-text-title">{{ item.title }}</div>
- <div class="warp-page-text-desc">{{ item.text }}</div>
- </div>
- </div>
- </div>
- </div>
- <div style="height: 90px;width: 100%;"></div> -->
- <!-- <el-tabs v-model="activeUseCase" class="usecase-tabs" @tab-click="handleClick" stretch="true">
- <el-tab-pane label="dataProcass" name="dataProcass">
- <template #label>
- <div class="tab-lab">
- <el-icon :color="activeUseCase == 'dataProcass' ? '#0071e3' : '#fff'" size="30px">
- <Expand />
- </el-icon>
- <div :class="activeUseCase == 'dataProcass' ? 'blue' : ''">平台应用</div>
- </div>
- </template>
- </el-tab-pane>
- <el-tab-pane label="useInService" name="useInService">
- <template #label>
- <div class="tab-lab">
- <el-icon :color="activeUseCase == 'useInService' ? '#0071e3' : '#fff'" size="30px">
- <Location />
- </el-icon>
- <div :class="activeUseCase == 'useInService' ? 'blue' : ''">业务应用</div>
- </div>
- </template></el-tab-pane>
- <el-tab-pane label="decisionHelping" name="decisionHelping">
- <template #label>
- <div class="tab-lab">
- <el-icon :color="activeUseCase == 'decisionHelping' ? '#0071e3' : '#fff'" size="30px">
- <Guide />
- </el-icon>
- <div :class="activeUseCase == 'decisionHelping' ? 'blue' : ''">特色场景</div>
- </div>
- </template></el-tab-pane>
- </el-tabs>
- <div class="warp-row">
- <div v-for="useCaseItem in useCase[activeUseCase]" :key="useCaseItem.title" class="use-case"
- :style="`background-image: url(${useCaseItem.picture});cursor: pointer;`" @click="handleTabsOpenPage(useCaseItem)">
- <div class="use-case-empty"></div>
- <div class="use-case-text">
- <el-tag v-for="item in useCaseItem.tags" style="margin-right: 5px;" :key="item" color="#e2e4f4" size="lager" effect="dark" round>
- <span class="blue">
- {{ item }}
- </span>
- </el-tag>
- <span class="third-title">
- <span style="padding: 10px 0px;">
- {{ useCaseItem.title }}
- </span>
- </span>
- <p class="font grey" style="padding-top: 0px !important;">
- {{ useCaseItem.text }}
- </p>
- </div>
- </div>
- </div>
- -->
- <!-- <div class="title " style="margin-top:90px ;" id="hxgn">实践与探索·六大核心功能</div>
- <div class="title-sub ">聚焦政务场景痛点,打造从数据治理到应用落地的全链路创新解决方案</div>
- <div class="row" style="margin-top: 36px;">
- <div class="lightblue-container six-router">
- <div class="lightblue-container-boder">
- <div class="img-container">
- <img
- :src="require('@/assets/images/common/gn/1.png')"
- mode="scaleToFill"
- class="row-warp-page-img"
- />
- </div>
- <div class="font lightgrey">
- <p class="lightgrey-title">时空数据管理</p>
- <p class="lightgrey-desc">覆盖数据质量检查、加工、管理、服务发布全流程,支持矢量/栅格数据标准化处理,实现多格式转换与瓦片定制,保障数据规范可用。</p>
- </div>
- </div>
- </div>
- <div class="lightblue-container six-router">
- <div class="lightblue-container-boder">
- <div class="img-container">
- <img
- :src="require('@/assets/images/common/gn/2.png')"
- mode="scaleToFill"
- class="row-warp-page-img"
- />
- </div>
- <div class="font lightgrey">
- <p class="lightgrey-title">二三维一体化引擎</p>
- <p class="lightgrey-desc">嵌入式SDK支撑地图交互、空间分析、数据可视化,涵盖热力图/聚合图/迁徙图等多维呈现,实现精准定位与场景切换。</p>
- </div>
- </div>
- </div>
- <div class="lightblue-container six-router">
- <div class="lightblue-container-boder">
- <div class="img-container">
- <img
- :src="require('@/assets/images/common/gn/3.png')"
- mode="scaleToFill"
- class="row-warp-page-img"
- style="transform: rotate(150deg);"
- />
- </div>
- <div class="font lightgrey">
- <p class="lightgrey-title">时空门户</p>
- <p class="lightgrey-desc">整合平台访问统计、功能演示、服务导航,提供视频教程与业务场景展示,快速上手平台核心能力,支撑政务场景应用。</p>
- </div>
- </div>
- </div>
- </div>
- <div class="row" style="margin-bottom: 50px;">
- <div class="lightblue-container six-router" style="width: 47%;">
- <div class="lightblue-container-boder">
- <div class="img-container">
- <img
- :src="require('@/assets/images/common/gn/4.png')"
- mode="scaleToFill"
- class="row-warp-page-img"
- />
- </div>
- <div class="font lightgrey">
- <p class="lightgrey-title">微功能</p>
- <p class="lightgrey-desc">支持拓扑计算、空间量算、几何运算与数据转换,批量处理海量时空数据,适配规划、管理多场景计算需求。</p>
- </div>
- </div>
- </div>
- <div class="lightblue-container six-router" style="width: 47%;">
- <div class="lightblue-container-boder">
- <div class="img-container">
- <img
- :src="require('@/assets/images/common/gn/5.png')"
- mode="scaleToFill"
- class="row-warp-page-img"
- />
- </div>
- <div class="font lightgrey">
- <p class="lightgrey-title">应用管理</p>
- <p class="lightgrey-desc">统一接入各类时空业务应用,管控访问权限与应用信息,实现“接入-访问-管理”全流程闭环,支撑区级特色应用建设。</p>
- </div>
- </div>
- </div>
- <div class="lightblue-container six-router">
- <div class="lightblue-container-boder">
- <div class="img-container">
- <img
- :src="require('@/assets/images/common/gn/6.png')"
- mode="scaleToFill"
- class="row-warp-page-img"
- />
- </div>
- <div class="font lightgrey">
- <p class="lightgrey-title">运行管理</p>
- <p class="lightgrey-desc">实时监控平台运行数据,负责数据全生命周期管理与权限管控,建立四级管理架构,保障系统合规安全运行。</p>
- </div>
- </div>
- </div>
- </div> -->
- </div>
- <!-- <div class="dark-background">
- <div class="row">
- <img :src="require('@/assets/images/common/home-bg2.png')" />
- <div class="col">
- <div>
- <div class="super-title">多源数据统一治理</div>
- <div class="super-title">打破格式与基准壁垒</div>
- <p class="grey font">支持矢量、栅格等多格式数据转换,同一坐标/投影基准,通过重复项、逻辑/语义一致性检查,让分散数据规范入库</p>
- </div>
- </div>
- </div>
- </div>
- <div class="darkblue-background col">
- <div class="">
- <div class="super-title">强大空间计算能力,秒级响应复杂分析</div>
- <p class="font middle">内置拓扑计算、空间量算、几何运算等核心功能,支持非空间数据转空间数据,快速解决区域关联、资源覆盖等分析需求</p>
- </div>
- </div>
- <div class="image-background" :style="`background-Image:url('${require('@/assets/images/common/home-bg3.png')}');`">
- </div>
- <div class="bluedark-background dense-col">
- <div>
- <div class="super-title">二三维一体化可视化</div>
- <div class="super-title">场景适配更灵活</div>
- </div>
- <div>
- <div class="font middle">
- GIS通用计算功能,实用便捷超乎想象!
- </div>
- <div class="font middle">
- 测距、剖面分析及点线面绘制轻松实现,坐标转换精准高效,路径规划快速准确,地名搜索智能推荐
- </div>
- </div>
- </div>
- <div class="darkblue-background image-background col"
- :style="`background-Image:url('${require('@/assets/images/common/home-bg4.png')}');`">
- <div class="row" style="margin-top: auto;">
- </div>
- </div> -->
- <!-- <div class="blue-background col">
- <div class="warp-row">
- <div class="block-page-router">
- <div class="title">
- 时空数据治理标准化实践
- </div>
- <p class="font grey">
- 构建“检查-加工-发布”全流程数据治理体系,实现矢量/栅格数据标准化处理、多格式转换与瓦片定制,解决区级时空数据格式不统一、质量参差不齐的通电,为全场景应用构牢数据基础
- </p>
- <div class="row" style="margin-top: auto;">
- <div class="font" style="margin-left: auto;" @click="goto('/sksjgl')">
- 了解更多→
- </div>
- </div>
- </div>
- <div class="block-page-router">
- <div class="title">
- 二三维一体化引擎创新应用
- </div>
- <p class="font grey">
- 自研嵌入式 GIS SDK,融合二维地图交互、三维场景渲染能力,创新落地热力图 / 聚合图 / 迁徙图等多维可视化形式,实现区级地理信息 “全景式” 呈现与精准定位。
- </p>
- <div class="row" style="margin-top: auto;">
- <div class="font" style="margin-left: auto;" @click="goto('/skmh/scene')">
- 了解更多→
- </div>
- </div>
- </div>
- <div class="block-page-router">
- <div class="title">
- 政务时空门户一体化探索
- </div>
- <p class="font grey">
- 整合平台访问统计、功能演示、视频教程等能力,打造适配青浦区政务场景的时空门户总入口,打通 “一网通办”“一网统管” 数据链路,降低政务人员使用门槛。
- </p>
- <div class="row" style="margin-top: auto;">
- <div class="font" style="margin-left: auto;" @click="goto('/skmh')">
- 了解更多→
- </div>
- </div>
- </div>
- <div class="block-page-router">
- <div class="title">
- 空间计算微功能场景化落地
- </div>
- <p class="font grey">
- 聚焦区级规划、管理等实际需求,落地拓扑计算、空间量算、几何运算等轻量化微功能,支持海量时空数据批量处理,让专业空间分析能力下沉至街镇级应用场景。
- </p>
- <div class="row" style="margin-top: auto;">
- <div class="font" style="margin-left: auto;" @click="goto('/wgn')">
- 了解更多→
- </div>
- </div>
- </div>
- <div class="block-page-router">
- <div class="title">
- 政务应用标准化接入管理
- </div>
- <p class="font grey">
- 建立区级时空业务应用 “接入 - 授权 - 管控” 全闭环体系,统一规范应用接入流程与权限管理,适配青浦区特色政务应用的快速接入与安全运行。
- </p>
- <div class="row" style="margin-top: auto;">
- <div class="font" style="margin-left: auto;" @click="goto('/yygl')">
- 了解更多→
- </div>
- </div>
- </div>
- <div class="block-page-router">
- <div class="title">
- 四级架构运行管理体系构建
- </div>
- <p class="font grey">
- 创新构建 “区 — 街镇 — 综合网格 — 村居” 四级运行管理架构,实现平台数据全生命周期管控、运行状态实时监控,保障区级 “一张图” 系统合规、安全、稳定运行。
- </p>
- <div class="row" style="margin-top: auto;">
- <div class="font" style="margin-left: auto;" @click="goto('/yxgl')">
- 了解更多→
- </div>
- </div>
- </div>
- </div>
- </div> -->
- <!-- <div class="bluedark-background col">
- <div>
- <div class="super-title">多应用标准化接入</div>
- <div class="super-title">打破“烟囱式”壁垒</div>
- </div>
- <p class="font middle">
- 亮点说明:通过REST API、WebSocket等标准化接口,无缝接入GIS、遥感监测等各类时空应用,统一管理访问权限与运行状态
- </p>
- </div>
- <div class="dark-background image-background col"
- :style="`background-Image:url('${require('@/assets/images/common/home-bg5.png')}');`">
- <div class="row" style="margin-top: auto;">
- </div>
- </div> -->
- </div>
- <!-- <div class="darkblue-background col" style="height: auto;">
- <div class="super-title grey">
- <div>全链路运行监督</div>
- <div>据驱动优化决策</div>
- </div>
- <p class="font grey middle">实时统计服务调用、用户分布、应用活跃度等核心指标,全维度反馈系统运行状态,为资源调配与功能迭代提供数据支撑</p>
- <img :src="require('@/assets/images/common/home-bg6.png')" />
- </div> -->
- </template>
- <script>
- import { countAppUseByUnitName, countServiceUseByApp, countUnitUse, countUserData, topService, topUnit, totalCount, totalCountGroupByTime } from "@/api/count";
- import * as echarts from "echarts";
- import moment from "moment";
- let chart1 = null;
- let chartMultiLevelUse = null;
- import NumberScroll from '@/components/AppVue/numberScroll.vue'
- import digitalScrollersComp from '@/components/AppVue/digitalScrollersComp.vue'
- export default {
- name: "Home",
- components: {
- NumberScroll,
- digitalScrollersComp
- },
- data() {
- return {
- lastDayCall: "239566",
- totalCall: ["0", "0", "0", ",", "0", "0", "0"],
- totalCallNumber: "18,659,623",
- // sections: ['top', 'yyal', 'jcnl', 'tjyy', 'yyzc', 'hxgn'],
- sections: ['top', 'jcnl', 'tjyy', 'yyzc', 'hxgn'],
- affixOptions: [
- {
- title: '顶部',
- type: 'top',
- index:1,
- },
- // {
- // title: '应用案例',
- // type: 'yyal',
- // index:2,
- // },
- {
- title: '基础能力',
- type: 'jcnl',
- index:3,
- },
- {
- title: '统建应用',
- type: 'tjyy',
- index:4,
- },
- {
- title: '应用支撑',
- type: 'yyzc',
- index:5,
- },
- {
- title: '六大核心',
- type: 'hxgn',
- index:6,
- },
- ],
- activeIndex:0,
- observer: null,
- serveNum: 0,
- userNum: 0,
- appNum: 0,
- weekCall: 0,
- monthCall: 0,
- seasonCall: 0,
- yearCall: 0,
- currentTab: "data-governance", // 初始选中项
- tabs: [
- { key: "data-governance", icon: "", title: "平台应用" },
- { key: "business-app", icon: "", title: "业务应用" },
- { key: "comprehensive-decision", icon: "", title: "特色场景" }
- ],
- resourceTop: [
-
- ],
- userTop: [
- ],
- examplelist:systemConfig.examplelist,
- useCase: {
- dataProcass: [{
- tags: ["盈浦街道", "夏阳街道"],
- title: "一张图资源预览",
- text: "一张图资源聚焦于资源预览的高效性与便捷性核心需求,打造轻量化、高适配的单图资源快速预览解决方案,覆盖各类图片素材场景的预览诉求,旨在解决传统资源查看中加载繁琐、信息获取不直观、筛选效率低等问题。",
- picture: require('@/assets/images/common/u301.png'),
- url:"http://10.235.245.174:2024"
- }, {
- tags: ["盈浦街道", "夏阳街道"],
- title: "一张图开发者中心",
- text: "一张图开发者中心是面向开发者打造的图片资源预览能力开放与集成服务平台,作为一张图资源预览产品的技术开放枢纽,聚焦图片快速预览核心能力的高效输出,为企业开发者、第三方开发团队及个人开发者提供标准化、轻量化、高适配的图片预览技术解决方案。",
- picture: require("@/assets/images/common/u301.png"),
- url:"http://10.235.245.174:2103/home/default"
- }, {
- tags: ["盈浦街道、夏阳街道"],
- title: "一张图二三维引擎示例",
- text: "一张图二三维引擎示例是依托一张图技术体系打造的二三维一体化引擎能力演示与实践参考体系,聚焦图片资源在二三维可视化场景下的渲染、交互、融合应用,通过丰富的示例场景、可复用的代码模板、完整的能力演示。",
- picture: require("@/assets/images/common/u661.png"),
- url:"http://10.235.245.174:2102/"
- }, {
- tags: ["盈浦街道", "夏阳街道"],
- title: "青浦区香花桥农业信息平台",
- text: "青浦区香花桥农业信息平台是街道立足本地稻米、林果、花卉等特色农业产业基础,以科技赋能农业现代化、数字化转型为核心,联动上海市农业科学院等科研院所打造的综合性农业智慧服务平台,是香花桥街道推进乡村振兴、落实 “智慧农业 + 产业融合” 发展战略的核心载体。",
- picture: require("@/assets/images/common/u302.png"),
- url:"http://10.235.245.174:2030"
- },
- ],
- useInService: [{
- tags: ["盈浦街道", "夏阳街道"],
- title: "学区查询",
- text: "学区查询是面向家长、教育管理部门、学校打造的义务教育阶段学区信息精准查询与管理服务体系,是破解传统学区查询 “信息滞后、流程繁琐、核实困难” 等问题的数字化便民举措,也是教育部门实现学区科学管理、教育资源均衡分配的重要数字化支撑,核心实现学区信息的权威发布、精准匹配与高效查询,保障入学相关主体的信息知情权与获取便利性。学区查询服务覆盖家长端、管理端、学校端三类核心使用场景:为家长提供孩子入学学区核实、学位状态确认、入学政策了解的便捷渠道,规避择校、购房中的学区信息误差风险;为教育管理部门提供学区划分优化、学位资源统计、招生趋势预判的数据支撑,助力学区动态调整与教育资源科学配置;为学校提供学区范围公示、招生咨询辅助的工具,提升招生工作的透明度与效率。",
- picture: require("@/assets/images/common/u301.png"),
- url:"http://121.43.55.7:2121/#/"
- }, {
- tags: ["盈浦街道、夏阳街道"],
- title: "青浦区全量信息视图",
- text: "青浦区全量信息视图是立足区域数字化转型与城市治理现代化需求打造的全域数据融合可视化智慧管理平台,作为青浦区 “一网通办”“一网统管” 建设的核心数字底座,深度整合全区跨部门、跨领域全量数据资源,构建起 “一屏观全域、一网管全城” 的智慧化管理体系,为区域政务服务、城市治理、产业发展、民生保障等全场景提供全景化数据支撑与科学决策依据。推动区域治理从 “分散碎片化” 向 “整体协同化”、从 “被动应对” 向 “主动防控” 转变,既提升了城市治理与政务服务的精细化、科学化水平,也为长三角生态绿色一体化发展示范区建设提供了坚实的数字支撑,助力打造更智慧、更宜居、更韧性的现代化青浦。",
- picture: require("@/assets/images/common/u661.png"),
- url:"http://10.235.245.84:9099/eleOverview/eleOverview?loginToken=21232f297a57a5a743894a0e4a801fc3"
- }, {
- tags: ["盈浦街道", "夏阳街道"],
- title: "青浦区统一地址管理平台",
- text: "青浦区统一地址管理平台是立足区域数字化转型战略、紧扣 “一网通办”“一网统管” 建设要求打造的全域地址标准化管理与数据融合支撑平台,作为青浦区空间地理信息数字化的核心基础设施,以破解地址管理 “多库并存、标准不一、关联困难” 等痛点为目标,通过地址资源的标准化整合、全生命周期管理与智能化应用,为城市治理、政务服务、产业发展、民生保障等全场景提供权威、精准、统一的地址数据支撑,夯实区域数字孪生城市与智慧治理的底座根基。青浦区统一地址管理平台通过地址标准化打破数据壁垒、以三维可视化提升治理精度、用场景化应用释放数据价值,为长三角生态绿色一体化发展示范区建设提供了高质量的地址数据底座与智慧治理解决方案。",
- picture: require("@/assets/images/common/u301.png"),
- url:"https://10.235.251.4:2008/geoAM/?accessToken=66e1605cb81047d4803368972c5a64e3#/"
- }, {
- tags: ["盈浦街道", "夏阳街道"],
- title: "科委产业地图",
- text: "科委产业地图是由科技主管部门主导打造的产业创新要素数字化整合与智能服务平台,作为区域科技创新与产业发展的 “数字仪表盘”,以破解产业 “底数不清、资源分散、匹配低效” 等痛点为核心,深度融合 GIS 地理信息、AI 大数据、可视化技术,整合产业链、创新链、人才链、服务链 “四链” 核心资源,构建全域产业发展全景画像,实现从 “静态展示” 到 “动态赋能” 的跨越,为政府产业决策、企业创新发展、要素精准对接提供一站式数字化支撑。它通过打破信息壁垒、强化智能赋能、促进要素集聚,推动产业发展从 “经验驱动” 向 “数据驱动” 转变,为培育先进产业集群、提升区域产业竞争力、加速创新势能向产业动能转化提供坚实支撑,助力打造创新协同、布局合理、发展高效的现代化产业生态",
- picture: require("@/assets/images/common/u302.png"),
- url:"http://10.235.245.174:2032/#/"
- },
- ],
- decisionHelping: [{
- tags: ["盈浦街道", "夏阳街道"],
- title: "青浦区小区画像专题",
- text: "青浦区小区画像专题是立足区域 “幸福温暖家” 治理体系建设目标,依托区大数据资源平台与新版 “社区云” 基层治理底座打造的小区精细化数字刻画与智能赋能服务体系。作为青浦区全量信息视图在社区治理场景的深化应用,专题以破解小区管理 “底数不清、诉求分散、治理粗放” 等痛点为核心,通过整合多维度小区数据资源、构建标准化画像体系、赋能全场景治理应用,为基层治理、民生服务、城市更新等提供精准数据支撑,助力打造更具温度、更高效能的智慧社区生态。",
- picture: require("@/assets/images/common/u301.png"),
- url:"http://10.235.245.174:2026/community/"
- }, {
- tags: ["盈浦街道", "夏阳街道"],
- title: "公共快递资源",
- text: "公共快递资源项目是政府主导、多方协同,整合快递、电商、交通等资源,以集约化、智能化、共享化为核心,构建覆盖城乡的寄递公共服务网络,解决末端配送低效、成本高、覆盖不足等问题的基础设施与服务体系项目,核心目标是畅通 “农产品进城、工业品下乡” 双向流通,助力民生改善与区域经济发展。",
- picture: require("@/assets/images/common/u301.png"),
- url:"http://10.235.245.174:2029/"
- }, {
- tags: ["盈浦街道、夏阳街道"],
- title: "青浦区资环审计",
- text: "青浦区资源环境审计(简称 “青浦区资环审计”)是青浦区审计局围绕长三角生态绿色一体化发展等国家战略,以守护区域生态环境、规范资源利用、推动绿色发展为核心的审计监督工作,由资源环境审计科具体负责,在组织架构、审计重点、协作机制、实践成效等方面形成了鲜明特色。青浦区资环审计通过机制创新与精准监督,有效推动了区域生态保护与绿色发展,为长三角生态绿色一体化提供了坚实审计保障。",
- picture: require("@/assets/images/common/u661.png"),
- url:"http://10.235.245.174:2025/"
- }, {
- tags: ["盈浦街道", "夏阳街道"],
- title: "开店一件事",
- text: "开店一件事是一套从前期调研规划到后期运营优化的系统性实操工作,核心是以市场需求为导向,完成合法筹备、资源落地与可持续经营,最终实现盈利和长期发展,核心逻辑是 “精准定位 + 合规落地 + 高效运营”。分析行业趋势、周边竞品,明确目标客群的消费能力和需求,找到自身差异化竞争优势,避免盲目入局。",
- picture: require("@/assets/images/common/u302.png"),
- url:"https://aixq.shqp.gov.cn/kdyjs/"
- },
- ],
- },
- activeUseCase: "dataProcass",
- chartMluLevel: "unit",
- chartMluUnitName: null,
- chartMluAppName: null,
- chartMluTimeRange: null,
- };
- },
- async beforeMount() {
- await this.pullTotalCount()
- await this.pullLastDayCount()
- },
- mounted() {
- this.initChart1();
- this.initchartMultiLevelUse();
- const nowDate = new Date();
- nowDate.setHours(0, 0, 0, 0);
- this.chartMluTimeRange = [new Date(new Date(nowDate).setDate(nowDate.getDate() - 30)), new Date(new Date(nowDate).setDate(nowDate.getDate()))];
- // let end = new Date("2025/12/31")
- // let start = new Date("2025/12/01")
- // this.chartMluTimeRange = [start, end]
- this.chartMluFocusRoot()
- this.pullTopUnit()
- this.pullTopService()
- this.pullMultiTimeRangeCall()
- this.pullUserCount()
- window.addEventListener('scroll', this.handleScroll,true);
- },
- beforeUnmount() {
- window.removeEventListener('scroll', this.handleScroll,true);
- },
- methods: {
- goAnchor(id) {
- const anchor = document.getElementById(id);
- if (anchor) {
- anchor.scrollIntoView({ behavior: 'smooth' });
- }
- },
- handleScroll(e) {
- const scrollPosition = e.target.scrollTop;
- this.sections.forEach((section, index) => {
- const element = document.getElementById(section);
- if (element && scrollPosition >= element.offsetTop - 200) {
- this.activeIndex = index;
- }
- });
-
- },
- goto(src) {
- this.$router.push({
- path: src,
- });
- },
- handleTabsOpenPage(param){
- if(!param.url){
- return
- }
- window.open(param.url, "_blank");
- },
- // 处理调用总数数字
- handleTotalCallNumber(num) {
- // 667507060
- let str = num.toString();
- debugger
- this.totalCallNumber = str;
- let strArr = str.split("").reverse();
- this.totalCall = [];
- for (let i = 0; i < strArr.length; i++) {
- const num = strArr[i];
- this.totalCall.unshift(num);
- if (i % 3 == 2 && i != strArr.length - 1) {
- this.totalCall.unshift(",");
- }
- }
- let itemNumber = "";
- this.totalCall.forEach((item, index) => {
- itemNumber+=item
- })
- // this.totalCallNumber = itemNumber;
- this.totalCallNumber = "18,659,623";
-
- },
- async initChart1() {
- const nowDate = new Date();
- nowDate.setHours(0, 0, 0, 0);
- let end = new Date(nowDate.setDate(nowDate.getDate()))
- let start = new Date(nowDate.setDate(nowDate.getDate() - 30))
- // let end = new Date("2025/12/31")
- // let start = new Date("2025/12/01")
- // start = new Date(moment(start).format("YYYY-MM-DD 00:00:00"));
- // end = new Date(moment(end).format("YYYY-MM-DD 23:59:59"));
- let data = await totalCountGroupByTime(start, end)
- let dataMap = {}
- for (let i = 0; i < data.length; i++) {
- const e = data[i];
- dataMap[e.time] = e.count
- }
- let times = []
- let values = []
- for (let i = 0; i < 31; i++) {
- let date = new Date(start);
- date.setDate(start.getDate() + i)
- times.push(this.formatDateMMDD(date))
- values.push(dataMap[date.getTime()] ?? parseInt(Math.random() * (150000 - 50000) + 50000) )
- }
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById("echart1"));
- let option = {
- tooltip: {
- trigger: "axis", // 坐标轴触发提示
- axisPointer: { type: "shadow" },
- backgroundColor: "rgba(0, 25, 50, 0.8)",
- borderColor: "#1E90FF",
- textStyle: {
- color: "#fff",
- },
- },
- xAxis: {
- type: "category",
- data: times,
- axisLine: { lineStyle: { color: "#fff" } }, // 坐标轴颜色
- axisTick: { show: false }, // 隐藏刻度
- splitLine: { show: false }, // 隐藏分割线
- },
- yAxis: {
- type: "value",
- axisLine: { lineStyle: { color: "#fff" } },
- splitLine: {
- lineStyle: {
- type: "dashed", // 虚线网格
- color: "#113761",
- },
- },
- },
- series: [
- {
- name: "调用总数",
- type: "line",
- data: values, // 模拟数据
- smooth: true,
- lineStyle: { color: "#42a5f5" }, // 蓝色线条
- itemStyle: {
- color: "#42a5f5",
- borderColor: "rgba(66, 165, 245, 0.5)",
- borderWidth: 12,
- }, // 节点颜色
- symbol: "circle", // 节点形状
- symbolSize: 6, // 节点大小
- showSymbol: false,
- lineStyle: {
- normal: {
- width: 1,
- },
- },
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(
- 0,
- 0,
- 0,
- 1,
- [
- {
- offset: 0,
- color: "#42a5f5",
- },
- {
- offset: 0.8,
- color: "rgba(15, 52, 96, 0.8)",
- },
- ],
- false
- ),
- shadowColor: "rgba(0, 0, 0, 0.1)",
- shadowBlur: 10,
- },
- }
- },
- ],
- };
- // 绘制图表
- myChart.setOption(option);
- chart1 = myChart
- },
- initchartMultiLevelUse() {
- var myChart = echarts.init(document.getElementById("echartMultiLevelUse"));
- let option = {
- tooltip: {
- trigger: 'axis',
- show: true,
- formatter: '{b}: {c}',
- backgroundColor: "rgba(0, 25, 50, 0.8)",
- borderColor: "#1E90FF",
- textStyle: {
- color: "#fff",
- },
- },
- title: {
- text: '所有委办',
- left: 'center',
- top: 20,
- textStyle: {
- color: '#fff',
- fontSize: 18,
- fontWeight: 'bold'
- },
- },
- axisPointer: {
- type: 'shadow'
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: [
- {
- type: 'value',
- // axisLine: { lineStyle: { color: "red" } },
- // splitLine: { show: false }, // 隐藏分割线
- splitLine: {
- lineStyle: {
- color: "rgba(255,255,255,0.12)",
- },
- },
- }
- ],
- yAxis: [
- {
- type: 'category',
- axisLine: { lineStyle: { color: "#fff" } },
- inverse: true,
- data: [""],
- splitLine: {
- lineStyle: {
- color:"red"
- },
- },
- }
- ],
- series: [
- {
- cursorSize: 20,
- name: 'Direct',
- type: 'bar',
- barWidth: '60%',
- data: [0]
- }
- ],
- dataZoom: [
- {
- type: 'inside', // 内置型,可以用鼠标滚轮缩放
- yAxisIndex: 0,
- zoomOnMouseWheel: false, // 滚轮缩放
- moveOnMouseWheel: false, // 滚轮移动
- zoomLock: false,
- minValueSpan: 12, // 最小显示数据数量
- maxValueSpan: 12 // 最大显示数据数量
- }
- ]
- };
- myChart.setOption(option);
- myChart.on("click", this.chartMluClick)
- chartMultiLevelUse = myChart
- },
- async chartMluFocus(level, farther) {
- if (level == null) {
- level = this.chartMluLevel
- }
- switch (level) {
- case "unit":
- default: {
- await this.chartMluFocusRoot();
- this.chartMluUpdateTitle("所有委办")
- break;
- }
- case "app": {
- let unit = farther ?? this.chartMluUnitName ?? ""
- await this.chartMluFocusApp(unit);
- this.chartMluUpdateTitle("委办:" + unit)
- break;
- }
- case "service": {
- let app = farther ?? this.chartMluAppName ?? ""
- await this.chartMluFocusService(app);
- this.chartMluUpdateTitle("应用:" + app)
- break;
- }
- }
- },
- chartMluClick(event) {
- switch (this.chartMluLevel) {
- case "unit": {
- this.chartMluLevel = "app";
- this.chartMluUnitName = event.name
- break;
- }
- case "app": {
- this.chartMluLevel = "service";
- this.chartMluAppName = event.name
- break;
- }
- case "service":
- default: {
- // do nothing
- }
- }
- this.chartMluFocus();
- },
- chartMluBack(level) {
- //自动回退
- if (level == null) {
- switch (this.chartMluLevel) {
- default:
- case "unit": level = "unit"; break;
- case "app": level = "unit"; break;
- case "service": level = "app"; break;
- }
- }
- this.chartMluLevel = level;
- this.chartMluFocus()
- },
- async chartMluFocusRoot() {
- let start = this.chartMluTimeRange[0], end = this.chartMluTimeRange[1];
- start = new Date(moment(start).format("YYYY-MM-DD 00:00:00"));
- end = new Date(moment(end).format("YYYY-MM-DD 23:59:59"));
- const data = await countUnitUse(start, end);
- const names = [];
- const values = [];
- for (let index = 0; index < data.length; index++) {
- const e = data[index];
- names.push(e.name);
- values.push(e.count);
- }
- this.chartMluUpdateData(names, values)
- },
- async chartMluFocusApp(father) {
- let start = this.chartMluTimeRange[0], end = this.chartMluTimeRange[1];
- start = new Date(moment(start).format("YYYY-MM-DD 00:00:00"));
- end = new Date(moment(end).format("YYYY-MM-DD 23:59:59"));
- const data = await countAppUseByUnitName(start, end, father);
- const names = [];
- const values = [];
- for (let index = 0; index < data.length; index++) {
- const e = data[index];
- names.push(e.name);
- values.push(e.count);
- }
- this.chartMluUpdateData(names, values)
- },
- async chartMluFocusService(father) {
- let start = this.chartMluTimeRange[0], end = this.chartMluTimeRange[1];
- start = new Date(moment(start).format("YYYY-MM-DD 00:00:00"));
- end = new Date(moment(end).format("YYYY-MM-DD 23:59:59"));
- const data = await countServiceUseByApp(start, end, father);
- const names = [];
- const values = [];
- for (let index = 0; index < data.length; index++) {
- const e = data[index];
- names.push(e.name);
- values.push(e.count*10); //临时
- }
- this.chartMluUpdateData(names, values)
- },
- async pullTopUnit() {
- let data = await topUnit(5)
- for (let i = 0; i < data.length; i++) {
- const e = data[i];
- e.value = this.numberFormatter(e.count);
- }
- this.userTop = data
- },
- async pullTopService() {
- let data = await topService(10)
- data = [
- {
- "name": "一张图权限认证",
- "count": 476215
- },
- {
- "name": "航空影像2023",
- "count": 454389
- },
- {
- "name": "高级地名地址查询",
- "count": 380490
- },
- {
- "name": "政务地图常规色",
- "count": 295380
- },
- {
- "name": "政务地图暗色版",
- "count": 258912
- },
- {
- "name": "wgs84转上海2000投影坐标",
- "count": 174874
- },
- {
- "name": "青浦区街道行政区划边界位置分布",
- "count": 128912
- },
- {
- "name": "wgs84转上海2000投影坐标",
- "count": 11048
- },
- {
- "name": "青浦区行政边界位置分布",
- "count": 10584
- },
- {
- "name": "青浦区院落面栅格瓦片",
- "count": 9962
- }
- ]
- for (let i = 0; i < data.length; i++) {
- const e = data[i];
- e.value = this.numberFormatter(e.count);
- }
- this.resourceTop = data
- },
- async pullTotalCount() {
- this.handleTotalCallNumber((await totalCount())[0].count)
- },
- async pullLastDayCount() {
- const nowDate = new Date();
- nowDate.setHours(0, 0, 0, 0);
- let end = new Date(nowDate)
- let start = new Date(nowDate.setDate(nowDate.getDate() - 1))
- start = new Date(moment(start).format("YYYY-MM-DD 00:00:00"));
- end = new Date(moment(end).format("YYYY-MM-DD 23:59:59"));
- let data = (await totalCount(start, end))[0]
- // this.lastDayCall = data == null ? 0 : data.count
- this.lastDayCall = 239566;
- },
- async pullMultiTimeRangeCall() {
- // this.weekCall = await this.pullTotalCountByDays(7)
- // this.monthCall = await this.pullTotalCountByDays(30)
- // this.seasonCall = await this.pullTotalCountByDays(91)
- // this.yearCall = await this.pullTotalCountByDays(365)
- this.weekCall = 1186695;
- this.monthCall = 4328556;
- this.seasonCall = 6635991;
- this.yearCall = 16596630;
- },
- async pullTotalCountByDays(days) {
- const nowDate = new Date();
- nowDate.setHours(0, 0, 0, 0);
- let end = new Date(nowDate)
- let start = new Date(nowDate.setDate(nowDate.getDate() - days))
- start = new Date(moment(start).format("YYYY-MM-DD 00:00:00"));
- end = new Date(moment(end).format("YYYY-MM-DD 23:59:59"));
- let data = (await totalCount(start, end))[0]
- return data == null ? 0 : data.count
- },
- async pullUserCount() {
- let data = await countUserData();
- // this.appNum = data.application;
- // this.unitNum = data.unit;
- // this.userNum = data.username;
- this.appNum = 37;
- this.unitNum = 18;
- this.userNum = 46;
- },
- chartMluUpdateData(names, values) {
- chartMultiLevelUse.setOption({
- yAxis: [
- {
- data: names,
- }
- ],
- series: [
- {
- data: values
- }
- ]
- })
- this.chartMluCheckChangeToLog(values)
- },
- chartMluCheckChangeToLog(values) {
- let toLog = false;
- values.sort((a, b) => a - b);
- let min = values[0];
- let max = values[values.length - 1]
- if (max / min > 3000) {
- toLog = true
- }
- if (toLog) {
- chartMultiLevelUse.setOption(
- {
- xAxis: [{
- type: 'log',
- logBase: 10,
- min: 1,
- axisLine: { lineStyle: { color: "#fff" } },
- axisLabel: {
- formatter: this.numberFormatter
- },
- }]
- }
- )
- } else {
- chartMultiLevelUse.setOption(
- {
- xAxis: [{
- type: 'value',
- min: 0,
- axisLine: { lineStyle: { color: "#fff" } },
- }]
- }
- )
- }
- },
- chartMluUpdateTitle(newTitle) {
- chartMultiLevelUse.setOption({
- title: {
- text: newTitle,
- }
- })
- },
- numberFormatter(num, decimals = 1) {
- if (num >= 1000000000000) {
- return parseFloat((num / 1000000000000).toFixed(decimals)).toString() + '亿万';
- }
- if (num >= 100000000) {
- return parseFloat((num / 100000000).toFixed(decimals)).toString() + '亿';
- }
- if (num >= 10000) {
- return parseFloat((num / 10000).toFixed(decimals)).toString() + '万';
- }
- return num.toString();
- },
- formatDateMMDD(date) {
- // 月份从0开始,所以要 +1
- const month = String(date.getMonth() + 1).padStart(2, '0');
- const day = String(date.getDate()).padStart(2, '0');
- return `${month}/${day}`;
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .font,
- .title,
- .super-title,
- .title-sub,
- .second-title,
- .third-title,
- .strong-data {
- color: #fff;
- }
- .icon {
- color: #fff;
- fill: currentColor;
- }
- .middle {
- text-align: center;
- // margin-top: 10px;
- }
- .darkblue-background,
- .dark-background,
- .bluedark-background,
- .blue-background,
- .image-background {
- padding-top: 0px;
- // padding-bottom: 40px;
- padding-bottom: 100px;
- margin-left: 0;
- padding-left: 120px;
- padding-right: 120px;
- min-height: 600px;
- }
- .darkblue-background {
- background: #00002a;
- // background: linear-gradient(to bottom, #00002a, #060633, #0f3460, #0f3460);
- // background: linear-gradient(to bottom,
- // #01012f 0%,
- // #0f3460 40%,
- // #0f3460 100%);
- .radius-container{
- border-radius: 40px;
- width: 380px;
- height: 120px;
- background: radial-gradient(50% 50% at 50% 50%, #0E5AF4 0%, #00002F 100%);
- // background: -webkit-radial-gradient(center, #07a2fd, #010130, #010130);
- display: flex;
- justify-content: center;
- align-items: center;
- .text-color{
- color: #fff;
- }
- .text-desc-color{
- color: #ADE8FE;
- }
- }
- .al-container{
- width: 30%;
- height: 200px;
- background: linear-gradient(to bottom, #050532 0%, #000002 66%, #ffffff 100%);
- font-size: 20px;
- border: 2px solid transparent;
- border-radius: 12px;
- background-clip: padding-box, border-box;
- background-origin: padding-box, border-box;
- background-image: linear-gradient(128deg, #050532, #2220), linear-gradient(136deg, #ffffff, #00000000, #00000000, #00000000);
- .al-container-border{
- border: 1px solid #2c5179;
- border-radius: 10px;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- text-align: center;
- }
- .text-color{
- color: #fff;
- padding: 10px;
- }
- transition: all 0.3s ease;
- &:hover {
- background-color: #060633;
- transform: translateY(-5px);
- box-shadow: 0 4px 12px #043e75;
- }
- }
- }
- .dark-background {
- background: #0a0a08
- }
- .blue-background {
- background: #0f3460
- }
- .bluedark-background {
- background: linear-gradient(to bottom,
- #0f3460 0%,
- #0f3460 60%,
- #02060c 100%);
- }
- .image-background {
- background-repeat: no-repeat;
- background-position: center;
- background-size: 100% auto;
- }
- .lighter-container {
- background-color: #eeeeee0b;
- padding: 20px;
- margin: 15px;
- vertical-align: middle;
- border-radius: 10px;
- }
- .affix-container{
- position: absolute;
- z-index: 2;
- .active{
- color: #3d9aff;
- }
- }
- .lightblue-container {
- margin: 15px;
- background: linear-gradient(to bottom,
- #215476 0%,
- #28638b 66%,
- #337aac 100%);
- font-size: 20px;
- border: 2px solid transparent;
- border-radius: 12px;
- background-clip: padding-box, border-box;
- background-origin: padding-box, border-box;
- background-image: linear-gradient(128deg, #052b5b, #2220), linear-gradient(136deg, #e5e5e5de, #00000000, #00000000, #00000000);
- transition: all 0.3s ease;
- &:hover {
- // background-color: #060633;
- transform: translateY(-5px);
- box-shadow: 0 4px 12px #043e75;
- }
- .lightblue-container-boder{
- border: 1px solid #2c5179;
- border-radius: 10px;
- // padding: 20px;
- }
- .third-title {
- font-size: 28px;
- padding: 0;
- }
- .img-container{
- width: 100%;
- height: 50%;
- display: flex;
- text-align: right;
- justify-content: right;
- position: relative;
- border-radius: 10px;
- overflow: hidden;
- .row-warp-page-img{
- width: 144px;
- height: 144px;
- transform: rotate(350deg);
- position: relative;
- right: -20px;
- top: -20px;
- }
- .img-border{
- background: url('@/assets/images/common/gn/5.png');
- background-size: 100% 100%;
- width: 144px;
- height: 144px;
- transform: rotate(-50deg);
- top: 50%;
- left: 50%;
- }
- }
- }
- .middle-container {
- display: flex !important;
- justify-content: center;
- flex-direction: column;
- padding: 0;
- align-items: stretch;
- border: 2px solid transparent;
- border-radius: 12px;
- background-clip: padding-box, border-box;
- background-origin: padding-box, border-box;
- background-image: linear-gradient(330deg, #050532, #2220), linear-gradient(330deg, #ffffff, #00000000, #00000000, #00000000);
- transition: all 0.3s ease;
- }
- .row,
- .warp-row,
- .between-row {
- display: flex !important;
- justify-content: space-around;
- padding: 0px;
- align-items: stretch;
- }
- .warp-row {
- flex-wrap: wrap;
- }
- .between-row {
- justify-content: space-between;
- }
- .col {
- display: flex !important;
- justify-content: space-around;
- flex-direction: column;
- }
- .dense-col {
- display: flex !important;
- justify-content: center;
- flex-direction: column;
- }
- .start-reverse-col {
- display: flex !important;
- justify-content: start;
- flex-direction: column-reverse;
- }
- .dense-col>*,
- .start-reverse-col>* {
- margin: 10px;
- }
- .grid-2x2 {
- display: grid !important;
- grid-template-columns: 1fr 1fr;
- gap: 12px;
- width: 100%;
- height: 80%;
- }
- .strong-data {
- font-size: 32px;
- font-weight: bold;
- text-align: center;
- }
- .title {
- font-size: 36px;
- margin-top: 10px;
- text-align: center;
- font-weight: bold;
- }
- .super-title {
- font-size: 44px;
- margin-top: 10px;
- text-align: center;
- font-weight: bold;
- }
- .title-sub {
- font-size: 16px;
- margin-top: 10px;
- color: rgb(192, 192, 192);
- text-align: center;
- }
- .second-title {
- font-size: 20px;
- margin-top: 10px;
- padding-left: 10px;
- border-left: 2px solid #3498db;
- font-weight: bold;
- }
- .third-title {
- font-size: 18px;
- align-items: center;
- display: flex;
- font-weight: bold;
- padding-bottom: 10px;
- i{
- margin-right: 5px;
- }
- }
- .top-list {
- display: flex;
- flex-direction: column;
- }
- .top-list .list-item {
- display: flex;
- justify-content: space-between;
- margin: 10px 0px;
- // margin-left: 30px;
- // margin-right: 30px;
- }
- .usecase-tabs {
- width: 60%;
- margin: auto;
- margin-top: 60px;
- margin-bottom: 30px;
- }
- .usecase-tabs .tab-lab {
- display: flex;
- align-items: center;
- font-size: 24px;
- color: #fff;
- }
- .use-case {
- margin: 20px;
- width: 45%;
- height: 500px;
- border-radius: 10px;
- background-size: 100% auto;
- /* 横向填满,纵向按比例缩放 */
- background-repeat: no-repeat;
- .use-case-empty {
- width: 100%;
- height: 50%;
- }
- .use-case-text {
- padding: 15px;
- width: 100%;
- height: 50%;
- border-radius: 10px;
- box-sizing: border-box;
- background: linear-gradient(to bottom,
- #377f7f 0%,
- #377f7f 80%,
- #205161 100%);
- .third-title {
- padding: 0;
- }
- }
- }
- .six-router {
- width: 30%;
- // height: 300px;
- font-size: 28px;
- .third-title {
- font-size: 32px;
- }
- }
- .circle-number {
- // display: block;
- margin-right: 10px;
- background-color: #eeeeee00;
- // border: 1px solid #2272d4;
- }
- .block-page-router {
- display: flex;
- flex-direction: column;
- margin: 15px;
- padding: 15px;
- box-sizing: border-box;
- width: 30%;
- height: 240px;
- border: #2272d4 solid 1px;
- border-radius: 13px;
- background-color: #1e3348;
- }
- .blue {
- // color: #3498db;
- color: #1586FF;
- font-weight: bold;
- }
- .white{
- color: #fff;
- }
- .number-color{
- color: #ade8fe;
- }
- .grey {
- color: rgb(192, 192, 192);
- padding: 20px 0px;
- }
- .lightgrey {
- color: rgb(229, 229, 229);
- padding: 0px 20px 20px 20px;
- position: relative;
- top: -30px;
- height: 120px;
- .lightgrey-title{
- font-size: 24px;
- font-weight: bold;
- padding-bottom: 20px;
- }
- .lightgrey-desc{
- font-size: 16px;
- }
- }
- #echart1 {
- width: 100%;
- height: 450px;
- }
- #echartMultiLevelUse {
- width: 100%;
- height: 450px;
- }
- .container {
- width: 100%;
- margin: 0 auto;
- }
- .home {
- position: relative;
- .part1 {
- width: 100%;
- height: 750px;
- // height: calc(100vh - 120px);
- background: url('@static/images/home/bg.png');
- background-size: 100% 100%;
- position: relative;
- overflow: hidden;
- display: flex;
- justify-content: left;
- align-items: center;
-
- .super-title{
- font-size: 44px;
- margin-top: 0px;
- margin-bottom: 10px;
- text-align: left;
- font-weight: bold;
- }
- .title-sub{
- font-size: 16px;
- margin-top: 0px;
- color: #ffffff;
- text-align: left;
- }
- .count-title{
- // font-size: 24px;
- font-weight: bold;
- text-align: left;
- margin: 40px 0px 20px 0px;
- .count{
- padding: 5px;
- }
- .text1{
- font-weight: 100;
- font-size: 12px;
- }
- }
- .part1-1 {
- width: 100%;
- height: 300px;
- //background: #09284c;
- margin: 0 auto;
- margin-top: 10px;
- overflow: hidden;
- .part1-1-1 {
- height: 300px;
- width: fit-content;
- margin: 0 auto;
- // margin-top: 30px;
- .number-container {
- display: flex;
- align-items: flex-start;
- font-size: 2em;
- }
- .number-item {
- width: 57px;
- height: 70px;
- background-color: rgb(10 71 137 / 70%);
- border: 1px solid #2663a5;
- box-shadow: 0 4px 20px #2663a5;
- border-radius: 10px;
- color: white;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-right: 20px;
- font-size: 44px;
- line-height: 70px;
- font-weight: bold;
- }
- .separator {
- margin-right: 20px;
- font-size: 35px;
- text-align: end;
- color: #ffffff;
- }
- .text {
- font-size: 24px;
- line-height: 100px;
- padding: 0px 20px;
- color: #ffffff;
- font-weight: bold;
- }
- }
- .part1-1-2 {
- height: 50px;
- width: 700px;
- margin: 0 auto;
- margin-top: 30px;
- background: #8080804d;
- border-radius: 5px;
- line-height: 50px;
- div {
- display: inline-block;
- vertical-align: top;
- &.line {
- height: 2px;
- background: #808080;
- width: 100px;
- margin: 24px 20px;
- margin-right: 20px;
- }
- &:nth-child(2) {
- width: 420px;
- text-align: center;
- color: #ffffff;
- font-size: 20px;
- font-weight: bold;
- .text1 {
- margin-right: 20px;
- }
- .text2 {
- margin-left: 20px;
- }
- }
- &:nth-child(4) {
- float: right;
- }
- }
- }
- }
- }
- .part2 {
- background: #08224a;
- padding-bottom: 1px;
- .part1-2 {
- color: #ffffff;
- // margin-top: 20px;
- .part1-2-1,
- .part1-2-2,
- .part1-2-3 {
- display: inline-block;
- text-align: center;
- font-weight: bold;
- width: calc(100% / 3);
- div:nth-child(1) {
- font-size: 24px;
- }
- div:nth-child(2) {
- margin-top: 10px;
- font-size: 32px;
- }
- }
- }
- .chapter {
- text-align: center;
- font-size: 40px;
- width: 100%;
- height: 80px;
- line-height: 80px;
- color: #ffffff;
- font-weight: bold;
- border-bottom: 2px solid gray;
- margin-bottom: 20px;
- }
- .row {
- display: flex;
- justify-content: space-between;
- margin-bottom: 20px;
- padding: 0 100px;
- }
- .service {
- flex: 1;
- margin: 0 30px;
- text-align: center;
- }
- .title {
- position: relative;
- padding-bottom: 10px;
- margin-bottom: 15px;
- height: 50px;
- line-height: 90px;
- font-size: 30px;
- }
- .title::before {
- content: "";
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- height: 15px;
- }
- .yellow {
- color: #f1c40f;
- }
- .yellow::before {
- background-color: #f1c40f;
- }
- .gray {
- color: #bdc3c7;
- }
- .gray::before {
- background-color: #bdc3c7;
- }
- .blue {
- color: #3498db;
- }
- .blue::before {
- background-color: #3498db;
- }
- .orange {
- color: #e67e22;
- }
- .orange::before {
- background-color: #e67e22;
- }
- .green {
- color: #27ae60;
- }
- .green::before {
- background-color: #27ae60;
- }
- .yellow-green {
- color: #b2be2c;
- }
- .yellow-green::before {
- background-color: #b2be2c;
- }
- p {
- font-size: 20px;
- line-height: 2;
- color: #ffffff;
- }
- }
- .part3 {
- .container {
- position: relative;
- width: 100%;
- height: 940px;
- background-image: url("~@/assets/images/common/u30.png");
- /* 替换为实际图片路径 */
- background-size: cover;
- background-position: center;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- text-align: center;
- color: #000000;
- font-family: Arial, sans-serif;
- overflow: hidden;
- }
- h1 {
- position: absolute;
- top: 30px;
- font-size: 40px;
- font-weight: bold;
- }
- p {
- margin-bottom: 30px;
- font-weight: bold;
- font-size: 24px;
- line-height: 2;
- }
- .el-button {
- position: absolute;
- bottom: 150px;
- }
- }
- .part4 {
- background: #08224a;
- padding-bottom: 1px;
- .chapter {
- text-align: center;
- font-size: 40px;
- width: 100%;
- height: 80px;
- line-height: 80px;
- color: #ffffff;
- font-weight: bold;
- /* border-bottom: 2px solid gray; */
- margin-bottom: 20px;
- }
- .row {
- display: flex;
- justify-content: space-between;
- margin-bottom: 40px;
- padding: 0 100px;
- }
- .service {
- flex: 1;
- margin: 0 30px;
- width: 500px;
- height: 320px;
- border: 1px solid gray;
- border-radius: 8px;
- padding: 10px 10px;
- box-sizing: border-box;
- overflow: hidden;
- position: relative;
- }
- .title {
- position: relative;
- height: 30px;
- line-height: 30px;
- font-size: 30px;
- text-align: left;
- color: #ffffff;
- padding-bottom: 20px;
- }
- p {
- text-indent: 2rem;
- font-size: 20px;
- line-height: 2;
- color: #ffffff;
- }
- .el-button {
- position: absolute;
- bottom: 10px;
- left: 10px;
- font-size: 20px;
- color: #ffffff;
- &:hover {
- color: #3498db;
- }
- }
- }
- .part5 {
- background: #08224a;
- padding-bottom: 1px;
- .chapter {
- text-align: center;
- font-size: 40px;
- width: 100%;
- height: 80px;
- line-height: 80px;
- color: #ffffff;
- font-weight: bold;
- /* border-bottom: 2px solid gray; */
- margin-bottom: 20px;
- }
- .part5-1 {
- color: #ffffff;
- margin-top: 20px;
- margin-bottom: 20px;
- .part5-1-1,
- .part5-1-2,
- .part5-1-3 {
- display: inline-block;
- text-align: center;
- font-weight: bold;
- width: calc(100% / 3);
- div {
- font-size: 24px;
- }
- div:nth-child(2) {
- margin-top: 10px;
- font-size: 24px;
- }
- div p {
- display: inline-block;
- font-size: 40px;
- }
- }
- }
- .part5-2 {
- margin-top: 40px;
- padding-bottom: 1px;
- height: fit-content;
- .tab-container {
- display: flex;
- gap: 40px;
- /* 选项卡间距 */
- // border-bottom: 1px solid #eee; /* 可选底部分隔线 */
- width: fit-content;
- margin: 0 auto;
- position: relative;
- margin-bottom: 40px;
- height: 55px;
- }
- .tab-container::after {
- content: "";
- display: block;
- height: 1px;
- width: 100%;
- background: #eeeeee;
- /* 下划线颜色 */
- position: absolute;
- bottom: 0;
- }
- .tab-item {
- color: #ffffff;
- cursor: pointer;
- overflow: hidden;
- position: relative;
- font-size: 30px;
- height: 55px;
- }
- .tab-item-active {
- color: #66f;
- /* 选中文字颜色 */
- }
- .tab-item-active::after {
- content: "";
- display: block;
- height: 2px;
- width: 100%;
- background: #66f;
- /* 下划线颜色 */
- margin-top: 5px;
- position: absolute;
- bottom: 0;
- z-index: 1;
- }
- .tab-icon {
- margin-right: 5px;
- /* 图标与文字间距 */
- }
- .row {
- display: flex;
- justify-content: space-between;
- margin-bottom: 40px;
- padding: 0 120px;
- > :nth-child(1) {
- background: url(~@/assets/images/common/u301.png) no-repeat 0 0/100%;
- }
- > :nth-child(2) {
- background: url(~@/assets/images/common/u302.png) no-repeat 0 0/100%;
- }
- }
- }
- }
- }
- /deep/.el-affix--fixed{
- height: 220px;
- width: 120px !important;
- top: 30% !important;
- // top:unset !important;
- // bottom: 60px !important;
- z-index: 100;
- border: 1px solid transparent;
- border-radius: 16px;
- background-clip: padding-box, border-box;
- background-origin: padding-box, border-box;
- background-image: linear-gradient(88deg, #00002e, #2220), linear-gradient(87deg, #fffdfd6b, #00000000, #00000000, #00000000);
- }
- .warp-container{
- display: grid;
- justify-content: flex-start;
- align-items: center;
- grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
- gap: 30px;
- .warp-page-card{
- cursor: pointer;
- justify-content: flex-start;
- width: 100%;
- height: 400px;
- display: grid;
- border: 1px solid transparent;
- border-radius: 16px;
- background-clip: padding-box, border-box;
- background-origin: padding-box, border-box;
- background-image: linear-gradient(345deg, #08113e, #2220), linear-gradient(345deg, #fffdfd6b, #00000000, #00000000, #00000000);
- .warp-page-img{
- cursor: pointer;
- height: 200px;
- background-size: cover;
- border-radius: 16px 16px 0px 0px;
- }
- .warp-page-text{
- padding: 0px 20px 20px 20px;
- // height: 200px;
- // font-size: 24px;
- color: #c7c2c2;
- .warp-page-text-title{
- font-weight: bold;
- margin: 10px 0px;
- color: #ffffff;
- }
- .warp-page-text-desc{
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 5; /* 限制显示4行 */
- line-clamp: 5; /* 标准属性 */
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- transition: all 0.3s ease;
- &:hover {
- background-color: #152736;
- transform: translateY(-5px);
- box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
- }
- }
- }
- </style>
|