123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <template>
- <view class="task-page">
- <div class="title">{{item.title}}</div>
- <div class="info">
- <div class="item">
- <view class="name">执行人</view>
- <view class="cont">执行人</view>
- </div>
- <div class="item">
- <view class="name">执行部门</view>
- <view class="cont">执行部门</view>
- </div>
- <div class="item">
- <view class="name">发布时间</view>
- <view class="cont">{{parseTime(new Date())}}</view>
- </div>
- </div>
- <div class="status">
- <div class="head">处置过程</div>
- <image class="icon-empty" src="/static/icon/empty.png" mode="widthFix"></image>
- <p>暂无处置信息</p>
- </div>
- <image class="add" @click="add" src="/static/icon/add.png" mode="widthFix"></image>
- </view>
- </template>
- <script>
- import {parseTime} from '@/libs/index.js'
- export default {
- data() {
- return {
- item:{
- title:"水位预{2号-770-32002}:采空区封堵完好,无渗水情况。"
- }
- }
- },
- onLoad() {
- // this.getTask()
- },
- methods: {
- parseTime,
- getTask(){
- this.item=uni.getStorageSync('task-item')
- },
- add(){
- uni.navigateTo({
- url:'/pages/task/form/form'
- })
- }
- },
- destroyed() {
- uni.removeStorageSync('task-item')
- }
- }
- </script>
- <style lang="scss" scoped>
- .task-page{
- background-color: #F3F5FB;
- .title{
- font-family: 'Source Han Sans CN';
- font-style: normal;
- font-weight: 700;
- font-size: 36rpx;
- line-height: 54rpx;
- color: #212121;
- padding:0 32rpx;
- }
- .info{
- padding: 0 32rpx;
- margin: 40rpx 0;
- background: #FFFFFF;
- border-radius: 32rpx 32rpx 0px 0px;
- .item{
- border-bottom: 1rpx solid #EFF1F3;
- padding: 40rpx 32rpx;
- .name{
- font-size: 28rpx;
- color: #999999;
- line-height: 1;
- }
- .cont{
- font-size: 30rpx;
- color: #212121;
- line-height: 1.5;
- padding-top: 12rpx;
- }
- &:last-child{
- border-bottom:none;
- }
- }
- }
- .status{
- background: #FFFFFF;
- border-radius: 32rpx 32rpx 0px 0px;
- padding: 48rpx 32rpx;
- color: #212121;
- font-size: 34rpx;
- line-height:1;
- font-weight: 700;
- .icon-empty{
- display: block;
- width: 160rpx;
- margin: 64rpx auto 0;
- }
- p{
- font-size: 24rpx;
- line-height: 28rpx;
- color: #D5D5D5;
- text-align: center;
- }
- }
- .add{
- display: block;
- width: 96rpx;
- position: fixed;
- bottom: 186rpx;
- right: 32rpx;
- }
- }
- </style>
|