index.js 201 B

1234567891011121314
  1. import history from './../../utils/history';
  2. Page({
  3. onLoad() {},
  4. onReachBottom() {},
  5. jump() {
  6. history.push({
  7. title: '预约记录',
  8. pageType: 'hospital-payment'
  9. });
  10. }
  11. });