system-clients 3.2.88 → 3.2.89-fix
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/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/package.json +105 -105
- package/src/components/Main.vue +0 -2
- package/src/components/equipment/EquipmentManage.vue +83 -83
- package/src/components/equipment/PcAdd.vue +115 -116
- package/src/components/equipment/PcList.vue +119 -120
- package/src/components/equipment/PcManage.vue +61 -61
- package/src/components/equipment/PhoneAdd.vue +118 -119
- package/src/components/equipment/PhoneList.vue +113 -114
- package/src/components/equipment/PhoneManage.vue +61 -61
- package/src/components/equipment/PosAdd.vue +0 -4
- package/src/components/equipment/PosList.vue +0 -1
- package/src/components/equipment/PosParamAdd.vue +0 -1
- package/src/components/equipment/PosParamList.vue +0 -1
- package/src/components/parammanage/ParamPage.vue +0 -4
- package/src/components/parammanage/SinglePage.vue +0 -2
- package/src/components/server/LeftTree.vue +7 -13
- package/src/components/server/Login.vue +1 -3
- package/src/components/server/ModifyPw.vue +0 -1
- package/src/components/server/PcdBuildingSelect.vue +0 -2
- package/src/components/server/ResSelectGroup.vue +211 -211
- package/src/components/server/RoleSelector.vue +2 -3
- package/src/filiale/baole/Login.vue +0 -2
- package/src/filiale/chengtou/Login.vue +0 -2
- package/src/filiale/dongguan/Login.vue +0 -2
- package/src/filiale/dongguan/Main.vue +0 -2
- package/src/filiale/furuike/Login.vue +0 -4
- package/src/filiale/furuike/Main.vue +0 -2
- package/src/filiale/gehua/Main.vue +0 -2
- package/src/filiale/konggang/Login.vue +0 -2
- package/src/filiale/qianneng/Login.vue +582 -584
- package/src/filiale/qianneng/Main.vue +0 -2
- package/src/filiale/qianneng/ModifyPw.vue +0 -1
- package/src/filiale/rizhao/Login.vue +0 -2
- package/src/filiale/shiquan/Login.vue +0 -2
- package/src/filiale/tianyi/Login.vue +0 -2
- package/src/filiale/tongchuan/Login.vue +0 -2
- package/src/filiale/tongchuan/Main.vue +0 -3
- package/src/filiale/weinan/Main.vue +923 -925
- package/src/filiale/weinan/system.js +7 -7
- package/src/filiale/wenxi/Login.vue +0 -2
- package/src/filiale/wenxi/Main.vue +0 -2
- package/src/filiale/wuhai/Main.vue +0 -3
- package/src/filiale/yuchuan/Login.vue +0 -2
- package/src/filiale/yuchuan/Main.vue +0 -2
- package/src/filiale/zhoukou/Main.vue +0 -2
- package/src/plugins/GetLoginInfoService.js +74 -12
@@ -166,7 +166,6 @@ let saveGen = function *(self) {
|
|
166
166
|
console.log('登录配置', self.config)
|
167
167
|
if (self.config.isMac) {
|
168
168
|
// 获取该登录人分公司下的mac配置
|
169
|
-
// todo v4
|
170
169
|
let getMacs = yield self.$resetpost('rs/sql/equipmentQuery', {data: {condition: `f_filialeids like '%${self.$login.f.f_orgids}%'`}}, {
|
171
170
|
resolveMsg: null,
|
172
171
|
rejectMsg: null
|
@@ -264,13 +263,11 @@ export default {
|
|
264
263
|
st: obj.ticket,
|
265
264
|
serviceKey: this.config.serviceKey
|
266
265
|
}
|
267
|
-
// todo v4
|
268
266
|
this.$resetpost('/sso/logic/serviceValidate', params,{resolveMsg: null, rejectMsg: null}).then((re) => {
|
269
267
|
// this.$showMessage("re----" + JSON.stringify(re))
|
270
268
|
if (re.data.code === 200) {
|
271
269
|
this.showlogin = false
|
272
270
|
let condition = `ename = '${re.data.data.userName}'`
|
273
|
-
// todo v4
|
274
271
|
this.$resetpost('rs/sql/singleTable', {data: { items: '*', tablename: 't_user', condition: condition}}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
275
272
|
if (res.data && res.data.length > 0) {
|
276
273
|
this.model.ename = res.data[0].ename
|
@@ -477,7 +474,6 @@ export default {
|
|
477
474
|
if (this.config.distanceLogin) {
|
478
475
|
if (this.$login && this.$login.getUrlParames('name') ) {
|
479
476
|
let ename = this.$login.getUrlParames('name');
|
480
|
-
// todo v4
|
481
477
|
let logininfo = await this.$resetpost('rs/logic/getLoginData',{data:{ename:ename}},{resolveMsg: null, rejectMsg: null});
|
482
478
|
if(logininfo.data){
|
483
479
|
if(logininfo.data.ename && logininfo.data.password){
|
@@ -178,7 +178,6 @@ let getwartermakr = async function (self) {
|
|
178
178
|
tablename: 't_singlevalue',
|
179
179
|
condition: " 1=1 and name=\'水印内容\'"
|
180
180
|
};
|
181
|
-
// todo v4
|
182
181
|
let result = await self.$resetpost('rs/sql/saleSingleTable', {data: param}, {resolveMsg: null, rejectMsg: null});
|
183
182
|
if (result && result.data.length > 0) {
|
184
183
|
self.showwatermakeflag = true;
|
@@ -505,7 +504,6 @@ export default {
|
|
505
504
|
username: this.$login.f.name,
|
506
505
|
usertelephone: this.$login.f.f_user_telephone
|
507
506
|
}
|
508
|
-
// todo v4
|
509
507
|
await this.$resetpost('rs/logic/logOut', data, {resolveMsg: '退出成功', rejectMsg: null})
|
510
508
|
window.location.reload()
|
511
509
|
}
|
@@ -151,7 +151,6 @@ let getwartermakr = async function (self) {
|
|
151
151
|
tablename: 't_singlevalue',
|
152
152
|
condition: " 1=1 and name=\'水印内容\'"
|
153
153
|
};
|
154
|
-
// todo v4
|
155
154
|
let result = await self.$resetpost('rs/sql/saleSingleTable', {data: param}, {resolveMsg: null, rejectMsg: null});
|
156
155
|
if (result && result.data.length > 0) {
|
157
156
|
self.showwatermakeflag = true;
|
@@ -423,7 +422,6 @@ export default {
|
|
423
422
|
username: this.$login.f.name,
|
424
423
|
usertelephone: this.$login.f.f_user_telephone
|
425
424
|
}
|
426
|
-
// todo v4
|
427
425
|
await this.$resetpost('rs/logic/logOut', data, {resolveMsg: '退出成功', rejectMsg: null})
|
428
426
|
window.location.reload()
|
429
427
|
}
|
@@ -162,7 +162,6 @@
|
|
162
162
|
console.log('登录配置', self.config)
|
163
163
|
if (self.config.isMac) {
|
164
164
|
// 获取该登录人分公司下的mac配置
|
165
|
-
// todo v4
|
166
165
|
let getMacs = yield self.$resetpost('rs/sql/equipmentQuery', {data: {condition: `f_filialeids like '%${self.$login.f.f_orgids}%'`}}, {
|
167
166
|
resolveMsg: null,
|
168
167
|
rejectMsg: null
|
@@ -371,7 +370,6 @@
|
|
371
370
|
if (this.config.distanceLogin) {
|
372
371
|
if (this.$login && this.$login.getUrlParames('name') ) {
|
373
372
|
let ename = this.$login.getUrlParames('name');
|
374
|
-
// todo v4
|
375
373
|
let logininfo = await this.$resetpost('rs/logic/getLoginData',{data:{ename:ename}},{resolveMsg: null, rejectMsg: null});
|
376
374
|
if(logininfo.data){
|
377
375
|
if(logininfo.data.ename && logininfo.data.password){
|