Commit 41abc592 by fengzhaoyu

fix:修改文件

parent c6f22e19
...@@ -70,7 +70,7 @@ create.Page({ ...@@ -70,7 +70,7 @@ create.Page({
this.update(); this.update();
// 修改动态列表 // 修改动态列表
if (res.data.data.length) { if (res.data.data) {
const addData = res.data.data[0].commentListDataModelList[0]; const addData = res.data.data[0].commentListDataModelList[0];
addData.updateTime = getCreateShowTime(addData.updateTime); addData.updateTime = getCreateShowTime(addData.updateTime);
this.store.data.affairList.unshift(addData) this.store.data.affairList.unshift(addData)
......
...@@ -227,7 +227,7 @@ input { ...@@ -227,7 +227,7 @@ input {
position: relative; position: relative;
} }
.place, .time, .participator, .meetingWay, .meetingWayShowTop { .place, .time, .participator, .meetingWay, .meetingWayShowTop, .taskNumber {
display: flex; display: flex;
padding: 0 32rpx; padding: 0 32rpx;
font-family: PingFangSC-Regular; font-family: PingFangSC-Regular;
......
...@@ -102,7 +102,22 @@ ...@@ -102,7 +102,22 @@
</view> </view>
</view> </view>
</view> </view>
<!--<view onTap="goTasksPage">{{tasks.length}} 个任务</view><view onTap="goFilesPage">{{files.length}} 个附件</view> --> <!-- 几个任务 -->
<view onTap="goTasksPage" class="taskNumber">
<view class="iconicon_attender iconfont icon {{$data.showParticipatorList.length>1 ? '' : 'noValueIcon'}}"></view>
<view>
{{tasks.length}} 个任务
</view>
<view class="iconright iconfont icon" style=" vertical-align: middle"></view>
</view>
<!-- 几个文件 -->
<view onTap="goFilesPage" class="taskNumber">
<view class="iconicon_attender iconfont icon {{$data.showParticipatorList.length>1 ? '' : 'noValueIcon'}}"></view>
<view>
{{files.length}} 个附件
</view>
<view class="iconright iconfont icon" style=" vertical-align: middle"></view>
</view>
<!-- 删除该会议 --> <!-- 删除该会议 -->
<template is="deleteBtn" onhandleDelete="handleDelete" data="{{title: '删除该会议' }}"/> <template is="deleteBtn" onhandleDelete="handleDelete" data="{{title: '删除该会议' }}"/>
</view> </view>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment