特易招,招聘小程序
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.

123 lines
2.4 KiB

6 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="系统设置" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="frame">
  5. <view class="content">
  6. <view class="title">账号设置</view>
  7. <uv-cell
  8. icon="coupon"
  9. title="切换账号"
  10. isLink
  11. iconStyle="font-size: 34rpx;"
  12. rightIconStyle="font-size: 34rpx;">
  13. <template #icon>
  14. <image src="../static/setting/1.png" mode=""
  15. style="width: 30rpx;height: 30rpx;"></image>
  16. </template>
  17. </uv-cell>
  18. <uv-cell
  19. icon="coupon"
  20. title="切换身份"
  21. isLink
  22. iconStyle="font-size: 34rpx;"
  23. rightIconStyle="font-size: 34rpx;">
  24. <template #icon>
  25. <image src="../static/setting/1.png" mode=""
  26. style="width: 30rpx;height: 30rpx;"></image>
  27. </template>
  28. </uv-cell>
  29. <uv-cell
  30. icon="coupon"
  31. title="修改密码"
  32. isLink
  33. iconStyle="font-size: 34rpx;"
  34. rightIconStyle="font-size: 34rpx;">
  35. <template #icon>
  36. <image src="../static/setting/1.png" mode=""
  37. style="width: 30rpx;height: 30rpx;"></image>
  38. </template>
  39. </uv-cell>
  40. </view>
  41. <view class="content">
  42. <view class="title">账号设置</view>
  43. <uv-cell
  44. icon="coupon"
  45. title="清理缓存"
  46. isLink
  47. iconStyle="font-size: 34rpx;"
  48. rightIconStyle="font-size: 34rpx;">
  49. <template #icon>
  50. <image src="../static/setting/1.png" mode=""
  51. style="width: 30rpx;height: 30rpx;"></image>
  52. </template>
  53. </uv-cell>
  54. <uv-cell
  55. icon="coupon"
  56. title="退出登录"
  57. isLink
  58. iconStyle="font-size: 34rpx;"
  59. rightIconStyle="font-size: 34rpx;">
  60. <template #icon>
  61. <image src="../static/setting/1.png" mode=""
  62. style="width: 30rpx;height: 30rpx;"></image>
  63. </template>
  64. </uv-cell>
  65. </view>
  66. </view>
  67. </view>
  68. </template>
  69. <script>
  70. export default {
  71. data() {
  72. return {
  73. }
  74. },
  75. methods: {
  76. tapItem(item, index) {
  77. if (item.text === this.$t('pageTitle.languageSwitch')) {
  78. this.$refs.changeLanguage.open();
  79. }
  80. }
  81. },
  82. }
  83. </script>
  84. <style scoped lang="scss">
  85. .page {
  86. background-color: #FFF;
  87. height: 100vh;
  88. .frame {
  89. .content {
  90. margin: 40rpx 0;
  91. .title {
  92. font-size: 30rpx;
  93. color: #b0b0b0;
  94. padding: 0 30rpx;
  95. }
  96. .uv-cell__body{
  97. padding: 40rpx 20rpx;
  98. margin-top: 10rpx;
  99. }
  100. }
  101. }
  102. }
  103. </style>