提交 cae03386 编写于 作者: Q q30043944

ArkTs适配修改

Signed-off-by: Nq30043944 <qinlong18@huawei.com>
上级 32ba6c79
...@@ -1186,20 +1186,19 @@ importCredential(credentialInfo: string, callback: AsyncCallback<{resultInfo: st ...@@ -1186,20 +1186,19 @@ importCredential(credentialInfo: string, callback: AsyncCallback<{resultInfo: st
deviceId: string, deviceId: string,
version: string, version: string,
devicePk : string, devicePk : string,
credentialData : CredentialData[] credentialData : CredentialData
}
let credentialData: CredentialData = {
credentialType: 2,
credentialId: "102",
serverPk: "3059301306072A8648CE3D020106082A8648CE3D03",
pkInfoSignature : "30440220490BCB4F822004C9A76AB8D97F80041FC0E",
pkInfo: "",
authCode: "",
peerDeviceId: ""
} }
let credentialData: CredentialData = [
{
credentialType: 2,
credentialId: "102",
serverPk: "3059301306072A8648CE3D020106082A8648CE3D03",
pkInfoSignature : "30440220490BCB4F822004C9A76AB8D97F80041FC0E",
pkInfo: "",
authCode: "",
peerDeviceId: ""
}
]
let credentialInfo: CredentialInfo = { let credentialInfo: CredentialInfo = {
processType: 1, processType: 1,
...@@ -1375,7 +1374,14 @@ on(type: 'deviceStateChange', callback: Callback&lt;{ action: DeviceStateChange ...@@ -1375,7 +1374,14 @@ on(type: 'deviceStateChange', callback: Callback&lt;{ action: DeviceStateChange
class Data { class Data {
action: deviceManager.DeviceStateChangeAction = 0 action: deviceManager.DeviceStateChangeAction = 0
device: deviceManager.DeviceInfo = {} device: deviceManager.DeviceInfo = {
deviceId: "",
deviceName: "",
deviceType: 0,
networkId: "",
range: 0,
authForm:0,
}
} }
try { try {
...@@ -1413,7 +1419,14 @@ off(type: 'deviceStateChange', callback?: Callback&lt;{ action: DeviceStateChang ...@@ -1413,7 +1419,14 @@ off(type: 'deviceStateChange', callback?: Callback&lt;{ action: DeviceStateChang
class Data { class Data {
action: deviceManager.DeviceStateChangeAction = 0 action: deviceManager.DeviceStateChangeAction = 0
device: deviceManager.DeviceInfo = {} device: deviceManager.DeviceInfo = {
deviceId: "",
deviceName: "",
deviceType: 0,
networkId: "",
range: 0,
authForm:0,
}
} }
try { try {
...@@ -1454,7 +1467,6 @@ on(type: 'deviceFound', callback: Callback&lt;{ subscribeId: number, device: Dev ...@@ -1454,7 +1467,6 @@ on(type: 'deviceFound', callback: Callback&lt;{ subscribeId: number, device: Dev
device: deviceManager.DeviceInfo = {} device: deviceManager.DeviceInfo = {}
} }
subscribeId: number, device: DeviceInfo
try { try {
dmInstance.on('deviceFound', (data: Data) => { dmInstance.on('deviceFound', (data: Data) => {
console.info("deviceFound:" + JSON.stringify(data)); console.info("deviceFound:" + JSON.stringify(data));
...@@ -1490,7 +1502,14 @@ off(type: 'deviceFound', callback?: Callback&lt;{ subscribeId: number, device: D ...@@ -1490,7 +1502,14 @@ off(type: 'deviceFound', callback?: Callback&lt;{ subscribeId: number, device: D
class Data { class Data {
subscribeId: number = 0 subscribeId: number = 0
device: deviceManager.DeviceInfo = {} device: deviceManager.DeviceInfo = {
deviceId: "",
deviceName: "",
deviceType: 0,
networkId: "",
range: 0,
authForm:0,
}
} }
try { try {
......
...@@ -828,7 +828,12 @@ on(type: 'deviceStateChange', callback: Callback&lt;{ action: DeviceStateChange, ...@@ -828,7 +828,12 @@ on(type: 'deviceStateChange', callback: Callback&lt;{ action: DeviceStateChange,
class Data { class Data {
action: deviceManager.DeviceStateChange = 0 action: deviceManager.DeviceStateChange = 0
device: deviceManager.DeviceBasicInfo = {} device: deviceManager.DeviceBasicInfo = {
deviceId: "",
deviceName: "",
deviceType: "",
networkId: "",
}
} }
try { try {
...@@ -866,7 +871,12 @@ off(type: 'deviceStateChange', callback?: Callback&lt;{ action: DeviceStateChang ...@@ -866,7 +871,12 @@ off(type: 'deviceStateChange', callback?: Callback&lt;{ action: DeviceStateChang
class Data { class Data {
action: deviceManager.DeviceStateChange = 0 action: deviceManager.DeviceStateChange = 0
device: deviceManager.DeviceBasicInfo = {} device: deviceManager.DeviceBasicInfo = {
deviceId: "",
deviceName: "",
deviceType: "",
networkId: "",
}
} }
try { try {
...@@ -903,7 +913,12 @@ on(type: 'discoverSuccess', callback: Callback&lt;{ device: DeviceBasicInfo }&gt ...@@ -903,7 +913,12 @@ on(type: 'discoverSuccess', callback: Callback&lt;{ device: DeviceBasicInfo }&gt
import { BusinessError } from '@ohos.base' import { BusinessError } from '@ohos.base'
class Data { class Data {
device: deviceManager.DeviceBasicInfo = {} device: deviceManager.DeviceBasicInfo = {
deviceId: "",
deviceName: "",
deviceType: "",
networkId: "",
}
} }
try { try {
...@@ -940,7 +955,12 @@ off(type: 'discoverSuccess', callback?: Callback&lt;{ device: DeviceBasicInfo }& ...@@ -940,7 +955,12 @@ off(type: 'discoverSuccess', callback?: Callback&lt;{ device: DeviceBasicInfo }&
import { BusinessError } from '@ohos.base' import { BusinessError } from '@ohos.base'
class Data { class Data {
device: deviceManager.DeviceBasicInfo = {} device: deviceManager.DeviceBasicInfo = {
deviceId: "",
deviceName: "",
deviceType: "",
networkId: "",
}
} }
try { try {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册