|
|
@ -676,7 +676,7 @@ |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
checkInfo() { |
|
|
|
checkInfo() { |
|
|
|
this.tsetPlate(this.plateNumber ? this.plateNumber : this.plateNumberSel) |
|
|
|
this.tsetPlate(this.plateNumber || this.plateNumberSel) |
|
|
|
if (!this.testPlateResult && !['1689182438357262336', '1689183144276463616', '1689185023261741056','1762304610449412096','1689183774927818752','1689184331812888576'] |
|
|
|
if (!this.testPlateResult && !['1689182438357262336', '1689183144276463616', '1689185023261741056','1762304610449412096','1689183774927818752','1689184331812888576'] |
|
|
|
.includes(this.siteId || this.oilItem.siteId)) { |
|
|
|
.includes(this.siteId || this.oilItem.siteId)) { |
|
|
|
// this.plateNumber='' |
|
|
|
// this.plateNumber='' |
|
|
@ -838,7 +838,7 @@ |
|
|
|
}, |
|
|
|
}, |
|
|
|
beforeMake() { |
|
|
|
beforeMake() { |
|
|
|
// console.log(this.radio, 'beforeMake') |
|
|
|
// console.log(this.radio, 'beforeMake') |
|
|
|
this.tsetPlate(this.plateNumber ? this.plateNumber : this.plateNumberSel) |
|
|
|
this.tsetPlate( this.plateNumber || this.plateNumberSel) |
|
|
|
if (!this.testPlateResult && !['1689182438357262336', '1689183144276463616', '1689185023261741056','1762304610449412096','1689183774927818752','1689184331812888576'] |
|
|
|
if (!this.testPlateResult && !['1689182438357262336', '1689183144276463616', '1689185023261741056','1762304610449412096','1689183774927818752','1689184331812888576'] |
|
|
|
.includes(this.siteId || this.oilItem.siteId)) { |
|
|
|
.includes(this.siteId || this.oilItem.siteId)) { |
|
|
|
// this.plateNumber='' |
|
|
|
// this.plateNumber='' |
|
|
@ -947,6 +947,9 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
}).finally(msg => { |
|
|
|
}).finally(msg => { |
|
|
|
clearTimeout(this.timer) |
|
|
|
clearTimeout(this.timer) |
|
|
|
|
|
|
|
if (!this.plateNumbers.length) { |
|
|
|
|
|
|
|
uni.setStorageSync('localPlateNumber', this.plateNumber) |
|
|
|
|
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, 500) |
|
|
|
}, 500) |
|
|
|
} |
|
|
|
} |
|
|
@ -965,7 +968,9 @@ |
|
|
|
clientBelong: "ZHONGPIN" |
|
|
|
clientBelong: "ZHONGPIN" |
|
|
|
}).then(res => { |
|
|
|
}).then(res => { |
|
|
|
if (res.code == 20000) { |
|
|
|
if (res.code == 20000) { |
|
|
|
this.plateNumbers = res.data.plateNumbers |
|
|
|
if (!res.data.plateNumbers.length) { |
|
|
|
|
|
|
|
this.plateNumber = uni.getStorageSync('localPlateNumber') || '' |
|
|
|
|
|
|
|
} else this.plateNumbers = res.data.plateNumbers |
|
|
|
this.oilSitePriceDetailsVo = res.data.oilSitePriceDetailsVo; |
|
|
|
this.oilSitePriceDetailsVo = res.data.oilSitePriceDetailsVo; |
|
|
|
this.siteUserNames = res.data.siteUserNames; |
|
|
|
this.siteUserNames = res.data.siteUserNames; |
|
|
|
if (this.oilSitePriceDetailsVo.length == 1) { |
|
|
|
if (this.oilSitePriceDetailsVo.length == 1) { |
|
|
|