You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
< view class = "container" >
< view class = "wrap" >
< view class = "list" >
< view class = "list-item" >
< view class = "list-item__title" >
< view class = "list-item__title--time" >
填报时间 : 2025 - 02 - 06 18 : 00
< / view >
< view class = "list-item__title--tag" >
规划师已查看
< / view >
< / view >
< view class = "list-item__body" >
< view class = "list-item__body--row" >
所属区域 : 吴中区
< / view >
< view class = "list-item__body--row" >
填报年份 : 2025 年
< / view >
< / view >
< view class = "list-item__footer" >
< u -button
shape = "circle"
ripple
:hair-line ="false"
: custom -style = " {
' background ' : ' # 1989f9 ' ,
' color ' : ' # f6f8f7 ' ,
' width ' : ' 120rpx ' ,
' height ' : ' 44rpx ' ,
' line -height ' : ' 44rpx ' ,
' font -size ' : ' 24rpx '
} "
@ click = "$u.route({
url: '/package_sub/pages/ReportDetail/ReportDetail',
params: {
id: ''
}
})" > 查看 < / u - b u t t o n >
< / view >
< / view >
< / view >
< u -loadmore :status ="status" :margin-top ="40" / >
< / view >
< / view >
< / template >
< script >
export default {
data ( ) {
return {
select : {
page : 1 ,
page _size : 10
} ,
total : 0 ,
list : [ ] ,
status : 'loadmore' ,
} ;
} ,
methods : {
async getList ( refresh = false ) {
try {
if ( refresh ) {
this . select . page = 1
this . list . length = 0
}
} catch ( err ) {
console . error ( err )
}
}
} ,
onPullDownRefresh ( ) {
this . getList ( true )
} ,
}
< / script >
< style lang = "scss" scoped >
. container {
background : # eaf8fe ;
min - height : 100 vh ;
}
. wrap {
padding : 24 rpx 24 rpx ;
. list {
& - item {
overflow : hidden ;
filter : drop - shadow ( - 2.179 px 3.355 px 2.5 px rgba ( 208 , 209 , 209 , 0.3 ) ) ;
border - radius : 20 rpx ;
& _ _title {
display : flex ;
align - items : center ;
justify - content : space - between ;
padding : 22 rpx 28 rpx ;
background - color : # f6f8f7 ;
& -- time {
font - size : 28 rpx ;
color : # 333333 ;
}
& -- tag {
font - size : 24 rpx ;
color : # e77817 ;
border - radius : 40 rpx ;
background - color : rgba ( 236 , 138 , 51 , 0.2 ) ;
padding : 10 rpx 30 rpx ;
}
}
& _ _body {
background : # fff ;
padding : 0 28 rpx ;
& -- row {
font - size : 24 rpx ;
color : # 333333 ;
padding : 20 rpx 22 rpx ;
border - bottom : 1 rpx solid rgba ( 152 , 152 , 152 , 0.3 ) ;
}
}
& _ _footer {
background : # fff ;
display : flex ;
justify - content : flex - end ;
padding : 26 rpx 28 rpx ;
}
}
& - item + & - item {
margin - top : 24 rpx ;
}
}
}
< / style >