|
@@ -60,6 +60,12 @@
|
|
|
<td style="background: #f8f8f8; width: 70px">备注:</td>
|
|
|
<td colspan="3">{{ d.notes || ""}}</td>
|
|
|
</tr>
|
|
|
+ <tr>
|
|
|
+ <td style="background: #f8f8f8; width: 70px">项目:</td>
|
|
|
+ <td>{{ d.project_text }}</td>
|
|
|
+ <td style="background: #f8f8f8; width: 70px">阶段进度:</td>
|
|
|
+ <td>{{ d.stage_progress_text }}</td>
|
|
|
+ </tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</script>
|
|
@@ -87,16 +93,16 @@
|
|
|
laytpl(getTpl).render(data, function(html){
|
|
|
tableDom.innerHTML = html;
|
|
|
});
|
|
|
+ var id = layui.view.getParameterByName('customer');
|
|
|
table.render({
|
|
|
elem: '#customer_datagrid'
|
|
|
- , url: '/api/dataTable.json'
|
|
|
+ , url: '/customer/review/?customer=' + id
|
|
|
, cols: [[
|
|
|
- {field: 'follow_user', title: '跟踪人', width: 100}
|
|
|
- , {field: 'follow_time', title: "跟踪时间", width: 110}
|
|
|
- , {field: 'connect_status', title: '沟通情况', width: 100}
|
|
|
- , {field: 'rank', title: '客户级别', width: 100}
|
|
|
- , {field: 'application', title: '申请事项', width: 200}
|
|
|
- , {field: 'check_status', title: '审核状态', width: 100}
|
|
|
+ {field: 'create_user_text', title: '跟踪人', width: 100}
|
|
|
+ , {field: 'create_time_f', title: "跟踪时间", width: 150}
|
|
|
+ , {field: 'description', title: '回访情况', width: 200}
|
|
|
+ , {field: 'project_text', title: '申请項目', width: 150}
|
|
|
+ , {field: 'check_status_text', title: '审核状态', width: 100}
|
|
|
]]
|
|
|
, page: true
|
|
|
});
|