ensureExplain.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <view class="page">
  3. <u-parse :content="agreementContent"></u-parse>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. agreementContent: "",
  11. language: "",
  12. };
  13. },
  14. computed: {
  15. i18n() {
  16. return this.$t("index");
  17. },
  18. },
  19. methods: {
  20. getAgreementContent() {
  21. uni.$u.http.get(`/api/agreement?code=margin_rule`).then((res) => {
  22. this.agreementContent = res;
  23. //判断选择的语言
  24. if (this.language == "zh-CN") {
  25. this.agreementContent = res.content_cn;
  26. } else if (this.language == "en-US") {
  27. this.agreementContent = res.content_en;
  28. } else if (this.language == "es-ES") {
  29. this.agreementContent = res.content_es;
  30. } else {
  31. this.agreementContent = res.content_ita;
  32. }
  33. });
  34. },
  35. },
  36. mounted() {
  37. //获取当前选择的语言
  38. const _this = this;
  39. uni.getStorage({
  40. key: "language", // 这里替换成你要获取的数据的key
  41. success: function (res) {
  42. _this.language = res.data; // 输出获取到的数据
  43. },
  44. fail: function () {
  45. // 获取失败的处理逻辑
  46. },
  47. });
  48. this.getAgreementContent();
  49. uni.setNavigationBarTitle({
  50. title: this.i18n.marginStatement,
  51. });
  52. },
  53. };
  54. </script>
  55. <style>
  56. .page {
  57. width: 94vw;
  58. background-color: #fff;
  59. padding: 0 24rpx;
  60. font-size: 28rpx;
  61. color: #222;
  62. opacity: 0.6;
  63. }
  64. </style>