feat: Update dependencies "ant-design-vue": "2.0.0-rc.5"

This commit is contained in:
chuzhixin 2020-12-22 13:47:55 +08:00
parent 7596f90220
commit 0a3ec56f39
2 changed files with 15 additions and 11 deletions

View File

@ -13,8 +13,8 @@
"deploy": "start ./deploy.sh" "deploy": "start ./deploy.sh"
}, },
"dependencies": { "dependencies": {
"ant-design-vue": "2.0.0-rc.4", "ant-design-vue": "2.0.0-rc.5",
"axios": "^0.21.0", "axios": "^0.21.1",
"clipboard": "^2.0.6", "clipboard": "^2.0.6",
"core-js": "^3.8.1", "core-js": "^3.8.1",
"dayjs": "^1.9.7", "dayjs": "^1.9.7",
@ -35,9 +35,9 @@
"body-parser": "^1.19.0", "body-parser": "^1.19.0",
"chalk": "^4.1.0", "chalk": "^4.1.0",
"chokidar": "^3.4.3", "chokidar": "^3.4.3",
"eslint": "^7.15.0", "eslint": "^7.16.0",
"eslint-plugin-prettier": "^3.2.0", "eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-vue": "^7.2.0", "eslint-plugin-vue": "^7.3.0",
"filemanager-webpack-plugin": "^3.0.0-beta.0", "filemanager-webpack-plugin": "^3.0.0-beta.0",
"image-webpack-loader": "^7.0.1", "image-webpack-loader": "^7.0.1",
"less": "^4.0.1-alpha.2", "less": "^4.0.1-alpha.2",
@ -47,8 +47,8 @@
"stylelint": "^13.8.0", "stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2", "stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.3.0", "stylelint-config-recess-order": "^2.3.0",
"svg-sprite-loader": "^5.1.1", "svg-sprite-loader": "^5.2.1",
"vab-config": "0.0.7", "vab-config": "0.0.8",
"webpackbar": "^5.0.0-3" "webpackbar": "^5.0.0-3"
}, },
"gitHooks": { "gitHooks": {

View File

@ -84,9 +84,9 @@
mounted() { mounted() {
this.form.username = 'admin' this.form.username = 'admin'
this.form.password = '123456' this.form.password = '123456'
setTimeout(() => { /* setTimeout(() => {
this.handleSubmit() this.handleSubmit()
}, 3000) }, 3000) */
}, },
methods: { methods: {
...mapActions({ ...mapActions({
@ -106,6 +106,7 @@
</script> </script>
<style lang="less"> <style lang="less">
.login-container { .login-container {
width: 100%;
height: 100vh; height: 100vh;
background: url('~@/assets/login_images/login_background.png'); background: url('~@/assets/login_images/login_background.png');
background-size: cover; background-size: cover;
@ -138,12 +139,15 @@
color: rgba(255, 255, 255, 0.856); color: rgba(255, 255, 255, 0.856);
text-align: center; text-align: center;
} }
.ant-col {
width: 100%;
padding: 0 10px 0 10px;
}
.ant-input { .ant-input {
width: 400px;
height: 35px; height: 35px;
} }
.ant-btn { .ant-btn {
width: 365px; width: 100%;
height: 45px; height: 45px;
border-radius: 99px; border-radius: 99px;
} }