xieyi.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <view class="page">
  3. <!-- <view class="" style="text-align: center;">{{contenttitle}}</view> -->
  4. <u-parse :content="content"></u-parse>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. content: "",
  12. contenttitle:'',
  13. language:'zh-CN',
  14. code:''
  15. };
  16. },
  17. onLoad(options) {
  18. if (uni.getStorageSync("language") != "") {
  19. this.language = uni.getStorageSync("language");
  20. }
  21. if(options.code){
  22. this.code = options.code
  23. }
  24. },
  25. methods: {
  26. getAgreementContent(code) {
  27. uni.$u.http.get(`/api/agreement?code=`+code ).then((res) => {
  28. if (this.language == 'zh-CN') {
  29. this.content = res.content_cn
  30. this.contenttitle = res.name_cn
  31. }
  32. if (this.language == 'en-US') {
  33. this.content = res.content_en
  34. this.contenttitle = res.name_en
  35. }
  36. if (this.language == 'es-ES') {
  37. this.content = res.content_es
  38. this.contenttitle = res.name_es
  39. }
  40. if (this.language == 'it-IT') {
  41. this.content = res.content_ita
  42. this.contenttitle = res.name_ita
  43. }
  44. uni.setNavigationBarTitle({
  45. title:this.contenttitle
  46. })
  47. });
  48. },
  49. },
  50. mounted() {
  51. this.getAgreementContent(this.code);
  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. min-height: calc(100vh);
  64. }
  65. </style>