├── #start-bert-linux.sh ├── #start-bert服务启动脚本.bat ├── #start-mongodb启动脚本.bat ├── .gitignore ├── Dockerfile.backend ├── Dockerfile.frontend ├── LICENSE ├── README.md ├── backend ├── __init__.py ├── app │ ├── __init__.py │ ├── case │ │ ├── caseSuite.py │ │ ├── testReport.py │ │ └── testingCase.py │ ├── host │ │ └── host.py │ ├── mail │ │ ├── mail.py │ │ └── mailSender.py │ ├── models │ │ ├── adminUser.py │ │ ├── caseSuite.py │ │ ├── cronTab.py │ │ ├── host.py │ │ ├── mail.py │ │ ├── mailSender.py │ │ ├── project.py │ │ ├── testReport.py │ │ └── testingCase.py │ ├── notice │ │ └── webhook.py │ ├── project │ │ └── project.py │ ├── timer │ │ └── cronTab.py │ └── user │ │ ├── adminUser.py │ │ └── user.py ├── config.py ├── createAdminUser.py ├── logs │ ├── .__log.lock │ └── log.log.2020-03-07 ├── requirements.txt ├── run.py ├── run.sh ├── testframe │ └── interfaceTest │ │ └── tester.py └── utils │ ├── __init__.py │ ├── common.py │ ├── cron │ ├── __init__.py │ ├── cronManager.py │ └── interfaceTestCron.py │ ├── log_config.py │ ├── mango.py │ ├── nlp │ ├── Nlper.py │ └── __init__.py │ └── sendReportEmail.py ├── deploy ├── dist ├── index.html └── static │ ├── css │ ├── app.5ba2ecb0d2a9faaae6de321adc514f91.css │ └── app.5ba2ecb0d2a9faaae6de321adc514f91.css.map │ ├── favicon.ico │ ├── fonts │ ├── element-icons.6f0a763.ttf │ ├── fontawesome-webfont.674f50d.eot │ ├── fontawesome-webfont.af7ae50.woff2 │ ├── fontawesome-webfont.b06871f.ttf │ ├── fontawesome-webfont.fee66e7.woff │ ├── icomoon.5fadf3a.woff │ ├── icomoon.aa6f949.ttf │ ├── icomoon.c440c59.eot │ ├── iconfont.824ae76.ttf │ └── iconfont.9465461.eot │ ├── img │ ├── Banner.df97073.jpg │ ├── fontawesome-webfont.912ec66.svg │ ├── hello.614f7c7.jpg │ ├── icomoon.513433b.svg │ ├── iconfont.3b1767f.svg │ ├── logo.e8aa977.jpg │ └── userphoto.9511e5e.jpg │ └── js │ ├── app.f3be4ad6cbc7d9c1ac8f.js │ ├── app.f3be4ad6cbc7d9c1ac8f.js.map │ ├── manifest.2ae2e69a05c33dfc65f8.js │ ├── manifest.2ae2e69a05c33dfc65f8.js.map │ ├── vendor.5f4553d2fa7e029bc778.js │ └── vendor.5f4553d2fa7e029bc778.js.map ├── frontend ├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── build │ ├── build.js │ ├── check-versions.js │ ├── logo.png │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ ├── webpack.prod.conf.js │ └── webpack.test.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js ├── favicon.ico ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.vue │ ├── api │ │ ├── caseSuite.js │ │ ├── common.js │ │ ├── cron.js │ │ ├── host.js │ │ ├── index.js │ │ ├── mail.js │ │ ├── mailSender.js │ │ ├── project.js │ │ ├── testCase.js │ │ ├── testReport.js │ │ └── user.js │ ├── assets │ │ ├── css │ │ │ ├── animate.min.css │ │ │ ├── element-#FF9E1B │ │ │ │ ├── alert.css │ │ │ │ ├── aside.css │ │ │ │ ├── autocomplete.css │ │ │ │ ├── badge.css │ │ │ │ ├── base.css │ │ │ │ ├── breadcrumb-item.css │ │ │ │ ├── breadcrumb.css │ │ │ │ ├── button-group.css │ │ │ │ ├── button.css │ │ │ │ ├── card.css │ │ │ │ ├── carousel-item.css │ │ │ │ ├── carousel.css │ │ │ │ ├── cascader.css │ │ │ │ ├── checkbox-button.css │ │ │ │ ├── checkbox-group.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── col.css │ │ │ │ ├── collapse-item.css │ │ │ │ ├── collapse.css │ │ │ │ ├── color-picker.css │ │ │ │ ├── container.css │ │ │ │ ├── date-picker.css │ │ │ │ ├── dialog.css │ │ │ │ ├── display.css │ │ │ │ ├── dropdown-item.css │ │ │ │ ├── dropdown-menu.css │ │ │ │ ├── dropdown.css │ │ │ │ ├── fonts │ │ │ │ │ ├── element-icons.ttf │ │ │ │ │ └── element-icons.woff │ │ │ │ ├── footer.css │ │ │ │ ├── form-item.css │ │ │ │ ├── form.css │ │ │ │ ├── header.css │ │ │ │ ├── icon.css │ │ │ │ ├── index.css │ │ │ │ ├── input-number.css │ │ │ │ ├── input.css │ │ │ │ ├── loading.css │ │ │ │ ├── main.css │ │ │ │ ├── menu-item-group.css │ │ │ │ ├── menu-item.css │ │ │ │ ├── menu.css │ │ │ │ ├── message-box.css │ │ │ │ ├── message.css │ │ │ │ ├── notification.css │ │ │ │ ├── option-group.css │ │ │ │ ├── option.css │ │ │ │ ├── pagination.css │ │ │ │ ├── popover.css │ │ │ │ ├── popper.css │ │ │ │ ├── progress.css │ │ │ │ ├── radio-button.css │ │ │ │ ├── radio-group.css │ │ │ │ ├── radio.css │ │ │ │ ├── rate.css │ │ │ │ ├── reset.css │ │ │ │ ├── row.css │ │ │ │ ├── scrollbar.css │ │ │ │ ├── select-dropdown.css │ │ │ │ ├── select.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── step.css │ │ │ │ ├── steps.css │ │ │ │ ├── submenu.css │ │ │ │ ├── switch.css │ │ │ │ ├── tab-pane.css │ │ │ │ ├── table-column.css │ │ │ │ ├── table.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tag.css │ │ │ │ ├── time-picker.css │ │ │ │ ├── time-select.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── transfer.css │ │ │ │ ├── tree.css │ │ │ │ └── upload.css │ │ │ ├── quill.snow.css │ │ │ └── reset.css │ │ ├── fonts │ │ │ ├── demo.css │ │ │ ├── demo_fontclass.html │ │ │ ├── demo_symbol.html │ │ │ ├── demo_unicode.html │ │ │ ├── icomoon.css │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ ├── icomoon.woff │ │ │ ├── iconfont.css │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.js │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── imgs │ │ │ ├── Banner.jpg │ │ │ ├── Banner2.jpg │ │ │ ├── assets │ │ │ │ ├── icon-no.svg │ │ │ │ ├── icon-yes.svg │ │ │ │ ├── member.png │ │ │ │ └── wx.jpg │ │ │ ├── favicon.ico │ │ │ ├── hello.jpg │ │ │ ├── i-am-strong.jpg │ │ │ ├── icon-no.svg │ │ │ ├── icon-yes.svg │ │ │ ├── logo.jpg │ │ │ ├── member.png │ │ │ ├── userphoto.jpg │ │ │ └── wx.jpg │ │ ├── js │ │ │ ├── dom.js │ │ │ └── util.js │ │ ├── scss │ │ │ ├── custom-el-var.scss │ │ │ └── dashboard-ojo-palette.scss │ │ └── svg │ │ │ └── loading.svg │ ├── main.js │ ├── router │ │ └── index.js │ ├── styles │ │ └── vars.scss │ ├── utils │ │ ├── cookie.js │ │ └── request.js │ ├── views │ │ ├── About.vue │ │ ├── Home.vue │ │ ├── Login.vue │ │ ├── More.vue │ │ ├── Project.vue │ │ ├── UITest.vue │ │ ├── common │ │ │ └── Header.vue │ │ └── interfaceTestProject │ │ │ ├── ProjectList.vue │ │ │ ├── ProjectReport.vue │ │ │ ├── api │ │ │ └── automation │ │ │ │ ├── AddCaseApi.vue │ │ │ │ ├── AutomationTest.vue │ │ │ │ ├── CaseApiList.vue │ │ │ │ ├── CaseSuiteList.vue │ │ │ │ ├── CronList.vue │ │ │ │ └── UpdateCaseApi.vue │ │ │ └── global │ │ │ ├── GlobalMail.vue │ │ │ └── Globalhost.vue │ └── vuex │ │ ├── actions.js │ │ ├── getters.js │ │ └── store.js ├── static │ ├── .gitkeep │ └── favicon.ico └── test │ └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── HelloWorld.spec.js └── images ├── NLP模型启动成功输出.png ├── NLP部署失败.png ├── SeeYou平台思维导图.jpg ├── 不使用NLP模型方法1.png ├── 不使用NLP模型方法2.png ├── 定时任务配置.png ├── 控制台输出1.png ├── 控制台输出2.png ├── 操作界面展示.png ├── 数据导入展示.png ├── 测试报告展示.png └── 用例接口列表界面展示.jpg /#start-bert-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/#start-bert-linux.sh -------------------------------------------------------------------------------- /#start-bert服务启动脚本.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/#start-bert服务启动脚本.bat -------------------------------------------------------------------------------- /#start-mongodb启动脚本.bat: -------------------------------------------------------------------------------- 1 | mongod --dbpath C:\MongoDB\data\db -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile.backend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/Dockerfile.backend -------------------------------------------------------------------------------- /Dockerfile.frontend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/Dockerfile.frontend -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/__init__.py -------------------------------------------------------------------------------- /backend/app/case/caseSuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/case/caseSuite.py -------------------------------------------------------------------------------- /backend/app/case/testReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/case/testReport.py -------------------------------------------------------------------------------- /backend/app/case/testingCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/case/testingCase.py -------------------------------------------------------------------------------- /backend/app/host/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/host/host.py -------------------------------------------------------------------------------- /backend/app/mail/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/mail/mail.py -------------------------------------------------------------------------------- /backend/app/mail/mailSender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/mail/mailSender.py -------------------------------------------------------------------------------- /backend/app/models/adminUser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/models/adminUser.py -------------------------------------------------------------------------------- /backend/app/models/caseSuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/models/caseSuite.py -------------------------------------------------------------------------------- /backend/app/models/cronTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/models/cronTab.py -------------------------------------------------------------------------------- /backend/app/models/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/models/host.py -------------------------------------------------------------------------------- /backend/app/models/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/models/mail.py -------------------------------------------------------------------------------- /backend/app/models/mailSender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/models/mailSender.py -------------------------------------------------------------------------------- /backend/app/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/models/project.py -------------------------------------------------------------------------------- /backend/app/models/testReport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/models/testReport.py -------------------------------------------------------------------------------- /backend/app/models/testingCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/models/testingCase.py -------------------------------------------------------------------------------- /backend/app/notice/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/notice/webhook.py -------------------------------------------------------------------------------- /backend/app/project/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/project/project.py -------------------------------------------------------------------------------- /backend/app/timer/cronTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/timer/cronTab.py -------------------------------------------------------------------------------- /backend/app/user/adminUser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/user/adminUser.py -------------------------------------------------------------------------------- /backend/app/user/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/app/user/user.py -------------------------------------------------------------------------------- /backend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/config.py -------------------------------------------------------------------------------- /backend/createAdminUser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/createAdminUser.py -------------------------------------------------------------------------------- /backend/logs/.__log.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/logs/log.log.2020-03-07: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/run.py -------------------------------------------------------------------------------- /backend/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/run.sh -------------------------------------------------------------------------------- /backend/testframe/interfaceTest/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/testframe/interfaceTest/tester.py -------------------------------------------------------------------------------- /backend/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/utils/common.py -------------------------------------------------------------------------------- /backend/utils/cron/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/utils/cron/cronManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/utils/cron/cronManager.py -------------------------------------------------------------------------------- /backend/utils/cron/interfaceTestCron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/utils/cron/interfaceTestCron.py -------------------------------------------------------------------------------- /backend/utils/log_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/utils/log_config.py -------------------------------------------------------------------------------- /backend/utils/mango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/utils/mango.py -------------------------------------------------------------------------------- /backend/utils/nlp/Nlper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/utils/nlp/Nlper.py -------------------------------------------------------------------------------- /backend/utils/nlp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/utils/sendReportEmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/backend/utils/sendReportEmail.py -------------------------------------------------------------------------------- /deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/deploy -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/static/css/app.5ba2ecb0d2a9faaae6de321adc514f91.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/css/app.5ba2ecb0d2a9faaae6de321adc514f91.css -------------------------------------------------------------------------------- /dist/static/css/app.5ba2ecb0d2a9faaae6de321adc514f91.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/css/app.5ba2ecb0d2a9faaae6de321adc514f91.css.map -------------------------------------------------------------------------------- /dist/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/favicon.ico -------------------------------------------------------------------------------- /dist/static/fonts/element-icons.6f0a763.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/fonts/element-icons.6f0a763.ttf -------------------------------------------------------------------------------- /dist/static/fonts/fontawesome-webfont.674f50d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/fonts/fontawesome-webfont.674f50d.eot -------------------------------------------------------------------------------- /dist/static/fonts/fontawesome-webfont.af7ae50.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/fonts/fontawesome-webfont.af7ae50.woff2 -------------------------------------------------------------------------------- /dist/static/fonts/fontawesome-webfont.b06871f.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/fonts/fontawesome-webfont.b06871f.ttf -------------------------------------------------------------------------------- /dist/static/fonts/fontawesome-webfont.fee66e7.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/fonts/fontawesome-webfont.fee66e7.woff -------------------------------------------------------------------------------- /dist/static/fonts/icomoon.5fadf3a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/fonts/icomoon.5fadf3a.woff -------------------------------------------------------------------------------- /dist/static/fonts/icomoon.aa6f949.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/fonts/icomoon.aa6f949.ttf -------------------------------------------------------------------------------- /dist/static/fonts/icomoon.c440c59.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/fonts/icomoon.c440c59.eot -------------------------------------------------------------------------------- /dist/static/fonts/iconfont.824ae76.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/fonts/iconfont.824ae76.ttf -------------------------------------------------------------------------------- /dist/static/fonts/iconfont.9465461.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/fonts/iconfont.9465461.eot -------------------------------------------------------------------------------- /dist/static/img/Banner.df97073.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/img/Banner.df97073.jpg -------------------------------------------------------------------------------- /dist/static/img/fontawesome-webfont.912ec66.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/img/fontawesome-webfont.912ec66.svg -------------------------------------------------------------------------------- /dist/static/img/hello.614f7c7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/img/hello.614f7c7.jpg -------------------------------------------------------------------------------- /dist/static/img/icomoon.513433b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/img/icomoon.513433b.svg -------------------------------------------------------------------------------- /dist/static/img/iconfont.3b1767f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/img/iconfont.3b1767f.svg -------------------------------------------------------------------------------- /dist/static/img/logo.e8aa977.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/img/logo.e8aa977.jpg -------------------------------------------------------------------------------- /dist/static/img/userphoto.9511e5e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/img/userphoto.9511e5e.jpg -------------------------------------------------------------------------------- /dist/static/js/app.f3be4ad6cbc7d9c1ac8f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/js/app.f3be4ad6cbc7d9c1ac8f.js -------------------------------------------------------------------------------- /dist/static/js/app.f3be4ad6cbc7d9c1ac8f.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/js/app.f3be4ad6cbc7d9c1ac8f.js.map -------------------------------------------------------------------------------- /dist/static/js/manifest.2ae2e69a05c33dfc65f8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/js/manifest.2ae2e69a05c33dfc65f8.js -------------------------------------------------------------------------------- /dist/static/js/manifest.2ae2e69a05c33dfc65f8.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/js/manifest.2ae2e69a05c33dfc65f8.js.map -------------------------------------------------------------------------------- /dist/static/js/vendor.5f4553d2fa7e029bc778.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/js/vendor.5f4553d2fa7e029bc778.js -------------------------------------------------------------------------------- /dist/static/js/vendor.5f4553d2fa7e029bc778.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/dist/static/js/vendor.5f4553d2fa7e029bc778.js.map -------------------------------------------------------------------------------- /frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/.babelrc -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/.postcssrc.js -------------------------------------------------------------------------------- /frontend/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/build/build.js -------------------------------------------------------------------------------- /frontend/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/build/check-versions.js -------------------------------------------------------------------------------- /frontend/build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/build/logo.png -------------------------------------------------------------------------------- /frontend/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/build/utils.js -------------------------------------------------------------------------------- /frontend/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/build/vue-loader.conf.js -------------------------------------------------------------------------------- /frontend/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/build/webpack.base.conf.js -------------------------------------------------------------------------------- /frontend/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /frontend/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /frontend/build/webpack.test.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/build/webpack.test.conf.js -------------------------------------------------------------------------------- /frontend/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/config/dev.env.js -------------------------------------------------------------------------------- /frontend/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/config/index.js -------------------------------------------------------------------------------- /frontend/config/prod.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/config/prod.env.js -------------------------------------------------------------------------------- /frontend/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/config/test.env.js -------------------------------------------------------------------------------- /frontend/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/favicon.ico -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/api/caseSuite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/caseSuite.js -------------------------------------------------------------------------------- /frontend/src/api/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/common.js -------------------------------------------------------------------------------- /frontend/src/api/cron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/cron.js -------------------------------------------------------------------------------- /frontend/src/api/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/host.js -------------------------------------------------------------------------------- /frontend/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/index.js -------------------------------------------------------------------------------- /frontend/src/api/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/mail.js -------------------------------------------------------------------------------- /frontend/src/api/mailSender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/mailSender.js -------------------------------------------------------------------------------- /frontend/src/api/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/project.js -------------------------------------------------------------------------------- /frontend/src/api/testCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/testCase.js -------------------------------------------------------------------------------- /frontend/src/api/testReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/testReport.js -------------------------------------------------------------------------------- /frontend/src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/api/user.js -------------------------------------------------------------------------------- /frontend/src/assets/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/animate.min.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/alert.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/aside.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/aside.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/autocomplete.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/badge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/badge.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/base.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/breadcrumb-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/breadcrumb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/breadcrumb.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/button-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/button.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/card.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/carousel-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/carousel-item.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/carousel.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/cascader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/cascader.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/checkbox-button.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/checkbox-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/checkbox.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/col.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/collapse-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/collapse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/collapse.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/color-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/color-picker.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/container.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/date-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/date-picker.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/dialog.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/display.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/dropdown-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/dropdown-menu.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/dropdown.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/fonts/element-icons.ttf -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/fonts/element-icons.woff -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/footer.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/form-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/form.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/header.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/icon.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/index.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/input-number.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/input-number.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/input.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/loading.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/main.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/menu-item-group.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/menu-item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/menu.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/message-box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/message-box.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/message.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/notification.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/option-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/option-group.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/option.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/option.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/pagination.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/popover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/popover.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/popper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/popper.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/progress.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/radio-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/radio-button.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/radio-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/radio-group.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/radio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/radio.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/rate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/rate.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/reset.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/row.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/row.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/scrollbar.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/select-dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/select-dropdown.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/select.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/slider.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/spinner.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/step.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/step.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/steps.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/submenu.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/switch.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/tab-pane.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/table-column.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/table-column.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/table.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/tabs.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/tag.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/time-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/time-picker.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/time-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/time-select.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/tooltip.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/transfer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/transfer.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/tree.css -------------------------------------------------------------------------------- /frontend/src/assets/css/element-#FF9E1B/upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/element-#FF9E1B/upload.css -------------------------------------------------------------------------------- /frontend/src/assets/css/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/quill.snow.css -------------------------------------------------------------------------------- /frontend/src/assets/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/css/reset.css -------------------------------------------------------------------------------- /frontend/src/assets/fonts/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/demo.css -------------------------------------------------------------------------------- /frontend/src/assets/fonts/demo_fontclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/demo_fontclass.html -------------------------------------------------------------------------------- /frontend/src/assets/fonts/demo_symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/demo_symbol.html -------------------------------------------------------------------------------- /frontend/src/assets/fonts/demo_unicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/demo_unicode.html -------------------------------------------------------------------------------- /frontend/src/assets/fonts/icomoon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/icomoon.css -------------------------------------------------------------------------------- /frontend/src/assets/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/icomoon.eot -------------------------------------------------------------------------------- /frontend/src/assets/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/icomoon.svg -------------------------------------------------------------------------------- /frontend/src/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/icomoon.woff -------------------------------------------------------------------------------- /frontend/src/assets/fonts/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/iconfont.css -------------------------------------------------------------------------------- /frontend/src/assets/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/iconfont.eot -------------------------------------------------------------------------------- /frontend/src/assets/fonts/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/iconfont.js -------------------------------------------------------------------------------- /frontend/src/assets/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/iconfont.svg -------------------------------------------------------------------------------- /frontend/src/assets/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/iconfont.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/fonts/iconfont.woff -------------------------------------------------------------------------------- /frontend/src/assets/imgs/Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/Banner.jpg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/Banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/Banner2.jpg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/assets/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/assets/icon-no.svg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/assets/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/assets/icon-yes.svg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/assets/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/assets/member.png -------------------------------------------------------------------------------- /frontend/src/assets/imgs/assets/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/assets/wx.jpg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/favicon.ico -------------------------------------------------------------------------------- /frontend/src/assets/imgs/hello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/hello.jpg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/i-am-strong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/i-am-strong.jpg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/icon-no.svg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/icon-yes.svg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/logo.jpg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/member.png -------------------------------------------------------------------------------- /frontend/src/assets/imgs/userphoto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/userphoto.jpg -------------------------------------------------------------------------------- /frontend/src/assets/imgs/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/imgs/wx.jpg -------------------------------------------------------------------------------- /frontend/src/assets/js/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/js/dom.js -------------------------------------------------------------------------------- /frontend/src/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/js/util.js -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom-el-var.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/scss/custom-el-var.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/dashboard-ojo-palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/scss/dashboard-ojo-palette.scss -------------------------------------------------------------------------------- /frontend/src/assets/svg/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/assets/svg/loading.svg -------------------------------------------------------------------------------- /frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/main.js -------------------------------------------------------------------------------- /frontend/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/router/index.js -------------------------------------------------------------------------------- /frontend/src/styles/vars.scss: -------------------------------------------------------------------------------- 1 | $color-primary: #20a0ff;//#18c79c -------------------------------------------------------------------------------- /frontend/src/utils/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/utils/cookie.js -------------------------------------------------------------------------------- /frontend/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/utils/request.js -------------------------------------------------------------------------------- /frontend/src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/About.vue -------------------------------------------------------------------------------- /frontend/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/Home.vue -------------------------------------------------------------------------------- /frontend/src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/Login.vue -------------------------------------------------------------------------------- /frontend/src/views/More.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/More.vue -------------------------------------------------------------------------------- /frontend/src/views/Project.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/Project.vue -------------------------------------------------------------------------------- /frontend/src/views/UITest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/UITest.vue -------------------------------------------------------------------------------- /frontend/src/views/common/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/common/Header.vue -------------------------------------------------------------------------------- /frontend/src/views/interfaceTestProject/ProjectList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/interfaceTestProject/ProjectList.vue -------------------------------------------------------------------------------- /frontend/src/views/interfaceTestProject/ProjectReport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/interfaceTestProject/ProjectReport.vue -------------------------------------------------------------------------------- /frontend/src/views/interfaceTestProject/api/automation/AddCaseApi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/interfaceTestProject/api/automation/AddCaseApi.vue -------------------------------------------------------------------------------- /frontend/src/views/interfaceTestProject/api/automation/AutomationTest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/interfaceTestProject/api/automation/AutomationTest.vue -------------------------------------------------------------------------------- /frontend/src/views/interfaceTestProject/api/automation/CaseApiList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/interfaceTestProject/api/automation/CaseApiList.vue -------------------------------------------------------------------------------- /frontend/src/views/interfaceTestProject/api/automation/CaseSuiteList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/interfaceTestProject/api/automation/CaseSuiteList.vue -------------------------------------------------------------------------------- /frontend/src/views/interfaceTestProject/api/automation/CronList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/interfaceTestProject/api/automation/CronList.vue -------------------------------------------------------------------------------- /frontend/src/views/interfaceTestProject/api/automation/UpdateCaseApi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/interfaceTestProject/api/automation/UpdateCaseApi.vue -------------------------------------------------------------------------------- /frontend/src/views/interfaceTestProject/global/GlobalMail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/interfaceTestProject/global/GlobalMail.vue -------------------------------------------------------------------------------- /frontend/src/views/interfaceTestProject/global/Globalhost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/views/interfaceTestProject/global/Globalhost.vue -------------------------------------------------------------------------------- /frontend/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/vuex/actions.js -------------------------------------------------------------------------------- /frontend/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/vuex/getters.js -------------------------------------------------------------------------------- /frontend/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/src/vuex/store.js -------------------------------------------------------------------------------- /frontend/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/static/favicon.ico -------------------------------------------------------------------------------- /frontend/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/test/unit/.eslintrc -------------------------------------------------------------------------------- /frontend/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/test/unit/index.js -------------------------------------------------------------------------------- /frontend/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/test/unit/karma.conf.js -------------------------------------------------------------------------------- /frontend/test/unit/specs/HelloWorld.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/frontend/test/unit/specs/HelloWorld.spec.js -------------------------------------------------------------------------------- /images/NLP模型启动成功输出.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/NLP模型启动成功输出.png -------------------------------------------------------------------------------- /images/NLP部署失败.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/NLP部署失败.png -------------------------------------------------------------------------------- /images/SeeYou平台思维导图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/SeeYou平台思维导图.jpg -------------------------------------------------------------------------------- /images/不使用NLP模型方法1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/不使用NLP模型方法1.png -------------------------------------------------------------------------------- /images/不使用NLP模型方法2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/不使用NLP模型方法2.png -------------------------------------------------------------------------------- /images/定时任务配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/定时任务配置.png -------------------------------------------------------------------------------- /images/控制台输出1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/控制台输出1.png -------------------------------------------------------------------------------- /images/控制台输出2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/控制台输出2.png -------------------------------------------------------------------------------- /images/操作界面展示.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/操作界面展示.png -------------------------------------------------------------------------------- /images/数据导入展示.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/数据导入展示.png -------------------------------------------------------------------------------- /images/测试报告展示.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/测试报告展示.png -------------------------------------------------------------------------------- /images/用例接口列表界面展示.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valuebai/SeeYou-Platform/HEAD/images/用例接口列表界面展示.jpg --------------------------------------------------------------------------------