index.js 295 B

12345678910111213141516
  1. import ad from '../index/ad'
  2. ad({
  3. data: {
  4. actions: [{
  5. type: 'default',
  6. text: '微信支付',
  7. }, {
  8. text: '现金支付',
  9. type: 'primary',
  10. }],
  11. },
  12. onAction(e) {
  13. console.log('onAction', e.detail)
  14. },
  15. })