This commit is contained in:
linfso 2024-11-19 15:40:01 +08:00
parent 3119c47a50
commit 6e5518e7e4
3 changed files with 11 additions and 12 deletions

View File

@ -26,7 +26,7 @@
<div v-if="blSupportKf==1" style="width:10px;height: 0px;">
<iframe frameborder="0" :src="rlKefuURL" width="100%" height="100%" />
<iframe frameborder="0" :src="hideRlKefuURL" width="100%" height="100%" />
</div>
<div class="right-menu">
@ -202,6 +202,7 @@ export default {
needRstPwd:false,
openRstPwd:false,
hideRlKefuURL:null,
rlKefuURL:null,
openOnlineKefu:false,
@ -262,7 +263,6 @@ export default {
this.initOnlineKefu();
},
mounted() {
this.initKFClient();
this.checkIsNeedRstPwd();
this.checkSiteBalance();
},
@ -313,7 +313,7 @@ export default {
})
getKefuSsoToken().then(res=>{
this.rlKefuURL="https://ykf.7moor.com?token="+res.data;
this.hideRlKefuURL="https://ykf.7moor.com?token="+res.data;
});
@ -323,19 +323,18 @@ export default {
return;
}
this.initOnlineKefu();
getKefuSsoToken().then(res=>{
this.rlKefuURL="https://ykf.7moor.com?token="+res.data;
});
// this.initOnlineKefu();
this.openOnlineKefu=true;
},
goToRecharge(){
this.openPrepaidRecharge=true;
// /fAZrq2/PrepaidRechargeRegister
},
// 初始化客服
initKFClient(){
// qimoClientId = {userId: this.empCode, nickName:this.empName,agent:'8000',customField: {}, priority: false}
// console.log(qimoClientId);
// this.insertJsScript('https://ykf-weixin01.7moor.com/javascripts/7moorInit.js?accessId=0c6a3ec0-020b-11ef-a016-bf340ef083f1&autoShow=true&language=ZHCN');
},
toggleSideBar() {
this.$store.dispatch('app/toggleSideBar')
},

View File

@ -3,7 +3,7 @@
<div class="app-container">
<div class="tab-container">
<el-tabs v-model="activeTab" class="center-tabs" @tab-click="handleTabsClick" @tab-remove="removeTab">
<el-tab-pane label="海陆空批次列表" name="billList" >
<el-tab-pane label="货物组批次列表" name="billList" >
<BigBatchListPanel ref="refBatchList" @onCreate="onCreateBatch" @onUpdate="onUpdateBatch" @onView="onViewBatch"> </BigBatchListPanel>
</el-tab-pane>
<el-tab-pane label="批次编辑" name="batchEdit" v-if="openEditForm" closable="" >

View File

@ -56,7 +56,7 @@
</span>
<el-select v-model="coData.transType" placeholder="运输方式" clearable filterable >
<el-option
v-for="dict in dict.type.emis_biz_shipping_method.filter(item => (item.value != '1' && item.value!='5') )"
v-for="dict in dict.type.emis_biz_shipping_method"
:key="dict.value"
:label="dict.label"
:value="dict.value"