This commit is contained in:
linfso 2024-10-30 11:40:19 +08:00
parent b34d411691
commit 2133acb7da
4 changed files with 14 additions and 10 deletions

View File

@ -252,20 +252,20 @@ export default {
this.openRstPwd=true;
});
},
showOnlineKefu(){
initOnlineKefu(){
getKefuSsoToken().then(res=>{
if(res.code==200){
this.rlKefuURL="https://ykf.7moor.com?token="+res.data;
this.openOnlineKefu=true;
}else{
this.$modal.msgError("token fail");
}
}).catch(error => {
this.$modal.msgError(error);
});
},
showOnlineKefu(){
this.initOnlineKefu();
this.openOnlineKefu=true;
},
goToRecharge(){
this.openPrepaidRecharge=true;
@ -273,9 +273,9 @@ export default {
},
// 初始化客服
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');
// 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

@ -428,7 +428,7 @@ export default {
this.titleForm = "修改";
},
handleFormChanged(){
this.openForm = false;
// this.openForm = false;
this.getList();
},
cancelForm(){

View File

@ -20,6 +20,9 @@
<span v-if="emisSettleInvoiceRecord.invoiceType==9"> 其它手工开票</span>
</el-descriptions-item>
<el-descriptions-item label="开票金额" :span="1">¥{{ emisSettleInvoiceRecord.applyMoney }}</el-descriptions-item>
<el-descriptions-item label="加开税点" :span="1">¥{{ emisSettleInvoiceRecord.addTaxRate }}</el-descriptions-item>
<el-descriptions-item label="加开金额" :span="1">¥{{ emisSettleInvoiceRecord.addOpenMoney }}</el-descriptions-item>
<el-descriptions-item label="开票备注" :span="3">{{ emisSettleInvoiceRecord.remark }}</el-descriptions-item>
<!-- <el-descriptions-item label="联系人">{{ emisSettleInvoiceRecord.contact }}</el-descriptions-item> -->

View File

@ -186,7 +186,8 @@
</el-col>
<el-col :span="8">
<el-form-item label="客服密码" prop="kefuPwd">
<el-input v-model="form.kefuPwd" placeholder="请输入客服密码" />
<el-input v-model="form.kefuPwd"
prefix-icon="el-icon-lock" type="password" placeholder="请输入客服密码" show-password />
</el-form-item>
</el-col>