system-clients 3.1.70 → 3.1.71-ls

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.
@@ -7,16 +7,16 @@ module.exports = {
7
7
  app: './src/main.js'
8
8
  },
9
9
  output: {
10
- path: path.resolve(__dirname, '../dist/mergeUser'),
11
- publicPath: 'mergeUser/',
10
+ path: path.resolve(__dirname, '../dist/static'),
11
+ publicPath: 'static/',
12
12
  filename: '[name].js'
13
13
  },
14
14
  resolve: {
15
15
  extensions: ['', '.js', '.vue'],
16
16
  fallback: [path.join(__dirname, '../node_modules')],
17
17
  alias: {
18
- 'src': path.resolve(__dirname, '../src'),
19
18
  'test': path.resolve(__dirname, '../test'),
19
+ 'src': path.resolve(__dirname, '../src')
20
20
  }
21
21
  },
22
22
  resolveLoader: {
@@ -32,15 +32,12 @@ module.exports = {
32
32
  test: /\.js$/,
33
33
  loader: 'babel',
34
34
  include: [
35
- /src/,
36
- /build/,
37
- /examples/,
38
- /test/,
39
- /node_modules\/vue-client\/src/,
40
- /node_modules\/vue-strap\/src/,
41
- /node_modules\/system-clients\/src/,
42
- /node_modules\/ldap-clients\/src/,
43
- /node_modules\/manage-client\/src/
35
+ `${projectRoot}\\src`,
36
+ `${projectRoot}\\build`,
37
+ `${projectRoot}\\examples`,
38
+ `${projectRoot}\\test`,
39
+ `${projectRoot}\\node_modules\\vue-client\\src`,
40
+ `${projectRoot}\\node_modules\\vue-strap\\src`
44
41
  ]
45
42
  },
46
43
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "system-clients",
3
- "version": "3.1.70",
3
+ "version": "3.1.71-ls",
4
4
  "description": "系统基础框架",
5
5
  "main": "src/index.js",
6
6
  "directories": {
package/src/App.vue CHANGED
@@ -1,24 +1,24 @@
1
- <template>
2
- <app-base class="bg">
3
- <div class='flex'>
4
- <article>
5
- <!--<route :comp="{name: 'check-model'}"></route>-->
6
- <!--<route :comp="{name: 'vender-management'}"></route>-->
7
- <route :comp="{name: 'login'}"></route>
8
- <!-- <route :comp="{name: 'load-data'}"></route> -->
9
- <!-- <route :comp="{name: 'load-params', props: {componentName: 'login'}}"></route> -->
10
- <!-- <route :comp="{name: 'load-params', props: {dataUrl: ['rs/sql/getMeterBrand','rs/sql/getPriceType','rs/sql/getMeterStyle'], componentName: 'login'}}"></route> -->
11
- </article>
12
- </div>
13
- </app-base>
14
- </template>
15
-
16
- <script>
17
- // import cardListen from './plugins/CardListen'
18
-
19
- export default {
20
- // ready () {
21
- // cardListen.startListen()
22
- // }
23
- }
24
- </script>
1
+ <template>
2
+ <app-base class="bg">
3
+ <div class='flex'>
4
+ <article>
5
+ <!--<route :comp="{name: 'check-model'}"></route>-->
6
+ <!--<route :comp="{name: 'vender-management'}"></route>-->
7
+ <route :comp="{name: 'login'}"></route>
8
+ <!-- <route :comp="{name: 'load-data'}"></route> -->
9
+ <!-- <route :comp="{name: 'load-params', props: {componentName: 'login'}}"></route> -->
10
+ <!-- <route :comp="{name: 'load-params', props: {dataUrl: ['rs/sql/getMeterBrand','rs/sql/getPriceType','rs/sql/getMeterStyle'], componentName: 'login'}}"></route> -->
11
+ </article>
12
+ </div>
13
+ </app-base>
14
+ </template>
15
+
16
+ <script>
17
+ // import cardListen from './plugins/CardListen'
18
+
19
+ export default {
20
+ // ready () {
21
+ // cardListen.startListen()
22
+ // }
23
+ }
24
+ </script>
@@ -1,315 +1,315 @@
1
- <template>
2
- <dropdown :model='model' class="auto" id="res-tree" v-if="!islist" v-el:dropdown :style="{width:width}">
3
- <button type="button" class="btn btn-default dropdown-toggle select-style" data-toggle="dropdown">
4
- <span class='btn-content' :style="{textOverflow:'ellipsis',overflow: 'hidden'}">{{ orgnames }}</span>
5
- <span class="caret"></span>
6
- </button>
7
- <div class="dropdown-menu auto" style="width:auto;max-height: 500px;overflow: auto" >
8
- <input type="text" placeholder="Search"
9
- placeholder='请输入'
10
- slot="dropdown-menu"
11
- v-model="searchText"
12
- class="form-control" autocomplete="off"
13
- @keydown.enter="buluer(searchText)">
14
- <tree :filter="strsign" :model='model' v-ref:tree :is-click="false" role="menu">
15
- <span partial>
16
- <span class="glyphicon glyphicon-chevron-down" v-show="row.open&&row.data.children.length>0" style="color:balck;"></span>
17
- <span class="glyphicon glyphicon-chevron-right" v-show="!row.open&&row.data.children.length>0" style="color:balck;"></span>
18
- <span class="RightTreeCanSelect" v-if="row.data.hasright" @click.stop="$parent.$parent.$parent.selectclick(row.data)">{{row.data.name}}</span>
19
- <span class="RightTreeCanNotSelect" v-else>{{row.data.name}}</span>
20
- <span class="glyphicon glyphicon-ok " v-if="$parent.$parent.$parent.isSelect(row.data.id)" style="color:balck;"></span>
21
- </span>
22
- </tree>
23
- </div>
24
-
25
- </dropdown>
26
- <v-select v-if="islist"
27
- placeholder='请选择'
28
- :options='childrenOptions'
29
- @change="selectclick"
30
- :value-single="true"
31
- close-on-select></v-select>
32
- </template>
33
- <script>
34
- import Vue from 'vue';
35
- import co from 'co'
36
- import { PagedList, HttpResetClass } from 'vue-client'
37
- import * as ldapHelper from '../../util/LdapHelper'
38
- let saveGen = function * (self) {
39
- //获取分公司树
40
- let data = {
41
- source: self.source,
42
- userid: self.userid
43
- }
44
- // if(self.$treeorg==null || (self.$treeorg!=null&&self.$treeorg.length==0)){
45
- let http = new HttpResetClass()
46
- let ret = yield http.load('POST', `${self.Url}/rs/search`, data, {resolveMsg: null, rejectMsg: null})
47
- // 去掉前面的两层节点
48
- ret.data[0].children[0].children.forEach((item) => {
49
- self.model.push(item)
50
- })
51
- Vue.$treeorg = Vue.prototype.$treeorg = self.model;
52
- // }
53
- //if(self.$treeorg!=null){
54
- // self.model = self.$treeorg;
55
- //}
56
- // 给资源添加父关系
57
- ldapHelper.procParent(self.model)
58
- // 树转列
59
- if (self.islist) {
60
- self.treetoList(self.model)
61
- }
62
- if(self.initresid&&self.initresid.length>0){
63
- self.isselect = false;
64
- self.initTreetoList(self.model)
65
- self.initregion(self.childrenOptions)
66
- self.childrenOptions.forEach((item) => {
67
- if(item.id == null && item.value !=null ){
68
- item = item.value
69
- }
70
- if(item.id==self.initresid[0]){
71
- //默认加载如果已选中的和传入参数相等会取消选择,这种操作不应该被允许
72
- if(self.orgids==item.id){
73
- return;
74
- }
75
- self.selectclick(item)
76
- self.isselect = true;
77
- return;
78
- }
79
- })
80
- //如果没有找到公司,说明是选择的是大区
81
- if(!self.isselect){
82
- self.childrenregionOption.forEach((item) => {
83
- if(item.id == null && item.value !=null ){
84
- item = item.value
85
- }
86
- if(item.id==self.initresid[0]){
87
- //默认加载如果已选中的和传入参数相等会取消选择,这种操作不应该被允许
88
- if(self.orgids==item.id){
89
- return;
90
- }
91
- self.selectclick(item)
92
- return;
93
- }
94
- })
95
- }
96
-
97
-
98
- }
99
- self.selectRes()
100
- }
101
- export default {
102
- title: '资源树',
103
- props: {
104
- searchText:'',
105
- strsign:'',
106
- source: {
107
- type: String,
108
- require: true,
109
- default:`tool.getFullTree(this.getRights().where(row.getType() == $organization$))`
110
- },
111
- //资源初始化数据
112
- initresid: {
113
- type: Array,
114
- default() { return [] },
115
- },
116
- resid: {
117
- },
118
- islist: {
119
- type: Boolean,
120
- default: false
121
- },
122
- //是否有查看上级的权限
123
- Url:{
124
- type: String,
125
- default:''
126
- },
127
- width:{
128
- type:String,
129
- default:'60%'
130
- }
131
- },
132
- data () {
133
- return {
134
- resobj:{res:this.$login.f.orgs, resids:this.$login.f.orgid},
135
- userid: this.$login.f.id,
136
- resname:[this.$login.f.orgs],
137
- orgnames : "请选择",
138
- //单选点击 返回所有子
139
- orgids : null,
140
- orgobj:null,
141
- model: [
142
-
143
- ],
144
- childrenOptions: [],
145
- childrenregionOption:[],
146
- isselect: false
147
- }
148
- },
149
- methods: {
150
- selectRes () {
151
- let newobj={
152
- "res": [this.resname],
153
- "resids": [this.orgids],
154
- }
155
- this.$emit('re-res', newobj)
156
- },
157
- //树形结构变成list
158
- initTreetoList(val) {
159
- for (let value of val) {
160
- this.initErgodicList(value)
161
- }
162
- },
163
- //找到跟节点
164
- initErgodicList (val) {
165
- if(val.children.length > 0){
166
- this.childrenOptions.push(val)
167
- this.treetoList(val.children)
168
- }else{
169
- this.childrenOptions.push(val)
170
- }
171
- },
172
- initregion(val){
173
- if(val ==null ) return;
174
- val.forEach((item)=>{
175
- if(item.name != null){
176
- if(item.name.includes("公司")){
177
- return;
178
- }else{
179
- this.initregion(item.children)
180
- this.childrenregionOption.push({label:"",value:item})
181
- //return item;
182
- }
183
- }else{
184
- return;
185
- }
186
- })
187
-
188
- },
189
- async buluer (val) {
190
- this.strsign=val
191
- await new Promise(resolve => {
192
- this.$nextTick(() => {
193
- resolve()
194
- })
195
- })
196
- },
197
- //点击资源的方法
198
- selectclick (row) {
199
- if(this.orgids==row.id){
200
- //取消点击
201
- this.orgnames="请选择"
202
- this.orgids=null
203
- this.orgobj=null
204
- let newobj={
205
- "res": [],
206
- "resids": [],
207
- "orgobj": [],
208
- }
209
- this.$emit('re-res', newobj)
210
- }else{
211
- //点中点击
212
- this.orgnames=row.name
213
- this.orgids=row.id
214
- this.orgobj=row
215
- let objs=[]
216
- let objids=[]
217
- let objnames=[]
218
- this.addResChild(row,objs)
219
- objs.forEach((item) => {
220
- objids.push(item.id)
221
- objnames.push(item.name)
222
- })
223
- let newobj={
224
- "res": objnames,
225
- "resids": objids,
226
- "orgobj": objs,
227
- }
228
- this.$emit('re-res', newobj)
229
- }
230
- },
231
- addResChild(val,objs){
232
- objs.push(val)
233
- if(val.children && val.children.length>0){
234
- Object.keys(val.children).forEach((key) => {
235
- this.addResChild(val.children[key],objs)
236
- })
237
- }
238
- return objs
239
- },
240
- //检查是否显示对勾
241
- isSelect(val) {
242
- if(this.orgids==val){
243
- return true
244
- }else{
245
- return false
246
- }
247
- },
248
- //树形结构变成list
249
- treetoList(val) {
250
- for (let value of val) {
251
- this.ergodicList(value)
252
- }
253
- },
254
- //找到跟节点
255
- ergodicList (val) {
256
- val.children.length > 0 ? this.treetoList(val.children) : this.childrenOptions.push({label: val.name, value: val})
257
- },
258
- //处理显示默认值
259
- dealResObj (val) {
260
- try{
261
- var arr=val.res.split(".")
262
- //截取最后一个分公司名字
263
- this.resname=arr[arr.length-1].toString()
264
- this.orgnames=arr[arr.length-1].toString()
265
- this.resid = val.resids
266
- this.orgids = val.resids
267
- }catch (e){
268
- this.resname='请选择组织'
269
- }
270
- },
271
- judgBoundary(){
272
- //判断是否超出边界,超出移动
273
- if(document.documentElement.offsetWidth< this.$els.dropdown.getBoundingClientRect().right){
274
- this.left = document.documentElement.offsetWidth - this.$els.dropdown.getBoundingClientRect().right - 25
275
- }
276
- }
277
- },
278
- events: {
279
-
280
- },
281
- ready () {
282
- this.dealResObj (this.resobj)
283
- let gen = saveGen(this)
284
- return co(gen)
285
- },
286
- watch: {
287
- }
288
- }
289
- </script>
290
- <style lang="less">
291
- #res-tree {
292
- .list-group-item {
293
- background-color: #FFF;
294
- color: #000;
295
- padding: 5px 10px;
296
- border:0px;
297
- white-space: nowrap;
298
- }
299
- }
300
- #res-tree .list-group {
301
- width: auto;
302
- min-width: 100%;
303
- }
304
- .hide-text-overflow{
305
- overflow: hidden;
306
- text-overflow: ellipsis
307
- }
308
- .select-style {
309
- border: 0px;
310
- /*border-bottom: 2px solid #C9CCCF;*/
311
- border: 1px solid #93B2D3;
312
- border-radius: 0px;
313
- color: #555;
314
- }
315
- </style>
1
+ <template>
2
+ <dropdown :model='model' class="auto" id="res-tree" v-if="!islist" v-el:dropdown :style="{width:width}">
3
+ <button type="button" class="btn btn-default dropdown-toggle select-style" data-toggle="dropdown">
4
+ <span class='btn-content' :style="{textOverflow:'ellipsis',overflow: 'hidden'}">{{ orgnames }}</span>
5
+ <span class="caret"></span>
6
+ </button>
7
+ <div class="dropdown-menu auto" style="width:auto;max-height: 500px;overflow: auto" >
8
+ <input type="text" placeholder="Search"
9
+ placeholder='请输入'
10
+ slot="dropdown-menu"
11
+ v-model="searchText"
12
+ class="form-control" autocomplete="off"
13
+ @keydown.enter="buluer(searchText)">
14
+ <tree :filter="strsign" :model='model' v-ref:tree :is-click="false" role="menu">
15
+ <span partial>
16
+ <span class="glyphicon glyphicon-chevron-down" v-show="row.open&&row.data.children.length>0" style="color:balck;"></span>
17
+ <span class="glyphicon glyphicon-chevron-right" v-show="!row.open&&row.data.children.length>0" style="color:balck;"></span>
18
+ <span class="RightTreeCanSelect" v-if="row.data.hasright" @click.stop="$parent.$parent.$parent.selectclick(row.data)">{{row.data.name}}</span>
19
+ <span class="RightTreeCanNotSelect" v-else>{{row.data.name}}</span>
20
+ <span class="glyphicon glyphicon-ok " v-if="$parent.$parent.$parent.isSelect(row.data.id)" style="color:balck;"></span>
21
+ </span>
22
+ </tree>
23
+ </div>
24
+
25
+ </dropdown>
26
+ <v-select v-if="islist"
27
+ placeholder='请选择'
28
+ :options='childrenOptions'
29
+ @change="selectclick"
30
+ :value-single="true"
31
+ close-on-select></v-select>
32
+ </template>
33
+ <script>
34
+ import Vue from 'vue';
35
+ import co from 'co'
36
+ import { PagedList, HttpResetClass } from 'vue-client'
37
+ import * as ldapHelper from '../../util/LdapHelper'
38
+ let saveGen = function * (self) {
39
+ //获取分公司树
40
+ let data = {
41
+ source: self.source,
42
+ userid: self.userid
43
+ }
44
+ // if(self.$treeorg==null || (self.$treeorg!=null&&self.$treeorg.length==0)){
45
+ let http = new HttpResetClass()
46
+ let ret = yield http.load('POST', `${self.Url}/rs/search`, data, {resolveMsg: null, rejectMsg: null})
47
+ // 去掉前面的两层节点
48
+ ret.data[0].children[0].children.forEach((item) => {
49
+ self.model.push(item)
50
+ })
51
+ Vue.$treeorg = Vue.prototype.$treeorg = self.model;
52
+ // }
53
+ //if(self.$treeorg!=null){
54
+ // self.model = self.$treeorg;
55
+ //}
56
+ // 给资源添加父关系
57
+ ldapHelper.procParent(self.model)
58
+ // 树转列
59
+ if (self.islist) {
60
+ self.treetoList(self.model)
61
+ }
62
+ if(self.initresid&&self.initresid.length>0){
63
+ self.isselect = false;
64
+ self.initTreetoList(self.model)
65
+ self.initregion(self.childrenOptions)
66
+ self.childrenOptions.forEach((item) => {
67
+ if(item.id == null && item.value !=null ){
68
+ item = item.value
69
+ }
70
+ if(item.id==self.initresid[0]){
71
+ //默认加载如果已选中的和传入参数相等会取消选择,这种操作不应该被允许
72
+ if(self.orgids==item.id){
73
+ return;
74
+ }
75
+ self.selectclick(item)
76
+ self.isselect = true;
77
+ return;
78
+ }
79
+ })
80
+ //如果没有找到公司,说明是选择的是大区
81
+ if(!self.isselect){
82
+ self.childrenregionOption.forEach((item) => {
83
+ if(item.id == null && item.value !=null ){
84
+ item = item.value
85
+ }
86
+ if(item.id==self.initresid[0]){
87
+ //默认加载如果已选中的和传入参数相等会取消选择,这种操作不应该被允许
88
+ if(self.orgids==item.id){
89
+ return;
90
+ }
91
+ self.selectclick(item)
92
+ return;
93
+ }
94
+ })
95
+ }
96
+
97
+
98
+ }
99
+ self.selectRes()
100
+ }
101
+ export default {
102
+ title: '资源树',
103
+ props: {
104
+ searchText:'',
105
+ strsign:'',
106
+ source: {
107
+ type: String,
108
+ require: true,
109
+ default:`tool.getFullTree(this.getRights().where(row.getType() == $organization$))`
110
+ },
111
+ //资源初始化数据
112
+ initresid: {
113
+ type: Array,
114
+ default() { return [] },
115
+ },
116
+ resid: {
117
+ },
118
+ islist: {
119
+ type: Boolean,
120
+ default: false
121
+ },
122
+ //是否有查看上级的权限
123
+ Url:{
124
+ type: String,
125
+ default:''
126
+ },
127
+ width:{
128
+ type:String,
129
+ default:'60%'
130
+ }
131
+ },
132
+ data () {
133
+ return {
134
+ resobj:{res:this.$login.f.orgs, resids:this.$login.f.orgid},
135
+ userid: this.$login.f.id,
136
+ resname:[this.$login.f.orgs],
137
+ orgnames : "请选择",
138
+ //单选点击 返回所有子
139
+ orgids : null,
140
+ orgobj:null,
141
+ model: [
142
+
143
+ ],
144
+ childrenOptions: [],
145
+ childrenregionOption:[],
146
+ isselect: false
147
+ }
148
+ },
149
+ methods: {
150
+ selectRes () {
151
+ let newobj={
152
+ "res": [this.resname],
153
+ "resids": [this.orgids],
154
+ }
155
+ this.$emit('re-res', newobj)
156
+ },
157
+ //树形结构变成list
158
+ initTreetoList(val) {
159
+ for (let value of val) {
160
+ this.initErgodicList(value)
161
+ }
162
+ },
163
+ //找到跟节点
164
+ initErgodicList (val) {
165
+ if(val.children.length > 0){
166
+ this.childrenOptions.push(val)
167
+ this.treetoList(val.children)
168
+ }else{
169
+ this.childrenOptions.push(val)
170
+ }
171
+ },
172
+ initregion(val){
173
+ if(val ==null ) return;
174
+ val.forEach((item)=>{
175
+ if(item.name != null){
176
+ if(item.name.includes("公司")){
177
+ return;
178
+ }else{
179
+ this.initregion(item.children)
180
+ this.childrenregionOption.push({label:"",value:item})
181
+ //return item;
182
+ }
183
+ }else{
184
+ return;
185
+ }
186
+ })
187
+
188
+ },
189
+ async buluer (val) {
190
+ this.strsign=val
191
+ await new Promise(resolve => {
192
+ this.$nextTick(() => {
193
+ resolve()
194
+ })
195
+ })
196
+ },
197
+ //点击资源的方法
198
+ selectclick (row) {
199
+ if(this.orgids==row.id){
200
+ //取消点击
201
+ this.orgnames="请选择"
202
+ this.orgids=null
203
+ this.orgobj=null
204
+ let newobj={
205
+ "res": [],
206
+ "resids": [],
207
+ "orgobj": [],
208
+ }
209
+ this.$emit('re-res', newobj)
210
+ }else{
211
+ //点中点击
212
+ this.orgnames=row.name
213
+ this.orgids=row.id
214
+ this.orgobj=row
215
+ let objs=[]
216
+ let objids=[]
217
+ let objnames=[]
218
+ this.addResChild(row,objs)
219
+ objs.forEach((item) => {
220
+ objids.push(item.id)
221
+ objnames.push(item.name)
222
+ })
223
+ let newobj={
224
+ "res": objnames,
225
+ "resids": objids,
226
+ "orgobj": objs,
227
+ }
228
+ this.$emit('re-res', newobj)
229
+ }
230
+ },
231
+ addResChild(val,objs){
232
+ objs.push(val)
233
+ if(val.children && val.children.length>0){
234
+ Object.keys(val.children).forEach((key) => {
235
+ this.addResChild(val.children[key],objs)
236
+ })
237
+ }
238
+ return objs
239
+ },
240
+ //检查是否显示对勾
241
+ isSelect(val) {
242
+ if(this.orgids==val){
243
+ return true
244
+ }else{
245
+ return false
246
+ }
247
+ },
248
+ //树形结构变成list
249
+ treetoList(val) {
250
+ for (let value of val) {
251
+ this.ergodicList(value)
252
+ }
253
+ },
254
+ //找到跟节点
255
+ ergodicList (val) {
256
+ val.children.length > 0 ? this.treetoList(val.children) : this.childrenOptions.push({label: val.name, value: val})
257
+ },
258
+ //处理显示默认值
259
+ dealResObj (val) {
260
+ try{
261
+ var arr=val.res.split(".")
262
+ //截取最后一个分公司名字
263
+ this.resname=arr[arr.length-1].toString()
264
+ this.orgnames=arr[arr.length-1].toString()
265
+ this.resid = val.resids
266
+ this.orgids = val.resids
267
+ }catch (e){
268
+ this.resname='请选择组织'
269
+ }
270
+ },
271
+ judgBoundary(){
272
+ //判断是否超出边界,超出移动
273
+ if(document.documentElement.offsetWidth< this.$els.dropdown.getBoundingClientRect().right){
274
+ this.left = document.documentElement.offsetWidth - this.$els.dropdown.getBoundingClientRect().right - 25
275
+ }
276
+ }
277
+ },
278
+ events: {
279
+
280
+ },
281
+ ready () {
282
+ this.dealResObj (this.resobj)
283
+ let gen = saveGen(this)
284
+ return co(gen)
285
+ },
286
+ watch: {
287
+ }
288
+ }
289
+ </script>
290
+ <style lang="less">
291
+ #res-tree {
292
+ .list-group-item {
293
+ background-color: #FFF;
294
+ color: #000;
295
+ padding: 5px 10px;
296
+ border:0px;
297
+ white-space: nowrap;
298
+ }
299
+ }
300
+ #res-tree .list-group {
301
+ width: auto;
302
+ min-width: 100%;
303
+ }
304
+ .hide-text-overflow{
305
+ overflow: hidden;
306
+ text-overflow: ellipsis
307
+ }
308
+ .select-style {
309
+ border: 0px;
310
+ /*border-bottom: 2px solid #C9CCCF;*/
311
+ border: 1px solid #93B2D3;
312
+ border-radius: 0px;
313
+ color: #555;
314
+ }
315
+ </style>
@@ -178,15 +178,15 @@ let loginGen = async function (name, password) {
178
178
  // 定时发送心跳
179
179
  setInterval(()=> {
180
180
  let http = new HttpResetClass()
181
- //暂时不出现不出现异地登录校验
181
+ //暂时不出现不出现异地登录校验
182
182
  http.load('POST', `rs/user/access/${Vue.$login.f.id}`, {}, {resolveMsg: null, rejectMsg: null}).then((req) => {
183
- if(req.data.status==710){
184
- Vue.showMessage(req.data.msg+",您将被强制退出系统", ['confirm']).then((res) => {
185
- if (res === 'confirm') {
186
- location.reload()
187
- }
188
- })
189
- }
183
+ //if(req.data.status==710){
184
+ // Vue.showMessage(req.data.msg+",您将被强制退出系统", ['confirm']).then((res) => {
185
+ // if (res === 'confirm') {
186
+ // location.reload()
187
+ // }
188
+ //})
189
+ //}
190
190
  })
191
191
  }, 2 * 60 * 1000)
192
192
  }
File without changes
File without changes