index.js 220 B

1234567891011121314151617
  1. Component({
  2. properties: {
  3. title:"",
  4. showBtn:true
  5. },
  6. data: {
  7. },
  8. attached: async function () {
  9. },
  10. methods: {
  11. gotoLogin(){
  12. wx.navigateTo({
  13. url: "../../userLogin/pages/login/index"
  14. })
  15. }
  16. }
  17. })