Skip to content

Commit

Permalink
UserTable invite code to service type
Browse files Browse the repository at this point in the history
  • Loading branch information
vv13 committed Jan 12, 2018
1 parent 8d69b0a commit 6004a25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/UserTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<thead>
<tr>
<th>用户名</th>
<th>邀请码</th>
<th>服务类型</th>
<th>创建时间</th>
<th>过期时间</th>
<th>总流量</th>
Expand All @@ -15,9 +15,9 @@
</tr>
</thead>
<tbody>
<tr v-for="(item, index) in statusList">
<tr v-for="(item, index) in statusList" :key="item.Id">
<th>{{ item.Username }}</th>
<td>{{ item.InviteCode }}</td>
<td>{{ item.ServiceType }}</td>
<td>
<span class="tag is-primary">{{ item.Created | dateFilter}}</span>
</td>
Expand Down Expand Up @@ -266,4 +266,4 @@ export default {
.pagination {
margin: 20px auto 80px auto;
}
</style>
</style>

0 comments on commit 6004a25

Please sign in to comment.