ab-plugin-vt@VT组件桥接器

# ab-plugin-vt@VT组件桥接器

1.引入

import { Vt } from "@agree/ab-plugin-vt"

2.使用

# init --初始化

支持柜面渠道

let id="vt";
let res = await Vt.init(id);
  • 参数列表:
参数 类型 必填参数 默认值 说明
id string x Vt组件id
  • 返回值: Object
参数 类型 说明
res.msg string handle,句柄
res.result string 成功的标识

对应柜面原SDK: VT.init(id)


# dispose --销毁

支持柜面渠道

let id="vt";
let res = await Vt.dispose(id);
  • 参数列表:
参数 类型 必填参数 默认值 说明
id string x Vt组件的id
  • 返回值: Object
参数 类型 说明

对应柜面原SDK: VT.dispose(id)


# sendMessageTriggerByKeywords --根据屏幕关键字发送对应消息

支持柜面渠道

let keywords="";
let messageKey="";
let res = await Vt.sendMessageTriggerByKeywords(keywords,messageKey);
  • 参数列表:
参数 类型 必填参数 默认值 说明
keywords string x 监听关键字
messageKey string x 发送给交易的key值
  • 返回值: Object
参数 类型 说明
res.result string 预览页面的url

对应柜面原SDK: VT.sendMessageTriggerByKeywords(keywords,messageKey)


# disconnect --与vt断开连接

支持柜面渠道

let res = await Vt.disconnect();
  • 参数列表:
参数 类型 必填参数 默认值 说明
x x
  • 返回值: Object
参数 类型 说明

对应柜面原SDK: VT.disconnect()


# sendCommand --给vt发送指令

支持柜面渠道

let command="";
let res = await Vt.sendCommand(command);
  • 参数列表:
参数 类型 必填参数 默认值 说明
command string x vt指令
  • 返回值: Object
参数 类型 说明

对应柜面原SDK: VT.sendCommand(command)


Last Updated: 2022/4/15 下午5:07:24