环卫车小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
816 B

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
  1. <template>
  2. <view class="se-p-20">
  3. <view class="se-c-black se-fw-6 se-fs-28">
  4. {{detail.title}}
  5. </view>
  6. <view class="se-mt-20">
  7. <u-parse :content="detail.content" :previewImg="true"></u-parse>
  8. <!-- <image class="se-w-p-100" src="https://cdn.uviewui.com/uview/swiper/swiper1.png" mode="widthFix"></image> -->
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. import { queryNewsById } from "@/common/api.js"
  14. export default{
  15. data(){
  16. return{
  17. id:null,
  18. detail:{}
  19. }
  20. },
  21. onLoad(options) {
  22. this.id=options.id
  23. this.onQueryNewsByDetail()
  24. },
  25. methods:{
  26. onQueryNewsByDetail(){
  27. queryNewsById({newsId:this.id}).then(response=>{
  28. console.info('onQueryNewsByDetail',response)
  29. this.detail = response.result
  30. }).catch(error=>{
  31. })
  32. }
  33. }
  34. }
  35. </script>
  36. <style>
  37. </style>