news.vue 764 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template name="news">
  2. <gui-page>
  3. <view slot="gBody" class="gui-margin">
  4. <view class="gui-margin gui-margin-top" style="text-align: center;">
  5. <text class="gui-h5 gui-color-gray gui-bold">{{item.name}}</text>
  6. </view>
  7. <dever-content :item="item.content_array" :pics="item.content_pic"></dever-content>
  8. </view>
  9. </gui-page>
  10. </template>
  11. <script>
  12. import deverContent from '@/lib/dever/components/content.vue';
  13. export default {
  14. name: "news",
  15. props: {
  16. info : false,
  17. graceSkeleton : true,
  18. control : {
  19. type : Object,
  20. value : null
  21. },
  22. item : {
  23. type : Object,
  24. value : null
  25. },
  26. },
  27. methods:{
  28. start : function() {
  29. },
  30. stop : function() {
  31. }
  32. },
  33. components:{
  34. deverContent
  35. }
  36. }
  37. </script>