[前端-后台]再次修改部分措辞,修改boolen值的显示方法(再次改进)[CI SKIP]

This commit is contained in:
esp
2015-08-27 15:30:11 +08:00
parent f3b88e85fc
commit 979a2070cd
7 changed files with 9 additions and 22 deletions

View File

@@ -17,8 +17,8 @@
<th>题目</th>
<th>创建时间</th>
<th>作者</th>
<td>可见</td>
<td>通过次数/提交总数</td>
<th>可见</th>
<th>通过次数/提交总数</th>
<td></td>
</tr>
<tr ms-repeat="problemList">
@@ -26,7 +26,7 @@
<td>{{ el.title }}</td>
<td>{{ el.create_time|date("yyyy-MM-dd HH:mm:ss")}}</td>
<td>{{ el.created_by.username }}</td>
<td>{{ getYesOrNo(el.visible) }}</td>
<td ms-text="el.visible?'可见':'不可见'">{{ getYesOrNo(el.visible) }}</td>
<td>{{ el.total_accepted_number }}/{{ el.total_submit_number }}</td>
<td>
<button class="btn-sm btn-info" ms-click="showEditProblemPage(el.id)">编辑</button>