system-clients 3.2.1-10 → 3.2.1-11

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.
@@ -207,6 +207,8 @@ let GetLoginInfoService = {
207
207
  afterLogin: [],
208
208
  //验证码开关
209
209
  Verification: true,
210
+ //登录信息展示开关
211
+ depPrompt: true,
210
212
  install (Vue, options) {
211
213
  // 给vue增添对话框显示方法
212
214
  Vue.$login = Vue.prototype.$login = GetLoginInfoService
package/src/system.js CHANGED
@@ -26,11 +26,16 @@ import ResSelectGroup from './components/server/ResSelectGroup'
26
26
  //资源选择测试
27
27
  import TestResSelect from './components/server/TestResSelect'
28
28
  import RoleSelector from "./components/server/RoleSelector";
29
- export default function (val, filiale) {
29
+ export default function (val,filiale,showLogin) {
30
+ console.log(val,filiale,showLogin)
30
31
  //验证码开关赋值
31
32
  if(val!=null){
32
33
  GetLoginInfoService.Verification=val
33
34
  }
35
+ //登录提示赋值
36
+ if(showLogin!=null){
37
+ GetLoginInfoService.depPrompt=showLogin
38
+ }
34
39
  Vue.use(GetLoginInfoService)
35
40
  Vue.use(GetAppDataService)
36
41
  Vue.use(HeatGetLoginInfoService)