selectRole.js 255 B

12345678910111213141516
  1. Page({
  2. data: {},
  3. onLoad() {
  4. },
  5. goToCustomer(){
  6. my.navigateTo({
  7. url: '../../customer/myServantList/myServantList'
  8. });
  9. },
  10. goToServant(){
  11. my.navigateTo({
  12. url: '../../servant/myCustomerList/myCustomerList'
  13. });
  14. }
  15. });