privacyPolicy.vue 525 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view v-html="agreement"> </view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. agreement: "",
  9. };
  10. },
  11. computed: {
  12. i18n() {
  13. return this.$t("index");
  14. },
  15. },
  16. methods: {
  17. getAgreement() {
  18. uni.$u.http.get(`/api/agreement?code=private`).then((res) => {
  19. this.agreement = res.content_cn;
  20. });
  21. },
  22. },
  23. mounted() {
  24. this.getAgreement();
  25. uni.setNavigationBarTitle({
  26. title: this.i18n.privacy,
  27. });
  28. },
  29. };
  30. </script>
  31. <style></style>