<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>