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 >
< view class = "" style = "margin: 30rpx 50rpx;" >
< u -time -line >
< u -time -line -item nodeTop = "2" >
<!-- 此处自定义了左边内容 , 用一个图标替代 -- >
< template v -slot : node >
< view class = "u-node" style = "background: red;" >
< u -icon name = "checkmark-circle-fill" color = "#fff" :size ="36" > < / u - i c o n >
< / view >
< / template >
< template v -slot : content >
< view >
< view class = "u-order-title" > 提现申请已提交 , 等待处理 < / view >
< / view >
< / template >
< / u - t i m e - l i n e - i t e m >
< u -time -line -item nodeTop = "2" >
<!-- 此处自定义了左边内容 , 用一个图标替代 -- >
< template v -slot : node >
< view class = "u-node" >
< u -icon name = "rmb-circle-fill" color = "#fff" :size ="36" > < / u - i c o n >
< / view >
< / template >
< template v -slot : content >
< view >
< view class = "u-order-title" > 预计72小时内到账 < / view >
< / view >
< / template >
< / u - t i m e - l i n e - i t e m >
< / u - t i m e - l i n e >
< / view >
< / view >
< / template >
< script >
export default {
data ( ) {
return {
} ;
} ,
onLoad ( options ) {
} ,
methods : {
}
}
< / script >
< style lang = "scss" >
page {
background - color : # FFFFFF ;
}
. u - node {
width : 44 rpx ;
height : 44 rpx ;
border - radius : 100 rpx ;
display : flex ;
justify - content : center ;
align - items : center ;
background : # d0d0d0 ;
}
. u - order - title {
color : # 333333 ;
font - weight : bold ;
font - size : 32 rpx ;
}
. u - order - desc {
color : rgb ( 150 , 150 , 150 ) ;
font - size : 28 rpx ;
margin - bottom : 6 rpx ;
}
. u - order - time {
color : rgb ( 200 , 200 , 200 ) ;
font - size : 26 rpx ;
}
< / style >