diff --git a/.eslintrc.js b/.eslintrc.js index be2a2b04..3d1b282e 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -12,6 +12,7 @@ module.exports = { rules: { 'no-plusplus': 'off', 'no-bitwise': 'off', + 'no-console': 'off', 'vue/comment-directive': 'off', 'no-param-reassign': 'off', 'func-names': 'off', diff --git a/packages/fes-template/fes.config.js b/packages/fes-template/fes.config.js index 69257038..3d3b2a53 100644 --- a/packages/fes-template/fes.config.js +++ b/packages/fes-template/fes.config.js @@ -24,8 +24,8 @@ module.exports = { }, // 配置角色-路由访问权限,使用FesApp.setRole('unLogin')来修改当前用户的角色,控制路由访问权限 roles: { - unLogin: ['/home'], - admin: ['/list', '*'] + unLogin: ['/'], + admin: ['/dashboard/console', '*'] }, // map map: { @@ -33,6 +33,15 @@ module.exports = { }, // 左侧菜单配置 menu: [ + { + title: '工作台', + subMenu: [ + { + title: '工作台', + path: '/dashboard/console' + } + ] + }, { title: '列表页', subMenu: [ diff --git a/packages/fes-template/package.json b/packages/fes-template/package.json index b6845c9b..eaf17967 100644 --- a/packages/fes-template/package.json +++ b/packages/fes-template/package.json @@ -33,8 +33,10 @@ "csp-html-webpack-plugin": "^4.0.0" }, "dependencies": { + "@antv/data-set": "^0.11.7", + "@antv/g2": "^4.0.15", + "@babel/runtime-corejs3": "^7.11.2", "@webank/fes-core": "^0.2.1", - "@webank/fes-ui": "^0.2.0", - "@babel/runtime-corejs3": "^7.11.2" + "@webank/fes-ui": "^0.2.0" } } diff --git a/packages/fes-template/src/assets/images/favicon.png b/packages/fes-template/src/assets/images/favicon.png new file mode 100644 index 00000000..e8900c6b Binary files /dev/null and b/packages/fes-template/src/assets/images/favicon.png differ diff --git a/packages/fes-template/src/assets/styles/login.scss b/packages/fes-template/src/assets/styles/login.scss deleted file mode 100644 index 3c5a095d..00000000 --- a/packages/fes-template/src/assets/styles/login.scss +++ /dev/null @@ -1,131 +0,0 @@ -.login-panel { - position: absolute; - left: 0; - top: 0; - margin: 0; - right: 0; - width: 100%; - height: 100%; - background-color: $body-background; - background-image: url("../images/bg.png"); - background-position: left bottom; - background-repeat: no-repeat; - background-size: 100% auto; - font-size: 18px; - color: $black-text-color; - } - - .login-panel .login-panel-swap { - position: relative; - width: 945px; - height: 324px; - margin: 10% auto; - border-radius: $border-radius-small; - } - - .login-panel .logo { - display: inline-block; - vertical-align: middle; - width: 400px; - height: 100%; - text-align: center; - .logo-text { - display: inline-block; - vertical-align: middle; - margin-top: 130px; - font-size: 28px; - font-weight: bold; - } - } - - .login-panel .split { - display: inline-block; - background: $border-color-base; - width: 1px; - height: 180px; - vertical-align: middle; - } - - .login-panel .error { - margin-top: 10px; - width: 350px; - color: $error-color; - font-size: 14px; - .ui-icon-exclamation-circle{ - margin-right: 6px; - } - } - - .login-panel .login-form { - position: relative; - display: inline-block; - vertical-align: middle; - padding: 0 75px 0; - height: 270px; - input::-webkit-input-placeholder{ - color: $black-text-color; - } - input::-moz-placeholder { - color: $black-text-color; - } - /* ie */ - input:-ms-input-placeholder { - color: $black-text-color; - } - /* firefox 19+ */ - input:-moz-placeholder { - color: $black-text-color; - } - - input:-webkit-autofill { - -webkit-box-shadow: 0 0 0px 1000px white inset !important; - -webkit-text-fill-color: $black-text-color !important; - } - .line{ - padding-top: 30px; - border-bottom: 1px solid $border-color-split; - } - input[type="text"], - input[type="password"]{ - margin: 0; - width: 350px; - height: 40px; - line-height: 40px; - padding: 0 15px; - vertical-align: middle; - background: 0 0; - outline: 0; - border: none; - font-size: 16px; - color: $black-text-color; - } - button { - margin-top: 10px; - width: 350px; - height: 48px; - border-radius: 4px; - line-height: 46px; - border: none; - outline: 0; - background-color: $primary-color; - color: #ffffff; - cursor: pointer; - text-align: center; - font-size: 18px; - &:hover { - background-color: $selected-color; - } - } - } - -.ie-palceholder::after{ - content: '用户名'; - position: absolute; - left: 88px; - top: 38px; - font-size: 16px; -} -.ie-palceholder-password::after{ - content: '密码'; - top: 110px; -} \ No newline at end of file diff --git a/packages/fes-template/src/assets/styles/main.scss b/packages/fes-template/src/assets/styles/main.scss index bc4b9434..1e8a8d68 100644 --- a/packages/fes-template/src/assets/styles/main.scss +++ b/packages/fes-template/src/assets/styles/main.scss @@ -1,5 +1,4 @@ @import "variables"; -@import "login"; .article { padding: 20px; @@ -57,11 +56,25 @@ margin-left: 16px; } +.mt-16{ + margin-top: 16px; +} + +.pr-16{ + padding-right: 16px; +} + // 修复问题 .ui-modal .ui-modal-dialog{ overflow: visible; } +.query-page .query-page-table .ui-page { + margin: 20px; + text-align: center; + justify-content: center; +} + .page { display: flex; flex-direction: column; @@ -70,7 +83,7 @@ .page-header{ padding: 16px 32px 0; background: #fff; - border-bottom: $border-color-split ; + border-bottom: 1px solid $border-color-split ; .page-header-title{ color: $title-color; font-weight: 500; @@ -86,5 +99,6 @@ min-height: 0; margin: 24px 24px; background: #fff; + border: 1px solid $border-color-split ; } } diff --git a/packages/fes-template/src/components/Card.vue b/packages/fes-template/src/components/Card.vue new file mode 100644 index 00000000..c0b7dfec --- /dev/null +++ b/packages/fes-template/src/components/Card.vue @@ -0,0 +1,54 @@ + + + diff --git a/packages/fes-template/src/components/Chart.vue b/packages/fes-template/src/components/Chart.vue new file mode 100644 index 00000000..b692b3ea --- /dev/null +++ b/packages/fes-template/src/components/Chart.vue @@ -0,0 +1,81 @@ + + + diff --git a/packages/fes-template/src/pages/dashboard/console.vue b/packages/fes-template/src/pages/dashboard/console.vue new file mode 100644 index 00000000..15c14f9a --- /dev/null +++ b/packages/fes-template/src/pages/dashboard/console.vue @@ -0,0 +1,449 @@ + + + diff --git a/packages/fes-template/src/pages/home/index.vue b/packages/fes-template/src/pages/home/index.vue deleted file mode 100644 index d8f4cd1d..00000000 --- a/packages/fes-template/src/pages/home/index.vue +++ /dev/null @@ -1,136 +0,0 @@ - - diff --git a/packages/fes-template/src/pages/index.vue b/packages/fes-template/src/pages/index.vue new file mode 100644 index 00000000..1f88ac44 --- /dev/null +++ b/packages/fes-template/src/pages/index.vue @@ -0,0 +1,241 @@ + + +