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

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

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