index.js 388 B

1234567891011121314151617181920212223242526
  1. import history from './../../utils/history';
  2. Page({
  3. onLoad() {},
  4. onReachBottom() {},
  5. data: {
  6. background: 'linear-gradient(138.81deg,#007dff 0%,#75c4ff 73%,#6eddff 100%)'
  7. },
  8. onReadyHeader(e) {
  9. console.log(111, e);
  10. },
  11. onComplete(e) {
  12. console.log(e);
  13. },
  14. jump() {
  15. history.push({
  16. title: '主页',
  17. pageType: 'hospital-payment'
  18. });
  19. }
  20. });