项目结构
12144
└─ 305.jianghu-crm├─ app│ ├─ common│ │ └─ README.md│ ├─ constant│ │ ├─ error.js│ │ └─ README.md│ ├─ controller│ │ └─ README.md│ ├─ service│ │ ├─ cloudDrive.js│ │ ├─ common.js│ │ ├─ constantUi.js│ │ ├─ README.md│ │ └─ student.js│ └─ view│ ├─ common│ │ └─ vueFilters.html│ ├─ component│ │ ├─ drawer│ │ │ ├─ add-product-drawer.html│ │ │ ├─ amount-ratio-setting-drawer.html│ │ │ ├─ approve-record-drawer.html│ │ │ ├─ attachment-drawer.html│ │ │ ├─ business-drawer.html│ │ │ ├─ contacts-drawer.html│ │ │ ├─ contract-drawer.html│ │ │ ├─ create-task-drawer.html│ │ │ ├─ customer-address-drawer.html│ │ │ ├─ duplicate-checking-drawer.html│ │ │ ├─ followup-record-drawer.html│ │ │ ├─ invoice-drawer.html│ │ │ ├─ return-visit-drawer.html│ │ │ ├─ returned-money-drawer.html│ │ │ ├─ team-member-drawer.html│ │ │ └─ transfer-drawer.html│ │ ├─ example│ │ │ └─ studentOfClass.html│ │ ├─ fileBrowser│ │ │ ├─ breadcrumbs.html│ │ │ ├─ createNewDirectory.html│ │ │ ├─ directoryList.html│ │ │ ├─ fileBrowser.html│ │ │ ├─ fileDetail.html│ │ │ ├─ fileUpload.html│ │ │ └─ markdownEditor.html│ │ ├─ markdown2html│ │ │ ├─ articleMarkdownEngine.html│ │ │ ├─ articleQueryTemplate.html│ │ │ ├─ jhTagEngine.html│ │ │ ├─ md2html.html│ │ │ ├─ pdfViewerTemplate.html│ │ │ └─ toggleTemplate.html│ │ ├─ setting│ │ │ ├─ business-setting.html│ │ │ ├─ cluepool-reason-setting.html│ │ │ ├─ contract-setting.html│ │ │ ├─ customer-limit-setting.html│ │ │ ├─ customer-visit-setting.html│ │ │ ├─ product-category-setting.html│ │ │ └─ stage-flow-setting.html│ │ ├─ table-action-button-list.html│ │ └─ tableRecordHistory.html│ ├─ init-json│ │ ├─ component│ │ │ └─ exampleStudentOfClass.js│ │ └─ page│ │ ├─ exampleClass.js│ │ └─ leads.js│ ├─ page│ │ ├─ business.html│ │ ├─ contacts.html│ │ ├─ contract.html│ │ ├─ customer.html│ │ ├─ customerSeas.html│ │ ├─ invoice.html│ │ ├─ leads.html│ │ ├─ leadsSeas.html│ │ ├─ marketing.html│ │ ├─ product.html│ │ ├─ receivables.html│ │ ├─ receivablesPlan.html│ │ ├─ settingBizParam.html│ │ ├─ settingCuepoolRule.html│ │ ├─ settingCustomerSeasRule.html│ │ ├─ visit.html│ │ └─ workbench.html│ ├─ pageBak│ │ ├─ example│ │ └─ leads.html│ └─ pageDoc│ ├─ 1.leads.md│ ├─ exampleClass.md│ ├─ leads.md│ ├─ README.md│ └─ _sidebar.md├─ app.js├─ config│ ├─ config.default.js│ ├─ config.env.example.js│ ├─ config.local.example.js│ ├─ config.local.js│ ├─ config.prod.example.js│ └─ plugin.js├─ doc│ └─ 调研crm.md├─ jsconfig.json├─ package.json├─ README.md├─ run│ ├─ agent_config.json│ ├─ agent_config_meta.json│ ├─ agent_timing_55956.json│ ├─ application_config.json│ ├─ application_config_meta.json│ ├─ application_timing_101576.json│ ├─ application_timing_111204.json│ ├─ application_timing_91460.json│ ├─ application_timing_91748.json│ └─ router.json├─ sql│ ├─ 1.init.sql│ ├─ 2.user.sql│ ├─ 3.mock.sql│ └─ ddl.sql