├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .idea ├── ertai-oa-crm.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml ├── watcherTasks.xml └── workspace.xml ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── Application.vue │ ├── CapitalFlow.vue │ ├── CapitalFlowAdd.vue │ ├── CapitalFlowEdit.vue │ ├── CapitalFlowList.vue │ ├── CheckWorkAttendance.vue │ ├── CheckWorkAttendanceDetail.vue │ ├── Index.vue │ ├── Leave.vue │ ├── Login.vue │ ├── MyCustomer.vue │ ├── MyCustomerAdd.vue │ ├── MyCustomerDetail.vue │ ├── MyCustomerDetailEdit.vue │ ├── MyCustomerSigned.vue │ ├── MyCustomerSignedAdd.vue │ ├── MyCustomerSignedFor.vue │ ├── MyCustomerSignedFromCustomer.vue │ ├── MyCustomerSignedUpdate.vue │ ├── MySalary.vue │ ├── MySea.vue │ ├── MyWorkAttendance.vue │ ├── NoResource.vue │ ├── PhoneAppointment.vue │ ├── PhoneAppointmentAdd.vue │ ├── PhoneAppointmentDetail.vue │ ├── PhoneAppointmentEdit.vue │ ├── PhoneAppointmentRecord.vue │ ├── PlatformAppointment.vue │ ├── PlatformAppointmentAdd.vue │ ├── PlatformAppointmentDetail.vue │ ├── PlatformAppointmentEdit.vue │ ├── PlatformAppointmentRecord.vue │ ├── Salary.vue │ ├── SeaCustomer.vue │ ├── StaffAdd.vue │ ├── StaffDetail.vue │ ├── StaffEdit.vue │ ├── StaffList.vue │ ├── StationDetail.vue │ ├── StationEdit.vue │ ├── StationList.vue │ ├── TeamCustomer.vue │ ├── TeamCustomerDetail.vue │ └── VisitAppointment.vue ├── const │ └── index.js ├── filter │ └── index.js ├── main.js ├── router │ └── index.js └── scss │ ├── _extends.scss │ ├── _functions.scss │ └── _mixins.scss └── static └── .gitkeep /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/ertai-oa-crm.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.idea/ertai-oa-crm.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Application.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/Application.vue -------------------------------------------------------------------------------- /src/components/CapitalFlow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/CapitalFlow.vue -------------------------------------------------------------------------------- /src/components/CapitalFlowAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/CapitalFlowAdd.vue -------------------------------------------------------------------------------- /src/components/CapitalFlowEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/CapitalFlowEdit.vue -------------------------------------------------------------------------------- /src/components/CapitalFlowList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/CapitalFlowList.vue -------------------------------------------------------------------------------- /src/components/CheckWorkAttendance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/CheckWorkAttendance.vue -------------------------------------------------------------------------------- /src/components/CheckWorkAttendanceDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/CheckWorkAttendanceDetail.vue -------------------------------------------------------------------------------- /src/components/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/Index.vue -------------------------------------------------------------------------------- /src/components/Leave.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/Leave.vue -------------------------------------------------------------------------------- /src/components/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/Login.vue -------------------------------------------------------------------------------- /src/components/MyCustomer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MyCustomer.vue -------------------------------------------------------------------------------- /src/components/MyCustomerAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MyCustomerAdd.vue -------------------------------------------------------------------------------- /src/components/MyCustomerDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MyCustomerDetail.vue -------------------------------------------------------------------------------- /src/components/MyCustomerDetailEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MyCustomerDetailEdit.vue -------------------------------------------------------------------------------- /src/components/MyCustomerSigned.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MyCustomerSigned.vue -------------------------------------------------------------------------------- /src/components/MyCustomerSignedAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MyCustomerSignedAdd.vue -------------------------------------------------------------------------------- /src/components/MyCustomerSignedFor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MyCustomerSignedFor.vue -------------------------------------------------------------------------------- /src/components/MyCustomerSignedFromCustomer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MyCustomerSignedFromCustomer.vue -------------------------------------------------------------------------------- /src/components/MyCustomerSignedUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MyCustomerSignedUpdate.vue -------------------------------------------------------------------------------- /src/components/MySalary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MySalary.vue -------------------------------------------------------------------------------- /src/components/MySea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MySea.vue -------------------------------------------------------------------------------- /src/components/MyWorkAttendance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/MyWorkAttendance.vue -------------------------------------------------------------------------------- /src/components/NoResource.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/NoResource.vue -------------------------------------------------------------------------------- /src/components/PhoneAppointment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/PhoneAppointment.vue -------------------------------------------------------------------------------- /src/components/PhoneAppointmentAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/PhoneAppointmentAdd.vue -------------------------------------------------------------------------------- /src/components/PhoneAppointmentDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/PhoneAppointmentDetail.vue -------------------------------------------------------------------------------- /src/components/PhoneAppointmentEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/PhoneAppointmentEdit.vue -------------------------------------------------------------------------------- /src/components/PhoneAppointmentRecord.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/PhoneAppointmentRecord.vue -------------------------------------------------------------------------------- /src/components/PlatformAppointment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/PlatformAppointment.vue -------------------------------------------------------------------------------- /src/components/PlatformAppointmentAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/PlatformAppointmentAdd.vue -------------------------------------------------------------------------------- /src/components/PlatformAppointmentDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/PlatformAppointmentDetail.vue -------------------------------------------------------------------------------- /src/components/PlatformAppointmentEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/PlatformAppointmentEdit.vue -------------------------------------------------------------------------------- /src/components/PlatformAppointmentRecord.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/PlatformAppointmentRecord.vue -------------------------------------------------------------------------------- /src/components/Salary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/Salary.vue -------------------------------------------------------------------------------- /src/components/SeaCustomer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/SeaCustomer.vue -------------------------------------------------------------------------------- /src/components/StaffAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/StaffAdd.vue -------------------------------------------------------------------------------- /src/components/StaffDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/StaffDetail.vue -------------------------------------------------------------------------------- /src/components/StaffEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/StaffEdit.vue -------------------------------------------------------------------------------- /src/components/StaffList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/StaffList.vue -------------------------------------------------------------------------------- /src/components/StationDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/StationDetail.vue -------------------------------------------------------------------------------- /src/components/StationEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/StationEdit.vue -------------------------------------------------------------------------------- /src/components/StationList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/StationList.vue -------------------------------------------------------------------------------- /src/components/TeamCustomer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/TeamCustomer.vue -------------------------------------------------------------------------------- /src/components/TeamCustomerDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/TeamCustomerDetail.vue -------------------------------------------------------------------------------- /src/components/VisitAppointment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/components/VisitAppointment.vue -------------------------------------------------------------------------------- /src/const/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/const/index.js -------------------------------------------------------------------------------- /src/filter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/filter/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/scss/_extends.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/scss/_functions.scss -------------------------------------------------------------------------------- /src/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oudeqi/oa-crm/HEAD/src/scss/_mixins.scss -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------