作者 sgj
1 个管道 的构建 失败 耗费 1 秒

修改志愿者列表

@@ -78,6 +78,15 @@ @@ -78,6 +78,15 @@
78 id="good_name" value="{$data.address_info}" /> 78 id="good_name" value="{$data.address_info}" />
79 </td> 79 </td>
80 </tr> 80 </tr>
  81 +
  82 + <tr>
  83 + <th width="100">备注信息<span class="form-required">*</span></th>
  84 + <td>
  85 + <script type="text/plain" id="content2" name="content_info">{:cmf_replace_content_file_url(htmlspecialchars_decode($data.remark))}</script>
  86 + </td>
  87 + </tr>
  88 +
  89 +
81 <if condition="$data.real_good==0"> 90 <if condition="$data.real_good==0">
82 <tr> 91 <tr>
83 <th width="100">发放内容<span class="form-required">*</span></th> 92 <th width="100">发放内容<span class="form-required">*</span></th>
@@ -87,6 +96,13 @@ @@ -87,6 +96,13 @@
87 </tr> 96 </tr>
88 </if> 97 </if>
89 98
  99 + <tr>
  100 + <th width="100">拒绝原因<span class="form-required"></span></th>
  101 + <td>
  102 + <script type="text/plain" id="content1" name="content_info">{:cmf_replace_content_file_url(htmlspecialchars_decode($data.reason))}</script>
  103 + </td>
  104 + </tr>
  105 +
90 </table> 106 </table>
91 <div class="form-group"> 107 <div class="form-group">
92 <div class="col-sm-offset-2 col-sm-10"> 108 <div class="col-sm-offset-2 col-sm-10">
@@ -104,6 +120,7 @@ @@ -104,6 +120,7 @@
104 <tr> 120 <tr>
105 <td> 121 <td>
106 <div class="checkbox"> 122 <div class="checkbox">
  123 + <label><input type="radio" name="status" value="-1" <eq name="$data.status" value="-1">checked</eq> >拒绝发放</label>
107 <label><input type="radio" name="status" value="0" <eq name="$data.status" value="0">checked</eq> >未发放</label> 124 <label><input type="radio" name="status" value="0" <eq name="$data.status" value="0">checked</eq> >未发放</label>
108 <label><input type="radio" name="status" value="1" <eq name="$data.status" value="1">checked</eq> >已发放</label> 125 <label><input type="radio" name="status" value="1" <eq name="$data.status" value="1">checked</eq> >已发放</label>
109 </div> 126 </div>
@@ -139,6 +156,10 @@ @@ -139,6 +156,10 @@
139 156
140 editorcontent = new baidu.editor.ui.Editor(); 157 editorcontent = new baidu.editor.ui.Editor();
141 editorcontent.render('content'); 158 editorcontent.render('content');
  159 + editorcontent1 = new baidu.editor.ui.Editor();
  160 + editorcontent1.render('content1');
  161 + editorcontent2 = new baidu.editor.ui.Editor();
  162 + editorcontent2.render('content2');
142 try { 163 try {
143 editorcontent.sync(); 164 editorcontent.sync();
144 } catch (err) { 165 } catch (err) {
@@ -41,8 +41,9 @@ @@ -41,8 +41,9 @@
41 <td>{$vo.id}</td> 41 <td>{$vo.id}</td>
42 <td>{$vo.order_sn}</td> 42 <td>{$vo.order_sn}</td>
43 <td>{$vo.good_name}</td> 43 <td>{$vo.good_name}</td>
  44 + <if condition="$vo.status==-1"> <td style="color: maroon">已拒绝</td> </if>
44 <if condition="$vo.status==0"> <td>待审核</td> </if> 45 <if condition="$vo.status==0"> <td>待审核</td> </if>
45 - <if condition="$vo.status==1"> <td>已发放</td> </if> 46 + <if condition="$vo.status==1"> <td style="color: #0c6251">已发放</td> </if>
46 <td>{:date('Y-m-d H:i:s',$vo['create_time'])}</td> 47 <td>{:date('Y-m-d H:i:s',$vo['create_time'])}</td>
47 <td>{$vo.user_name}</td> 48 <td>{$vo.user_name}</td>
48 <td>{$vo.num}</td> 49 <td>{$vo.num}</td>