12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view class="center">
- <view class="news_info">
- <view class="">{{dataInfo.newsTitle}}</view>
-
- </view>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
- dataInfo:{},
-
- }
- },
- onLoad(options) {
- debugger
- this.dataInfo = JSON.parse(options._obj)
- uni.setNavigationBarTitle({
- title: this.dataInfo.newsType
- })
-
- },
-
- methods:{
-
- }
- }
- </script>
- <style lang="scss">
- .center{
-
- }
- </style>
|