changelange.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <template>
  2. <view class="page">
  3. <u-navbar leftText="返回" :title="title" :safeAreaInsetTop="true" :placeholder='true'>
  4. <view class="u-nav-slot" slot="left" @click="retur">
  5. <!-- <u-icon name="arrow-left" size="19"></u-icon> -->
  6. <!-- <u-line direction="column" :hairline="false" length="16" margin="0 8px"></u-line> -->
  7. <u-icon name="close" size="22"></u-icon>
  8. </view>
  9. </u-navbar>
  10. <view class="btn-list">
  11. <view class="language" data-lang="zh-CN" @tap="langChange"> <text>简体中文</text>
  12. <image v-if="languageSelect=='zh-CN'" class="selected" src="../static/mine/326.png" mode=""></image>
  13. </view>
  14. <view class="language" data-lang="en-US" @tap="langChange"> <text>English</text>
  15. <image v-if="languageSelect=='en-US'" class="selected" src="../static/mine/326.png" mode=""></image>
  16. </view>
  17. <view class="language" data-lang="es-ES" @tap="langChange"> <text>Español</text>
  18. <image v-if="languageSelect=='es-ES'" class="selected" src="../static/mine/326.png" mode=""></image>
  19. </view>
  20. <view class="language" data-lang="it-IT" @tap="langChange"> <text>Italiano</text>
  21. <image v-if="languageSelect=='it-IT'" class="selected" src="../static/mine/326.png" mode=""></image>
  22. </view>
  23. </view>
  24. <view class="bottom u-flex u-row-between"
  25. style="position: fixed;bottom:80rpx;width: 750rpx;padding: 20rpx 24rpx 24rpx 0;box-sizing: border-box;">
  26. <view class="btnleft" @click="toindex">跳过</view>
  27. <view class="btnright" style="margin-right: 24rpx;" @click="enter">确定</view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. languageSelect: 'zh-CN',
  36. title: ''
  37. }
  38. },
  39. computed: {
  40. i18n() {
  41. return this.$t('index')
  42. }
  43. },
  44. methods: {
  45. retur() {
  46. uni.navigateBack()
  47. },
  48. langChange(e) {
  49. const {
  50. lang
  51. } = e.currentTarget.dataset
  52. this._i18n.locale = lang
  53. this.languageSelect = lang
  54. uni.setNavigationBarTitle({
  55. title: this.i18n.switchLanguage
  56. })
  57. this.title = this.i18n.switchLanguage
  58. },
  59. enter() {
  60. uni.setStorageSync("language", this.languageSelect)
  61. this.$u.toast('登录成功')
  62. setTimeout(() => {
  63. uni.switchTab({
  64. url: '/pages/index/index'
  65. })
  66. }, 800)
  67. },
  68. toindex() {
  69. this.$u.toast('登录成功')
  70. setTimeout(() => {
  71. uni.switchTab({
  72. url: '/pages/index/index'
  73. })
  74. }, 800)
  75. }
  76. },
  77. created() {
  78. this.languageSelect = this._i18n.locale
  79. this.title = this.i18n.switchLanguage
  80. uni.setNavigationBarTitle({
  81. title: this.i18n.switchLanguage
  82. })
  83. },
  84. }
  85. </script>
  86. <style scoped lang="scss">
  87. .page {
  88. padding: 20rpx 24rpx;
  89. background-color: #fff !important;
  90. height: calc(100vh - 40rpx);
  91. .btnleft {
  92. width: 280rpx;
  93. height: 88rpx;
  94. border-radius: 48rpx;
  95. border: 2rpx solid rgba(151, 151, 151, 0.4);
  96. line-height: 88rpx;
  97. text-align: center;
  98. font-family: PingFangSC, PingFang SC;
  99. font-weight: 400;
  100. font-size: 32rpx;
  101. color: #333333;
  102. }
  103. .btnright {
  104. width: 380rpx;
  105. height: 88rpx;
  106. background: #F83224;
  107. border-radius: 48rpx;
  108. font-family: PingFangSC, PingFang SC;
  109. font-weight: 400;
  110. font-size: 32rpx;
  111. color: #FFFFFF;
  112. line-height: 88rpx;
  113. text-align: center;
  114. font-style: normal;
  115. }
  116. .btn-list {
  117. background-color: #fff;
  118. border-radius: 16rpx;
  119. padding: 0 20rpx;
  120. .language {
  121. display: flex;
  122. align-items: center;
  123. justify-content: space-between;
  124. height: 110rpx;
  125. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  126. .selected {
  127. width: 36rpx;
  128. height: 36rpx;
  129. }
  130. }
  131. }
  132. }
  133. </style>