更新时间:2024-12-19 GMT+08:00
分享

查询当前自定义按钮

接口描述

该接口可查询自定义按钮列表。

注意事项

方法定义

getCustomerButton():Promise<Result>

返回值

Result的结构参考9.7.1返回结构参考-表1 Result 对象参数说明, Result中具体data说明见下表

表1 返回值

类型

描述

customerButtonObj[]

自定义按钮列表,数据类型见表2

示例代码

/**
* 查询当前自定义按钮列表
*/
HWMeeting.getCustomerButton().then((data) => {
  // TODO 显示结果 
 }).catch((e) => {
  // 显示结果
  console.log(e.retCode+":"+e.retMsg);
});

相关文档