|
@@ -93,14 +93,21 @@
|
|
|
<span v-else>自动审核通过</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="attachment" label="附件" width="200">
|
|
|
+ <el-table-column prop="isPay" label="是否付款" width="78">
|
|
|
+ <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="attachment" label="附件" width="122">
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button size="mini" @click="download(scope.$index, scope.row)"
|
|
|
+ <el-button style="margin-left: 0px;" size="mini" @click="download(scope.$index, scope.row)"
|
|
|
v-show="scope.row.attachment">下载附件</el-button>
|
|
|
- <el-button size="mini" @click="upDate(scope.$index, scope.row)">编辑</el-button>
|
|
|
- <el-button size="mini" type="danger" @click="del(scope.$index, scope.row)">删除</el-button>
|
|
|
+
|
|
|
+ <el-button style="margin-left: 0px;" size="mini" @click="upDate(scope.$index, scope.row)">编辑</el-button>
|
|
|
+ <el-button style="margin-left: 0px;" size="mini" type="danger" @click="del(scope.$index, scope.row)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|