Browse Source

版本3.8.0 2023-11-30 ljd

1、优化代码
master
xiaohei 1 year ago
parent
commit
91fdce0d1f
1 changed files with 22 additions and 12 deletions
  1. +22
    -12
      src/views/userManagement.vue

+ 22
- 12
src/views/userManagement.vue View File

@ -1698,7 +1698,7 @@ export default {
faceIndex: lt.contentJSON.index,
action: 3,
endTime: endTime1,
faceData: lt.contentJSON.faceData,
// faceData: lt.contentJSON.faceData,
lockerId: deviceinfo.deviceNum,
lockerUserId: lt.contentJSON.userPassword,
startTime: startTime1,
@ -1708,7 +1708,6 @@ export default {
}
httpPost(dataface, this.$api.sendCommand).then(res => {
console.log(res);
lt.contentJSON.index = res.data.index
lt.contentJSON.operateMode = 21
lt.contentJSON.order = 6221
lt.contentJSON.passwordStartTime = startTime1
@ -1770,12 +1769,14 @@ export default {
}
httpPost(data, this.$api.sendCommand).then(res => {
console.log(res);
lt.contentJSON.operateMode = 17
lt.contentJSON.order = 6217
lt.contentJSON.passwordStartTime = startTime1
lt.contentJSON.passwordEndTime = endTime1
if (res.success) {
str.index = res.data.index
let data1 = {
id: lt.id,
content: JSON.stringify(str), //operateMode:NFC-10-1
content: JSON.stringify(lt.contentJSON), //operateMode:NFC-10-1
startTime: startTime1,
endTime: endTime1,
}
@ -1826,10 +1827,14 @@ export default {
}
httpPost(data, this.$api.sendCommand).then(res => {
console.log(res);
lt.contentJSON.operateMode = 11
lt.contentJSON.order = 6211
lt.contentJSON.passwordStartTime = startTime1
lt.contentJSON.passwordEndTime = endTime1
if (res.success) {
let data1 = {
id: lt.id,
content: JSON.stringify(str), //operateMode:NFC-10-1
content: JSON.stringify(lt.contentJSON), //operateMode:NFC-10-1
startTime: startTime1,
endTime: endTime1,
}
@ -1879,10 +1884,14 @@ export default {
}
httpPost(data, this.$api.sendCommand).then(res => {
console.log(res);
lt.contentJSON.operateMode = 8
lt.contentJSON.order = 6208
lt.contentJSON.passwordStartTime = startTime1
lt.contentJSON.passwordEndTime = endTime1
if (res.success) {
let data1 = {
id: lt.id,
content: JSON.stringify(str), //operateMode:NFC-10-1
content: JSON.stringify(lt.contentJSON), //operateMode:NFC-10-1
startTime: startTime1,
endTime: endTime1,
}
@ -3837,7 +3846,7 @@ export default {
var password = ""
if (JSON.parse(row.content).password.length == 8) {
password = utils.cardFormatConversion(JSON.parse(row.content).password)
password = password + '00000000'
password = password // + '00000000'
} else if (JSON.parse(row.content).password.length == 16) {
password = JSON.parse(row.content).password
} else {
@ -4037,7 +4046,7 @@ export default {
var password = ""
if (JSON.parse(row.content).password.length == 8) {
password = utils.cardFormatConversion(JSON.parse(row.content).password)
password = password + '00000000'
password = password // + '00000000'
} else if (JSON.parse(row.content).password.length == 16) {
password = JSON.parse(row.content).password
} else {
@ -5115,7 +5124,7 @@ export default {
this.$message.error("卡格式错误,请重新录入")
return
}
pwd = pwd + '00000000'
pwd = pwd // + '00000000'
var startTime = JSON.stringify(row.startTime)
var endTime = JSON.stringify(row.endTime)
if (startTime.length == 13) {
@ -5552,6 +5561,7 @@ export default {
cardId: this.drawerRow.id,
},];
httpPost(data, this.$api.unbindCard).then((res) => {
console.log(res)
if (res.success) {
var array = this.roomtable,
SelectedList = [],
@ -5634,7 +5644,7 @@ export default {
inStatus: "0,1,702"
}
}
httpGet(data, _this.$api.getCertificates).then(res => {
httpGet(data, this.$api.getCertificates).then(res => {
if (res.success) {
let dataOne = utils.zlib_unzip(res.data)
dataOne.map(lt => {
@ -7190,7 +7200,7 @@ export default {
var userid = info.userPassword
var cardNo = utils.cardFormatConversion(drawerRow.modeContent.toUpperCase())
if (cardNo.length == 8) {
cardNo = cardNo + '00000000'
cardNo = cardNo // + '00000000'
} else if (cardNo.length != 16) {
cardNo = cardNo.padEnd(16, '0')
}


Loading…
Cancel
Save