panel.js 328 B

123456789101112131415161718
  1. import CustomPage from '../../../base/CustomPage'
  2. const base64 = require('../../images/base64')
  3. CustomPage({
  4. onShareAppMessage() {
  5. return {
  6. title: 'panel',
  7. path: 'page/weui/example/panel/panel'
  8. }
  9. },
  10. onLoad() {
  11. this.setData({
  12. icon20: base64.icon20,
  13. icon60: base64.icon60
  14. })
  15. }
  16. })