景徳镇旅游微信小程序
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.

45 lines
780 B

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <!-- 文化遗产详情申遗历程详情非遗体验详情 三合一 -->
  3. <view class="page">
  4. <navbar title="申遗历程" leftClick @leftClick="$utils.navigateBack" />
  5. <uv-parse :content="detail.articleContent"></uv-parse>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. detail : {},
  13. id : 0,
  14. }
  15. },
  16. onLoad(args) {
  17. this.id = args.id
  18. },
  19. onShow() {
  20. this.queryArticleById()
  21. },
  22. onPullDownRefresh(){
  23. this.queryArticleById()
  24. },
  25. methods: {
  26. queryArticleById(){
  27. this.$api('queryArticleById', {
  28. id : this.id
  29. }, res => {
  30. uni.stopPullDownRefresh()
  31. if(res.code == 200){
  32. this.detail = res.result
  33. }
  34. })
  35. },
  36. }
  37. }
  38. </script>
  39. <style scoped lang="scss">
  40. .page{
  41. }
  42. </style>