index.ts 305 B

1234567891011121314151617181920212223
  1. Component({
  2. properties: {
  3. title: {
  4. type: String,
  5. value: ''
  6. },
  7. showBtn: {
  8. type: Boolean,
  9. value: true
  10. }
  11. },
  12. data: {
  13. },
  14. attached: async function () {
  15. },
  16. methods: {
  17. gotoLogin(){
  18. wx.navigateTo({
  19. url: "../../userLogin/pages/login/index"
  20. })
  21. }
  22. }
  23. })