├── .browserslistrc ├── .editorconfig ├── .env.development ├── .env.production ├── .env.production.uat ├── .env.staging ├── .eslintignore ├── .eslintrc.js ├── .idea ├── .gitignore ├── MissuoFrontend.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .prettierrc.json ├── LICENSE ├── README.md ├── babel.config.js ├── cypress.json ├── jest.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── img │ └── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.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 │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── msapplication-icon-144x144.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg ├── index.html ├── manifest.json └── robots.txt ├── src ├── App.vue ├── api │ ├── category.ts │ ├── charts.ts │ ├── dish.ts │ ├── employee.ts │ ├── index.ts │ ├── inform.ts │ ├── order.ts │ ├── setMeal.ts │ └── users.ts ├── assets │ ├── 404-images │ │ ├── 404-cloud.png │ │ └── 404.png │ ├── icons │ │ ├── addicon.png │ │ ├── btn_add@2x.png │ │ ├── btn_back@2x.png │ │ ├── btn_clean@2x.png │ │ ├── btn_close@2x.png │ │ ├── btn_close@2x1.png │ │ ├── btn_gaimi@2x.png │ │ ├── fall.png │ │ ├── gzt_daijiedan.png │ │ ├── gzt_daipaisong.png │ │ ├── gzt_quanbu.png │ │ ├── gzt_quxiao.png │ │ ├── gzt_wancheng.png │ │ ├── gzt_yiqishou@2x.png │ │ ├── gzt_yitingshou@2x.png │ │ ├── icon_index.png │ │ ├── icon_more@2x.png │ │ ├── icon_upload@2x.png │ │ ├── jine_m-2@2x.png │ │ ├── msg.png │ │ ├── renshu@2x.png │ │ ├── time.png │ │ ├── up.png │ │ └── xiangmujine@2x.png │ ├── img_denglu_bj.jpg │ ├── login │ │ ├── icon_logo.png │ │ ├── login-l.png │ │ ├── logo.png │ │ ├── mini-logo.png │ │ └── white_logo.png │ ├── noImg.png │ ├── preview.mp3 │ ├── reminder.mp3 │ ├── search_table_empty.png │ └── table_empty.png ├── components │ ├── Breadcrumb │ │ └── index.vue │ ├── Charts │ │ ├── BarChart.vue │ │ ├── Basic.vue │ │ ├── Line.vue │ │ ├── MixedChart.vue │ │ └── mixins │ │ │ └── resize.ts │ ├── Empty │ │ └── index.vue │ ├── Hamburger │ │ └── index.vue │ ├── HeadLable │ │ └── index.vue │ ├── ImgUpload │ │ └── index.vue │ └── InputAutoComplete │ │ └── index.vue ├── config.json ├── icons │ ├── README.md │ ├── components │ │ ├── dashboard.ts │ │ ├── employee.ts │ │ ├── hamburger.ts │ │ ├── index.ts │ │ ├── inform.ts │ │ ├── main.ts │ │ ├── pay.ts │ │ ├── shop.ts │ │ └── vip.ts │ └── svg │ │ ├── dashboard.svg │ │ ├── hamburger.svg │ │ ├── inform.svg │ │ ├── main.svg │ │ ├── member.svg │ │ ├── pay.svg │ │ ├── shop.svg │ │ └── vip.svg ├── layout │ ├── components │ │ ├── AppMain.vue │ │ ├── Navbar │ │ │ └── index.vue │ │ ├── Sidebar │ │ │ ├── SidebarItem.vue │ │ │ ├── SidebarItemLink.vue │ │ │ └── index.vue │ │ ├── components │ │ │ └── password.vue │ │ └── index.ts │ ├── index.vue │ └── mixin │ │ └── resize.ts ├── main.ts ├── permission.ts ├── registerServiceWorker.ts ├── router.ts ├── shims-vue.d.ts ├── store │ ├── index.ts │ └── modules │ │ ├── app.ts │ │ └── user.ts ├── styles │ ├── _mixins.scss │ ├── _svgicon.scss │ ├── _transition.scss │ ├── _variables.scss │ ├── _variables.scss.d.ts │ ├── element-variables.scss │ ├── fonts │ │ ├── element-icons.ttf │ │ └── element-icons.woff │ ├── home.scss │ ├── icon │ │ ├── demo.css │ │ ├── demo_index.html │ │ ├── iconfont.css │ │ ├── iconfont.js │ │ ├── iconfont.json │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── index.scss │ ├── newRJWMsystem.scss │ └── sidebar.scss ├── utils │ ├── common.ts │ ├── cookies.ts │ ├── formValidate.ts │ ├── request.ts │ ├── requestOptimize.ts │ └── validate.ts └── views │ ├── 404.vue │ ├── category │ └── index.vue │ ├── chart │ └── index.vue │ ├── dashboard │ ├── components │ │ ├── cuisineStatistics.vue │ │ ├── orderList.vue │ │ ├── orderview.vue │ │ ├── overview.vue │ │ └── setMealStatistics.vue │ └── index.vue │ ├── dish │ ├── addDishtype.vue │ ├── components │ │ └── SelectInput.vue │ └── index.vue │ ├── employee │ ├── addEmployee.vue │ └── index.vue │ ├── inform │ └── index.vue │ ├── login │ └── index.vue │ ├── orderDetails │ ├── index.vue │ └── tabChange.vue │ ├── setmeal │ ├── addSetmeal.vue │ ├── components │ │ └── AddDish.vue │ └── index.vue │ └── statistics │ ├── components │ ├── orderStatistics.vue │ ├── overview.vue │ ├── titleIndex.vue │ ├── top10.vue │ ├── turnoverStatistics.vue │ └── userStatistics.vue │ └── index.vue ├── tests └── unit │ ├── .eslintrc.js │ ├── components │ └── Breadcrumb.spec.ts │ └── utils │ └── validate.spec.ts ├── tsconfig.json ├── vue.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.env.production -------------------------------------------------------------------------------- /.env.production.uat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.env.production.uat -------------------------------------------------------------------------------- /.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.env.staging -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/*.js 2 | src/assets 3 | tests/unit/coverage 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/MissuoFrontend.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.idea/MissuoFrontend.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/babel.config.js -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/cypress.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /public/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/api/category.ts -------------------------------------------------------------------------------- /src/api/charts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/api/charts.ts -------------------------------------------------------------------------------- /src/api/dish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/api/dish.ts -------------------------------------------------------------------------------- /src/api/employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/api/employee.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/inform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/api/inform.ts -------------------------------------------------------------------------------- /src/api/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/api/order.ts -------------------------------------------------------------------------------- /src/api/setMeal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/api/setMeal.ts -------------------------------------------------------------------------------- /src/api/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/api/users.ts -------------------------------------------------------------------------------- /src/assets/404-images/404-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/404-images/404-cloud.png -------------------------------------------------------------------------------- /src/assets/404-images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/404-images/404.png -------------------------------------------------------------------------------- /src/assets/icons/addicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/addicon.png -------------------------------------------------------------------------------- /src/assets/icons/btn_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/btn_add@2x.png -------------------------------------------------------------------------------- /src/assets/icons/btn_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/btn_back@2x.png -------------------------------------------------------------------------------- /src/assets/icons/btn_clean@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/btn_clean@2x.png -------------------------------------------------------------------------------- /src/assets/icons/btn_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/btn_close@2x.png -------------------------------------------------------------------------------- /src/assets/icons/btn_close@2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/btn_close@2x1.png -------------------------------------------------------------------------------- /src/assets/icons/btn_gaimi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/btn_gaimi@2x.png -------------------------------------------------------------------------------- /src/assets/icons/fall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/fall.png -------------------------------------------------------------------------------- /src/assets/icons/gzt_daijiedan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/gzt_daijiedan.png -------------------------------------------------------------------------------- /src/assets/icons/gzt_daipaisong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/gzt_daipaisong.png -------------------------------------------------------------------------------- /src/assets/icons/gzt_quanbu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/gzt_quanbu.png -------------------------------------------------------------------------------- /src/assets/icons/gzt_quxiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/gzt_quxiao.png -------------------------------------------------------------------------------- /src/assets/icons/gzt_wancheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/gzt_wancheng.png -------------------------------------------------------------------------------- /src/assets/icons/gzt_yiqishou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/gzt_yiqishou@2x.png -------------------------------------------------------------------------------- /src/assets/icons/gzt_yitingshou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/gzt_yitingshou@2x.png -------------------------------------------------------------------------------- /src/assets/icons/icon_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/icon_index.png -------------------------------------------------------------------------------- /src/assets/icons/icon_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/icon_more@2x.png -------------------------------------------------------------------------------- /src/assets/icons/icon_upload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/icon_upload@2x.png -------------------------------------------------------------------------------- /src/assets/icons/jine_m-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/jine_m-2@2x.png -------------------------------------------------------------------------------- /src/assets/icons/msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/msg.png -------------------------------------------------------------------------------- /src/assets/icons/renshu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/renshu@2x.png -------------------------------------------------------------------------------- /src/assets/icons/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/time.png -------------------------------------------------------------------------------- /src/assets/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/up.png -------------------------------------------------------------------------------- /src/assets/icons/xiangmujine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/icons/xiangmujine@2x.png -------------------------------------------------------------------------------- /src/assets/img_denglu_bj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/img_denglu_bj.jpg -------------------------------------------------------------------------------- /src/assets/login/icon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/login/icon_logo.png -------------------------------------------------------------------------------- /src/assets/login/login-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/login/login-l.png -------------------------------------------------------------------------------- /src/assets/login/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/login/logo.png -------------------------------------------------------------------------------- /src/assets/login/mini-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/login/mini-logo.png -------------------------------------------------------------------------------- /src/assets/login/white_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/login/white_logo.png -------------------------------------------------------------------------------- /src/assets/noImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/noImg.png -------------------------------------------------------------------------------- /src/assets/preview.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/preview.mp3 -------------------------------------------------------------------------------- /src/assets/reminder.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/reminder.mp3 -------------------------------------------------------------------------------- /src/assets/search_table_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/search_table_empty.png -------------------------------------------------------------------------------- /src/assets/table_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/assets/table_empty.png -------------------------------------------------------------------------------- /src/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /src/components/Charts/BarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/Charts/BarChart.vue -------------------------------------------------------------------------------- /src/components/Charts/Basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/Charts/Basic.vue -------------------------------------------------------------------------------- /src/components/Charts/Line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/Charts/Line.vue -------------------------------------------------------------------------------- /src/components/Charts/MixedChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/Charts/MixedChart.vue -------------------------------------------------------------------------------- /src/components/Charts/mixins/resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/Charts/mixins/resize.ts -------------------------------------------------------------------------------- /src/components/Empty/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/Empty/index.vue -------------------------------------------------------------------------------- /src/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/Hamburger/index.vue -------------------------------------------------------------------------------- /src/components/HeadLable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/HeadLable/index.vue -------------------------------------------------------------------------------- /src/components/ImgUpload/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/ImgUpload/index.vue -------------------------------------------------------------------------------- /src/components/InputAutoComplete/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/components/InputAutoComplete/index.vue -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "/api" 3 | } -------------------------------------------------------------------------------- /src/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/README.md -------------------------------------------------------------------------------- /src/icons/components/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/components/dashboard.ts -------------------------------------------------------------------------------- /src/icons/components/employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/components/employee.ts -------------------------------------------------------------------------------- /src/icons/components/hamburger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/components/hamburger.ts -------------------------------------------------------------------------------- /src/icons/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/components/index.ts -------------------------------------------------------------------------------- /src/icons/components/inform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/components/inform.ts -------------------------------------------------------------------------------- /src/icons/components/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/components/main.ts -------------------------------------------------------------------------------- /src/icons/components/pay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/components/pay.ts -------------------------------------------------------------------------------- /src/icons/components/shop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/components/shop.ts -------------------------------------------------------------------------------- /src/icons/components/vip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/components/vip.ts -------------------------------------------------------------------------------- /src/icons/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/svg/dashboard.svg -------------------------------------------------------------------------------- /src/icons/svg/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/svg/hamburger.svg -------------------------------------------------------------------------------- /src/icons/svg/inform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/svg/inform.svg -------------------------------------------------------------------------------- /src/icons/svg/main.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/svg/main.svg -------------------------------------------------------------------------------- /src/icons/svg/member.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/svg/member.svg -------------------------------------------------------------------------------- /src/icons/svg/pay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/svg/pay.svg -------------------------------------------------------------------------------- /src/icons/svg/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/svg/shop.svg -------------------------------------------------------------------------------- /src/icons/svg/vip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/icons/svg/vip.svg -------------------------------------------------------------------------------- /src/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/layout/components/AppMain.vue -------------------------------------------------------------------------------- /src/layout/components/Navbar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/layout/components/Navbar/index.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/layout/components/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/SidebarItemLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/layout/components/Sidebar/SidebarItemLink.vue -------------------------------------------------------------------------------- /src/layout/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/layout/components/Sidebar/index.vue -------------------------------------------------------------------------------- /src/layout/components/components/password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/layout/components/components/password.vue -------------------------------------------------------------------------------- /src/layout/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/layout/components/index.ts -------------------------------------------------------------------------------- /src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/layout/index.vue -------------------------------------------------------------------------------- /src/layout/mixin/resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/layout/mixin/resize.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/permission.ts -------------------------------------------------------------------------------- /src/registerServiceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/registerServiceWorker.ts -------------------------------------------------------------------------------- /src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/router.ts -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/modules/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/store/modules/app.ts -------------------------------------------------------------------------------- /src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/store/modules/user.ts -------------------------------------------------------------------------------- /src/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/_mixins.scss -------------------------------------------------------------------------------- /src/styles/_svgicon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/_svgicon.scss -------------------------------------------------------------------------------- /src/styles/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/_transition.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/_variables.scss.d.ts -------------------------------------------------------------------------------- /src/styles/element-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/element-variables.scss -------------------------------------------------------------------------------- /src/styles/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/styles/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/styles/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/home.scss -------------------------------------------------------------------------------- /src/styles/icon/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/icon/demo.css -------------------------------------------------------------------------------- /src/styles/icon/demo_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/icon/demo_index.html -------------------------------------------------------------------------------- /src/styles/icon/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/icon/iconfont.css -------------------------------------------------------------------------------- /src/styles/icon/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/icon/iconfont.js -------------------------------------------------------------------------------- /src/styles/icon/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/icon/iconfont.json -------------------------------------------------------------------------------- /src/styles/icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/icon/iconfont.ttf -------------------------------------------------------------------------------- /src/styles/icon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/icon/iconfont.woff -------------------------------------------------------------------------------- /src/styles/icon/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/icon/iconfont.woff2 -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/newRJWMsystem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/newRJWMsystem.scss -------------------------------------------------------------------------------- /src/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/styles/sidebar.scss -------------------------------------------------------------------------------- /src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/utils/common.ts -------------------------------------------------------------------------------- /src/utils/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/utils/cookies.ts -------------------------------------------------------------------------------- /src/utils/formValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/utils/formValidate.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/requestOptimize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/utils/requestOptimize.ts -------------------------------------------------------------------------------- /src/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/utils/validate.ts -------------------------------------------------------------------------------- /src/views/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/404.vue -------------------------------------------------------------------------------- /src/views/category/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/category/index.vue -------------------------------------------------------------------------------- /src/views/chart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/chart/index.vue -------------------------------------------------------------------------------- /src/views/dashboard/components/cuisineStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/dashboard/components/cuisineStatistics.vue -------------------------------------------------------------------------------- /src/views/dashboard/components/orderList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/dashboard/components/orderList.vue -------------------------------------------------------------------------------- /src/views/dashboard/components/orderview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/dashboard/components/orderview.vue -------------------------------------------------------------------------------- /src/views/dashboard/components/overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/dashboard/components/overview.vue -------------------------------------------------------------------------------- /src/views/dashboard/components/setMealStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/dashboard/components/setMealStatistics.vue -------------------------------------------------------------------------------- /src/views/dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/dashboard/index.vue -------------------------------------------------------------------------------- /src/views/dish/addDishtype.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/dish/addDishtype.vue -------------------------------------------------------------------------------- /src/views/dish/components/SelectInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/dish/components/SelectInput.vue -------------------------------------------------------------------------------- /src/views/dish/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/dish/index.vue -------------------------------------------------------------------------------- /src/views/employee/addEmployee.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/employee/addEmployee.vue -------------------------------------------------------------------------------- /src/views/employee/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/employee/index.vue -------------------------------------------------------------------------------- /src/views/inform/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/inform/index.vue -------------------------------------------------------------------------------- /src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/login/index.vue -------------------------------------------------------------------------------- /src/views/orderDetails/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/orderDetails/index.vue -------------------------------------------------------------------------------- /src/views/orderDetails/tabChange.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/orderDetails/tabChange.vue -------------------------------------------------------------------------------- /src/views/setmeal/addSetmeal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/setmeal/addSetmeal.vue -------------------------------------------------------------------------------- /src/views/setmeal/components/AddDish.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/setmeal/components/AddDish.vue -------------------------------------------------------------------------------- /src/views/setmeal/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/setmeal/index.vue -------------------------------------------------------------------------------- /src/views/statistics/components/orderStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/statistics/components/orderStatistics.vue -------------------------------------------------------------------------------- /src/views/statistics/components/overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/statistics/components/overview.vue -------------------------------------------------------------------------------- /src/views/statistics/components/titleIndex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/statistics/components/titleIndex.vue -------------------------------------------------------------------------------- /src/views/statistics/components/top10.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/statistics/components/top10.vue -------------------------------------------------------------------------------- /src/views/statistics/components/turnoverStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/statistics/components/turnoverStatistics.vue -------------------------------------------------------------------------------- /src/views/statistics/components/userStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/statistics/components/userStatistics.vue -------------------------------------------------------------------------------- /src/views/statistics/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/src/views/statistics/index.vue -------------------------------------------------------------------------------- /tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/tests/unit/.eslintrc.js -------------------------------------------------------------------------------- /tests/unit/components/Breadcrumb.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/tests/unit/components/Breadcrumb.spec.ts -------------------------------------------------------------------------------- /tests/unit/utils/validate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/tests/unit/utils/validate.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Missuo0o/FoodDeliveryAdminFrontend/HEAD/yarn.lock --------------------------------------------------------------------------------