|
@@ -41,7 +41,7 @@
|
|
|
<template>
|
|
|
<el-table :data="tableDatas.slice((currentPage - 1) * pageSize, currentPage * pageSize)" border
|
|
|
style="width: 100%" v-loading="loading" element-loading-text="拼命加载中...">
|
|
|
- <el-table-column prop="num" label="序 号">
|
|
|
+ <el-table-column prop="num" label="序 号" width="55">
|
|
|
<template slot-scope="scope">
|
|
|
{{ (currentPage - 1) * pageSize + scope.$index + 1 }}
|
|
|
</template>
|
|
@@ -83,7 +83,7 @@
|
|
|
{{ scope.row.remainingBalance }} {{ scope.row.currencyStr }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="isAuditGM" label="是否审核">
|
|
|
+ <el-table-column prop="isAuditGM" label="是否审核" width="90">
|
|
|
<template slot-scope="isAuditGM">
|
|
|
<span v-if="isAuditGM.row.isAuditGM == 1">已通过</span>
|
|
|
<span v-else-if="isAuditGM.row.isAuditGM == 0">未审核</span>
|
|
@@ -91,12 +91,18 @@
|
|
|
<span v-else>自动审核通过</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="id" label="详细费用">
|
|
|
+ <el-table-column prop="isPay" label="是否支付" width="90">
|
|
|
+ <template slot-scope="isPay">
|
|
|
+ <span v-if="isPay.row.isPay == 1">已支付</span>
|
|
|
+ <span v-else-if="isPay.row.isPay == 0">未支付</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="id" label="详细费用" >
|
|
|
<template slot-scope="scope">
|
|
|
<el-button @click="AddDetails(scope.row.id)" size="small">点击填写</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="操作">
|
|
|
+ <el-table-column label="操作" width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-button-group> -->
|
|
|
<el-button type="primary" size="mini" icon="el-icon-edit"
|