|
|
@@ -47,9 +47,16 @@
|
|
|
<template slot-scope="scope">{{ scope.row.id }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="stuName" label="姓名" width="100"></el-table-column>
|
|
|
- <el-table-column prop="institute" label="学院" width="220"></el-table-column>
|
|
|
- <el-table-column prop="major" label="专业" width="180"></el-table-column>
|
|
|
- <el-table-column prop="class" label="班级" width="180"></el-table-column>
|
|
|
+ <el-table-column prop="institute" label="学院" width="150"></el-table-column>
|
|
|
+ <el-table-column prop="major" label="专业" width="240"></el-table-column>
|
|
|
+ <!-- <el-table-column prop="class" label="班级" width="190"></el-table-column> -->
|
|
|
+ <el-table-column label="班级" width="190">
|
|
|
+ <el-popover placement="top-start" trigger="hover" slot-scope="scope"
|
|
|
+ :content="scope.row.class">
|
|
|
+ <div slot="reference">{{ scope.row.class }}</div>
|
|
|
+ </el-popover>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
<el-table-column prop="money" label="缴费余额(元)" width="150" widshow-overflow-tooltip></el-table-column>
|
|
|
<el-table-column label="操作" align="center" width="100">
|
|
|
<el-button class="show-btn" slot-scope="scope" @click="handleEdit(scope.$index, scope.row)">详情
|