preview-image.js 438 字节
Newer Older
D
DCloud_LXH 已提交
1
const {
2
  emit,
D
DCloud_LXH 已提交
3 4 5
  invokeCallbackHandler: invoke
} = UniServiceJSBridge

6 7
export function previewImage (args, callbackId) {
  emit('onShowPreviewImage', args, function (res) {
fxy060608's avatar
fxy060608 已提交
8 9 10 11
    invoke(callbackId, {
      errMsg: 'previewImage:ok'
    })
  })
D
DCloud_LXH 已提交
12 13 14
}

export function closePreviewImage (_, callbackId) {
15
  emit('onClosePreviewImage', function () {
D
DCloud_LXH 已提交
16 17 18
    invoke(callbackId, {
      errMsg: 'closePreviewImage:ok'
    })
19
  })
D
DCloud_LXH 已提交
20
}