You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
465 B

  1. <template>
  2. <view>
  3. 引导页
  4. <view @click="tologin()" style="width: 200rpx;height: 80rpx;text-align: center;line-height: 80rpx;margin: 0 auto;border: 1px solid red;margin-top: 400rpx;">登录</view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {};
  11. },
  12. components: {},
  13. onLoad() {},
  14. onShow() {},
  15. methods: {
  16. tologin(){
  17. wx.navigateTo({
  18. url: '/pages/login/index'
  19. });
  20. }
  21. },
  22. };
  23. </script>
  24. <style lang="scss" scoped>
  25. </style>