├── .browserslistrc ├── .editorconfig ├── .env ├── .eslintrc.js ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitpod.yml ├── .hygen.js ├── .vscode ├── component.code-snippets ├── launch.json └── tasks.json ├── README.md ├── _templates └── gen │ ├── component │ ├── api.ejs.t │ ├── component-config.ejs.t │ ├── component-dataset.ejs.t │ ├── component-form.ejs.t │ ├── component-table.ejs.t │ ├── prompt.js │ ├── route.ejs.t │ ├── style-less.ejs.t │ └── view.ejs.t │ └── model │ ├── model.ejs.t │ ├── module.ejs.t │ └── prompt.js ├── appveyor.yml ├── babel.config.js ├── docs ├── .vuepress │ ├── config.js │ ├── mixin.js │ ├── nav │ │ ├── ch.js │ │ └── en.js │ └── styles │ │ ├── index.styl │ │ └── palette.styl ├── README.md ├── _config.yml ├── en │ ├── README.md │ ├── faq │ │ └── README.md │ └── guide │ │ ├── customize-theme.en-US.md │ │ ├── download.en-US.md │ │ ├── getting-started.en-US.md │ │ ├── i18n.en-US.md │ │ ├── introduce.en-US.md │ │ ├── sponsor.en-US.md │ │ ├── use-with-vue-cli.en-US.md │ │ └── zero │ │ ├── README.md │ │ ├── eight.md │ │ ├── five.md │ │ ├── four.md │ │ ├── one.md │ │ ├── seven.md │ │ ├── six.md │ │ ├── three.md │ │ └── two.md └── zh │ ├── README.md │ ├── faq │ └── README.md │ └── guide │ ├── ant-design-vue.zh-CN.md │ ├── api-service.zh-CN.md │ ├── build-publish.zh-CN.md │ ├── component.zh-CN.md │ ├── customize-theme.zh-CN.md │ ├── download.zh-CN.md │ ├── getting-started.zh-CN.md │ ├── i18n.zh-CN.md │ ├── introduce.zh-CN.md │ ├── layout.zh-CN.md │ ├── new-page.zh-CN.md │ ├── permission.zh-CN.md │ ├── project-engeneer.zh-CN.md │ ├── use-with-vue-cli.zh-CN.md │ └── zero │ ├── README.md │ ├── five.md │ ├── four.md │ ├── one.md │ ├── six.md │ ├── three.md │ └── two.md ├── ecosystem.config.js ├── package.json ├── perview ├── vue-ts-admin-mobile.gif └── vue-ts-admin.gif ├── postcss.config.js ├── public ├── apexcharts.min.js ├── avatar │ ├── a1.jpg │ ├── a2.jpg │ ├── a3.jpg │ ├── a4.jpg │ ├── dragon.jpg │ ├── man_1.jpg │ ├── man_2.jpg │ ├── man_3.jpg │ ├── man_4.jpg │ ├── man_5.jpg │ ├── me.jpeg │ └── mf-avatar.svg ├── bg │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 18.jpg │ ├── 19.jpg │ ├── 2.jpg │ ├── 20.jpg │ ├── 21.jpg │ ├── 22.jpg │ ├── 23.jpg │ ├── 24.jpg │ ├── 25.jpg │ ├── 26.jpg │ ├── 27.jpg │ ├── 28.jpg │ ├── 29.jpg │ ├── 3.jpg │ ├── 30.jpg │ ├── 31.jpg │ ├── 32.jpg │ ├── 33.jpg │ ├── 34.jpg │ ├── 35.jpg │ ├── 36.jpg │ ├── 37.jpg │ ├── 38.jpg │ ├── 39.jpg │ ├── 4.jpg │ ├── 40.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ ├── chemex.jpg │ ├── hero.png │ ├── jumbotron.jpg │ ├── project-chronicled.png │ ├── project-coupal.png │ ├── project-glcsolutions.png │ ├── project-southwestforestproducts.png │ ├── project-userforge.png │ └── project-wedlerengineering.png ├── canvaslayer.js ├── creative_process │ ├── 01.jpeg │ ├── 02.jpg │ ├── 03.jpeg │ ├── 04.jpeg │ ├── 05.jpeg │ ├── 06.jpeg │ ├── 07.jpeg │ ├── 08.jpeg │ ├── 09.jpeg │ ├── 10.jpeg │ ├── 11.jpeg │ └── 12.jpeg ├── data-set.min.js ├── discover_word │ ├── ds_1.jpeg │ ├── ds_2.jpeg │ ├── ds_3.jpeg │ ├── ds_4.jpeg │ ├── ds_5.jpeg │ └── thumb │ │ ├── ds_1.jpg │ │ ├── ds_2.jpg │ │ ├── ds_3.jpg │ │ ├── ds_4.jpg │ │ └── ds_5.jpg ├── error │ ├── 403.svg │ ├── 404.svg │ └── 500.svg ├── favicon.ico ├── icon │ ├── america.svg │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-icon.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── china.svg │ ├── cl-briteweb.svg │ ├── cl-chronicled.svg │ ├── cl-domain7.svg │ ├── cl-goodkind.svg │ ├── cl-redstamp.svg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.png │ ├── file_empty.svg │ ├── google.png │ ├── hangouts.png │ ├── icon-designer.svg │ ├── icon-frontend.svg │ ├── icon-mentor.svg │ ├── inbox.png │ ├── keep.png │ ├── logo.svg │ ├── msapplication-icon-144x144.png │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── ylb-logo.svg ├── index.html ├── nature │ ├── n1.jpeg │ ├── n2.jpeg │ ├── n3.jpeg │ ├── n4.jpeg │ ├── n5.jpeg │ ├── n6.jpeg │ ├── n7.jpeg │ └── n8.jpg ├── people │ ├── man │ │ ├── m1.jpg │ │ ├── m2.jpeg │ │ ├── m3.jpg │ │ ├── m4.jpg │ │ └── m5.jpg │ └── woman │ │ ├── w1.jpg │ │ ├── w2.jpg │ │ ├── w3.jpg │ │ ├── w4.jpg │ │ └── w5.jpg └── playpage.html ├── src ├── App.less ├── App.tsx ├── api │ ├── api.lf.ts │ ├── api.ts │ └── index.ts ├── assets │ ├── 401_images │ │ └── 401.gif │ ├── 404_images │ │ ├── 404.png │ │ └── 404_cloud.png │ ├── avatar.svg │ ├── car.png │ ├── caroff.png │ ├── caroff_2x.png │ ├── caroffeast.png │ ├── caroffnorth.png │ ├── caroffsouth.png │ ├── caroffwest.png │ ├── carrun.png │ ├── carrun_2x.png │ ├── carruneast.png │ ├── carrunnorth.png │ ├── carrunsouth.png │ ├── carrunwest.png │ ├── carstatic.png │ ├── carstatic_2x.png │ ├── carstaticeast.png │ ├── carstaticnorth.png │ ├── carstaticsouth.png │ ├── carstaticwest.png │ ├── closeinfowindow.png │ ├── cqCenter.png │ ├── end.png │ ├── gotrack_2x.png │ ├── icons │ │ └── bx-analyse.svg │ ├── infobox.png │ ├── json │ │ └── map.json │ ├── loc.png │ ├── login-bg.jpg │ ├── logo.png │ ├── logo.svg │ ├── menu.json │ ├── noPic.png │ ├── othertype.png │ ├── othertypeoffline.png │ ├── othertypestatic.png │ ├── point.png │ ├── small-4.jpg │ ├── speedcontrol.png │ ├── start.png │ └── zoominicon.png ├── background.ts ├── components │ ├── AvatarList │ │ ├── Item.vue │ │ ├── List.vue │ │ ├── index.less │ │ ├── index.md │ │ └── index.ts │ ├── CountDown │ │ ├── index.md │ │ └── index.vue │ ├── DescriptionList │ │ ├── DescriptionList.tsx │ │ ├── DescriptionListItem.tsx │ │ └── index.less │ ├── Ellipsis │ │ ├── Ellipsis.vue │ │ ├── index.md │ │ └── index.vue │ ├── FilterForm │ │ ├── MForm.less │ │ ├── MForm.tsx │ │ └── index.vue │ ├── FilterTable │ │ ├── MFilter.less │ │ ├── MFilter.tsx │ │ ├── MTable.less │ │ ├── MTable.tsx │ │ └── index.vue │ ├── FooterToolbar │ │ ├── index.less │ │ ├── index.md │ │ └── index.tsx │ ├── IconSelector │ │ ├── README.md │ │ ├── icons.ts │ │ ├── index.less │ │ └── index.tsx │ ├── Layout │ │ ├── AppMain.less │ │ ├── AppMain.tsx │ │ ├── Footer │ │ │ ├── Footer.tsx │ │ │ └── index.less │ │ ├── Header │ │ │ ├── Header.less │ │ │ └── Header.tsx │ │ └── Sidebar │ │ │ ├── MenuList.less │ │ │ ├── MenuList.tsx │ │ │ ├── Sidebar.less │ │ │ └── Sidebar.tsx │ ├── Loader │ │ └── index.vue │ ├── Spin │ │ ├── index.less │ │ └── index.tsx │ ├── StandardFormRow │ │ ├── StandardFormRow.vue │ │ └── index.ts │ ├── _util │ │ └── util.ts │ ├── global.less │ ├── index.less │ └── index.ts ├── global.d.ts ├── interface │ └── index.ts ├── locales │ ├── cn.json │ ├── en.json │ └── es.json ├── main.ts ├── mock │ ├── baseData.js │ ├── customers.js │ ├── dashboard.js │ ├── index.js │ └── login.js ├── models │ ├── BaseModel │ │ └── index.ts │ ├── ERPModel │ │ ├── accounts │ │ │ ├── accounting_period │ │ │ │ └── accounting_period.json │ │ │ ├── accounts_settings │ │ │ │ └── accounts_settings.json │ │ │ ├── allowed_to_transact_with │ │ │ │ └── allowed_to_transact_with.json │ │ │ ├── bank │ │ │ │ └── bank.json │ │ │ ├── bank_account │ │ │ │ └── bank_account.json │ │ │ ├── bank_guarantee │ │ │ │ └── bank_guarantee.json │ │ │ ├── bank_reconciliation │ │ │ │ └── bank_reconciliation.json │ │ │ ├── bank_reconciliation_detail │ │ │ │ └── bank_reconciliation_detail.json │ │ │ ├── bank_statement_settings │ │ │ │ └── bank_statement_settings.json │ │ │ ├── bank_statement_settings_item │ │ │ │ └── bank_statement_settings_item.json │ │ │ ├── bank_statement_transaction_entry │ │ │ │ └── bank_statement_transaction_entry.json │ │ │ ├── bank_statement_transaction_invoice_item │ │ │ │ └── bank_statement_transaction_invoice_item.json │ │ │ ├── bank_statement_transaction_payment_item │ │ │ │ └── bank_statement_transaction_payment_item.json │ │ │ ├── bank_statement_transaction_settings │ │ │ │ └── bank_statement_transaction_settings.json │ │ │ ├── bank_statement_transaction_settings_item │ │ │ │ └── bank_statement_transaction_settings_item.json │ │ │ ├── budget │ │ │ │ └── budget.json │ │ │ ├── budget_account │ │ │ │ └── budget_account.json │ │ │ ├── c_form │ │ │ │ └── c_form.json │ │ │ ├── c_form_invoice_detail │ │ │ │ └── c_form_invoice_detail.json │ │ │ ├── cash_flow_mapper │ │ │ │ └── cash_flow_mapper.json │ │ │ ├── cash_flow_mapping │ │ │ │ └── cash_flow_mapping.json │ │ │ ├── cash_flow_mapping_accounts │ │ │ │ └── cash_flow_mapping_accounts.json │ │ │ ├── cash_flow_mapping_template │ │ │ │ └── cash_flow_mapping_template.json │ │ │ ├── cash_flow_mapping_template_details │ │ │ │ └── cash_flow_mapping_template_details.json │ │ │ ├── cashier_closing │ │ │ │ └── cashier_closing.json │ │ │ ├── cashier_closing_payments │ │ │ │ └── cashier_closing_payments.json │ │ │ ├── cheque_print_template │ │ │ │ └── cheque_print_template.json │ │ │ ├── closed_document │ │ │ │ └── closed_document.json │ │ │ ├── cost_center │ │ │ │ ├── cost_center.json │ │ │ │ └── test_records.json │ │ │ ├── exchange_rate_revaluation │ │ │ │ └── exchange_rate_revaluation.json │ │ │ ├── exchange_rate_revaluation_account │ │ │ │ └── exchange_rate_revaluation_account.json │ │ │ ├── finance_book │ │ │ │ └── finance_book.json │ │ │ ├── fiscal_year │ │ │ │ ├── fiscal_year.json │ │ │ │ └── test_records.json │ │ │ ├── fiscal_year_company │ │ │ │ └── fiscal_year_company.json │ │ │ ├── gl_entry │ │ │ │ └── gl_entry.json │ │ │ ├── gst_account │ │ │ │ └── gst_account.json │ │ │ ├── item_tax_template │ │ │ │ ├── item_tax_template.json │ │ │ │ └── test_records.json │ │ │ ├── item_tax_template_detail │ │ │ │ └── item_tax_template_detail.json │ │ │ ├── journal_entry │ │ │ │ ├── journal_entry.json │ │ │ │ └── test_records.json │ │ │ ├── journal_entry_account │ │ │ │ └── journal_entry_account.json │ │ │ ├── loyalty_point_entry │ │ │ │ └── loyalty_point_entry.json │ │ │ ├── loyalty_point_entry_redemption │ │ │ │ └── loyalty_point_entry_redemption.json │ │ │ ├── loyalty_program │ │ │ │ └── loyalty_program.json │ │ │ ├── loyalty_program_collection │ │ │ │ └── loyalty_program_collection.json │ │ │ ├── mode_of_payment │ │ │ │ └── mode_of_payment.json │ │ │ ├── mode_of_payment_account │ │ │ │ └── mode_of_payment_account.json │ │ │ ├── monthly_distribution │ │ │ │ ├── monthly_distribution.json │ │ │ │ └── test_records.json │ │ │ ├── monthly_distribution_percentage │ │ │ │ └── monthly_distribution_percentage.json │ │ │ ├── opening_invoice_creation_tool │ │ │ │ └── opening_invoice_creation_tool.json │ │ │ ├── opening_invoice_creation_tool_item │ │ │ │ └── opening_invoice_creation_tool_item.json │ │ │ ├── party_account │ │ │ │ └── party_account.json │ │ │ ├── payment_entry │ │ │ │ └── payment_entry.json │ │ │ ├── payment_entry_deduction │ │ │ │ └── payment_entry_deduction.json │ │ │ ├── payment_entry_reference │ │ │ │ └── payment_entry_reference.json │ │ │ ├── payment_gateway_account │ │ │ │ └── payment_gateway_account.json │ │ │ ├── payment_order │ │ │ │ └── payment_order.json │ │ │ ├── payment_order_reference │ │ │ │ └── payment_order_reference.json │ │ │ ├── payment_reconciliation │ │ │ │ └── payment_reconciliation.json │ │ │ ├── payment_reconciliation_invoice │ │ │ │ └── payment_reconciliation_invoice.json │ │ │ ├── payment_reconciliation_payment │ │ │ │ └── payment_reconciliation_payment.json │ │ │ ├── payment_request │ │ │ │ └── payment_request.json │ │ │ ├── payment_schedule │ │ │ │ └── payment_schedule.json │ │ │ ├── payment_term │ │ │ │ ├── payment_term.json │ │ │ │ └── test_records.json │ │ │ ├── payment_terms_template │ │ │ │ ├── payment_terms_template.json │ │ │ │ └── test_records.json │ │ │ ├── payment_terms_template_detail │ │ │ │ └── payment_terms_template_detail.json │ │ │ ├── period_closing_voucher │ │ │ │ └── period_closing_voucher.json │ │ │ ├── pos_customer_group │ │ │ │ └── pos_customer_group.json │ │ │ ├── pos_item_group │ │ │ │ └── pos_item_group.json │ │ │ ├── pos_profile │ │ │ │ └── pos_profile.json │ │ │ ├── pos_profile_user │ │ │ │ └── pos_profile_user.json │ │ │ ├── pos_settings │ │ │ │ └── pos_settings.json │ │ │ ├── pricing_rule │ │ │ │ └── pricing_rule.json │ │ │ ├── purchase_invoice │ │ │ │ ├── purchase_invoice.json │ │ │ │ └── test_records.json │ │ │ ├── purchase_invoice_advance │ │ │ │ └── purchase_invoice_advance.json │ │ │ ├── purchase_invoice_item │ │ │ │ └── purchase_invoice_item.json │ │ │ ├── purchase_taxes_and_charges │ │ │ │ └── purchase_taxes_and_charges.json │ │ │ ├── purchase_taxes_and_charges_template │ │ │ │ └── purchase_taxes_and_charges_template.json │ │ │ ├── salary_component_account │ │ │ │ └── salary_component_account.json │ │ │ ├── sales_invoice │ │ │ │ ├── sales_invoice.json │ │ │ │ └── test_records.json │ │ │ ├── sales_invoice_advance │ │ │ │ └── sales_invoice_advance.json │ │ │ ├── sales_invoice_item │ │ │ │ └── sales_invoice_item.json │ │ │ ├── sales_invoice_payment │ │ │ │ └── sales_invoice_payment.json │ │ │ ├── sales_invoice_timesheet │ │ │ │ └── sales_invoice_timesheet.json │ │ │ ├── sales_taxes_and_charges │ │ │ │ └── sales_taxes_and_charges.json │ │ │ ├── sales_taxes_and_charges_template │ │ │ │ ├── sales_taxes_and_charges_template.json │ │ │ │ └── test_records.json │ │ │ ├── share_balance │ │ │ │ └── share_balance.json │ │ │ ├── share_transfer │ │ │ │ └── share_transfer.json │ │ │ ├── share_type │ │ │ │ ├── share_type.json │ │ │ │ └── test_records.json │ │ │ ├── shareholder │ │ │ │ ├── shareholder.json │ │ │ │ └── test_records.json │ │ │ ├── shipping_rule │ │ │ │ ├── shipping_rule.json │ │ │ │ └── test_records.json │ │ │ ├── shipping_rule_condition │ │ │ │ └── shipping_rule_condition.json │ │ │ ├── shipping_rule_country │ │ │ │ └── shipping_rule_country.json │ │ │ ├── subscription │ │ │ │ └── subscription.json │ │ │ ├── subscription_invoice │ │ │ │ └── subscription_invoice.json │ │ │ ├── subscription_plan │ │ │ │ └── subscription_plan.json │ │ │ ├── subscription_plan_detail │ │ │ │ └── subscription_plan_detail.json │ │ │ ├── subscription_settings │ │ │ │ └── subscription_settings.json │ │ │ ├── tax_category │ │ │ │ ├── tax_category.json │ │ │ │ └── test_records.json │ │ │ ├── tax_rule │ │ │ │ ├── tax_rule.json │ │ │ │ └── test_records.json │ │ │ ├── tax_withholding_account │ │ │ │ └── tax_withholding_account.json │ │ │ ├── tax_withholding_category │ │ │ │ └── tax_withholding_category.json │ │ │ └── tax_withholding_rate │ │ │ │ └── tax_withholding_rate.json │ │ ├── assets │ │ │ ├── asset │ │ │ │ └── asset.json │ │ │ ├── asset_category │ │ │ │ └── asset_category.json │ │ │ ├── asset_category_account │ │ │ │ └── asset_category_account.json │ │ │ ├── asset_finance_book │ │ │ │ └── asset_finance_book.json │ │ │ ├── asset_maintenance │ │ │ │ └── asset_maintenance.json │ │ │ ├── asset_maintenance_log │ │ │ │ └── asset_maintenance_log.json │ │ │ ├── asset_maintenance_task │ │ │ │ └── asset_maintenance_task.json │ │ │ ├── asset_maintenance_team │ │ │ │ └── asset_maintenance_team.json │ │ │ ├── asset_movement │ │ │ │ └── asset_movement.json │ │ │ ├── asset_repair │ │ │ │ └── asset_repair.json │ │ │ ├── asset_settings │ │ │ │ └── asset_settings.json │ │ │ ├── asset_value_adjustment │ │ │ │ └── asset_value_adjustment.json │ │ │ ├── depreciation_schedule │ │ │ │ └── depreciation_schedule.json │ │ │ ├── linked_location │ │ │ │ └── linked_location.json │ │ │ ├── location │ │ │ │ ├── location.json │ │ │ │ └── test_records.json │ │ │ └── maintenance_team_member │ │ │ │ └── maintenance_team_member.json │ │ ├── hr │ │ │ ├── additional_salary │ │ │ │ └── additional_salary.json │ │ │ ├── appraisal │ │ │ │ └── appraisal.json │ │ │ ├── appraisal_goal │ │ │ │ └── appraisal_goal.json │ │ │ ├── attendance │ │ │ │ ├── attendance.json │ │ │ │ └── test_records.json │ │ │ ├── attendance_request │ │ │ │ └── attendance_request.json │ │ │ ├── branch │ │ │ │ ├── branch.json │ │ │ │ └── test_records.json │ │ │ ├── compensatory_leave_request │ │ │ │ └── compensatory_leave_request.json │ │ │ ├── daily_work_summary │ │ │ │ └── daily_work_summary.json │ │ │ ├── daily_work_summary_group │ │ │ │ └── daily_work_summary_group.json │ │ │ ├── daily_work_summary_group_user │ │ │ │ └── daily_work_summary_group_user.json │ │ │ ├── department │ │ │ │ ├── department.json │ │ │ │ └── test_records.json │ │ │ ├── department_approver │ │ │ │ └── department_approver.json │ │ │ ├── designation │ │ │ │ ├── designation.json │ │ │ │ └── test_records.json │ │ │ ├── driver │ │ │ │ └── driver.json │ │ │ ├── driving_license_category │ │ │ │ └── driving_license_category.json │ │ │ ├── employee │ │ │ │ └── employee.json │ │ │ ├── employee_advance │ │ │ │ └── employee_advance.json │ │ │ ├── employee_attendance_tool │ │ │ │ └── employee_attendance_tool.json │ │ │ ├── employee_benefit_application │ │ │ │ └── employee_benefit_application.json │ │ │ ├── employee_benefit_application_detail │ │ │ │ └── employee_benefit_application_detail.json │ │ │ ├── employee_benefit_claim │ │ │ │ └── employee_benefit_claim.json │ │ │ ├── employee_boarding_activity │ │ │ │ └── employee_boarding_activity.json │ │ │ ├── employee_education │ │ │ │ └── employee_education.json │ │ │ ├── employee_external_work_history │ │ │ │ └── employee_external_work_history.json │ │ │ ├── employee_grade │ │ │ │ └── employee_grade.json │ │ │ ├── employee_health_insurance │ │ │ │ └── employee_health_insurance.json │ │ │ ├── employee_incentive │ │ │ │ └── employee_incentive.json │ │ │ ├── employee_internal_work_history │ │ │ │ └── employee_internal_work_history.json │ │ │ ├── employee_onboarding │ │ │ │ └── employee_onboarding.json │ │ │ ├── employee_onboarding_activity │ │ │ │ └── employee_onboarding_activity.json │ │ │ ├── employee_onboarding_template │ │ │ │ └── employee_onboarding_template.json │ │ │ ├── employee_promotion │ │ │ │ └── employee_promotion.json │ │ │ ├── employee_property_history │ │ │ │ └── employee_property_history.json │ │ │ ├── employee_separation │ │ │ │ └── employee_separation.json │ │ │ ├── employee_separation_template │ │ │ │ └── employee_separation_template.json │ │ │ ├── employee_tax_exemption_category │ │ │ │ └── employee_tax_exemption_category.json │ │ │ ├── employee_tax_exemption_declaration │ │ │ │ └── employee_tax_exemption_declaration.json │ │ │ ├── employee_tax_exemption_declaration_category │ │ │ │ └── employee_tax_exemption_declaration_category.json │ │ │ ├── employee_tax_exemption_proof_submission │ │ │ │ └── employee_tax_exemption_proof_submission.json │ │ │ ├── employee_tax_exemption_proof_submission_detail │ │ │ │ └── employee_tax_exemption_proof_submission_detail.json │ │ │ ├── employee_tax_exemption_sub_category │ │ │ │ └── employee_tax_exemption_sub_category.json │ │ │ ├── employee_transfer │ │ │ │ └── employee_transfer.json │ │ │ ├── employee_transfer_property │ │ │ │ └── employee_transfer_property.json │ │ │ ├── employment_type │ │ │ │ ├── employment_type.json │ │ │ │ └── test_records.json │ │ │ ├── expense_claim │ │ │ │ ├── expense_claim.json │ │ │ │ └── test_records.json │ │ │ ├── expense_claim_account │ │ │ │ └── expense_claim_account.json │ │ │ ├── expense_claim_advance │ │ │ │ └── expense_claim_advance.json │ │ │ ├── expense_claim_detail │ │ │ │ └── expense_claim_detail.json │ │ │ ├── expense_claim_type │ │ │ │ └── expense_claim_type.json │ │ │ ├── holiday │ │ │ │ └── holiday.json │ │ │ ├── holiday_list │ │ │ │ ├── holiday_list.json │ │ │ │ └── test_records.json │ │ │ ├── hr_settings │ │ │ │ └── hr_settings.json │ │ │ ├── identification_document_type │ │ │ │ └── identification_document_type.json │ │ │ ├── interest │ │ │ │ └── interest.json │ │ │ ├── job_applicant │ │ │ │ └── job_applicant.json │ │ │ ├── job_applicant_source │ │ │ │ └── job_applicant_source.json │ │ │ ├── job_offer │ │ │ │ └── job_offer.json │ │ │ ├── job_offer_term │ │ │ │ └── job_offer_term.json │ │ │ ├── job_opening │ │ │ │ └── job_opening.json │ │ │ ├── leave_allocation │ │ │ │ ├── leave_allocation.json │ │ │ │ └── test_records.json │ │ │ ├── leave_application │ │ │ │ ├── leave_application.json │ │ │ │ └── test_records.json │ │ │ ├── leave_block_list │ │ │ │ ├── leave_block_list.json │ │ │ │ └── test_records.json │ │ │ ├── leave_block_list_allow │ │ │ │ └── leave_block_list_allow.json │ │ │ ├── leave_block_list_date │ │ │ │ └── leave_block_list_date.json │ │ │ ├── leave_control_panel │ │ │ │ └── leave_control_panel.json │ │ │ ├── leave_encashment │ │ │ │ └── leave_encashment.json │ │ │ ├── leave_period │ │ │ │ └── leave_period.json │ │ │ ├── leave_policy │ │ │ │ └── leave_policy.json │ │ │ ├── leave_policy_detail │ │ │ │ └── leave_policy_detail.json │ │ │ ├── leave_type │ │ │ │ ├── leave_type.json │ │ │ │ └── test_records.json │ │ │ ├── loan │ │ │ │ └── loan.json │ │ │ ├── loan_application │ │ │ │ └── loan_application.json │ │ │ ├── loan_type │ │ │ │ └── loan_type.json │ │ │ ├── offer_term │ │ │ │ └── offer_term.json │ │ │ ├── payroll_employee_detail │ │ │ │ └── payroll_employee_detail.json │ │ │ ├── payroll_entry │ │ │ │ └── payroll_entry.json │ │ │ ├── payroll_period │ │ │ │ └── payroll_period.json │ │ │ ├── payroll_period_date │ │ │ │ └── payroll_period_date.json │ │ │ ├── purpose_of_travel │ │ │ │ └── purpose_of_travel.json │ │ │ ├── repayment_schedule │ │ │ │ └── repayment_schedule.json │ │ │ ├── retention_bonus │ │ │ │ └── retention_bonus.json │ │ │ ├── salary_component │ │ │ │ ├── salary_component.json │ │ │ │ └── test_records.json │ │ │ ├── salary_detail │ │ │ │ └── salary_detail.json │ │ │ ├── salary_slip │ │ │ │ └── salary_slip.json │ │ │ ├── salary_slip_loan │ │ │ │ └── salary_slip_loan.json │ │ │ ├── salary_slip_timesheet │ │ │ │ └── salary_slip_timesheet.json │ │ │ ├── salary_structure │ │ │ │ └── salary_structure.json │ │ │ ├── salary_structure_assignment │ │ │ │ └── salary_structure_assignment.json │ │ │ ├── shift_assignment │ │ │ │ └── shift_assignment.json │ │ │ ├── shift_request │ │ │ │ └── shift_request.json │ │ │ ├── shift_type │ │ │ │ └── shift_type.json │ │ │ ├── staffing_plan │ │ │ │ └── staffing_plan.json │ │ │ ├── staffing_plan_detail │ │ │ │ └── staffing_plan_detail.json │ │ │ ├── taxable_salary_slab │ │ │ │ └── taxable_salary_slab.json │ │ │ ├── training_event │ │ │ │ └── training_event.json │ │ │ ├── training_event_employee │ │ │ │ └── training_event_employee.json │ │ │ ├── training_feedback │ │ │ │ └── training_feedback.json │ │ │ ├── training_program │ │ │ │ └── training_program.json │ │ │ ├── training_result │ │ │ │ └── training_result.json │ │ │ ├── training_result_employee │ │ │ │ └── training_result_employee.json │ │ │ ├── travel_itinerary │ │ │ │ └── travel_itinerary.json │ │ │ ├── travel_request │ │ │ │ └── travel_request.json │ │ │ ├── travel_request_costing │ │ │ │ └── travel_request_costing.json │ │ │ ├── upload_attendance │ │ │ │ └── upload_attendance.json │ │ │ ├── vehicle │ │ │ │ └── vehicle.json │ │ │ ├── vehicle_log │ │ │ │ └── vehicle_log.json │ │ │ └── vehicle_service │ │ │ │ └── vehicle_service.json │ │ ├── index.ts │ │ └── projects │ │ │ ├── activity_cost │ │ │ ├── activity_cost.json │ │ │ └── test_records.json │ │ │ ├── activity_type │ │ │ ├── activity_type.json │ │ │ └── test_records.json │ │ │ ├── dependent_task │ │ │ └── dependent_task.json │ │ │ ├── project │ │ │ ├── project.json │ │ │ └── test_records.json │ │ │ ├── project_task │ │ │ └── project_task.json │ │ │ ├── project_template │ │ │ └── project_template.json │ │ │ ├── project_template_task │ │ │ └── project_template_task.json │ │ │ ├── project_type │ │ │ └── project_type.json │ │ │ ├── project_update │ │ │ └── project_update.json │ │ │ ├── project_user │ │ │ └── project_user.json │ │ │ ├── projects_settings │ │ │ └── projects_settings.json │ │ │ ├── task │ │ │ └── task.json │ │ │ ├── task_depends_on │ │ │ └── task_depends_on.json │ │ │ ├── timesheet │ │ │ └── timesheet.json │ │ │ └── timesheet_detail │ │ │ └── timesheet_detail.json │ ├── README.md │ └── index.ts ├── playpage │ ├── client │ │ ├── App.less │ │ ├── App.tsx │ │ ├── main.ts │ │ └── params.ts │ ├── main │ │ ├── config.ts │ │ ├── index.ts │ │ ├── inject.ts │ │ ├── mainWindow.ts │ │ ├── menu.ts │ │ └── utils.ts │ └── server │ │ ├── apolloServer.ts │ │ └── schema.graphql ├── router │ ├── README.md │ ├── import_development.ts │ ├── import_production.ts │ └── index.ts ├── store │ ├── README.md │ ├── getters.ts │ ├── index.ts │ ├── modules │ │ ├── app.ts │ │ ├── page.ts │ │ ├── pages │ │ │ ├── Account │ │ │ │ ├── models │ │ │ │ │ └── Account.ts │ │ │ │ └── modules │ │ │ │ │ └── Account.ts │ │ │ ├── App │ │ │ │ └── modules │ │ │ │ │ └── app.ts │ │ │ ├── Archive │ │ │ │ ├── models │ │ │ │ │ └── Archive.ts │ │ │ │ └── modules │ │ │ │ │ └── Archive.ts │ │ │ ├── Article │ │ │ │ ├── models │ │ │ │ │ └── Article.ts │ │ │ │ └── modules │ │ │ │ │ └── Article.ts │ │ │ ├── Asset │ │ │ │ ├── models │ │ │ │ │ └── Asset.ts │ │ │ │ └── modules │ │ │ │ │ └── Asset.ts │ │ │ ├── Bookmark │ │ │ │ ├── models │ │ │ │ │ └── Bookmark.ts │ │ │ │ └── modules │ │ │ │ │ └── Bookmark.ts │ │ │ ├── Department │ │ │ │ ├── models │ │ │ │ │ └── Department.ts │ │ │ │ └── modules │ │ │ │ │ └── Department.ts │ │ │ ├── Document │ │ │ │ ├── models │ │ │ │ │ └── Document.ts │ │ │ │ └── modules │ │ │ │ │ └── Document.ts │ │ │ ├── DocumentType │ │ │ │ ├── models │ │ │ │ │ └── DocumentType.ts │ │ │ │ └── modules │ │ │ │ │ └── DocumentType.ts │ │ │ ├── Employee │ │ │ │ ├── models │ │ │ │ │ ├── Employee.ts │ │ │ │ │ └── EmployeePromotion.ts │ │ │ │ └── modules │ │ │ │ │ └── Employee.ts │ │ │ ├── Event │ │ │ │ ├── models │ │ │ │ │ └── Event.ts │ │ │ │ └── modules │ │ │ │ │ └── Event.ts │ │ │ ├── Leave │ │ │ │ ├── models │ │ │ │ │ ├── Leave.ts │ │ │ │ │ ├── LeaveAllocation.ts │ │ │ │ │ ├── LeaveEncashment.ts │ │ │ │ │ └── LeaveType.ts │ │ │ │ └── modules │ │ │ │ │ └── Leave.ts │ │ │ ├── Member │ │ │ │ ├── Readme.md │ │ │ │ ├── models │ │ │ │ │ └── Member.ts │ │ │ │ └── modules │ │ │ │ │ └── Member.ts │ │ │ ├── Model │ │ │ │ ├── models │ │ │ │ │ └── Model.ts │ │ │ │ └── modules │ │ │ │ │ └── Model.ts │ │ │ ├── Project │ │ │ │ ├── models │ │ │ │ │ └── Project.ts │ │ │ │ └── modules │ │ │ │ │ └── Project.ts │ │ │ ├── ProjectTask │ │ │ │ ├── models │ │ │ │ │ └── ProjectTask.ts │ │ │ │ └── modules │ │ │ │ │ └── ProjectTask.ts │ │ │ ├── ProjectType │ │ │ │ ├── models │ │ │ │ │ └── ProjectType.ts │ │ │ │ └── modules │ │ │ │ │ └── ProjectType.ts │ │ │ ├── Research │ │ │ │ ├── models │ │ │ │ │ └── Research.ts │ │ │ │ └── modules │ │ │ │ │ └── Research.ts │ │ │ ├── User │ │ │ │ ├── models │ │ │ │ │ └── User.ts │ │ │ │ └── modules │ │ │ │ │ └── User.ts │ │ │ ├── UserAppraisal │ │ │ │ ├── IndexRoute.ts │ │ │ │ ├── IndexView.vue │ │ │ │ ├── models │ │ │ │ │ └── UserAppraisal.ts │ │ │ │ └── modules │ │ │ │ │ └── UserAppraisal.ts │ │ │ ├── UserAppraisalGoal │ │ │ │ ├── models │ │ │ │ │ └── UserAppraisalGoal.ts │ │ │ │ └── modules │ │ │ │ │ └── UserAppraisalGoal.ts │ │ │ ├── UserDesignation │ │ │ │ ├── models │ │ │ │ │ └── UserDesignation.ts │ │ │ │ └── modules │ │ │ │ │ └── UserDesignation.ts │ │ │ ├── UserMilitant │ │ │ │ ├── models │ │ │ │ │ └── UserMilitant.ts │ │ │ │ └── modules │ │ │ │ │ └── UserMilitant.ts │ │ │ ├── UserPromotion │ │ │ │ ├── models │ │ │ │ │ └── UserPromotion.ts │ │ │ │ └── modules │ │ │ │ │ └── UserPromotion.ts │ │ │ └── Vehicle │ │ │ │ ├── models │ │ │ │ ├── Vehicle.ts │ │ │ │ └── VehicleService.ts │ │ │ │ └── modules │ │ │ │ └── Vehicle.ts │ │ └── user.ts │ ├── mutation-types.ts │ └── plugins │ │ ├── index.ts │ │ ├── ormPlugin.graphql.ts │ │ ├── ormPlugin.ts │ │ └── pathifyPlugin.ts ├── styles │ ├── global.less │ └── var.less ├── types │ ├── global.d.ts │ ├── shims-ant-design-vue.d.ts │ ├── shims-antv.d.ts │ ├── shims-tsx.d.ts │ ├── shims-vue-amap.d.ts │ ├── shims-vue.d.ts │ └── shims-vuex-orm.d.ts ├── utils │ ├── builder.ts │ ├── city.ts │ ├── config.ts │ ├── constant.ts │ ├── coordTrasns.ts │ ├── datetime.ts │ ├── dynamicModel.ts │ ├── exportMixin.ts │ ├── formMixin.ts │ ├── genFormData.ts │ ├── generator.ts │ ├── helper.ts │ ├── i18n.ts │ ├── icons.ts │ ├── index.ts │ ├── ipcRenderer.ts │ ├── request.graphql.ts │ ├── request.localforage.ts │ ├── request.ts │ ├── tableMixin.ts │ ├── translate.ts │ └── use.ts └── views │ ├── Article │ ├── components │ │ ├── ArticleForm.tsx │ │ ├── ArticleTable.tsx │ │ ├── config.ts │ │ └── index.less │ └── index.tsx │ ├── Document │ ├── components │ │ ├── DocumentForm.tsx │ │ ├── DocumentTable.tsx │ │ ├── config.ts │ │ └── index.less │ └── index.tsx │ ├── Employee │ ├── components │ │ ├── EmployeeForm.tsx │ │ ├── EmployeeTable.tsx │ │ ├── config.ts │ │ └── index.less │ └── index.tsx │ ├── Event │ ├── components │ │ ├── EventForm.tsx │ │ ├── EventTable.tsx │ │ ├── config.ts │ │ └── index.less │ └── index.tsx │ ├── Leave │ ├── components │ │ ├── LeaveForm.tsx │ │ ├── LeaveTable.tsx │ │ ├── config.ts │ │ └── index.less │ └── index.tsx │ ├── Member │ ├── components │ │ ├── MemberCardList.tsx │ │ ├── MemberForm.tsx │ │ ├── MemberTable.tsx │ │ ├── card.less │ │ ├── config.ts │ │ └── index.less │ └── index.tsx │ ├── Project │ └── components │ │ └── stepForm │ │ └── index.tsx │ ├── UserDesignation │ ├── components │ │ ├── UserDesignationForm.tsx │ │ ├── UserDesignationTable.tsx │ │ ├── config.ts │ │ └── index.less │ └── index.tsx │ ├── UserMilitant │ ├── components │ │ ├── UserMilitantForm.tsx │ │ ├── UserMilitantTable.tsx │ │ ├── config.ts │ │ └── index.less │ └── index.tsx │ ├── UserPromotion │ ├── components │ │ ├── UserPromotionForm.tsx │ │ ├── UserPromotionTable.tsx │ │ ├── config.ts │ │ └── index.less │ └── index.tsx │ ├── chart │ ├── Article │ │ └── params.ts │ ├── Leave │ │ └── params.ts │ ├── apexCharts │ │ ├── area │ │ │ ├── dataSeries.ts │ │ │ ├── dateSeries.ts │ │ │ ├── githubData.ts │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── params.ts │ │ ├── bar │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── params.ts │ │ ├── column │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── params.ts │ │ ├── index.tsx │ │ ├── line │ │ │ ├── dataSeries.ts │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── params.ts │ │ └── mixed │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── params.ts │ └── index.tsx │ ├── components │ ├── form │ │ ├── baseForm │ │ │ ├── AvatarModal.tsx │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── index.tsx │ │ └── personalCenter │ │ │ ├── index.less │ │ │ └── index.tsx │ ├── index.tsx │ └── list │ │ └── userRoleTable │ │ ├── index.less │ │ └── index.tsx │ ├── customers │ ├── baseInfo │ │ ├── index.less │ │ ├── index.tsx │ │ └── infoModal.tsx │ └── index.tsx │ ├── dashboard │ ├── config.ts │ ├── index.less │ └── index.tsx │ ├── error │ ├── 401.vue │ └── 404.vue │ ├── helpers │ ├── components │ │ ├── CardList.vue │ │ ├── ExportHelper.tsx │ │ ├── IconHelper.tsx │ │ ├── StandardList.vue │ │ └── index.less │ └── index.tsx │ ├── login │ ├── index.tsx │ └── login.less │ ├── map │ ├── index.tsx │ └── trajectory │ │ ├── commonfun.ts │ │ ├── data.json │ │ ├── index.less │ │ ├── index.tsx │ │ └── mapControl.ts │ ├── playground │ ├── crudForm │ │ ├── index.less │ │ └── index.tsx │ └── index.tsx │ ├── profile │ ├── index.tsx │ ├── information │ │ ├── baseForm │ │ │ ├── AvatarModal.tsx │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── index.less │ │ ├── index.tsx │ │ ├── personalCenter │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── userArticleList │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── userRoleTable │ │ │ ├── index.less │ │ │ └── index.tsx │ └── settings │ │ ├── index.less │ │ ├── index.tsx │ │ └── security.tsx │ └── project │ ├── components │ ├── ProjectForm.tsx │ ├── ProjectTable.tsx │ ├── config.ts │ └── index.less │ ├── detail │ ├── index.less │ └── index.tsx │ ├── index.tsx │ └── list │ ├── index.less │ └── index.tsx ├── tests ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ └── specs │ │ └── test.js └── server.js ├── tsconfig.json ├── vue.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | VUE_APP_GRAPHQL_SERVER="http://localhost:4000/graphql" -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.hygen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/.hygen.js -------------------------------------------------------------------------------- /.vscode/component.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/.vscode/component.code-snippets -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/README.md -------------------------------------------------------------------------------- /_templates/gen/component/api.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/component/api.ejs.t -------------------------------------------------------------------------------- /_templates/gen/component/component-config.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/component/component-config.ejs.t -------------------------------------------------------------------------------- /_templates/gen/component/component-dataset.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/component/component-dataset.ejs.t -------------------------------------------------------------------------------- /_templates/gen/component/component-form.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/component/component-form.ejs.t -------------------------------------------------------------------------------- /_templates/gen/component/component-table.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/component/component-table.ejs.t -------------------------------------------------------------------------------- /_templates/gen/component/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/component/prompt.js -------------------------------------------------------------------------------- /_templates/gen/component/route.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/component/route.ejs.t -------------------------------------------------------------------------------- /_templates/gen/component/style-less.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/component/style-less.ejs.t -------------------------------------------------------------------------------- /_templates/gen/component/view.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/component/view.ejs.t -------------------------------------------------------------------------------- /_templates/gen/model/model.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/model/model.ejs.t -------------------------------------------------------------------------------- /_templates/gen/model/module.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/model/module.ejs.t -------------------------------------------------------------------------------- /_templates/gen/model/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/_templates/gen/model/prompt.js -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/.vuepress/mixin.js -------------------------------------------------------------------------------- /docs/.vuepress/nav/ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/.vuepress/nav/ch.js -------------------------------------------------------------------------------- /docs/.vuepress/nav/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/.vuepress/nav/en.js -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- 1 | .content { 2 | font-size 20px 3 | } -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/README.md -------------------------------------------------------------------------------- /docs/en/faq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/faq/README.md -------------------------------------------------------------------------------- /docs/en/guide/customize-theme.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/customize-theme.en-US.md -------------------------------------------------------------------------------- /docs/en/guide/download.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/download.en-US.md -------------------------------------------------------------------------------- /docs/en/guide/getting-started.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/getting-started.en-US.md -------------------------------------------------------------------------------- /docs/en/guide/i18n.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/i18n.en-US.md -------------------------------------------------------------------------------- /docs/en/guide/introduce.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/introduce.en-US.md -------------------------------------------------------------------------------- /docs/en/guide/sponsor.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/sponsor.en-US.md -------------------------------------------------------------------------------- /docs/en/guide/use-with-vue-cli.en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/use-with-vue-cli.en-US.md -------------------------------------------------------------------------------- /docs/en/guide/zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/zero/README.md -------------------------------------------------------------------------------- /docs/en/guide/zero/eight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/zero/eight.md -------------------------------------------------------------------------------- /docs/en/guide/zero/five.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/zero/five.md -------------------------------------------------------------------------------- /docs/en/guide/zero/four.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/zero/four.md -------------------------------------------------------------------------------- /docs/en/guide/zero/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/zero/one.md -------------------------------------------------------------------------------- /docs/en/guide/zero/seven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/zero/seven.md -------------------------------------------------------------------------------- /docs/en/guide/zero/six.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/zero/six.md -------------------------------------------------------------------------------- /docs/en/guide/zero/three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/zero/three.md -------------------------------------------------------------------------------- /docs/en/guide/zero/two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/en/guide/zero/two.md -------------------------------------------------------------------------------- /docs/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/README.md -------------------------------------------------------------------------------- /docs/zh/faq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/faq/README.md -------------------------------------------------------------------------------- /docs/zh/guide/ant-design-vue.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/ant-design-vue.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/api-service.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/api-service.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/build-publish.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/build-publish.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/component.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/component.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/customize-theme.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/customize-theme.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/download.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/download.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/getting-started.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/getting-started.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/i18n.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/i18n.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/introduce.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/introduce.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/layout.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/layout.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/new-page.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/new-page.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/permission.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/permission.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/project-engeneer.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/project-engeneer.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/use-with-vue-cli.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/use-with-vue-cli.zh-CN.md -------------------------------------------------------------------------------- /docs/zh/guide/zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/zero/README.md -------------------------------------------------------------------------------- /docs/zh/guide/zero/five.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/zero/five.md -------------------------------------------------------------------------------- /docs/zh/guide/zero/four.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/zero/four.md -------------------------------------------------------------------------------- /docs/zh/guide/zero/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/zero/one.md -------------------------------------------------------------------------------- /docs/zh/guide/zero/six.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/zero/six.md -------------------------------------------------------------------------------- /docs/zh/guide/zero/three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/zero/three.md -------------------------------------------------------------------------------- /docs/zh/guide/zero/two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/docs/zh/guide/zero/two.md -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/package.json -------------------------------------------------------------------------------- /perview/vue-ts-admin-mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/perview/vue-ts-admin-mobile.gif -------------------------------------------------------------------------------- /perview/vue-ts-admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/perview/vue-ts-admin.gif -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/apexcharts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/apexcharts.min.js -------------------------------------------------------------------------------- /public/avatar/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/a1.jpg -------------------------------------------------------------------------------- /public/avatar/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/a2.jpg -------------------------------------------------------------------------------- /public/avatar/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/a3.jpg -------------------------------------------------------------------------------- /public/avatar/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/a4.jpg -------------------------------------------------------------------------------- /public/avatar/dragon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/dragon.jpg -------------------------------------------------------------------------------- /public/avatar/man_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/man_1.jpg -------------------------------------------------------------------------------- /public/avatar/man_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/man_2.jpg -------------------------------------------------------------------------------- /public/avatar/man_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/man_3.jpg -------------------------------------------------------------------------------- /public/avatar/man_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/man_4.jpg -------------------------------------------------------------------------------- /public/avatar/man_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/man_5.jpg -------------------------------------------------------------------------------- /public/avatar/me.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/me.jpeg -------------------------------------------------------------------------------- /public/avatar/mf-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/avatar/mf-avatar.svg -------------------------------------------------------------------------------- /public/bg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/1.jpg -------------------------------------------------------------------------------- /public/bg/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/10.jpg -------------------------------------------------------------------------------- /public/bg/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/11.jpg -------------------------------------------------------------------------------- /public/bg/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/12.jpg -------------------------------------------------------------------------------- /public/bg/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/13.jpg -------------------------------------------------------------------------------- /public/bg/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/14.jpg -------------------------------------------------------------------------------- /public/bg/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/15.jpg -------------------------------------------------------------------------------- /public/bg/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/16.jpg -------------------------------------------------------------------------------- /public/bg/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/17.jpg -------------------------------------------------------------------------------- /public/bg/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/18.jpg -------------------------------------------------------------------------------- /public/bg/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/19.jpg -------------------------------------------------------------------------------- /public/bg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/2.jpg -------------------------------------------------------------------------------- /public/bg/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/20.jpg -------------------------------------------------------------------------------- /public/bg/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/21.jpg -------------------------------------------------------------------------------- /public/bg/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/22.jpg -------------------------------------------------------------------------------- /public/bg/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/23.jpg -------------------------------------------------------------------------------- /public/bg/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/24.jpg -------------------------------------------------------------------------------- /public/bg/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/25.jpg -------------------------------------------------------------------------------- /public/bg/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/26.jpg -------------------------------------------------------------------------------- /public/bg/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/27.jpg -------------------------------------------------------------------------------- /public/bg/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/28.jpg -------------------------------------------------------------------------------- /public/bg/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/29.jpg -------------------------------------------------------------------------------- /public/bg/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/3.jpg -------------------------------------------------------------------------------- /public/bg/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/30.jpg -------------------------------------------------------------------------------- /public/bg/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/31.jpg -------------------------------------------------------------------------------- /public/bg/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/32.jpg -------------------------------------------------------------------------------- /public/bg/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/33.jpg -------------------------------------------------------------------------------- /public/bg/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/34.jpg -------------------------------------------------------------------------------- /public/bg/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/35.jpg -------------------------------------------------------------------------------- /public/bg/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/36.jpg -------------------------------------------------------------------------------- /public/bg/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/37.jpg -------------------------------------------------------------------------------- /public/bg/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/38.jpg -------------------------------------------------------------------------------- /public/bg/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/39.jpg -------------------------------------------------------------------------------- /public/bg/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/4.jpg -------------------------------------------------------------------------------- /public/bg/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/40.jpg -------------------------------------------------------------------------------- /public/bg/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/5.jpg -------------------------------------------------------------------------------- /public/bg/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/6.jpg -------------------------------------------------------------------------------- /public/bg/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/7.jpg -------------------------------------------------------------------------------- /public/bg/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/8.jpg -------------------------------------------------------------------------------- /public/bg/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/9.jpg -------------------------------------------------------------------------------- /public/bg/chemex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/chemex.jpg -------------------------------------------------------------------------------- /public/bg/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/hero.png -------------------------------------------------------------------------------- /public/bg/jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/jumbotron.jpg -------------------------------------------------------------------------------- /public/bg/project-chronicled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/project-chronicled.png -------------------------------------------------------------------------------- /public/bg/project-coupal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/project-coupal.png -------------------------------------------------------------------------------- /public/bg/project-glcsolutions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/project-glcsolutions.png -------------------------------------------------------------------------------- /public/bg/project-southwestforestproducts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/project-southwestforestproducts.png -------------------------------------------------------------------------------- /public/bg/project-userforge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/project-userforge.png -------------------------------------------------------------------------------- /public/bg/project-wedlerengineering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/bg/project-wedlerengineering.png -------------------------------------------------------------------------------- /public/canvaslayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/canvaslayer.js -------------------------------------------------------------------------------- /public/creative_process/01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/01.jpeg -------------------------------------------------------------------------------- /public/creative_process/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/02.jpg -------------------------------------------------------------------------------- /public/creative_process/03.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/03.jpeg -------------------------------------------------------------------------------- /public/creative_process/04.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/04.jpeg -------------------------------------------------------------------------------- /public/creative_process/05.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/05.jpeg -------------------------------------------------------------------------------- /public/creative_process/06.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/06.jpeg -------------------------------------------------------------------------------- /public/creative_process/07.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/07.jpeg -------------------------------------------------------------------------------- /public/creative_process/08.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/08.jpeg -------------------------------------------------------------------------------- /public/creative_process/09.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/09.jpeg -------------------------------------------------------------------------------- /public/creative_process/10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/10.jpeg -------------------------------------------------------------------------------- /public/creative_process/11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/11.jpeg -------------------------------------------------------------------------------- /public/creative_process/12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/creative_process/12.jpeg -------------------------------------------------------------------------------- /public/data-set.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/data-set.min.js -------------------------------------------------------------------------------- /public/discover_word/ds_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/discover_word/ds_1.jpeg -------------------------------------------------------------------------------- /public/discover_word/ds_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/discover_word/ds_2.jpeg -------------------------------------------------------------------------------- /public/discover_word/ds_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/discover_word/ds_3.jpeg -------------------------------------------------------------------------------- /public/discover_word/ds_4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/discover_word/ds_4.jpeg -------------------------------------------------------------------------------- /public/discover_word/ds_5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/discover_word/ds_5.jpeg -------------------------------------------------------------------------------- /public/discover_word/thumb/ds_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/discover_word/thumb/ds_1.jpg -------------------------------------------------------------------------------- /public/discover_word/thumb/ds_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/discover_word/thumb/ds_2.jpg -------------------------------------------------------------------------------- /public/discover_word/thumb/ds_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/discover_word/thumb/ds_3.jpg -------------------------------------------------------------------------------- /public/discover_word/thumb/ds_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/discover_word/thumb/ds_4.jpg -------------------------------------------------------------------------------- /public/discover_word/thumb/ds_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/discover_word/thumb/ds_5.jpg -------------------------------------------------------------------------------- /public/error/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/error/403.svg -------------------------------------------------------------------------------- /public/error/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/error/404.svg -------------------------------------------------------------------------------- /public/error/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/error/500.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon/america.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/america.svg -------------------------------------------------------------------------------- /public/icon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/icon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/icon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/apple-icon.png -------------------------------------------------------------------------------- /public/icon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/icon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/icon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/icon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/icon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/icon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/icon/china.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/china.svg -------------------------------------------------------------------------------- /public/icon/cl-briteweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/cl-briteweb.svg -------------------------------------------------------------------------------- /public/icon/cl-chronicled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/cl-chronicled.svg -------------------------------------------------------------------------------- /public/icon/cl-domain7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/cl-domain7.svg -------------------------------------------------------------------------------- /public/icon/cl-goodkind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/cl-goodkind.svg -------------------------------------------------------------------------------- /public/icon/cl-redstamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/cl-redstamp.svg -------------------------------------------------------------------------------- /public/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/favicon-16x16.png -------------------------------------------------------------------------------- /public/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/favicon-32x32.png -------------------------------------------------------------------------------- /public/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/favicon.png -------------------------------------------------------------------------------- /public/icon/file_empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/file_empty.svg -------------------------------------------------------------------------------- /public/icon/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/google.png -------------------------------------------------------------------------------- /public/icon/hangouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/hangouts.png -------------------------------------------------------------------------------- /public/icon/icon-designer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/icon-designer.svg -------------------------------------------------------------------------------- /public/icon/icon-frontend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/icon-frontend.svg -------------------------------------------------------------------------------- /public/icon/icon-mentor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/icon-mentor.svg -------------------------------------------------------------------------------- /public/icon/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/inbox.png -------------------------------------------------------------------------------- /public/icon/keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/keep.png -------------------------------------------------------------------------------- /public/icon/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/logo.svg -------------------------------------------------------------------------------- /public/icon/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /public/icon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/mstile-150x150.png -------------------------------------------------------------------------------- /public/icon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/icon/ylb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/icon/ylb-logo.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/index.html -------------------------------------------------------------------------------- /public/nature/n1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/nature/n1.jpeg -------------------------------------------------------------------------------- /public/nature/n2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/nature/n2.jpeg -------------------------------------------------------------------------------- /public/nature/n3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/nature/n3.jpeg -------------------------------------------------------------------------------- /public/nature/n4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/nature/n4.jpeg -------------------------------------------------------------------------------- /public/nature/n5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/nature/n5.jpeg -------------------------------------------------------------------------------- /public/nature/n6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/nature/n6.jpeg -------------------------------------------------------------------------------- /public/nature/n7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/nature/n7.jpeg -------------------------------------------------------------------------------- /public/nature/n8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/nature/n8.jpg -------------------------------------------------------------------------------- /public/people/man/m1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/people/man/m1.jpg -------------------------------------------------------------------------------- /public/people/man/m2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/people/man/m2.jpeg -------------------------------------------------------------------------------- /public/people/man/m3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/people/man/m3.jpg -------------------------------------------------------------------------------- /public/people/man/m4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/people/man/m4.jpg -------------------------------------------------------------------------------- /public/people/man/m5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/people/man/m5.jpg -------------------------------------------------------------------------------- /public/people/woman/w1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/people/woman/w1.jpg -------------------------------------------------------------------------------- /public/people/woman/w2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/people/woman/w2.jpg -------------------------------------------------------------------------------- /public/people/woman/w3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/people/woman/w3.jpg -------------------------------------------------------------------------------- /public/people/woman/w4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/people/woman/w4.jpg -------------------------------------------------------------------------------- /public/people/woman/w5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/people/woman/w5.jpg -------------------------------------------------------------------------------- /public/playpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/public/playpage.html -------------------------------------------------------------------------------- /src/App.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/App.less -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/api/api.lf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/api/api.lf.ts -------------------------------------------------------------------------------- /src/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/api/api.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/assets/401_images/401.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/401_images/401.gif -------------------------------------------------------------------------------- /src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/404_images/404.png -------------------------------------------------------------------------------- /src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /src/assets/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/avatar.svg -------------------------------------------------------------------------------- /src/assets/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/car.png -------------------------------------------------------------------------------- /src/assets/caroff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/caroff.png -------------------------------------------------------------------------------- /src/assets/caroff_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/caroff_2x.png -------------------------------------------------------------------------------- /src/assets/caroffeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/caroffeast.png -------------------------------------------------------------------------------- /src/assets/caroffnorth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/caroffnorth.png -------------------------------------------------------------------------------- /src/assets/caroffsouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/caroffsouth.png -------------------------------------------------------------------------------- /src/assets/caroffwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/caroffwest.png -------------------------------------------------------------------------------- /src/assets/carrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carrun.png -------------------------------------------------------------------------------- /src/assets/carrun_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carrun_2x.png -------------------------------------------------------------------------------- /src/assets/carruneast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carruneast.png -------------------------------------------------------------------------------- /src/assets/carrunnorth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carrunnorth.png -------------------------------------------------------------------------------- /src/assets/carrunsouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carrunsouth.png -------------------------------------------------------------------------------- /src/assets/carrunwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carrunwest.png -------------------------------------------------------------------------------- /src/assets/carstatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carstatic.png -------------------------------------------------------------------------------- /src/assets/carstatic_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carstatic_2x.png -------------------------------------------------------------------------------- /src/assets/carstaticeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carstaticeast.png -------------------------------------------------------------------------------- /src/assets/carstaticnorth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carstaticnorth.png -------------------------------------------------------------------------------- /src/assets/carstaticsouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carstaticsouth.png -------------------------------------------------------------------------------- /src/assets/carstaticwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/carstaticwest.png -------------------------------------------------------------------------------- /src/assets/closeinfowindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/closeinfowindow.png -------------------------------------------------------------------------------- /src/assets/cqCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/cqCenter.png -------------------------------------------------------------------------------- /src/assets/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/end.png -------------------------------------------------------------------------------- /src/assets/gotrack_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/gotrack_2x.png -------------------------------------------------------------------------------- /src/assets/icons/bx-analyse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/icons/bx-analyse.svg -------------------------------------------------------------------------------- /src/assets/infobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/infobox.png -------------------------------------------------------------------------------- /src/assets/json/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/json/map.json -------------------------------------------------------------------------------- /src/assets/loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/loc.png -------------------------------------------------------------------------------- /src/assets/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/login-bg.jpg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/menu.json -------------------------------------------------------------------------------- /src/assets/noPic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/noPic.png -------------------------------------------------------------------------------- /src/assets/othertype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/othertype.png -------------------------------------------------------------------------------- /src/assets/othertypeoffline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/othertypeoffline.png -------------------------------------------------------------------------------- /src/assets/othertypestatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/othertypestatic.png -------------------------------------------------------------------------------- /src/assets/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/point.png -------------------------------------------------------------------------------- /src/assets/small-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/small-4.jpg -------------------------------------------------------------------------------- /src/assets/speedcontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/speedcontrol.png -------------------------------------------------------------------------------- /src/assets/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/start.png -------------------------------------------------------------------------------- /src/assets/zoominicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/assets/zoominicon.png -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/components/AvatarList/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/AvatarList/Item.vue -------------------------------------------------------------------------------- /src/components/AvatarList/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/AvatarList/List.vue -------------------------------------------------------------------------------- /src/components/AvatarList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/AvatarList/index.less -------------------------------------------------------------------------------- /src/components/AvatarList/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/AvatarList/index.md -------------------------------------------------------------------------------- /src/components/AvatarList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/AvatarList/index.ts -------------------------------------------------------------------------------- /src/components/CountDown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/CountDown/index.md -------------------------------------------------------------------------------- /src/components/CountDown/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/CountDown/index.vue -------------------------------------------------------------------------------- /src/components/DescriptionList/DescriptionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/DescriptionList/DescriptionList.tsx -------------------------------------------------------------------------------- /src/components/DescriptionList/DescriptionListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/DescriptionList/DescriptionListItem.tsx -------------------------------------------------------------------------------- /src/components/DescriptionList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/DescriptionList/index.less -------------------------------------------------------------------------------- /src/components/Ellipsis/Ellipsis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Ellipsis/Ellipsis.vue -------------------------------------------------------------------------------- /src/components/Ellipsis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Ellipsis/index.md -------------------------------------------------------------------------------- /src/components/Ellipsis/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Ellipsis/index.vue -------------------------------------------------------------------------------- /src/components/FilterForm/MForm.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FilterForm/MForm.less -------------------------------------------------------------------------------- /src/components/FilterForm/MForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FilterForm/MForm.tsx -------------------------------------------------------------------------------- /src/components/FilterForm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FilterForm/index.vue -------------------------------------------------------------------------------- /src/components/FilterTable/MFilter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FilterTable/MFilter.less -------------------------------------------------------------------------------- /src/components/FilterTable/MFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FilterTable/MFilter.tsx -------------------------------------------------------------------------------- /src/components/FilterTable/MTable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FilterTable/MTable.less -------------------------------------------------------------------------------- /src/components/FilterTable/MTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FilterTable/MTable.tsx -------------------------------------------------------------------------------- /src/components/FilterTable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FilterTable/index.vue -------------------------------------------------------------------------------- /src/components/FooterToolbar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FooterToolbar/index.less -------------------------------------------------------------------------------- /src/components/FooterToolbar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FooterToolbar/index.md -------------------------------------------------------------------------------- /src/components/FooterToolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/FooterToolbar/index.tsx -------------------------------------------------------------------------------- /src/components/IconSelector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/IconSelector/README.md -------------------------------------------------------------------------------- /src/components/IconSelector/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/IconSelector/icons.ts -------------------------------------------------------------------------------- /src/components/IconSelector/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/IconSelector/index.less -------------------------------------------------------------------------------- /src/components/IconSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/IconSelector/index.tsx -------------------------------------------------------------------------------- /src/components/Layout/AppMain.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Layout/AppMain.less -------------------------------------------------------------------------------- /src/components/Layout/AppMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Layout/AppMain.tsx -------------------------------------------------------------------------------- /src/components/Layout/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Layout/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/Layout/Footer/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Layout/Footer/index.less -------------------------------------------------------------------------------- /src/components/Layout/Header/Header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Layout/Header/Header.less -------------------------------------------------------------------------------- /src/components/Layout/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Layout/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Layout/Sidebar/MenuList.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Layout/Sidebar/MenuList.less -------------------------------------------------------------------------------- /src/components/Layout/Sidebar/MenuList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Layout/Sidebar/MenuList.tsx -------------------------------------------------------------------------------- /src/components/Layout/Sidebar/Sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Layout/Sidebar/Sidebar.less -------------------------------------------------------------------------------- /src/components/Layout/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Layout/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/Loader/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Loader/index.vue -------------------------------------------------------------------------------- /src/components/Spin/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Spin/index.less -------------------------------------------------------------------------------- /src/components/Spin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/Spin/index.tsx -------------------------------------------------------------------------------- /src/components/StandardFormRow/StandardFormRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/StandardFormRow/StandardFormRow.vue -------------------------------------------------------------------------------- /src/components/StandardFormRow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/StandardFormRow/index.ts -------------------------------------------------------------------------------- /src/components/_util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/_util/util.ts -------------------------------------------------------------------------------- /src/components/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/global.less -------------------------------------------------------------------------------- /src/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/index.less -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/interface/index.ts -------------------------------------------------------------------------------- /src/locales/cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/locales/cn.json -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/es.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/mock/baseData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/mock/baseData.js -------------------------------------------------------------------------------- /src/mock/customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/mock/customers.js -------------------------------------------------------------------------------- /src/mock/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/mock/dashboard.js -------------------------------------------------------------------------------- /src/mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/mock/index.js -------------------------------------------------------------------------------- /src/mock/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/mock/login.js -------------------------------------------------------------------------------- /src/models/BaseModel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/BaseModel/index.ts -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/accounting_period/accounting_period.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/accounting_period/accounting_period.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/accounts_settings/accounts_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/accounts_settings/accounts_settings.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/bank/bank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/bank/bank.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/bank_account/bank_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/bank_account/bank_account.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/bank_guarantee/bank_guarantee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/bank_guarantee/bank_guarantee.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/bank_reconciliation/bank_reconciliation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/bank_reconciliation/bank_reconciliation.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/bank_statement_settings/bank_statement_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/bank_statement_settings/bank_statement_settings.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/budget/budget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/budget/budget.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/budget_account/budget_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/budget_account/budget_account.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/c_form/c_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/c_form/c_form.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/c_form_invoice_detail/c_form_invoice_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/c_form_invoice_detail/c_form_invoice_detail.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/cash_flow_mapper/cash_flow_mapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/cash_flow_mapper/cash_flow_mapper.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/cash_flow_mapping/cash_flow_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/cash_flow_mapping/cash_flow_mapping.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/cashier_closing/cashier_closing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/cashier_closing/cashier_closing.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/cheque_print_template/cheque_print_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/cheque_print_template/cheque_print_template.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/closed_document/closed_document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/closed_document/closed_document.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/cost_center/cost_center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/cost_center/cost_center.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/cost_center/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/finance_book/finance_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/finance_book/finance_book.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/fiscal_year/fiscal_year.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/fiscal_year/fiscal_year.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/fiscal_year/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/fiscal_year_company/fiscal_year_company.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/fiscal_year_company/fiscal_year_company.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/gl_entry/gl_entry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/gl_entry/gl_entry.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/gst_account/gst_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/gst_account/gst_account.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/item_tax_template/item_tax_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/item_tax_template/item_tax_template.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/item_tax_template/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/journal_entry/journal_entry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/journal_entry/journal_entry.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/journal_entry/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/journal_entry_account/journal_entry_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/journal_entry_account/journal_entry_account.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/loyalty_point_entry/loyalty_point_entry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/loyalty_point_entry/loyalty_point_entry.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/loyalty_program/loyalty_program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/loyalty_program/loyalty_program.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/mode_of_payment/mode_of_payment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/mode_of_payment/mode_of_payment.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/mode_of_payment_account/mode_of_payment_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/mode_of_payment_account/mode_of_payment_account.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/monthly_distribution/monthly_distribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/monthly_distribution/monthly_distribution.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/monthly_distribution/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/party_account/party_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/party_account/party_account.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/payment_entry/payment_entry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/payment_entry/payment_entry.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/payment_entry_deduction/payment_entry_deduction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/payment_entry_deduction/payment_entry_deduction.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/payment_order/payment_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/payment_order/payment_order.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/payment_request/payment_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/payment_request/payment_request.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/payment_schedule/payment_schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/payment_schedule/payment_schedule.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/payment_term/payment_term.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/payment_term/payment_term.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/payment_term/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/payment_terms_template/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/pos_customer_group/pos_customer_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/pos_customer_group/pos_customer_group.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/pos_item_group/pos_item_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/pos_item_group/pos_item_group.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/pos_profile/pos_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/pos_profile/pos_profile.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/pos_profile_user/pos_profile_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/pos_profile_user/pos_profile_user.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/pos_settings/pos_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/pos_settings/pos_settings.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/pricing_rule/pricing_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/pricing_rule/pricing_rule.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/purchase_invoice/purchase_invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/purchase_invoice/purchase_invoice.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/purchase_invoice/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/purchase_invoice_item/purchase_invoice_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/purchase_invoice_item/purchase_invoice_item.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/sales_invoice/sales_invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/sales_invoice/sales_invoice.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/sales_invoice/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/sales_invoice_advance/sales_invoice_advance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/sales_invoice_advance/sales_invoice_advance.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/sales_invoice_item/sales_invoice_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/sales_invoice_item/sales_invoice_item.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/sales_invoice_payment/sales_invoice_payment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/sales_invoice_payment/sales_invoice_payment.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/sales_taxes_and_charges_template/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/share_balance/share_balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/share_balance/share_balance.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/share_transfer/share_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/share_transfer/share_transfer.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/share_type/share_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/share_type/share_type.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/share_type/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/shareholder/shareholder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/shareholder/shareholder.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/shareholder/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/shipping_rule/shipping_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/shipping_rule/shipping_rule.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/shipping_rule/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/shipping_rule_country/shipping_rule_country.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/shipping_rule_country/shipping_rule_country.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/subscription/subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/subscription/subscription.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/subscription_invoice/subscription_invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/subscription_invoice/subscription_invoice.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/subscription_plan/subscription_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/subscription_plan/subscription_plan.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/subscription_settings/subscription_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/subscription_settings/subscription_settings.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/tax_category/tax_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/tax_category/tax_category.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/tax_category/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/tax_rule/tax_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/tax_rule/tax_rule.json -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/tax_rule/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/accounts/tax_withholding_rate/tax_withholding_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/accounts/tax_withholding_rate/tax_withholding_rate.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset/asset.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_category/asset_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_category/asset_category.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_category_account/asset_category_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_category_account/asset_category_account.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_finance_book/asset_finance_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_finance_book/asset_finance_book.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_maintenance/asset_maintenance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_maintenance/asset_maintenance.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_maintenance_log/asset_maintenance_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_maintenance_log/asset_maintenance_log.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_maintenance_task/asset_maintenance_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_maintenance_task/asset_maintenance_task.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_maintenance_team/asset_maintenance_team.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_maintenance_team/asset_maintenance_team.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_movement/asset_movement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_movement/asset_movement.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_repair/asset_repair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_repair/asset_repair.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_settings/asset_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_settings/asset_settings.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/asset_value_adjustment/asset_value_adjustment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/asset_value_adjustment/asset_value_adjustment.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/depreciation_schedule/depreciation_schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/depreciation_schedule/depreciation_schedule.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/linked_location/linked_location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/linked_location/linked_location.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/location/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/assets/location/location.json -------------------------------------------------------------------------------- /src/models/ERPModel/assets/location/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/additional_salary/additional_salary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/additional_salary/additional_salary.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/appraisal/appraisal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/appraisal/appraisal.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/appraisal_goal/appraisal_goal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/appraisal_goal/appraisal_goal.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/attendance/attendance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/attendance/attendance.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/attendance/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/attendance_request/attendance_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/attendance_request/attendance_request.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/branch/branch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/branch/branch.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/branch/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/daily_work_summary/daily_work_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/daily_work_summary/daily_work_summary.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/daily_work_summary_group/daily_work_summary_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/daily_work_summary_group/daily_work_summary_group.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/department/department.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/department/department.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/department/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/department_approver/department_approver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/department_approver/department_approver.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/designation/designation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/designation/designation.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/designation/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/driver/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/driver/driver.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/driving_license_category/driving_license_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/driving_license_category/driving_license_category.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee/employee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee/employee.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee_advance/employee_advance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee_advance/employee_advance.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee_attendance_tool/employee_attendance_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee_attendance_tool/employee_attendance_tool.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee_benefit_claim/employee_benefit_claim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee_benefit_claim/employee_benefit_claim.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee_education/employee_education.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee_education/employee_education.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee_grade/employee_grade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee_grade/employee_grade.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee_incentive/employee_incentive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee_incentive/employee_incentive.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee_onboarding/employee_onboarding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee_onboarding/employee_onboarding.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee_promotion/employee_promotion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee_promotion/employee_promotion.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee_separation/employee_separation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee_separation/employee_separation.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employee_transfer/employee_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employee_transfer/employee_transfer.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employment_type/employment_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/employment_type/employment_type.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/employment_type/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/expense_claim/expense_claim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/expense_claim/expense_claim.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/expense_claim/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/expense_claim_account/expense_claim_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/expense_claim_account/expense_claim_account.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/expense_claim_advance/expense_claim_advance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/expense_claim_advance/expense_claim_advance.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/expense_claim_detail/expense_claim_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/expense_claim_detail/expense_claim_detail.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/expense_claim_type/expense_claim_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/expense_claim_type/expense_claim_type.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/holiday/holiday.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/holiday/holiday.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/holiday_list/holiday_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/holiday_list/holiday_list.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/holiday_list/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/hr_settings/hr_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/hr_settings/hr_settings.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/interest/interest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/interest/interest.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/job_applicant/job_applicant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/job_applicant/job_applicant.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/job_applicant_source/job_applicant_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/job_applicant_source/job_applicant_source.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/job_offer/job_offer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/job_offer/job_offer.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/job_offer_term/job_offer_term.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/job_offer_term/job_offer_term.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/job_opening/job_opening.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/job_opening/job_opening.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_allocation/leave_allocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_allocation/leave_allocation.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_allocation/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_application/leave_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_application/leave_application.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_application/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_block_list/leave_block_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_block_list/leave_block_list.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_block_list/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_block_list_allow/leave_block_list_allow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_block_list_allow/leave_block_list_allow.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_block_list_date/leave_block_list_date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_block_list_date/leave_block_list_date.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_control_panel/leave_control_panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_control_panel/leave_control_panel.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_encashment/leave_encashment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_encashment/leave_encashment.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_period/leave_period.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_period/leave_period.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_policy/leave_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_policy/leave_policy.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_policy_detail/leave_policy_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_policy_detail/leave_policy_detail.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_type/leave_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/leave_type/leave_type.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/leave_type/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/loan/loan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/loan/loan.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/loan_application/loan_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/loan_application/loan_application.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/loan_type/loan_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/loan_type/loan_type.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/offer_term/offer_term.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/offer_term/offer_term.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/payroll_employee_detail/payroll_employee_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/payroll_employee_detail/payroll_employee_detail.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/payroll_entry/payroll_entry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/payroll_entry/payroll_entry.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/payroll_period/payroll_period.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/payroll_period/payroll_period.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/payroll_period_date/payroll_period_date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/payroll_period_date/payroll_period_date.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/purpose_of_travel/purpose_of_travel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/purpose_of_travel/purpose_of_travel.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/repayment_schedule/repayment_schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/repayment_schedule/repayment_schedule.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/retention_bonus/retention_bonus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/retention_bonus/retention_bonus.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/salary_component/salary_component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/salary_component/salary_component.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/salary_component/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/hr/salary_detail/salary_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/salary_detail/salary_detail.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/salary_slip/salary_slip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/salary_slip/salary_slip.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/salary_slip_loan/salary_slip_loan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/salary_slip_loan/salary_slip_loan.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/salary_slip_timesheet/salary_slip_timesheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/salary_slip_timesheet/salary_slip_timesheet.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/salary_structure/salary_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/salary_structure/salary_structure.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/shift_assignment/shift_assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/shift_assignment/shift_assignment.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/shift_request/shift_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/shift_request/shift_request.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/shift_type/shift_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/shift_type/shift_type.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/staffing_plan/staffing_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/staffing_plan/staffing_plan.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/staffing_plan_detail/staffing_plan_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/staffing_plan_detail/staffing_plan_detail.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/taxable_salary_slab/taxable_salary_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/taxable_salary_slab/taxable_salary_slab.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/training_event/training_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/training_event/training_event.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/training_event_employee/training_event_employee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/training_event_employee/training_event_employee.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/training_feedback/training_feedback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/training_feedback/training_feedback.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/training_program/training_program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/training_program/training_program.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/training_result/training_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/training_result/training_result.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/training_result_employee/training_result_employee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/training_result_employee/training_result_employee.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/travel_itinerary/travel_itinerary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/travel_itinerary/travel_itinerary.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/travel_request/travel_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/travel_request/travel_request.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/travel_request_costing/travel_request_costing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/travel_request_costing/travel_request_costing.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/upload_attendance/upload_attendance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/upload_attendance/upload_attendance.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/vehicle/vehicle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/vehicle/vehicle.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/vehicle_log/vehicle_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/vehicle_log/vehicle_log.json -------------------------------------------------------------------------------- /src/models/ERPModel/hr/vehicle_service/vehicle_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/hr/vehicle_service/vehicle_service.json -------------------------------------------------------------------------------- /src/models/ERPModel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/index.ts -------------------------------------------------------------------------------- /src/models/ERPModel/projects/activity_cost/activity_cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/activity_cost/activity_cost.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/activity_cost/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/projects/activity_type/activity_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/activity_type/activity_type.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/activity_type/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/projects/dependent_task/dependent_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/dependent_task/dependent_task.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/project/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/project/project.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/project/test_records.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } -------------------------------------------------------------------------------- /src/models/ERPModel/projects/project_task/project_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/project_task/project_task.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/project_template/project_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/project_template/project_template.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/project_template_task/project_template_task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/project_template_task/project_template_task.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/project_type/project_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/project_type/project_type.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/project_update/project_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/project_update/project_update.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/project_user/project_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/project_user/project_user.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/projects_settings/projects_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/projects_settings/projects_settings.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/task/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/task/task.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/task_depends_on/task_depends_on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/task_depends_on/task_depends_on.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/timesheet/timesheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/timesheet/timesheet.json -------------------------------------------------------------------------------- /src/models/ERPModel/projects/timesheet_detail/timesheet_detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/ERPModel/projects/timesheet_detail/timesheet_detail.json -------------------------------------------------------------------------------- /src/models/README.md: -------------------------------------------------------------------------------- 1 | # 模型 -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/playpage/client/App.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/client/App.less -------------------------------------------------------------------------------- /src/playpage/client/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/client/App.tsx -------------------------------------------------------------------------------- /src/playpage/client/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/client/main.ts -------------------------------------------------------------------------------- /src/playpage/client/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/client/params.ts -------------------------------------------------------------------------------- /src/playpage/main/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/main/config.ts -------------------------------------------------------------------------------- /src/playpage/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/main/index.ts -------------------------------------------------------------------------------- /src/playpage/main/inject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/main/inject.ts -------------------------------------------------------------------------------- /src/playpage/main/mainWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/main/mainWindow.ts -------------------------------------------------------------------------------- /src/playpage/main/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/main/menu.ts -------------------------------------------------------------------------------- /src/playpage/main/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/main/utils.ts -------------------------------------------------------------------------------- /src/playpage/server/apolloServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/server/apolloServer.ts -------------------------------------------------------------------------------- /src/playpage/server/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/playpage/server/schema.graphql -------------------------------------------------------------------------------- /src/router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/router/README.md -------------------------------------------------------------------------------- /src/router/import_development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/router/import_development.ts -------------------------------------------------------------------------------- /src/router/import_production.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/router/import_production.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/store/README.md: -------------------------------------------------------------------------------- 1 | # 存储 -------------------------------------------------------------------------------- /src/store/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/getters.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/modules/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/app.ts -------------------------------------------------------------------------------- /src/store/modules/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/page.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Account/models/Account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Account/models/Account.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Account/modules/Account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Account/modules/Account.ts -------------------------------------------------------------------------------- /src/store/modules/pages/App/modules/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/App/modules/app.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Archive/models/Archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Archive/models/Archive.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Archive/modules/Archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Archive/modules/Archive.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Article/models/Article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Article/models/Article.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Article/modules/Article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Article/modules/Article.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Asset/models/Asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Asset/models/Asset.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Asset/modules/Asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Asset/modules/Asset.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Bookmark/models/Bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Bookmark/models/Bookmark.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Bookmark/modules/Bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Bookmark/modules/Bookmark.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Department/models/Department.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Department/models/Department.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Department/modules/Department.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Department/modules/Department.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Document/models/Document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Document/models/Document.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Document/modules/Document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Document/modules/Document.ts -------------------------------------------------------------------------------- /src/store/modules/pages/DocumentType/models/DocumentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/DocumentType/models/DocumentType.ts -------------------------------------------------------------------------------- /src/store/modules/pages/DocumentType/modules/DocumentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/DocumentType/modules/DocumentType.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Employee/models/Employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Employee/models/Employee.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Employee/models/EmployeePromotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Employee/models/EmployeePromotion.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Employee/modules/Employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Employee/modules/Employee.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Event/models/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Event/models/Event.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Event/modules/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Event/modules/Event.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Leave/models/Leave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Leave/models/Leave.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Leave/models/LeaveAllocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Leave/models/LeaveAllocation.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Leave/models/LeaveEncashment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Leave/models/LeaveEncashment.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Leave/models/LeaveType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Leave/models/LeaveType.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Leave/modules/Leave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Leave/modules/Leave.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Member/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Member/Readme.md -------------------------------------------------------------------------------- /src/store/modules/pages/Member/models/Member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Member/models/Member.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Member/modules/Member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Member/modules/Member.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Model/models/Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Model/models/Model.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Model/modules/Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Model/modules/Model.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Project/models/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Project/models/Project.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Project/modules/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Project/modules/Project.ts -------------------------------------------------------------------------------- /src/store/modules/pages/ProjectTask/models/ProjectTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/ProjectTask/models/ProjectTask.ts -------------------------------------------------------------------------------- /src/store/modules/pages/ProjectTask/modules/ProjectTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/ProjectTask/modules/ProjectTask.ts -------------------------------------------------------------------------------- /src/store/modules/pages/ProjectType/models/ProjectType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/ProjectType/models/ProjectType.ts -------------------------------------------------------------------------------- /src/store/modules/pages/ProjectType/modules/ProjectType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/ProjectType/modules/ProjectType.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Research/models/Research.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Research/models/Research.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Research/modules/Research.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Research/modules/Research.ts -------------------------------------------------------------------------------- /src/store/modules/pages/User/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/User/models/User.ts -------------------------------------------------------------------------------- /src/store/modules/pages/User/modules/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/User/modules/User.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserAppraisal/IndexRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserAppraisal/IndexRoute.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserAppraisal/IndexView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserAppraisal/IndexView.vue -------------------------------------------------------------------------------- /src/store/modules/pages/UserAppraisal/models/UserAppraisal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserAppraisal/models/UserAppraisal.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserAppraisal/modules/UserAppraisal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserAppraisal/modules/UserAppraisal.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserAppraisalGoal/models/UserAppraisalGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserAppraisalGoal/models/UserAppraisalGoal.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserAppraisalGoal/modules/UserAppraisalGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserAppraisalGoal/modules/UserAppraisalGoal.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserDesignation/models/UserDesignation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserDesignation/models/UserDesignation.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserDesignation/modules/UserDesignation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserDesignation/modules/UserDesignation.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserMilitant/models/UserMilitant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserMilitant/models/UserMilitant.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserMilitant/modules/UserMilitant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserMilitant/modules/UserMilitant.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserPromotion/models/UserPromotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserPromotion/models/UserPromotion.ts -------------------------------------------------------------------------------- /src/store/modules/pages/UserPromotion/modules/UserPromotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/UserPromotion/modules/UserPromotion.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Vehicle/models/Vehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Vehicle/models/Vehicle.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Vehicle/models/VehicleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Vehicle/models/VehicleService.ts -------------------------------------------------------------------------------- /src/store/modules/pages/Vehicle/modules/Vehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/pages/Vehicle/modules/Vehicle.ts -------------------------------------------------------------------------------- /src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/modules/user.ts -------------------------------------------------------------------------------- /src/store/mutation-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/mutation-types.ts -------------------------------------------------------------------------------- /src/store/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/plugins/index.ts -------------------------------------------------------------------------------- /src/store/plugins/ormPlugin.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/plugins/ormPlugin.graphql.ts -------------------------------------------------------------------------------- /src/store/plugins/ormPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/plugins/ormPlugin.ts -------------------------------------------------------------------------------- /src/store/plugins/pathifyPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/store/plugins/pathifyPlugin.ts -------------------------------------------------------------------------------- /src/styles/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/styles/global.less -------------------------------------------------------------------------------- /src/styles/var.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/styles/var.less -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/types/shims-ant-design-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/types/shims-ant-design-vue.d.ts -------------------------------------------------------------------------------- /src/types/shims-antv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/types/shims-antv.d.ts -------------------------------------------------------------------------------- /src/types/shims-tsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/types/shims-tsx.d.ts -------------------------------------------------------------------------------- /src/types/shims-vue-amap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/types/shims-vue-amap.d.ts -------------------------------------------------------------------------------- /src/types/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/types/shims-vue.d.ts -------------------------------------------------------------------------------- /src/types/shims-vuex-orm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/types/shims-vuex-orm.d.ts -------------------------------------------------------------------------------- /src/utils/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/builder.ts -------------------------------------------------------------------------------- /src/utils/city.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/city.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/constant.ts -------------------------------------------------------------------------------- /src/utils/coordTrasns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/coordTrasns.ts -------------------------------------------------------------------------------- /src/utils/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/datetime.ts -------------------------------------------------------------------------------- /src/utils/dynamicModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/dynamicModel.ts -------------------------------------------------------------------------------- /src/utils/exportMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/exportMixin.ts -------------------------------------------------------------------------------- /src/utils/formMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/formMixin.ts -------------------------------------------------------------------------------- /src/utils/genFormData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/genFormData.ts -------------------------------------------------------------------------------- /src/utils/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/generator.ts -------------------------------------------------------------------------------- /src/utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/helper.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /src/utils/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/icons.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/ipcRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/ipcRenderer.ts -------------------------------------------------------------------------------- /src/utils/request.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/request.graphql.ts -------------------------------------------------------------------------------- /src/utils/request.localforage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/request.localforage.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/tableMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/tableMixin.ts -------------------------------------------------------------------------------- /src/utils/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/translate.ts -------------------------------------------------------------------------------- /src/utils/use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/utils/use.ts -------------------------------------------------------------------------------- /src/views/Article/components/ArticleForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Article/components/ArticleForm.tsx -------------------------------------------------------------------------------- /src/views/Article/components/ArticleTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Article/components/ArticleTable.tsx -------------------------------------------------------------------------------- /src/views/Article/components/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Article/components/config.ts -------------------------------------------------------------------------------- /src/views/Article/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Article/components/index.less -------------------------------------------------------------------------------- /src/views/Article/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Article/index.tsx -------------------------------------------------------------------------------- /src/views/Document/components/DocumentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Document/components/DocumentForm.tsx -------------------------------------------------------------------------------- /src/views/Document/components/DocumentTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Document/components/DocumentTable.tsx -------------------------------------------------------------------------------- /src/views/Document/components/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Document/components/config.ts -------------------------------------------------------------------------------- /src/views/Document/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Document/components/index.less -------------------------------------------------------------------------------- /src/views/Document/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Document/index.tsx -------------------------------------------------------------------------------- /src/views/Employee/components/EmployeeForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Employee/components/EmployeeForm.tsx -------------------------------------------------------------------------------- /src/views/Employee/components/EmployeeTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Employee/components/EmployeeTable.tsx -------------------------------------------------------------------------------- /src/views/Employee/components/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Employee/components/config.ts -------------------------------------------------------------------------------- /src/views/Employee/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Employee/components/index.less -------------------------------------------------------------------------------- /src/views/Employee/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Employee/index.tsx -------------------------------------------------------------------------------- /src/views/Event/components/EventForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Event/components/EventForm.tsx -------------------------------------------------------------------------------- /src/views/Event/components/EventTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Event/components/EventTable.tsx -------------------------------------------------------------------------------- /src/views/Event/components/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Event/components/config.ts -------------------------------------------------------------------------------- /src/views/Event/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Event/components/index.less -------------------------------------------------------------------------------- /src/views/Event/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Event/index.tsx -------------------------------------------------------------------------------- /src/views/Leave/components/LeaveForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Leave/components/LeaveForm.tsx -------------------------------------------------------------------------------- /src/views/Leave/components/LeaveTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Leave/components/LeaveTable.tsx -------------------------------------------------------------------------------- /src/views/Leave/components/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Leave/components/config.ts -------------------------------------------------------------------------------- /src/views/Leave/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Leave/components/index.less -------------------------------------------------------------------------------- /src/views/Leave/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Leave/index.tsx -------------------------------------------------------------------------------- /src/views/Member/components/MemberCardList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Member/components/MemberCardList.tsx -------------------------------------------------------------------------------- /src/views/Member/components/MemberForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Member/components/MemberForm.tsx -------------------------------------------------------------------------------- /src/views/Member/components/MemberTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Member/components/MemberTable.tsx -------------------------------------------------------------------------------- /src/views/Member/components/card.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Member/components/card.less -------------------------------------------------------------------------------- /src/views/Member/components/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Member/components/config.ts -------------------------------------------------------------------------------- /src/views/Member/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Member/components/index.less -------------------------------------------------------------------------------- /src/views/Member/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Member/index.tsx -------------------------------------------------------------------------------- /src/views/Project/components/stepForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/Project/components/stepForm/index.tsx -------------------------------------------------------------------------------- /src/views/UserDesignation/components/UserDesignationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserDesignation/components/UserDesignationForm.tsx -------------------------------------------------------------------------------- /src/views/UserDesignation/components/UserDesignationTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserDesignation/components/UserDesignationTable.tsx -------------------------------------------------------------------------------- /src/views/UserDesignation/components/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserDesignation/components/config.ts -------------------------------------------------------------------------------- /src/views/UserDesignation/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserDesignation/components/index.less -------------------------------------------------------------------------------- /src/views/UserDesignation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserDesignation/index.tsx -------------------------------------------------------------------------------- /src/views/UserMilitant/components/UserMilitantForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserMilitant/components/UserMilitantForm.tsx -------------------------------------------------------------------------------- /src/views/UserMilitant/components/UserMilitantTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserMilitant/components/UserMilitantTable.tsx -------------------------------------------------------------------------------- /src/views/UserMilitant/components/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserMilitant/components/config.ts -------------------------------------------------------------------------------- /src/views/UserMilitant/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserMilitant/components/index.less -------------------------------------------------------------------------------- /src/views/UserMilitant/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserMilitant/index.tsx -------------------------------------------------------------------------------- /src/views/UserPromotion/components/UserPromotionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserPromotion/components/UserPromotionForm.tsx -------------------------------------------------------------------------------- /src/views/UserPromotion/components/UserPromotionTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserPromotion/components/UserPromotionTable.tsx -------------------------------------------------------------------------------- /src/views/UserPromotion/components/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserPromotion/components/config.ts -------------------------------------------------------------------------------- /src/views/UserPromotion/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserPromotion/components/index.less -------------------------------------------------------------------------------- /src/views/UserPromotion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/UserPromotion/index.tsx -------------------------------------------------------------------------------- /src/views/chart/Article/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/Article/params.ts -------------------------------------------------------------------------------- /src/views/chart/Leave/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/Leave/params.ts -------------------------------------------------------------------------------- /src/views/chart/apexCharts/area/dataSeries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/area/dataSeries.ts -------------------------------------------------------------------------------- /src/views/chart/apexCharts/area/dateSeries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/area/dateSeries.ts -------------------------------------------------------------------------------- /src/views/chart/apexCharts/area/githubData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/area/githubData.ts -------------------------------------------------------------------------------- /src/views/chart/apexCharts/area/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/area/index.less -------------------------------------------------------------------------------- /src/views/chart/apexCharts/area/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/area/index.tsx -------------------------------------------------------------------------------- /src/views/chart/apexCharts/area/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/area/params.ts -------------------------------------------------------------------------------- /src/views/chart/apexCharts/bar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/bar/index.less -------------------------------------------------------------------------------- /src/views/chart/apexCharts/bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/bar/index.tsx -------------------------------------------------------------------------------- /src/views/chart/apexCharts/bar/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/bar/params.ts -------------------------------------------------------------------------------- /src/views/chart/apexCharts/column/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/column/index.less -------------------------------------------------------------------------------- /src/views/chart/apexCharts/column/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/column/index.tsx -------------------------------------------------------------------------------- /src/views/chart/apexCharts/column/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/column/params.ts -------------------------------------------------------------------------------- /src/views/chart/apexCharts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/index.tsx -------------------------------------------------------------------------------- /src/views/chart/apexCharts/line/dataSeries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/line/dataSeries.ts -------------------------------------------------------------------------------- /src/views/chart/apexCharts/line/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/line/index.less -------------------------------------------------------------------------------- /src/views/chart/apexCharts/line/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/line/index.tsx -------------------------------------------------------------------------------- /src/views/chart/apexCharts/line/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/line/params.ts -------------------------------------------------------------------------------- /src/views/chart/apexCharts/mixed/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/mixed/index.less -------------------------------------------------------------------------------- /src/views/chart/apexCharts/mixed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/mixed/index.tsx -------------------------------------------------------------------------------- /src/views/chart/apexCharts/mixed/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/apexCharts/mixed/params.ts -------------------------------------------------------------------------------- /src/views/chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/chart/index.tsx -------------------------------------------------------------------------------- /src/views/components/form/baseForm/AvatarModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/components/form/baseForm/AvatarModal.tsx -------------------------------------------------------------------------------- /src/views/components/form/baseForm/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/components/form/baseForm/index.less -------------------------------------------------------------------------------- /src/views/components/form/baseForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/components/form/baseForm/index.tsx -------------------------------------------------------------------------------- /src/views/components/form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/components/form/index.tsx -------------------------------------------------------------------------------- /src/views/components/form/personalCenter/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/components/form/personalCenter/index.less -------------------------------------------------------------------------------- /src/views/components/form/personalCenter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/components/form/personalCenter/index.tsx -------------------------------------------------------------------------------- /src/views/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/components/index.tsx -------------------------------------------------------------------------------- /src/views/components/list/userRoleTable/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/components/list/userRoleTable/index.less -------------------------------------------------------------------------------- /src/views/components/list/userRoleTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/components/list/userRoleTable/index.tsx -------------------------------------------------------------------------------- /src/views/customers/baseInfo/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/customers/baseInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/customers/baseInfo/index.tsx -------------------------------------------------------------------------------- /src/views/customers/baseInfo/infoModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/customers/baseInfo/infoModal.tsx -------------------------------------------------------------------------------- /src/views/customers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/customers/index.tsx -------------------------------------------------------------------------------- /src/views/dashboard/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/dashboard/config.ts -------------------------------------------------------------------------------- /src/views/dashboard/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/dashboard/index.less -------------------------------------------------------------------------------- /src/views/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/dashboard/index.tsx -------------------------------------------------------------------------------- /src/views/error/401.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/error/401.vue -------------------------------------------------------------------------------- /src/views/error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/error/404.vue -------------------------------------------------------------------------------- /src/views/helpers/components/CardList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/helpers/components/CardList.vue -------------------------------------------------------------------------------- /src/views/helpers/components/ExportHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/helpers/components/ExportHelper.tsx -------------------------------------------------------------------------------- /src/views/helpers/components/IconHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/helpers/components/IconHelper.tsx -------------------------------------------------------------------------------- /src/views/helpers/components/StandardList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/helpers/components/StandardList.vue -------------------------------------------------------------------------------- /src/views/helpers/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/helpers/components/index.less -------------------------------------------------------------------------------- /src/views/helpers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/helpers/index.tsx -------------------------------------------------------------------------------- /src/views/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/login/index.tsx -------------------------------------------------------------------------------- /src/views/login/login.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/login/login.less -------------------------------------------------------------------------------- /src/views/map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/map/index.tsx -------------------------------------------------------------------------------- /src/views/map/trajectory/commonfun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/map/trajectory/commonfun.ts -------------------------------------------------------------------------------- /src/views/map/trajectory/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/map/trajectory/data.json -------------------------------------------------------------------------------- /src/views/map/trajectory/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/map/trajectory/index.less -------------------------------------------------------------------------------- /src/views/map/trajectory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/map/trajectory/index.tsx -------------------------------------------------------------------------------- /src/views/map/trajectory/mapControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/map/trajectory/mapControl.ts -------------------------------------------------------------------------------- /src/views/playground/crudForm/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/playground/crudForm/index.less -------------------------------------------------------------------------------- /src/views/playground/crudForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/playground/crudForm/index.tsx -------------------------------------------------------------------------------- /src/views/playground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/playground/index.tsx -------------------------------------------------------------------------------- /src/views/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/index.tsx -------------------------------------------------------------------------------- /src/views/profile/information/baseForm/AvatarModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/baseForm/AvatarModal.tsx -------------------------------------------------------------------------------- /src/views/profile/information/baseForm/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/baseForm/index.less -------------------------------------------------------------------------------- /src/views/profile/information/baseForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/baseForm/index.tsx -------------------------------------------------------------------------------- /src/views/profile/information/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/index.less -------------------------------------------------------------------------------- /src/views/profile/information/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/index.tsx -------------------------------------------------------------------------------- /src/views/profile/information/personalCenter/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/personalCenter/index.less -------------------------------------------------------------------------------- /src/views/profile/information/personalCenter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/personalCenter/index.tsx -------------------------------------------------------------------------------- /src/views/profile/information/userArticleList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/userArticleList/index.less -------------------------------------------------------------------------------- /src/views/profile/information/userArticleList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/userArticleList/index.tsx -------------------------------------------------------------------------------- /src/views/profile/information/userRoleTable/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/userRoleTable/index.less -------------------------------------------------------------------------------- /src/views/profile/information/userRoleTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/information/userRoleTable/index.tsx -------------------------------------------------------------------------------- /src/views/profile/settings/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/settings/index.less -------------------------------------------------------------------------------- /src/views/profile/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/settings/index.tsx -------------------------------------------------------------------------------- /src/views/profile/settings/security.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/profile/settings/security.tsx -------------------------------------------------------------------------------- /src/views/project/components/ProjectForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/project/components/ProjectForm.tsx -------------------------------------------------------------------------------- /src/views/project/components/ProjectTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/project/components/ProjectTable.tsx -------------------------------------------------------------------------------- /src/views/project/components/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/project/components/config.ts -------------------------------------------------------------------------------- /src/views/project/components/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/project/components/index.less -------------------------------------------------------------------------------- /src/views/project/detail/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/project/detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/project/detail/index.tsx -------------------------------------------------------------------------------- /src/views/project/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/project/index.tsx -------------------------------------------------------------------------------- /src/views/project/list/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/project/list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/src/views/project/list/index.tsx -------------------------------------------------------------------------------- /tests/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/tests/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /tests/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/tests/e2e/specs/test.js -------------------------------------------------------------------------------- /tests/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/tests/server.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxing3/awesome-vue-ts-admin/HEAD/yarn.lock --------------------------------------------------------------------------------