setting.vue 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <view>
  3. <!-- 设置 -->
  4. <u-card :border="false" padding="30" box-shadow="0px 1px 10px rgba(0,0,0,0.2)" border-radius="20" :show-foot="false"
  5. :show-head="false">
  6. <view slot="body">
  7. <view class="u-flex u-row-between">
  8. <view class="">
  9. <u-image width="130rpx" height="130rpx" src="../../../static/sailun/head-portrait-2.png" :lazy-load="true" shape="circle">
  10. <view slot="error" style="font-size: 24rpx;" :fade="true" duration="450">加载失败
  11. </view>
  12. </u-image>
  13. </view>
  14. <view class="u-flex">
  15. <view class="u-m-r-50" style="color:#0D79EC;font-size: 32rpx;">修改头像</view>
  16. <u-icon name="arrow-right" color="#0D79EC" size="28"></u-icon>
  17. </view>
  18. </view>
  19. </view>
  20. </u-card>
  21. <u-card :border="false" padding="20" box-shadow="0px 1px 10px rgba(0,0,0,0.2)" border-radius="20" :show-foot="false"
  22. :show-head="false">
  23. <view slot="body">
  24. <template>
  25. <u-cell-group :border="false">
  26. <u-cell-item title="收获地址管理">
  27. <u-icon slot="icon" size="42" name="location-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
  28. </u-cell-item>
  29. <u-cell-item title="门店名称" value="青岛赛轮轮胎店">
  30. <u-icon slot="icon" size="42" name="shop-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
  31. </u-cell-item>
  32. <u-cell-item title="门店联系人" value="张三">
  33. <u-icon slot="icon" size="42" name="contact" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
  34. </u-cell-item>
  35. <u-cell-item title="联系电话" value="13443135664">
  36. <u-icon slot="icon" size="42" name="phone-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
  37. </u-cell-item>
  38. <u-cell-item title="用户协议">
  39. <u-icon slot="icon" size="42" name="friends-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
  40. </u-cell-item>
  41. <u-cell-item title="隐私政策">
  42. <u-icon slot="icon" size="42" name="info-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
  43. </u-cell-item>
  44. <u-cell-item title="版本检测" value="1.29" :arrow="false" :border-bottom="false">
  45. <u-icon slot="icon" size="42" name="setting-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
  46. </u-cell-item>
  47. </u-cell-group>
  48. </template>
  49. </view>
  50. </u-card>
  51. <u-button type="primary" @click="exit" :ripple="true" ripple-bg-color="#99d4ff" style="margin: 20rpx;">安全退出</u-button>
  52. </view>
  53. </template>
  54. <script>
  55. export default {
  56. data() {
  57. return {
  58. }
  59. },
  60. methods: {
  61. exit(){
  62. this.$u.route({
  63. url: "pages/login/index",
  64. type:"reLaunch"
  65. })
  66. }
  67. }
  68. }
  69. </script>
  70. <style>
  71. </style>