|
@@ -27,16 +27,16 @@
|
|
|
|
|
|
<!-- 待审核的数据 -->
|
|
|
<div v-if="isPending">
|
|
|
- <el-table :data="currentTableData" style="width: 100%; background-color: white;" @selection-change="handleSelectionChange">
|
|
|
+ <el-table :data="currentTableData" border style="width: 100%; background-color: white;" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="50"></el-table-column>
|
|
|
- <el-table-column prop="company" label="组织名称" width="120">
|
|
|
+ <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="200"></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="230">
|
|
|
+ <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>
|
|
@@ -57,14 +57,14 @@
|
|
|
|
|
|
<!-- 已通过的数据 -->
|
|
|
<div v-if="isApproved">
|
|
|
- <el-table :data="currentApprovedData" style="width: 100%; background-color: white;" @selection-change="handleApprovedSelectionChange">
|
|
|
+ <el-table :data="currentApprovedData" border style="width: 100%; background-color: white;" @selection-change="handleApprovedSelectionChange">
|
|
|
<el-table-column type="selection" width="50" />
|
|
|
<el-table-column prop="company" label="组织名称" width="200">
|
|
|
<template slot="default" slot-scope="scope">{{ scope.row.company }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="phone" label="电话/邮箱" width="200" />
|
|
|
<el-table-column prop="name" label="姓名" width="200" show-overflow-tooltip :label-class-name="'address-column'" />
|
|
|
- <el-table-column prop="submission_time" label="提交时间" width="180" />
|
|
|
+ <el-table-column prop="submission_time" label="提交时间" width="200" />
|
|
|
<el-table-column prop="remarks" label="备注" width="180" />
|
|
|
<el-table-column prop="Pending_time" label="审核时间" width="200" />
|
|
|
<el-table-column prop="open_organization" label="开通组织" width="200">
|
|
@@ -79,17 +79,17 @@
|
|
|
|
|
|
<!-- 已拒绝的数据 -->
|
|
|
<div v-if="isRefused">
|
|
|
- <el-table :data="currentRefusedData" style="width: 100%; background-color: white;" @selection-change="handleRefusedSelectionChange">
|
|
|
+ <el-table :data="currentRefusedData" border style="width: 100%; background-color: white;" @selection-change="handleRefusedSelectionChange">
|
|
|
<el-table-column type="selection" width="50" />
|
|
|
<el-table-column prop="company" label="组织名称" width="200">
|
|
|
<template slot="default" slot-scope="scope">{{ scope.row.company }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="phone" label="电话/邮箱" width="200" />
|
|
|
<el-table-column prop="name" label="姓名" width="200" show-overflow-tooltip :label-class-name="'address-column'" />
|
|
|
- <el-table-column prop="submission_time" label="提交时间" width="180" />
|
|
|
+ <el-table-column prop="submission_time" label="提交时间" width="200" />
|
|
|
<el-table-column prop="remarks" label="备注" width="180" />
|
|
|
<el-table-column prop="Pending_time" label="审核时间" width="200" />
|
|
|
- <el-table-column label="操作" width="200">
|
|
|
+ <el-table-column label="操作" width="195">
|
|
|
<template slot="default" slot-scope="scope">
|
|
|
<button @click="handleEdit(scope.row)" style="color: #308fff; background: none; border: none; cursor: pointer; margin-left: 25px;">移动至待审核</button>
|
|
|
</template>
|
|
@@ -103,14 +103,14 @@
|
|
|
|
|
|
<!-- 全部记录的数据 -->
|
|
|
<div v-if="isAll">
|
|
|
- <el-table :data="currentAllData" style="width: 100%; background-color: white;" @selection-change="handleAllSelectionChange">
|
|
|
+ <el-table :data="currentAllData" border style="width: 100%; background-color: white;" @selection-change="handleAllSelectionChange">
|
|
|
<el-table-column type="selection" width="50" />
|
|
|
<el-table-column prop="company" label="组织名称" width="200">
|
|
|
<template slot="default" slot-scope="scope">{{ scope.row.company }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="phone" label="电话/邮箱" width="200" />
|
|
|
<el-table-column prop="name" label="姓名" width="200" show-overflow-tooltip :label-class-name="'address-column'" />
|
|
|
- <el-table-column prop="submission_time" label="提交时间" width="180" />
|
|
|
+ <el-table-column prop="submission_time" label="提交时间" width="200" />
|
|
|
<el-table-column prop="remarks" label="备注" width="180" />
|
|
|
<el-table-column prop="Pending_time" label="审核时间" width="200" />
|
|
|
<el-table-column label="操作" width="200" prop="status">
|