Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
buqiyuan committed Jan 23, 2022
1 parent 6309089 commit a1805e8
Show file tree
Hide file tree
Showing 6 changed files with 1,320 additions and 1,475 deletions.
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"test prod gzip": "npx http-server dist --cors --gzip -c-1"
},
"dependencies": {
"@vueuse/core": "^7.5.3",
"ant-design-vue": "3.0.0-beta.4",
"axios": "^0.24.0",
"core-js": "^3.20.2",
"@vueuse/core": "^7.5.4",
"ant-design-vue": "3.0.0-beta.8",
"axios": "^0.25.0",
"core-js": "^3.20.3",
"dayjs": "^1.10.7",
"file-saver": "^2.0.5",
"lodash-es": "^4.17.21",
Expand All @@ -36,39 +36,39 @@
"qs": "^6.10.3",
"socket.io-client": "4.4.1",
"sortablejs": "^1.14.0",
"vue": "^3.2.26",
"vue": "^3.2.29",
"vue-i18n": "^9.2.0-beta.28",
"vue-router": "^4.0.12",
"xlsx": "^0.17.5"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/lodash-es": "^4.17.5",
"@types/node": "^17.0.8",
"@types/node": "^17.0.10",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vue/cli-plugin-babel": "^5.0.0-rc.1",
"@vue/cli-plugin-eslint": "^5.0.0-rc.1",
"@vue/cli-plugin-router": "^5.0.0-rc.1",
"@vue/cli-plugin-typescript": "^5.0.0-rc.1",
"@vue/cli-plugin-vuex": "^5.0.0-rc.1",
"@vue/cli-service": "^5.0.0-rc.1",
"@vue/compiler-sfc": "^3.2.26",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vue/cli-plugin-babel": "^5.0.0-rc.2",
"@vue/cli-plugin-eslint": "^5.0.0-rc.2",
"@vue/cli-plugin-router": "^5.0.0-rc.2",
"@vue/cli-plugin-typescript": "^5.0.0-rc.2",
"@vue/cli-plugin-vuex": "^5.0.0-rc.2",
"@vue/cli-service": "^5.0.0-rc.2",
"@vue/compiler-sfc": "^3.2.29",
"@vue/eslint-config-typescript": "^10.0.0",
"babel-plugin-import": "^1.13.3",
"commitizen": "^4.2.4",
"compression-webpack-plugin": "^9.2.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.6.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.3.0",
"husky": "^7.0.4",
"less": "^4.1.2",
"less-loader": "10.2.0",
"lint-staged": "^12.1.7",
"lint-staged": "^12.3.0",
"path-browserify": "^1.0.1",
"postcss-html": "^1.3.0",
"prettier": "^2.5.1",
Expand All @@ -79,9 +79,9 @@
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"svg-sprite-loader": "^6.0.11",
"typescript": "^4.5.4",
"typescript": "^4.5.5",
"vue-cli-plugin-windicss": "^1.1.3",
"vue-eslint-parser": "^8.0.1"
"vue-eslint-parser": "^8.1.0"
},
"__npminstall_done": false,
"homepage": "[email protected]/vue3-antd-admin",
Expand Down
3 changes: 2 additions & 1 deletion src/components/core/draggable-modal/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@
left: 0 !important;
width: 100% !important;
height: 100% !important;
max-width: 100vw !important;
}
.ant-modal-content {
width: 100% !important;
Expand Down Expand Up @@ -305,7 +306,7 @@
}
}
.ant-modal-content {
// width: ~'v-bind("props.width")px';
/* width: ~'v-bind("props.width")px'; */
display: flex;
flex-direction: column;
width: 100%;
Expand Down
4 changes: 3 additions & 1 deletion src/views/system/permission/menu/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,14 @@
},
});
console.log('sddd', [{ key: -1, name: '一级菜单', children: menuTree.value }]);
formRef.value?.updateSchema([
{
field: 'parentId',
componentProps: {
treeDefaultExpandedKeys: [-1].concat(record?.keyPath || []),
treeData: [{ key: -1, name: '一级菜单', children: menuTree.value }],
treeData: ref([{ id: -1, name: '一级菜单', children: menuTree.value }]),
},
},
]);
Expand Down
4 changes: 2 additions & 2 deletions src/views/system/permission/role/formSchemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const roleSchemas: FormItemSchema<API.CreateRoleParams>[] = [
checkable: true,
vModelKey: 'checkedKeys',
style: {
height: '300px',
height: '350px',
paddingTop: '5px',
overflow: 'auto',
borderRadius: '6px',
Expand All @@ -54,7 +54,7 @@ export const roleSchemas: FormItemSchema<API.CreateRoleParams>[] = [
checkable: true,
vModelKey: 'checkedKeys',
style: {
height: '300px',
height: '350px',
paddingTop: '5px',
overflow: 'auto',
borderRadius: '6px',
Expand Down
2 changes: 1 addition & 1 deletion src/views/system/permission/user/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
treeDefaultExpandedKeys: [-1].concat(record?.keyPath || []),
treeData: [
{
key: -1,
value: -1,
title: '#',
children: state.deptTree,
},
Expand Down
Loading

0 comments on commit a1805e8

Please sign in to comment.