|
@@ -77,15 +77,27 @@
|
|
|
<el-tag prop="status" v-for="(item, index) in payTypeOptions" v-if="scope.row.payType==item.dictValue">{{item.dictLabel}}</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="提交人" align="center" prop="createUserNickName" width="180">
|
|
|
+ <el-table-column label="提交人" align="center" prop="createUserNickName">
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="提交时间" align="center" prop="createTime" width="180">
|
|
|
+ <el-table-column label="提交时间" align="center" prop="createTime" width="160">
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="审核人" align="center" prop="auditUserNickName" width="180">
|
|
|
+ <el-table-column label="审核人" align="center" prop="auditUserNickName">
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="审核时间" align="center" prop="auditTime" width="180">
|
|
|
+ <el-table-column label="审核时间" align="center" prop="auditTime" width="160">
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="支付时间" align="center" prop="payTime" width="180">
|
|
|
+ <el-table-column label="支付时间" align="center" prop="payTime" width="160">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="凭证照片" align="center" prop="images" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-if="scope.row.imgs != null && scope.row.imgs != undefined && scope.row.imgs != ''">
|
|
|
+ <el-image
|
|
|
+ style="width: 50px; height: 50px"
|
|
|
+ :src="scope.row.imgs.split(',')[0]"
|
|
|
+ :preview-src-list="scope.row.imgs.split(',')">
|
|
|
+ </el-image>
|
|
|
+ <p style="margin: 0">({{scope.row.imgs.split(',').length}} 张)</p>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="状态" align="center" prop="status" >
|
|
|
<template slot-scope="scope">
|
|
@@ -97,17 +109,17 @@
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
v-if="scope.row.isAudit==0"
|
|
|
- size="mini"
|
|
|
+ size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleAudit(scope.row)"
|
|
|
v-hasPermi="['company:companyRecharge:audit']"
|
|
|
>审核</el-button>
|
|
|
-
|
|
|
+
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
-
|
|
|
+
|
|
|
<pagination
|
|
|
v-show="total>0"
|
|
|
:total="total"
|
|
@@ -197,7 +209,7 @@ export default {
|
|
|
created() {
|
|
|
getCompanyList().then(response => {
|
|
|
this.companys = response.data;
|
|
|
-
|
|
|
+
|
|
|
});
|
|
|
this.getDicts("comapny_recharge_pay_type").then((response) => {
|
|
|
this.payTypeOptions = response.data;
|