Commit abf93254 authored by IvyXia123's avatar IvyXia123

待回访批量备注提价

parent 85dbdea6
...@@ -56,25 +56,25 @@ ...@@ -56,25 +56,25 @@
<template slot-scope="scope">{{ scope.row.intention === 1 ? '低意向' : scope.row.intention === 2 ? '中意向' : scope.row.intention === 3 ? '高意向' : '不跟踪' }}</template> <template slot-scope="scope">{{ scope.row.intention === 1 ? '低意向' : scope.row.intention === 2 ? '中意向' : scope.row.intention === 3 ? '高意向' : '不跟踪' }}</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="next_visit_at"
label="最近备注时间" label="最近备注时间"
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope">{{ scope.row.remark_time === 0 ? scope.row.created_at : scope.row.remark_time }}</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="created_at" prop="next_visit_at"
label="回访时间" label="回访时间"
show-overflow-tooltip> show-overflow-tooltip>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="desc"
label="操作" label="操作"
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope"><el-input v-model="remarks" placeholder="请输入内容"></el-input><el-button size="medium" type="primary" @click="batchRemarks(item.id)">备注</el-button></template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</el-dialog> </el-dialog>
<el-dialog title="批量备注" append-to-body :visible.sync="dialogFormVisible" style="z-index: 7000"> <el-dialog title="批量备注" append-to-body :visible.sync="dialogFormVisible" style="z-index: 7000">
<el-input v-model="remarks" placeholder="请输入内容"></el-input> <!--<el-input size="mini" v-model="remarks" placeholder="请输入内容"></el-input>-->
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button @click="dialogFormVisible = false">取 消</el-button> <el-button @click="dialogFormVisible = false">取 消</el-button>
<el-button type="primary" @click="OK">确 定</el-button> <el-button type="primary" @click="OK">确 定</el-button>
......
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