// 写入NDEF数据
Ndef.writeNdefMessage({
texts: ['12312收到'],
success: (res) => {
console.log('写入成功', res);
wx.showToast({
title: '写入成功',
icon: 'success'
});
},
fail: (err) => {
console.error('写入失败', err);
app.$modal.alert('写入失败', JSON.stringify(err));
wx.showToast({
title: '写入失败',
icon: 'none'
});
}
});