|
@@ -23,12 +23,19 @@
|
|
|
</vxe-column>
|
|
</vxe-column>
|
|
|
<vxe-column title="积分" field="points" width="60" :formatter="colNoData" />
|
|
<vxe-column title="积分" field="points" width="60" :formatter="colNoData" />
|
|
|
<vxe-column title="上报人" field="createByName" width="100" :formatter="colNoData" />
|
|
<vxe-column title="上报人" field="createByName" width="100" :formatter="colNoData" />
|
|
|
- <vxe-column title="上报时间" field="createTime" min-width="100" :formatter="colNoData" />
|
|
|
|
|
- <vxe-column title="状态" fixed="right" width="110">
|
|
|
|
|
|
|
+ <vxe-column title="上报时间" field="createTime" width="160" :formatter="colNoData" />
|
|
|
|
|
+ <vxe-column title="审核状态" fixed="right" width="110">
|
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
|
<div :class="['c-res-' + row?.auditStatus]">{{ selectDictLabel(check_status, row?.auditStatus) }}</div>
|
|
<div :class="['c-res-' + row?.auditStatus]">{{ selectDictLabel(check_status, row?.auditStatus) }}</div>
|
|
|
</template>
|
|
</template>
|
|
|
</vxe-column>
|
|
</vxe-column>
|
|
|
|
|
+ <!-- 操作 -->
|
|
|
|
|
+ <vxe-column title="操作" align="center" fixed="right" width="180">
|
|
|
|
|
+ <template #default="{ row }">
|
|
|
|
|
+ <el-button text type="primary">通过</el-button>
|
|
|
|
|
+ <el-button text type="danger">不通过</el-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </vxe-column>
|
|
|
</vxe-table>
|
|
</vxe-table>
|
|
|
</div>
|
|
</div>
|
|
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|