123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446 |
- <template>
- <div id="containercon">
- <el-aside :width="isCollapse ? '70px' : '200px'" v-if="isHaveAside">
- <div id="main_left">
- <div class="logo_cont">
- <!-- 正常logo尺寸 -->
- <img class="logo" v-if="!isCollapse" :src="logoLarge" />
- <!-- 折叠侧边栏logo尺寸 -->
- <img class="logo_coll" v-else :src="$setting.g_mini_logo" />
- </div>
- <div
- style="overflow-y: auto; height: 90%; overflow-x: hidden"
- class="asider-cont"
- >
- <aside class="menu-expanded">
- <!--导航菜单-->
- <el-menu
- :background-color="$setting.menu_bg"
- text-color="#333"
- :collapse-transition="false"
- :active-text-color="$setting.theme_color"
- :default-active="$route.path.replace('/', '')"
- :collapse="isCollapse"
- unique-opened
- router
- class="el-menu-vertical-demo"
- @select="handleselect"
- ref="expandmenu"
- >
- <template v-for="(item, index) in navlists">
- <el-menu-item
- :index="item.path"
- :key="item.MenuId"
- :style="!isCollapse ? 'text-align:left' : ''"
- v-if="!item.children || item.children.length === 0"
- >
- <a
- :href="`/${item.path}`"
- class="el-level-path"
- :style="`display: block;color:${
- item.path === activePath
- ? $setting.theme_color
- : '#666'
- }`"
- @click="handleClickSubMenuItem(item, $event)"
- >
- <img
- :src="getMenuIcon(item)"
- alt=""
- style="width: 24px; height: 24px"
- />
- <span class="titleLetter" v-show="isCollapse">{{
- isCollapse ? MenuLetterMap[item.name] || "" : ""
- }}</span>
- <span
- style="
- display: inline-block;
- width: 96px;
- text-align: left;
- font-size: 15px;
- margin-left: 20px;
- "
- >{{
- $i18nt.locale === "zh" ? item.name : item.name_en
- }}</span
- >
- </a>
- </el-menu-item>
- <el-submenu v-else :index="item.MenuId" :key="item.MenuId">
- <template slot="title">
- <img
- :src="getMenuIcon(item)"
- alt=""
- style="width: 24px; height: 24px"
- />
- <span class="titleLetter" v-show="isCollapse">{{
- isCollapse ? MenuLetterMap[item.name] || "" : ""
- }}</span>
- <span
- style="
- display: inline-block;
- width: 96px;
- text-align: left;
- font-size: 15px;
- margin-left: 20px;
- "
- >{{
- $i18nt.locale === "zh" ? item.name : item.name_en
- }}</span
- >
- </template>
- <template v-for="second in item.children">
- <el-menu-item
- :index="second.path"
- :key="second.MenuId"
- v-if="!second.children || second.children.length === 0"
- >
- <a
- :href="`/${second.path}`"
- :style="`display: flex;align-items:center;color:${
- second.path === activePath
- ? $setting.theme_color
- : '#666'
- }`"
- @click="handleClickSubMenuItem(second, $event)"
- >
- <svg
- t="1689672247666"
- class="icon"
- viewBox="0 0 1024 1024"
- version="1.1"
- xmlns="http://www.w3.org/2000/svg"
- p-id="7676"
- width="30"
- height="30"
- >
- <path
- 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"
- p-id="7677"
- :fill="
- second.path === activePath
- ? $setting.theme_color
- : '#666'
- "
- ></path>
- </svg>
- <span style="margin-left: 15px"
- >{{
- $i18nt.locale === "zh"
- ? second.name
- : second.name_en
- }}</span
- >
- </a>
- </el-menu-item>
- <el-submenu v-else :index="second.MenuId" :key="second.MenuId">
- <template slot="title">
- <span style="margin-left:-20px">
- <svg
- t="1689672247666"
- class="icon"
- viewBox="0 0 1024 1024"
- version="1.1"
- xmlns="http://www.w3.org/2000/svg"
- p-id="7676"
- width="30"
- height="30"
- >
- <path
- 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"
- p-id="7677"
- :fill="
- second.path === activePath
- ? $setting.theme_color
- : '#666'
- "
- ></path>
- </svg>
- <span style="margin-left: 10px">{{
- $i18nt.locale === "zh"
- ? second.name
- : second.name_en
- }}</span>
- </span>
- </template>
- <el-menu-item
- :index="third.path"
- :key="third.MenuId"
- v-for="third in second.children"
- >
- <span
- style="
- display: inline-block;
- width: 96px;
- text-align: left;
- font-size: 15px;
- margin-left:40px
- "
- >{{
- $i18nt.locale === "zh" ? third.name : third.name_en
- }}</span
- >
- </el-menu-item>
- </el-submenu>
- </template>
- </el-submenu>
- </template>
- </el-menu>
- </aside>
- </div>
- </div>
- </el-aside>
- <el-container>
- <div id="main_right">
- <div class="main_right_top">
- <div class="main_left_container">
- <div class="main_left_section" v-if="isHaveAside">
- <!-- 折叠按钮 -->
- <div class="coll_btn" @click="collapseHandle">
- <i class="el-icon-s-unfold coll_ico" v-if="isCollapse"></i>
- <i class="el-icon-s-fold coll_ico" v-else></i>
- </div>
- <!-- 面包屑 -->
- <el-breadcrumb separator="/" class="breadcrumb-inner">
- <template v-if="$route.path !== '/edbHistory'">
- <el-breadcrumb-item
- v-for="item in $route.matched"
- :key="item.path"
- >
- <span
- v-if="item.meta.pathFrom"
- @click.stop="handleClickBread(item)"
- :style="`cursor: pointer; color: ${$setting.theme_color}`"
- >
- {{
- $i18nt.locale === "zh"
- ? item.meta.pathName
- : item.meta.pathName_en
- }}
- </span>
- <span
- v-if="item.meta.pathFrom"
- style="
- margin: 0 9px;
- font-weight: 700;
- color: #c0c4cc;
- font-size: 16px;
- "
- >/</span
- >
- <span
- v-if="item.parent"
- :style="`cursor: pointer; color: ${$setting.theme_color}`"
- @click.stop="routeClick(item)"
- >
- <template
- v-if="$route.path === '/positionAnalysisDetail'"
- >
- <!-- {{breadSelfName||'持仓详情'}} -->
- {{
- $i18nt.locale === "zh"
- ? "持仓详情"
- : "Position Analysis"
- }}
- </template>
- <template v-else>
- {{
- $i18nt.locale === "zh" ? item.name : item.meta.name_en
- }}
- </template>
- </span>
- <span v-else>{{
- $i18nt.locale === "zh" ? item.name : item.meta.name_en
- }}</span>
- </el-breadcrumb-item>
- </template>
- <template v-else>
- <el-breadcrumb-item
- v-for="(item, index) in edbHistoryPath"
- :key="item.path"
- >
- <span v-if="index === 0">{{ item.name }}</span>
- <span v-else>
- <span
- @click.stop="$router.push(item.path)"
- :style="`cursor: pointer; color: ${$setting.theme_color}`"
- >
- {{ $i18nt.locale === "zh" ? item.name : item.name_en }}
- </span>
- </span>
- </el-breadcrumb-item>
- </template>
- </el-breadcrumb>
- </div>
- <img
- src="~@/assets/img/home/logo_white.png"
- alt=""
- class="left_section_logo"
- v-else
- />
- </div>
- <div class="right_section">
- <div style="display:flex;align-items:center;gap:0 5px" @click="handleGoSJJD">
- <img style="width:24px" src="~@/assets/img/icons/home_sjjd.png" alt="">
- <span>数据节点</span>
- </div>
- <div class="userinfo">
- <div class="userinfo-fingerpost">
- <!-- <el-button
- @click="linkToOtherMS(item)"
- v-for="item in linkSystems"
- :key="item.path"
- type="text"
- style="margin-right: 18px;color:#333;padding:12px;"
- >
- <img :src="item.icon" v-if="item.icon" width="20" height="20" style="vertical-align: middle;">
- {{item.name}}
- </el-button> -->
- <el-dropdown
- trigger="click"
- style="width: 140px"
- v-if="isUpdateLogShow || isHelpDocShow"
- >
- <span
- class="el-dropdown-link userinfo-inner help-center-inner"
- >
- <svg
- width="20"
- height="20"
- viewBox="0 0 20 20"
- fill="none"
- xmlns="http://www.w3.org/2000/svg"
- style="color: #333"
- >
- <path
- 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"
- fill="currentColor"
- />
- <path
- 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"
- fill="currentColor"
- />
- <path
- 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"
- fill="currentColor"
- />
- </svg>
- <span style="line-height: 20px; margin-left: 4px"
- ><!-- 帮助中心 -->{{ $t("MainPage.help_center") }}</span
- >
- <i class="el-icon-arrow-down el-icon--right" />
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item
- divided
- @click.native="toDoc"
- v-if="isUpdateLogShow"
- ><!-- 更新日志 -->{{
- $t("MainPage.tab_help_update")
- }}</el-dropdown-item
- >
- <el-dropdown-item
- divided
- @click.native="toOperation"
- v-if="isHelpDocShow"
- ><!-- 帮助文档 -->{{
- $t("MainPage.tab_help_docs")
- }}</el-dropdown-item
- >
- </el-dropdown-menu>
- </el-dropdown>
- <div class="userinfo-fingerpost">
- <img
- src="~@/assets/img/questionnaire.png"
- v-if="isQuestionShow"
- @click="showQuestionDia = true"
- style="width: 84px; height: 24; cursor: pointer"
- />
- </div>
- <!-- <div class="lang-content" @click="langChangeHandler">
- {{ $i18n.locale == "zh" ? "English" : "中文" }}
- </div> -->
- </div>
- <!-- 消息通知 -->
- <notification-msg ref="notification" />
- <el-dropdown trigger="click" style="width: 130px">
- <span class="el-dropdown-link userinfo-inner">
- <img src="~@/assets/img/home/avatar.png" />
- {{ sysUserName }}
- <i class="el-icon-arrow-down el-icon--right" />
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item divided @click.native="resetpwd"
- ><!-- 修改密码 -->{{
- $t("MainPage.tab_reset_pwd")
- }}</el-dropdown-item
- >
- <el-dropdown-item divided @click.native="logout"
- ><!-- 退出登录 -->{{
- $t("MainPage.tab_log_out")
- }}</el-dropdown-item
- >
- <!-- <el-dropdown-item divided @click.native="toDoc"
- >更新日志</el-dropdown-item
- > -->
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- </div>
- </div>
- <section class="content-container" id="displayMain" ref="displayMain">
- <el-row
- class="grid-content bg-purple-light contentc"
- style="min-width: 1000px"
- >
- <el-col :span="24" class="content-wrapper">
- <transition name="fade" mode="out-in">
- <router-view :key="$route.fullPath"></router-view>
- </transition>
- </el-col>
- </el-row>
- </section>
- </div>
- </el-container>
- <!-- //重置初始密码 -->
- <pwd-dlg :dialogVisiblePwd="dialogVisiblePwd" />
- <!-- 问卷调查弹窗 -->
- <questionnaire-dia
- :dialogVisiblePwd.sync="showQuestionDia"
- @submitSuccess="questionSubmitSuccess"
- :questionList="questionList"
- ></questionnaire-dia>
- </div>
- </template>
- <script>
- import {
- checkPwd,
- departInterence,
- customInterence,
- roadshowInterence,
- getBusinessCode,
- homeInterface,
- userLogOut
- } from "api/api.js";
- import { getPublicSettingsApi } from '@/api/modules/oldApi';
- import PwdDlg from "@/components/pwdDlg.vue";
- import questionMsgDia from "@/components/questionMsgDia.vue";
- import questionnaireDia from "../components/questionnaireDia.vue";
- import EventBus from "@/api/bus.js";
- import storage from '@/utils/storage'
- import { recordActiveLoginFun, loginEndCalc } from "@/utils/TimeOnPage.js"
- import NotificationMsg from "../components/notificationMsg.vue";
- export default {
- components: {
- PwdDlg,
- questionMsgDia,
- questionnaireDia,
- NotificationMsg
- },
- inject: ["reload"],
- filters: {
- formatDate(e) {
- return e.replace(/-/g, ".");
- },
- },
- watch: {
- "$route.path"(newval) {
- console.log(newval);
- if (this.$route.meta.pathFrom) {
- this.activePath = this.$route.meta.pathFrom;
- } else {
- this.activePath = newval.replace("/", "");
- }
- this.sysUserName = localStorage.getItem("userName") || "";
- this.Role = localStorage.getItem("Role") || "";
- this.RoleType = localStorage.getItem("RoleType") || "";
- },
- },
- computed: {
- edbHistoryPath() {
- return JSON.parse(sessionStorage.getItem('edbHistoryPath')) || []
- },
- breadSelfName() {
- return this.$store.state.breadSelfName;
- },
- isShowRole() {
- let role = localStorage.getItem("RoleIdentity") || "";
- return (
- role == "rai_group" ||
- role == "ficc_group" ||
- role == "rai_admin" ||
- role == "ficc_admin" ||
- role == "rai_seller" ||
- role == "ficc_seller" ||
- role == "admin"
- );
- },
- /* layout2 不展示侧边 */
- isHaveAside() {
- return this.$route.path !== "/mychartdetail";
- },
- //帮助文档是否展示
- isHelpDocShow() {
- return this.permissionBtn.checkPermissionBtn(
- this.permissionBtn.baseConfigPermission.sysJump_helpDoc
- )
- },
- //更新日志是否展示
- isUpdateLogShow() {
- return this.permissionBtn.checkPermissionBtn(
- this.permissionBtn.baseConfigPermission.sysJump_updateLog
- )
- },
- // 是否是eta试用
- isTrail() {
- return this.$store.state.hasTrialUserPermisson
- },
- logoLarge() {
- return this.$store.state.baseInfo.logoCh || this.$setting.g_logo
- }
- },
- data() {
- return {
- showTodayRemark: {
- CompanyId: 0,
- ProductId: 0,
- remark: "",
- toDoRemark: "",
- show: false,
- index: 0,
- new: false, //是否为新增
- isGiveUp: false, //是否不继续跟进
- }, //显示填写待办备注弹窗
- isCollapse: false, //侧边栏折叠
- breadcrumbFixed: false, //吸顶盒固定
- Role: "", //角色名称
- RoleType: "", //角色类型
- sysUserName: "", //登录系统用户名
- sysUserAvatar: "", //登录系统用户头像
- form: {
- name: "",
- region: "",
- date1: "",
- date2: "",
- delivery: false,
- type: [],
- resource: "",
- desc: "",
- },
- navlists: [],
- activePath: "",
- noticeList: [], //消息提醒列表
- isShowNotice: false, //显示提示红点
- currentNoticeList: [], //当前显示的消息提醒列表
- noticeType: "客户", //消息类型 客户/合同/用印
- noticeCount: 0, //总共多少消息
- flag1: false, //显示客户提示红点
- flag2: false, //显示合同提示红点
- flag3: false, //显示用印提示红点
- dialogVisiblePwd: false, //初始密码的弹框
- // ----------------问卷调查弹窗
- showQuestionDia: false,
- // 问卷调查icon是否展示
- isQuestionShow: false,
- // 问题列表
- questionList: [],
- flag4: false,
- flag5: false, //显示ETA试用相关的红点
- flag6: false, //显示出差相关的红点
- /* 路演反馈*/
- isFeedbackDialog: false,
- roadshowFeedbackList: [],
- isShowApprovalNotice: false, // 是否显示用印审批的公告
- //新的icon
- MenuLetterMap: {
- 销售管理: "Sale",
- 客户管理: "Clnt",
- 路演管理: "RShow",
- 出差管理: "Trip",
- 研报管理: "Rpt",
- 语义分析: "Nlp",
- 表格: "Tbl",
- 指标库: "Inx",
- 相关性: "Co-R",
- 预测指标: "FInx",
- 图库: "Gra",
- /* 151:'FData', */
- 供应分析: "Sup",
- 商品价格曲线: "Crv",
- },
- //链接系统
- linkSystems: this.$setting.linkSystems,
- bus_code: "",
- };
- },
- created() {
- //this.isInitialPwd(); //判断是否为初始密码
- this.Role = localStorage.getItem("Role") || "";
- this.RoleType = localStorage.getItem("RoleType") || "";
- this.sysUserName = localStorage.getItem("userName") || "";
- this.sysUserAvatar = "../assets/img/userLogo.png";
- if (this.$route.path === "/sealApprovalList") {
- this.isShowApprovalNotice = true;
- }
- this.resetLinkSys()
- this.getBusinessCodeFun()
- this.getQuestionStaus()
- this.getSystemInfo();//获取配置信息
- },
- mounted() {
- if (sessionStorage.getItem("hasGetMenu")) {
- this.navlists = JSON.parse(sessionStorage.getItem("MenuList"));
- sessionStorage.removeItem("hasGetMenu");
- } else {
- this.getMenuList();
- }
- this.getPublicSettings();
- this.$refs.notification && this.$refs.notification.getMsgList()
- },
- methods: {
- getMenuIcon(item) {
- const iconMap = new Map([
- ['首页', require('@/assets/icons/menu/icon01.png')],
- ['数据分析', require('@/assets/icons/menu/icon02.png')],
- ['模型应用', require('@/assets/icons/menu/icon03.png')],
- ['图表工具', require('@/assets/icons/menu/icon04.png')],
- ['知识资源', require('@/assets/icons/menu/icon05.png')],
- ['语义分析', require('@/assets/icons/menu/icon06.png')],
- ['BI看板', require('@/assets/icons/menu/icon07.png')],
- ['研报管理', require('@/assets/icons/menu/icon08.png')],
- ['任务管理', require('@/assets/icons/menu/icon09.png')],
- ['AI问答', require('@/assets/icons/menu/icon11.png')],
- ['系统设置', require('@/assets/icons/menu/icon10.png')],
- ])
- return iconMap.get(item.name) || require('@/assets/icons/menu/icon01.png')
- },
-
- // 跳转数据节点
- handleGoSJJD(){
- window.open('https://www.baidu.com', '_blank')
- },
- handleClickSubMenuItem(item, e) {
- e.preventDefault();
- if (item.path === 'AIQA') {
- e.stopPropagation();
- let { href } = this.$router.resolve({
- path: '/' + item.path
- });
- window.open(href, '_blank')
- }
- },
- // 获取商家Code
- getBusinessCodeFun() {
- getBusinessCode().then(res => {
- if (res.Ret !== 200) return
- this.bus_code = res.Data || ''
- this.$setting.bus_code = this.bus_code
- })
- },
- //判断是否为初始密码
- async isInitialPwd() {
- const res = await checkPwd();
- if (res.Ret === 200) {
- this.dialogVisiblePwd = res.Data;
- }
- },
- // 点击导航 打开今日待办
- // handleShowSallerTodayList() {
- // this.getSellerTodayList("click");
- // },
- // 点击完成 批量提交备注
- handleTodayFinished() {
- let arr = this.todayList.map((item) => {
- return customInterence.sellerTodayListRemark({
- CompanyId: item.CompanyId,
- ProductId: item.ProductId,
- Remark: item.RenewalReason,
- Renew: item.isGiveUp ? 1 : 0,
- RenewalTodo: item.RenewalTodo,
- });
- });
- Promise.all(arr)
- .then((res) => {
- this.show = false;
- this.getSellerFeedBackList();
- })
- .catch((error) => {
- this.$message.waring("部分提交失败请重试");
- this.getSellerTodayList();
- });
- },
- //提交备注
- async handleSubmitTodayRemark() {
- if (!this.showTodayRemark.remark && !this.showTodayRemark.isGiveUp) {
- this.$message.warning("请填写最新情况");
- return;
- }
- if (!this.showTodayRemark.toDoRemark && !this.showTodayRemark.isGiveUp) {
- this.$message.warning("请填写To Do事项");
- return;
- }
- // 如果选中不再跟进,需要在备注中添加额外内容
- const addRemark = this.showTodayRemark.isGiveUp
- ? this.showTodayRemark.remark
- ? "。客户无续约意向,不再跟进(转为冻结客户)"
- : "客户无续约意向,不再跟进(转为冻结客户)"
- : "";
- // 自动开大的点击完成时批量更新
- if (this.todayListOpen === "auto") {
- this.todayList[this.showTodayRemark.index].RenewalReason =
- this.showTodayRemark.remark + addRemark;
- this.todayList[this.showTodayRemark.index].RenewalTodo =
- this.showTodayRemark.toDoRemark;
- this.todayList[this.showTodayRemark.index].isGiveUp =
- this.showTodayRemark.isGiveUp;
- this.$set(this.todayList[this.showTodayRemark.index], "isEdited", true);
- this.handleTodayRemarkClose();
- } else {
- const res = await customInterence.sellerTodayListRemark({
- CompanyId: this.showTodayRemark.CompanyId,
- ProductId: this.showTodayRemark.ProductId,
- Remark: this.showTodayRemark.remark + addRemark,
- Renew: this.showTodayRemark.isGiveUp ? 1 : 0,
- RenewalTodo: this.showTodayRemark.toDoRemark,
- });
- if (res.Ret === 200) {
- this.todayList[this.showTodayRemark.index].RenewalReason =
- this.showTodayRemark.remark;
- this.todayList[this.showTodayRemark.index].RenewalTodo =
- this.showTodayRemark.toDoRemark;
- this.handleTodayRemarkClose();
- this.getSellerTodayList();
- }
- }
- },
- handleTodayRemarkClose() {
- this.showTodayRemark = {
- remark: "",
- toDoRemark: "",
- show: false,
- index: 0,
- new: false,
- ProductId: 0,
- CompanyId: 0,
- isGiveUp: false,
- };
- },
- //显示填写今日待办备注
- handleShowEditTodayRemark(e) {
- this.showTodayRemark.remark = e.row.RenewalReason;
- this.showTodayRemark.toDoRemark = e.row.RenewalTodo;
- this.showTodayRemark.CompanyId = e.row.CompanyId;
- this.showTodayRemark.ProductId = e.row.ProductId;
- if (e.row.RenewalReason && this.todayListOpen !== "auto") {
- // 如果有说明且不是自动弹出,则为编辑
- this.showTodayRemark.new = false;
- } else {
- this.showTodayRemark.new = true;
- }
- this.showTodayRemark.show = true;
- this.showTodayRemark.index = e.$index;
- },
- //获取销售今日待办
- async getSellerTodayList(type) {
- this.todayListOpen = type;
- let ReasonStatus = -1;
- if (type === "auto") {
- ReasonStatus = -1;
- } else {
- ReasonStatus = 0;
- }
- const res = await customInterence.sellerTodayList({
- ReasonStatus: ReasonStatus,
- PageSize: 10000,
- CurrentIndex: 1,
- });
- if (res.Ret === 200) {
- if (type === "auto" && res.Data.Paging.Totals > 0) {
- // 自动弹出清除上次说明
- res.Data.List &&
- res.Data.List.forEach((item) => (item.RenewalReason = ""));
- }
- if (
- (type === "auto" && res.Data.Paging.Totals > 0) ||
- type !== "auto"
- ) {
- this.show = true;
- } else {
- this.getSellerFeedBackList();
- }
- this.$nextTick(() => {
- this.todayList = res.Data.List;
- });
- }
- },
- //获取销售代办中的历史记录
- async getSellerTodayHistoryList(item) {
- const res = await customInterence.sellerTodayHistoryList({
- CompanyId: Number(item.CompanyId),
- ProductId: Number(item.ProductId),
- });
- if (res.Ret === 200) {
- this.showTodayHistoryList = true;
- this.$nextTick(() => {
- this.todayHistoryList = res.Data || [];
- });
- }
- },
- /* 获取销售路演待反馈 */
- getSellerFeedBackList() {
- roadshowInterence.toFeedbacklist().then((res) => {
- if (res.Ret !== 200) return;
- const { Data } = res;
- if (!Data || !Data.length) return;
- this.isFeedbackDialog = true;
- this.roadshowFeedbackList = Data;
- });
- },
- // 获取用户的问卷调查状态
- getQuestionStaus() {
- if (!this.isTrail) {
- this.showQuestionDia = false
- this.isQuestionShow = false
- this.questionList = []
- return
- }
- homeInterface.getQuestionnaireDetail().then(res => {
- // console.log(res);
- if (res.Ret == 200 && res.Data) {
- this.showQuestionDia = !!res.Data.IsPopup && (!!res.Data.IsShow)
- this.isQuestionShow = !!res.Data.IsShow
- this.questionList = res.Data.Question.List || []
- }
- })
- },
- // 问卷提交成功
- questionSubmitSuccess() {
- this.isQuestionShow = false
- },
- // 操作指南的跳转
- toOperation() {
- // this.$router.replace({name: '/fingerpost', params: {id: 1}})
- // let { href } = this.$router.resolve({
- // path: `/${url}`,
- // query: { contractid: this.contractId },
- // });
- // window.open(href, "_blank");
- //打开帮助文档
- const href = `${process.env.VUE_APP_ETA_HELP_DOCS}?bus_code=${this.bus_code}`
- // const href = `http://192.168.77.13:3033/help/index?bus_code=${this.bus_code}`
- window.open(href, "_blank");
- },
- // 跳转去其他的系统
- async linkToOtherMS({ path, key }) {
- /**
- * VUE_APP_HR_MANAGEMENT_SYSTEM -- HR管理系统
- * VUE_APP_FINANCIAL_MANAGEMENT_SYSTEM -- 财务管理系统
- */
- let href = path;
- if (key === 'crm') {
- // 获取临时code
- const res = await departInterence.getToCRMSysCode()
- if (res.Ret === 200) {
- href = `${href}?code=${res.Data}`
- }
- }
- window.open(href, "_blank");
- },
- // 切换通知消息类型
- handleNoticeTypeChange(e) {
- this.noticeType = e;
- if (e === "客户") {
- this.currentNoticeList = this.noticeList.Company.List;
- } else if (e === "合同") {
- this.currentNoticeList = this.noticeList.Contract.List;
- } else if (e === "用印") {
- this.currentNoticeList = this.noticeList.Seal.List;
- } else if (e === "ETA试用") {
- this.currentNoticeList = this.noticeList.ETATrial.List;
- } else if (e === "出差") {
- this.currentNoticeList = this.noticeList.BusinessTrip.List;
- } else {
- this.currentNoticeList = this.noticeList.EdbReplace.List;
- }
- },
- routeClick(item) {
- if (this.$route.path == item.path) {
- window.location.reload();
- } else {
- this.$router.push({ path: item.path });
- }
- },
- /* 侧边栏菜单列表 */
- getMenuList() {
- departInterence.getMenu().then((res) => {
- if (res.Ret === 200) {
- this.navlists = res.Data.List.length ? res.Data.List : [];
- sessionStorage.setItem("MenuList", JSON.stringify(this.navlists));
- /* 是否有数据报表权限 */
- let bool_data = this.navlists.some((item) => {
- return item.name === "数据报表";
- });
- this.$store.commit("SET_DATA_AUTH", bool_data);
- // 需要确认是否有权限的路由
- /**
- * Sysdatauth-手工数据权限
- */
- let shouldVerificationRoute = ["Sysdatauth"]
- shouldVerificationRoute.map(sMenu => {
- this.navlists.forEach(item => {
- if (item.children && item.children.some(menu => menu.path === sMenu || '/' + menu.path === sMenu)) {
- // 添加有权限的路由
- this.$store.commit("ADD_PERMISSION_ROUTE", sMenu);
- return
- }
- })
- })
- }
- });
- },
- resetpwd() {
- //修改密码
- this.$router.push({ path: "/resetpsd" });
- },
- handleselect: function (a, b) {
- // 清除筛选条件
- sessionStorage.removeItem("pickListBack");
- sessionStorage.removeItem("customSearchBack");
- sessionStorage.removeItem("customListBack");
- sessionStorage.removeItem("approvalListBack");
- this.activePath = a;
- // this.defaultPath = a.replace('/','');
- if (a == this.$route.path.replace(/\//g, "")) {
- window.location.reload();
- }
- },
- logout() {
- //退出登录
- var that = this;
- this.$confirm(/* "确认退出吗?" */this.$t('MsgPrompt.confirm_logout_msg'), this.$t('Dialog.warn_tit'), {
- type: "warning",
- }).then(() => {
- if (this.isTrail) {
- // 结算活跃计时
- loginEndCalc()
- // 结算登录计时
- recordActiveLoginFun()
- }
- userLogOut().then(res => { })
- .finally(() => {
- this.toLoginVariable()
- })
- setTimeout(() => {
- // 退出登录时可能有一些请求需要发送或者处理
- localStorage.setItem("auth", "");
- localStorage.setItem("userName", "");
- localStorage.setItem("Role", "");
- localStorage.setItem("RoleType", "");
- localStorage.setItem("AdminId", "");
- localStorage.setItem("AdminName", "");
- localStorage.setItem("ManageType", "");
- localStorage.setItem("RoleIdentity", "");
- localStorage.setItem("loginTime", "");
- storage.setCookie('ai_token','',-1)
- }, 10);
- }).catch(() => { });
- },
- toLoginVariable() {
- let logoutUrl = this.$setting.publicConfigs ? this.$setting.publicConfigs.LogoutUrl || "" : ""
- if (logoutUrl) {
- window.location.href = logoutUrl
- } else {
- this.$router.push("/login?HZ=1");
- }
- },
- toDoc() {
- //打开更新日志项目
- const href = `${process.env.VUE_APP_ETA_DOCS}?bus_code=${this.bus_code}`
- window.open(href, "_blank");
- },
- collapseHandle() {
- //折叠导航栏
- this.isCollapse = !this.isCollapse;
- this.$store.commit('SET_COLLAPSE', this.isCollapse)
- // 派发折叠导航栏事件
- EventBus.$emit("collapseHandle", this.isCollapse);
- },
- handleScroll() {
- //页面滚动监听
- let mainDiv = document.getElementById("displayMain");
- var scrollTop = mainDiv.scrollTop;
- if (scrollTop > 80) {
- this.breadcrumbFixed = true;
- } else {
- this.breadcrumbFixed = false;
- }
- },
- handleClickBread(item) {
- if (item.meta.pathFrom == "dayorweek") {
- this.$router.go(-1);
- } else {
- this.$router.push({ path: "/" + item.meta.pathFrom });
- }
- },
- resetLinkSys() {
- const { baseConfigPermission, checkPermissionBtn } = this.permissionBtn
- const sysMap = {
- 'fd': baseConfigPermission.sysJump_finance,
- 'hr': baseConfigPermission.sysJump_hr,
- 'crm': baseConfigPermission.sysJump_crm,
- }
- const linkSystems = this.$setting.linkSystems
- let linkArr = []
- for (const k in sysMap) {
- if (checkPermissionBtn(sysMap[k])) {
- linkArr.push(linkSystems.find(i => i.key === k))
- }
- }
- this.linkSystems = linkArr
- },
- /* 获取动态配置 外部动态链接 */
- async getPublicSettings() {
- const res = await getPublicSettingsApi();
- if (res.Ret !== 200) return
- this.$store.commit('SET_DYNAMIC_LINK', res.Data)
- },
- // 中英文的切换
- langChangeHandler() {
- this.$i18n.locale = this.$i18n.locale == 'zh' ? 'en' : 'zh'
- localStorage.setItem('i18n', this.$i18n.locale)
- this.$store.commit('SET_LANG', this.$i18n.locale)
- },
- getSystemInfo() {
- departInterence.getBaseInfo().then(res => {
- if (res.Ret == 200) {
- this.$store.commit('SET_BASE_INFO',
- { logoCh: res.Data.LogoCn ? res.Data.LogoCn.ConfVal : '', logoEn: res.Data.LogoEn ? res.Data.LogoEn.ConfVal : '' }
- )
- }
- })
- },
- handleGoETAForum(item, e) {
- const href = `${process.env.VUE_APP_ETA_FORUM}`
- window.open(href, '_blank')
- }
- },
- };
- </script>
- <style lang="scss">
- @import "../styles/theme-vars.scss";
- #containercon {
- width: 100%;
- position: absolute;
- top: 0px;
- bottom: 0px;
- overflow: hidden;
- display: flex;
- .asider-cont {
- &::-webkit-scrollbar {
- width: 0 !important;
- }
- }
- // reset
- .el-breadcrumb {
- font-size: 16px;
- }
- #main_left {
- // width: 200px;
- height: 100%;
- background: $menu_bg !important;
- color: #000;
- border-bottom: 1px solid #eaeaea;
- position: fixed;
- left: 0;
- top: 0;
- z-index: 99;
- .logo_cont {
- height: 60px;
- box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
- display: flex;
- align-items: center;
- justify-content: center;
- border-bottom: 1px solid #dcdfe6;
- .logo {
- width: 148px;
- height: 38px;
- display: block;
- overflow: hidden;
- }
- .logo_coll {
- width: 45px;
- height: 45px;
- display: block;
- overflow: hidden;
- }
- }
- aside {
- text-align: center;
- z-index: 10;
- margin-left: -1px;
- .el-menu {
- width: 200px;
- height: 100%;
- box-sizing: border-box;
- /* background: #323a58 !important; */
- }
- .el-menu--collapse {
- width: 70px;
- height: 100%;
- box-sizing: border-box;
- /* background: #323a58 !important; */
- }
- .menuitem {
- height: 55px;
- padding-left: 28px;
- box-sizing: border-box;
- cursor: pointer;
- color: #1f2e4d;
- font-size: 15px;
- display: flex;
- align-items: center;
- overflow: hidden;
- img {
- width: 20px;
- margin-right: 6px;
- }
- }
- .el-submenu .el-menu-item {
- font-size: 15px;
- padding: 0 0 0 20px !important;
- text-align: left;
- }
- .el-menu-item.is-active {
- background: #ecf2fe !important;
- color: $theme-color !important;
- a {
- color: $theme-color !important;
- }
- }
- .el-submenu__title {
- //padding-left: 0 !important;
- display: flex;
- align-items: center;
- }
- .el-level-path {
- position: relative;
- height: 56px;
- display: flex;
- align-items: center;
- .titleLetter {
- font: 12px "\5FAE\8F6F\96C5\9ED1";
- letter-spacing: 1px;
- left: 0;
- }
- }
- .titleLetter {
- position: absolute;
- bottom: -2px;
- width: auto;
- height: auto;
- visibility: visible;
- font-size: 12px;
- }
- .el-menu--collapse .el-submenu__title {
- padding-left: 20px !important;
- }
- }
- .el-submenu__title:hover,
- .el-menu-item:hover {
- background: #ecf2fe !important;
- }
- .subItem {
- overflow: hidden;
- .sub-item {
- height: 55px;
- padding-left: 52px;
- box-sizing: border-box;
- cursor: pointer;
- color: #1f2e4d;
- font-size: 15px;
- display: flex;
- align-items: center;
- overflow: hidden;
- &.sub_act {
- background: #dbe4fc;
- }
- }
- }
- .menu-expanded > .el-menu-vertical-demo {
- // width: 200px;
- // min-height: calc(100vh - 80px);
- color: #fff;
- padding-bottom: 20px;
- overflow: hidden;
- overflow-y: auto;
- border-right: none;
- /* .el-submenu > .el-menu > .active {
- background: rgba($color: #fdb863, $alpha: 0.2) !important;
- color: #fdb863 !important;
- } */
- }
- .el-submenu__title > i:nth-of-type(1) {
- color: #c0c4cc !important;
- }
- }
- .left_section_logo {
- width: 148px;
- height: 38px;
- }
- #main_right {
- width: 100%;
- overflow: hidden;
- background: #f5f7f9;
- position: relative;
- .main_right_top {
- // width: 100%;
- background: #fff;
- height: 60px;
- box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30px;
- .main_left_container {
- display: flex;
- flex-shrink: 0;
- align-items: center;
- .main_left_section {
- display: flex;
- align-items: center;
- }
- .approval_notice {
- display: flex;
- align-items: center;
- margin-left: 60px;
- img {
- margin-right: 10px;
- }
- div {
- font-size: 16px;
- font-family: PingFang SC-Regular, PingFang SC;
- font-weight: 400;
- color: #ee9a34;
- line-height: 19px;
- }
- }
- }
- .coll_btn {
- margin-right: 20px;
- .coll_ico {
- font-size: 22px;
- display: block;
- cursor: pointer;
- color: #606266;
- &:hover {
- color: #4099ef;
- }
- }
- }
- .breadcrumb-container {
- padding: 12px 20px;
- box-sizing: border-box;
- line-height: 18px;
- margin-bottom: 0px;
- .title {
- width: 150px;
- color: #475669;
- float: left;
- }
- .breadcrumb-inner {
- font: 14px/19px "微软雅黑";
- }
- }
- .breadFixed {
- display: block !important;
- background: rgb(255, 255, 255);
- border-bottom: 1px solid #eaeaea;
- padding: 13px 245px 12px 20px;
- box-sizing: border-box;
- position: fixed;
- top: 60px;
- left: 150px;
- right: 0;
- z-index: 10;
- overflow: hidden;
- }
- .breadCollapsedFixed {
- display: block !important;
- background: rgb(255, 255, 255);
- border-bottom: 1px solid #eaeaea;
- padding: 15px 105px 15px 25px;
- box-sizing: border-box;
- position: fixed;
- top: 60px;
- left: 60px;
- right: 0;
- z-index: 10;
- }
- .userinfo {
- /* min-width: 420px;
- width: 480px; */
- height: 60px;
- text-align: right;
- overflow: hidden;
- position: relative;
- margin-left: 15px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .userinfo-fingerpost {
- display: flex;
- align-items: center;
- // margin-right: 50px;
- color: $theme-color;
- .el-button:hover {
- background: #ecf2fe;
- }
- }
- .userinfo-inner {
- cursor: pointer;
- color: #666 !important;
- display: flex;
- align-items: center;
- font-size: 16px;
- img {
- width: 25px;
- height: 25px;
- margin: 10px;
- }
- }
- .userinfo-inner:hover {
- color: #5882ef;
- }
- .help-center-inner {
- }
- .icon-box-item {
- padding: 12px;
- border-radius: 4px;
- &:hover {
- background: #ecf2fe;
- }
- }
- }
- }
- .right_section {
- display: flex;
- align-items: center;
- }
- .lang-content {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100px;
- height: 40px;
- border-radius: 4px;
- color: #0052d9;
- background-color: #ecf2fe;
- cursor: pointer;
- }
- .safariStyle {
- border-right: none;
- margin-left: -1px;
- }
- .content-container {
- //height: calc(100vh - 90px);
- background: #f2f6fa;
- // position: relative;
- overflow-y: auto;
- position: absolute;
- //padding-top: 22px;
- left: 0;
- right: 0;
- top: 68px; //应该是60px 但为了留出header的box-shadow多移了8px
- bottom: 0;
- z-index: 100;
- /*修改滚动条样式*/
- &::-webkit-scrollbar {
- width: 10px;
- height: 10px;
- }
- &::-webkit-scrollbar-track {
- background: rgb(239, 239, 239);
- border-radius: 2px;
- }
- &::-webkit-scrollbar-thumb {
- background: #ccc;
- border-radius: 10px;
- }
- &::-webkit-scrollbar-thumb:hover {
- background: #888;
- }
- &::-webkit-scrollbar-corner {
- background: #666;
- }
- /**/
- .contentc {
- width: 100%;
- overflow: auto;
- .content-wrapper {
- width: 100%;
- //padding-top:22px,是给header的box-shadow留出位置;
- //padding-bottom:22px,是给内容页的滚动条留出位置
- padding: 22px 30px;
- box-sizing: border-box;
- overflow: auto;
- }
- .note_entrance {
- display: inline-block;
- position: absolute;
- right: 20px;
- top: 50%;
- height: 100%;
- transform: translateY(-50%);
- > img {
- width: 20px;
- margin-right: 5px;
- vertical-align: middle;
- }
- }
- }
- }
- }
- }
- </style>
|