UNPKG

fcc-core

Version:

Fusion communication center.

17 lines (15 loc) 409 B
export default async function (xw, params) { return new Promise((resolve, reject) => { xw.ajaxRequest([{ service: 'E2501407', USER_CODE: xw.userInfo.USER_CODE, REQ_TYPE: '1' }]).then(data => { if (data.code === '0') { resolve(data.data[0].fixedDev) } else { reject(new xw.BaseException(424, '获取设备失败')) } }) }) }