├── README.md ├── backend ├── demo.py ├── label_cls.dict ├── label_ext.dict ├── main.py ├── static │ └── 测试数据.xlsx └── utils │ ├── __pycache__ │ ├── data_cls.cpython-37.pyc │ ├── data_ext.cpython-37.pyc │ ├── model_define.cpython-37.pyc │ └── utils.cpython-37.pyc │ ├── data_cls.py │ ├── data_ext.py │ ├── model_define.py │ └── utils.py ├── frontend ├── .editorconfig ├── .env.development ├── .env.production ├── .env.staging ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── LICENSE ├── README-zh.md ├── README.md ├── babel.config.js ├── build │ └── index.js ├── jest.config.js ├── jsconfig.json ├── mock │ ├── index.js │ ├── mock-server.js │ ├── table.js │ ├── user.js │ └── utils.js ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── api │ │ ├── table.js │ │ └── user.js │ ├── assets │ │ ├── 404_images │ │ │ ├── 404.png │ │ │ └── 404_cloud.png │ │ └── img │ │ │ └── image.jpg │ ├── components │ │ ├── Breadcrumb │ │ │ └── index.vue │ │ ├── Hamburger │ │ │ └── index.vue │ │ └── SvgIcon │ │ │ └── index.vue │ ├── icons │ │ ├── index.js │ │ ├── svg │ │ │ ├── dashboard.svg │ │ │ ├── example.svg │ │ │ ├── eye-open.svg │ │ │ ├── eye.svg │ │ │ ├── form.svg │ │ │ ├── link.svg │ │ │ ├── nested.svg │ │ │ ├── password.svg │ │ │ ├── table.svg │ │ │ ├── tree.svg │ │ │ └── user.svg │ │ └── svgo.yml │ ├── layout │ │ ├── components │ │ │ ├── AppMain.vue │ │ │ ├── Navbar.vue │ │ │ ├── Sidebar │ │ │ │ ├── FixiOSBug.js │ │ │ │ ├── Item.vue │ │ │ │ ├── Link.vue │ │ │ │ ├── Logo.vue │ │ │ │ ├── SidebarItem.vue │ │ │ │ └── index.vue │ │ │ └── index.js │ │ ├── index.vue │ │ └── mixin │ │ │ └── ResizeHandler.js │ ├── main.js │ ├── permission.js │ ├── router │ │ └── index.js │ ├── settings.js │ ├── store │ │ ├── getters.js │ │ ├── index.js │ │ └── modules │ │ │ ├── app.js │ │ │ ├── settings.js │ │ │ └── user.js │ ├── styles │ │ ├── element-ui.scss │ │ ├── index.scss │ │ ├── mixin.scss │ │ ├── sidebar.scss │ │ ├── transition.scss │ │ └── variables.scss │ ├── utils │ │ ├── Excel.js │ │ ├── auth.js │ │ ├── get-page-title.js │ │ ├── index.js │ │ ├── request.js │ │ └── validate.js │ └── views │ │ ├── 404.vue │ │ ├── batchAnalysis │ │ └── index.vue │ │ ├── dashboard │ │ └── index.vue │ │ ├── login │ │ └── index.vue │ │ └── singleAnalysis │ │ └── index.vue ├── tests │ └── unit │ │ ├── .eslintrc.js │ │ ├── components │ │ ├── Breadcrumb.spec.js │ │ ├── Hamburger.spec.js │ │ └── SvgIcon.spec.js │ │ └── utils │ │ ├── formatTime.spec.js │ │ ├── param2Obj.spec.js │ │ ├── parseTime.spec.js │ │ └── validate.spec.js └── vue.config.js └── 项目说明文档.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/README.md -------------------------------------------------------------------------------- /backend/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/demo.py -------------------------------------------------------------------------------- /backend/label_cls.dict: -------------------------------------------------------------------------------- 1 | 负向 2 | 正向 3 | -------------------------------------------------------------------------------- /backend/label_ext.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/label_ext.dict -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/static/测试数据.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/static/测试数据.xlsx -------------------------------------------------------------------------------- /backend/utils/__pycache__/data_cls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/utils/__pycache__/data_cls.cpython-37.pyc -------------------------------------------------------------------------------- /backend/utils/__pycache__/data_ext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/utils/__pycache__/data_ext.cpython-37.pyc -------------------------------------------------------------------------------- /backend/utils/__pycache__/model_define.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/utils/__pycache__/model_define.cpython-37.pyc -------------------------------------------------------------------------------- /backend/utils/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/utils/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /backend/utils/data_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/utils/data_cls.py -------------------------------------------------------------------------------- /backend/utils/data_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/utils/data_ext.py -------------------------------------------------------------------------------- /backend/utils/model_define.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/utils/model_define.py -------------------------------------------------------------------------------- /backend/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/backend/utils/utils.py -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/.env.development -------------------------------------------------------------------------------- /frontend/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/.env.production -------------------------------------------------------------------------------- /frontend/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/.env.staging -------------------------------------------------------------------------------- /frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | src/assets 3 | public 4 | dist 5 | -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/.travis.yml -------------------------------------------------------------------------------- /frontend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/LICENSE -------------------------------------------------------------------------------- /frontend/README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/README-zh.md -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/babel.config.js -------------------------------------------------------------------------------- /frontend/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/build/index.js -------------------------------------------------------------------------------- /frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/jest.config.js -------------------------------------------------------------------------------- /frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/jsconfig.json -------------------------------------------------------------------------------- /frontend/mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/mock/index.js -------------------------------------------------------------------------------- /frontend/mock/mock-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/mock/mock-server.js -------------------------------------------------------------------------------- /frontend/mock/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/mock/table.js -------------------------------------------------------------------------------- /frontend/mock/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/mock/user.js -------------------------------------------------------------------------------- /frontend/mock/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/mock/utils.js -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/api/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/api/table.js -------------------------------------------------------------------------------- /frontend/src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/api/user.js -------------------------------------------------------------------------------- /frontend/src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/assets/404_images/404.png -------------------------------------------------------------------------------- /frontend/src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /frontend/src/assets/img/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/assets/img/image.jpg -------------------------------------------------------------------------------- /frontend/src/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/components/Hamburger/index.vue -------------------------------------------------------------------------------- /frontend/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /frontend/src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/index.js -------------------------------------------------------------------------------- /frontend/src/icons/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/dashboard.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/example.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/eye-open.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/eye.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/form.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/link.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/nested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/nested.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/password.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/table.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/tree.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svg/user.svg -------------------------------------------------------------------------------- /frontend/src/icons/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/icons/svgo.yml -------------------------------------------------------------------------------- /frontend/src/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/components/AppMain.vue -------------------------------------------------------------------------------- /frontend/src/layout/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/components/Navbar.vue -------------------------------------------------------------------------------- /frontend/src/layout/components/Sidebar/FixiOSBug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/components/Sidebar/FixiOSBug.js -------------------------------------------------------------------------------- /frontend/src/layout/components/Sidebar/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/components/Sidebar/Item.vue -------------------------------------------------------------------------------- /frontend/src/layout/components/Sidebar/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/components/Sidebar/Link.vue -------------------------------------------------------------------------------- /frontend/src/layout/components/Sidebar/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/components/Sidebar/Logo.vue -------------------------------------------------------------------------------- /frontend/src/layout/components/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/components/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /frontend/src/layout/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/components/Sidebar/index.vue -------------------------------------------------------------------------------- /frontend/src/layout/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/components/index.js -------------------------------------------------------------------------------- /frontend/src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/index.vue -------------------------------------------------------------------------------- /frontend/src/layout/mixin/ResizeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/layout/mixin/ResizeHandler.js -------------------------------------------------------------------------------- /frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/main.js -------------------------------------------------------------------------------- /frontend/src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/permission.js -------------------------------------------------------------------------------- /frontend/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/router/index.js -------------------------------------------------------------------------------- /frontend/src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/settings.js -------------------------------------------------------------------------------- /frontend/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/store/getters.js -------------------------------------------------------------------------------- /frontend/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/store/index.js -------------------------------------------------------------------------------- /frontend/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/store/modules/app.js -------------------------------------------------------------------------------- /frontend/src/store/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/store/modules/settings.js -------------------------------------------------------------------------------- /frontend/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/store/modules/user.js -------------------------------------------------------------------------------- /frontend/src/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/styles/element-ui.scss -------------------------------------------------------------------------------- /frontend/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/styles/index.scss -------------------------------------------------------------------------------- /frontend/src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/styles/mixin.scss -------------------------------------------------------------------------------- /frontend/src/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/styles/sidebar.scss -------------------------------------------------------------------------------- /frontend/src/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/styles/transition.scss -------------------------------------------------------------------------------- /frontend/src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/styles/variables.scss -------------------------------------------------------------------------------- /frontend/src/utils/Excel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/utils/Excel.js -------------------------------------------------------------------------------- /frontend/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/utils/auth.js -------------------------------------------------------------------------------- /frontend/src/utils/get-page-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/utils/get-page-title.js -------------------------------------------------------------------------------- /frontend/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/utils/index.js -------------------------------------------------------------------------------- /frontend/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/utils/request.js -------------------------------------------------------------------------------- /frontend/src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/utils/validate.js -------------------------------------------------------------------------------- /frontend/src/views/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/views/404.vue -------------------------------------------------------------------------------- /frontend/src/views/batchAnalysis/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/views/batchAnalysis/index.vue -------------------------------------------------------------------------------- /frontend/src/views/dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/views/dashboard/index.vue -------------------------------------------------------------------------------- /frontend/src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/views/login/index.vue -------------------------------------------------------------------------------- /frontend/src/views/singleAnalysis/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/src/views/singleAnalysis/index.vue -------------------------------------------------------------------------------- /frontend/tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/tests/unit/.eslintrc.js -------------------------------------------------------------------------------- /frontend/tests/unit/components/Breadcrumb.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/tests/unit/components/Breadcrumb.spec.js -------------------------------------------------------------------------------- /frontend/tests/unit/components/Hamburger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/tests/unit/components/Hamburger.spec.js -------------------------------------------------------------------------------- /frontend/tests/unit/components/SvgIcon.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/tests/unit/components/SvgIcon.spec.js -------------------------------------------------------------------------------- /frontend/tests/unit/utils/formatTime.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/tests/unit/utils/formatTime.spec.js -------------------------------------------------------------------------------- /frontend/tests/unit/utils/param2Obj.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/tests/unit/utils/param2Obj.spec.js -------------------------------------------------------------------------------- /frontend/tests/unit/utils/parseTime.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/tests/unit/utils/parseTime.spec.js -------------------------------------------------------------------------------- /frontend/tests/unit/utils/validate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/tests/unit/utils/validate.spec.js -------------------------------------------------------------------------------- /frontend/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/frontend/vue.config.js -------------------------------------------------------------------------------- /项目说明文档.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchhtc123/AttributeLevel-EmotionAnalysis-WebSystem/HEAD/项目说明文档.txt --------------------------------------------------------------------------------