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; this.openRstPwd=true;
}); });
}, },
showOnlineKefu(){ initOnlineKefu(){
getKefuSsoToken().then(res=>{ getKefuSsoToken().then(res=>{
if(res.code==200){ if(res.code==200){
this.rlKefuURL="https://ykf.7moor.com?token="+res.data; this.rlKefuURL="https://ykf.7moor.com?token="+res.data;
this.openOnlineKefu=true;
}else{ }else{
this.$modal.msgError("token fail"); this.$modal.msgError("token fail");
} }
}).catch(error => { }).catch(error => {
this.$modal.msgError(error); this.$modal.msgError(error);
}); });
},
showOnlineKefu(){
this.initOnlineKefu();
this.openOnlineKefu=true;
}, },
goToRecharge(){ goToRecharge(){
this.openPrepaidRecharge=true; this.openPrepaidRecharge=true;
@ -273,9 +273,9 @@ export default {
}, },
// 初始化客服 // 初始化客服
initKFClient(){ initKFClient(){
qimoClientId = {userId: this.empCode, nickName:this.empName,agent:'8000',customField: {}, priority: false} // qimoClientId = {userId: this.empCode, nickName:this.empName,agent:'8000',customField: {}, priority: false}
console.log(qimoClientId); // console.log(qimoClientId);
this.insertJsScript('https://ykf-weixin01.7moor.com/javascripts/7moorInit.js?accessId=0c6a3ec0-020b-11ef-a016-bf340ef083f1&autoShow=true&language=ZHCN'); // this.insertJsScript('https://ykf-weixin01.7moor.com/javascripts/7moorInit.js?accessId=0c6a3ec0-020b-11ef-a016-bf340ef083f1&autoShow=true&language=ZHCN');
}, },
toggleSideBar() { toggleSideBar() {
this.$store.dispatch('app/toggleSideBar') this.$store.dispatch('app/toggleSideBar')

View File

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

View File

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

View File

@ -186,7 +186,8 @@
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="客服密码" prop="kefuPwd"> <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-form-item>
</el-col> </el-col>