Files
jyshd_mWtK2/addons/kefu/example/kefu_uni/pages/kefu/index.vue
T
li 1b24994e74 feat: 后端全量更新 - 含所有本次需求
- Contract.php: 返回合约账户余额(balance_contract)
- My.php: 地址管理增加BTC/ETH
- AppContract.php: 一键平仓(closeall)
- AppProxy.php: 代理专属注册链接 + 分级权限(L1/L2)
- site.php: 手续费减半(0.018→0.009)
- agent_permission_setup.sql: 代理权限SQL
- crypto_news_crawler.py: 新闻自动采集脚本
2026-03-30 20:16:32 +08:00

40 lines
950 B
Vue
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<view class="main">
<navigator url="/pages/kefu/kefu">打开客服会话窗口-游客</navigator>
<!-- <navigator url="/pages/kefu/kefu?token=b3cc58e6-b433-48a3-8dc9-8a28e4036b62">打开客服会话窗口-指定用户</navigator> -->
<!-- 可选参数用户的 `token` 固定客服ID `fixed_csr` -->
<!-- 不传递 `token` 则自动建立游客身份 -->
<!-- 后台转移过客服代表的客户不支持指定 `fixed_csr`-->
<!-- 本客服系统客户端依赖FastAdmin插件`workerman在线客服系统`无法单独使用插件介绍/官网地址https://www.fastadmin.net/store/kefu.html -->
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
.main{
height: 50vh;
display: flex;
justify-content: center;
align-items: center;
}
.main navigator{
border: 1px solid #F2F2F2;
padding: 20rpx;
border-radius: 12rpx;
}
</style>