|
@@ -383,7 +383,6 @@
|
|
...mapActions('common', ['setLocalVessels']),
|
|
...mapActions('common', ['setLocalVessels']),
|
|
...mapActions('user', ['getUserInfo','toSetShow']),
|
|
...mapActions('user', ['getUserInfo','toSetShow']),
|
|
payCode() {
|
|
payCode() {
|
|
- this.barCode = this.barCode.toLocaleLowerCase()
|
|
|
|
console.log('input', this.barCode)
|
|
console.log('input', this.barCode)
|
|
this.btnStatus = {
|
|
this.btnStatus = {
|
|
status1: false,
|
|
status1: false,
|
|
@@ -395,10 +394,10 @@
|
|
}
|
|
}
|
|
// let _userCompId = "2710b21efc1e4393930c5dc800010dc4"
|
|
// let _userCompId = "2710b21efc1e4393930c5dc800010dc4"
|
|
// let _qualityNo = "SGRK202112140060003"
|
|
// let _qualityNo = "SGRK202112140060003"
|
|
- let _userCompId = this.barCode.split('&')[0]
|
|
|
|
|
|
+ let _userCompId = this.barCode.split('&')[0].toLocaleLowerCase()
|
|
let _qualityNo = this.barCode.split('&')[1]
|
|
let _qualityNo = this.barCode.split('&')[1]
|
|
- let _userHouseId = this.barCode.split('&')[2]
|
|
|
|
- this.cangid = this.barCode.split('&')[2]
|
|
|
|
|
|
+ let _userHouseId = this.barCode.split('&')[2].toLocaleLowerCase()
|
|
|
|
+ this.cangid = this.barCode.split('&')[2].toLocaleLowerCase()
|
|
if(_userCompId.indexOf(',') != -1){
|
|
if(_userCompId.indexOf(',') != -1){
|
|
_userCompId = _userCompId.split(',')[1]
|
|
_userCompId = _userCompId.split(',')[1]
|
|
}
|
|
}
|