userAgreement.vue 884 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view>
  3. <navigation-bar :title="title" background-color="#fff" front-color="#000000" />
  4. <view style="margin-bottom: 15px;" v-html="content"></view>
  5. <u-button type="primary" shape="circle" text="我已知晓并同意" @click="back()"></u-button>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. id: 0,
  13. content: '',
  14. title: '',
  15. }
  16. },
  17. onLoad(option) {
  18. this.id = option.id
  19. },
  20. created() {
  21. this.getAgreement()
  22. },
  23. methods: {
  24. getAgreement() {
  25. let params = {
  26. id: this.id
  27. }
  28. this.$api.getAgreement(params).then(res => {
  29. console.log(res)
  30. this.title = res.data.type
  31. this.content = res.data.content
  32. }).catch(err => {
  33. console.log(err)
  34. })
  35. },
  36. back() {
  37. uni.navigateBack({
  38. delta: 1,
  39. })
  40. }
  41. }
  42. }
  43. </script>
  44. <style lang="scss">
  45. page {
  46. padding: 10px;
  47. }
  48. </style>