Commit db55621d authored by chenfenglei's avatar chenfenglei

日课订单优化

parent ed50ed99
......@@ -88,7 +88,7 @@
className="f-c"
width="150">
<template slot-scope="scope">
<img class="avatar" :src="scope.row.user_avatar"/> {{scope.row.user_nickname}}<br>(ID:{{scope.row.user_id}})
<img class="avatar" :src="scope.row.user_avatar"/> {{scope.row.user_nickname}}<br>(ID:{{scope.row.user_id}})<br>手机:{{scope.row.user_mobile}}
</template>
</el-table-column>
<el-table-column
......@@ -99,7 +99,7 @@
width="250"
prop="invite_id"
className="f-c"
label="推广人属性">
label="来源">
<template slot-scope="scope">
<div @click="showSource(scope.row)" v-if="scope.row.invite_earnings > 0 && scope.row.invite_id !== 0" style="width:100%;display: flex;color: #409eff;cursor: pointer">
<img :src="scope.row.invite_avatar" class="avatar"/>
......@@ -140,8 +140,6 @@
优惠券
</el-button>
</template>
</el-table-column>
<el-table-column prop="user_mobile" label="购买人手机号">
</el-table-column>
<el-table-column
label="付款状态"
......@@ -689,6 +687,7 @@
<style scoped>
.avatar{
width: 50px;
min-width: 50px;
height: 50px;
margin-right: 5px;
border-radius: 50%;
......
......@@ -60,12 +60,12 @@
</el-table-column>
<el-table-column label="购买人" className="f-c" width="150">
<template slot-scope="scope">
<img class="avatar" :src="scope.row.user_avatar" /> {{scope.row.user_nickname}}<br>(ID:{{scope.row.user_id}})
<img class="avatar" :src="scope.row.user_avatar" /> {{scope.row.user_nickname}}<br>(ID:{{scope.row.user_id}})<br>手机:{{scope.row.user_mobile}}
</template>
</el-table-column>
<el-table-column prop="goods_name" label="商品名称">
</el-table-column>
<el-table-column width="250" prop="invite_id" className="f-c" label="推广人属性">
<el-table-column width="250" prop="invite_id" className="f-c" label="来源">
<template slot-scope="scope">
<div @click="showSource(scope.row)" v-if="scope.row.invite_earnings > 0 && scope.row.invite_id !== 0" style="width:100%;display: flex;color: #409eff;cursor: pointer">
<img :src="scope.row.invite_avatar" class="avatar" /> 类型:{{scope.row.invite_type}}
......@@ -102,8 +102,6 @@
优惠券
</el-button>
</template>
</el-table-column>
<el-table-column prop="user_mobile" label="购买人手机号">
</el-table-column>
<el-table-column label="付款状态" width="80">
<template slot-scope="scope">
......@@ -656,6 +654,7 @@ export default {
<style scoped>
.avatar {
width: 50px;
min-width: 50px;
height: 50px;
margin-right: 5px;
border-radius: 50%;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment