|
|
@@ -60,6 +60,16 @@
|
|
|
{{ scope.row.pay_money?$TOOL.money(scope.row.pay_money):'-' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="下单用户" prop="scene" width="160">
|
|
|
+ <template #default="scope">
|
|
|
+ <div class="goods-img" v-if="scope.row.user">
|
|
|
+ <div class="name">
|
|
|
+ <span>{{ scope.row.user?scope.row.user.nickname:'无昵称' }}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div v-else>-</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="订单状态" prop="types" width="160" align="left">
|
|
|
<template #default="scope">
|
|
|
<div class="order-name" v-if="scope.row.status == 0">
|
|
|
@@ -108,6 +118,17 @@
|
|
|
<div v-else>待订单完成</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="来源达人" prop="scene" width="260">
|
|
|
+ <template #default="scope">
|
|
|
+ <div class="goods-img" v-if="scope.row.star">
|
|
|
+ <div class="name">
|
|
|
+ <span>{{ scope.row.star?scope.row.star.nick_name:'-' }}</span>
|
|
|
+ <span class="dec">抖音ID:{{ scope.row.star?scope.row.star.uid:'-' }}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div v-else>-</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="来源" prop="scene" width="160"></el-table-column>
|
|
|
<el-table-column label="下单时间" prop="create_at" width="160"></el-table-column>
|
|
|
<el-table-column label="支付时间" prop="pay_at" width="160">
|