|
@@ -35,14 +35,17 @@
|
|
|
<el-table-column prop="company" label="组织名称" width="200">
|
|
|
<template slot-scope="scope">{{ scope.row.company }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="phone" label="电话/邮箱" width="240"></el-table-column>
|
|
|
- <el-table-column prop="name" label="姓名" width="220" show-overflow-tooltip :label-class-name="'address-column'"></el-table-column>
|
|
|
- <el-table-column prop="submission_time" label="提交时间" width="220"></el-table-column>
|
|
|
- <el-table-column prop="remarks" label="备注" width="230"></el-table-column>
|
|
|
- <el-table-column label="操作" width="248">
|
|
|
- <template slot-scope="scope">
|
|
|
- <button @click="handleApprove(scope.row)" style="color: #308fff; background: none; border: none; cursor: pointer; margin-left: 25px;">通过</button>
|
|
|
- <button @click="handleIgnore(scope.row)" style="color: #308fff; background: none; border: none; cursor: pointer; margin-left: 35px;">拒绝</button>
|
|
|
+ <el-table-column prop="phone" label="电话/邮箱" width="400"></el-table-column>
|
|
|
+ <el-table-column prop="name" label="姓名" width="400" show-overflow-tooltip
|
|
|
+ :label-class-name="'address-column'"></el-table-column>
|
|
|
+ <el-table-column prop="submission_time" label="提交时间" width="400"></el-table-column>
|
|
|
+ <el-table-column prop="remarks" label="备注" width="400"></el-table-column>
|
|
|
+ <el-table-column label="操作" width="283">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <button @click="ajax_move_to_approved(row.userid, row.companyNumber)"
|
|
|
+ style="color: #308fff; background: none; border: none; cursor: pointer; margin-left: 25px;">通过</button>
|
|
|
+ <button @click="ajax_move_to_rejected(row.userid, row.companyNumber)"
|
|
|
+ style="color: #308fff; background: none; border: none; cursor: pointer; margin-left: 35px;">拒绝</button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|