|
@@ -7,13 +7,13 @@
|
|
<img
|
|
<img
|
|
class="logo"
|
|
class="logo"
|
|
v-if="!isCollapse"
|
|
v-if="!isCollapse"
|
|
- src="~@/assets/img/home/logo.png"
|
|
|
|
|
|
+ :src="isTrail?global.g_logo:$setting.g_logo"
|
|
/>
|
|
/>
|
|
<!-- 折叠侧边栏logo尺寸 -->
|
|
<!-- 折叠侧边栏logo尺寸 -->
|
|
<img
|
|
<img
|
|
class="logo_coll"
|
|
class="logo_coll"
|
|
v-else
|
|
v-else
|
|
- src="~@/assets/img/home/eta_mini.png"
|
|
|
|
|
|
+ :src="isTrail?global.g_mini_logo:$setting.g_mini_logo"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
@@ -23,7 +23,7 @@
|
|
<aside class="menu-expanded">
|
|
<aside class="menu-expanded">
|
|
<!--导航菜单-->
|
|
<!--导航菜单-->
|
|
<el-menu
|
|
<el-menu
|
|
- :background-color="$setting.menu_bg"
|
|
|
|
|
|
+ :background-color="isTrail?global.menu_bg:$setting.menu_bg"
|
|
text-color="#333"
|
|
text-color="#333"
|
|
:collapse-transition="false"
|
|
:collapse-transition="false"
|
|
:active-text-color="$setting.theme_color"
|
|
:active-text-color="$setting.theme_color"
|
|
@@ -243,6 +243,10 @@
|
|
>
|
|
>
|
|
</el-dropdown-menu>
|
|
</el-dropdown-menu>
|
|
</el-dropdown>
|
|
</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>
|
|
</div>
|
|
|
|
|
|
<el-dropdown trigger="click" style="width:130px;">
|
|
<el-dropdown trigger="click" style="width:130px;">
|
|
@@ -292,7 +296,9 @@
|
|
|
|
|
|
<!-- //重置初始密码 -->
|
|
<!-- //重置初始密码 -->
|
|
<pwd-dlg :dialogVisiblePwd="dialogVisiblePwd" />
|
|
<pwd-dlg :dialogVisiblePwd="dialogVisiblePwd" />
|
|
-
|
|
|
|
|
|
+ <!-- 问卷调查弹窗 -->
|
|
|
|
+ <questionnaire-dia :dialogVisiblePwd.sync="showQuestionDia" @submitSuccess="questionSubmitSuccess"
|
|
|
|
+ :questionList="questionList"></questionnaire-dia>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -303,15 +309,20 @@ import {
|
|
customInterence,
|
|
customInterence,
|
|
roadshowInterence,
|
|
roadshowInterence,
|
|
getBusinessCode,
|
|
getBusinessCode,
|
|
|
|
+ homeInterface
|
|
} from "api/api.js";
|
|
} from "api/api.js";
|
|
import { getPublicSettingsApi } from '@/api/modules/oldApi';
|
|
import { getPublicSettingsApi } from '@/api/modules/oldApi';
|
|
import PwdDlg from "@/components/pwdDlg.vue";
|
|
import PwdDlg from "@/components/pwdDlg.vue";
|
|
import questionMsgDia from "@/components/questionMsgDia.vue";
|
|
import questionMsgDia from "@/components/questionMsgDia.vue";
|
|
|
|
+import questionnaireDia from "../components/questionnaireDia.vue";
|
|
import EventBus from "@/api/bus.js";
|
|
import EventBus from "@/api/bus.js";
|
|
|
|
+import global from '@/config/setting';
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
PwdDlg,
|
|
PwdDlg,
|
|
questionMsgDia,
|
|
questionMsgDia,
|
|
|
|
+ questionnaireDia,
|
|
},
|
|
},
|
|
inject: ["reload"],
|
|
inject: ["reload"],
|
|
filters: {
|
|
filters: {
|
|
@@ -371,7 +382,11 @@ export default {
|
|
return this.permissionBtn.checkPermissionBtn(
|
|
return this.permissionBtn.checkPermissionBtn(
|
|
this.permissionBtn.baseConfigPermission.sysJump_updateLog
|
|
this.permissionBtn.baseConfigPermission.sysJump_updateLog
|
|
)
|
|
)
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ // 是否是eta试用
|
|
|
|
+ isTrail(){
|
|
|
|
+ return this.$store.state.businessCode == this.$store.state.TRIAL_CODE
|
|
|
|
+ }
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -415,7 +430,12 @@ export default {
|
|
flag2: false, //显示合同提示红点
|
|
flag2: false, //显示合同提示红点
|
|
flag3: false, //显示用印提示红点
|
|
flag3: false, //显示用印提示红点
|
|
dialogVisiblePwd: false, //初始密码的弹框
|
|
dialogVisiblePwd: false, //初始密码的弹框
|
|
-
|
|
|
|
|
|
+ // ----------------问卷调查弹窗
|
|
|
|
+ showQuestionDia:false,
|
|
|
|
+ // 问卷调查icon是否展示
|
|
|
|
+ isQuestionShow:false,
|
|
|
|
+ // 问题列表
|
|
|
|
+ questionList:[],
|
|
flag4: false,
|
|
flag4: false,
|
|
flag5: false, //显示ETA试用相关的红点
|
|
flag5: false, //显示ETA试用相关的红点
|
|
flag6: false, //显示出差相关的红点
|
|
flag6: false, //显示出差相关的红点
|
|
@@ -443,6 +463,8 @@ export default {
|
|
|
|
|
|
//链接系统
|
|
//链接系统
|
|
linkSystems: this.$setting.linkSystems,
|
|
linkSystems: this.$setting.linkSystems,
|
|
|
|
+ bus_code:"",
|
|
|
|
+ global
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
@@ -456,6 +478,9 @@ export default {
|
|
this.isShowApprovalNotice = true;
|
|
this.isShowApprovalNotice = true;
|
|
}
|
|
}
|
|
this.resetLinkSys()
|
|
this.resetLinkSys()
|
|
|
|
+ // this.getBusinessCodeFun()
|
|
|
|
+
|
|
|
|
+ this.getQuestionStaus()
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
if (sessionStorage.getItem("hasGetMenu")) {
|
|
if (sessionStorage.getItem("hasGetMenu")) {
|
|
@@ -467,6 +492,14 @@ export default {
|
|
this.getPublicSettings();
|
|
this.getPublicSettings();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ // 获取商家Code
|
|
|
|
+ // getBusinessCodeFun(){
|
|
|
|
+ // getBusinessCode().then(res=>{
|
|
|
|
+ // if(res.Ret!==200) return
|
|
|
|
+ // this.bus_code = res.Data||''
|
|
|
|
+ // this.$store.commit("SET_BUSINESS_CODE", this.bus_code);
|
|
|
|
+ // })
|
|
|
|
+ // },
|
|
//判断是否为初始密码
|
|
//判断是否为初始密码
|
|
async isInitialPwd() {
|
|
async isInitialPwd() {
|
|
const res = await checkPwd();
|
|
const res = await checkPwd();
|
|
@@ -637,7 +670,28 @@ export default {
|
|
this.roadshowFeedbackList = Data;
|
|
this.roadshowFeedbackList = Data;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
-
|
|
|
|
|
|
+ // 获取用户的问卷调查状态
|
|
|
|
+ getQuestionStaus(){
|
|
|
|
+ if(!this.isTrail){
|
|
|
|
+ this.showQuestionDia=false
|
|
|
|
+ this.isQuestionShow=false
|
|
|
|
+ this.questionList=[]
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ // console.log(this.isTrail,'isTrail');
|
|
|
|
+ homeInterface.getQuestionnaireDetail().then(res=>{
|
|
|
|
+ // console.log(res);
|
|
|
|
+ if(res.Ret == 200){
|
|
|
|
+ this.showQuestionDia=!!res.Data.IsPopup && (!!res.Data.IsShow)
|
|
|
|
+ this.isQuestionShow = !!res.Data.IsShow
|
|
|
|
+ this.questionList = res.Data.Question.List || []
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 问卷提交成功
|
|
|
|
+ questionSubmitSuccess(){
|
|
|
|
+ this.isQuestionShow=false
|
|
|
|
+ },
|
|
// 操作指南的跳转
|
|
// 操作指南的跳转
|
|
toOperation() {
|
|
toOperation() {
|
|
// this.$router.replace({name: '/fingerpost', params: {id: 1}})
|
|
// this.$router.replace({name: '/fingerpost', params: {id: 1}})
|
|
@@ -646,16 +700,11 @@ export default {
|
|
// query: { contractid: this.contractId },
|
|
// query: { contractid: this.contractId },
|
|
// });
|
|
// });
|
|
// window.open(href, "_blank");
|
|
// window.open(href, "_blank");
|
|
- // 获取商家
|
|
|
|
- getBusinessCode().then(res=>{
|
|
|
|
- if(res.Ret!==200) return
|
|
|
|
- const bus_code = res.Data||''
|
|
|
|
- //打开帮助文档
|
|
|
|
- const href = `${process.env.VUE_APP_ETA_HELP_DOCS}?bus_code=${bus_code}`
|
|
|
|
- console.log(href);
|
|
|
|
- // const href = `http://192.168.77.13:3033/help/index?bus_code=${bus_code}`
|
|
|
|
- window.open(href, "_blank");
|
|
|
|
- })
|
|
|
|
|
|
+ //打开帮助文档
|
|
|
|
+ const href = `${process.env.VUE_APP_ETA_HELP_DOCS}?bus_code=${this.$store.state.businessCode}`
|
|
|
|
+ // console.log(href);
|
|
|
|
+ // const href = `http://192.168.77.13:3033/help/index?bus_code=${this.bus_code}`
|
|
|
|
+ window.open(href, "_blank");
|
|
},
|
|
},
|
|
// 跳转去其他的系统
|
|
// 跳转去其他的系统
|
|
async linkToOtherMS({path,key}) {
|
|
async linkToOtherMS({path,key}) {
|
|
@@ -749,15 +798,9 @@ export default {
|
|
.catch(() => {});
|
|
.catch(() => {});
|
|
},
|
|
},
|
|
toDoc(){
|
|
toDoc(){
|
|
- //获取商家code
|
|
|
|
- getBusinessCode().then(res=>{
|
|
|
|
- if(res.Ret!==200) return
|
|
|
|
- const bus_code = res.Data||''
|
|
|
|
- //打开更新日志项目
|
|
|
|
- const href = `${process.env.VUE_APP_ETA_DOCS}?bus_code=${bus_code}`
|
|
|
|
- window.open(href, "_blank");
|
|
|
|
- })
|
|
|
|
-
|
|
|
|
|
|
+ //打开更新日志项目
|
|
|
|
+ const href = `${process.env.VUE_APP_ETA_DOCS}?bus_code=${this.$store.state.businessCode}`
|
|
|
|
+ window.open(href, "_blank");
|
|
},
|
|
},
|
|
collapseHandle () {
|
|
collapseHandle () {
|
|
//折叠导航栏
|
|
//折叠导航栏
|