| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391 |
- <template>
- <div class="portal-home min-h-screen">
- <Header />
- <main class="px-5 md:px-20 pb-8 pt-20">
- <section class="hero-banner overflow-hidden rounded-[6px] relative">
- <div class="">
- <!-- 轮播容器 -->
- <div class="carousel-container relative h-[50%]">
- <!-- 轮播项 -->
- <div
- class="carousel-slide absolute inset-0 transition-opacity duration-500 ease-in-out"
- v-for="(slide, index) in slides"
- :key="index"
- v-show="currentIndex === index"
- :class="{
- 'opacity-100': currentIndex === index,
- 'opacity-0': currentIndex !== index,
- 'z-10': currentIndex === index,
- 'z-0 pointer-events-none': currentIndex !== index,
- }"
- >
- <div class="hero-copy carousel-caption">
- <p class="hero-text mt-6 text-[30px]!">
- {{ slide.text }}
- </p>
- </div>
- <!-- 轮播背景图 -->
- <div class="hero-visual absolute inset-0">
- <img
- :src="slide.image"
- alt="Banner"
- class="w-full h-full object-cover"
- />
- </div>
- </div>
- <!-- 指示器 -->
- <div
- class="carousel-indicators absolute bottom-4 left-1/2 z-30 flex transform -translate-x-1/2 space-x-2"
- >
- <span
- v-for="(_, i) in slides"
- :key="i"
- @click="currentIndex = i"
- :class="{
- 'bg-[#0c4eb5]': currentIndex === i,
- 'bg-[#2f333c]/50': currentIndex !== i,
- }"
- class="w-3 h-3 rounded-full transition-colors"
- ></span>
- </div>
- </div>
- </div>
- </section>
- <section class="portal-mobile-shortcuts mt-3 md:hidden!">
- <button
- type="button"
- class="portal-mobile-shortcut flex flex-col items-center justify-center cursor-pointer"
- @click="router.push('/flow')"
- >
- <img src="../assets//images/flow.png" alt="" class="w-10 h-10" />
- 流程门户
- </button>
- <button
- v-hasPermi="['portal:dashboard:view']"
- type="button"
- class="portal-mobile-shortcut flex flex-col items-center justify-center cursor-pointer"
- @click="router.push('/drive')"
- >
- <img src="../assets//images/driveicon.png" alt="" class="w-10 h-10" />
- 驾驶舱门户
- </button>
- <button
- type="button"
- class="portal-mobile-shortcut flex flex-col items-center justify-center cursor-pointer"
- >
- <img src="../assets//images/report.png" alt="" class="w-10 h-10" />
- 报表门户
- </button>
- </section>
- <section class="mt-3 grid gap-4 xl:grid-cols-[1.74fr_0.74fr] grid-cols-1">
- <div class="space-y-4">
- <div class="top-nav-bar">
- <!-- 左侧标题 -->
- <!-- <div class="nav-title">统一入口,快速直达</div> -->
- <!-- 中间搜索框 -->
- <div class="search-container hidden! md:flex!">
- <Icon icon="mdi:magnify" class="search-icon" />
- <input
- v-model="searchKeyword"
- type="text"
- placeholder="搜索应用、流程、数据..."
- class="search-input"
- @keyup.enter="handleSearch"
- />
- <span class="shortcut-key">⌘K</span>
- </div>
- <!-- 右侧快捷入口 -->
- <div class="quick-access">
- <el-dropdown
- trigger="click"
- popper-class="quick-access-dropdown"
- @command="handleQuickAccessCommand"
- >
- <button type="button" class="quick-btn quick-btn--dropdown">
- <img src="../assets//images//td.png" class="w-5 h-5" alt="" />
- <span class="btn-label quick-btn__meta">我的待办</span>
- <span class="quick-btn__count quick-btn__count--todo">{{
- todo
- }}</span>
- <!-- <Icon icon="mdi:chevron-down" class="quick-btn__arrow" /> -->
- </button>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item command="todo-oa">
- <div class="p-2 flex items-center gap-3 text-[#e43c2f]!">
- <span>OA</span>
- <span>{{ oatodo }}</span>
- </div>
- </el-dropdown-item>
- <el-dropdown-item command="todo-crm">
- <div class="p-2 flex items-center gap-3 text-[#e43c2f]!">
- <span>CRM</span>
- <span>{{ crmtodo }}</span>
- </div>
- </el-dropdown-item>
- <el-dropdown-item command="todo-srm">
- <div class="p-2 flex items-center gap-3 text-[#e43c2f]!">
- <span>SRM</span>
- <span>{{ srmtodo }}</span>
- </div>
- </el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- <el-dropdown
- trigger="click"
- popper-class="quick-access-dropdown"
- @command="handleQuickAccessCommand"
- >
- <button type="button" class="quick-btn quick-btn--dropdown">
- <Icon icon="mdi:check" class="btn-icon" />
- <span class="btn-label quick-btn__meta">我的已办</span>
- <span
- class="p-2 inline-block quick-btn__count quick-btn__count--done"
- >{{ done }}</span
- >
- <!-- <Icon icon="mdi:chevron-down" class="quick-btn__arrow" /> -->
- </button>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item command="done-oa">
- <div class="p-2 flex items-center gap-3 text-[#2da04d]!">
- <span>OA</span>
- <span>{{ oadone }}</span>
- </div>
- </el-dropdown-item>
- <el-dropdown-item command="done-crm">
- <div class="p-2 flex items-center gap-3 text-[#2da04d]!">
- <span>CRM</span>
- <span>{{ crmdone }}</span>
- </div></el-dropdown-item
- >
- <el-dropdown-item command="done-srm">
- <div class="p-2 flex items-center gap-3 text-[#2da04d]!">
- <span>SRM</span>
- <span>{{ srmdone }}</span>
- </div></el-dropdown-item
- >
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- </div>
- </div>
- <article
- v-for="section in filteredSections"
- :key="section.code"
- class="platform-block rounded-sm md:flex"
- :style="{ minHeight: section.height }"
- >
- <div class="platform-block__header">
- <img
- v-if="section.title === '数字化运营平台'"
- src="../assets//images/icon.png"
- alt=""
- class="w-20 h-20"
- />
- <img
- v-if="section.title === '智慧指挥平台'"
- src="../assets//images/icon2.png"
- alt=""
- class="w-20 h-20"
- />
- <img
- v-if="section.title === 'Chat BI平台'"
- src="../assets//images/icon3.png"
- alt=""
- class="w-20 h-20"
- />
- <div class="platform-block__title-wrap">
- <p class="platform-block__title">{{ section.title }}</p>
- <span class="platform-block__subtitle">{{
- section.subtitle
- }}</span>
- </div>
- </div>
- <div
- v-if="section.apps?.length"
- class="grid grid-cols-[repeat(2,minmax(0,1fr))] gap-2 p-6 px-3 md:px-4 md:grid-cols-[repeat(3,minmax(0,1fr))] xl:grid-cols-[repeat(3,minmax(0,1fr))]"
- >
- <button
- v-for="(app, appIndex) in section.apps"
- :key="`${section.code}-${appIndex}-${app.label}`"
- type="button"
- :class="[
- 'platform-app',
- boldLabes.includes(app.label)
- ? 'platform-app--active'
- : 'platform-app--ghost',
- ]"
- @click="handlePortalAppClick(app)"
- >
- <span class="platform-app__icon">
- <img
- v-if="app.image"
- :src="app.image"
- :alt="app.label"
- class="h-7 w-7 object-contain rounded-md"
- />
- <Icon
- v-else
- :icon="app.icon || 'mdi:dots-grid'"
- class="text-[24px]"
- />
- </span>
- <span
- class="platform-app__label md:text-sm text-[12px] text-left"
- >{{ app.label }}</span
- >
- </button>
- </div>
- </article>
- </div>
- <aside class="space-y-4">
- <section class="side-card side-card--notice rounded-md p-2">
- <div class="side-card__header w-[95%] ml-[8px]">
- <div class="notice-tabs">
- <button
- v-for="tab in noticeTabs"
- :key="tab.key"
- type="button"
- :class="[
- 'notice-tab',
- activeNoticeTab === tab.key ? 'notice-tab--active' : '',
- ]"
- @click="handleNoticeTabChange(tab.key)"
- >
- {{ tab.label }}
- </button>
- </div>
- <button
- type="button"
- class="side-card__more"
- @click="handleNoticeMoreClick"
- >
- 更多
- <Icon icon="mingcute:right-line" class="text-[18px]" />
- </button>
- </div>
- <div class="space-y-2 p-2 pt-3">
- <div
- v-if="!userStore.getUser.username"
- class="flex h-full items-center justify-center"
- >
- <div class="text-[#8a9ab0] pt-5">登录后查看</div>
- </div>
- <div
- v-if="!currentNoticeList.length && userStore.getUser.username"
- class="flex h-[120px] items-center justify-center text-[#8a9ab0]"
- >
- 暂无数据
- </div>
- <article
- v-if="userStore.getUser.username"
- v-for="notice in currentNoticeList"
- :key="notice.id"
- class="notice-item cursor-pointer"
- @click="handleNoticeItemClick(notice)"
- >
- <div class="notice-item__desc">{{ notice.docsubject }}</div>
- <div class="date text-[12px] text-[#9cadc0]">
- {{ notice.docvaliddate }}
- </div>
- </article>
- </div>
- </section>
- <section
- class="side-card side-card--notice rounded-md p-2"
- :style="{ minHeight: '190px' }"
- >
- <div class="side-card__header w-[91%] ml-[15px]">
- <div class="notice-badge px-2 pb-2">{{ todoPanelTitle }}</div>
- <button
- type="button"
- class="side-card__more"
- @click="router.push('/todo-list')"
- >
- 全部任务
- <Icon icon="mingcute:right-line" class="text-[18px]" />
- </button>
- </div>
- <div class="space-y-2 p-4 pt-2">
- <div
- v-if="!userStore.getUser.username"
- class="flex h-full items-center justify-center"
- >
- <div class="text-[#8a9ab0] pt-10">登录后查看</div>
- </div>
- <div
- v-if="!oaTasks.length && userStore.getUser.username"
- class="flex h-full items-center justify-center"
- >
- <div class="text-[#8a9ab0] pt-10">暂无待办</div>
- </div>
- <article
- v-if="userStore.getUser.username"
- v-for="task in oaTasks"
- :key="task.requestId"
- @click="handleTask(task)"
- class="todo-item rounded-md cursor-pointer"
- >
- <div class="flex min-w-0 items-start justify-between gap-3">
- <div class="min-w-0">
- <div class="truncate text-[14px] font-semibold">
- {{ task.requestName }}
- </div>
- <div class="mt-1 text-[12px] text-[#8a9ab0]">
- 创建人:{{ task.creatorName }} · {{ task.createTime }}
- </div>
- </div>
- <span
- :class="['todo-item__tag', getTagClass(task.requesLevel)]"
- >{{ getTagName(task.requesLevel) }}</span
- >
- </div>
- </article>
- <div class="quick-todo-bar">
- <el-dropdown
- trigger="click"
- popper-class="quick-access-dropdown"
- @command="handleQuickAccessCommand"
- >
- <button type="button" class="quick-todo-btn">
- <div class="number">{{ todo }}</div>
- <div class="flex gap-2 items-center">
- <div class="!text-[10px] aside-btn">我的待办</div>
- <Icon
- icon="mdi:clipboard-text-outline"
- color="#7f2c33"
- class="icon"
- />
- </div>
- </button>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item command="todo-oa">
- <div
- class="p-2 flex items-center gap-3 text-[#f56c6c]!"
- >
- <span>OA</span>
- <span>{{ oatodo }}</span>
- </div>
- </el-dropdown-item>
- <el-dropdown-item command="todo-crm">
- <div
- class="p-2 flex items-center gap-3 text-[#f56c6c]!"
- >
- <span>CRM</span>
- <span>{{ crmtodo }}</span>
- </div>
- </el-dropdown-item>
- <el-dropdown-item command="todo-srm">
- <div
- class="p-2 flex items-center gap-3 text-[#e43c2f]!"
- >
- <span>SRM</span>
- <span>{{ srmtodo }}</span>
- </div>
- </el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- <el-dropdown
- trigger="click"
- popper-class="quick-access-dropdown"
- @command="handleQuickAccessCommand"
- >
- <button
- type="button"
- class="quick-todo-btn quick-todo-btn--center"
- >
- <div class="number text-[#2d8767]!">{{ done }}</div>
- <div class="flex gap-2 items-center pl-2">
- <div class="!text-[10px] aside-btn">已完成</div>
- <Icon
- icon="mdi:check-circle-outline"
- color="#2d8767"
- class="icon"
- />
- </div>
- </button>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item command="done-oa">
- <div
- class="p-2 flex items-center gap-3 text-[#2d8767]!"
- >
- <span>OA</span>
- <span>{{ oadone }}</span>
- </div>
- </el-dropdown-item>
- <el-dropdown-item command="done-crm">
- <div
- class="p-2 flex items-center gap-3 text-[#2d8767]!"
- >
- <span>CRM</span>
- <span>{{ crmdone }}</span>
- </div>
- </el-dropdown-item>
- <el-dropdown-item command="done-srm">
- <div
- class="p-2 flex items-center gap-3 text-[#2d8767]!"
- >
- <span>SRM</span>
- <span>{{ srmdone }}</span>
- </div>
- </el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- </div>
- </div>
- </section>
- <section
- class="side-card side-card--content p-2 rounded-md"
- :style="{ minHeight: '180px' }"
- >
- <div class="side-card__header w-[90%] ml-[15px]">
- <div class="news notice-badge pb-2">{{ newsPanelTitle }}</div>
- <button type="button" class="side-card__more" @click="goNews">
- 更多
- <Icon icon="mingcute:right-line" class="text-[18px]" />
- </button>
- </div>
- <div class="space-y-2 p-4 pt-2">
- <div
- v-if="!userStore.getUser.username"
- class="flex h-full items-center justify-center"
- >
- <div class="text-[#8a9ab0] pt-10">登录后查看</div>
- </div>
- <div
- v-if="!newsList.length && userStore.getUser.username"
- class="flex h-full items-center justify-center"
- >
- <div class="text-[#8a9ab0] pt-10">暂无新闻</div>
- </div>
- <article
- v-for="news in newsList"
- :key="news.id"
- class="news-mini cursor-pointer rounded-md"
- @click="handleNoticeItemClick(news)"
- >
- <div class="min-w-0 flex-1">
- <div
- class="line-clamp-1 text-[13px] font-semibold leading-[1.45]"
- >
- {{ news.docsubject }}
- </div>
- <div class="mt-2 text-[12px] text-[#9cadc0]">
- {{ news.docvaliddate }}
- </div>
- </div>
- </article>
- </div>
- </section>
- <section
- v-if="userStore.getUser.username"
- class="side-card side-card--placeholder rounded-md"
- :style="{ minHeight: '78px', backgroundColor: '#3575e4' }"
- >
- <div class="placeholder-panel flex flex-col text-left">
- <!-- <div class="text-sm">需要帮助?</div> -->
- <div class="text-[10px]">遇到系统操作问题,需要帮助</div>
- <div
- class="bg-[#79ebfa] text-sm text-center text-[#004098] py-1 px-2 rounded-full mt-2 w-[30%] cursor-pointer"
- @click="openConsult"
- >
- 立即咨询
- </div>
- </div>
- </section>
- </aside>
- </section>
- </main>
- <el-dialog v-model="dialogVisible" title="提示" width="500">
- <template #header="{ close, titleId, titleClass }">
- <div class="my-header">
- <h4 :id="titleId" class="flex gap-2 items-center">
- <Icon
- :icon="'si:warning-line'"
- color="#ef6c1a"
- size="16"
- class="text-[20px]"
- /><span class="text-black">提示</span>
- </h4>
- </div>
- </template>
- <span class="text-black">账号未授权</span>
- <template #footer>
- <div class="dialog-footer">
- <el-button @click="dialogVisible = false">确定</el-button>
- <!-- <el-button type="primary" color="#063e8d" @click="confirmSrm">
- 继续访问
- </el-button> -->
- </div>
- </template>
- </el-dialog>
- <Footer />
- </div>
- </template>
- <script setup lang="ts">
- import { computed, onMounted, onUnmounted, watch, ref } from "vue";
- import * as authUtil from "@/utils/auth";
- import * as dd from "dingtalk-jsapi";
- import Header from "@components/home/header.vue";
- import Footer from "@components/home/Footer.vue";
- import { useRouter } from "vue-router";
- import axios from "axios";
- import { Icon } from "@iconify/vue";
- import { ElLoading } from "element-plus";
- import {
- getMCSsoToken,
- ssoLogin,
- zentaoSsoLogin,
- getOATasks,
- getCRMTasks,
- getSRMTasks,
- getNotices,
- getRedHeadFiles,
- getNews,
- srmLogin,
- ehrLogin,
- } from "@/api/user";
- import { useUserStore } from "@/stores/useUserStore";
- import { useThemeStore } from "@/stores/useThemeStore";
- import { getAccessToken } from "@/utils/auth";
- import { deleteUserCache } from "@hooks/useCache";
- import { manualLogoutKey, reloginCancelKey } from "@/config/axios/service";
- import banner1 from "@/assets/images/banner1.png";
- import banner2 from "@/assets/images/banner2.png";
- import oaimage from "@/assets/images/oa.png";
- import crmimage from "@/assets/images/crm.png";
- import ehrimage from "@/assets/images/ehr.png";
- import scmimage from "@/assets/images/scm.png";
- import erpimage from "@/assets/images/fm.png";
- import driveimage from "@/assets/images/drive.png";
- import pmsimage from "@/assets/images/pms.jpeg";
- import zhonghangimage from "@/assets/images/中航.png";
- import lianyouimage from "@/assets/images/lianyou.png";
- import qhseimage from "@/assets/images/qhse.png";
- import zuanjingimage from "@/assets/images/zuanjing.jpeg";
- import yalieimage from "@/assets/images/yalie.png";
- import zhuqiimage from "@/assets/images/zhuqi.png";
- import pmimage from "@/assets/images/pm.png";
- import dataimage from "@/assets/images/data2.png";
- import thinkimage from "@/assets/images/think.png";
- import aiimage from "@/assets/images/ai.png";
- import agentimage from "@/assets/images/icon2.png";
- import videoimage from "@/assets/images/video.png";
- import fileagent from "@/assets/images/fileagent.png";
- import zhiduagent from "@/assets/images/zhiduagent.png";
- import jishuimage2 from "@/assets/images/jishuimage.png";
- import zhanlueimage from "@/assets/images/zhanlue.png"; // 战略解码
- import safeimage from "@/assets/images/safe.png"; // 安全合规管理
- import zuzhiimage from "@/assets/images/zuzhi.png";
- import youimage from "@/assets/images/youcnag.png"; // ai智能体
- import hongpan from "@/assets/images/pan.png"; // ai智能体
- import ask from "@/assets/images/ask.png";
- import degitial from "@/assets/images/degitial.png";
- import banner2_white from "@/assets/images/banner2_white.png";
- import banner1_white from "@/assets/images/banner1_white.png";
- type PortalApp = {
- label: string;
- icon?: string;
- image?: string;
- active?: boolean;
- };
- type PortalSection = {
- code: string;
- title: string;
- subtitle: string;
- height: string;
- apps?: PortalApp[];
- };
- type NoticeItem = {
- id?: string | number;
- title?: string;
- desc?: string;
- docsubject?: string;
- };
- const router = useRouter();
- const userStore = useUserStore();
- const themeStore = useThemeStore();
- const todoPanelTitle = "待办中心";
- const newsPanelTitle = "新闻中心";
- const noticeTabs = [
- { key: "redHead", label: "红头文件" },
- { key: "notice", label: "通知公告" },
- ] as const;
- type NoticeTabKey = (typeof noticeTabs)[number]["key"];
- const portalSections: PortalSection[] = [
- {
- code: "数",
- title: "数字化运营平台",
- subtitle: "高效协同 · 战略洞察",
- height: "220px",
- apps: [
- {
- label: "OA办公",
- image: oaimage,
- active: true,
- },
- { label: "客户管理(CRM)", image: crmimage },
- { label: "人力资源(EHR)", image: ehrimage },
- { label: "供应商管理(SRM)", image: scmimage },
- { label: "经营驾驶舱(MC)", image: driveimage },
- { label: "项目管理(PM)", image: pmimage },
- { label: "开发需求管理", image: jishuimage2 },
- { label: "鸿盘", image: hongpan },
- { label: "财务管理(FM)", image: erpimage },
- { label: "技术研发管理(R&D)", image: jishuimage2 },
- { label: "战略解码与执行", image: zhanlueimage },
- { label: "组织资产管理", image: zuzhiimage },
- { label: "风控合规管理", image: safeimage },
- ],
- },
- {
- code: "智",
- title: "智慧指挥平台",
- subtitle: "高效协同 · 战略洞察",
- height: "210px",
- apps: [
- { label: "设备管理(PMS)", image: pmsimage, active: true },
- { label: "质量安全管理(QHSE)", image: qhseimage },
- { label: "中航北斗", image: zhonghangimage },
- { label: "智慧连油", image: lianyouimage },
- { label: "智慧注气", image: zhuqiimage },
- { label: "视频中心(VCS)", image: videoimage },
- { label: "智能钻井", image: zuanjingimage },
- { label: "智慧压裂", image: yalieimage },
- { label: "数字油藏", image: youimage },
- ],
- },
- {
- code: "AI",
- title: "Chat BI平台",
- subtitle: "数据智能 · 决策驱动",
- height: "160px",
- apps: [
- { label: "全局数据治理(数据中台)", image: dataimage, active: true },
- { label: "智能决策", image: thinkimage },
- { label: "行业AI大模型", image: aiimage },
- { label: "AI智能体(智能交互)", image: agentimage },
- { label: "工艺文件智能体", image: fileagent },
- { label: "集团制度智能体", image: zhiduagent },
- { label: "智能问数", image: ask },
- { label: "瑞小智(数字人)", image: degitial },
- ],
- },
- ];
- let boldLabes = ref([
- "OA办公",
- "客户管理(CRM)",
- "设备管理(PMS)",
- "中航北斗",
- "智慧连油",
- "质量安全管理(QHSE)",
- "智慧注气",
- "视频中心(VCS)",
- "开发需求管理",
- "经营驾驶舱(MC)",
- "项目管理(PM)",
- "鸿盘",
- "智能钻井",
- "供应商管理(SRM)",
- "人力资源(EHR)",
- ]);
- const searchKeyword = ref("");
- // 2. 实现搜索处理函数
- const handleSearch = () => {
- if (!searchKeyword.value.trim()) return;
- console.log("执行搜索:", searchKeyword.value);
- // 如果需要跳转到独立搜索页,可以在这里添加 router.push
- };
- const handleQuickAccessCommand = (command: string) => {
- let ua2 = navigator.userAgent.toLowerCase();
- let isMobile = ua2.indexOf("dingtalk") > -1;
- const routeMap: Record<string, string> = {
- "todo-oa": "/todo-list?type=oa",
- "done-oa": "/oa-done-list?type=oa",
- "todo-crm": "/crm-todo-list?type=crm",
- "done-crm": "/crm-done-list?type=crm",
- "todo-srm": "/srm-todo-list?type=srm",
- "done-srm": "/srm-done-list?type=srm",
- };
- const routeMap2: Record<string, string> = {
- "todo-oa": "/mobile-todo-list?type=oa",
- "done-oa": "/oa-done-list?type=oa",
- "todo-crm": "/mobile-crm-todo-list?type=crm",
- "done-crm": "/crm-done-list?type=crm",
- "todo-srm": "/mobile-srm-todo-list?type=srm",
- "done-srm": "/srm-done-list?type=srm",
- };
- // const target = routeMap[command];
- let target = null;
- console.log("isMobile:", isMobile);
- if (isMobile) {
- target = routeMap2[command];
- } else {
- target = routeMap[command];
- }
- if (target) {
- router.push(target);
- }
- };
- const filteredSections = computed(() => {
- const keyword = searchKeyword.value.trim().toLowerCase();
- // 如果没有关键词,返回原始数据
- if (!keyword) {
- return portalSections;
- }
- // 过滤逻辑:遍历每个板块,保留匹配的应用
- return portalSections
- .map((section) => {
- if (!section.apps) return { ...section, apps: [] };
- const matchedApps = section.apps.filter((app) =>
- app.label.toLowerCase().includes(keyword),
- );
- return {
- ...section,
- apps: matchedApps,
- };
- })
- .filter((section) => section.apps && section.apps.length > 0); // 移除没有匹配应用的空板块
- });
- watch(
- () => themeStore.theme,
- () => {
- if (themeStore.theme === "light") {
- slides.value = [
- {
- image: banner2_white,
- text: "数字化转型,驱动未来增长",
- },
- {
- image: banner1_white,
- text: "保持热爱,奔赴目标!",
- },
- {
- image: banner1_white,
- text: "智慧平台,赋能高效协同",
- },
- ];
- } else {
- slides.value = [
- {
- image: banner2,
- text: "数字化转型,驱动未来增长",
- },
- {
- image: banner1,
- text: "保持热爱,奔赴目标!",
- },
- {
- image: banner1,
- text: "智慧平台,赋能高效协同",
- },
- ];
- }
- },
- );
- // 添加轮播数据
- const slides = ref([
- {
- image: themeStore.theme === "light" ? banner2_white : banner2,
- text: "数字化转型,驱动未来增长",
- },
- {
- image: themeStore.theme === "light" ? banner1_white : banner1,
- text: "保持热爱,奔赴目标!",
- },
- {
- image: themeStore.theme === "light" ? banner1_white : banner1,
- text: "智慧平台,赋能高效协同",
- },
- ]);
- // 当前索引
- const currentIndex = ref(0);
- let slideTimer: ReturnType<typeof setInterval> | null = null;
- // 下一页
- const nextSlide = () => {
- currentIndex.value = (currentIndex.value + 1) % slides.value.length;
- };
- const activeNoticeTab = ref<NoticeTabKey>("redHead");
- const noticeListMap = ref<Record<NoticeTabKey, NoticeItem[]>>({
- notice: [],
- redHead: [],
- });
- const newsList = ref([]);
- const currentNoticeList = computed(
- () => noticeListMap.value[activeNoticeTab.value] ?? [],
- );
- let todo = ref(0);
- let done = ref(0);
- let oatodo = ref(0);
- let oadone = ref(0);
- let crmtodo = ref(0);
- let crmdone = ref(0);
- let srmtodo = ref(0);
- let srmdone = ref(0);
- const loadHomeData = async () => {
- await loadNoticeList(activeNoticeTab.value);
- if (!userStore.getUser.username) return;
- const [oaRes, crmRes, crmDoneRes, srmRes, newsRes] = await Promise.all([
- getOATasks({
- id: userStore.getUser.username,
- pageNum: 1,
- pageSize: 10,
- }),
- await getCRMTasks({
- id: userStore.getUser.username,
- type: "pending",
- pageNum: 1,
- pageSize: 10,
- }),
- await getCRMTasks({
- id: userStore.getUser.username,
- type: "approved",
- pageNum: 1,
- pageSize: 10,
- }),
- await getSRMTasks({
- id: userStore.getUser.username,
- pageNum: 1,
- pageSize: 10,
- }),
- getNews({
- pageNum: 1,
- pageSize: 10,
- }),
- ]);
- oaTasks.value = oaRes.todoList.slice(0, 3);
- todo.value = Number(oaRes.todoCount) + crmRes.todoCount + srmRes.todoCount;
- done.value =
- Number(oaRes.doneCount) + crmDoneRes.todoCount + srmRes.doneCount;
- oatodo.value = oaRes.todoCount;
- oadone.value = oaRes.doneCount;
- crmtodo.value = crmRes.todoCount;
- crmdone.value = crmDoneRes.todoCount;
- srmtodo.value = srmRes.todoCount;
- srmdone.value = srmRes.doneCount;
- newsList.value = newsRes.list.slice(0, 3);
- };
- const loadNoticeList = async (tabKey: NoticeTabKey) => {
- const requestApi = tabKey === "notice" ? getNotices : getRedHeadFiles;
- const res = await requestApi({
- pageNum: 1,
- pageSize: 10,
- });
- noticeListMap.value[tabKey] = (res?.list || []).slice(0, 3);
- };
- let currentTabKey = ref<NoticeTabKey>("redHead");
- const handleNoticeTabChange = async (tabKey: NoticeTabKey) => {
- activeNoticeTab.value = tabKey;
- currentTabKey.value = tabKey;
- // if (noticeListMap.value[tabKey].length) return;
- if (userStore.getUser.username) {
- await loadNoticeList(tabKey);
- }
- };
- const handleNoticeMoreClick = () => {
- router.push({
- path: "/notice-redhead",
- query: {
- tabKey: currentTabKey.value,
- },
- });
- };
- const protectedOpen = (url: string) => {
- if (userStore.getUser.username && getAccessToken()) {
- window.open(url, "_blank");
- } else {
- router.push({ path: "/login" });
- }
- };
- let dialogVisible = ref(false);
- const handlePortalAppClick = async (app: PortalApp) => {
- if (!app.label) return;
- if (app.label === "项目管理(PM)") {
- protectedOpen(
- `${import.meta.env.VITE_PMS_URL}/portalLogin?username=${userStore.getUser.username}&source=yyhy`,
- );
- }
- if (app.label === "OA办公") {
- // if (userStore.getUser.username && getAccessToken()) {
- // const res = await ssoLogin({ username: userStore.getUser.username });
- // if (res) {
- // window.open(
- // `https://yfoa.keruioil.com/wui/index.html?ssoToken=${res}#/main`,
- // "_blank",
- // );
- // }
- // } else {
- // router.push({ path: "/login" });
- // }
- if (userStore.getUser.username && getAccessToken()) {
- const ua = window.navigator.userAgent; // const ua = navigator.userAgent;
- const isDesktop =
- ua.includes("DingTalk") &&
- (ua.includes("Windows") || ua.includes("Macintosh"));
- let ua2 = navigator.userAgent.toLowerCase();
- let isMobile = ua2.indexOf("dingtalk") > -1;
- const res = await ssoLogin({ username: userStore.getUser.username });
- if (ua2.includes("dingtalk") || ua2.includes("dingtalkwork")) {
- if (isMobile && !isDesktop) {
- dd.biz.util.openLink({
- url: `https://yfding.keruioil.com:9443/wxapi/wxclientmenu/a3c638fedfcd4945b58ec152a5bff0b7`,
- onSuccess: () => {},
- });
- } else if (isDesktop) {
- if (res) {
- window.open(
- `https://yfoa.keruioil.com/wui/index.html?ssoToken=${res}#/main`,
- "_blank",
- );
- }
- }
- } else {
- // 浏览器
- if (res) {
- window.open(
- `https://yfoa.keruioil.com/wui/index.html?ssoToken=${res}#/main`,
- "_blank",
- );
- }
- }
- } else {
- router.push({ path: "/login" });
- }
- }
- if (app.label === "客户管理(CRM)") {
- if (userStore.getUser.username && getAccessToken()) {
- const ua = window.navigator.userAgent; // const ua = navigator.userAgent;
- const isDesktop =
- ua.includes("DingTalk") &&
- (ua.includes("Windows") || ua.includes("Macintosh"));
- let ua2 = navigator.userAgent.toLowerCase();
- var isMobile = ua2.indexOf("dingtalk") > -1;
- if (ua2.includes("dingtalk") || ua2.includes("dingtalkwork")) {
- if (isMobile && !isDesktop) {
- const originPath =
- "/bff/spa/crmh5/index.html#/home?platform=H5&deviceType=0";
- // 连续三次encodeURIComponent
- let e1 = encodeURIComponent(originPath);
- let e2 = encodeURIComponent(e1);
- let e3 = encodeURIComponent(e2);
- dd.biz.util.openLink({
- url: `https://crm-tencent.xiaoshouyi.com/global/sso/callback/00APEB9EEEA9B2E338B686B7ECFA8585808C.action?token=${getAccessToken()}&returnUri=${e3}`,
- onSuccess: () => {},
- });
- } else if (isDesktop) {
- window.open(
- `https://crm-tencent.xiaoshouyi.com/global/sso/callback/00APEB9EEEA9B2E338B686B7ECFA8585808C.action?token=${getAccessToken()}`,
- "_blank",
- );
- }
- } else {
- window.open(
- `https://crm-tencent.xiaoshouyi.com/global/sso/callback/00APEB9EEEA9B2E338B686B7ECFA8585808C.action?token=${getAccessToken()}`,
- "_blank",
- );
- }
- } else {
- router.push({ path: "/login" });
- }
- }
- if (app.label === "设备管理(PMS)") {
- protectedOpen(
- `${import.meta.env.VITE_PMS_URL}/portalLogin?username=${userStore.getUser.username}`,
- );
- }
- if (app.label === "中航北斗") {
- protectedOpen("https://zhbdgps.cn");
- }
- if (app.label === "智慧连油") {
- protectedOpen(
- `${import.meta.env.VITE_PMS_URL}/portalLogin?username=${userStore.getUser.username}&source=zhly`,
- );
- }
- if (app.label === "智慧注气") {
- protectedOpen(
- `${import.meta.env.VITE_PMS_URL}/portalLogin?username=${userStore.getUser.username}&source=zhzq`,
- );
- }
- if (app.label === "视频中心(VCS)") {
- protectedOpen(
- `${import.meta.env.VITE_PMS_URL}/portalLogin?username=${userStore.getUser.username}&source=spzx`,
- );
- }
- if (app.label === "质量安全管理(QHSE)") {
- protectedOpen(
- `${import.meta.env.VITE_PMS_URL}/portalLogin?username=${userStore.getUser.username}&source=qhse_nav`,
- );
- }
- if (app.label === "经营驾驶舱(MC)") {
- if (userStore.getUser.username && getAccessToken()) {
- const res = await getMCSsoToken();
- if (res) {
- window.open(
- `https://report.deepoil.cc/webroot/decision/v10/entry/access/9fb42908-894a-4373-a6be-ce046a42851d?preview=true&page_number=1&ssoToken=${res}`,
- "_blank",
- );
- }
- } else {
- router.push({ path: "/login" });
- }
- }
- if (app.label === "开发需求管理") {
- if (userStore.getUser.username && getAccessToken()) {
- const res = await zentaoSsoLogin({
- username: userStore.getUser.username,
- });
- if (res) {
- window.open(
- `http://project.deepoil.cc/zentao/api.php?m=user&f=apilogin&account=${res.jobNumber}&code=${res.code}&time=${res.timestamp}&token=${res.token}`,
- "_blank",
- );
- }
- } else {
- router.push({ path: "/login" });
- }
- }
- if (app.label === "人力资源(EHR)") {
- if (userStore.getUser.username && getAccessToken()) {
- const res = await ehrLogin({
- username: userStore.getUser.username,
- });
- const ua = window.navigator.userAgent;
- const isDesktop =
- ua.includes("DingTalk") &&
- (ua.includes("Windows") || ua.includes("Macintosh"));
- let ua2 = navigator.userAgent.toLowerCase();
- var isMobile = ua2.indexOf("dingtalk") > -1;
- if (ua2.includes("dingtalk") || ua2.includes("dingtalkwork")) {
- if (isMobile && !isDesktop) {
- dd.biz.util.openLink({
- url: `${res.ehrUrl}/gateway/login/free?loginfree_licence=${res.licence}&signature=${res.sign}&redirect_url=/proxy/h5/home`,
- onSuccess: () => {},
- });
- } else if (isDesktop) {
- window.open(
- `${res.ehrUrl}/gateway/login/free?loginfree_licence=${res.licence}&signature=${res.sign}&redirect_url=${res.redirect}`,
- "_blank",
- );
- }
- } else {
- // 浏览器环境
- window.open(
- `${res.ehrUrl}/gateway/login/free?loginfree_licence=${res.licence}&signature=${res.sign}&redirect_url=${res.redirect}`,
- "_blank",
- );
- }
- } else {
- router.push({ path: "/login" });
- }
- }
- if (app.label === "供应商管理(SRM)") {
- if (userStore.getUser.username && getAccessToken()) {
- const ua = window.navigator.userAgent;
- const isDesktop =
- ua.includes("DingTalk") &&
- (ua.includes("Windows") || ua.includes("Macintosh"));
- let ua2 = navigator.userAgent.toLowerCase();
- let isMobile = ua2.indexOf("dingtalk") > -1;
- const res = await srmLogin({
- username: userStore.getUser.username,
- });
- if (JSON.parse(res).msg === "账号未授权") {
- dialogVisible.value = true;
- return;
- }
- if (ua2.includes("dingtalk") || ua2.includes("dingtalkwork")) {
- if (isMobile && !isDesktop) {
- // alert("SRM判断是钉钉手机端登录");
- dd.biz.util.openLink({
- url: `https://srm-m.deepoil.cc:7777/#/mixed-page/view/MXP00048?Authorization=${JSON.parse(res).msg}`,
- onSuccess: () => {},
- });
- } else if (isDesktop) {
- window.open(
- `https://srm.deepoil.cc/#/mixed-page/view/MXP00048?Authorization=${JSON.parse(res).msg}`,
- "_blank",
- );
- }
- } else {
- // 浏览器环境
- window.open(
- `https://srm.deepoil.cc/#/mixed-page/view/MXP00048?Authorization=${JSON.parse(res).msg}`,
- "_blank",
- );
- }
- } else {
- router.push({ path: "/login" });
- }
- }
- if (app.label === "智能钻井") {
- if (userStore.getUser.username && getAccessToken()) {
- window.open(`http://172.21.0.224:8001/#/login`, "_blank");
- } else {
- router.push({ path: "/login" });
- }
- }
- if (app.label === "鸿盘") {
- if (userStore.getUser.username && getAccessToken()) {
- window.open(`https://pan.keruioil.com:52180`, "_blank");
- } else {
- router.push({ path: "/login" });
- }
- }
- };
- async function loginWithDingTalk() {
- const ddCorpId = import.meta.env.VITE_DD_CORPID;
- const ddClientId = import.meta.env.VITE_DD_CLIENTID;
- if (!ddCorpId || !ddClientId) return false;
- return await new Promise<boolean>((resolve) => {
- dd.requestAuthCode({
- corpId: ddCorpId,
- clientId: ddClientId,
- success: async (res: any) => {
- try {
- const { code } = res;
- const response = await axios.post(
- import.meta.env.BASE_URL + "/admin-api/system/auth/h5SocialLogin",
- {
- code,
- type: 20,
- state: new Date().getTime(),
- },
- {
- headers: {
- "Content-Type": "application/json",
- "tenant-id": 1,
- },
- },
- );
- deleteUserCache();
- userStore.resetState();
- authUtil.setToken(response.data.data);
- sessionStorage.removeItem(manualLogoutKey);
- sessionStorage.removeItem(reloginCancelKey);
- await userStore.setUserInfoAction();
- resolve(true);
- } catch (error) {
- console.log("dingTalk login error :>> ", error);
- resolve(false);
- }
- },
- fail: (err: any) => {
- console.log("err :>> ", err);
- resolve(false);
- },
- });
- });
- }
- async function dingTalkAutoLogin() {
- const ua = window.navigator.userAgent.toLowerCase();
- if (
- (ua.includes("dingtalk") || ua.includes("dingtalkwork")) &&
- !userStore.getUser.username &&
- !getAccessToken()
- ) {
- return await loginWithDingTalk();
- }
- return false;
- }
- const getTagClass = (tag: string) => {
- return tag === "0"
- ? "bg-[#2e1e6d] text-white/90"
- : tag === "1"
- ? "bg-[#2e1e6d] text-white/90"
- : tag === "2"
- ? "bg-[#2e1e6d] text-white/90"
- : "bg-[#2e1e6d] text-white/90";
- };
- const getTagName = (tag: string) => {
- return tag === "0"
- ? "正常"
- : tag === "1"
- ? "重要"
- : tag === "2"
- ? "紧急"
- : "正常";
- };
- let oaTasks = ref([]);
- onMounted(async () => {
- slideTimer = setInterval(nextSlide, 5000);
- await dingTalkAutoLogin();
- await loadHomeData();
- });
- const handleNoticeItemClick = async (notice: any) => {
- const res = await ssoLogin({
- username: userStore.getUser.username,
- });
- if (res) {
- const ua = window.navigator.userAgent.toLowerCase();
- if (ua.includes("dingtalk") || ua.includes("dingtalkwork")) {
- dd.biz.util.openLink({
- url:
- "https://yfoa.keruioil.com/wui/index.html" +
- "?ssoToken=" +
- res +
- "#/main", // 先跳你的 SSO 链接
- onSuccess: () => {
- // 延迟跳目标业务地址(和你原来 setTimeout 逻辑一致)
- setTimeout(() => {
- dd.biz.util.openLink({
- url: `https://yfoa.keruioil.com/spa/document/index.jsp?openAttachment=0&id=${notice.id}`,
- });
- }, 100);
- },
- });
- } else {
- const loading = ElLoading.service({
- lock: true,
- text: "正在跳转,请稍候...",
- background: "rgba(0, 0, 0, 0.7)",
- });
- const newTab = window.open("", "_blank");
- newTab.location.href =
- "https://yfoa.keruioil.com/wui/index.html" +
- "?ssoToken=" +
- res +
- "#/main";
- setTimeout(function () {
- newTab.location.href = `https://yfoa.keruioil.com/spa/document/index.jsp?openAttachment=0&id=${notice.id}`;
- setTimeout(() => {
- loading.close();
- }, 500);
- }, 100);
- }
- }
- };
- const handleTask = async (row: any) => {
- const res = await ssoLogin({
- username: userStore.getUser.username,
- });
- if (res) {
- const ua = window.navigator.userAgent.toLowerCase();
- if (ua.includes("dingtalk") || ua.includes("dingtalkwork")) {
- dd.biz.util.openLink({
- url:
- "https://yfoa.keruioil.com/wui/index.html" +
- "?ssoToken=" +
- res +
- "#/main", // 先跳你的 SSO 链接
- onSuccess: () => {
- // 延迟跳目标业务地址(和你原来 setTimeout 逻辑一致)
- setTimeout(() => {
- dd.biz.util.openLink({
- url: `https://yfoa.keruioil.com/spa/workflow/static4form/index.html?_rdm=1776063595284#/main/workflow/req?requestid=${row.requestId}`,
- });
- }, 100);
- },
- });
- } else {
- const loading = ElLoading.service({
- lock: true,
- text: "正在跳转,请稍候...",
- background: "rgba(0, 0, 0, 0.7)",
- });
- const newTab = window.open("", "_blank");
- newTab.location.href =
- "https://yfoa.keruioil.com/wui/index.html" +
- "?ssoToken=" +
- res +
- "#/main";
- setTimeout(function () {
- newTab.location.href = `https://yfoa.keruioil.com/spa/workflow/static4form/index.html?_rdm=1776063595284#/main/workflow/req?requestid=${row.requestId}`;
- setTimeout(() => {
- loading.close();
- }, 500);
- }, 100);
- }
- }
- };
- const openConsult = async () => {
- const res = await ssoLogin({
- username: userStore.getUser.username,
- });
- if (res) {
- const ua = window.navigator.userAgent.toLowerCase();
- if (ua.includes("dingtalk") || ua.includes("dingtalkwork")) {
- dd.biz.util.openLink({
- url:
- "https://yfoa.keruioil.com/wui/index.html" +
- "?ssoToken=" +
- res +
- "#/main", // 先跳你的 SSO 链接
- onSuccess: () => {
- // 延迟跳目标业务地址(和你原来 setTimeout 逻辑一致)
- setTimeout(() => {
- dd.biz.util.openLink({
- url: `https://yfoa.keruioil.com/spa/workflow/static4form/index.html?_rdm=1778289187850#/main/workflow/req?iscreate=1&workflowid=488`,
- });
- }, 100);
- },
- });
- } else {
- const loading = ElLoading.service({
- lock: true,
- text: "正在跳转,请稍候...",
- background: "rgba(0, 0, 0, 0.7)",
- });
- const newTab = window.open("", "_blank");
- newTab.location.href =
- "https://yfoa.keruioil.com/wui/index.html" +
- "?ssoToken=" +
- res +
- "#/main";
- setTimeout(function () {
- newTab.location.href = `https://yfoa.keruioil.com/spa/workflow/static4form/index.html?_rdm=1778289187850#/main/workflow/req?iscreate=1&workflowid=488`;
- setTimeout(() => {
- loading.close();
- }, 500);
- }, 100);
- }
- }
- };
- const goNews = () => {
- router.push("/news");
- };
- onUnmounted(() => {
- if (slideTimer) {
- clearInterval(slideTimer);
- slideTimer = null;
- }
- });
- </script>
- <style scoped>
- .portal-home {
- --portal-text: #17345f;
- --portal-text-muted: #5f6f83;
- --portal-text-soft: #7f8fa6;
- --portal-title: #163867;
- --portal-subtitle: rgba(61, 92, 135, 0.86);
- --portal-line: rgba(126, 156, 201, 0.24);
- --portal-card: rgba(255, 255, 255, 0.82);
- --portal-card-2: rgba(248, 251, 255, 0.94);
- --portal-card-3: rgba(240, 246, 255, 0.88);
- --portal-card-4: rgba(231, 239, 251, 0.92);
- --portal-nav-bg: rgba(255, 255, 255, 0.72);
- --portal-nav-hover: rgba(219, 232, 252, 0.8);
- --portal-input-bg: rgba(255, 255, 255, 0.7);
- --portal-input-hover: rgba(255, 255, 255, 0.92);
- --portal-shadow: 0 18px 40px rgba(23, 52, 95, 0.12);
- --portal-shadow-strong: 0 24px 60px rgba(23, 52, 95, 0.16);
- --portal-accent: #245edb;
- --portal-accent-2: #4e8cff;
- --portal-accent-soft: rgba(36, 94, 219, 0.14);
- --portal-todo-bg: rgba(242, 247, 255, 0.94);
- --portal-todo-hover: rgba(228, 238, 252, 0.95);
- --portal-number-todo: #e15a5a;
- --portal-number-done: #2da04d;
- color: var(--portal-text);
- background:
- radial-gradient(
- circle at 18% 12%,
- rgba(83, 126, 255, 0.14),
- transparent 22%
- ),
- radial-gradient(
- circle at 82% 20%,
- rgba(71, 148, 255, 0.14),
- transparent 20%
- ),
- radial-gradient(
- circle at 50% 100%,
- rgba(97, 142, 247, 0.12),
- transparent 28%
- ),
- linear-gradient(180deg, #eef3f9 0%, #f7faff 46%, #eef3f9 100%);
- background-image:
- /* linear-gradient(rgba(245, 249, 255, 0.82), rgba(237, 244, 253, 0.92)), */
- linear-gradient(rgba(245, 249, 255, 0.9), rgba(218, 233, 251, 0.82)),
- url("../assets//images/bg666.png");
- background-position:
- center center,
- center bottom;
- background-repeat: no-repeat, no-repeat;
- background-size:
- cover,
- 100% auto;
- background-attachment: fixed, fixed;
- }
- :global([data-theme="dark"] .portal-home) {
- --portal-text: #eaf1ff;
- --portal-text-muted: rgba(234, 241, 255, 0.95);
- --portal-text-soft: #8a9ab0;
- --portal-title: #f4f7ff;
- --portal-subtitle: rgba(188, 205, 255, 0.82);
- --portal-line: rgba(97, 129, 206, 0.28);
- --portal-card: rgba(10, 19, 43, 0.8);
- --portal-card-2: rgba(12, 24, 52, 0.92);
- --portal-card-3: rgba(17, 25, 48, 0.8);
- --portal-card-4: rgba(15, 24, 45, 0.82);
- --portal-nav-bg: rgba(10, 19, 43, 0.8);
- --portal-nav-hover: rgba(28, 40, 72, 0.8);
- --portal-input-bg: rgba(255, 255, 255, 0.08);
- --portal-input-hover: rgba(255, 255, 255, 0.12);
- --portal-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
- --portal-shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.38);
- --portal-accent: #6e7dff;
- --portal-accent-2: #8d4dff;
- --portal-accent-soft: rgba(110, 125, 255, 0.16);
- --portal-todo-bg: #070e20;
- --portal-todo-hover: rgba(28, 40, 72, 0.8);
- --portal-number-todo: #f56c6c;
- --portal-number-done: #ffffff;
- color: var(--portal-text);
- background:
- radial-gradient(
- circle at 18% 12%,
- rgba(79, 82, 221, 0.34),
- transparent 22%
- ),
- radial-gradient(circle at 82% 20%, rgba(28, 95, 255, 0.2), transparent 20%),
- radial-gradient(
- circle at 50% 100%,
- rgba(103, 46, 255, 0.16),
- transparent 28%
- ),
- linear-gradient(180deg, #040814 0%, #060d1d 46%, #040814 100%);
- background-image:
- linear-gradient(rgba(5, 11, 26, 0.62), rgba(5, 11, 26, 0.82)),
- url("../assets//images/bg666.png");
- }
- .hero-banner {
- position: relative;
- min-height: 310px;
- border: 1px solid var(--portal-line);
- border-radius: 10px;
- background:
- linear-gradient(135deg, var(--portal-accent-soft), transparent 32%),
- linear-gradient(180deg, var(--portal-card), var(--portal-card-2));
- box-shadow:
- var(--portal-shadow-strong),
- inset 0 1px 0 rgba(255, 255, 255, 0.06);
- overflow: hidden;
- }
- .hero-banner::before {
- content: "";
- position: absolute;
- inset: 0;
- background:
- linear-gradient(120deg, rgba(128, 77, 255, 0.14) 0%, transparent 26%),
- radial-gradient(
- circle at 20% 36%,
- rgba(123, 84, 255, 0.22),
- transparent 22%
- ),
- radial-gradient(
- circle at 74% 52%,
- rgba(54, 170, 255, 0.18),
- transparent 24%
- ),
- linear-gradient(
- 90deg,
- rgba(255, 255, 255, 0.04),
- transparent 40%,
- rgba(255, 255, 255, 0.02)
- );
- pointer-events: none;
- }
- .hero-copy {
- position: relative;
- z-index: 2;
- }
- .hero-script {
- display: none;
- }
- .hero-text {
- margin-top: 0;
- color: var(--portal-text);
- font-size: 46px;
- font-weight: 800;
- line-height: 1.2;
- letter-spacing: 0.02em;
- text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
- max-width: 540px;
- }
- .hero-visual {
- position: absolute;
- inset: 0;
- min-height: 310px;
- }
- .hero-visual::after {
- content: "";
- position: absolute;
- inset: 0;
- background:
- linear-gradient(90deg, rgba(5, 11, 26, 0.18) 0%, transparent 28%),
- linear-gradient(
- 180deg,
- transparent 0%,
- rgba(5, 11, 26, 0.04) 56%,
- rgba(5, 11, 26, 0.18) 100%
- );
- pointer-events: none;
- }
- .carousel-container {
- position: relative;
- height: 310px;
- overflow: hidden;
- }
- .platform-block {
- /* display: flex; */
- overflow: hidden;
- border: 1px solid var(--portal-line);
- border-radius: 8px;
- background: linear-gradient(180deg, var(--portal-card), var(--portal-card-2));
- box-shadow:
- var(--portal-shadow),
- inset 0 1px 0 rgba(255, 255, 255, 0.04);
- }
- .platform-block__header {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- flex: 0 0 190px;
- width: 190px;
- min-width: 190px;
- min-height: 48px;
- padding: 0 20px 0 0px;
- box-sizing: border-box;
- background: linear-gradient(90deg, var(--portal-accent-soft), transparent);
- }
- .platform-block__title-wrap {
- display: flex;
- flex-direction: column;
- align-items: baseline;
- gap: 18px;
- min-width: 0;
- flex: 1;
- }
- .platform-block__title {
- color: var(--portal-title);
- font-size: 15px;
- font-weight: 800;
- min-width: 0;
- flex: 0 1 auto;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- letter-spacing: 0.02em;
- }
- .platform-block__subtitle {
- color: var(--portal-subtitle);
- font-size: 13px;
- font-weight: 500;
- flex: 0 0 auto;
- white-space: nowrap;
- }
- .platform-block__watermark {
- color: rgba(119, 145, 214, 0.24);
- font-size: 42px;
- font-weight: 800;
- line-height: 1;
- letter-spacing: 0.08em;
- }
- .platform-app {
- display: flex;
- width: 100%;
- min-width: 0;
- min-height: 40px;
- align-items: center;
- justify-content: flex-start;
- gap: 6px;
- border: 1px solid var(--portal-line);
- border-radius: 10px;
- padding: 0 8px;
- background: var(--portal-card-3);
- font-size: 14px;
- cursor: pointer;
- transition:
- transform 0.2s ease,
- box-shadow 0.2s ease,
- background 0.2s ease;
- }
- .platform-app:hover {
- transform: translateY(-2px);
- border-color: rgba(133, 163, 255, 0.45);
- box-shadow: 0 10px 26px rgba(34, 54, 110, 0.18);
- }
- .platform-app--active {
- background: linear-gradient(
- 90deg,
- rgba(76, 103, 224, 0.5),
- var(--portal-card)
- );
- color: var(--portal-title);
- border-color: rgba(129, 145, 255, 0.44);
- box-shadow: inset 0 0 0 1px rgba(159, 173, 255, 0.08);
- }
- .platform-app--ghost {
- background: var(--portal-card-4);
- color: var(--portal-text);
- }
- .platform-app__icon {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- flex: 0 0 28px;
- color: var(--portal-accent-2);
- filter: drop-shadow(0 0 8px rgba(90, 122, 255, 0.24));
- }
- .platform-app__label {
- min-width: auto;
- flex: 1;
- white-space: nowrap;
- overflow: visible;
- text-overflow: clip;
- font-size: 13px;
- line-height: 1;
- color: var(--portal-text);
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .platform-block > .grid {
- flex: 1;
- align-content: start;
- }
- .portal-mobile-shortcuts {
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 8px;
- }
- .portal-mobile-shortcut {
- min-width: 0;
- border: 1px solid var(--portal-line);
- border-radius: 12px;
- padding: 10px 8px;
- background: linear-gradient(180deg, var(--portal-card), var(--portal-card-2));
- color: var(--portal-text);
- font-size: 13px;
- font-weight: 600;
- box-shadow: var(--portal-shadow);
- }
- .side-card {
- overflow: hidden;
- border: 1px solid var(--portal-line);
- border-radius: 14px;
- background: linear-gradient(180deg, var(--portal-card), var(--portal-card-2));
- box-shadow:
- var(--portal-shadow),
- inset 0 1px 0 rgba(255, 255, 255, 0.04);
- }
- .side-card--content {
- padding-top: 10px;
- }
- .side-card__header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- min-height: 20px;
- padding-right: 10px;
- /* border-radius: 999px; */
- /* background: rgba(28, 39, 72, 0.86); */
- border-bottom: 1px solid var(--portal-line);
- }
- .notice-badge {
- position: relative;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- height: 25px;
- min-width: 70px;
- color: var(--portal-title);
- font-size: 14px;
- }
- .news.notice-badge {
- position: relative;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- height: 25px;
- min-width: 70px;
- color: var(--portal-title);
- font-size: 14px;
- border-bottom: 2px solid var(--portal-accent);
- }
- .notice-tabs {
- display: inline-flex;
- align-items: center;
- gap: 8px;
- }
- .notice-tab {
- height: 25px;
- min-width: 68px;
- padding: 0 14px;
- border: 0;
- border-radius: 999px;
- background: transparent;
- color: var(--portal-subtitle);
- font-size: 14px;
- cursor: pointer;
- transition:
- background 0.2s ease,
- color 0.2s ease;
- }
- .notice-tab--active {
- position: relative;
- color: var(--portal-title);
- }
- .notice-tab--active::before {
- content: "";
- position: absolute;
- left: 50%;
- bottom: -2px;
- width: 90%;
- height: 2px;
- transform: translateX(-50%);
- border-radius: 999px;
- background: linear-gradient(
- to right,
- #5f3abf 0%,
- #7044c5 30%,
- #7044c5 40%,
- rgba(255, 255, 255, 0.7) 50%,
- #7044c5 60%,
- #7044c5 70%,
- #5f3abf 100%
- );
- box-shadow: 0 0 12px rgba(112, 120, 255, 0.95);
- }
- .notice-badge::after {
- content: "";
- position: absolute;
- top: 0;
- right: -15px;
- }
- .side-card__more {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- border: 0;
- background: transparent;
- color: var(--portal-subtitle);
- cursor: pointer;
- font-size: 12px;
- }
- .notice-item {
- /* background: rgba(14, 22, 42, 0.88); */
- padding: 8px 14px;
- box-shadow: 0 10px 22px rgba(23, 52, 95, 0.08);
- border-radius: 12px;
- }
- .notice-item:hover {
- box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
- transition: all 0.2s ease;
- transform: translateY(-1px);
- }
- .notice-item__title,
- .notice-item__desc {
- color: var(--portal-text);
- font-size: 13px;
- line-height: 1.5;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- }
- .panel-title {
- padding: 0 16px;
- color: var(--portal-title);
- font-size: 15px;
- font-weight: 700;
- }
- .todo-item {
- border: 1px solid var(--portal-line);
- background: var(--portal-card-4);
- padding: 8px 14px;
- box-shadow: 0 10px 22px rgba(23, 52, 95, 0.08);
- }
- .todo-item__tag {
- display: inline-flex;
- align-items: center;
- border-radius: 999px;
- padding: 2px 8px;
- font-size: 11px;
- white-space: nowrap;
- }
- .news-mini {
- display: flex;
- align-items: center;
- gap: 12px;
- border: 1px solid var(--portal-line);
- background: var(--portal-card-4);
- padding: 5px 12px;
- box-shadow: 0 10px 22px rgba(23, 52, 95, 0.08);
- border-radius: 12px;
- }
- .news-mini:hover {
- box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
- transition: all 0.2s ease;
- transform: translateY(-1px);
- }
- .placeholder-panel {
- display: flex;
- height: 100%;
- padding: 16px;
- justify-content: start;
- color: var(--portal-title);
- font-size: 16px;
- font-weight: 600;
- letter-spacing: 0.08em;
- }
- @media (max-width: 1279px) {
- .hero-text {
- font-size: 34px;
- max-width: 420px;
- }
- .hero-visual {
- min-height: 260px;
- }
- }
- @media (max-width: 767px) {
- .platform-block {
- display: block;
- }
- .platform-block__header {
- width: 100%;
- min-width: 0;
- padding: 0 16px 0 18px;
- flex: none;
- justify-content: flex-start;
- }
- .platform-block__title-wrap {
- gap: 12px;
- flex-wrap: wrap;
- }
- .platform-block__title {
- font-size: 16px;
- }
- .platform-block__subtitle {
- font-size: 12px;
- }
- .platform-block__watermark {
- font-size: 34px;
- }
- .hero-banner {
- min-height: 240px;
- }
- .carousel-container {
- height: 240px;
- }
- .carousel-caption {
- left: 22px;
- right: 22px;
- top: 50%;
- transform: translateY(-50%);
- }
- .hero-text {
- font-size: 24px;
- max-width: 100%;
- }
- }
- .carousel-indicators {
- display: flex;
- gap: 10px;
- z-index: 30;
- }
- .carousel-indicators span {
- width: 36px;
- height: 4px;
- border-radius: 999px;
- cursor: pointer;
- transition: all 0.25s ease;
- box-shadow: 0 0 16px rgba(112, 103, 255, 0.35);
- }
- .carousel-slide {
- position: absolute;
- inset: 0;
- width: 100%;
- height: 100%;
- }
- .hero-visual img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- display: block;
- filter: saturate(1.12) contrast(1.06);
- }
- .carousel-caption {
- position: absolute;
- left: 80px;
- top: 44%;
- z-index: 2;
- transform: translateY(-50%);
- text-align: left;
- }
- .carousel-container::before {
- content: "";
- position: absolute;
- inset: auto 0 0;
- height: 120px;
- background: linear-gradient(180deg, transparent, rgba(5, 11, 26, 0.2));
- z-index: 1;
- pointer-events: none;
- }
- :deep(.portal-home .el-dialog) {
- border-radius: 16px;
- }
- .top-nav-bar {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 5px 24px;
- background: var(--portal-nav-bg);
- backdrop-filter: blur(10px);
- -webkit-backdrop-filter: blur(10px);
- border: 1px solid var(--portal-line);
- border-radius: 8px;
- margin-bottom: 10px;
- box-shadow: var(--portal-shadow);
- }
- .nav-title {
- color: var(--portal-title);
- font-size: 14px;
- font-weight: 600;
- letter-spacing: 0.08em;
- }
- .search-container {
- display: flex;
- align-items: center;
- gap: 8px;
- position: relative;
- width: 320px;
- height: 36px;
- border-radius: 20px;
- background: var(--portal-input-bg);
- border: 1px solid var(--portal-line);
- overflow: hidden;
- transition: all 0.2s ease;
- }
- .search-container:hover {
- background: var(--portal-input-hover);
- border-color: rgba(109, 137, 213, 0.4);
- }
- .search-icon {
- flex-shrink: 0;
- font-size: 18px;
- color: var(--portal-text-soft);
- margin-left: 12px;
- }
- .search-input {
- flex: 1;
- border: none;
- background: transparent;
- outline: none;
- font-size: 14px;
- color: var(--portal-text);
- padding: 0;
- margin: 0;
- }
- .shortcut-key {
- position: absolute;
- right: 12px;
- top: 50%;
- transform: translateY(-50%);
- font-size: 12px;
- color: var(--portal-text-soft);
- font-family: "Courier New", monospace;
- }
- .quick-access {
- display: flex;
- gap: 16px;
- }
- .quick-btn {
- display: flex;
- align-items: center;
- gap: 8px;
- padding: 8px 12px;
- /* border: 1px solid rgba(109, 137, 213, 0.16); */
- border-radius: 12px;
- /* background: rgba(17, 25, 48, 0.8); */
- color: var(--portal-text);
- font-size: 13px;
- cursor: pointer;
- transition:
- background 0.2s ease,
- border-color 0.2s ease,
- transform 0.2s ease;
- }
- .quick-btn--dropdown {
- border: none;
- background: transparent;
- outline: none;
- }
- .quick-btn--dropdown:focus-visible {
- outline: none;
- }
- .quick-btn:hover {
- background: var(--portal-nav-hover);
- border-color: rgba(109, 137, 213, 0.4);
- transform: translateY(-1px);
- }
- .btn-icon {
- font-size: 16px;
- color: var(--portal-accent-2);
- }
- .btn-label {
- white-space: nowrap;
- }
- .quick-btn__arrow {
- font-size: 16px;
- color: var(--portal-text-soft);
- }
- .quick-btn__meta {
- color: var(--portal-text-soft);
- }
- .quick-btn__count {
- font-weight: 700;
- }
- .quick-btn__count--todo {
- color: var(--portal-number-todo);
- }
- .quick-btn__count--done {
- color: var(--portal-number-done);
- }
- .aside-btn {
- color: var(--portal-text-soft);
- }
- .badge {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- width: 18px;
- height: 18px;
- border-radius: 50%;
- background: #f56c6c;
- color: white;
- font-size: 10px;
- font-weight: 600;
- }
- .quick-todo-bar {
- display: flex;
- gap: 16px;
- padding: 8px 16px;
- background: var(--portal-todo-bg);
- backdrop-filter: blur(10px);
- border: 1px solid var(--portal-line);
- -webkit-backdrop-filter: blur(10px);
- border-radius: 8px;
- box-shadow: var(--portal-shadow);
- /* margin-bottom: 16px; */
- }
- .quick-todo-btn {
- display: flex;
- flex: 1;
- flex-direction: column;
- align-items: flex-start;
- justify-content: center;
- gap: 8px;
- border: none;
- background: transparent;
- padding: 0;
- color: inherit;
- cursor: pointer;
- outline: none;
- }
- .quick-todo-btn--center {
- align-items: center;
- }
- .quick-todo-btn:hover {
- transform: translateY(-1px);
- }
- .todo-item {
- display: flex;
- align-items: center;
- gap: 8px;
- flex: 1;
- padding: 8px 12px;
- border-radius: 8px;
- transition: all 0.2s ease;
- cursor: pointer;
- }
- .todo-item:hover {
- background: var(--portal-todo-hover);
- transform: translateY(-1px);
- border-color: rgba(109, 137, 213, 0.2);
- }
- .number {
- font-size: 18px;
- font-weight: 700;
- color: var(--portal-number-todo);
- min-width: 24px;
- text-align: center;
- }
- .label {
- font-size: 12px;
- color: var(--portal-text);
- white-space: nowrap;
- }
- .icon {
- font-size: 14px;
- color: var(--portal-accent-2);
- }
- :global(.quick-access-dropdown) {
- padding: 0 !important;
- border: 1px solid var(--portal-line) !important;
- border-radius: 10px !important;
- background: var(--dropdown-menu) !important;
- box-shadow: var(--portal-shadow) !important;
- overflow: hidden !important;
- }
- :global(.quick-access-dropdown .el-dropdown-menu) {
- padding: 0px !important;
- border: none !important;
- background: var(--dropdown-menu) !important;
- }
- :global(.quick-access-dropdown .el-dropdown-menu__item) {
- padding: 0px !important;
- padding-left: 10px !important;
- padding-right: 10px !important;
- margin: 0 !important;
- border: none !important;
- background: var(--dropdown-menu) !important;
- }
- /* :global(.quick-access-dropdown .el-dropdown-menu__item):hover {
- background: var(--dropdown-menu-hover) !important;
- } */
- :global(.quick-access-dropdown .el-popper__arrow::before) {
- background: var(--dropdown-menu) !important;
- border-color: var(--portal-line) !important;
- }
- :deep(.el-dropdown-menu__item):hover {
- background: var(--dropdown-menu-hover) !important;
- color: #fff !important;
- }
- </style>
|