|
@@ -1,6 +1,8 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="app-list-content">
|
|
<div class="app-list-content">
|
|
|
<x-crud class="liu-crud-wrap" @load="onLoad">
|
|
<x-crud class="liu-crud-wrap" @load="onLoad">
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
<!-- 审核 -->
|
|
<!-- 审核 -->
|
|
|
<template #slot-apply="{scope}">
|
|
<template #slot-apply="{scope}">
|
|
|
|
|
|
|
@@ -8,16 +10,20 @@
|
|
|
<el-button type="text" @click="showModalFn(scope.row)">待审核</el-button>
|
|
<el-button type="text" @click="showModalFn(scope.row)">待审核</el-button>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
|
|
+ </template>
|
|
|
|
|
+
|
|
|
|
|
+ <template #table-column-status="{scope}">
|
|
|
|
|
+ <template v-if="scope.row.status == 1">
|
|
|
|
|
+ <span>待审核</span>
|
|
|
|
|
+ </template>
|
|
|
<template v-else-if="scope.row.status == 2">
|
|
<template v-else-if="scope.row.status == 2">
|
|
|
- <!-- <el-button type="text">审核通过</el-button> success_color -->
|
|
|
|
|
<span class="success_color">审核通过</span>
|
|
<span class="success_color">审核通过</span>
|
|
|
</template>
|
|
</template>
|
|
|
- <template v-else-if="scope.row.status == 3">
|
|
|
|
|
- <!-- <el-button type="text" style="color: '#ff2842'">审核通过</el-button> -->
|
|
|
|
|
- <span class="error_color">审核通过</span>
|
|
|
|
|
|
|
+ <template v-else-if="scope.row.status == 3">
|
|
|
|
|
+ <span class="error_color">审核未通过</span>
|
|
|
</template>
|
|
</template>
|
|
|
-
|
|
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+
|
|
|
</x-crud>
|
|
</x-crud>
|
|
|
<!-- 审核弹窗 -->
|
|
<!-- 审核弹窗 -->
|
|
|
<el-dialog
|
|
<el-dialog
|
|
@@ -95,32 +101,73 @@ export default {
|
|
|
{
|
|
{
|
|
|
prop: 'id',
|
|
prop: 'id',
|
|
|
label: 'ID',
|
|
label: 'ID',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ width: '70'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'sjName',
|
|
|
|
|
+ label: '商家',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ width: '120'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'shopName',
|
|
|
|
|
+ label: '门店',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ width: '120'
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: 'sjId',
|
|
prop: 'sjId',
|
|
|
label: '商家ID',
|
|
label: '商家ID',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ width: '90'
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: 'shopId',
|
|
prop: 'shopId',
|
|
|
label: '门店ID',
|
|
label: '门店ID',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ width: '90'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'cashName',
|
|
|
|
|
+ label: '姓名',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ width: '120'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'cashAccount',
|
|
|
|
|
+ label: '帐号',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ width: '130'
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: 'amount',
|
|
prop: 'amount',
|
|
|
label: '提现金额',
|
|
label: '提现金额',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
- emptyText: '无'
|
|
|
|
|
|
|
+ emptyText: '无',
|
|
|
|
|
+ width: '100'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'thirdOrderSn',
|
|
|
|
|
+ label: '提现回执',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ emptyText: '',
|
|
|
|
|
+ width: '130'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'remark',
|
|
|
|
|
+ label: '备注',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ emptyText: '',
|
|
|
|
|
+ width: '180'
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
{
|
|
{
|
|
|
prop: 'status',
|
|
prop: 'status',
|
|
|
label: '状态',
|
|
label: '状态',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
emptyText: '无'
|
|
emptyText: '无'
|
|
|
},
|
|
},
|
|
|
- {
|
|
|
|
|
|
|
+ {
|
|
|
prop: 'addTime',
|
|
prop: 'addTime',
|
|
|
label: '提交时间',
|
|
label: '提交时间',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
@@ -132,7 +179,7 @@ export default {
|
|
|
visible: true, // 是否显示
|
|
visible: true, // 是否显示
|
|
|
// 同 element-ui Table-column Attributes
|
|
// 同 element-ui Table-column Attributes
|
|
|
props: {
|
|
props: {
|
|
|
- width: 100,
|
|
|
|
|
|
|
+ width: 150,
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
fixed: 'right',
|
|
fixed: 'right',
|
|
|
label: '操作'
|
|
label: '操作'
|