Home.vue 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446
  1. <template>
  2. <div id="containercon">
  3. <el-aside :width="isCollapse ? '70px' : '200px'" v-if="isHaveAside">
  4. <div id="main_left">
  5. <div class="logo_cont">
  6. <!-- 正常logo尺寸 -->
  7. <img class="logo" v-if="!isCollapse" :src="logoLarge" />
  8. <!-- 折叠侧边栏logo尺寸 -->
  9. <img class="logo_coll" v-else :src="$setting.g_mini_logo" />
  10. </div>
  11. <div
  12. style="overflow-y: auto; height: 90%; overflow-x: hidden"
  13. class="asider-cont"
  14. >
  15. <aside class="menu-expanded">
  16. <!--导航菜单-->
  17. <el-menu
  18. :background-color="$setting.menu_bg"
  19. text-color="#333"
  20. :collapse-transition="false"
  21. :active-text-color="$setting.theme_color"
  22. :default-active="$route.path.replace('/', '')"
  23. :collapse="isCollapse"
  24. unique-opened
  25. router
  26. class="el-menu-vertical-demo"
  27. @select="handleselect"
  28. ref="expandmenu"
  29. >
  30. <template v-for="(item, index) in navlists">
  31. <el-menu-item
  32. :index="item.path"
  33. :key="item.MenuId"
  34. :style="!isCollapse ? 'text-align:left' : ''"
  35. v-if="!item.children || item.children.length === 0"
  36. >
  37. <a
  38. :href="`/${item.path}`"
  39. class="el-level-path"
  40. :style="`display: block;color:${
  41. item.path === activePath
  42. ? $setting.theme_color
  43. : '#666'
  44. }`"
  45. @click="handleClickSubMenuItem(item, $event)"
  46. >
  47. <img
  48. :src="getMenuIcon(item)"
  49. alt=""
  50. style="width: 24px; height: 24px"
  51. />
  52. <span class="titleLetter" v-show="isCollapse">{{
  53. isCollapse ? MenuLetterMap[item.name] || "" : ""
  54. }}</span>
  55. <span
  56. style="
  57. display: inline-block;
  58. width: 96px;
  59. text-align: left;
  60. font-size: 15px;
  61. margin-left: 20px;
  62. "
  63. >{{
  64. $i18nt.locale === "zh" ? item.name : item.name_en
  65. }}</span
  66. >
  67. </a>
  68. </el-menu-item>
  69. <el-submenu v-else :index="item.MenuId" :key="item.MenuId">
  70. <template slot="title">
  71. <img
  72. :src="getMenuIcon(item)"
  73. alt=""
  74. style="width: 24px; height: 24px"
  75. />
  76. <span class="titleLetter" v-show="isCollapse">{{
  77. isCollapse ? MenuLetterMap[item.name] || "" : ""
  78. }}</span>
  79. <span
  80. style="
  81. display: inline-block;
  82. width: 96px;
  83. text-align: left;
  84. font-size: 15px;
  85. margin-left: 20px;
  86. "
  87. >{{
  88. $i18nt.locale === "zh" ? item.name : item.name_en
  89. }}</span
  90. >
  91. </template>
  92. <template v-for="second in item.children">
  93. <el-menu-item
  94. :index="second.path"
  95. :key="second.MenuId"
  96. v-if="!second.children || second.children.length === 0"
  97. >
  98. <a
  99. :href="`/${second.path}`"
  100. :style="`display: flex;align-items:center;color:${
  101. second.path === activePath
  102. ? $setting.theme_color
  103. : '#666'
  104. }`"
  105. @click="handleClickSubMenuItem(second, $event)"
  106. >
  107. <svg
  108. t="1689672247666"
  109. class="icon"
  110. viewBox="0 0 1024 1024"
  111. version="1.1"
  112. xmlns="http://www.w3.org/2000/svg"
  113. p-id="7676"
  114. width="30"
  115. height="30"
  116. >
  117. <path
  118. d="M640 499.2v25.6a21.333333 21.333333 0 0 1-21.333333 21.333333h-213.333334a21.333333 21.333333 0 0 1-21.333333-21.333333v-25.6a21.333333 21.333333 0 0 1 21.333333-21.333333h213.333334a21.333333 21.333333 0 0 1 21.333333 21.333333z"
  119. p-id="7677"
  120. :fill="
  121. second.path === activePath
  122. ? $setting.theme_color
  123. : '#666'
  124. "
  125. ></path>
  126. </svg>
  127. <span style="margin-left: 15px"
  128. >{{
  129. $i18nt.locale === "zh"
  130. ? second.name
  131. : second.name_en
  132. }}</span
  133. >
  134. </a>
  135. </el-menu-item>
  136. <el-submenu v-else :index="second.MenuId" :key="second.MenuId">
  137. <template slot="title">
  138. <span style="margin-left:-20px">
  139. <svg
  140. t="1689672247666"
  141. class="icon"
  142. viewBox="0 0 1024 1024"
  143. version="1.1"
  144. xmlns="http://www.w3.org/2000/svg"
  145. p-id="7676"
  146. width="30"
  147. height="30"
  148. >
  149. <path
  150. d="M640 499.2v25.6a21.333333 21.333333 0 0 1-21.333333 21.333333h-213.333334a21.333333 21.333333 0 0 1-21.333333-21.333333v-25.6a21.333333 21.333333 0 0 1 21.333333-21.333333h213.333334a21.333333 21.333333 0 0 1 21.333333 21.333333z"
  151. p-id="7677"
  152. :fill="
  153. second.path === activePath
  154. ? $setting.theme_color
  155. : '#666'
  156. "
  157. ></path>
  158. </svg>
  159. <span style="margin-left: 10px">{{
  160. $i18nt.locale === "zh"
  161. ? second.name
  162. : second.name_en
  163. }}</span>
  164. </span>
  165. </template>
  166. <el-menu-item
  167. :index="third.path"
  168. :key="third.MenuId"
  169. v-for="third in second.children"
  170. >
  171. <span
  172. style="
  173. display: inline-block;
  174. width: 96px;
  175. text-align: left;
  176. font-size: 15px;
  177. margin-left:40px
  178. "
  179. >{{
  180. $i18nt.locale === "zh" ? third.name : third.name_en
  181. }}</span
  182. >
  183. </el-menu-item>
  184. </el-submenu>
  185. </template>
  186. </el-submenu>
  187. </template>
  188. </el-menu>
  189. </aside>
  190. </div>
  191. </div>
  192. </el-aside>
  193. <el-container>
  194. <div id="main_right">
  195. <div class="main_right_top">
  196. <div class="main_left_container">
  197. <div class="main_left_section" v-if="isHaveAside">
  198. <!-- 折叠按钮 -->
  199. <div class="coll_btn" @click="collapseHandle">
  200. <i class="el-icon-s-unfold coll_ico" v-if="isCollapse"></i>
  201. <i class="el-icon-s-fold coll_ico" v-else></i>
  202. </div>
  203. <!-- 面包屑 -->
  204. <el-breadcrumb separator="/" class="breadcrumb-inner">
  205. <template v-if="$route.path !== '/edbHistory'">
  206. <el-breadcrumb-item
  207. v-for="item in $route.matched"
  208. :key="item.path"
  209. >
  210. <span
  211. v-if="item.meta.pathFrom"
  212. @click.stop="handleClickBread(item)"
  213. :style="`cursor: pointer; color: ${$setting.theme_color}`"
  214. >
  215. {{
  216. $i18nt.locale === "zh"
  217. ? item.meta.pathName
  218. : item.meta.pathName_en
  219. }}
  220. </span>
  221. <span
  222. v-if="item.meta.pathFrom"
  223. style="
  224. margin: 0 9px;
  225. font-weight: 700;
  226. color: #c0c4cc;
  227. font-size: 16px;
  228. "
  229. >/</span
  230. >
  231. <span
  232. v-if="item.parent"
  233. :style="`cursor: pointer; color: ${$setting.theme_color}`"
  234. @click.stop="routeClick(item)"
  235. >
  236. <template
  237. v-if="$route.path === '/positionAnalysisDetail'"
  238. >
  239. <!-- {{breadSelfName||'持仓详情'}} -->
  240. {{
  241. $i18nt.locale === "zh"
  242. ? "持仓详情"
  243. : "Position Analysis"
  244. }}
  245. </template>
  246. <template v-else>
  247. {{
  248. $i18nt.locale === "zh" ? item.name : item.meta.name_en
  249. }}
  250. </template>
  251. </span>
  252. <span v-else>{{
  253. $i18nt.locale === "zh" ? item.name : item.meta.name_en
  254. }}</span>
  255. </el-breadcrumb-item>
  256. </template>
  257. <template v-else>
  258. <el-breadcrumb-item
  259. v-for="(item, index) in edbHistoryPath"
  260. :key="item.path"
  261. >
  262. <span v-if="index === 0">{{ item.name }}</span>
  263. <span v-else>
  264. <span
  265. @click.stop="$router.push(item.path)"
  266. :style="`cursor: pointer; color: ${$setting.theme_color}`"
  267. >
  268. {{ $i18nt.locale === "zh" ? item.name : item.name_en }}
  269. </span>
  270. </span>
  271. </el-breadcrumb-item>
  272. </template>
  273. </el-breadcrumb>
  274. </div>
  275. <img
  276. src="~@/assets/img/home/logo_white.png"
  277. alt=""
  278. class="left_section_logo"
  279. v-else
  280. />
  281. </div>
  282. <div class="right_section">
  283. <div style="display:flex;align-items:center;gap:0 5px" @click="handleGoSJJD">
  284. <img style="width:24px" src="~@/assets/img/icons/home_sjjd.png" alt="">
  285. <span>数据节点</span>
  286. </div>
  287. <div class="userinfo">
  288. <div class="userinfo-fingerpost">
  289. <!-- <el-button
  290. @click="linkToOtherMS(item)"
  291. v-for="item in linkSystems"
  292. :key="item.path"
  293. type="text"
  294. style="margin-right: 18px;color:#333;padding:12px;"
  295. >
  296. <img :src="item.icon" v-if="item.icon" width="20" height="20" style="vertical-align: middle;">
  297. {{item.name}}
  298. </el-button> -->
  299. <el-dropdown
  300. trigger="click"
  301. style="width: 140px"
  302. v-if="isUpdateLogShow || isHelpDocShow"
  303. >
  304. <span
  305. class="el-dropdown-link userinfo-inner help-center-inner"
  306. >
  307. <svg
  308. width="20"
  309. height="20"
  310. viewBox="0 0 20 20"
  311. fill="none"
  312. xmlns="http://www.w3.org/2000/svg"
  313. style="color: #333"
  314. >
  315. <path
  316. d="M9.24255 14.5C9.24255 14.0858 9.57834 13.75 9.99255 13.75C10.4068 13.75 10.7426 14.0858 10.7426 14.5C10.7426 14.9142 10.4068 15.25 9.99255 15.25C9.57834 15.25 9.24255 14.9142 9.24255 14.5Z"
  317. fill="currentColor"
  318. />
  319. <path
  320. d="M9.99261 5.00763C8.32056 5.00763 6.96136 6.36682 6.96136 8.03888H8.21136C8.21136 7.05718 9.01092 6.25763 9.99261 6.25763C10.9743 6.25763 11.7739 7.05718 11.7739 8.03888C11.7739 8.71106 11.2183 9.3851 10.4931 9.67971L10.4899 9.68101C9.82793 9.95419 9.36767 10.6052 9.36767 11.3656V12.5H10.6177V11.3656C10.6177 11.1228 10.7618 10.9216 10.9655 10.837C11.9996 10.4161 13.0239 9.37337 13.0239 8.03888C13.0239 6.36682 11.6647 5.00763 9.99261 5.00763Z"
  321. fill="currentColor"
  322. />
  323. <path
  324. d="M18.7427 10C18.7427 5.16751 14.8252 1.25 9.99268 1.25C5.16019 1.25 1.24268 5.16751 1.24268 10C1.24267 14.8325 5.16018 18.75 9.99267 18.75C14.8252 18.75 18.7427 14.8325 18.7427 10ZM17.4927 10C17.4927 14.1421 14.1348 17.5 9.99267 17.5C5.85054 17.5 2.49267 14.1421 2.49268 10C2.49268 5.85786 5.85054 2.5 9.99268 2.5C14.1348 2.5 17.4927 5.85787 17.4927 10Z"
  325. fill="currentColor"
  326. />
  327. </svg>
  328. <span style="line-height: 20px; margin-left: 4px"
  329. ><!-- 帮助中心 -->{{ $t("MainPage.help_center") }}</span
  330. >
  331. <i class="el-icon-arrow-down el-icon--right" />
  332. </span>
  333. <el-dropdown-menu slot="dropdown">
  334. <el-dropdown-item
  335. divided
  336. @click.native="toDoc"
  337. v-if="isUpdateLogShow"
  338. ><!-- 更新日志 -->{{
  339. $t("MainPage.tab_help_update")
  340. }}</el-dropdown-item
  341. >
  342. <el-dropdown-item
  343. divided
  344. @click.native="toOperation"
  345. v-if="isHelpDocShow"
  346. ><!-- 帮助文档 -->{{
  347. $t("MainPage.tab_help_docs")
  348. }}</el-dropdown-item
  349. >
  350. </el-dropdown-menu>
  351. </el-dropdown>
  352. <div class="userinfo-fingerpost">
  353. <img
  354. src="~@/assets/img/questionnaire.png"
  355. v-if="isQuestionShow"
  356. @click="showQuestionDia = true"
  357. style="width: 84px; height: 24; cursor: pointer"
  358. />
  359. </div>
  360. <!-- <div class="lang-content" @click="langChangeHandler">
  361. {{ $i18n.locale == "zh" ? "English" : "中文" }}
  362. </div> -->
  363. </div>
  364. <!-- 消息通知 -->
  365. <notification-msg ref="notification" />
  366. <el-dropdown trigger="click" style="width: 130px">
  367. <span class="el-dropdown-link userinfo-inner">
  368. <img src="~@/assets/img/home/avatar.png" />
  369. {{ sysUserName }}
  370. <i class="el-icon-arrow-down el-icon--right" />
  371. </span>
  372. <el-dropdown-menu slot="dropdown">
  373. <el-dropdown-item divided @click.native="resetpwd"
  374. ><!-- 修改密码 -->{{
  375. $t("MainPage.tab_reset_pwd")
  376. }}</el-dropdown-item
  377. >
  378. <el-dropdown-item divided @click.native="logout"
  379. ><!-- 退出登录 -->{{
  380. $t("MainPage.tab_log_out")
  381. }}</el-dropdown-item
  382. >
  383. <!-- <el-dropdown-item divided @click.native="toDoc"
  384. >更新日志</el-dropdown-item
  385. > -->
  386. </el-dropdown-menu>
  387. </el-dropdown>
  388. </div>
  389. </div>
  390. </div>
  391. <section class="content-container" id="displayMain" ref="displayMain">
  392. <el-row
  393. class="grid-content bg-purple-light contentc"
  394. style="min-width: 1000px"
  395. >
  396. <el-col :span="24" class="content-wrapper">
  397. <transition name="fade" mode="out-in">
  398. <router-view :key="$route.fullPath"></router-view>
  399. </transition>
  400. </el-col>
  401. </el-row>
  402. </section>
  403. </div>
  404. </el-container>
  405. <!-- //重置初始密码 -->
  406. <pwd-dlg :dialogVisiblePwd="dialogVisiblePwd" />
  407. <!-- 问卷调查弹窗 -->
  408. <questionnaire-dia
  409. :dialogVisiblePwd.sync="showQuestionDia"
  410. @submitSuccess="questionSubmitSuccess"
  411. :questionList="questionList"
  412. ></questionnaire-dia>
  413. </div>
  414. </template>
  415. <script>
  416. import {
  417. checkPwd,
  418. departInterence,
  419. customInterence,
  420. roadshowInterence,
  421. getBusinessCode,
  422. homeInterface,
  423. userLogOut
  424. } from "api/api.js";
  425. import { getPublicSettingsApi } from '@/api/modules/oldApi';
  426. import PwdDlg from "@/components/pwdDlg.vue";
  427. import questionMsgDia from "@/components/questionMsgDia.vue";
  428. import questionnaireDia from "../components/questionnaireDia.vue";
  429. import EventBus from "@/api/bus.js";
  430. import storage from '@/utils/storage'
  431. import { recordActiveLoginFun, loginEndCalc } from "@/utils/TimeOnPage.js"
  432. import NotificationMsg from "../components/notificationMsg.vue";
  433. export default {
  434. components: {
  435. PwdDlg,
  436. questionMsgDia,
  437. questionnaireDia,
  438. NotificationMsg
  439. },
  440. inject: ["reload"],
  441. filters: {
  442. formatDate(e) {
  443. return e.replace(/-/g, ".");
  444. },
  445. },
  446. watch: {
  447. "$route.path"(newval) {
  448. console.log(newval);
  449. if (this.$route.meta.pathFrom) {
  450. this.activePath = this.$route.meta.pathFrom;
  451. } else {
  452. this.activePath = newval.replace("/", "");
  453. }
  454. this.sysUserName = localStorage.getItem("userName") || "";
  455. this.Role = localStorage.getItem("Role") || "";
  456. this.RoleType = localStorage.getItem("RoleType") || "";
  457. },
  458. },
  459. computed: {
  460. edbHistoryPath() {
  461. return JSON.parse(sessionStorage.getItem('edbHistoryPath')) || []
  462. },
  463. breadSelfName() {
  464. return this.$store.state.breadSelfName;
  465. },
  466. isShowRole() {
  467. let role = localStorage.getItem("RoleIdentity") || "";
  468. return (
  469. role == "rai_group" ||
  470. role == "ficc_group" ||
  471. role == "rai_admin" ||
  472. role == "ficc_admin" ||
  473. role == "rai_seller" ||
  474. role == "ficc_seller" ||
  475. role == "admin"
  476. );
  477. },
  478. /* layout2 不展示侧边 */
  479. isHaveAside() {
  480. return this.$route.path !== "/mychartdetail";
  481. },
  482. //帮助文档是否展示
  483. isHelpDocShow() {
  484. return this.permissionBtn.checkPermissionBtn(
  485. this.permissionBtn.baseConfigPermission.sysJump_helpDoc
  486. )
  487. },
  488. //更新日志是否展示
  489. isUpdateLogShow() {
  490. return this.permissionBtn.checkPermissionBtn(
  491. this.permissionBtn.baseConfigPermission.sysJump_updateLog
  492. )
  493. },
  494. // 是否是eta试用
  495. isTrail() {
  496. return this.$store.state.hasTrialUserPermisson
  497. },
  498. logoLarge() {
  499. return this.$store.state.baseInfo.logoCh || this.$setting.g_logo
  500. }
  501. },
  502. data() {
  503. return {
  504. showTodayRemark: {
  505. CompanyId: 0,
  506. ProductId: 0,
  507. remark: "",
  508. toDoRemark: "",
  509. show: false,
  510. index: 0,
  511. new: false, //是否为新增
  512. isGiveUp: false, //是否不继续跟进
  513. }, //显示填写待办备注弹窗
  514. isCollapse: false, //侧边栏折叠
  515. breadcrumbFixed: false, //吸顶盒固定
  516. Role: "", //角色名称
  517. RoleType: "", //角色类型
  518. sysUserName: "", //登录系统用户名
  519. sysUserAvatar: "", //登录系统用户头像
  520. form: {
  521. name: "",
  522. region: "",
  523. date1: "",
  524. date2: "",
  525. delivery: false,
  526. type: [],
  527. resource: "",
  528. desc: "",
  529. },
  530. navlists: [],
  531. activePath: "",
  532. noticeList: [], //消息提醒列表
  533. isShowNotice: false, //显示提示红点
  534. currentNoticeList: [], //当前显示的消息提醒列表
  535. noticeType: "客户", //消息类型 客户/合同/用印
  536. noticeCount: 0, //总共多少消息
  537. flag1: false, //显示客户提示红点
  538. flag2: false, //显示合同提示红点
  539. flag3: false, //显示用印提示红点
  540. dialogVisiblePwd: false, //初始密码的弹框
  541. // ----------------问卷调查弹窗
  542. showQuestionDia: false,
  543. // 问卷调查icon是否展示
  544. isQuestionShow: false,
  545. // 问题列表
  546. questionList: [],
  547. flag4: false,
  548. flag5: false, //显示ETA试用相关的红点
  549. flag6: false, //显示出差相关的红点
  550. /* 路演反馈*/
  551. isFeedbackDialog: false,
  552. roadshowFeedbackList: [],
  553. isShowApprovalNotice: false, // 是否显示用印审批的公告
  554. //新的icon
  555. MenuLetterMap: {
  556. 销售管理: "Sale",
  557. 客户管理: "Clnt",
  558. 路演管理: "RShow",
  559. 出差管理: "Trip",
  560. 研报管理: "Rpt",
  561. 语义分析: "Nlp",
  562. 表格: "Tbl",
  563. 指标库: "Inx",
  564. 相关性: "Co-R",
  565. 预测指标: "FInx",
  566. 图库: "Gra",
  567. /* 151:'FData', */
  568. 供应分析: "Sup",
  569. 商品价格曲线: "Crv",
  570. },
  571. //链接系统
  572. linkSystems: this.$setting.linkSystems,
  573. bus_code: "",
  574. };
  575. },
  576. created() {
  577. //this.isInitialPwd(); //判断是否为初始密码
  578. this.Role = localStorage.getItem("Role") || "";
  579. this.RoleType = localStorage.getItem("RoleType") || "";
  580. this.sysUserName = localStorage.getItem("userName") || "";
  581. this.sysUserAvatar = "../assets/img/userLogo.png";
  582. if (this.$route.path === "/sealApprovalList") {
  583. this.isShowApprovalNotice = true;
  584. }
  585. this.resetLinkSys()
  586. this.getBusinessCodeFun()
  587. this.getQuestionStaus()
  588. this.getSystemInfo();//获取配置信息
  589. },
  590. mounted() {
  591. if (sessionStorage.getItem("hasGetMenu")) {
  592. this.navlists = JSON.parse(sessionStorage.getItem("MenuList"));
  593. sessionStorage.removeItem("hasGetMenu");
  594. } else {
  595. this.getMenuList();
  596. }
  597. this.getPublicSettings();
  598. this.$refs.notification && this.$refs.notification.getMsgList()
  599. },
  600. methods: {
  601. getMenuIcon(item) {
  602. const iconMap = new Map([
  603. ['首页', require('@/assets/icons/menu/icon01.png')],
  604. ['数据分析', require('@/assets/icons/menu/icon02.png')],
  605. ['模型应用', require('@/assets/icons/menu/icon03.png')],
  606. ['图表工具', require('@/assets/icons/menu/icon04.png')],
  607. ['知识资源', require('@/assets/icons/menu/icon05.png')],
  608. ['语义分析', require('@/assets/icons/menu/icon06.png')],
  609. ['BI看板', require('@/assets/icons/menu/icon07.png')],
  610. ['研报管理', require('@/assets/icons/menu/icon08.png')],
  611. ['任务管理', require('@/assets/icons/menu/icon09.png')],
  612. ['AI问答', require('@/assets/icons/menu/icon11.png')],
  613. ['系统设置', require('@/assets/icons/menu/icon10.png')],
  614. ])
  615. return iconMap.get(item.name) || require('@/assets/icons/menu/icon01.png')
  616. },
  617. // 跳转数据节点
  618. handleGoSJJD(){
  619. window.open('https://www.baidu.com', '_blank')
  620. },
  621. handleClickSubMenuItem(item, e) {
  622. e.preventDefault();
  623. if (item.path === 'AIQA') {
  624. e.stopPropagation();
  625. let { href } = this.$router.resolve({
  626. path: '/' + item.path
  627. });
  628. window.open(href, '_blank')
  629. }
  630. },
  631. // 获取商家Code
  632. getBusinessCodeFun() {
  633. getBusinessCode().then(res => {
  634. if (res.Ret !== 200) return
  635. this.bus_code = res.Data || ''
  636. this.$setting.bus_code = this.bus_code
  637. })
  638. },
  639. //判断是否为初始密码
  640. async isInitialPwd() {
  641. const res = await checkPwd();
  642. if (res.Ret === 200) {
  643. this.dialogVisiblePwd = res.Data;
  644. }
  645. },
  646. // 点击导航 打开今日待办
  647. // handleShowSallerTodayList() {
  648. // this.getSellerTodayList("click");
  649. // },
  650. // 点击完成 批量提交备注
  651. handleTodayFinished() {
  652. let arr = this.todayList.map((item) => {
  653. return customInterence.sellerTodayListRemark({
  654. CompanyId: item.CompanyId,
  655. ProductId: item.ProductId,
  656. Remark: item.RenewalReason,
  657. Renew: item.isGiveUp ? 1 : 0,
  658. RenewalTodo: item.RenewalTodo,
  659. });
  660. });
  661. Promise.all(arr)
  662. .then((res) => {
  663. this.show = false;
  664. this.getSellerFeedBackList();
  665. })
  666. .catch((error) => {
  667. this.$message.waring("部分提交失败请重试");
  668. this.getSellerTodayList();
  669. });
  670. },
  671. //提交备注
  672. async handleSubmitTodayRemark() {
  673. if (!this.showTodayRemark.remark && !this.showTodayRemark.isGiveUp) {
  674. this.$message.warning("请填写最新情况");
  675. return;
  676. }
  677. if (!this.showTodayRemark.toDoRemark && !this.showTodayRemark.isGiveUp) {
  678. this.$message.warning("请填写To Do事项");
  679. return;
  680. }
  681. // 如果选中不再跟进,需要在备注中添加额外内容
  682. const addRemark = this.showTodayRemark.isGiveUp
  683. ? this.showTodayRemark.remark
  684. ? "。客户无续约意向,不再跟进(转为冻结客户)"
  685. : "客户无续约意向,不再跟进(转为冻结客户)"
  686. : "";
  687. // 自动开大的点击完成时批量更新
  688. if (this.todayListOpen === "auto") {
  689. this.todayList[this.showTodayRemark.index].RenewalReason =
  690. this.showTodayRemark.remark + addRemark;
  691. this.todayList[this.showTodayRemark.index].RenewalTodo =
  692. this.showTodayRemark.toDoRemark;
  693. this.todayList[this.showTodayRemark.index].isGiveUp =
  694. this.showTodayRemark.isGiveUp;
  695. this.$set(this.todayList[this.showTodayRemark.index], "isEdited", true);
  696. this.handleTodayRemarkClose();
  697. } else {
  698. const res = await customInterence.sellerTodayListRemark({
  699. CompanyId: this.showTodayRemark.CompanyId,
  700. ProductId: this.showTodayRemark.ProductId,
  701. Remark: this.showTodayRemark.remark + addRemark,
  702. Renew: this.showTodayRemark.isGiveUp ? 1 : 0,
  703. RenewalTodo: this.showTodayRemark.toDoRemark,
  704. });
  705. if (res.Ret === 200) {
  706. this.todayList[this.showTodayRemark.index].RenewalReason =
  707. this.showTodayRemark.remark;
  708. this.todayList[this.showTodayRemark.index].RenewalTodo =
  709. this.showTodayRemark.toDoRemark;
  710. this.handleTodayRemarkClose();
  711. this.getSellerTodayList();
  712. }
  713. }
  714. },
  715. handleTodayRemarkClose() {
  716. this.showTodayRemark = {
  717. remark: "",
  718. toDoRemark: "",
  719. show: false,
  720. index: 0,
  721. new: false,
  722. ProductId: 0,
  723. CompanyId: 0,
  724. isGiveUp: false,
  725. };
  726. },
  727. //显示填写今日待办备注
  728. handleShowEditTodayRemark(e) {
  729. this.showTodayRemark.remark = e.row.RenewalReason;
  730. this.showTodayRemark.toDoRemark = e.row.RenewalTodo;
  731. this.showTodayRemark.CompanyId = e.row.CompanyId;
  732. this.showTodayRemark.ProductId = e.row.ProductId;
  733. if (e.row.RenewalReason && this.todayListOpen !== "auto") {
  734. // 如果有说明且不是自动弹出,则为编辑
  735. this.showTodayRemark.new = false;
  736. } else {
  737. this.showTodayRemark.new = true;
  738. }
  739. this.showTodayRemark.show = true;
  740. this.showTodayRemark.index = e.$index;
  741. },
  742. //获取销售今日待办
  743. async getSellerTodayList(type) {
  744. this.todayListOpen = type;
  745. let ReasonStatus = -1;
  746. if (type === "auto") {
  747. ReasonStatus = -1;
  748. } else {
  749. ReasonStatus = 0;
  750. }
  751. const res = await customInterence.sellerTodayList({
  752. ReasonStatus: ReasonStatus,
  753. PageSize: 10000,
  754. CurrentIndex: 1,
  755. });
  756. if (res.Ret === 200) {
  757. if (type === "auto" && res.Data.Paging.Totals > 0) {
  758. // 自动弹出清除上次说明
  759. res.Data.List &&
  760. res.Data.List.forEach((item) => (item.RenewalReason = ""));
  761. }
  762. if (
  763. (type === "auto" && res.Data.Paging.Totals > 0) ||
  764. type !== "auto"
  765. ) {
  766. this.show = true;
  767. } else {
  768. this.getSellerFeedBackList();
  769. }
  770. this.$nextTick(() => {
  771. this.todayList = res.Data.List;
  772. });
  773. }
  774. },
  775. //获取销售代办中的历史记录
  776. async getSellerTodayHistoryList(item) {
  777. const res = await customInterence.sellerTodayHistoryList({
  778. CompanyId: Number(item.CompanyId),
  779. ProductId: Number(item.ProductId),
  780. });
  781. if (res.Ret === 200) {
  782. this.showTodayHistoryList = true;
  783. this.$nextTick(() => {
  784. this.todayHistoryList = res.Data || [];
  785. });
  786. }
  787. },
  788. /* 获取销售路演待反馈 */
  789. getSellerFeedBackList() {
  790. roadshowInterence.toFeedbacklist().then((res) => {
  791. if (res.Ret !== 200) return;
  792. const { Data } = res;
  793. if (!Data || !Data.length) return;
  794. this.isFeedbackDialog = true;
  795. this.roadshowFeedbackList = Data;
  796. });
  797. },
  798. // 获取用户的问卷调查状态
  799. getQuestionStaus() {
  800. if (!this.isTrail) {
  801. this.showQuestionDia = false
  802. this.isQuestionShow = false
  803. this.questionList = []
  804. return
  805. }
  806. homeInterface.getQuestionnaireDetail().then(res => {
  807. // console.log(res);
  808. if (res.Ret == 200 && res.Data) {
  809. this.showQuestionDia = !!res.Data.IsPopup && (!!res.Data.IsShow)
  810. this.isQuestionShow = !!res.Data.IsShow
  811. this.questionList = res.Data.Question.List || []
  812. }
  813. })
  814. },
  815. // 问卷提交成功
  816. questionSubmitSuccess() {
  817. this.isQuestionShow = false
  818. },
  819. // 操作指南的跳转
  820. toOperation() {
  821. // this.$router.replace({name: '/fingerpost', params: {id: 1}})
  822. // let { href } = this.$router.resolve({
  823. // path: `/${url}`,
  824. // query: { contractid: this.contractId },
  825. // });
  826. // window.open(href, "_blank");
  827. //打开帮助文档
  828. const href = `${process.env.VUE_APP_ETA_HELP_DOCS}?bus_code=${this.bus_code}`
  829. // const href = `http://192.168.77.13:3033/help/index?bus_code=${this.bus_code}`
  830. window.open(href, "_blank");
  831. },
  832. // 跳转去其他的系统
  833. async linkToOtherMS({ path, key }) {
  834. /**
  835. * VUE_APP_HR_MANAGEMENT_SYSTEM -- HR管理系统
  836. * VUE_APP_FINANCIAL_MANAGEMENT_SYSTEM -- 财务管理系统
  837. */
  838. let href = path;
  839. if (key === 'crm') {
  840. // 获取临时code
  841. const res = await departInterence.getToCRMSysCode()
  842. if (res.Ret === 200) {
  843. href = `${href}?code=${res.Data}`
  844. }
  845. }
  846. window.open(href, "_blank");
  847. },
  848. // 切换通知消息类型
  849. handleNoticeTypeChange(e) {
  850. this.noticeType = e;
  851. if (e === "客户") {
  852. this.currentNoticeList = this.noticeList.Company.List;
  853. } else if (e === "合同") {
  854. this.currentNoticeList = this.noticeList.Contract.List;
  855. } else if (e === "用印") {
  856. this.currentNoticeList = this.noticeList.Seal.List;
  857. } else if (e === "ETA试用") {
  858. this.currentNoticeList = this.noticeList.ETATrial.List;
  859. } else if (e === "出差") {
  860. this.currentNoticeList = this.noticeList.BusinessTrip.List;
  861. } else {
  862. this.currentNoticeList = this.noticeList.EdbReplace.List;
  863. }
  864. },
  865. routeClick(item) {
  866. if (this.$route.path == item.path) {
  867. window.location.reload();
  868. } else {
  869. this.$router.push({ path: item.path });
  870. }
  871. },
  872. /* 侧边栏菜单列表 */
  873. getMenuList() {
  874. departInterence.getMenu().then((res) => {
  875. if (res.Ret === 200) {
  876. this.navlists = res.Data.List.length ? res.Data.List : [];
  877. sessionStorage.setItem("MenuList", JSON.stringify(this.navlists));
  878. /* 是否有数据报表权限 */
  879. let bool_data = this.navlists.some((item) => {
  880. return item.name === "数据报表";
  881. });
  882. this.$store.commit("SET_DATA_AUTH", bool_data);
  883. // 需要确认是否有权限的路由
  884. /**
  885. * Sysdatauth-手工数据权限
  886. */
  887. let shouldVerificationRoute = ["Sysdatauth"]
  888. shouldVerificationRoute.map(sMenu => {
  889. this.navlists.forEach(item => {
  890. if (item.children && item.children.some(menu => menu.path === sMenu || '/' + menu.path === sMenu)) {
  891. // 添加有权限的路由
  892. this.$store.commit("ADD_PERMISSION_ROUTE", sMenu);
  893. return
  894. }
  895. })
  896. })
  897. }
  898. });
  899. },
  900. resetpwd() {
  901. //修改密码
  902. this.$router.push({ path: "/resetpsd" });
  903. },
  904. handleselect: function (a, b) {
  905. // 清除筛选条件
  906. sessionStorage.removeItem("pickListBack");
  907. sessionStorage.removeItem("customSearchBack");
  908. sessionStorage.removeItem("customListBack");
  909. sessionStorage.removeItem("approvalListBack");
  910. this.activePath = a;
  911. // this.defaultPath = a.replace('/','');
  912. if (a == this.$route.path.replace(/\//g, "")) {
  913. window.location.reload();
  914. }
  915. },
  916. logout() {
  917. //退出登录
  918. var that = this;
  919. this.$confirm(/* "确认退出吗?" */this.$t('MsgPrompt.confirm_logout_msg'), this.$t('Dialog.warn_tit'), {
  920. type: "warning",
  921. }).then(() => {
  922. if (this.isTrail) {
  923. // 结算活跃计时
  924. loginEndCalc()
  925. // 结算登录计时
  926. recordActiveLoginFun()
  927. }
  928. userLogOut().then(res => { })
  929. .finally(() => {
  930. this.toLoginVariable()
  931. })
  932. setTimeout(() => {
  933. // 退出登录时可能有一些请求需要发送或者处理
  934. localStorage.setItem("auth", "");
  935. localStorage.setItem("userName", "");
  936. localStorage.setItem("Role", "");
  937. localStorage.setItem("RoleType", "");
  938. localStorage.setItem("AdminId", "");
  939. localStorage.setItem("AdminName", "");
  940. localStorage.setItem("ManageType", "");
  941. localStorage.setItem("RoleIdentity", "");
  942. localStorage.setItem("loginTime", "");
  943. storage.setCookie('ai_token','',-1)
  944. }, 10);
  945. }).catch(() => { });
  946. },
  947. toLoginVariable() {
  948. let logoutUrl = this.$setting.publicConfigs ? this.$setting.publicConfigs.LogoutUrl || "" : ""
  949. if (logoutUrl) {
  950. window.location.href = logoutUrl
  951. } else {
  952. this.$router.push("/login?HZ=1");
  953. }
  954. },
  955. toDoc() {
  956. //打开更新日志项目
  957. const href = `${process.env.VUE_APP_ETA_DOCS}?bus_code=${this.bus_code}`
  958. window.open(href, "_blank");
  959. },
  960. collapseHandle() {
  961. //折叠导航栏
  962. this.isCollapse = !this.isCollapse;
  963. this.$store.commit('SET_COLLAPSE', this.isCollapse)
  964. // 派发折叠导航栏事件
  965. EventBus.$emit("collapseHandle", this.isCollapse);
  966. },
  967. handleScroll() {
  968. //页面滚动监听
  969. let mainDiv = document.getElementById("displayMain");
  970. var scrollTop = mainDiv.scrollTop;
  971. if (scrollTop > 80) {
  972. this.breadcrumbFixed = true;
  973. } else {
  974. this.breadcrumbFixed = false;
  975. }
  976. },
  977. handleClickBread(item) {
  978. if (item.meta.pathFrom == "dayorweek") {
  979. this.$router.go(-1);
  980. } else {
  981. this.$router.push({ path: "/" + item.meta.pathFrom });
  982. }
  983. },
  984. resetLinkSys() {
  985. const { baseConfigPermission, checkPermissionBtn } = this.permissionBtn
  986. const sysMap = {
  987. 'fd': baseConfigPermission.sysJump_finance,
  988. 'hr': baseConfigPermission.sysJump_hr,
  989. 'crm': baseConfigPermission.sysJump_crm,
  990. }
  991. const linkSystems = this.$setting.linkSystems
  992. let linkArr = []
  993. for (const k in sysMap) {
  994. if (checkPermissionBtn(sysMap[k])) {
  995. linkArr.push(linkSystems.find(i => i.key === k))
  996. }
  997. }
  998. this.linkSystems = linkArr
  999. },
  1000. /* 获取动态配置 外部动态链接 */
  1001. async getPublicSettings() {
  1002. const res = await getPublicSettingsApi();
  1003. if (res.Ret !== 200) return
  1004. this.$store.commit('SET_DYNAMIC_LINK', res.Data)
  1005. },
  1006. // 中英文的切换
  1007. langChangeHandler() {
  1008. this.$i18n.locale = this.$i18n.locale == 'zh' ? 'en' : 'zh'
  1009. localStorage.setItem('i18n', this.$i18n.locale)
  1010. this.$store.commit('SET_LANG', this.$i18n.locale)
  1011. },
  1012. getSystemInfo() {
  1013. departInterence.getBaseInfo().then(res => {
  1014. if (res.Ret == 200) {
  1015. this.$store.commit('SET_BASE_INFO',
  1016. { logoCh: res.Data.LogoCn ? res.Data.LogoCn.ConfVal : '', logoEn: res.Data.LogoEn ? res.Data.LogoEn.ConfVal : '' }
  1017. )
  1018. }
  1019. })
  1020. },
  1021. handleGoETAForum(item, e) {
  1022. const href = `${process.env.VUE_APP_ETA_FORUM}`
  1023. window.open(href, '_blank')
  1024. }
  1025. },
  1026. };
  1027. </script>
  1028. <style lang="scss">
  1029. @import "../styles/theme-vars.scss";
  1030. #containercon {
  1031. width: 100%;
  1032. position: absolute;
  1033. top: 0px;
  1034. bottom: 0px;
  1035. overflow: hidden;
  1036. display: flex;
  1037. .asider-cont {
  1038. &::-webkit-scrollbar {
  1039. width: 0 !important;
  1040. }
  1041. }
  1042. // reset
  1043. .el-breadcrumb {
  1044. font-size: 16px;
  1045. }
  1046. #main_left {
  1047. // width: 200px;
  1048. height: 100%;
  1049. background: $menu_bg !important;
  1050. color: #000;
  1051. border-bottom: 1px solid #eaeaea;
  1052. position: fixed;
  1053. left: 0;
  1054. top: 0;
  1055. z-index: 99;
  1056. .logo_cont {
  1057. height: 60px;
  1058. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  1059. display: flex;
  1060. align-items: center;
  1061. justify-content: center;
  1062. border-bottom: 1px solid #dcdfe6;
  1063. .logo {
  1064. width: 148px;
  1065. height: 38px;
  1066. display: block;
  1067. overflow: hidden;
  1068. }
  1069. .logo_coll {
  1070. width: 45px;
  1071. height: 45px;
  1072. display: block;
  1073. overflow: hidden;
  1074. }
  1075. }
  1076. aside {
  1077. text-align: center;
  1078. z-index: 10;
  1079. margin-left: -1px;
  1080. .el-menu {
  1081. width: 200px;
  1082. height: 100%;
  1083. box-sizing: border-box;
  1084. /* background: #323a58 !important; */
  1085. }
  1086. .el-menu--collapse {
  1087. width: 70px;
  1088. height: 100%;
  1089. box-sizing: border-box;
  1090. /* background: #323a58 !important; */
  1091. }
  1092. .menuitem {
  1093. height: 55px;
  1094. padding-left: 28px;
  1095. box-sizing: border-box;
  1096. cursor: pointer;
  1097. color: #1f2e4d;
  1098. font-size: 15px;
  1099. display: flex;
  1100. align-items: center;
  1101. overflow: hidden;
  1102. img {
  1103. width: 20px;
  1104. margin-right: 6px;
  1105. }
  1106. }
  1107. .el-submenu .el-menu-item {
  1108. font-size: 15px;
  1109. padding: 0 0 0 20px !important;
  1110. text-align: left;
  1111. }
  1112. .el-menu-item.is-active {
  1113. background: #ecf2fe !important;
  1114. color: $theme-color !important;
  1115. a {
  1116. color: $theme-color !important;
  1117. }
  1118. }
  1119. .el-submenu__title {
  1120. //padding-left: 0 !important;
  1121. display: flex;
  1122. align-items: center;
  1123. }
  1124. .el-level-path {
  1125. position: relative;
  1126. height: 56px;
  1127. display: flex;
  1128. align-items: center;
  1129. .titleLetter {
  1130. font: 12px "\5FAE\8F6F\96C5\9ED1";
  1131. letter-spacing: 1px;
  1132. left: 0;
  1133. }
  1134. }
  1135. .titleLetter {
  1136. position: absolute;
  1137. bottom: -2px;
  1138. width: auto;
  1139. height: auto;
  1140. visibility: visible;
  1141. font-size: 12px;
  1142. }
  1143. .el-menu--collapse .el-submenu__title {
  1144. padding-left: 20px !important;
  1145. }
  1146. }
  1147. .el-submenu__title:hover,
  1148. .el-menu-item:hover {
  1149. background: #ecf2fe !important;
  1150. }
  1151. .subItem {
  1152. overflow: hidden;
  1153. .sub-item {
  1154. height: 55px;
  1155. padding-left: 52px;
  1156. box-sizing: border-box;
  1157. cursor: pointer;
  1158. color: #1f2e4d;
  1159. font-size: 15px;
  1160. display: flex;
  1161. align-items: center;
  1162. overflow: hidden;
  1163. &.sub_act {
  1164. background: #dbe4fc;
  1165. }
  1166. }
  1167. }
  1168. .menu-expanded > .el-menu-vertical-demo {
  1169. // width: 200px;
  1170. // min-height: calc(100vh - 80px);
  1171. color: #fff;
  1172. padding-bottom: 20px;
  1173. overflow: hidden;
  1174. overflow-y: auto;
  1175. border-right: none;
  1176. /* .el-submenu > .el-menu > .active {
  1177. background: rgba($color: #fdb863, $alpha: 0.2) !important;
  1178. color: #fdb863 !important;
  1179. } */
  1180. }
  1181. .el-submenu__title > i:nth-of-type(1) {
  1182. color: #c0c4cc !important;
  1183. }
  1184. }
  1185. .left_section_logo {
  1186. width: 148px;
  1187. height: 38px;
  1188. }
  1189. #main_right {
  1190. width: 100%;
  1191. overflow: hidden;
  1192. background: #f5f7f9;
  1193. position: relative;
  1194. .main_right_top {
  1195. // width: 100%;
  1196. background: #fff;
  1197. height: 60px;
  1198. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  1199. box-sizing: border-box;
  1200. display: flex;
  1201. justify-content: space-between;
  1202. align-items: center;
  1203. padding: 0 30px;
  1204. .main_left_container {
  1205. display: flex;
  1206. flex-shrink: 0;
  1207. align-items: center;
  1208. .main_left_section {
  1209. display: flex;
  1210. align-items: center;
  1211. }
  1212. .approval_notice {
  1213. display: flex;
  1214. align-items: center;
  1215. margin-left: 60px;
  1216. img {
  1217. margin-right: 10px;
  1218. }
  1219. div {
  1220. font-size: 16px;
  1221. font-family: PingFang SC-Regular, PingFang SC;
  1222. font-weight: 400;
  1223. color: #ee9a34;
  1224. line-height: 19px;
  1225. }
  1226. }
  1227. }
  1228. .coll_btn {
  1229. margin-right: 20px;
  1230. .coll_ico {
  1231. font-size: 22px;
  1232. display: block;
  1233. cursor: pointer;
  1234. color: #606266;
  1235. &:hover {
  1236. color: #4099ef;
  1237. }
  1238. }
  1239. }
  1240. .breadcrumb-container {
  1241. padding: 12px 20px;
  1242. box-sizing: border-box;
  1243. line-height: 18px;
  1244. margin-bottom: 0px;
  1245. .title {
  1246. width: 150px;
  1247. color: #475669;
  1248. float: left;
  1249. }
  1250. .breadcrumb-inner {
  1251. font: 14px/19px "微软雅黑";
  1252. }
  1253. }
  1254. .breadFixed {
  1255. display: block !important;
  1256. background: rgb(255, 255, 255);
  1257. border-bottom: 1px solid #eaeaea;
  1258. padding: 13px 245px 12px 20px;
  1259. box-sizing: border-box;
  1260. position: fixed;
  1261. top: 60px;
  1262. left: 150px;
  1263. right: 0;
  1264. z-index: 10;
  1265. overflow: hidden;
  1266. }
  1267. .breadCollapsedFixed {
  1268. display: block !important;
  1269. background: rgb(255, 255, 255);
  1270. border-bottom: 1px solid #eaeaea;
  1271. padding: 15px 105px 15px 25px;
  1272. box-sizing: border-box;
  1273. position: fixed;
  1274. top: 60px;
  1275. left: 60px;
  1276. right: 0;
  1277. z-index: 10;
  1278. }
  1279. .userinfo {
  1280. /* min-width: 420px;
  1281. width: 480px; */
  1282. height: 60px;
  1283. text-align: right;
  1284. overflow: hidden;
  1285. position: relative;
  1286. margin-left: 15px;
  1287. display: flex;
  1288. justify-content: space-between;
  1289. align-items: center;
  1290. .userinfo-fingerpost {
  1291. display: flex;
  1292. align-items: center;
  1293. // margin-right: 50px;
  1294. color: $theme-color;
  1295. .el-button:hover {
  1296. background: #ecf2fe;
  1297. }
  1298. }
  1299. .userinfo-inner {
  1300. cursor: pointer;
  1301. color: #666 !important;
  1302. display: flex;
  1303. align-items: center;
  1304. font-size: 16px;
  1305. img {
  1306. width: 25px;
  1307. height: 25px;
  1308. margin: 10px;
  1309. }
  1310. }
  1311. .userinfo-inner:hover {
  1312. color: #5882ef;
  1313. }
  1314. .help-center-inner {
  1315. }
  1316. .icon-box-item {
  1317. padding: 12px;
  1318. border-radius: 4px;
  1319. &:hover {
  1320. background: #ecf2fe;
  1321. }
  1322. }
  1323. }
  1324. }
  1325. .right_section {
  1326. display: flex;
  1327. align-items: center;
  1328. }
  1329. .lang-content {
  1330. display: flex;
  1331. align-items: center;
  1332. justify-content: center;
  1333. width: 100px;
  1334. height: 40px;
  1335. border-radius: 4px;
  1336. color: #0052d9;
  1337. background-color: #ecf2fe;
  1338. cursor: pointer;
  1339. }
  1340. .safariStyle {
  1341. border-right: none;
  1342. margin-left: -1px;
  1343. }
  1344. .content-container {
  1345. //height: calc(100vh - 90px);
  1346. background: #f2f6fa;
  1347. // position: relative;
  1348. overflow-y: auto;
  1349. position: absolute;
  1350. //padding-top: 22px;
  1351. left: 0;
  1352. right: 0;
  1353. top: 68px; //应该是60px 但为了留出header的box-shadow多移了8px
  1354. bottom: 0;
  1355. z-index: 100;
  1356. /*修改滚动条样式*/
  1357. &::-webkit-scrollbar {
  1358. width: 10px;
  1359. height: 10px;
  1360. }
  1361. &::-webkit-scrollbar-track {
  1362. background: rgb(239, 239, 239);
  1363. border-radius: 2px;
  1364. }
  1365. &::-webkit-scrollbar-thumb {
  1366. background: #ccc;
  1367. border-radius: 10px;
  1368. }
  1369. &::-webkit-scrollbar-thumb:hover {
  1370. background: #888;
  1371. }
  1372. &::-webkit-scrollbar-corner {
  1373. background: #666;
  1374. }
  1375. /**/
  1376. .contentc {
  1377. width: 100%;
  1378. overflow: auto;
  1379. .content-wrapper {
  1380. width: 100%;
  1381. //padding-top:22px,是给header的box-shadow留出位置;
  1382. //padding-bottom:22px,是给内容页的滚动条留出位置
  1383. padding: 22px 30px;
  1384. box-sizing: border-box;
  1385. overflow: auto;
  1386. }
  1387. .note_entrance {
  1388. display: inline-block;
  1389. position: absolute;
  1390. right: 20px;
  1391. top: 50%;
  1392. height: 100%;
  1393. transform: translateY(-50%);
  1394. > img {
  1395. width: 20px;
  1396. margin-right: 5px;
  1397. vertical-align: middle;
  1398. }
  1399. }
  1400. }
  1401. }
  1402. }
  1403. }
  1404. </style>