12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template name="news">
- <gui-page>
- <view slot="gBody" class="gui-margin">
- <view class="gui-margin gui-margin-top" style="text-align: center;">
- <text class="gui-h5 gui-color-gray gui-bold">{{item.name}}</text>
- </view>
- <dever-content :item="item.content_array" :pics="item.content_pic"></dever-content>
- </view>
- </gui-page>
- </template>
- <script>
- import deverContent from '@/lib/dever/components/content.vue';
- export default {
- name: "news",
- props: {
- info : false,
- graceSkeleton : true,
- control : {
- type : Object,
- value : null
- },
- item : {
- type : Object,
- value : null
- },
- },
- methods:{
- start : function() {
-
- },
- stop : function() {
-
- }
- },
- components:{
- deverContent
- }
- }
- </script>
|