// .js
my.ix.oncashiereventreceive((r) => {
if (r.biztype === 'result_closed')
my.showtoast({content: '收银台关闭'});
else if (r.biztype === 'result_btn_function')
my.showtoast({content: '收银台自定义按钮按下'});
else
my.showtoast({content: 'result: ' r.biztype});
});