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.

111 lines
2.9 KiB

3 years ago
<template>
<view slot="content">
<view class="index">
<view class="back">
<u-icon @click="goback" name="arrow-left"></u-icon>
<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-icon>{{list.view?list.view:"0"}}</text>
</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(90deg, #D81B28 0%, #F96767 100%);
background-color: #fff;
background-size: 100%;
width: 100%;
min-height: 435rpx;
/* position: fixed; */
}
.back{
font-size: 46rpx;
color:#fff;
padding:40rpx 40rpx;
position: relative;
top:0;
left:0
}
.back text{
position: absolute;
left:50%;
top:50%;
transform: translate(-50%,-50%);
}
.contentwrap{
background: #fff;
padding:180rpx 40rpx;
padding-top:0;
margin-top:-300rpx
}
.title{
color:#4D4D4D;
font-size: 40rpx;
text-align: center;
padding:25rpx 0;
padding-bottom:5rpx;
}
.form{
text-align: center;
}
.form text{
margin:10rpx 20rpx;
display: inline-block;
}
.info{
font-size: 36rpx;
font-family: SourceHanSansCN-Normal, SourceHanSansCN;
font-weight: 400;
color: #000000;
line-height: 55rpx;
}
</style>