3f535f30
杨鑫
'初始'
|
1
2
3
4
5
6
7
8
9
|
<template>
<view class="page">
<view class="bodys">
<view class="titledata">
{{tableList.announcementTitle}}
</view>
<view class="">
<u-parse :html="tableList.announcementContent"></u-parse>
</view>
|
a6a3878d
杨鑫
最新绿道
|
10
11
12
|
<view class="" style="margin-top: 10px;">
<image :src="url+tableList.coverImage" mode="" style="border-radius: 10px;width: 100%;"></image>
</view>
|
3f535f30
杨鑫
'初始'
|
13
14
15
16
17
18
19
20
21
22
23
24
25
|
</view>
</view>
</template>
<script>
export default {
data() {
return {
tableList:{},
pageindex: {
pageNumber: 1,
pageSize: 10
},
|
a6a3878d
杨鑫
最新绿道
|
26
|
url:''
|
3f535f30
杨鑫
'初始'
|
27
28
29
|
};
},
onLoad(option){
|
a6a3878d
杨鑫
最新绿道
|
30
|
this.url = this.$img
|
a18f16a9
杨鑫
提交1
|
31
|
this.tableList = JSON.parse(decodeURIComponent(option.item))
|
72e22e26
杨鑫
最新修改
|
32
33
34
|
uni.setNavigationBarTitle({
title: this.tableList.informationType
});
|
a18f16a9
杨鑫
提交1
|
35
|
// this.tableList = uni.getStorageSync('gghd')
|
3f535f30
杨鑫
'初始'
|
36
37
38
39
40
41
42
43
44
45
46
47
48
|
},
mounted(){
},
methods: {
}
}
</script>
<style scoped lang="scss">
@import 'procedure.scss';
</style>
|