金诚优选前端代码
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.

42 lines
768 B

  1. <template>
  2. <view id="setting">
  3. <view class="update-btn" @click="jumpinfo">
  4. <view class="left-item">修改资料</view>
  5. <view class="iconfont icon-jiantou"></view>
  6. </view>
  7. <view class="update-btn" @click="jumplogout">
  8. <view class="left-item">退出登陆</view>
  9. <view class="iconfont icon-jiantou"></view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. jumplogout(){
  21. this.$cookieStorage.clear('user_token');
  22. setTimeout(function(){
  23. wx.navigateBack({})
  24. },1500)
  25. },
  26. jumpinfo(){
  27. wx.navigateTo({
  28. url:'/pages/user/usersetting/usersetting'
  29. })
  30. }
  31. }
  32. }
  33. </script>
  34. <style rel="stylesheet/less" lang="less">
  35. @import "setting.less";
  36. </style>