e5b57447
杨鑫
'分包问卷'
|
1
2
3
|
<template>
<view class="pages">
<view class="contents">
|
844aa73a
杨鑫
'最新'
|
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<view class="box" >
<view class="title">
{{tableList.title}}
</view>
<view class="time">
{{tableList.createdAt}}
</view>
<view class="desc">
<!-- <u-parse :html="item.announcementContent"></u-parse> -->
阿萨打我请问请问额阿萨打我请问请问额阿萨打我请问请问额阿萨打我请问请问额阿萨打我请问请问额
<!-- {{item.content}} -->
</view>
|
e5b57447
杨鑫
'分包问卷'
|
20
21
22
23
24
25
26
27
28
29
30
|
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
tableList:[],
pageindex: {
|
844aa73a
杨鑫
'最新'
|
31
|
id:'',
|
e5b57447
杨鑫
'分包问卷'
|
32
33
34
35
36
37
|
pageNumber: 1,
pageSize: 10,
},
}
},
onLoad(option){
|
844aa73a
杨鑫
'最新'
|
38
39
40
41
|
if(option.ids){
this.pageindex.id = option.ids
}
this.getALL()
|
e5b57447
杨鑫
'分包问卷'
|
42
43
44
45
46
|
},
mounted() {
this.getALL()
},
methods: {
|
844aa73a
杨鑫
'最新'
|
47
|
|
e5b57447
杨鑫
'分包问卷'
|
48
49
|
getALL(){
this.$http.sendRequest('/cereMessageNotification/queryByPage', 'POST', this.pageindex,1).then(res => {
|
844aa73a
杨鑫
'最新'
|
50
|
this.tableList =res.data.data.content[0]
|
e5b57447
杨鑫
'分包问卷'
|
51
52
53
54
55
56
57
58
59
60
61
62
63
|
})
},
}
}
</script>
<style lang="scss" scoped>
.pages {
width: 100vw;
height: 100%;
position: relative;
overflow-y: auto;
background-color: #f6f6f6;
|
844aa73a
杨鑫
'最新'
|
64
|
padding:0 20px;
|
e5b57447
杨鑫
'分包问卷'
|
65
|
.contents {
|
844aa73a
杨鑫
'最新'
|
66
|
width: 100%;
|
e5b57447
杨鑫
'分包问卷'
|
67
68
69
|
border-radius: 20rpx;
background-color: #fff;
margin-top: 20rpx;
|
e5b57447
杨鑫
'分包问卷'
|
70
71
72
|
.box {
width: 94%;
margin: 0 auto;
|
844aa73a
杨鑫
'最新'
|
73
|
padding: 28rpx 40rpx 28rpx 10rpx;
|
e5b57447
杨鑫
'分包问卷'
|
74
75
76
77
78
79
80
81
82
83
84
85
86
|
.title{
font-size: 30rpx;
font-weight: bold;
}
.time{
margin: 20rpx 0;
color: #888D9C;
font-size: 24rpx;
}
.desc{
color: #888D9C;
font-size: 24rpx;
text-align: justify;
|
844aa73a
杨鑫
'最新'
|
87
|
margin-top:10px;
|
e5b57447
杨鑫
'分包问卷'
|
88
89
90
91
92
|
}
}
}
}
</style>
|