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 slot = "content" >
< view class = "index" >
< view class = "back" >
< u -icon @click ="goback" name = "arrow-left" > < / u - i c o n >
< text > { { title } } < / text >
< / view >
< / view >
< view class = "contentwrap" >
< view class = "title" >
{ { list . title } }
< / view >
< view class = "form" >
< text > { { list . times } } < / text >
< text > { { list . from } } < / text >
< text > < u -icon name = "eye" > < / u - i c o n > { { l i s t . v i e w ? l i s t . v i e w : " 0 " } } < / t e x t >
< / view >
< view class = "info" v-html ="list.content"></view>
</view>
<subtab-bar :currentPage ="3" > < / subtab -bar >
< / view >
< / template >
< script >
export default {
data ( ) {
return {
title : "图片新闻" ,
list : {
title : "于贵平到金坛督导检查党的二十大安保调研指" ,
times : "2022-06-29" ,
from : "常州公安" ,
view : "456" ,
content : "6月28日下午, 副市长、公安局长于贵平到金坛调研, 传达李耀光厅长来常视察时的重要指示精神, 督导检查党的二十大安保“常安行动”推进情况, 调研指导全区公安工作, 看望慰问一线民警辅警。于贵平勉励金坛公安机关以李耀光厅长对常州公安工作的肯定和鼓励为新的动力, 认真贯彻落实省公安厅、市公安局和区委、区政府部署要求, 传承发扬“自强不息、勇攀高峰”的华罗庚精神, 全面加快发展步伐, 全面提振发展动能, 全面提升整体水平, 争当“常州公安品牌和工作绩效的最强增长极”。金坛区委书记陆秋明、代理区长胥亚伟, 市公安局党委副书记、常务副局长张强, 市公安局副局长金继英参加调研。金坛区委书记陆秋明、代理区长胥亚伟, 市公安局党委副书记、常务副局长张强, 市公安局副局长金继英参加调研参加调研参。"
}
}
} ,
onLoad ( ) {
} ,
methods : {
goback ( ) {
uni . navigateBack ( {
delta : 1 , //返回层数, 2则上上页
} )
}
}
}
< / script >
< style >
. index {
/* background: url(@/static/images/homebg.png) no-repeat; */
background : linear - gradient ( 90 deg , # D81B28 0 % , # F96767 100 % ) ;
background - color : # fff ;
background - size : 100 % ;
width : 100 % ;
min - height : 435 rpx ;
/* position: fixed; */
}
. back {
font - size : 46 rpx ;
color : # fff ;
padding : 40 rpx 40 rpx ;
position : relative ;
top : 0 ;
left : 0
}
. back text {
position : absolute ;
left : 50 % ;
top : 50 % ;
transform : translate ( - 50 % , - 50 % ) ;
}
. contentwrap {
background : # fff ;
padding : 180 rpx 40 rpx ;
padding - top : 0 ;
margin - top : - 300 rpx
}
. title {
color : # 4 D4D4D ;
font - size : 40 rpx ;
text - align : center ;
padding : 25 rpx 0 ;
padding - bottom : 5 rpx ;
}
. form {
text - align : center ;
}
. form text {
margin : 10 rpx 20 rpx ;
display : inline - block ;
}
. info {
font - size : 36 rpx ;
font - family : SourceHanSansCN - Normal , SourceHanSansCN ;
font - weight : 400 ;
color : # 000000 ;
line - height : 55 rpx ;
}
< / style >