作者 niufei

11

@@ -90,7 +90,10 @@ Page({ @@ -90,7 +90,10 @@ Page({
90 } 90 }
91 app.post(url, params, header).then((res) => { 91 app.post(url, params, header).then((res) => {
92 this.setData({ 92 this.setData({
93 - info: res 93 + info: res,
  94 + imgarr: res.pic,
  95 + myimgurl: res.pic,
  96 + word: res.work_content
94 }) 97 })
95 }) 98 })
96 }, 99 },
@@ -146,7 +149,10 @@ Page({ @@ -146,7 +149,10 @@ Page({
146 id: options.id, 149 id: options.id,
147 user_id: options.user_id ? options.user_id:null 150 user_id: options.user_id ? options.user_id:null
148 }) 151 })
  152 + if (options.id){
149 this.get_info(options.id) 153 this.get_info(options.id)
  154 + }
  155 +
150 }, 156 },
151 157
152 /** 158 /**
@@ -7,14 +7,22 @@ @@ -7,14 +7,22 @@
7 <text>工作内容</text> 7 <text>工作内容</text>
8 <text>{{info.work_content}}</text> 8 <text>{{info.work_content}}</text>
9 </view> 9 </view>
  10 +
  11 +
  12 +
  13 + <block wx:for="{{info.time}}" wx:key="index">
10 <view class="item"> 14 <view class="item">
11 <text>参加日期</text> 15 <text>参加日期</text>
12 - <text>{{info.date}}</text> 16 + <text>{{item.date}}</text>
13 </view> 17 </view>
  18 +
14 <view class="item"> 19 <view class="item">
15 <text>参加时间</text> 20 <text>参加时间</text>
16 - <text>{{info.time}}</text> 21 + <text>{{item.time}}</text>
17 </view> 22 </view>
  23 +
  24 + </block>
  25 +
18 </view> 26 </view>
19 27
20 <view class="img_box"> 28 <view class="img_box">
@@ -22,10 +30,9 @@ @@ -22,10 +30,9 @@
22 <view class="img_arr"> 30 <view class="img_arr">
23 <view class="img_item" wx:for="{{imgarr}}" wx:key="index"> 31 <view class="img_item" wx:for="{{imgarr}}" wx:key="index">
24 <image src="{{item}}" mode="aspectFill" class="show_img" /> 32 <image src="{{item}}" mode="aspectFill" class="show_img" />
25 - <image class="del" src="/imgs/del.png" catchtap="del_img" data-index="{{index}}"/> 33 + <image class="del" src="/imgs/del.png" catchtap="del_img" data-index="{{index}}" wx:if="{{!user_id}}"/>
26 </view> 34 </view>
27 -  
28 - <image class="img_item" src="/imgs/add_img.png" mode="aspectFill" bindtap="upimg" /> 35 + <image class="img_item" src="/imgs/add_img.png" mode="aspectFill" bindtap="upimg" wx:if="{{!user_id}}"/>
29 </view> 36 </view>
30 </view> 37 </view>
31 38
@@ -35,7 +42,7 @@ @@ -35,7 +42,7 @@
35 <view class="title"> 42 <view class="title">
36 <image src="/imgs/must.png" /> 感想汇报 43 <image src="/imgs/must.png" /> 感想汇报
37 </view> 44 </view>
38 - <textarea class="word" placeholder="请输入内容,内容最多500字" bindinput="get_word" value="{{word}}" /> 45 + <textarea class="word" placeholder="请输入内容,内容最多500字" bindinput="get_word" value="{{word}}" disabled="{{user_id}}"/>
39 </view> 46 </view>
40 47
41 -<view class="submit" bindtap="submit">确认</view>  
  48 +<view class="submit" bindtap="submit" wx:if="{{!user_id}}">确认</view>