├── .env ├── .env.development ├── .env.production ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── index.html ├── package.json ├── plugins.d.ts ├── public └── favicon.ico ├── shim.d.ts ├── source.d.ts ├── src ├── App.vue ├── api │ ├── useAutoApi │ │ ├── debugTalk.ts │ │ ├── env.ts │ │ ├── module.ts │ │ ├── project.ts │ │ ├── report.ts │ │ ├── suite.ts │ │ ├── testcase.ts │ │ └── timedTasks.ts │ └── useSystemApi │ │ ├── file.ts │ │ ├── lookup.ts │ │ ├── menu.ts │ │ ├── roles.ts │ │ ├── statistic.ts │ │ └── user.ts ├── assets │ ├── jsoneditor │ │ ├── img │ │ │ └── jsoneditor-icons.svg │ │ ├── jsoneditor.css │ │ └── jsoneditor.min.css │ ├── login-icon-two.svg │ ├── logo.png │ └── three │ │ └── three.js ├── components │ ├── DefDialog │ │ ├── index.js │ │ └── index.vue │ ├── Pagination │ │ └── index.vue │ ├── QueryTable │ │ └── index.vue │ ├── VaceEditor │ │ └── index.js │ ├── iconSelector │ │ └── index.vue │ └── svgIcon │ │ └── index.vue ├── config │ └── config.ts ├── icons │ └── indexSvg │ │ ├── add_case.svg │ │ ├── bronze_medal.svg │ │ ├── case_run_count.svg │ │ ├── case_svg.svg │ │ ├── exc_count.svg │ │ ├── gold_medal.svg │ │ ├── module_svg.svg │ │ ├── project_svg.svg │ │ ├── silver_medal.svg │ │ ├── suite_svg.svg │ │ └── user_login.svg ├── layout │ ├── component │ │ ├── aside.vue │ │ ├── columnsAside.vue │ │ ├── header.vue │ │ └── main.vue │ ├── footer │ │ └── index.vue │ ├── index.vue │ ├── lockScreen │ │ └── index.vue │ ├── logo │ │ └── index.vue │ ├── main │ │ ├── classic.vue │ │ ├── columns.vue │ │ ├── defaults.vue │ │ └── transverse.vue │ ├── navBars │ │ ├── breadcrumb │ │ │ ├── breadcrumb.vue │ │ │ ├── closeFull.vue │ │ │ ├── index.vue │ │ │ ├── search.vue │ │ │ ├── setings.vue │ │ │ ├── user.vue │ │ │ └── userNews.vue │ │ ├── index.vue │ │ └── tagsView │ │ │ ├── contextmenu.vue │ │ │ └── tagsView.vue │ ├── navMenu │ │ ├── horizontal.vue │ │ ├── subItem.vue │ │ └── vertical.vue │ └── routerView │ │ ├── iframes.vue │ │ ├── link.vue │ │ └── parent.vue ├── main.ts ├── router │ ├── backEnd.ts │ ├── frontEnd.ts │ ├── index.ts │ └── route.ts ├── store │ ├── index.ts │ ├── interface │ │ └── index.ts │ └── modules │ │ ├── keepAliveNames.ts │ │ ├── lookup.ts │ │ ├── requestOldRoutes.ts │ │ ├── routesList.ts │ │ ├── tagsViewRoutes.ts │ │ ├── themeConfig.ts │ │ └── userInfos.ts ├── styles │ └── extent.css ├── theme │ ├── app.scss │ ├── common │ │ └── transition.scss │ ├── dark.scss │ ├── element.scss │ ├── iconSelector.scss │ ├── index.scss │ ├── loading.scss │ ├── media │ │ ├── chart.scss │ │ ├── cityLinkage.scss │ │ ├── date.scss │ │ ├── dialog.scss │ │ ├── error.scss │ │ ├── form.scss │ │ ├── home.scss │ │ ├── index.scss │ │ ├── layout.scss │ │ ├── login.scss │ │ ├── media.scss │ │ ├── pagination.scss │ │ ├── personal.scss │ │ ├── scrollbar.scss │ │ └── tagsView.scss │ ├── mixins │ │ └── index.scss │ ├── other.scss │ └── waves.scss ├── utils │ ├── arrayOperation.ts │ ├── authDirective.ts │ ├── authFunction.ts │ ├── commonFunction.ts │ ├── customDirective.ts │ ├── directive.ts │ ├── formatTime.ts │ ├── getStyleSheets.ts │ ├── loading.ts │ ├── lookup.ts │ ├── other.ts │ ├── request.ts │ ├── setIconfont.ts │ ├── storage.ts │ ├── textToImg.js │ ├── theme.ts │ ├── toolsValidate.ts │ ├── vue-json-viewer.js │ └── wartermark.ts └── views │ ├── api │ ├── Report │ │ ├── components │ │ │ └── report.vue │ │ └── index.vue │ ├── case │ │ ├── catCase │ │ │ ├── catCase.vue │ │ │ └── catMessages.vue │ │ ├── components │ │ │ ├── AutomaticAssertion.vue │ │ │ ├── extractValidate.vue │ │ │ ├── messages.vue │ │ │ ├── outputList.vue │ │ │ ├── requestBody.vue │ │ │ ├── requestHeaders.vue │ │ │ ├── saveOrUpdate.vue │ │ │ ├── skip.vue │ │ │ ├── url.vue │ │ │ └── variablesParameters.vue │ │ └── index.vue │ ├── caseSuite │ │ ├── components │ │ │ └── saveOrUpdate.vue │ │ └── index.vue │ ├── configure │ │ ├── components │ │ │ ├── AutomaticAssertion.vue │ │ │ ├── extractValidate.vue │ │ │ ├── messages.vue │ │ │ ├── requestHeaders.vue │ │ │ ├── saveOrUpdate.vue │ │ │ └── variablesParameters.vue │ │ └── index.vue │ ├── debugTalk │ │ ├── components │ │ │ ├── debugFunc.vue │ │ │ ├── editDebugtalk.vue │ │ │ └── saveOrUpdate.vue │ │ └── index.vue │ ├── env │ │ ├── components │ │ │ └── saveOrUpdate.vue │ │ └── index.vue │ ├── module │ │ ├── components │ │ │ └── saveOrUpdate.vue │ │ └── index.vue │ ├── project │ │ ├── components │ │ │ └── saveOrUpdate.vue │ │ └── index.vue │ └── timedTask │ │ ├── components │ │ └── saveOrUpdate.vue │ │ └── index.vue │ ├── error │ ├── 401.vue │ └── 404.vue │ ├── home │ ├── components │ │ ├── caseTopStatistics.vue │ │ ├── countStatistics.vue │ │ ├── extTopStatistics.vue │ │ ├── extTrendStatistics.vue │ │ ├── projectStatistics.vue │ │ ├── runTrendStatistics.vue │ │ └── suiteTopStatistics.vue │ └── index.vue │ ├── login │ ├── component │ │ ├── account.vue │ │ ├── mobile.vue │ │ └── scan.vue │ └── index.vue │ └── system │ ├── dept │ ├── component │ │ ├── addDept.vue │ │ └── editDept.vue │ └── index.vue │ ├── lookup │ └── index.vue │ ├── menu │ ├── components │ │ └── saveOrUpdate.vue │ └── index.vue │ ├── role │ ├── components │ │ └── saveOrUpdate.vue │ └── index.vue │ └── user │ ├── components │ └── saveOrUpdate.vue │ └── index.vue ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/.env -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/.env.production -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/package.json -------------------------------------------------------------------------------- /plugins.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/plugins.d.ts -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/shim.d.ts -------------------------------------------------------------------------------- /source.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/source.d.ts -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/useAutoApi/debugTalk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useAutoApi/debugTalk.ts -------------------------------------------------------------------------------- /src/api/useAutoApi/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useAutoApi/env.ts -------------------------------------------------------------------------------- /src/api/useAutoApi/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useAutoApi/module.ts -------------------------------------------------------------------------------- /src/api/useAutoApi/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useAutoApi/project.ts -------------------------------------------------------------------------------- /src/api/useAutoApi/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useAutoApi/report.ts -------------------------------------------------------------------------------- /src/api/useAutoApi/suite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useAutoApi/suite.ts -------------------------------------------------------------------------------- /src/api/useAutoApi/testcase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useAutoApi/testcase.ts -------------------------------------------------------------------------------- /src/api/useAutoApi/timedTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useAutoApi/timedTasks.ts -------------------------------------------------------------------------------- /src/api/useSystemApi/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useSystemApi/file.ts -------------------------------------------------------------------------------- /src/api/useSystemApi/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useSystemApi/lookup.ts -------------------------------------------------------------------------------- /src/api/useSystemApi/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useSystemApi/menu.ts -------------------------------------------------------------------------------- /src/api/useSystemApi/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useSystemApi/roles.ts -------------------------------------------------------------------------------- /src/api/useSystemApi/statistic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useSystemApi/statistic.ts -------------------------------------------------------------------------------- /src/api/useSystemApi/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/api/useSystemApi/user.ts -------------------------------------------------------------------------------- /src/assets/jsoneditor/img/jsoneditor-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/assets/jsoneditor/img/jsoneditor-icons.svg -------------------------------------------------------------------------------- /src/assets/jsoneditor/jsoneditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/assets/jsoneditor/jsoneditor.css -------------------------------------------------------------------------------- /src/assets/jsoneditor/jsoneditor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/assets/jsoneditor/jsoneditor.min.css -------------------------------------------------------------------------------- /src/assets/login-icon-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/assets/login-icon-two.svg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/three/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/assets/three/three.js -------------------------------------------------------------------------------- /src/components/DefDialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/components/DefDialog/index.js -------------------------------------------------------------------------------- /src/components/DefDialog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/components/DefDialog/index.vue -------------------------------------------------------------------------------- /src/components/Pagination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/components/Pagination/index.vue -------------------------------------------------------------------------------- /src/components/QueryTable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/components/QueryTable/index.vue -------------------------------------------------------------------------------- /src/components/VaceEditor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/components/VaceEditor/index.js -------------------------------------------------------------------------------- /src/components/iconSelector/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/components/iconSelector/index.vue -------------------------------------------------------------------------------- /src/components/svgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/components/svgIcon/index.vue -------------------------------------------------------------------------------- /src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/config/config.ts -------------------------------------------------------------------------------- /src/icons/indexSvg/add_case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/add_case.svg -------------------------------------------------------------------------------- /src/icons/indexSvg/bronze_medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/bronze_medal.svg -------------------------------------------------------------------------------- /src/icons/indexSvg/case_run_count.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/case_run_count.svg -------------------------------------------------------------------------------- /src/icons/indexSvg/case_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/case_svg.svg -------------------------------------------------------------------------------- /src/icons/indexSvg/exc_count.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/exc_count.svg -------------------------------------------------------------------------------- /src/icons/indexSvg/gold_medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/gold_medal.svg -------------------------------------------------------------------------------- /src/icons/indexSvg/module_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/module_svg.svg -------------------------------------------------------------------------------- /src/icons/indexSvg/project_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/project_svg.svg -------------------------------------------------------------------------------- /src/icons/indexSvg/silver_medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/silver_medal.svg -------------------------------------------------------------------------------- /src/icons/indexSvg/suite_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/suite_svg.svg -------------------------------------------------------------------------------- /src/icons/indexSvg/user_login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/icons/indexSvg/user_login.svg -------------------------------------------------------------------------------- /src/layout/component/aside.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/component/aside.vue -------------------------------------------------------------------------------- /src/layout/component/columnsAside.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/component/columnsAside.vue -------------------------------------------------------------------------------- /src/layout/component/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/component/header.vue -------------------------------------------------------------------------------- /src/layout/component/main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/component/main.vue -------------------------------------------------------------------------------- /src/layout/footer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/footer/index.vue -------------------------------------------------------------------------------- /src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/index.vue -------------------------------------------------------------------------------- /src/layout/lockScreen/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/lockScreen/index.vue -------------------------------------------------------------------------------- /src/layout/logo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/logo/index.vue -------------------------------------------------------------------------------- /src/layout/main/classic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/main/classic.vue -------------------------------------------------------------------------------- /src/layout/main/columns.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/main/columns.vue -------------------------------------------------------------------------------- /src/layout/main/defaults.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/main/defaults.vue -------------------------------------------------------------------------------- /src/layout/main/transverse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/main/transverse.vue -------------------------------------------------------------------------------- /src/layout/navBars/breadcrumb/breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navBars/breadcrumb/breadcrumb.vue -------------------------------------------------------------------------------- /src/layout/navBars/breadcrumb/closeFull.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navBars/breadcrumb/closeFull.vue -------------------------------------------------------------------------------- /src/layout/navBars/breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navBars/breadcrumb/index.vue -------------------------------------------------------------------------------- /src/layout/navBars/breadcrumb/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navBars/breadcrumb/search.vue -------------------------------------------------------------------------------- /src/layout/navBars/breadcrumb/setings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navBars/breadcrumb/setings.vue -------------------------------------------------------------------------------- /src/layout/navBars/breadcrumb/user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navBars/breadcrumb/user.vue -------------------------------------------------------------------------------- /src/layout/navBars/breadcrumb/userNews.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navBars/breadcrumb/userNews.vue -------------------------------------------------------------------------------- /src/layout/navBars/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navBars/index.vue -------------------------------------------------------------------------------- /src/layout/navBars/tagsView/contextmenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navBars/tagsView/contextmenu.vue -------------------------------------------------------------------------------- /src/layout/navBars/tagsView/tagsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navBars/tagsView/tagsView.vue -------------------------------------------------------------------------------- /src/layout/navMenu/horizontal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navMenu/horizontal.vue -------------------------------------------------------------------------------- /src/layout/navMenu/subItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navMenu/subItem.vue -------------------------------------------------------------------------------- /src/layout/navMenu/vertical.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/navMenu/vertical.vue -------------------------------------------------------------------------------- /src/layout/routerView/iframes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/routerView/iframes.vue -------------------------------------------------------------------------------- /src/layout/routerView/link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/routerView/link.vue -------------------------------------------------------------------------------- /src/layout/routerView/parent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/layout/routerView/parent.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/router/backEnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/router/backEnd.ts -------------------------------------------------------------------------------- /src/router/frontEnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/router/frontEnd.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/router/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/router/route.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/store/interface/index.ts -------------------------------------------------------------------------------- /src/store/modules/keepAliveNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/store/modules/keepAliveNames.ts -------------------------------------------------------------------------------- /src/store/modules/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/store/modules/lookup.ts -------------------------------------------------------------------------------- /src/store/modules/requestOldRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/store/modules/requestOldRoutes.ts -------------------------------------------------------------------------------- /src/store/modules/routesList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/store/modules/routesList.ts -------------------------------------------------------------------------------- /src/store/modules/tagsViewRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/store/modules/tagsViewRoutes.ts -------------------------------------------------------------------------------- /src/store/modules/themeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/store/modules/themeConfig.ts -------------------------------------------------------------------------------- /src/store/modules/userInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/store/modules/userInfos.ts -------------------------------------------------------------------------------- /src/styles/extent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/styles/extent.css -------------------------------------------------------------------------------- /src/theme/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/app.scss -------------------------------------------------------------------------------- /src/theme/common/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/common/transition.scss -------------------------------------------------------------------------------- /src/theme/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/dark.scss -------------------------------------------------------------------------------- /src/theme/element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/element.scss -------------------------------------------------------------------------------- /src/theme/iconSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/iconSelector.scss -------------------------------------------------------------------------------- /src/theme/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/index.scss -------------------------------------------------------------------------------- /src/theme/loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/loading.scss -------------------------------------------------------------------------------- /src/theme/media/chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/chart.scss -------------------------------------------------------------------------------- /src/theme/media/cityLinkage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/cityLinkage.scss -------------------------------------------------------------------------------- /src/theme/media/date.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/date.scss -------------------------------------------------------------------------------- /src/theme/media/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/dialog.scss -------------------------------------------------------------------------------- /src/theme/media/error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/error.scss -------------------------------------------------------------------------------- /src/theme/media/form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/form.scss -------------------------------------------------------------------------------- /src/theme/media/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/home.scss -------------------------------------------------------------------------------- /src/theme/media/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/index.scss -------------------------------------------------------------------------------- /src/theme/media/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/layout.scss -------------------------------------------------------------------------------- /src/theme/media/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/login.scss -------------------------------------------------------------------------------- /src/theme/media/media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/media.scss -------------------------------------------------------------------------------- /src/theme/media/pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/pagination.scss -------------------------------------------------------------------------------- /src/theme/media/personal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/personal.scss -------------------------------------------------------------------------------- /src/theme/media/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/scrollbar.scss -------------------------------------------------------------------------------- /src/theme/media/tagsView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/media/tagsView.scss -------------------------------------------------------------------------------- /src/theme/mixins/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/mixins/index.scss -------------------------------------------------------------------------------- /src/theme/other.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/other.scss -------------------------------------------------------------------------------- /src/theme/waves.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/theme/waves.scss -------------------------------------------------------------------------------- /src/utils/arrayOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/arrayOperation.ts -------------------------------------------------------------------------------- /src/utils/authDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/authDirective.ts -------------------------------------------------------------------------------- /src/utils/authFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/authFunction.ts -------------------------------------------------------------------------------- /src/utils/commonFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/commonFunction.ts -------------------------------------------------------------------------------- /src/utils/customDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/customDirective.ts -------------------------------------------------------------------------------- /src/utils/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/directive.ts -------------------------------------------------------------------------------- /src/utils/formatTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/formatTime.ts -------------------------------------------------------------------------------- /src/utils/getStyleSheets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/getStyleSheets.ts -------------------------------------------------------------------------------- /src/utils/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/loading.ts -------------------------------------------------------------------------------- /src/utils/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/lookup.ts -------------------------------------------------------------------------------- /src/utils/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/other.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/setIconfont.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/setIconfont.ts -------------------------------------------------------------------------------- /src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/storage.ts -------------------------------------------------------------------------------- /src/utils/textToImg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/textToImg.js -------------------------------------------------------------------------------- /src/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/theme.ts -------------------------------------------------------------------------------- /src/utils/toolsValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/toolsValidate.ts -------------------------------------------------------------------------------- /src/utils/vue-json-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/vue-json-viewer.js -------------------------------------------------------------------------------- /src/utils/wartermark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/utils/wartermark.ts -------------------------------------------------------------------------------- /src/views/api/Report/components/report.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/Report/components/report.vue -------------------------------------------------------------------------------- /src/views/api/Report/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/Report/index.vue -------------------------------------------------------------------------------- /src/views/api/case/catCase/catCase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/catCase/catCase.vue -------------------------------------------------------------------------------- /src/views/api/case/catCase/catMessages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/catCase/catMessages.vue -------------------------------------------------------------------------------- /src/views/api/case/components/AutomaticAssertion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/components/AutomaticAssertion.vue -------------------------------------------------------------------------------- /src/views/api/case/components/extractValidate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/components/extractValidate.vue -------------------------------------------------------------------------------- /src/views/api/case/components/messages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/components/messages.vue -------------------------------------------------------------------------------- /src/views/api/case/components/outputList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/components/outputList.vue -------------------------------------------------------------------------------- /src/views/api/case/components/requestBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/components/requestBody.vue -------------------------------------------------------------------------------- /src/views/api/case/components/requestHeaders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/components/requestHeaders.vue -------------------------------------------------------------------------------- /src/views/api/case/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/api/case/components/skip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/components/skip.vue -------------------------------------------------------------------------------- /src/views/api/case/components/url.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/components/url.vue -------------------------------------------------------------------------------- /src/views/api/case/components/variablesParameters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/components/variablesParameters.vue -------------------------------------------------------------------------------- /src/views/api/case/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/case/index.vue -------------------------------------------------------------------------------- /src/views/api/caseSuite/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/caseSuite/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/api/caseSuite/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/caseSuite/index.vue -------------------------------------------------------------------------------- /src/views/api/configure/components/AutomaticAssertion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/configure/components/AutomaticAssertion.vue -------------------------------------------------------------------------------- /src/views/api/configure/components/extractValidate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/configure/components/extractValidate.vue -------------------------------------------------------------------------------- /src/views/api/configure/components/messages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/configure/components/messages.vue -------------------------------------------------------------------------------- /src/views/api/configure/components/requestHeaders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/configure/components/requestHeaders.vue -------------------------------------------------------------------------------- /src/views/api/configure/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/configure/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/api/configure/components/variablesParameters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/configure/components/variablesParameters.vue -------------------------------------------------------------------------------- /src/views/api/configure/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/configure/index.vue -------------------------------------------------------------------------------- /src/views/api/debugTalk/components/debugFunc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/debugTalk/components/debugFunc.vue -------------------------------------------------------------------------------- /src/views/api/debugTalk/components/editDebugtalk.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/debugTalk/components/editDebugtalk.vue -------------------------------------------------------------------------------- /src/views/api/debugTalk/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/debugTalk/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/api/debugTalk/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/debugTalk/index.vue -------------------------------------------------------------------------------- /src/views/api/env/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/env/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/api/env/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/env/index.vue -------------------------------------------------------------------------------- /src/views/api/module/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/module/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/api/module/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/module/index.vue -------------------------------------------------------------------------------- /src/views/api/project/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/project/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/api/project/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/project/index.vue -------------------------------------------------------------------------------- /src/views/api/timedTask/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/timedTask/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/api/timedTask/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/api/timedTask/index.vue -------------------------------------------------------------------------------- /src/views/error/401.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/error/401.vue -------------------------------------------------------------------------------- /src/views/error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/error/404.vue -------------------------------------------------------------------------------- /src/views/home/components/caseTopStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/home/components/caseTopStatistics.vue -------------------------------------------------------------------------------- /src/views/home/components/countStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/home/components/countStatistics.vue -------------------------------------------------------------------------------- /src/views/home/components/extTopStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/home/components/extTopStatistics.vue -------------------------------------------------------------------------------- /src/views/home/components/extTrendStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/home/components/extTrendStatistics.vue -------------------------------------------------------------------------------- /src/views/home/components/projectStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/home/components/projectStatistics.vue -------------------------------------------------------------------------------- /src/views/home/components/runTrendStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/home/components/runTrendStatistics.vue -------------------------------------------------------------------------------- /src/views/home/components/suiteTopStatistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/home/components/suiteTopStatistics.vue -------------------------------------------------------------------------------- /src/views/home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/home/index.vue -------------------------------------------------------------------------------- /src/views/login/component/account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/login/component/account.vue -------------------------------------------------------------------------------- /src/views/login/component/mobile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/login/component/mobile.vue -------------------------------------------------------------------------------- /src/views/login/component/scan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/login/component/scan.vue -------------------------------------------------------------------------------- /src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/login/index.vue -------------------------------------------------------------------------------- /src/views/system/dept/component/addDept.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/system/dept/component/addDept.vue -------------------------------------------------------------------------------- /src/views/system/dept/component/editDept.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/system/dept/component/editDept.vue -------------------------------------------------------------------------------- /src/views/system/dept/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/system/dept/index.vue -------------------------------------------------------------------------------- /src/views/system/lookup/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/system/lookup/index.vue -------------------------------------------------------------------------------- /src/views/system/menu/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/system/menu/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/system/menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/system/menu/index.vue -------------------------------------------------------------------------------- /src/views/system/role/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/system/role/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/system/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/system/role/index.vue -------------------------------------------------------------------------------- /src/views/system/user/components/saveOrUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/system/user/components/saveOrUpdate.vue -------------------------------------------------------------------------------- /src/views/system/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/src/views/system/user/index.vue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baizunxian/zero_autotest_front/HEAD/yarn.lock --------------------------------------------------------------------------------