1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<template>
<scroller-view>
<!-- <scroller-view>-->
<table>
<sub-title> 访客登记 </sub-title>
<tr>
<td><mobile-input label="企业全称"></mobile-input></td>
<td><d-select label="客户所属名单"></d-select></td>
</tr>
<tr>
<td colspan="2"><mobile-input label="实际经营地址"></mobile-input></td>
</tr>
<tr>
<td><mobile-input label="所在园区名称"></mobile-input></td>
<td><d-datetime-picker label="拜访日期"></d-datetime-picker></td>
</tr>
<tr>
<td><mobile-input label="拜访对象姓名"></mobile-input></td>
<td><mobile-input label="拜访对象职务"></mobile-input></td>
</tr>
<tr>
<td><mobile-input label="拜访对象手机"></mobile-input></td>
</tr>
<tr>
<td><mobile-input label="企业主营产品服务"></mobile-input></td>
</tr>
<tr>
<td><mobile-input label="主要下游客户-客户1"></mobile-input></td>
<td><mobile-input label="主要下游客户-客户2"></mobile-input></td>
</tr>
<tr>
<td><mobile-input label="主要下游客户-客户3"></mobile-input></td>
<td>新增下游客户</td>
</tr>
<tr>
<td><mobile-input label="2020年营销收入(万元)"></mobile-input></td>
<td><mobile-input label="2020年净利润(万元)"></mobile-input></td>
</tr>
<tr>
<td><mobile-input label="2019年营销收入(万元)"></mobile-input></td>
<td><mobile-input label="2019年净利润(万元)"></mobile-input></td>
</tr>
<tr>
<td>新增销售收入&净利润</td>
</tr>
<tr>
<td colspan="2"><mobile-input label="当前资产负债率"></mobile-input></td>
</tr>
<tr>
<td colspan="2"><mobile-input label="企业在他行税务贷情况"></mobile-input></td>
</tr>
<tr>
<td colspan="2"><mobile-input label="企业业务需求"></mobile-input></td>
</tr>
<tr>
<td colspan="2"><mobile-input label="后续跟进方案"></mobile-input></td>
</tr>
<tr>
<td colspan="2"><mobile-input label="受疫情影响及其他有效信息"></mobile-input></td>
</tr>
<tr>
<td colspan="2"><mobile-input label="存在较大风险不宜介入"></mobile-input></td>
</tr>
<tr>
<td colspan="2"><mobile-input label="不宜介入具体原因"></mobile-input></td>
</tr>
<tr>
<td colspan="2"><mobile-input label="同业竞品信息收集"></mobile-input></td>
</tr>
<tr>
<td><d-select label="主办客户经理"></d-select></td>
<td><d-select label="协办客户经理"></d-select></td>
</tr>
<tr>
<td><d-select label="分支行带队领导"></d-select></td>
</tr>
<tr>
<td colspan="2"><mobile-input label="评论"></mobile-input></td>
</tr>
<sub-title>影像资料</sub-title>
</table>
<van-button round type="default" style="margin-left: 42%; margin-top: 3%" size="normal">取消</van-button>
<van-button round type="info" style="margin-left: 8%" size="normal" color="rgba(253, 80, 101, 1)">保存</van-button>
<!-- </scroller-view>-->
</scroller-view>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import TitleBar from "@/components/general/TitleBar.vue";
import MobileInput from "@/components/general/form/MobileInput.vue";
import ScrollerView from "@/components/general/ScrollerView.vue";
import SubTitle from "@/components/general/SubTitle.vue";
import DSelect from "@/components/general/form/DSelect.vue";
import DDatetimePicker from "@/components/general/form/DDatetimePicker.vue";
/**
* @Description:精准访客汇报
* @author pd
* @date 2021-11-08 16:11:17
*/
@Component({
name: "AccurateVisitors",
// Components: { TitleBar, MobileInput, ScrollerView, SubTitle, DSelect, DDatetimePicker },
})
export default class AccurateVisitors extends Vue {
onclick() {
console.log("111");
}
}
</script>
<style scoped></style>