system-clients 3.2.76 → 3.2.78

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.
Files changed (272) hide show
  1. package/.babelrc +5 -5
  2. package/.editorconfig +9 -9
  3. package/.eslintrc.js +16 -16
  4. package/.gradle/7.4/checksums/checksums.lock +0 -0
  5. package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
  6. package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
  7. package/CHANGELOG.md +51 -51
  8. package/README.md +36 -36
  9. package/SystemClient.iml +8 -8
  10. package/build/css-loaders.js +34 -34
  11. package/build/dev-client.js +8 -8
  12. package/build/example-server.js +80 -80
  13. package/build/release.sh +28 -28
  14. package/build/utils.js +71 -71
  15. package/build/webpack.base.conf.js +85 -85
  16. package/build/webpack.dev.conf.js +31 -31
  17. package/build/webpack.example.conf.js +49 -49
  18. package/build/webpack.prod.conf.js +60 -60
  19. package/build/webpack.test.conf.js +31 -31
  20. package/build.gradle +6 -6
  21. package/config/dev.env.js +6 -6
  22. package/config/index.js +38 -38
  23. package/config/prod.env.js +3 -3
  24. package/config/test.env.js +6 -6
  25. package/doc/Login.md +7 -7
  26. package/examples/LoginPage/App.vue +21 -21
  27. package/examples/LoginPage/index.html +11 -11
  28. package/examples/LoginPage/main.js +15 -15
  29. package/examples/ReadCard/App.vue +23 -23
  30. package/examples/ReadCard/index.html +11 -11
  31. package/examples/ReadCard/main.js +12 -12
  32. package/index.html +21 -21
  33. package/package.json +105 -105
  34. package/release.bat +5 -5
  35. package/src/App.vue +24 -24
  36. package/src/LodopFuncs.js +123 -123
  37. package/src/assets/binding.svg +1 -1
  38. package/src/assets/unbind.svg +1 -1
  39. package/src/assets//345/205/254/345/221/212.svg +1 -1
  40. package/src/assets//347/207/203/346/260/224/347/274/264/350/264/271.eps +116 -116
  41. package/src/assets//350/201/224/347/263/273/346/210/221/344/273/254.svg +1 -1
  42. package/src/components/List.vue +51 -51
  43. package/src/components/Main.vue +923 -923
  44. package/src/components/TabButton.vue +201 -201
  45. package/src/components/Table.js +74 -74
  46. package/src/components/Tabs.vue +67 -67
  47. package/src/components/Util.js +343 -343
  48. package/src/components/addressManage/AddressCascadingMenu.vue +145 -145
  49. package/src/components/common/ProgressBase.vue +83 -83
  50. package/src/components/equipment/EquipmentManage.vue +65 -65
  51. package/src/components/equipment/PcAdd.vue +105 -105
  52. package/src/components/equipment/PcList.vue +119 -119
  53. package/src/components/equipment/PcManage.vue +60 -60
  54. package/src/components/equipment/PhoneAdd.vue +107 -107
  55. package/src/components/equipment/PhoneList.vue +112 -112
  56. package/src/components/equipment/PhoneManage.vue +60 -60
  57. package/src/components/equipment/PosAdd.vue +323 -323
  58. package/src/components/equipment/PosList.vue +294 -294
  59. package/src/components/equipment/PosManage.vue +138 -138
  60. package/src/components/equipment/PosManageBoth.vue +125 -125
  61. package/src/components/equipment/PosParamAdd.vue +236 -236
  62. package/src/components/equipment/PosParamList.vue +121 -121
  63. package/src/components/equipment/PosParamManage.vue +51 -51
  64. package/src/components/materialManage/materialData.vue +44 -44
  65. package/src/components/materialManage/materialList.vue +255 -255
  66. package/src/components/parammanage/ParamManage.vue +42 -42
  67. package/src/components/parammanage/ParamManages.vue +43 -43
  68. package/src/components/parammanage/ParamPage.vue +337 -337
  69. package/src/components/parammanage/ParamPages.vue +222 -222
  70. package/src/components/parammanage/SinglePage.vue +235 -235
  71. package/src/components/parammanage/SinglePages.vue +167 -167
  72. package/src/components/server/AddChangeMsg.vue +66 -66
  73. package/src/components/server/ChangeDeclare.vue +45 -45
  74. package/src/components/server/IconTree.vue +26 -26
  75. package/src/components/server/ImageVieweTest.vue +56 -56
  76. package/src/components/server/ImageViewer.vue +350 -350
  77. package/src/components/server/LeftTree.vue +111 -111
  78. package/src/components/server/LoadData.vue +55 -55
  79. package/src/components/server/Login.vue +566 -566
  80. package/src/components/server/LoginPage.vue +235 -235
  81. package/src/components/server/LoginView.vue +128 -128
  82. package/src/components/server/Menu.vue +188 -188
  83. package/src/components/server/ModifyPw.vue +125 -125
  84. package/src/components/server/PcdBuildingSelect.vue +241 -241
  85. package/src/components/server/ResSelect.vue +155 -155
  86. package/src/components/server/ResSelectGroup.vue +198 -198
  87. package/src/components/server/RightTree.vue +348 -348
  88. package/src/components/server/RoleSelector.vue +88 -88
  89. package/src/components/server/TestResSelect.vue +58 -58
  90. package/src/components/server/TestResSelectGroup.vue +388 -388
  91. package/src/components/server/TestRightTree.vue +42 -42
  92. package/src/filiale/baole/Login.vue +568 -568
  93. package/src/filiale/baole/system.js +5 -5
  94. package/src/filiale/chengtou/Login.vue +537 -537
  95. package/src/filiale/chengtou/system.js +5 -5
  96. package/src/filiale/dongguan/Login.vue +900 -900
  97. package/src/filiale/dongguan/Main.vue +715 -715
  98. package/src/filiale/dongguan/system.js +6 -6
  99. package/src/filiale/furuike/Login.vue +583 -583
  100. package/src/filiale/furuike/Main.vue +827 -827
  101. package/src/filiale/furuike/system.js +7 -7
  102. package/src/filiale/gehua/Main.vue +807 -807
  103. package/src/filiale/gehua/system.js +6 -6
  104. package/src/filiale/konggang/Login.vue +470 -470
  105. package/src/filiale/konggang/system.js +7 -7
  106. package/src/filiale/qianneng/Login.vue +566 -566
  107. package/src/filiale/qianneng/Main.vue +816 -816
  108. package/src/filiale/qianneng/ModifyPw.vue +107 -107
  109. package/src/filiale/qianneng/system.js +11 -11
  110. package/src/filiale/rizhao/LeftTree.vue +111 -111
  111. package/src/filiale/rizhao/Login.vue +791 -791
  112. package/src/filiale/rizhao/Main.vue +611 -611
  113. package/src/filiale/rizhao/system.js +14 -14
  114. package/src/filiale/shiquan/Login.vue +564 -564
  115. package/src/filiale/shiquan/system.js +8 -8
  116. package/src/filiale/tianyi/Login.vue +571 -571
  117. package/src/filiale/tianyi/system.js +5 -5
  118. package/src/filiale/tongchuan/Login.vue +561 -561
  119. package/src/filiale/tongchuan/Main.vue +1019 -1019
  120. package/src/filiale/tongchuan/system.js +7 -7
  121. package/src/filiale/wenxi/Login.vue +535 -535
  122. package/src/filiale/wenxi/Main.vue +785 -785
  123. package/src/filiale/wenxi/system.js +10 -10
  124. package/src/filiale/wuhai/LeftTree.vue +141 -141
  125. package/src/filiale/wuhai/Main.vue +807 -807
  126. package/src/filiale/wuhai/system.js +10 -10
  127. package/src/filiale/yuchuan/Login.vue +889 -889
  128. package/src/filiale/yuchuan/Main.vue +864 -864
  129. package/src/filiale/yuchuan/system.js +10 -10
  130. package/src/filiale/zhoukou/Main.vue +807 -807
  131. package/src/filiale/zhoukou/system.js +6 -6
  132. package/src/index.js +7 -7
  133. package/src/plugins/EncryptUtil.js +53 -53
  134. package/src/plugins/GetLoginInfoService.js +536 -536
  135. package/src/plugins/HeatGetLoginInfoService.js +491 -491
  136. package/src/plugins/validation.js +15 -15
  137. package/src/project/ProjectPage.vue +24 -24
  138. package/src/project/State.js +17 -17
  139. package/src/stores/AppData.js +38 -38
  140. package/src/stores/HeatAppData.js +38 -38
  141. package/src/styles/fonts/glyphicons-halflings-regular.svg +288 -288
  142. package/src/styles/less/.csscomb.json +304 -304
  143. package/src/styles/less/.csslintrc +19 -19
  144. package/src/styles/less/alerts.less +73 -73
  145. package/src/styles/less/aofeng/animate.min.css +10 -10
  146. package/src/styles/less/aofeng/expandcss.less +569 -569
  147. package/src/styles/less/aofeng/login.less +367 -367
  148. package/src/styles/less/aofeng/standard.less +2507 -2507
  149. package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +690 -690
  150. package/src/styles/less/aofeng/themeOne/loginStyle.less +1586 -1586
  151. package/src/styles/less/aofeng/themeOne/systemStyle.less +2650 -2650
  152. package/src/styles/less/aofeng/themeOne.less +17 -17
  153. package/src/styles/less/aofeng/themeTwo/newStyle1.less +415 -415
  154. package/src/styles/less/aofeng/themeTwo.less +3 -3
  155. package/src/styles/less/badges.less +66 -66
  156. package/src/styles/less/bootstrap.less +66 -66
  157. package/src/styles/less/breadcrumbs.less +26 -26
  158. package/src/styles/less/button-groups.less +247 -247
  159. package/src/styles/less/buttons.less +172 -172
  160. package/src/styles/less/carousel.less +269 -269
  161. package/src/styles/less/close.less +34 -34
  162. package/src/styles/less/code.less +69 -69
  163. package/src/styles/less/component-animations.less +33 -33
  164. package/src/styles/less/dropdowns.less +216 -216
  165. package/src/styles/less/fonts-list.less +25 -25
  166. package/src/styles/less/forms.less +626 -626
  167. package/src/styles/less/glyphicons.less +305 -305
  168. package/src/styles/less/grid.less +84 -84
  169. package/src/styles/less/input-groups.less +167 -167
  170. package/src/styles/less/jumbotron.less +52 -52
  171. package/src/styles/less/labels.less +64 -64
  172. package/src/styles/less/list-group.less +141 -141
  173. package/src/styles/less/manageStyle/manageChile.less +180 -180
  174. package/src/styles/less/manageStyle/manageStyle/manageChile.less +180 -180
  175. package/src/styles/less/manageStyle/manageStyle/manageStyle.less +1102 -1102
  176. package/src/styles/less/manageStyle/manageStyle/safeStyle.less +498 -498
  177. package/src/styles/less/manageStyle/manageStyle.less +1102 -1102
  178. package/src/styles/less/manageStyle/safeStyle.less +498 -498
  179. package/src/styles/less/media.less +66 -66
  180. package/src/styles/less/mixins/alerts.less +14 -14
  181. package/src/styles/less/mixins/background-variant.less +9 -9
  182. package/src/styles/less/mixins/border-radius.less +18 -18
  183. package/src/styles/less/mixins/buttons.less +69 -69
  184. package/src/styles/less/mixins/center-block.less +7 -7
  185. package/src/styles/less/mixins/clearfix.less +22 -22
  186. package/src/styles/less/mixins/forms.less +90 -90
  187. package/src/styles/less/mixins/gradients.less +59 -59
  188. package/src/styles/less/mixins/grid-framework.less +92 -92
  189. package/src/styles/less/mixins/grid.less +122 -122
  190. package/src/styles/less/mixins/hide-text.less +21 -21
  191. package/src/styles/less/mixins/image.less +33 -33
  192. package/src/styles/less/mixins/labels.less +12 -12
  193. package/src/styles/less/mixins/list-group.less +30 -30
  194. package/src/styles/less/mixins/nav-divider.less +10 -10
  195. package/src/styles/less/mixins/nav-vertical-align.less +9 -9
  196. package/src/styles/less/mixins/opacity.less +8 -8
  197. package/src/styles/less/mixins/pagination.less +24 -24
  198. package/src/styles/less/mixins/panels.less +24 -24
  199. package/src/styles/less/mixins/progress-bar.less +10 -10
  200. package/src/styles/less/mixins/reset-filter.less +8 -8
  201. package/src/styles/less/mixins/reset-text.less +18 -18
  202. package/src/styles/less/mixins/resize.less +6 -6
  203. package/src/styles/less/mixins/responsive-visibility.less +15 -15
  204. package/src/styles/less/mixins/size.less +10 -10
  205. package/src/styles/less/mixins/tab-focus.less +9 -9
  206. package/src/styles/less/mixins/table-row.less +44 -44
  207. package/src/styles/less/mixins/text-emphasis.less +9 -9
  208. package/src/styles/less/mixins/text-overflow.less +8 -8
  209. package/src/styles/less/mixins/vendor-prefixes.less +227 -227
  210. package/src/styles/less/mixins.less +40 -40
  211. package/src/styles/less/modals.less +151 -151
  212. package/src/styles/less/navbar.less +660 -660
  213. package/src/styles/less/navs.less +285 -285
  214. package/src/styles/less/normalize.less +424 -424
  215. package/src/styles/less/pager.less +76 -76
  216. package/src/styles/less/pagination.less +89 -89
  217. package/src/styles/less/panels.less +275 -275
  218. package/src/styles/less/popovers.less +131 -131
  219. package/src/styles/less/print.less +101 -101
  220. package/src/styles/less/progress-bars.less +87 -87
  221. package/src/styles/less/responsive-embed.less +35 -35
  222. package/src/styles/less/responsive-utilities.less +194 -194
  223. package/src/styles/less/scaffolding.less +161 -161
  224. package/src/styles/less/stand.less +207 -207
  225. package/src/styles/less/tables.less +312 -312
  226. package/src/styles/less/theme.less +291 -291
  227. package/src/styles/less/thumbnails.less +36 -36
  228. package/src/styles/less/tooltip.less +102 -102
  229. package/src/styles/less/type.less +316 -316
  230. package/src/styles/less/utilities.less +55 -55
  231. package/src/styles/less/variables.less +899 -899
  232. package/src/styles/less/wells.less +29 -29
  233. package/src/system.js +121 -121
  234. package/src/systemphone.js +11 -11
  235. package/src/util/Daiban.json +12 -12
  236. package/src/util/LdapHelper.js +75 -75
  237. package/test/e2e/custom-assertions/elementCount.js +26 -26
  238. package/test/e2e/nightwatch.conf.js +40 -40
  239. package/test/e2e/runner.js +30 -30
  240. package/test/e2e/specs/test.js +14 -14
  241. package/test/unit/.eslintrc +5 -5
  242. package/test/unit/index.js +13 -13
  243. package/test/unit/init.js +10 -10
  244. package/test/unit/karma.conf.js +49 -49
  245. package/test/unit/specs/base64.spec.js +5 -5
  246. package/test/unit/specs/components/parammanage/ParamPage.spec.js +20 -20
  247. package/test/unit/specs/components/parammanage/SinglePage.spec.js +20 -20
  248. package/test/unit/specs/components/server/LeftTree/App.vue +18 -18
  249. package/test/unit/specs/components/server/LeftTree/LeftTree.spec.js +22 -22
  250. package/test/unit/specs/components/server/LoadData.spec.js +24 -24
  251. package/test/unit/specs/components/server/Login.spec.js +61 -61
  252. package/test/unit/specs/components/server/RightTree.spec.js +50 -50
  253. package/test/unit/specs/plugins/GetLoginInfoService.spec.js +55 -55
  254. package/test/unit/test.html +76 -76
  255. package/yarn-error.log +6896 -6896
  256. package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
  257. package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
  258. package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
  259. package/.gradle/7.4/fileChanges/last-build.bin +0 -0
  260. package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
  261. package/.gradle/7.4/gc.properties +0 -0
  262. package/.gradle/8.0.2/checksums/checksums.lock +0 -0
  263. package/.gradle/8.0.2/dependencies-accessors/dependencies-accessors.lock +0 -0
  264. package/.gradle/8.0.2/dependencies-accessors/gc.properties +0 -0
  265. package/.gradle/8.0.2/fileChanges/last-build.bin +0 -0
  266. package/.gradle/8.0.2/fileHashes/fileHashes.lock +0 -0
  267. package/.gradle/8.0.2/gc.properties +0 -0
  268. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  269. package/.gradle/buildOutputCleanup/cache.properties +0 -2
  270. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  271. package/.gradle/file-system.probe +0 -0
  272. package/.gradle/vcs-1/gc.properties +0 -0
@@ -1,900 +1,900 @@
1
- <template>
2
- <div class="syslogin" >
3
- <div class="login-title" >
4
- <div class="row auto">
5
- <marquee style="width:80%;margin-top:25px"><span style="font-size: 1.8rem;color: white;">{{notice}}</span></marquee>
6
- <div class="login-title-chi" style="white-space: nowrap;margin-right:-5%">
7
- <div v-if="titleShow">
8
- <img src="../../../static/newStyle/login-info.png"/>
9
- <span style="color:#7D7D7D;font-weight: bold;" @click="showus=true">关于我们</span>
10
- </div>
11
- <!-- <img src="../../../static/newStyle/login-con.png"/>-->
12
- <!-- <span>联系我们</span>-->
13
- </div>
14
- </div>
15
- </div>
16
-
17
- <modal :show.sync="showus" backdrop="true" width="50%" style="width:auto;">
18
- <article slot="modal-body" class="modal-body" >
19
- <img style="height:100%;width:100%" src="../../../static/newStyle/dg-about-us.png"/>
20
- </article>
21
- <footer slot="modal-footer" class="modal-footer">
22
- </footer>
23
- </modal>
24
-
25
-
26
- <div class="logoew" v-if="logoandroid" >
27
- <div v-if="logoandroid" class="imglogo"></div>
28
- <p class="logocontent">燃气客服系统Android版</p>
29
- <p class="logofooter">(仅浏览器扫描)</p>
30
- </div>
31
- <!--输入框-->
32
- <div class="loginmain" style="margin: 8% 3% 6% 73%;width: 22%;height: 48%;background-color: #00A8E9">
33
- <!-- <img src="../../../static/login_title1.png" alt="图片加载未完成" class="img-responsive" style="margin: 0 auto; padding-top: 150px;" /> -->
34
- <!-- <div class="loginmain-left">-->
35
- <!-- <img class="loginmain-left-img" src="../../../static/newStyle/login-left.png">-->
36
- <!-- </div>-->
37
- <div class="loginmain-right" style="float:none;padding:4% 4% 2% 4%;width:80%">
38
-
39
- <p @click="theme()" style="white-space: nowrap;font-weight:bold; text-align: center;font-size: 4rem;color:white">{{config.title}}</p>
40
-
41
- <form v-show="!login" class="login-form">
42
- <!-- <input type="text" placeholder="用户名" v-model="model.ename" class="usericon">-->
43
- <div class="login-input" style="opacity: 0;position:absolute;width:0;height:0;">
44
- <img src="../../../static/newStyle/login-user.png"/>
45
- <input type="text" placeholder="用户名"/>
46
- </div>
47
- <div class="login-input" style="opacity: 0;position:absolute;width:0;height:0;">
48
- <img src="../../../static/newStyle/login-pwd.png"/>
49
- <input type=password placeholder="密码" @keyup.enter="confirm('key')"/>
50
- </div>
51
- <div class="login-input">
52
- <img src="../../../static/newStyle/login-user.png"/>
53
- <input type="text" style="display: inline;color:black;background-color: white!important;"
54
- placeholder="用户名" v-model="model.ename" autocomplete="off"/>
55
- </div>
56
- <div class="login-input">
57
- <img src="../../../static/newStyle/login-pwd.png"/>
58
- <input type="password" placeholder="密码" style="display: inline;color:black;background-color: darkgray;" v-model="model.password"
59
- @keyup.enter="confirm('key')" autocomplete="off"/>
60
- </div>
61
- <div class="login-input-1" v-if="$login.Verification">
62
- <img src="../../../static/newStyle/login-check.png"/>
63
- <input v-if="$login.Verification" class="login-check" type="text" placeholder="请输入验证码"
64
- v-model="picLyanzhengma" @keyup.enter="confirm('key')"/>
65
- </div>
66
- <div class="login-input-2" >
67
- <input v-if="$login.Verification" class="login-check-1" style="display: inline;background-color:#eeeeee !important;"
68
- type="button" @click="createCode" v-model="checkCode"/>
69
- </div>
70
- <div class="login-bt">
71
- <button type="button" id="login-button" class="login-button" @click.prevent="confirm('click')">登录</button>
72
- </div>
73
- <!-- <input type="password" placeholder="密码" v-model="model.password" class="psicon"-->
74
- <!-- @keyup.enter="confirm('key')">-->
75
- <!-- <input v-if="$login.Verification" styljiaoyane="width: 40%; display: inline" type="text" placeholder="请输入验证码"-->
76
- <!-- v-model="picLyanzhengma" @keyup.enter="confirm('key')">-->
77
- <!-- <input v-if="$login.Verification" style="width: 30%; display: inline;background-color: darkgray;"-->
78
- <!-- type="button" @click="createCode" v-model="checkCode"/><br>-->
79
-
80
- <!-- <button type="button" id="login-button" @click.prevent="confirm()"><strong>注册</strong></button> -->
81
- <!-- <span @click="register()">还没有注册,现在注册>>></span> -->
82
- </form>
83
- <div v-show="login" class="login_load">
84
- <img src="../../../static/newStyle/login-do.gif">
85
- </div>
86
- </div>
87
- </div>
88
- <div class="login-foot" style="margin-top:11%;font-weight: bold;color:#7D7D7D" v-show="true">
89
- 技术支持:东莞市伊米斯智能科技有限公司 粤ICP备2022095777号-1
90
- </div>
91
- <div class="login-foot" v-show="$login.BAinformation">
92
- {{{ $login.BAinformation }}}
93
- </div>
94
-
95
- <modal v-if="depPromptShow" :show.sync="depPromptShow" :backdrop="false" v-ref:modal >
96
- <header slot="modal-header" style="height: 8vh" class="modal-header">
97
- <!--<h4 class="modal-title">登录信息</h4>-->
98
- </header>
99
- <article slot="modal-body" class="modal-body">
100
- <form class="form-horizontal">
101
- <div class="row">
102
- <div class="col-sm-12 form-group">
103
- <label class="col-sm-5 ">当前登录人:</label>
104
- <label style="font-weight:normal">{{$login.f.name}}</label>
105
- </div>
106
- <!--<div class="col-sm-12 form-group" v-if="$login.f.number">-->
107
- <!--<label class="col-sm-5 ">组&nbsp;织&nbsp;编&nbsp;码:</label>-->
108
- <!--<label style="font-weight:normal">{{$login.f.number}}</label>-->
109
- <!-- <div class="col-sm-7">
110
- <span >{{$login.f.number}}</span>
111
- </div> -->
112
- <!--</div>-->
113
- <div class="col-sm-12 form-group">
114
- <label class="col-sm-5">所在销售点:</label>
115
- <label style="font-weight:normal">{{$login.f.deps}}</label>
116
- <!-- <div class="col-sm-7">
117
- <span >{{$login.f.deps}}</span>
118
- </div> -->
119
- </div>
120
- <div class="col-sm-12 " v-if="AppDaiBan !==''">
121
- <label class="col-sm-2">报装待办:</label>
122
- <span style="font-weight:normal">{{AppDaiBan}}</span>
123
- </div>
124
- <div class="col-sm-12 " v-if="OrderDaiBan !==''">
125
- <label class="col-sm-2">预约待办:</label>
126
- <span style="font-weight:normal">{{OrderDaiBan}}</span>
127
- </div>
128
- <div class="col-sm-12 " v-for="daibanitem in safecheckDaiBan">
129
- <label class="col-sm-2">{{daibanitem.oldData.title}}:</label>
130
- <span style="font-weight:normal">{{daibanitem.text}}</span>
131
- </div>
132
- </div>
133
- </form>
134
- </article>
135
- <footer slot="modal-footer" style="height: 8vh" class="modal-footer">
136
- <button class="button_search" @click="depPromptConfirm">确认</button>
137
- <button class="button_clear" @click="depPromptCancel">取消</button>
138
- </footer>
139
- </modal>
140
-
141
- <!-- 修改密码组件 -->
142
- <modify-pw :show.sync="modifyPwShow" v-if="modifyPwShow"></modify-pw>
143
- </div>
144
-
145
- </template>
146
-
147
- <script>
148
- import co from 'co'
149
- import $ from 'jquery'
150
- import Vue from 'vue'
151
- import {HttpResetClass} from 'vue-client'
152
-
153
- let daibanJson = require('../../util/Daiban.json')
154
-
155
-
156
- let saveGen = function *(self) {
157
- try {
158
- if(self.$login){
159
- // 账号ename,密码password,是否显示异地登陆
160
- yield self.$login.login(self.model.ename, self.model.password, true)
161
- }
162
- if(self.$appdata){
163
- yield self.$appdata.load()
164
-
165
- }
166
- if (Vue.$heatCompatibility) {
167
- try {
168
- if(self.$loginHeat){
169
- yield self.$loginHeat.login(self.model.ename, self.model.password)
170
- }
171
- if(self.$appdataHeat){
172
- yield self.$appdataHeat.load()
173
- }
174
- } catch (e) {
175
- console.log('热力系统登陆失败!')
176
- }
177
- }
178
- yield self.$getConfig(self, 'Login')
179
- console.log('登录配置', self.config)
180
- if (self.config.isMac) {
181
- // 获取该登录人分公司下的mac配置
182
- let getMacs = yield self.$resetpost('rs/sql/equipmentQuery', {data: {condition: `f_filialeids like '%${self.$login.f.f_orgids}%'`}}, {
183
- resolveMsg: null,
184
- rejectMsg: null
185
- }).catch(() => {
186
- throw new Error('获取mac配置失败')
187
- })
188
- console.log('MAC地址信息', getMacs)
189
- // 获取本地mac地址
190
- let getLocalMac = yield self.$resetget('http://127.0.0.1:8003/loadmac', {
191
- resolveMsg: null,
192
- rejectMsg: null
193
- }).catch(() => {
194
- throw new Error('获取本地mac配置失败')
195
- })
196
- console.log('本地MAC地址信息', getLocalMac)
197
- // 对Mac地址进行匹配
198
- let macValidate = false
199
- for (let i = 0; i < getLocalMac.data.mac.length; i++) {
200
- for (let j = 0; j < getMacs.data.length; j++) {
201
- if (getMacs.data[j].f_mac_number.toLocaleUpperCase() === getLocalMac.data.mac[i]) {
202
- macValidate = true
203
- }
204
- }
205
- }
206
- if (!macValidate) {
207
- throw new Error('Mac地址验证失败, 请联系管理员!!')
208
- }
209
- }
210
- console.log(self.$login.depPrompt)
211
- // 弱口令验证
212
- //跳转过来的不进行验证
213
- if ((!self.otherLogin) && self.config.weakPassword && !(/^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{8,16}$/.test(self.model.password))) {
214
- self.$showMessage('登录系统: 此账户的密码过于简单,请修改密码后重新登陆!!!', ['confirm']).then((res) => {
215
- self.modifyPwShow = true
216
- })
217
- } else if ((!self.otherLogin) && self.$login.depPrompt) {
218
- self.depPromptShow = true
219
- if (self.$login.showDaiBan && self.$login.r.includes('展示预约信息')){
220
- // 获取待办
221
- self.getDaiBan()
222
-
223
- }
224
- if (self.$login.showDaiBan && self.$login.r.includes('登录预约信息')){
225
- // 获取待办 在util下有个Daiban.jsond 文件 ,在里面进行配置,在功能权限界面增加登录预约信息
226
- self.getDaiBanA()
227
- }
228
- } else {
229
- self.$goto('home-page', {functions: self.$login.f,config: self.config})
230
- // if (self.otherLogin){
231
- // window.history.pushState(null,null,'')
232
- // }
233
- if (self.$login) {
234
- console.log('登录信息', self.$login.f)
235
- global.login=self.$login.f
236
- console.log('登录信息', global.login)
237
- }
238
- }
239
-
240
- } catch (ret) {
241
- console.error('登录失败', ret)
242
- let msg
243
- if (ret instanceof Error) {
244
- msg = ret
245
- }
246
- if (ret.status === 0) {
247
- msg = '服务连接错误,请确认服务状态'
248
- } else if (ret.status === 401) {
249
- msg = ret.data
250
- } else if (ret.status === 710) {
251
- msg = ret.data
252
- }
253
- self.createCode()
254
- self.picLyanzhengma = ''
255
- yield self.$showMessage(msg)
256
- self.model.ename = ''
257
- self.model.password = ''
258
- self.login = false
259
- $('form').fadeIn(500)
260
- }
261
- }
262
- export default {
263
- title: '登录',
264
- async ready () {
265
- this.titleShow = true
266
- try{
267
- let http = new HttpResetClass()
268
- let res = await http.load('POST', 'rs/sql/singleTable',
269
- {data:{
270
- tablename: 't_changedeclare',
271
- condition: ` f_type ='变更通知' `
272
- }
273
- }, {resolveMsg: null, rejectMsg: null})
274
- if(res.data.length>0){
275
- console.log("---------------获取通知",res.data[0].f_change_message)
276
- this.notice=res.data[0].f_change_message
277
- }
278
- }catch(e){}
279
-
280
- this.loginother();
281
- $('#login-button').click(function (event) {
282
- event.preventDefault()
283
- $('form').fadeOut(500)
284
- })
285
- if (window.location.search && window.location.search.indexOf('af_key') !== -1&& window.location.search.indexOf('af_n') !== -1) {
286
- const subUrl = window.location.search.replace('?af_key=','').split('&af_n=')
287
- console.log(subUrl)
288
- this.model.ename = window.atob(subUrl[0])
289
- this.model.password = window.atob(subUrl[1])
290
- console.log('this.model.ename',this.model.ename)
291
- this.otherLogin = true
292
- this.confirm()
293
- }else{
294
- //跳转不需要验证码
295
- this.createCode()
296
- }
297
- console.log(this.$login)
298
- },
299
- data () {
300
- return {
301
- image:{
302
- img1: '/images/newStyle/login-info.png',
303
- img2: '/images/newStyle/login-con.png',
304
- img3: '/images/newStyle/login-left.png',
305
- img4: '/images/newStyle/login-user.png',
306
- img5: '/images/newStyle/login-pwd.png',
307
- img6: '/images/newStyle/login-check.png',
308
- img7: '/images/newStyle/login-do.png',
309
- },
310
- config: {
311
- isMac: false,
312
- depPrompt: false,
313
- weakPassword: false,
314
- title: '伊米斯燃气云',
315
- distanceLogin: false,
316
- // 那些角色可以定时获取预约提示
317
- isTip : false,
318
- // 那些角色可以定时获取预约提示
319
- msgRole : '预约处理人员',
320
- // 定时获取提示间隔 单位:分钟
321
- times: 25,
322
- },
323
- titleShow: true, //标题显示
324
- otherLogin:false,
325
- login: false,
326
- depPromptShow: false,
327
- model: {},
328
- show: false,
329
- checkCode: '',
330
- login_do:true,
331
- picLyanzhengma: '',
332
- // 修改密码弹框展示
333
- modifyPwShow: false,
334
- logoandroid:false,
335
- showus:false,
336
- notice:'',
337
- loginotherflag :true,
338
- // 报建待办
339
- AppDaiBan: '',
340
- //安检待办
341
- safecheckDaiBan:[],
342
- // 预约待处理
343
- OrderDaiBan: ''
344
- }
345
- },
346
- methods: {
347
- async getDaiBan(){
348
- let http = new HttpResetClass()
349
- let condition = ''
350
- if(this.$login.f.deps!=='柠条塔'){
351
- condition = ` (f_orderstate != '预约成功' and f_orderstate != '预约失败' ) or f_orderstate is null `
352
- } else {
353
- condition =` f_orderstate is null and (f_address in( select f_address from t_user_address where f_slice_area='柠条塔') or f_address like '%柠条塔%') `
354
- }
355
- await http.load('POST', '/rs/sql/singleTable', {data: {
356
- tablename:'t_order_center',
357
- condition:condition
358
- }}, {
359
- resolveMsg: null,
360
- rejectMsg: null
361
- }).then((res) => {
362
- let OrderDaiBan = {}
363
- res.data.forEach(item=>{
364
- OrderDaiBan[item.f_ordertype] = OrderDaiBan[item.f_ordertype] || []
365
- OrderDaiBan[item.f_ordertype].push(item)
366
- })
367
- this.OrderDaiBan = `您有${res.data.length}条需要处理的微信预约业务!`
368
- if (res.data.length> 0){
369
- this.OrderDaiBan += `其中 ${Object.keys(OrderDaiBan).map(key=>`${key}:${OrderDaiBan[key].length}条`).join(', ')}`
370
- }
371
- })
372
- let data = {
373
- condition: '1 = 1',
374
- data: {
375
- orgid: this.$login.f.orgid,
376
- id: this.$login.f.id
377
- }
378
- }
379
- await http.load('POST', '/rs/sql/checkuser', {data: data}, {
380
- resolveMsg: null,
381
- rejectMsg: null
382
- }).then((res) => {
383
- let AppDaiBan = {}
384
- res.data.forEach(item=>{
385
- AppDaiBan[item.defname] = AppDaiBan[item.defname] || []
386
- AppDaiBan[item.defname].push(item)
387
- })
388
- this.AppDaiBan = `您有${res.data.length}条需要处理的报建待办业务!`
389
- if (res.data.length> 0){
390
- this.AppDaiBan += `其中 ${Object.keys(AppDaiBan).map(key=>`${key}:${AppDaiBan[key].length}条`).join(', ')}`
391
- }
392
- })
393
-
394
- },
395
- async getDaiBanA(){
396
- // 是否全局开启待办通知
397
- if (daibanJson.enable) {
398
- console.log("当前获取到待办配置为" + JSON.stringify(daibanJson))
399
- let http = new HttpResetClass()
400
- let daibanArray = []
401
- for (let daibanItem of daibanJson.daiban) {
402
- console.log("开始处理待办任务:" + daibanItem.title + "当前任务状态:" + daibanItem.enable?"开启":"关闭" )
403
- if (daibanItem.enable) { // 控制每一项通知是否开启
404
- let postResult = ''; //提示信息为
405
- await http.load("POST",daibanItem.url,{data:daibanItem.data},{ resolveMsg: null, rejectMsg: null})
406
- .then((res)=>{
407
- let responseData = res.data
408
- for (let item of responseData) {
409
- postResult += eval(daibanItem.text) + "\n"
410
- }
411
- postResult += '\t'
412
- daibanArray.push({text:postResult,oldData:daibanItem})
413
- })
414
- }
415
- }
416
- console.log("安检数据为:"+JSON.stringify(daibanArray))
417
- this.safecheckDaiBan = daibanArray
418
- }else {
419
- console.log("待办提醒全局关闭。")
420
- }
421
-
422
-
423
-
424
-
425
- },
426
-
427
- async loginother(){
428
- if (this.config.distanceLogin) {
429
- if (this.$login && this.$login.getUrlParames('name') ) {
430
- let ename = this.$login.getUrlParames('name');
431
- let logininfo = await this.$resetpost('rs/logic/getLoginData',{data:{ename:ename}},{resolveMsg: null, rejectMsg: null});
432
- if(logininfo.data){
433
- if(logininfo.data.ename && logininfo.data.password){
434
- this.model.ename = logininfo.data.ename
435
- this.model.password =logininfo.data.password
436
- let gen = saveGen(this)
437
- return co(gen)
438
- }
439
- }
440
- }
441
- }
442
- },
443
- theme(){
444
- // var elementList = document.querySelectorAll('body');
445
- // console.log(elementList)
446
- // document.querySelectorAll('body')[0].className='themeTwo'
447
- // var elementList = document.querySelectorAll('body');
448
- // console.log(elementList)
449
- },
450
- onReady () {
451
- this.$emit('ready')
452
- },
453
- confirm (key) {
454
- this.login_do=!this.login_do
455
- // return
456
- if (key == 'key') {
457
- $('form').fadeOut(500)
458
- }
459
- this.login = true
460
- // let gen = saveGen(this)
461
- // return co(gen)
462
- if((!this.otherLogin) && this.$login && this.$login.Verification){
463
- console.log('跳转过来的不走验证')
464
- if(this.picLyanzhengma == '') {
465
- this.$showMessage("请输入验证码!").then(()=>{
466
- this.login = false
467
- $('form').fadeIn(500)
468
- this.createCode()
469
- })
470
- }else if(this.picLyanzhengma.toUpperCase() != this.checkCode ) {
471
- //若输入的验证码与产生的验证码不一致时
472
- this.$showMessage("验证码不正确").then(()=>{
473
- this.login = false
474
- $('form').fadeIn(500)
475
- this.createCode();//刷新验证码
476
- this.picLyanzhengma = '';
477
- })
478
- }else {
479
- this.login = true
480
- let gen = saveGen(this)
481
- return co(gen)
482
- }
483
- }else {
484
- this.login = true
485
- let gen = saveGen(this)
486
- return co(gen)
487
- }
488
- },
489
- createCode(){
490
- let code = "";
491
- let codeLength = 4;//验证码的长度
492
- let random = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
493
- 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');//随机数
494
- for (let i = 0; i < codeLength; i++) {
495
- //循环操作
496
- let index = Math.floor(Math.random() * 36);//取得随机数的索引(0~35)
497
- code += random[index];//根据索引取得随机数加到code上
498
- }
499
- this.checkCode = code;//把code值赋给验证码
500
- },
501
-
502
- async depPromptConfirm () {
503
- this.depPromptShow = false
504
- return this.$goto('home-page', {functions: this.$login.f,config: this.config})
505
- },
506
-
507
- depPromptCancel () {
508
- this.depPromptShow = false
509
- this.createCode()
510
- this.picLyanzhengma = ''
511
- this.model.ename = ''
512
- this.model.password = ''
513
- this.login = false
514
- $('form').fadeIn(500)
515
- }
516
- },
517
- watch: {
518
- 'modifyPwShow' (val){
519
- if (!val) {
520
- window.location.reload()
521
- }
522
- }
523
- }
524
- }
525
- </script>
526
-
527
- <style scoped>
528
- .loginmain {
529
- display:flex;
530
- justify-content: center;
531
- }
532
- body {
533
- font-family: 'Source Sans Pro', sans-serif;
534
- color: white;
535
- font-weight: 400;
536
- }
537
-
538
- body ::-webkit-input-placeholder {
539
- /* WebKit browsers */
540
- font-family: 'Source Sans Pro', sans-serif;
541
- color: white;
542
- font-weight: 400;
543
- }
544
-
545
- body :-moz-placeholder {
546
- /* Mozilla Firefox 4 to 18 */
547
- font-family: 'Source Sans Pro', sans-serif;
548
- color: white;
549
- opacity: 1;
550
- font-weight: 400;
551
- }
552
-
553
- body ::-moz-placeholder {
554
- /* Mozilla Firefox 19+ */
555
- font-family: 'Source Sans Pro', sans-serif;
556
- color: white;
557
- opacity: 1;
558
- font-weight: 400;
559
- }
560
-
561
- body :-ms-input-placeholder {
562
- /* Internet Explorer 10+ */
563
- font-family: 'Source Sans Pro', sans-serif;
564
- color: white;
565
- font-weight: 400;
566
- }
567
-
568
- .wrapper {
569
- /*background: #2D83BA;
570
- background: -webkit-linear-gradient(top left, #2D83BA 0%, #2D83BA 100%);
571
- background: linear-gradient(to bottom right, #2D83BA 0%, #2D83BA 100%);
572
- opacity: 0.8;*/
573
- position: absolute;
574
- top: 50%;
575
- right: -60px;
576
- width: 40%;
577
- height: 400px;
578
- margin-top: -150px;
579
- overflow: hidden;
580
-
581
- }
582
-
583
- .wrapper.form-success .container h3 {
584
- -webkit-transform: translateY(85px);
585
- -ms-transform: translateY(85px);
586
- transform: translateY(85px);
587
- }
588
-
589
- .container {
590
- max-width: 350px;
591
- margin: 0 auto;
592
- padding: 30px 100px 50px 100px;
593
- height: 400px;
594
- text-align: center;
595
- /*以下增加*/
596
- background: #2D83BA;
597
- background: -webkit-linear-gradient(top left, #2D83BA 0%, #2D83BA 100%);
598
- background: linear-gradient(to bottom right, #2D83BA 0%, #2D83BA 100%);
599
- opacity: 0.8;
600
- }
601
-
602
- .container h3 {
603
- font-size: 40px;
604
- -webkit-transition-duration: 1s;
605
- transition-duration: 1s;
606
- -webkit-transition-timing-function: ease-in-put;
607
- transition-timing-function: ease-in-put;
608
- font-weight: 200;
609
- }
610
-
611
- .form {
612
- padding: 20px 0;
613
- position: relative;
614
- z-index: 2;
615
- }
616
-
617
- .form input {
618
- -webkit-appearance: none;
619
- -moz-appearance: none;
620
- appearance: none;
621
- outline: 0;
622
- border: 1px solid #50ABE6;
623
- background-color: #50ABE6;
624
- width: 250px;
625
- border-radius: 3px;
626
- padding: 10px 15px;
627
- margin: 0 auto 10px auto;
628
- display: block;
629
- text-align: center;
630
- font-size: 18px;
631
- color: white;
632
- -webkit-transition-duration: 0.25s;
633
- transition-duration: 0.25s;
634
- font-weight: 400;
635
- }
636
-
637
- .form input:hover {
638
- background-color: rgba(255, 255, 255, 0.4);
639
- }
640
-
641
- .form input:focus {
642
- background-color: white;
643
- width: 300px;
644
- color: #53e3a6;
645
- }
646
-
647
- .usericon {
648
- background-image: url(../../../static/usericon.png);
649
- background-repeat: no-repeat;
650
- background-size: 30px;
651
- background-position-x: 8px;
652
- background-position-y: 8px;
653
- }
654
-
655
- .psicon {
656
- background-image: url(../../../static/psicon.png);
657
- background-repeat: no-repeat;
658
- background-size: 30px;
659
- background-position-x: 8px;
660
- background-position-y: 8px;
661
- }
662
-
663
- .form button {
664
- -webkit-appearance: none;
665
- -moz-appearance: none;
666
- appearance: none;
667
- outline: 0;
668
- background-color: white;
669
- border: 0;
670
- padding: 10px 15px;
671
- color: #253830;
672
- border-radius: 3px;
673
- width: 250px;
674
- cursor: pointer;
675
- font-size: 18px;
676
- -webkit-transition-duration: 0.25s;
677
- transition-duration: 0.25s;
678
- }
679
-
680
- .form button:hover {
681
- background-color: #f5f7f9;
682
- }
683
-
684
- /*注册字体样式*/
685
- .form span {
686
- color: #fff;
687
- display: table-footer-group;
688
- position: absolute;
689
- right: 10px;
690
- margin-top: 10px;
691
- cursor: pointer;
692
- }
693
-
694
- .logotitle {
695
- color: #fff;
696
- position: absolute;
697
- top: 50px;
698
- left: 50px;
699
- font-size: 50px;
700
- }
701
-
702
- /*注册模态框界面样式*/
703
- .modifystyle {
704
- background: #FCFEEE;
705
- }
706
-
707
- .modifystyle div {
708
- height: auto;
709
- margin-bottom: 15px;
710
- /*text-align: center;*/
711
- /*margin-left: 20%;*/
712
- }
713
-
714
- /*bootstrap字体图标要手动调整,所以使用字体图标的span必须紧跟在input后面,负责会错位*/
715
- .modifystyle div input + span {
716
- top: 0 !important;
717
- right: 32%;
718
- }
719
-
720
- .modifystyle span {
721
- color: red;
722
- }
723
-
724
- /* 通告区内容 */
725
- .notice-board {
726
- height: auto;
727
- position: absolute;
728
- top: 50%;
729
- margin-top: -150px;
730
- margin-left: 100px;
731
- color: #fff;
732
- }
733
-
734
- /*修改密码底部按钮部分样式*/
735
- .footerbtn {
736
- text-align: center;
737
- padding: 15px;
738
- }
739
-
740
- .footerbtn button {
741
- width: 100px;
742
- margin-left: 20px;
743
- }
744
-
745
- .bg-bubbles {
746
- position: absolute;
747
- top: 0;
748
- left: 0;
749
- width: 100%;
750
- height: 100%;
751
- z-index: 1;
752
- }
753
-
754
- .bg-bubbles li {
755
- position: absolute;
756
- list-style: none;
757
- display: block;
758
- width: 40px;
759
- height: 40px;
760
- background-color: rgba(255, 255, 255, 0.15);
761
- bottom: -160px;
762
- -webkit-animation: square 25s infinite;
763
- animation: square 25s infinite;
764
- -webkit-transition-timing-function: linear;
765
- transition-timing-function: linear;
766
- }
767
-
768
- .bg-bubbles li:nth-child(1) {
769
- left: 10%;
770
- }
771
-
772
- .bg-bubbles li:nth-child(2) {
773
- left: 20%;
774
- width: 80px;
775
- height: 80px;
776
- -webkit-animation-delay: 2s;
777
- animation-delay: 2s;
778
- -webkit-animation-duration: 17s;
779
- animation-duration: 17s;
780
- }
781
-
782
- .bg-bubbles li:nth-child(3) {
783
- left: 25%;
784
- -webkit-animation-delay: 4s;
785
- animation-delay: 4s;
786
- }
787
-
788
- .bg-bubbles li:nth-child(4) {
789
- left: 40%;
790
- width: 60px;
791
- height: 60px;
792
- -webkit-animation-duration: 22s;
793
- animation-duration: 22s;
794
- background-color: rgba(255, 255, 255, 0.25);
795
- }
796
-
797
- .bg-bubbles li:nth-child(5) {
798
- left: 70%;
799
- }
800
-
801
- .bg-bubbles li:nth-child(6) {
802
- left: 80%;
803
- width: 120px;
804
- height: 120px;
805
- -webkit-animation-delay: 3s;
806
- animation-delay: 3s;
807
- background-color: rgba(255, 255, 255, 0.2);
808
- }
809
-
810
- .bg-bubbles li:nth-child(7) {
811
- left: 32%;
812
- width: 160px;
813
- height: 160px;
814
- -webkit-animation-delay: 7s;
815
- animation-delay: 7s;
816
- }
817
-
818
- .bg-bubbles li:nth-child(8) {
819
- left: 55%;
820
- width: 20px;
821
- height: 20px;
822
- -webkit-animation-delay: 15s;
823
- animation-delay: 15s;
824
- -webkit-animation-duration: 40s;
825
- animation-duration: 40s;
826
- }
827
-
828
- .bg-bubbles li:nth-child(9) {
829
- left: 25%;
830
- width: 10px;
831
- height: 10px;
832
- -webkit-animation-delay: 2s;
833
- animation-delay: 2s;
834
- -webkit-animation-duration: 40s;
835
- animation-duration: 40s;
836
- background-color: rgba(255, 255, 255, 0.3);
837
- }
838
-
839
- .bg-bubbles li:nth-child(10) {
840
- left: 90%;
841
- width: 160px;
842
- height: 160px;
843
- -webkit-animation-delay: 11s;
844
- animation-delay: 11s;
845
- }
846
- .logofooter{
847
- font-size: 12px;
848
- color:#fff;
849
- width:150px;
850
- margin-left: 17px;
851
- }
852
- .logocontent{
853
- font-size: 14px;
854
- color:#fff;
855
- width:150px;
856
- margin: 3px -15px;
857
- }
858
- .imglogo {
859
- background:url(../../../static/logo.png);
860
- background-size:100%;
861
- }
862
- .login-form{
863
- border-radius: 10px;
864
- margin: 0 -12%;
865
- background: white;
866
- padding: 5%;
867
- }
868
- .logoew {
869
- width:120px;
870
- height:120px;
871
- float:right;
872
- margin-right:8.5%;
873
- margin-top:10px;
874
- }
875
- .syslogin{
876
- background-image: url(../../../static/newStyle/dongguan1.png) !important;
877
- }
878
- @-webkit-keyframes square {
879
- 0% {
880
- -webkit-transform: translateY(0);
881
- transform: translateY(0);
882
- }
883
- 100% {
884
- -webkit-transform: translateY(-700px) rotate(600deg);
885
- transform: translateY(-700px) rotate(600deg);
886
- }
887
- }
888
-
889
- @keyframes square {
890
- 0% {
891
- -webkit-transform: translateY(0);
892
- transform: translateY(0);
893
- }
894
- 100% {
895
- -webkit-transform: translateY(-700px) rotate(600deg);
896
- transform: translateY(-700px) rotate(600deg);
897
- }
898
-
899
- }
900
- </style>
1
+ <template>
2
+ <div class="syslogin" >
3
+ <div class="login-title" >
4
+ <div class="row auto">
5
+ <marquee style="width:80%;margin-top:25px"><span style="font-size: 1.8rem;color: white;">{{notice}}</span></marquee>
6
+ <div class="login-title-chi" style="white-space: nowrap;margin-right:-5%">
7
+ <div v-if="titleShow">
8
+ <img src="../../../static/newStyle/login-info.png"/>
9
+ <span style="color:#7D7D7D;font-weight: bold;" @click="showus=true">关于我们</span>
10
+ </div>
11
+ <!-- <img src="../../../static/newStyle/login-con.png"/>-->
12
+ <!-- <span>联系我们</span>-->
13
+ </div>
14
+ </div>
15
+ </div>
16
+
17
+ <modal :show.sync="showus" backdrop="true" width="50%" style="width:auto;">
18
+ <article slot="modal-body" class="modal-body" >
19
+ <img style="height:100%;width:100%" src="../../../static/newStyle/dg-about-us.png"/>
20
+ </article>
21
+ <footer slot="modal-footer" class="modal-footer">
22
+ </footer>
23
+ </modal>
24
+
25
+
26
+ <div class="logoew" v-if="logoandroid" >
27
+ <div v-if="logoandroid" class="imglogo"></div>
28
+ <p class="logocontent">燃气客服系统Android版</p>
29
+ <p class="logofooter">(仅浏览器扫描)</p>
30
+ </div>
31
+ <!--输入框-->
32
+ <div class="loginmain" style="margin: 8% 3% 6% 73%;width: 22%;height: 48%;background-color: #00A8E9">
33
+ <!-- <img src="../../../static/login_title1.png" alt="图片加载未完成" class="img-responsive" style="margin: 0 auto; padding-top: 150px;" /> -->
34
+ <!-- <div class="loginmain-left">-->
35
+ <!-- <img class="loginmain-left-img" src="../../../static/newStyle/login-left.png">-->
36
+ <!-- </div>-->
37
+ <div class="loginmain-right" style="float:none;padding:4% 4% 2% 4%;width:80%">
38
+
39
+ <p @click="theme()" style="white-space: nowrap;font-weight:bold; text-align: center;font-size: 4rem;color:white">{{config.title}}</p>
40
+
41
+ <form v-show="!login" class="login-form">
42
+ <!-- <input type="text" placeholder="用户名" v-model="model.ename" class="usericon">-->
43
+ <div class="login-input" style="opacity: 0;position:absolute;width:0;height:0;">
44
+ <img src="../../../static/newStyle/login-user.png"/>
45
+ <input type="text" placeholder="用户名"/>
46
+ </div>
47
+ <div class="login-input" style="opacity: 0;position:absolute;width:0;height:0;">
48
+ <img src="../../../static/newStyle/login-pwd.png"/>
49
+ <input type=password placeholder="密码" @keyup.enter="confirm('key')"/>
50
+ </div>
51
+ <div class="login-input">
52
+ <img src="../../../static/newStyle/login-user.png"/>
53
+ <input type="text" style="display: inline;color:black;background-color: white!important;"
54
+ placeholder="用户名" v-model="model.ename" autocomplete="off"/>
55
+ </div>
56
+ <div class="login-input">
57
+ <img src="../../../static/newStyle/login-pwd.png"/>
58
+ <input type="password" placeholder="密码" style="display: inline;color:black;background-color: darkgray;" v-model="model.password"
59
+ @keyup.enter="confirm('key')" autocomplete="off"/>
60
+ </div>
61
+ <div class="login-input-1" v-if="$login.Verification">
62
+ <img src="../../../static/newStyle/login-check.png"/>
63
+ <input v-if="$login.Verification" class="login-check" type="text" placeholder="请输入验证码"
64
+ v-model="picLyanzhengma" @keyup.enter="confirm('key')"/>
65
+ </div>
66
+ <div class="login-input-2" >
67
+ <input v-if="$login.Verification" class="login-check-1" style="display: inline;background-color:#eeeeee !important;"
68
+ type="button" @click="createCode" v-model="checkCode"/>
69
+ </div>
70
+ <div class="login-bt">
71
+ <button type="button" id="login-button" class="login-button" @click.prevent="confirm('click')">登录</button>
72
+ </div>
73
+ <!-- <input type="password" placeholder="密码" v-model="model.password" class="psicon"-->
74
+ <!-- @keyup.enter="confirm('key')">-->
75
+ <!-- <input v-if="$login.Verification" styljiaoyane="width: 40%; display: inline" type="text" placeholder="请输入验证码"-->
76
+ <!-- v-model="picLyanzhengma" @keyup.enter="confirm('key')">-->
77
+ <!-- <input v-if="$login.Verification" style="width: 30%; display: inline;background-color: darkgray;"-->
78
+ <!-- type="button" @click="createCode" v-model="checkCode"/><br>-->
79
+
80
+ <!-- <button type="button" id="login-button" @click.prevent="confirm()"><strong>注册</strong></button> -->
81
+ <!-- <span @click="register()">还没有注册,现在注册>>></span> -->
82
+ </form>
83
+ <div v-show="login" class="login_load">
84
+ <img src="../../../static/newStyle/login-do.gif">
85
+ </div>
86
+ </div>
87
+ </div>
88
+ <div class="login-foot" style="margin-top:11%;font-weight: bold;color:#7D7D7D" v-show="true">
89
+ 技术支持:东莞市伊米斯智能科技有限公司 粤ICP备2022095777号-1
90
+ </div>
91
+ <div class="login-foot" v-show="$login.BAinformation">
92
+ {{{ $login.BAinformation }}}
93
+ </div>
94
+
95
+ <modal v-if="depPromptShow" :show.sync="depPromptShow" :backdrop="false" v-ref:modal >
96
+ <header slot="modal-header" style="height: 8vh" class="modal-header">
97
+ <!--<h4 class="modal-title">登录信息</h4>-->
98
+ </header>
99
+ <article slot="modal-body" class="modal-body">
100
+ <form class="form-horizontal">
101
+ <div class="row">
102
+ <div class="col-sm-12 form-group">
103
+ <label class="col-sm-5 ">当前登录人:</label>
104
+ <label style="font-weight:normal">{{$login.f.name}}</label>
105
+ </div>
106
+ <!--<div class="col-sm-12 form-group" v-if="$login.f.number">-->
107
+ <!--<label class="col-sm-5 ">组&nbsp;织&nbsp;编&nbsp;码:</label>-->
108
+ <!--<label style="font-weight:normal">{{$login.f.number}}</label>-->
109
+ <!-- <div class="col-sm-7">
110
+ <span >{{$login.f.number}}</span>
111
+ </div> -->
112
+ <!--</div>-->
113
+ <div class="col-sm-12 form-group">
114
+ <label class="col-sm-5">所在销售点:</label>
115
+ <label style="font-weight:normal">{{$login.f.deps}}</label>
116
+ <!-- <div class="col-sm-7">
117
+ <span >{{$login.f.deps}}</span>
118
+ </div> -->
119
+ </div>
120
+ <div class="col-sm-12 " v-if="AppDaiBan !==''">
121
+ <label class="col-sm-2">报装待办:</label>
122
+ <span style="font-weight:normal">{{AppDaiBan}}</span>
123
+ </div>
124
+ <div class="col-sm-12 " v-if="OrderDaiBan !==''">
125
+ <label class="col-sm-2">预约待办:</label>
126
+ <span style="font-weight:normal">{{OrderDaiBan}}</span>
127
+ </div>
128
+ <div class="col-sm-12 " v-for="daibanitem in safecheckDaiBan">
129
+ <label class="col-sm-2">{{daibanitem.oldData.title}}:</label>
130
+ <span style="font-weight:normal">{{daibanitem.text}}</span>
131
+ </div>
132
+ </div>
133
+ </form>
134
+ </article>
135
+ <footer slot="modal-footer" style="height: 8vh" class="modal-footer">
136
+ <button class="button_search" @click="depPromptConfirm">确认</button>
137
+ <button class="button_clear" @click="depPromptCancel">取消</button>
138
+ </footer>
139
+ </modal>
140
+
141
+ <!-- 修改密码组件 -->
142
+ <modify-pw :show.sync="modifyPwShow" v-if="modifyPwShow"></modify-pw>
143
+ </div>
144
+
145
+ </template>
146
+
147
+ <script>
148
+ import co from 'co'
149
+ import $ from 'jquery'
150
+ import Vue from 'vue'
151
+ import {HttpResetClass} from 'vue-client'
152
+
153
+ let daibanJson = require('../../util/Daiban.json')
154
+
155
+
156
+ let saveGen = function *(self) {
157
+ try {
158
+ if(self.$login){
159
+ // 账号ename,密码password,是否显示异地登陆
160
+ yield self.$login.login(self.model.ename, self.model.password, true)
161
+ }
162
+ if(self.$appdata){
163
+ yield self.$appdata.load()
164
+
165
+ }
166
+ if (Vue.$heatCompatibility) {
167
+ try {
168
+ if(self.$loginHeat){
169
+ yield self.$loginHeat.login(self.model.ename, self.model.password)
170
+ }
171
+ if(self.$appdataHeat){
172
+ yield self.$appdataHeat.load()
173
+ }
174
+ } catch (e) {
175
+ console.log('热力系统登陆失败!')
176
+ }
177
+ }
178
+ yield self.$getConfig(self, 'Login')
179
+ console.log('登录配置', self.config)
180
+ if (self.config.isMac) {
181
+ // 获取该登录人分公司下的mac配置
182
+ let getMacs = yield self.$resetpost('rs/sql/equipmentQuery', {data: {condition: `f_filialeids like '%${self.$login.f.f_orgids}%'`}}, {
183
+ resolveMsg: null,
184
+ rejectMsg: null
185
+ }).catch(() => {
186
+ throw new Error('获取mac配置失败')
187
+ })
188
+ console.log('MAC地址信息', getMacs)
189
+ // 获取本地mac地址
190
+ let getLocalMac = yield self.$resetget('http://127.0.0.1:8003/loadmac', {
191
+ resolveMsg: null,
192
+ rejectMsg: null
193
+ }).catch(() => {
194
+ throw new Error('获取本地mac配置失败')
195
+ })
196
+ console.log('本地MAC地址信息', getLocalMac)
197
+ // 对Mac地址进行匹配
198
+ let macValidate = false
199
+ for (let i = 0; i < getLocalMac.data.mac.length; i++) {
200
+ for (let j = 0; j < getMacs.data.length; j++) {
201
+ if (getMacs.data[j].f_mac_number.toLocaleUpperCase() === getLocalMac.data.mac[i]) {
202
+ macValidate = true
203
+ }
204
+ }
205
+ }
206
+ if (!macValidate) {
207
+ throw new Error('Mac地址验证失败, 请联系管理员!!')
208
+ }
209
+ }
210
+ console.log(self.$login.depPrompt)
211
+ // 弱口令验证
212
+ //跳转过来的不进行验证
213
+ if ((!self.otherLogin) && self.config.weakPassword && !(/^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{8,16}$/.test(self.model.password))) {
214
+ self.$showMessage('登录系统: 此账户的密码过于简单,请修改密码后重新登陆!!!', ['confirm']).then((res) => {
215
+ self.modifyPwShow = true
216
+ })
217
+ } else if ((!self.otherLogin) && self.$login.depPrompt) {
218
+ self.depPromptShow = true
219
+ if (self.$login.showDaiBan && self.$login.r.includes('展示预约信息')){
220
+ // 获取待办
221
+ self.getDaiBan()
222
+
223
+ }
224
+ if (self.$login.showDaiBan && self.$login.r.includes('登录预约信息')){
225
+ // 获取待办 在util下有个Daiban.jsond 文件 ,在里面进行配置,在功能权限界面增加登录预约信息
226
+ self.getDaiBanA()
227
+ }
228
+ } else {
229
+ self.$goto('home-page', {functions: self.$login.f,config: self.config})
230
+ // if (self.otherLogin){
231
+ // window.history.pushState(null,null,'')
232
+ // }
233
+ if (self.$login) {
234
+ console.log('登录信息', self.$login.f)
235
+ global.login=self.$login.f
236
+ console.log('登录信息', global.login)
237
+ }
238
+ }
239
+
240
+ } catch (ret) {
241
+ console.error('登录失败', ret)
242
+ let msg
243
+ if (ret instanceof Error) {
244
+ msg = ret
245
+ }
246
+ if (ret.status === 0) {
247
+ msg = '服务连接错误,请确认服务状态'
248
+ } else if (ret.status === 401) {
249
+ msg = ret.data
250
+ } else if (ret.status === 710) {
251
+ msg = ret.data
252
+ }
253
+ self.createCode()
254
+ self.picLyanzhengma = ''
255
+ yield self.$showMessage(msg)
256
+ self.model.ename = ''
257
+ self.model.password = ''
258
+ self.login = false
259
+ $('form').fadeIn(500)
260
+ }
261
+ }
262
+ export default {
263
+ title: '登录',
264
+ async ready () {
265
+ this.titleShow = true
266
+ try{
267
+ let http = new HttpResetClass()
268
+ let res = await http.load('POST', 'rs/sql/singleTable',
269
+ {data:{
270
+ tablename: 't_changedeclare',
271
+ condition: ` f_type ='变更通知' `
272
+ }
273
+ }, {resolveMsg: null, rejectMsg: null})
274
+ if(res.data.length>0){
275
+ console.log("---------------获取通知",res.data[0].f_change_message)
276
+ this.notice=res.data[0].f_change_message
277
+ }
278
+ }catch(e){}
279
+
280
+ this.loginother();
281
+ $('#login-button').click(function (event) {
282
+ event.preventDefault()
283
+ $('form').fadeOut(500)
284
+ })
285
+ if (window.location.search && window.location.search.indexOf('af_key') !== -1&& window.location.search.indexOf('af_n') !== -1) {
286
+ const subUrl = window.location.search.replace('?af_key=','').split('&af_n=')
287
+ console.log(subUrl)
288
+ this.model.ename = window.atob(subUrl[0])
289
+ this.model.password = window.atob(subUrl[1])
290
+ console.log('this.model.ename',this.model.ename)
291
+ this.otherLogin = true
292
+ this.confirm()
293
+ }else{
294
+ //跳转不需要验证码
295
+ this.createCode()
296
+ }
297
+ console.log(this.$login)
298
+ },
299
+ data () {
300
+ return {
301
+ image:{
302
+ img1: '/images/newStyle/login-info.png',
303
+ img2: '/images/newStyle/login-con.png',
304
+ img3: '/images/newStyle/login-left.png',
305
+ img4: '/images/newStyle/login-user.png',
306
+ img5: '/images/newStyle/login-pwd.png',
307
+ img6: '/images/newStyle/login-check.png',
308
+ img7: '/images/newStyle/login-do.png',
309
+ },
310
+ config: {
311
+ isMac: false,
312
+ depPrompt: false,
313
+ weakPassword: false,
314
+ title: '伊米斯燃气云',
315
+ distanceLogin: false,
316
+ // 那些角色可以定时获取预约提示
317
+ isTip : false,
318
+ // 那些角色可以定时获取预约提示
319
+ msgRole : '预约处理人员',
320
+ // 定时获取提示间隔 单位:分钟
321
+ times: 25,
322
+ },
323
+ titleShow: true, //标题显示
324
+ otherLogin:false,
325
+ login: false,
326
+ depPromptShow: false,
327
+ model: {},
328
+ show: false,
329
+ checkCode: '',
330
+ login_do:true,
331
+ picLyanzhengma: '',
332
+ // 修改密码弹框展示
333
+ modifyPwShow: false,
334
+ logoandroid:false,
335
+ showus:false,
336
+ notice:'',
337
+ loginotherflag :true,
338
+ // 报建待办
339
+ AppDaiBan: '',
340
+ //安检待办
341
+ safecheckDaiBan:[],
342
+ // 预约待处理
343
+ OrderDaiBan: ''
344
+ }
345
+ },
346
+ methods: {
347
+ async getDaiBan(){
348
+ let http = new HttpResetClass()
349
+ let condition = ''
350
+ if(this.$login.f.deps!=='柠条塔'){
351
+ condition = ` (f_orderstate != '预约成功' and f_orderstate != '预约失败' ) or f_orderstate is null `
352
+ } else {
353
+ condition =` f_orderstate is null and (f_address in( select f_address from t_user_address where f_slice_area='柠条塔') or f_address like '%柠条塔%') `
354
+ }
355
+ await http.load('POST', '/rs/sql/singleTable', {data: {
356
+ tablename:'t_order_center',
357
+ condition:condition
358
+ }}, {
359
+ resolveMsg: null,
360
+ rejectMsg: null
361
+ }).then((res) => {
362
+ let OrderDaiBan = {}
363
+ res.data.forEach(item=>{
364
+ OrderDaiBan[item.f_ordertype] = OrderDaiBan[item.f_ordertype] || []
365
+ OrderDaiBan[item.f_ordertype].push(item)
366
+ })
367
+ this.OrderDaiBan = `您有${res.data.length}条需要处理的微信预约业务!`
368
+ if (res.data.length> 0){
369
+ this.OrderDaiBan += `其中 ${Object.keys(OrderDaiBan).map(key=>`${key}:${OrderDaiBan[key].length}条`).join(', ')}`
370
+ }
371
+ })
372
+ let data = {
373
+ condition: '1 = 1',
374
+ data: {
375
+ orgid: this.$login.f.orgid,
376
+ id: this.$login.f.id
377
+ }
378
+ }
379
+ await http.load('POST', '/rs/sql/checkuser', {data: data}, {
380
+ resolveMsg: null,
381
+ rejectMsg: null
382
+ }).then((res) => {
383
+ let AppDaiBan = {}
384
+ res.data.forEach(item=>{
385
+ AppDaiBan[item.defname] = AppDaiBan[item.defname] || []
386
+ AppDaiBan[item.defname].push(item)
387
+ })
388
+ this.AppDaiBan = `您有${res.data.length}条需要处理的报建待办业务!`
389
+ if (res.data.length> 0){
390
+ this.AppDaiBan += `其中 ${Object.keys(AppDaiBan).map(key=>`${key}:${AppDaiBan[key].length}条`).join(', ')}`
391
+ }
392
+ })
393
+
394
+ },
395
+ async getDaiBanA(){
396
+ // 是否全局开启待办通知
397
+ if (daibanJson.enable) {
398
+ console.log("当前获取到待办配置为" + JSON.stringify(daibanJson))
399
+ let http = new HttpResetClass()
400
+ let daibanArray = []
401
+ for (let daibanItem of daibanJson.daiban) {
402
+ console.log("开始处理待办任务:" + daibanItem.title + "当前任务状态:" + daibanItem.enable?"开启":"关闭" )
403
+ if (daibanItem.enable) { // 控制每一项通知是否开启
404
+ let postResult = ''; //提示信息为
405
+ await http.load("POST",daibanItem.url,{data:daibanItem.data},{ resolveMsg: null, rejectMsg: null})
406
+ .then((res)=>{
407
+ let responseData = res.data
408
+ for (let item of responseData) {
409
+ postResult += eval(daibanItem.text) + "\n"
410
+ }
411
+ postResult += '\t'
412
+ daibanArray.push({text:postResult,oldData:daibanItem})
413
+ })
414
+ }
415
+ }
416
+ console.log("安检数据为:"+JSON.stringify(daibanArray))
417
+ this.safecheckDaiBan = daibanArray
418
+ }else {
419
+ console.log("待办提醒全局关闭。")
420
+ }
421
+
422
+
423
+
424
+
425
+ },
426
+
427
+ async loginother(){
428
+ if (this.config.distanceLogin) {
429
+ if (this.$login && this.$login.getUrlParames('name') ) {
430
+ let ename = this.$login.getUrlParames('name');
431
+ let logininfo = await this.$resetpost('rs/logic/getLoginData',{data:{ename:ename}},{resolveMsg: null, rejectMsg: null});
432
+ if(logininfo.data){
433
+ if(logininfo.data.ename && logininfo.data.password){
434
+ this.model.ename = logininfo.data.ename
435
+ this.model.password =logininfo.data.password
436
+ let gen = saveGen(this)
437
+ return co(gen)
438
+ }
439
+ }
440
+ }
441
+ }
442
+ },
443
+ theme(){
444
+ // var elementList = document.querySelectorAll('body');
445
+ // console.log(elementList)
446
+ // document.querySelectorAll('body')[0].className='themeTwo'
447
+ // var elementList = document.querySelectorAll('body');
448
+ // console.log(elementList)
449
+ },
450
+ onReady () {
451
+ this.$emit('ready')
452
+ },
453
+ confirm (key) {
454
+ this.login_do=!this.login_do
455
+ // return
456
+ if (key == 'key') {
457
+ $('form').fadeOut(500)
458
+ }
459
+ this.login = true
460
+ // let gen = saveGen(this)
461
+ // return co(gen)
462
+ if((!this.otherLogin) && this.$login && this.$login.Verification){
463
+ console.log('跳转过来的不走验证')
464
+ if(this.picLyanzhengma == '') {
465
+ this.$showMessage("请输入验证码!").then(()=>{
466
+ this.login = false
467
+ $('form').fadeIn(500)
468
+ this.createCode()
469
+ })
470
+ }else if(this.picLyanzhengma.toUpperCase() != this.checkCode ) {
471
+ //若输入的验证码与产生的验证码不一致时
472
+ this.$showMessage("验证码不正确").then(()=>{
473
+ this.login = false
474
+ $('form').fadeIn(500)
475
+ this.createCode();//刷新验证码
476
+ this.picLyanzhengma = '';
477
+ })
478
+ }else {
479
+ this.login = true
480
+ let gen = saveGen(this)
481
+ return co(gen)
482
+ }
483
+ }else {
484
+ this.login = true
485
+ let gen = saveGen(this)
486
+ return co(gen)
487
+ }
488
+ },
489
+ createCode(){
490
+ let code = "";
491
+ let codeLength = 4;//验证码的长度
492
+ let random = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
493
+ 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');//随机数
494
+ for (let i = 0; i < codeLength; i++) {
495
+ //循环操作
496
+ let index = Math.floor(Math.random() * 36);//取得随机数的索引(0~35)
497
+ code += random[index];//根据索引取得随机数加到code上
498
+ }
499
+ this.checkCode = code;//把code值赋给验证码
500
+ },
501
+
502
+ async depPromptConfirm () {
503
+ this.depPromptShow = false
504
+ return this.$goto('home-page', {functions: this.$login.f,config: this.config})
505
+ },
506
+
507
+ depPromptCancel () {
508
+ this.depPromptShow = false
509
+ this.createCode()
510
+ this.picLyanzhengma = ''
511
+ this.model.ename = ''
512
+ this.model.password = ''
513
+ this.login = false
514
+ $('form').fadeIn(500)
515
+ }
516
+ },
517
+ watch: {
518
+ 'modifyPwShow' (val){
519
+ if (!val) {
520
+ window.location.reload()
521
+ }
522
+ }
523
+ }
524
+ }
525
+ </script>
526
+
527
+ <style scoped>
528
+ .loginmain {
529
+ display:flex;
530
+ justify-content: center;
531
+ }
532
+ body {
533
+ font-family: 'Source Sans Pro', sans-serif;
534
+ color: white;
535
+ font-weight: 400;
536
+ }
537
+
538
+ body ::-webkit-input-placeholder {
539
+ /* WebKit browsers */
540
+ font-family: 'Source Sans Pro', sans-serif;
541
+ color: white;
542
+ font-weight: 400;
543
+ }
544
+
545
+ body :-moz-placeholder {
546
+ /* Mozilla Firefox 4 to 18 */
547
+ font-family: 'Source Sans Pro', sans-serif;
548
+ color: white;
549
+ opacity: 1;
550
+ font-weight: 400;
551
+ }
552
+
553
+ body ::-moz-placeholder {
554
+ /* Mozilla Firefox 19+ */
555
+ font-family: 'Source Sans Pro', sans-serif;
556
+ color: white;
557
+ opacity: 1;
558
+ font-weight: 400;
559
+ }
560
+
561
+ body :-ms-input-placeholder {
562
+ /* Internet Explorer 10+ */
563
+ font-family: 'Source Sans Pro', sans-serif;
564
+ color: white;
565
+ font-weight: 400;
566
+ }
567
+
568
+ .wrapper {
569
+ /*background: #2D83BA;
570
+ background: -webkit-linear-gradient(top left, #2D83BA 0%, #2D83BA 100%);
571
+ background: linear-gradient(to bottom right, #2D83BA 0%, #2D83BA 100%);
572
+ opacity: 0.8;*/
573
+ position: absolute;
574
+ top: 50%;
575
+ right: -60px;
576
+ width: 40%;
577
+ height: 400px;
578
+ margin-top: -150px;
579
+ overflow: hidden;
580
+
581
+ }
582
+
583
+ .wrapper.form-success .container h3 {
584
+ -webkit-transform: translateY(85px);
585
+ -ms-transform: translateY(85px);
586
+ transform: translateY(85px);
587
+ }
588
+
589
+ .container {
590
+ max-width: 350px;
591
+ margin: 0 auto;
592
+ padding: 30px 100px 50px 100px;
593
+ height: 400px;
594
+ text-align: center;
595
+ /*以下增加*/
596
+ background: #2D83BA;
597
+ background: -webkit-linear-gradient(top left, #2D83BA 0%, #2D83BA 100%);
598
+ background: linear-gradient(to bottom right, #2D83BA 0%, #2D83BA 100%);
599
+ opacity: 0.8;
600
+ }
601
+
602
+ .container h3 {
603
+ font-size: 40px;
604
+ -webkit-transition-duration: 1s;
605
+ transition-duration: 1s;
606
+ -webkit-transition-timing-function: ease-in-put;
607
+ transition-timing-function: ease-in-put;
608
+ font-weight: 200;
609
+ }
610
+
611
+ .form {
612
+ padding: 20px 0;
613
+ position: relative;
614
+ z-index: 2;
615
+ }
616
+
617
+ .form input {
618
+ -webkit-appearance: none;
619
+ -moz-appearance: none;
620
+ appearance: none;
621
+ outline: 0;
622
+ border: 1px solid #50ABE6;
623
+ background-color: #50ABE6;
624
+ width: 250px;
625
+ border-radius: 3px;
626
+ padding: 10px 15px;
627
+ margin: 0 auto 10px auto;
628
+ display: block;
629
+ text-align: center;
630
+ font-size: 18px;
631
+ color: white;
632
+ -webkit-transition-duration: 0.25s;
633
+ transition-duration: 0.25s;
634
+ font-weight: 400;
635
+ }
636
+
637
+ .form input:hover {
638
+ background-color: rgba(255, 255, 255, 0.4);
639
+ }
640
+
641
+ .form input:focus {
642
+ background-color: white;
643
+ width: 300px;
644
+ color: #53e3a6;
645
+ }
646
+
647
+ .usericon {
648
+ background-image: url(../../../static/usericon.png);
649
+ background-repeat: no-repeat;
650
+ background-size: 30px;
651
+ background-position-x: 8px;
652
+ background-position-y: 8px;
653
+ }
654
+
655
+ .psicon {
656
+ background-image: url(../../../static/psicon.png);
657
+ background-repeat: no-repeat;
658
+ background-size: 30px;
659
+ background-position-x: 8px;
660
+ background-position-y: 8px;
661
+ }
662
+
663
+ .form button {
664
+ -webkit-appearance: none;
665
+ -moz-appearance: none;
666
+ appearance: none;
667
+ outline: 0;
668
+ background-color: white;
669
+ border: 0;
670
+ padding: 10px 15px;
671
+ color: #253830;
672
+ border-radius: 3px;
673
+ width: 250px;
674
+ cursor: pointer;
675
+ font-size: 18px;
676
+ -webkit-transition-duration: 0.25s;
677
+ transition-duration: 0.25s;
678
+ }
679
+
680
+ .form button:hover {
681
+ background-color: #f5f7f9;
682
+ }
683
+
684
+ /*注册字体样式*/
685
+ .form span {
686
+ color: #fff;
687
+ display: table-footer-group;
688
+ position: absolute;
689
+ right: 10px;
690
+ margin-top: 10px;
691
+ cursor: pointer;
692
+ }
693
+
694
+ .logotitle {
695
+ color: #fff;
696
+ position: absolute;
697
+ top: 50px;
698
+ left: 50px;
699
+ font-size: 50px;
700
+ }
701
+
702
+ /*注册模态框界面样式*/
703
+ .modifystyle {
704
+ background: #FCFEEE;
705
+ }
706
+
707
+ .modifystyle div {
708
+ height: auto;
709
+ margin-bottom: 15px;
710
+ /*text-align: center;*/
711
+ /*margin-left: 20%;*/
712
+ }
713
+
714
+ /*bootstrap字体图标要手动调整,所以使用字体图标的span必须紧跟在input后面,负责会错位*/
715
+ .modifystyle div input + span {
716
+ top: 0 !important;
717
+ right: 32%;
718
+ }
719
+
720
+ .modifystyle span {
721
+ color: red;
722
+ }
723
+
724
+ /* 通告区内容 */
725
+ .notice-board {
726
+ height: auto;
727
+ position: absolute;
728
+ top: 50%;
729
+ margin-top: -150px;
730
+ margin-left: 100px;
731
+ color: #fff;
732
+ }
733
+
734
+ /*修改密码底部按钮部分样式*/
735
+ .footerbtn {
736
+ text-align: center;
737
+ padding: 15px;
738
+ }
739
+
740
+ .footerbtn button {
741
+ width: 100px;
742
+ margin-left: 20px;
743
+ }
744
+
745
+ .bg-bubbles {
746
+ position: absolute;
747
+ top: 0;
748
+ left: 0;
749
+ width: 100%;
750
+ height: 100%;
751
+ z-index: 1;
752
+ }
753
+
754
+ .bg-bubbles li {
755
+ position: absolute;
756
+ list-style: none;
757
+ display: block;
758
+ width: 40px;
759
+ height: 40px;
760
+ background-color: rgba(255, 255, 255, 0.15);
761
+ bottom: -160px;
762
+ -webkit-animation: square 25s infinite;
763
+ animation: square 25s infinite;
764
+ -webkit-transition-timing-function: linear;
765
+ transition-timing-function: linear;
766
+ }
767
+
768
+ .bg-bubbles li:nth-child(1) {
769
+ left: 10%;
770
+ }
771
+
772
+ .bg-bubbles li:nth-child(2) {
773
+ left: 20%;
774
+ width: 80px;
775
+ height: 80px;
776
+ -webkit-animation-delay: 2s;
777
+ animation-delay: 2s;
778
+ -webkit-animation-duration: 17s;
779
+ animation-duration: 17s;
780
+ }
781
+
782
+ .bg-bubbles li:nth-child(3) {
783
+ left: 25%;
784
+ -webkit-animation-delay: 4s;
785
+ animation-delay: 4s;
786
+ }
787
+
788
+ .bg-bubbles li:nth-child(4) {
789
+ left: 40%;
790
+ width: 60px;
791
+ height: 60px;
792
+ -webkit-animation-duration: 22s;
793
+ animation-duration: 22s;
794
+ background-color: rgba(255, 255, 255, 0.25);
795
+ }
796
+
797
+ .bg-bubbles li:nth-child(5) {
798
+ left: 70%;
799
+ }
800
+
801
+ .bg-bubbles li:nth-child(6) {
802
+ left: 80%;
803
+ width: 120px;
804
+ height: 120px;
805
+ -webkit-animation-delay: 3s;
806
+ animation-delay: 3s;
807
+ background-color: rgba(255, 255, 255, 0.2);
808
+ }
809
+
810
+ .bg-bubbles li:nth-child(7) {
811
+ left: 32%;
812
+ width: 160px;
813
+ height: 160px;
814
+ -webkit-animation-delay: 7s;
815
+ animation-delay: 7s;
816
+ }
817
+
818
+ .bg-bubbles li:nth-child(8) {
819
+ left: 55%;
820
+ width: 20px;
821
+ height: 20px;
822
+ -webkit-animation-delay: 15s;
823
+ animation-delay: 15s;
824
+ -webkit-animation-duration: 40s;
825
+ animation-duration: 40s;
826
+ }
827
+
828
+ .bg-bubbles li:nth-child(9) {
829
+ left: 25%;
830
+ width: 10px;
831
+ height: 10px;
832
+ -webkit-animation-delay: 2s;
833
+ animation-delay: 2s;
834
+ -webkit-animation-duration: 40s;
835
+ animation-duration: 40s;
836
+ background-color: rgba(255, 255, 255, 0.3);
837
+ }
838
+
839
+ .bg-bubbles li:nth-child(10) {
840
+ left: 90%;
841
+ width: 160px;
842
+ height: 160px;
843
+ -webkit-animation-delay: 11s;
844
+ animation-delay: 11s;
845
+ }
846
+ .logofooter{
847
+ font-size: 12px;
848
+ color:#fff;
849
+ width:150px;
850
+ margin-left: 17px;
851
+ }
852
+ .logocontent{
853
+ font-size: 14px;
854
+ color:#fff;
855
+ width:150px;
856
+ margin: 3px -15px;
857
+ }
858
+ .imglogo {
859
+ background:url(../../../static/logo.png);
860
+ background-size:100%;
861
+ }
862
+ .login-form{
863
+ border-radius: 10px;
864
+ margin: 0 -12%;
865
+ background: white;
866
+ padding: 5%;
867
+ }
868
+ .logoew {
869
+ width:120px;
870
+ height:120px;
871
+ float:right;
872
+ margin-right:8.5%;
873
+ margin-top:10px;
874
+ }
875
+ .syslogin{
876
+ background-image: url(../../../static/newStyle/dongguan1.png) !important;
877
+ }
878
+ @-webkit-keyframes square {
879
+ 0% {
880
+ -webkit-transform: translateY(0);
881
+ transform: translateY(0);
882
+ }
883
+ 100% {
884
+ -webkit-transform: translateY(-700px) rotate(600deg);
885
+ transform: translateY(-700px) rotate(600deg);
886
+ }
887
+ }
888
+
889
+ @keyframes square {
890
+ 0% {
891
+ -webkit-transform: translateY(0);
892
+ transform: translateY(0);
893
+ }
894
+ 100% {
895
+ -webkit-transform: translateY(-700px) rotate(600deg);
896
+ transform: translateY(-700px) rotate(600deg);
897
+ }
898
+
899
+ }
900
+ </style>