zhanshi.vue 796 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="zhanshi">
  3. <h1 style="font-size: 30px;margin: 0 auto; color:orange;">{{this.formData.title}}</h1>
  4. <div style="font-size: 20px;" v-html="this.formData.content">
  5. {{this.formData.content}}
  6. </div>
  7. </div>
  8. </template>
  9. <script type="text/javascript">
  10. export default {
  11. data() {
  12. return {
  13. id: 8,
  14. formData: {}
  15. };
  16. },
  17. created() {
  18. this.loadData();
  19. },
  20. methods: {
  21. async loadData() {
  22. const response = await this.$http.get(`app/newsArticle/5`);
  23. if (response.data.code === 1) {
  24. this.loading = false;
  25. // console.log(response.data)
  26. this.formData = response.data.responseData;
  27. // console.log(response.data.responseData);
  28. }
  29. },
  30. }
  31. };
  32. </script>
  33. <style type="text/css">
  34. </style>