ensureExplain.vue 612 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="page">
  3. <u-parse :content="agreementContent.content_cn"></u-parse>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. agreementContent: "",
  11. };
  12. },
  13. methods: {
  14. getAgreementContent() {
  15. uni.$u.http.get(`/api/agreement?code=margin_rule`).then((res) => {
  16. console.log(res);
  17. this.agreementContent = res;
  18. });
  19. },
  20. },
  21. mounted() {
  22. this.getAgreementContent();
  23. },
  24. };
  25. </script>
  26. <style>
  27. .page {
  28. width: 94vw;
  29. background-color: #fff;
  30. padding: 0 24rpx;
  31. font-size: 28rpx;
  32. color: #222;
  33. opacity: 0.6;
  34. }
  35. </style>