|
|
@@ -29,7 +29,7 @@
|
|
|
<template slot-scope="props">
|
|
|
<b-table-column
|
|
|
field="id"
|
|
|
- label="小组ID"
|
|
|
+ label="用户ID"
|
|
|
width="120"
|
|
|
numeric
|
|
|
sortable
|
|
|
@@ -62,6 +62,18 @@
|
|
|
</router-link>
|
|
|
</b-table-column>
|
|
|
</template>
|
|
|
+ <template slot="detail" slot-scope="props">
|
|
|
+ <article class="media">
|
|
|
+ <div class="media-content">
|
|
|
+ <div class="content">
|
|
|
+ <p>
|
|
|
+ <strong>用户昵称:</strong>
|
|
|
+ <small> {{ props.row.userName }}  </small>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </article>
|
|
|
+ </template>
|
|
|
</b-table>
|
|
|
</b-tab-item>
|
|
|
|