ylyx-cli 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/ylyx.js +168 -168
- package/lib/config.js +283 -299
- package/lib/deploy.js +529 -495
- package/lib/generator.js +192 -192
- package/lib/index.js +113 -113
- package/lib/interactive.js +87 -87
- package/lib/remote.js +179 -179
- package/lib/template.js +174 -174
- package/lib/utils.js +148 -148
- package/package.json +5 -5
- package/templates/react-app/files/README.md +23 -23
- package/templates/react-app/files/package.json +28 -28
- package/templates/react-app/files/public/index.html +11 -11
- package/templates/react-app/files/src/App.css +15 -15
- package/templates/react-app/files/src/App.js +15 -15
- package/templates/react-app/files/src/index.css +10 -10
- package/templates/react-app/files/src/index.js +11 -11
- package/templates/react-app/template.json +11 -11
- package/templates/react-component/files/Component.module.css +5 -5
- package/templates/react-component/files/Component.tsx +31 -31
- package/templates/react-component/files/index.ts +2 -2
- package/templates/react-component/template.json +48 -48
- package/templates/vue-app/files/.editorconfig +14 -14
- package/templates/vue-app/files/.env.development +21 -21
- package/templates/vue-app/files/.env.production +18 -18
- package/templates/vue-app/files/.eslintignore +5 -5
- package/templates/vue-app/files/.eslintrc.js +267 -267
- package/templates/vue-app/files/.prettierignore +11 -11
- package/templates/vue-app/files/.travis.yml +5 -5
- package/templates/vue-app/files/.vscode/extensions.json +7 -7
- package/templates/vue-app/files/.vscode/settings.json +39 -39
- package/templates/vue-app/files/LICENSE +191 -191
- package/templates/vue-app/files/README.md +87 -87
- package/templates/vue-app/files/babel.config.js +11 -11
- package/templates/vue-app/files/jest.config.js +24 -24
- package/templates/vue-app/files/package.json +136 -136
- package/templates/vue-app/files/plopfile.js +7 -7
- package/templates/vue-app/files/postcss.config.js +5 -5
- package/templates/vue-app/files/public/default.js +25 -25
- package/templates/vue-app/files/public/index.html +26 -26
- package/templates/vue-app/files/src/App.vue +54 -54
- package/templates/vue-app/files/src/api/bigDataV/index.js +198 -198
- package/templates/vue-app/files/src/api/data.js +42 -42
- package/templates/vue-app/files/src/api/dataArchive/index.js +186 -186
- package/templates/vue-app/files/src/api/generator/genConfig.js +16 -16
- package/templates/vue-app/files/src/api/generator/generator.js +32 -32
- package/templates/vue-app/files/src/api/indexManagement/index.js +39 -39
- package/templates/vue-app/files/src/api/institutionMonitor/index.js +396 -396
- package/templates/vue-app/files/src/api/institutionSet/index.js +120 -120
- package/templates/vue-app/files/src/api/login.js +44 -44
- package/templates/vue-app/files/src/api/selfStatistics/index.js +50 -50
- package/templates/vue-app/files/src/api/system/code.js +15 -15
- package/templates/vue-app/files/src/api/system/dict.js +34 -34
- package/templates/vue-app/files/src/api/system/dictDetail.js +52 -52
- package/templates/vue-app/files/src/api/system/equipment.js +35 -35
- package/templates/vue-app/files/src/api/system/examManage.js +49 -49
- package/templates/vue-app/files/src/api/system/examProject.js +48 -48
- package/templates/vue-app/files/src/api/system/hosModel.js +35 -35
- package/templates/vue-app/files/src/api/system/hospital.js +88 -88
- package/templates/vue-app/files/src/api/system/job.js +40 -40
- package/templates/vue-app/files/src/api/system/menu.js +67 -67
- package/templates/vue-app/files/src/api/system/model.js +42 -42
- package/templates/vue-app/files/src/api/system/risConfig.js +9 -9
- package/templates/vue-app/files/src/api/system/role.js +64 -64
- package/templates/vue-app/files/src/api/system/sysSet.js +19 -19
- package/templates/vue-app/files/src/api/system/timing.js +41 -41
- package/templates/vue-app/files/src/api/system/user.js +121 -121
- package/templates/vue-app/files/src/api/tools/alipay.js +25 -25
- package/templates/vue-app/files/src/api/tools/email.js +24 -24
- package/templates/vue-app/files/src/api/tools/localStorage.js +27 -27
- package/templates/vue-app/files/src/api/tools/qiniu.js +40 -40
- package/templates/vue-app/files/src/assets/css/font-awesome.css +2342 -2342
- package/templates/vue-app/files/src/assets/css/font-awesome.min.css +2336 -2336
- package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.svg +2671 -2671
- package/templates/vue-app/files/src/assets/icons/index.js +9 -9
- package/templates/vue-app/files/src/assets/icons/svg/hospital.svg +1 -1
- package/templates/vue-app/files/src/assets/icons/svg/hospital1.svg +1 -1
- package/templates/vue-app/files/src/assets/icons/svg/loginOne.svg +35 -35
- package/templates/vue-app/files/src/assets/icons/svg/loginOneWhite.svg +19 -19
- package/templates/vue-app/files/src/assets/icons/svg/loginOr.svg +93 -93
- package/templates/vue-app/files/src/assets/icons/svg/loginUp.svg +96 -96
- package/templates/vue-app/files/src/assets/icons/svg/monitor.svg +1 -1
- package/templates/vue-app/files/src/assets/icons/svg/offline.svg +1 -1
- package/templates/vue-app/files/src/assets/icons/svg/online.svg +1 -1
- package/templates/vue-app/files/src/assets/icons/svg/system.svg +1 -1
- package/templates/vue-app/files/src/assets/icons/svgo.yml +21 -21
- package/templates/vue-app/files/src/assets/styles/btn.scss +103 -103
- package/templates/vue-app/files/src/assets/styles/eladmin.scss +124 -124
- package/templates/vue-app/files/src/assets/styles/element-ui.scss +217 -217
- package/templates/vue-app/files/src/assets/styles/element-variables.scss +31 -31
- package/templates/vue-app/files/src/assets/styles/global.scss +73 -73
- package/templates/vue-app/files/src/assets/styles/index.scss +220 -220
- package/templates/vue-app/files/src/assets/styles/mixin.scss +60 -60
- package/templates/vue-app/files/src/assets/styles/publicStyle.scss +224 -224
- package/templates/vue-app/files/src/assets/styles/sidebar.scss +239 -239
- package/templates/vue-app/files/src/assets/styles/transition.scss +48 -48
- package/templates/vue-app/files/src/assets/styles/variables.scss +44 -44
- package/templates/vue-app/files/src/common/flexible.js +145 -145
- package/templates/vue-app/files/src/components/Breadcrumb/index.vue +87 -87
- package/templates/vue-app/files/src/components/Crud/CRUD.operation.vue +248 -248
- package/templates/vue-app/files/src/components/Crud/Pagination.vue +20 -20
- package/templates/vue-app/files/src/components/Crud/RR.operation.vue +39 -39
- package/templates/vue-app/files/src/components/Crud/UD.operation.vue +106 -106
- package/templates/vue-app/files/src/components/Crud/crud.js +907 -907
- package/templates/vue-app/files/src/components/Crud/user/UR.operation.vue +154 -154
- package/templates/vue-app/files/src/components/DateRangePicker/index.vue +42 -42
- package/templates/vue-app/files/src/components/DateRangePickerProhibitNext/index.vue +42 -42
- package/templates/vue-app/files/src/components/DateRangePickerProhibitTodayNext/index.vue +48 -48
- package/templates/vue-app/files/src/components/Dict/Dict.js +31 -31
- package/templates/vue-app/files/src/components/Dict/index.js +29 -29
- package/templates/vue-app/files/src/components/Doc/index.vue +16 -16
- package/templates/vue-app/files/src/components/Echarts/BarChart.vue +115 -115
- package/templates/vue-app/files/src/components/Echarts/Category.vue +768 -768
- package/templates/vue-app/files/src/components/Echarts/Funnel.vue +120 -120
- package/templates/vue-app/files/src/components/Echarts/Gauge.vue +74 -74
- package/templates/vue-app/files/src/components/Echarts/Graph.vue +101 -101
- package/templates/vue-app/files/src/components/Echarts/HeatMap.vue +301 -301
- package/templates/vue-app/files/src/components/Echarts/Line3D.vue +110 -110
- package/templates/vue-app/files/src/components/Echarts/PieChart.vue +84 -84
- package/templates/vue-app/files/src/components/Echarts/Point.vue +161 -161
- package/templates/vue-app/files/src/components/Echarts/RadarChart.vue +123 -123
- package/templates/vue-app/files/src/components/Echarts/Rich.vue +160 -160
- package/templates/vue-app/files/src/components/Echarts/Sankey.vue +114 -114
- package/templates/vue-app/files/src/components/Echarts/Scatter.vue +192 -192
- package/templates/vue-app/files/src/components/Echarts/Sunburst.vue +127 -127
- package/templates/vue-app/files/src/components/Echarts/ThemeRiver.vue +233 -233
- package/templates/vue-app/files/src/components/Echarts/WordCloud.vue +201 -201
- package/templates/vue-app/files/src/components/GithubCorner/index.vue +55 -55
- package/templates/vue-app/files/src/components/Hamburger/index.vue +44 -44
- package/templates/vue-app/files/src/components/HeaderSearch/index.vue +196 -196
- package/templates/vue-app/files/src/components/IconSelect/index.vue +74 -74
- package/templates/vue-app/files/src/components/IconSelect/requireIcons.js +10 -10
- package/templates/vue-app/files/src/components/Iframe/index.vue +30 -30
- package/templates/vue-app/files/src/components/JavaEdit/index.vue +78 -78
- package/templates/vue-app/files/src/components/Pagination/index.vue +100 -100
- package/templates/vue-app/files/src/components/PanThumb/index.vue +149 -149
- package/templates/vue-app/files/src/components/ParentView/index.vue +3 -3
- package/templates/vue-app/files/src/components/Permission/index.js +13 -13
- package/templates/vue-app/files/src/components/Permission/permission.js +21 -21
- package/templates/vue-app/files/src/components/RightPanel/index.vue +149 -149
- package/templates/vue-app/files/src/components/Screenfull/index.vue +60 -60
- package/templates/vue-app/files/src/components/SizeSelect/index.vue +60 -60
- package/templates/vue-app/files/src/components/SvgIcon/index.vue +66 -66
- package/templates/vue-app/files/src/components/ThemePicker/index.vue +177 -177
- package/templates/vue-app/files/src/components/UploadExcel/index.vue +149 -149
- package/templates/vue-app/files/src/components/WaterMark/setWaterMark.js +68 -68
- package/templates/vue-app/files/src/components/WaterMark/waterMark.vue +69 -69
- package/templates/vue-app/files/src/components/Xgplayer/index.vue +49 -49
- package/templates/vue-app/files/src/components/YamlEdit/index.vue +81 -81
- package/templates/vue-app/files/src/layout/components/AppMain.vue +67 -67
- package/templates/vue-app/files/src/layout/components/Navbar.vue +209 -209
- package/templates/vue-app/files/src/layout/components/Settings/index.vue +125 -125
- package/templates/vue-app/files/src/layout/components/Sidebar/FixiOSBug.js +26 -26
- package/templates/vue-app/files/src/layout/components/Sidebar/Item.vue +29 -29
- package/templates/vue-app/files/src/layout/components/Sidebar/Link.vue +35 -35
- package/templates/vue-app/files/src/layout/components/Sidebar/Logo.vue +93 -93
- package/templates/vue-app/files/src/layout/components/Sidebar/SidebarItem.vue +104 -104
- package/templates/vue-app/files/src/layout/components/Sidebar/index.vue +79 -79
- package/templates/vue-app/files/src/layout/components/TagsView/ScrollPane.vue +90 -90
- package/templates/vue-app/files/src/layout/components/TagsView/index.vue +299 -299
- package/templates/vue-app/files/src/layout/components/index.js +5 -5
- package/templates/vue-app/files/src/layout/index.vue +119 -119
- package/templates/vue-app/files/src/layout/mixin/ResizeHandler.js +45 -45
- package/templates/vue-app/files/src/main.js +89 -89
- package/templates/vue-app/files/src/mixins/crud.js +348 -348
- package/templates/vue-app/files/src/router/index.js +156 -156
- package/templates/vue-app/files/src/router/routers.js +203 -203
- package/templates/vue-app/files/src/settings.js +57 -57
- package/templates/vue-app/files/src/store/getters.js +29 -29
- package/templates/vue-app/files/src/store/index.js +25 -25
- package/templates/vue-app/files/src/store/modules/api.js +33 -33
- package/templates/vue-app/files/src/store/modules/app.js +55 -55
- package/templates/vue-app/files/src/store/modules/permission.js +79 -79
- package/templates/vue-app/files/src/store/modules/register.js +17 -17
- package/templates/vue-app/files/src/store/modules/settings.js +46 -46
- package/templates/vue-app/files/src/store/modules/tagsView.js +168 -168
- package/templates/vue-app/files/src/store/modules/user.js +119 -119
- package/templates/vue-app/files/src/utils/auth.js +18 -18
- package/templates/vue-app/files/src/utils/base64ToFile.js +27 -27
- package/templates/vue-app/files/src/utils/clipboard.js +36 -36
- package/templates/vue-app/files/src/utils/datetime.js +289 -289
- package/templates/vue-app/files/src/utils/getBlobFile.js +10 -10
- package/templates/vue-app/files/src/utils/getTime.js +29 -29
- package/templates/vue-app/files/src/utils/index.js +520 -520
- package/templates/vue-app/files/src/utils/permission.js +29 -29
- package/templates/vue-app/files/src/utils/pinyin.js +450 -450
- package/templates/vue-app/files/src/utils/request.js +139 -139
- package/templates/vue-app/files/src/utils/rsaEncrypt.js +37 -37
- package/templates/vue-app/files/src/utils/shortcuts.js +210 -210
- package/templates/vue-app/files/src/utils/upload.js +12 -12
- package/templates/vue-app/files/src/utils/validate.js +262 -262
- package/templates/vue-app/files/src/views/components/Echarts.vue +124 -124
- package/templates/vue-app/files/src/views/components/Editor.vue +75 -75
- package/templates/vue-app/files/src/views/components/MarkDown.vue +44 -44
- package/templates/vue-app/files/src/views/components/UVideo.vue +37 -37
- package/templates/vue-app/files/src/views/components/YamlEdit.vue +206 -206
- package/templates/vue-app/files/src/views/components/camera/camera.vue +115 -115
- package/templates/vue-app/files/src/views/components/camera/cameraTest.vue +158 -158
- package/templates/vue-app/files/src/views/components/excel/upload-excel.vue +41 -41
- package/templates/vue-app/files/src/views/components/icons/element-icons.js +74 -74
- package/templates/vue-app/files/src/views/components/icons/index.vue +106 -106
- package/templates/vue-app/files/src/views/components/icons/svg-icons.js +10 -10
- package/templates/vue-app/files/src/views/components/scroll/index.vue +107 -107
- package/templates/vue-app/files/src/views/components/scrollFull/index.vue +99 -99
- package/templates/vue-app/files/src/views/dashboard/LineChart.vue +138 -138
- package/templates/vue-app/files/src/views/dashboard/PanelGroup.vue +173 -173
- package/templates/vue-app/files/src/views/dashboard/mixins/resize.js +57 -57
- package/templates/vue-app/files/src/views/dataArchive/delTable.vue +354 -354
- package/templates/vue-app/files/src/views/dataArchive/exportDetail.vue +121 -121
- package/templates/vue-app/files/src/views/dataArchive/exportList.vue +160 -160
- package/templates/vue-app/files/src/views/dataArchive/index.vue +2104 -2104
- package/templates/vue-app/files/src/views/features/401.vue +83 -83
- package/templates/vue-app/files/src/views/features/404.vue +226 -226
- package/templates/vue-app/files/src/views/features/redirect.vue +12 -12
- package/templates/vue-app/files/src/views/generator/config.vue +348 -348
- package/templates/vue-app/files/src/views/generator/index.vue +143 -143
- package/templates/vue-app/files/src/views/generator/preview.vue +39 -39
- package/templates/vue-app/files/src/views/home.vue +80 -80
- package/templates/vue-app/files/src/views/indexManagement/index.vue +422 -422
- package/templates/vue-app/files/src/views/indexManagement/other.vue +286 -286
- package/templates/vue-app/files/src/views/institutionMonitor/components/LineChart.vue +191 -191
- package/templates/vue-app/files/src/views/institutionMonitor/index.scss +339 -339
- package/templates/vue-app/files/src/views/institutionMonitor/index.vue +1385 -1385
- package/templates/vue-app/files/src/views/institutionMonitor/mixins/resize.js +57 -57
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/checkProjectCode.vue +267 -267
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/imageAbnormalMonitor.vue +361 -361
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/index.vue +686 -686
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/leakageAnomaly.vue +270 -270
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/moveMonitore.vue +114 -114
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/qualityMonitore.vue +338 -338
- package/templates/vue-app/files/src/views/institutionSet/cloudSet.vue +534 -534
- package/templates/vue-app/files/src/views/institutionSet/index.vue +2550 -2550
- package/templates/vue-app/files/src/views/login.vue +243 -243
- package/templates/vue-app/files/src/views/qualityLogin.vue +280 -280
- package/templates/vue-app/files/src/views/selfStatistics/components/LineChart.vue +296 -296
- package/templates/vue-app/files/src/views/selfStatistics/hospitalDetail/index.vue +533 -533
- package/templates/vue-app/files/src/views/selfStatistics/index.scss +447 -447
- package/templates/vue-app/files/src/views/selfStatistics/index.vue +903 -903
- package/templates/vue-app/files/src/views/selfStatistics/mixins/resize.js +57 -57
- package/templates/vue-app/files/src/views/selfStatistics/monitorDetail/index.vue +285 -285
- package/templates/vue-app/files/src/views/selfStatistics/offlineDetail/index.vue +104 -104
- package/templates/vue-app/files/src/views/selfStatistics/selfActiveDetail/index.vue +104 -104
- package/templates/vue-app/files/src/views/selfStatistics/selfMonitorDetail/index.vue +420 -420
- package/templates/vue-app/files/src/views/selfStatistics/setWaterMark/setWaterMark.js +68 -68
- package/templates/vue-app/files/src/views/selfStatistics/setWaterMark/waterMark.vue +69 -69
- package/templates/vue-app/files/src/views/system/dept/index.vue +144 -144
- package/templates/vue-app/files/src/views/system/dict/dictDetail.vue +146 -146
- package/templates/vue-app/files/src/views/system/dict/index.vue +159 -159
- package/templates/vue-app/files/src/views/system/examModality/index.vue +174 -174
- package/templates/vue-app/files/src/views/system/examPart/index.vue +184 -184
- package/templates/vue-app/files/src/views/system/examProject/index.vue +321 -321
- package/templates/vue-app/files/src/views/system/examine/index.vue +66 -66
- package/templates/vue-app/files/src/views/system/job/index.vue +119 -119
- package/templates/vue-app/files/src/views/system/job/module/form.vue +72 -72
- package/templates/vue-app/files/src/views/system/job/module/header.vue +48 -48
- package/templates/vue-app/files/src/views/system/menu/index.vue +327 -327
- package/templates/vue-app/files/src/views/system/model/index.vue +285 -285
- package/templates/vue-app/files/src/views/system/role/index.vue +434 -434
- package/templates/vue-app/files/src/views/system/sysSet/index.vue +84 -84
- package/templates/vue-app/files/src/views/system/timing/index.vue +289 -289
- package/templates/vue-app/files/src/views/system/timing/log.vue +143 -143
- package/templates/vue-app/files/src/views/system/user/admin.vue +414 -414
- package/templates/vue-app/files/src/views/system/user/center/updateEmail.vue +146 -146
- package/templates/vue-app/files/src/views/system/user/center/updatePass.vue +168 -168
- package/templates/vue-app/files/src/views/system/user/center.vue +140 -140
- package/templates/vue-app/files/src/views/system/user/index.vue +972 -972
- package/templates/vue-app/files/src/views/systemSet/role/index.vue +314 -314
- package/templates/vue-app/files/src/views/systemSet/user/admin.vue +414 -414
- package/templates/vue-app/files/src/views/systemSet/user/center/updateEmail.vue +146 -146
- package/templates/vue-app/files/src/views/systemSet/user/center/updatePass.vue +115 -115
- package/templates/vue-app/files/src/views/systemSet/user/center.vue +351 -351
- package/templates/vue-app/files/src/views/systemSet/user/index.vue +928 -928
- package/templates/vue-app/files/src/views/tools/aliPay/config.vue +102 -102
- package/templates/vue-app/files/src/views/tools/aliPay/index.vue +48 -48
- package/templates/vue-app/files/src/views/tools/aliPay/toPay.vue +91 -91
- package/templates/vue-app/files/src/views/tools/email/config.vue +91 -91
- package/templates/vue-app/files/src/views/tools/email/index.vue +42 -42
- package/templates/vue-app/files/src/views/tools/email/send.vue +159 -159
- package/templates/vue-app/files/src/views/tools/storage/index.vue +35 -35
- package/templates/vue-app/files/src/views/tools/storage/local/index.vue +207 -207
- package/templates/vue-app/files/src/views/tools/storage/qiniu/form.vue +108 -108
- package/templates/vue-app/files/src/views/tools/storage/qiniu/index.vue +241 -241
- package/templates/vue-app/files/src/views/tools/swagger/index.vue +14 -14
- package/templates/vue-app/files/vue.config.js +173 -173
- package/templates/vue-app/template.json +29 -29
|
@@ -1,280 +1,280 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="login" :style="'background-image:url(' + Background + ');'">
|
|
3
|
-
<div class="app-login">
|
|
4
|
-
<p class="login-title">
|
|
5
|
-
<!-- <img :src="logoUrl" width="25" /> -->
|
|
6
|
-
<svg-icon icon-class="loginOneWhite" class="loginSvg" />
|
|
7
|
-
<span>安徽省影像云医学影像质控系统</span>
|
|
8
|
-
</p>
|
|
9
|
-
<div class="enter" :style="'background-image:url(' + logintitle + ');'">
|
|
10
|
-
<p><em></em> <span>登 录</span> <em></em></p>
|
|
11
|
-
<p>LOGIN</p>
|
|
12
|
-
</div>
|
|
13
|
-
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="loginForm">
|
|
14
|
-
<el-form-item prop="username">
|
|
15
|
-
<el-input v-model="loginForm.username" type="text" auto-complete="off" placeholder="账号">
|
|
16
|
-
<svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />
|
|
17
|
-
</el-input>
|
|
18
|
-
</el-form-item>
|
|
19
|
-
<el-form-item prop="password">
|
|
20
|
-
<el-input
|
|
21
|
-
v-model="loginForm.password"
|
|
22
|
-
type="password"
|
|
23
|
-
auto-complete="off"
|
|
24
|
-
placeholder="密码">
|
|
25
|
-
<svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon" />
|
|
26
|
-
</el-input>
|
|
27
|
-
</el-form-item>
|
|
28
|
-
<el-form-item prop="code">
|
|
29
|
-
<el-row :gutter="15">
|
|
30
|
-
<el-col :span="15">
|
|
31
|
-
<el-input
|
|
32
|
-
v-model="loginForm.code"
|
|
33
|
-
type="text"
|
|
34
|
-
auto-complete="off"
|
|
35
|
-
placeholder="请输入验证码"
|
|
36
|
-
@keyup.enter.native="handleLogin">
|
|
37
|
-
<i
|
|
38
|
-
slot="prefix"
|
|
39
|
-
class="el-icon-key"
|
|
40
|
-
style="font-szie: 16px; font-weight: 700; color: #c0c4cc"></i>
|
|
41
|
-
</el-input>
|
|
42
|
-
</el-col>
|
|
43
|
-
<el-col :span="9" style="height: 32px">
|
|
44
|
-
<el-image @click="getCodeImg" style="width: 100%; height: 32px" :src="base64Code">
|
|
45
|
-
</el-image>
|
|
46
|
-
</el-col>
|
|
47
|
-
</el-row>
|
|
48
|
-
</el-form-item>
|
|
49
|
-
<el-form-item style="width: 100%">
|
|
50
|
-
<el-button
|
|
51
|
-
:loading="loading"
|
|
52
|
-
size="medium"
|
|
53
|
-
type="primary"
|
|
54
|
-
style="width: 100%"
|
|
55
|
-
@click.native.prevent="handleLogin">
|
|
56
|
-
<span v-if="!loading">登 录</span>
|
|
57
|
-
<span v-else>登 录 中...</span>
|
|
58
|
-
</el-button>
|
|
59
|
-
</el-form-item>
|
|
60
|
-
</el-form>
|
|
61
|
-
|
|
62
|
-
<p class="jianli">建立影像专科医联体·助力安徽影像云建设</p>
|
|
63
|
-
</div>
|
|
64
|
-
<!-- 底部 -->
|
|
65
|
-
<div id="el-login-footer">
|
|
66
|
-
<p v-html="$store.state.settings.footerTxt" />
|
|
67
|
-
<p>
|
|
68
|
-
<span v-html="$store.state.settings.caseNumber" style="padding-right: 15px"></span>
|
|
69
|
-
<img :src="gongan" width="12" />
|
|
70
|
-
<span v-html="$store.state.settings.gonganNumber"></span>
|
|
71
|
-
</p>
|
|
72
|
-
</div>
|
|
73
|
-
</div>
|
|
74
|
-
</template>
|
|
75
|
-
|
|
76
|
-
<script>
|
|
77
|
-
import { encrypt } from '@/utils/rsaEncrypt';
|
|
78
|
-
import Cookies from 'js-cookie';
|
|
79
|
-
import Background from '@/assets/images/qualityBg.jpg';
|
|
80
|
-
import logoUrl from '@/assets/images/logo.png';
|
|
81
|
-
import gongan from '@/assets/images/gongan.png';
|
|
82
|
-
import logintitle from '@/assets/images/logintitle.jpg';
|
|
83
|
-
|
|
84
|
-
import { getCodeImg } from '@/api/login';
|
|
85
|
-
|
|
86
|
-
import { mapGetters } from 'vuex';
|
|
87
|
-
export default {
|
|
88
|
-
name: 'qualityLogin',
|
|
89
|
-
data() {
|
|
90
|
-
return {
|
|
91
|
-
Background,
|
|
92
|
-
logoUrl,
|
|
93
|
-
gongan,
|
|
94
|
-
logintitle,
|
|
95
|
-
cookiePass: '',
|
|
96
|
-
loginForm: {
|
|
97
|
-
username: '',
|
|
98
|
-
password: '',
|
|
99
|
-
uuid: '',
|
|
100
|
-
code: '',
|
|
101
|
-
},
|
|
102
|
-
loginRules: {
|
|
103
|
-
username: [{ required: true, trigger: 'blur', message: '用户名不能为空' }],
|
|
104
|
-
password: [{ required: true, trigger: 'blur', message: '密码不能为空' }],
|
|
105
|
-
code: [{ required: true, trigger: 'blur', message: '验证码不能为空' }],
|
|
106
|
-
},
|
|
107
|
-
loading: false,
|
|
108
|
-
redirect: undefined,
|
|
109
|
-
base64Code: '',
|
|
110
|
-
};
|
|
111
|
-
},
|
|
112
|
-
watch: {
|
|
113
|
-
$route: {
|
|
114
|
-
handler: function (route) {
|
|
115
|
-
this.redirect = route.query && route.query.redirect;
|
|
116
|
-
},
|
|
117
|
-
immediate: true,
|
|
118
|
-
},
|
|
119
|
-
},
|
|
120
|
-
computed: {
|
|
121
|
-
...mapGetters(['sidebarRouters', 'sidebar']),
|
|
122
|
-
routes() {
|
|
123
|
-
return this.$store.state.permission.routers;
|
|
124
|
-
},
|
|
125
|
-
user() {
|
|
126
|
-
return this.$store.state.user.user;
|
|
127
|
-
},
|
|
128
|
-
},
|
|
129
|
-
created() {
|
|
130
|
-
// 获取用户名密码等Cookie
|
|
131
|
-
this.getCookie();
|
|
132
|
-
// token 过期提示
|
|
133
|
-
this.point();
|
|
134
|
-
// 验证码
|
|
135
|
-
this.getCodeImg();
|
|
136
|
-
},
|
|
137
|
-
methods: {
|
|
138
|
-
getCodeImg() {
|
|
139
|
-
getCodeImg()
|
|
140
|
-
.then(res => {
|
|
141
|
-
this.base64Code = res.img;
|
|
142
|
-
this.loginForm.uuid = res.uuid;
|
|
143
|
-
})
|
|
144
|
-
.catch(res => {
|
|
145
|
-
console.log(res);
|
|
146
|
-
});
|
|
147
|
-
},
|
|
148
|
-
getCookie() {
|
|
149
|
-
const username = Cookies.get('username');
|
|
150
|
-
let password = Cookies.get('password');
|
|
151
|
-
// 保存cookie里面的加密后的密码
|
|
152
|
-
this.cookiePass = password === undefined ? '' : password;
|
|
153
|
-
password = password === undefined ? this.loginForm.password : password;
|
|
154
|
-
this.loginForm = {
|
|
155
|
-
username: username === undefined ? this.loginForm.username : username,
|
|
156
|
-
password: password,
|
|
157
|
-
};
|
|
158
|
-
},
|
|
159
|
-
handleLogin() {
|
|
160
|
-
this.$refs.loginForm.validate(valid => {
|
|
161
|
-
const user = {
|
|
162
|
-
username: this.loginForm.username,
|
|
163
|
-
password: this.loginForm.password,
|
|
164
|
-
uuid: this.loginForm.uuid,
|
|
165
|
-
code: this.loginForm.code,
|
|
166
|
-
};
|
|
167
|
-
if (user.password !== this.cookiePass) {
|
|
168
|
-
user.password = encrypt(user.password);
|
|
169
|
-
}
|
|
170
|
-
if (valid) {
|
|
171
|
-
this.loading = true;
|
|
172
|
-
this.$store
|
|
173
|
-
.dispatch('Login', user)
|
|
174
|
-
.then(() => {
|
|
175
|
-
this.loading = false;
|
|
176
|
-
console.log(this.user, 'user');
|
|
177
|
-
sessionStorage.setItem('key', 1);
|
|
178
|
-
// this.$router.push({ path: this.redirect || '/' })
|
|
179
|
-
this.$router.push({
|
|
180
|
-
path:
|
|
181
|
-
this.redirect || this.user.defaultHomePage !== undefined
|
|
182
|
-
? this.user.defaultHomePage
|
|
183
|
-
: '/',
|
|
184
|
-
});
|
|
185
|
-
})
|
|
186
|
-
.catch(() => {
|
|
187
|
-
this.loading = false;
|
|
188
|
-
this.getCodeImg();
|
|
189
|
-
this.loginForm.code = '';
|
|
190
|
-
});
|
|
191
|
-
if (this.routes) console.log(this.routes, 'permission_routers');
|
|
192
|
-
} else {
|
|
193
|
-
return false;
|
|
194
|
-
}
|
|
195
|
-
});
|
|
196
|
-
},
|
|
197
|
-
point() {
|
|
198
|
-
const point = Cookies.get('point') !== undefined;
|
|
199
|
-
if (point) {
|
|
200
|
-
this.$notify({
|
|
201
|
-
title: '提示',
|
|
202
|
-
message: '当前登录状态已过期,请重新登录!',
|
|
203
|
-
type: 'warning',
|
|
204
|
-
duration: 5000,
|
|
205
|
-
});
|
|
206
|
-
Cookies.remove('point');
|
|
207
|
-
}
|
|
208
|
-
},
|
|
209
|
-
},
|
|
210
|
-
};
|
|
211
|
-
</script>
|
|
212
|
-
|
|
213
|
-
<style rel="stylesheet/scss" lang="scss">
|
|
214
|
-
.login {
|
|
215
|
-
justify-content: center;
|
|
216
|
-
align-items: center;
|
|
217
|
-
display: flex;
|
|
218
|
-
height: 100%;
|
|
219
|
-
background-size: cover;
|
|
220
|
-
.app-login {
|
|
221
|
-
margin: 0 auto;
|
|
222
|
-
width: 500px;
|
|
223
|
-
text-align: center;
|
|
224
|
-
padding: 45px 35px;
|
|
225
|
-
height: calc(100% - 20vh);
|
|
226
|
-
.login-title {
|
|
227
|
-
text-align: center;
|
|
228
|
-
color: #fff;
|
|
229
|
-
letter-spacing: 1px;
|
|
230
|
-
font-size: 20px;
|
|
231
|
-
font-weight: bold;
|
|
232
|
-
.loginSvg {
|
|
233
|
-
position: relative;
|
|
234
|
-
top: 3px;
|
|
235
|
-
font-size: 36px;
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
.enter {
|
|
239
|
-
margin-top: 45px;
|
|
240
|
-
height: 95px;
|
|
241
|
-
border-top-left-radius: 5px;
|
|
242
|
-
border-top-right-radius: 5px;
|
|
243
|
-
p {
|
|
244
|
-
margin: 0;
|
|
245
|
-
font-size: 10px;
|
|
246
|
-
padding-top: 15px;
|
|
247
|
-
color: #999;
|
|
248
|
-
em {
|
|
249
|
-
display: inline-block;
|
|
250
|
-
border: 1px solid #dddddd;
|
|
251
|
-
width: 120px;
|
|
252
|
-
}
|
|
253
|
-
span {
|
|
254
|
-
display: inline-block;
|
|
255
|
-
font-size: 17px;
|
|
256
|
-
position: relative;
|
|
257
|
-
top: 7px;
|
|
258
|
-
padding: 0 15px;
|
|
259
|
-
color: #333;
|
|
260
|
-
}
|
|
261
|
-
&:first-child {
|
|
262
|
-
padding-top: 25px;
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
.loginForm {
|
|
267
|
-
background: #fff;
|
|
268
|
-
padding: 45px 55px;
|
|
269
|
-
border-bottom-left-radius: 5px;
|
|
270
|
-
border-bottom-right-radius: 5px;
|
|
271
|
-
}
|
|
272
|
-
.jianli {
|
|
273
|
-
color: #fff;
|
|
274
|
-
font-size: 17px;
|
|
275
|
-
letter-spacing: 2px;
|
|
276
|
-
padding-top: 35px;
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="login" :style="'background-image:url(' + Background + ');'">
|
|
3
|
+
<div class="app-login">
|
|
4
|
+
<p class="login-title">
|
|
5
|
+
<!-- <img :src="logoUrl" width="25" /> -->
|
|
6
|
+
<svg-icon icon-class="loginOneWhite" class="loginSvg" />
|
|
7
|
+
<span>安徽省影像云医学影像质控系统</span>
|
|
8
|
+
</p>
|
|
9
|
+
<div class="enter" :style="'background-image:url(' + logintitle + ');'">
|
|
10
|
+
<p><em></em> <span>登 录</span> <em></em></p>
|
|
11
|
+
<p>LOGIN</p>
|
|
12
|
+
</div>
|
|
13
|
+
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="loginForm">
|
|
14
|
+
<el-form-item prop="username">
|
|
15
|
+
<el-input v-model="loginForm.username" type="text" auto-complete="off" placeholder="账号">
|
|
16
|
+
<svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />
|
|
17
|
+
</el-input>
|
|
18
|
+
</el-form-item>
|
|
19
|
+
<el-form-item prop="password">
|
|
20
|
+
<el-input
|
|
21
|
+
v-model="loginForm.password"
|
|
22
|
+
type="password"
|
|
23
|
+
auto-complete="off"
|
|
24
|
+
placeholder="密码">
|
|
25
|
+
<svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon" />
|
|
26
|
+
</el-input>
|
|
27
|
+
</el-form-item>
|
|
28
|
+
<el-form-item prop="code">
|
|
29
|
+
<el-row :gutter="15">
|
|
30
|
+
<el-col :span="15">
|
|
31
|
+
<el-input
|
|
32
|
+
v-model="loginForm.code"
|
|
33
|
+
type="text"
|
|
34
|
+
auto-complete="off"
|
|
35
|
+
placeholder="请输入验证码"
|
|
36
|
+
@keyup.enter.native="handleLogin">
|
|
37
|
+
<i
|
|
38
|
+
slot="prefix"
|
|
39
|
+
class="el-icon-key"
|
|
40
|
+
style="font-szie: 16px; font-weight: 700; color: #c0c4cc"></i>
|
|
41
|
+
</el-input>
|
|
42
|
+
</el-col>
|
|
43
|
+
<el-col :span="9" style="height: 32px">
|
|
44
|
+
<el-image @click="getCodeImg" style="width: 100%; height: 32px" :src="base64Code">
|
|
45
|
+
</el-image>
|
|
46
|
+
</el-col>
|
|
47
|
+
</el-row>
|
|
48
|
+
</el-form-item>
|
|
49
|
+
<el-form-item style="width: 100%">
|
|
50
|
+
<el-button
|
|
51
|
+
:loading="loading"
|
|
52
|
+
size="medium"
|
|
53
|
+
type="primary"
|
|
54
|
+
style="width: 100%"
|
|
55
|
+
@click.native.prevent="handleLogin">
|
|
56
|
+
<span v-if="!loading">登 录</span>
|
|
57
|
+
<span v-else>登 录 中...</span>
|
|
58
|
+
</el-button>
|
|
59
|
+
</el-form-item>
|
|
60
|
+
</el-form>
|
|
61
|
+
|
|
62
|
+
<p class="jianli">建立影像专科医联体·助力安徽影像云建设</p>
|
|
63
|
+
</div>
|
|
64
|
+
<!-- 底部 -->
|
|
65
|
+
<div id="el-login-footer">
|
|
66
|
+
<p v-html="$store.state.settings.footerTxt" />
|
|
67
|
+
<p>
|
|
68
|
+
<span v-html="$store.state.settings.caseNumber" style="padding-right: 15px"></span>
|
|
69
|
+
<img :src="gongan" width="12" />
|
|
70
|
+
<span v-html="$store.state.settings.gonganNumber"></span>
|
|
71
|
+
</p>
|
|
72
|
+
</div>
|
|
73
|
+
</div>
|
|
74
|
+
</template>
|
|
75
|
+
|
|
76
|
+
<script>
|
|
77
|
+
import { encrypt } from '@/utils/rsaEncrypt';
|
|
78
|
+
import Cookies from 'js-cookie';
|
|
79
|
+
import Background from '@/assets/images/qualityBg.jpg';
|
|
80
|
+
import logoUrl from '@/assets/images/logo.png';
|
|
81
|
+
import gongan from '@/assets/images/gongan.png';
|
|
82
|
+
import logintitle from '@/assets/images/logintitle.jpg';
|
|
83
|
+
|
|
84
|
+
import { getCodeImg } from '@/api/login';
|
|
85
|
+
|
|
86
|
+
import { mapGetters } from 'vuex';
|
|
87
|
+
export default {
|
|
88
|
+
name: 'qualityLogin',
|
|
89
|
+
data() {
|
|
90
|
+
return {
|
|
91
|
+
Background,
|
|
92
|
+
logoUrl,
|
|
93
|
+
gongan,
|
|
94
|
+
logintitle,
|
|
95
|
+
cookiePass: '',
|
|
96
|
+
loginForm: {
|
|
97
|
+
username: '',
|
|
98
|
+
password: '',
|
|
99
|
+
uuid: '',
|
|
100
|
+
code: '',
|
|
101
|
+
},
|
|
102
|
+
loginRules: {
|
|
103
|
+
username: [{ required: true, trigger: 'blur', message: '用户名不能为空' }],
|
|
104
|
+
password: [{ required: true, trigger: 'blur', message: '密码不能为空' }],
|
|
105
|
+
code: [{ required: true, trigger: 'blur', message: '验证码不能为空' }],
|
|
106
|
+
},
|
|
107
|
+
loading: false,
|
|
108
|
+
redirect: undefined,
|
|
109
|
+
base64Code: '',
|
|
110
|
+
};
|
|
111
|
+
},
|
|
112
|
+
watch: {
|
|
113
|
+
$route: {
|
|
114
|
+
handler: function (route) {
|
|
115
|
+
this.redirect = route.query && route.query.redirect;
|
|
116
|
+
},
|
|
117
|
+
immediate: true,
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
computed: {
|
|
121
|
+
...mapGetters(['sidebarRouters', 'sidebar']),
|
|
122
|
+
routes() {
|
|
123
|
+
return this.$store.state.permission.routers;
|
|
124
|
+
},
|
|
125
|
+
user() {
|
|
126
|
+
return this.$store.state.user.user;
|
|
127
|
+
},
|
|
128
|
+
},
|
|
129
|
+
created() {
|
|
130
|
+
// 获取用户名密码等Cookie
|
|
131
|
+
this.getCookie();
|
|
132
|
+
// token 过期提示
|
|
133
|
+
this.point();
|
|
134
|
+
// 验证码
|
|
135
|
+
this.getCodeImg();
|
|
136
|
+
},
|
|
137
|
+
methods: {
|
|
138
|
+
getCodeImg() {
|
|
139
|
+
getCodeImg()
|
|
140
|
+
.then(res => {
|
|
141
|
+
this.base64Code = res.img;
|
|
142
|
+
this.loginForm.uuid = res.uuid;
|
|
143
|
+
})
|
|
144
|
+
.catch(res => {
|
|
145
|
+
console.log(res);
|
|
146
|
+
});
|
|
147
|
+
},
|
|
148
|
+
getCookie() {
|
|
149
|
+
const username = Cookies.get('username');
|
|
150
|
+
let password = Cookies.get('password');
|
|
151
|
+
// 保存cookie里面的加密后的密码
|
|
152
|
+
this.cookiePass = password === undefined ? '' : password;
|
|
153
|
+
password = password === undefined ? this.loginForm.password : password;
|
|
154
|
+
this.loginForm = {
|
|
155
|
+
username: username === undefined ? this.loginForm.username : username,
|
|
156
|
+
password: password,
|
|
157
|
+
};
|
|
158
|
+
},
|
|
159
|
+
handleLogin() {
|
|
160
|
+
this.$refs.loginForm.validate(valid => {
|
|
161
|
+
const user = {
|
|
162
|
+
username: this.loginForm.username,
|
|
163
|
+
password: this.loginForm.password,
|
|
164
|
+
uuid: this.loginForm.uuid,
|
|
165
|
+
code: this.loginForm.code,
|
|
166
|
+
};
|
|
167
|
+
if (user.password !== this.cookiePass) {
|
|
168
|
+
user.password = encrypt(user.password);
|
|
169
|
+
}
|
|
170
|
+
if (valid) {
|
|
171
|
+
this.loading = true;
|
|
172
|
+
this.$store
|
|
173
|
+
.dispatch('Login', user)
|
|
174
|
+
.then(() => {
|
|
175
|
+
this.loading = false;
|
|
176
|
+
console.log(this.user, 'user');
|
|
177
|
+
sessionStorage.setItem('key', 1);
|
|
178
|
+
// this.$router.push({ path: this.redirect || '/' })
|
|
179
|
+
this.$router.push({
|
|
180
|
+
path:
|
|
181
|
+
this.redirect || this.user.defaultHomePage !== undefined
|
|
182
|
+
? this.user.defaultHomePage
|
|
183
|
+
: '/',
|
|
184
|
+
});
|
|
185
|
+
})
|
|
186
|
+
.catch(() => {
|
|
187
|
+
this.loading = false;
|
|
188
|
+
this.getCodeImg();
|
|
189
|
+
this.loginForm.code = '';
|
|
190
|
+
});
|
|
191
|
+
if (this.routes) console.log(this.routes, 'permission_routers');
|
|
192
|
+
} else {
|
|
193
|
+
return false;
|
|
194
|
+
}
|
|
195
|
+
});
|
|
196
|
+
},
|
|
197
|
+
point() {
|
|
198
|
+
const point = Cookies.get('point') !== undefined;
|
|
199
|
+
if (point) {
|
|
200
|
+
this.$notify({
|
|
201
|
+
title: '提示',
|
|
202
|
+
message: '当前登录状态已过期,请重新登录!',
|
|
203
|
+
type: 'warning',
|
|
204
|
+
duration: 5000,
|
|
205
|
+
});
|
|
206
|
+
Cookies.remove('point');
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
},
|
|
210
|
+
};
|
|
211
|
+
</script>
|
|
212
|
+
|
|
213
|
+
<style rel="stylesheet/scss" lang="scss">
|
|
214
|
+
.login {
|
|
215
|
+
justify-content: center;
|
|
216
|
+
align-items: center;
|
|
217
|
+
display: flex;
|
|
218
|
+
height: 100%;
|
|
219
|
+
background-size: cover;
|
|
220
|
+
.app-login {
|
|
221
|
+
margin: 0 auto;
|
|
222
|
+
width: 500px;
|
|
223
|
+
text-align: center;
|
|
224
|
+
padding: 45px 35px;
|
|
225
|
+
height: calc(100% - 20vh);
|
|
226
|
+
.login-title {
|
|
227
|
+
text-align: center;
|
|
228
|
+
color: #fff;
|
|
229
|
+
letter-spacing: 1px;
|
|
230
|
+
font-size: 20px;
|
|
231
|
+
font-weight: bold;
|
|
232
|
+
.loginSvg {
|
|
233
|
+
position: relative;
|
|
234
|
+
top: 3px;
|
|
235
|
+
font-size: 36px;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
.enter {
|
|
239
|
+
margin-top: 45px;
|
|
240
|
+
height: 95px;
|
|
241
|
+
border-top-left-radius: 5px;
|
|
242
|
+
border-top-right-radius: 5px;
|
|
243
|
+
p {
|
|
244
|
+
margin: 0;
|
|
245
|
+
font-size: 10px;
|
|
246
|
+
padding-top: 15px;
|
|
247
|
+
color: #999;
|
|
248
|
+
em {
|
|
249
|
+
display: inline-block;
|
|
250
|
+
border: 1px solid #dddddd;
|
|
251
|
+
width: 120px;
|
|
252
|
+
}
|
|
253
|
+
span {
|
|
254
|
+
display: inline-block;
|
|
255
|
+
font-size: 17px;
|
|
256
|
+
position: relative;
|
|
257
|
+
top: 7px;
|
|
258
|
+
padding: 0 15px;
|
|
259
|
+
color: #333;
|
|
260
|
+
}
|
|
261
|
+
&:first-child {
|
|
262
|
+
padding-top: 25px;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
.loginForm {
|
|
267
|
+
background: #fff;
|
|
268
|
+
padding: 45px 55px;
|
|
269
|
+
border-bottom-left-radius: 5px;
|
|
270
|
+
border-bottom-right-radius: 5px;
|
|
271
|
+
}
|
|
272
|
+
.jianli {
|
|
273
|
+
color: #fff;
|
|
274
|
+
font-size: 17px;
|
|
275
|
+
letter-spacing: 2px;
|
|
276
|
+
padding-top: 35px;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
</style>
|