Files
fe-manage/package.json
陈昱达 d911822370 feat(course): 优化课程专业模式表单界面与交互
- 移除表单组件的 size 属性统一使用默认尺寸
- 引入 SvgIcon 组件并支持自动导入 svg 图标
- 添加 svg-sprite-loader 依赖用于 svg 图标处理
- 重构课程标签组件 courseTag 移除 size 属性
- 优化专业模式表单布局结构提升视觉效果
- 添加目标人群输入框提示信息 tooltip
- 调整表单元素宽度统一为 95% 提升一致性
- 更新按钮样式统一使用圆角和主题色
- 优化单选框样式显示勾选符号
- 调整标签颜色提升可读性
- 配置 webpack 支持 svg sprite 加载方式
- 添加 tishi.svg 图标文件用于提示信息展示
2025-12-11 15:08:15 +08:00

88 lines
2.3 KiB
JSON

{
"name": "fe_manage",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:boe": "vue-cli-service build --mode boe",
"build:release": "vue-cli-service build --mode release",
"build:prod": "vue-cli-service build --mode prod",
"build:test": "vue-cli-service build --mode test",
"build:alpine": "vue-cli-service build --mode alpine"
},
"dependencies": {
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^5.1.12",
"ant-design-vue": "^3.2.12",
"axios": "^1.1.3",
"babel-eslint": "^10.1.0",
"core-js": "^3.8.3",
"cropperjs": "^2.0.0-rc.2",
"dayjs": "^1.11.6",
"echarts": "^5.4.1",
"element-plus": "^2.2.17",
"element-resize-detector": "^1.2.4",
"exceljs": "^4.3.0",
"html2canvas": "^1.4.1",
"jquery": "^3.6.1",
"json-bigint": "^1.0.0",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"moment": "^2.29.4",
"pdf-vue3": "^1.0.12",
"qrcode.vue": "^3.3.3",
"qs": "^6.11.0",
"quill": "^2.0.3",
"quill-blot-formatter": "^1.0.5",
"quill-image-drop-module": "^1.0.3",
"quill-image-resize-module": "^3.0.0",
"snowflake-id-js": "^1.0.1",
"sortablejs": "^1.15.0",
"vue": "^3.2.13",
"vue-cookies": "^1.8.2",
"vue-router": "^4.0.3",
"vuedraggable": "^4.1.0",
"vuex": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"svg-sprite-loader": "^6.0.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"vue/setup-compiler-macros": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {
"no-console": "off",
"no-debugger": "off",
"no-mixed-spaces-and-tabs": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}