|
@@ -14,7 +14,6 @@ export default {
|
|
|
推广名称: 'promotion_name',
|
|
|
档位类型: 'tip_text',
|
|
|
支付方式: 'pay_name',
|
|
|
- 订单状态: 'status_txt',
|
|
|
平台审核: 'pt_verify_status_text',
|
|
|
平台审核备注: 'pt_verify_remark',
|
|
|
商户审核: 'sh_verify_status_text',
|
|
@@ -36,77 +35,6 @@ export default {
|
|
|
支付方式: 'pay_name',
|
|
|
退款时间: 'pay_at',
|
|
|
退款单号: 'refund_no',
|
|
|
- 订单状态: 'status_txt'
|
|
|
+ 订单状态: 'status_text'
|
|
|
}
|
|
|
};
|
|
|
-
|
|
|
-/**
|
|
|
- *
|
|
|
- * <el-table-column prop="company_name" label="商户名称" min-width="200px">
|
|
|
- <template #default="scope">
|
|
|
- <div>{{ scope.row.company_name }}</div>
|
|
|
- <div>ID:{{ scope.row.puser_id }}</div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="username" label="优化师" show-overflow-tooltip min-width="200px">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="play_name" show-overflow-tooltip label="小程序" min-width="200px">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="uid" label="用户ID" show-overflow-tooltip>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="trade_no" label="订单号" show-overflow-tooltip min-width="200px">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="created_at" label="订单时间" show-overflow-tooltip min-width="200px" />
|
|
|
- <el-table-column prop="ranse_created_at" label="染色注册时间" show-overflow-tooltip min-width="200px" />
|
|
|
- <el-table-column prop="refund_price" label="申退金额" show-overflow-tooltip min-width="200px" />
|
|
|
- <el-table-column prop="order_price" label="充值金额" show-overflow-tooltip>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="promotion_name" label="推广名称" show-overflow-tooltip min-width="200px">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="tip_text" label="档位类型" show-overflow-tooltip min-width="150px">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="pay_name" label="支付方式" show-overflow-tooltip min-width="150px">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="pay_at" label="退款时间" v-if="query.refund_status == 1" show-overflow-tooltip
|
|
|
- min-width="180px">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="refund_no" label="退款单号" v-if="query.refund_status == 1" show-overflow-tooltip
|
|
|
- min-width="150px">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column v-if="query.refund_status == 1" prop="pay_name" label="订单状态" show-overflow-tooltip
|
|
|
- min-width="150px">
|
|
|
- <template #default="scope">
|
|
|
- <div class="wrapper">
|
|
|
- <span class="text-lg font-bold content">
|
|
|
- <el-text class="mx-1" type="info">{{ scope.row.status_text }}</el-text>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column v-if="query.refund_status == 0" prop="pt_verify_status_text" label="平台审核" show-overflow-tooltip
|
|
|
- min-width="150px">
|
|
|
- <template #default="scope">
|
|
|
- <div class="wrapper">
|
|
|
- <span class="text-lg font-bold content">
|
|
|
- <el-text class="mx-1" :type="colorType(scope.row)">{{ scope.row.pt_verify_status_text }}</el-text>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column v-if="query.refund_status == 0" prop="pt_verify_remark" label="平台审核备注" show-overflow-tooltip
|
|
|
- min-width="150px">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column v-if="query.refund_status == 0" prop="sh_verify_status_text" label="商户审核" show-overflow-tooltip
|
|
|
- min-width="150px">
|
|
|
- <template #default="scope">
|
|
|
- <div class="wrapper">
|
|
|
- <span class="text-lg font-bold content">
|
|
|
- <el-text class="mx-1" :type="colorType(scope.row)">{{ scope.row.sh_verify_status_text }}</el-text>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column v-if="query.refund_status == 0" prop="sh_verify_remark" label="商户审核备注" show-overflow-tooltip
|
|
|
- min-width="150px">
|
|
|
- </el-table-column>
|
|
|
- */
|