Commit 875415f5 authored by 赵茹林's avatar 赵茹林

团队概况、小时动态 更新uid字段,修复部分字段错误

parent c681d0bc
......@@ -163,10 +163,12 @@
props: {
friendId: {
type: Number,
default: 0,
required: true
},
startAt: {
type: String,
default: '',
required: true
}
},
......
......@@ -43,7 +43,7 @@
<el-table-column label="有效微信沟通/通次">
<template slot-scope="scope">
<span class="cell-link" @click="dialogToggle(scope.row)">{{scope.row.valid_chat_count + '/' + scope.row.valid_phone_count}}</span>
<span class="cell-link" @click="dialogToggle(scope.row)">{{scope.row.valid_chat_count + ' / ' + scope.row.valid_phone_count}}</span>
</template>
</el-table-column>
......
......@@ -43,11 +43,10 @@
</tbody>
</table>
<!--回访 开始-->
<el-table :data="list" border size="small">
<!--<el-table-column label="序号" prop="staff_name"></el-table-column>-->
<el-table-column label="老师" prop="teacher_name"></el-table-column>
<el-table-column label="UID" prop="user_id"></el-table-column>
<el-table-column label="UID" prop="friend_uid"></el-table-column>
<el-table-column label="客户微信昵称">
<template slot-scope="scope">{{scope.row.nick || '-'}}</template>
</el-table-column>
......@@ -84,13 +83,13 @@
</template>
</el-table-column>
</el-table>
<!--回访 结束-->
<page :current-page="nowPage" :total="total" :limit="limit" @pageChange="onPageChange" @sizeChange="onSizeChange"/>
</div>
</el-dialog>
<!--小弹框-->
<el-dialog
top="5vh" width="1200px" append-to-body
:title="dialog.title" :visible.sync="dialog.show">
......@@ -98,7 +97,7 @@
<el-table :data="dialog.list" border size="small">
<!--<el-table-column label="序号" prop="staff_name"></el-table-column>-->
<el-table-column label="老师" prop="teacher_name"></el-table-column>
<el-table-column label="UID" prop="user_id"></el-table-column>
<el-table-column label="UID" prop="friend_uid"></el-table-column>
<el-table-column label="客户微信昵称">
<template slot-scope="scope">{{scope.row.nick || '-'}}</template>
</el-table-column>
......
......@@ -164,7 +164,7 @@
</template>
<template slot-scope="scope">
<span class="cell-link" @click="dialogToggle(scope.row, 'achievement')">
{{transRate(scope.row.month_trans_order_num, scope.row.month_trans_user_num)}}
{{transRate(scope.row.month_order_num, scope.row.month_trans_user_num)}}
</span>
</template>
</el-table-column>
......
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