|
|
|
@ -189,11 +189,17 @@ |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
<view> |
|
|
|
|
<view>车牌识别</view> |
|
|
|
|
<view> |
|
|
|
|
<view class="cu-tn btn-box" @tap="srcPhoto"> |
|
|
|
|
拍照 |
|
|
|
|
<view class=" menu cu-list " v-if="plateNumberOcrShow==true"> |
|
|
|
|
<view class="cu-item nowrap"> |
|
|
|
|
<view class="text-bold "> |
|
|
|
|
车牌识别 |
|
|
|
|
</view> |
|
|
|
|
<view @tap="srcPhoto" class="text-center" style="width: 60%;margin: 0 2%;"> |
|
|
|
|
<input v-model="plateNumberOcr" type="digit" class="block" |
|
|
|
|
placeholder="请点击拍照识别车牌" value="" style="border-bottom: 1px solid #efefef;" /> |
|
|
|
|
</view> |
|
|
|
|
<view @tap="srcPhoto"> |
|
|
|
|
<uni-icons type="camera-filled" size="30"></uni-icons> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
@ -517,13 +523,16 @@ |
|
|
|
|
activeChannelCode: '', |
|
|
|
|
checkBar: [], |
|
|
|
|
realMoney: '', |
|
|
|
|
xoilAmountGun: '' |
|
|
|
|
xoilAmountGun: '', |
|
|
|
|
plateNumberOcr:'', |
|
|
|
|
plateNumberOcrShow:false |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
let oilItem = uni.getStorageSync('oilItem'), |
|
|
|
|
oilSite = uni.getStorageSync(''), |
|
|
|
|
otherUser = uni.getStorageSync('otherUserInfo') |
|
|
|
|
otherUser = uni.getStorageSync('otherUserInfo'), |
|
|
|
|
companyId = JSON.parse(uni.getStorageSync('companyCard')).companyId |
|
|
|
|
if (otherUser) { |
|
|
|
|
// console.log('这里是卡里') |
|
|
|
|
this.isOtherUser = true |
|
|
|
@ -533,6 +542,8 @@ |
|
|
|
|
console.log('oilItem', oilItem) |
|
|
|
|
this.showtitles = oilItem.listTag; |
|
|
|
|
this.init() |
|
|
|
|
console.log(companyId) |
|
|
|
|
this.getCompanyConfig(companyId) |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
activeChannelCode: { |
|
|
|
@ -611,6 +622,18 @@ |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
getCompanyConfig(companyId){ |
|
|
|
|
if(companyId){ |
|
|
|
|
user.getCompanyConfigByCompanyId(companyId).then(res=>{ |
|
|
|
|
if(res.data.plateNumberOcr==1){ |
|
|
|
|
this.plateNumberOcrShow = true |
|
|
|
|
}else{ |
|
|
|
|
this.plateNumberOcrShow = false |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
srcPhoto(){ |
|
|
|
|
let _that = this |
|
|
|
|
uni.chooseImage({ |
|
|
|
@ -618,55 +641,33 @@ |
|
|
|
|
sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有 |
|
|
|
|
sourceType: ['camera'], // 只能拍照 |
|
|
|
|
success: function(res) { |
|
|
|
|
console.log(res) |
|
|
|
|
// uni.showLoading({ |
|
|
|
|
// title: '识别中', |
|
|
|
|
// mask: true |
|
|
|
|
// }); |
|
|
|
|
uni.saveImageToPhotosAlbum({ |
|
|
|
|
filePath: res.tempFilePaths[0], |
|
|
|
|
success: function (file) { |
|
|
|
|
console.log('save success',res,file); |
|
|
|
|
|
|
|
|
|
const JSESSIONID = utils.uuid() |
|
|
|
|
uni.uploadFile({ |
|
|
|
|
url: 'http://uat.xingoil.com/oil-oss/obejct/uploadFile', |
|
|
|
|
filePath: res.tempFilePaths[0], |
|
|
|
|
formData: { |
|
|
|
|
ossKey: 'xingyou', |
|
|
|
|
pathKey: 'certificate', |
|
|
|
|
encrypt: 'PUBLIC', |
|
|
|
|
}, |
|
|
|
|
name: 'file', |
|
|
|
|
header: { |
|
|
|
|
"Content-Type": "multipart/form-data", |
|
|
|
|
"Authorization": uni.getStorageSync('Authorization'), |
|
|
|
|
'dataSources': 'MP', |
|
|
|
|
"imei": uni.getStorageSync('unionid'), |
|
|
|
|
"openId": uni.getStorageSync('openid'), |
|
|
|
|
'JSESSIONID': JSESSIONID, |
|
|
|
|
'token': utils.md5Salt(JSESSIONID) |
|
|
|
|
}, |
|
|
|
|
success(e) { |
|
|
|
|
uni.hideLoading() |
|
|
|
|
console.log('进入2') |
|
|
|
|
console.log(e) |
|
|
|
|
// let obj = JSON.parse(e.data), |
|
|
|
|
// url = obj.data.publicUrl |
|
|
|
|
// user.carNoIdentify(data).then((res) => { |
|
|
|
|
// console.log(res) |
|
|
|
|
// let obj = JSON.parse(res.data) |
|
|
|
|
// console.log(obj) |
|
|
|
|
// }) |
|
|
|
|
},fail(res){ |
|
|
|
|
uni.hideLoading() |
|
|
|
|
console.log(res,'fail') |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
uni.showLoading({ |
|
|
|
|
title: '识别中', |
|
|
|
|
mask: true |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const JSESSIONID = utils.uuid() |
|
|
|
|
uni.uploadFile({ |
|
|
|
|
url: 'http://uat.xingoil.com/adminapi/oil-oss/obejct/carNoIdentify', |
|
|
|
|
filePath: res.tempFilePaths[0], |
|
|
|
|
name: 'file', |
|
|
|
|
header: { |
|
|
|
|
"Content-Type": "multipart/form-data", |
|
|
|
|
"Authorization": uni.getStorageSync('Authorization'), |
|
|
|
|
'dataSources': 'MP', |
|
|
|
|
"imei": uni.getStorageSync('unionid'), |
|
|
|
|
"openId": uni.getStorageSync('openid'), |
|
|
|
|
'JSESSIONID': JSESSIONID, |
|
|
|
|
'token': utils.md5Salt(JSESSIONID) |
|
|
|
|
}, |
|
|
|
|
success(e) { |
|
|
|
|
uni.hideLoading() |
|
|
|
|
let obj = JSON.parse(e.data) |
|
|
|
|
_that.plateNumberOcr = obj.data.carNo |
|
|
|
|
},fail(res){ |
|
|
|
|
uni.hideLoading() |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -1211,14 +1212,15 @@ |
|
|
|
|
'xoilAmountGun': this.vol |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
var orderData = { |
|
|
|
|
if(this.plateNumberOcrShow == true){ |
|
|
|
|
var orderData = { |
|
|
|
|
amountGun: this.activeChannelCode == 'TY' ? this.ty.realMoney : '', |
|
|
|
|
shareCompanyQuota: 0, // 共享标识 |
|
|
|
|
priceId: this.oilSitePriceDetailsVo[this.radio].priceId, //类型:String 必有字段 备注:油价主键 |
|
|
|
|
orderType: "REAL_ORDER", //类型:String 必有字段 备注:订单类型(REAL_ORDER:真实订单 VIRTUAL_ORDER:虚拟订单) |
|
|
|
|
orderSource: "WECHAT_MINIAPPS", //类型:String 必有字段 备注:订单来源(WECHAT_MINIAPPS) |
|
|
|
|
plateNumber: this.plateNumber ? this.plateNumber : this |
|
|
|
|
.plateNumberSel, //类型:String 必有字段 备注:车牌号 |
|
|
|
|
plateNumber: this.plateNumberOcrShow == true ? this.plateNumberOcr : this |
|
|
|
|
.plateNumber, //类型:String 必有字段 备注:车牌号 |
|
|
|
|
siteUserName: this.jober, //类型:String 必有字段 备注:加油员 |
|
|
|
|
oilsBar: this.oilBar, //类型:Number 必有字段 备注:油枪 |
|
|
|
|
volume: this.activeChannelCode == 'TY' ? this.tyRes.liter : this |
|
|
|
@ -1231,6 +1233,29 @@ |
|
|
|
|
'version': 1, |
|
|
|
|
'xoilAmountGun': this.vol |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
var orderData = { |
|
|
|
|
amountGun: this.activeChannelCode == 'TY' ? this.ty.realMoney : '', |
|
|
|
|
shareCompanyQuota: 0, // 共享标识 |
|
|
|
|
priceId: this.oilSitePriceDetailsVo[this.radio].priceId, //类型:String 必有字段 备注:油价主键 |
|
|
|
|
orderType: "REAL_ORDER", //类型:String 必有字段 备注:订单类型(REAL_ORDER:真实订单 VIRTUAL_ORDER:虚拟订单) |
|
|
|
|
orderSource: "WECHAT_MINIAPPS", //类型:String 必有字段 备注:订单来源(WECHAT_MINIAPPS) |
|
|
|
|
plateNumber: this.plateNumber ? this.plateNumber : this |
|
|
|
|
.plateNumberSel, //类型:String 必有字段 备注:车牌号 |
|
|
|
|
siteUserName: this.jober, //类型:String 必有字段 备注:加油员 |
|
|
|
|
oilsBar: this.oilBar, //类型:Number 必有字段 备注:油枪 |
|
|
|
|
volume: this.activeChannelCode == 'TY' ? this.tyRes.liter : this |
|
|
|
|
.vol, //类型:Number 必有字段 备注:加油升数 |
|
|
|
|
realPrice: this.oilSitePriceDetailsVo[this.radio].sitePrice, //类型:Number 必有字段 备注:实际加油价格 |
|
|
|
|
suppleMark: 0, //类型:Number 必有字段 备注:补录标识(0:实时订单 1:补录订单) |
|
|
|
|
createSource: "XOIL_DRIVER_COMPANY_WECHAT_APPLET", //类型:String 必有字段 备注:创建来源( XOIL_DRIVER_COMPANY_WECHAT_APPLET) |
|
|
|
|
// "deviceImei": "mock", //类型:String 可有字段 备注:设备唯一码 |
|
|
|
|
// "networkIp": "mock" //类型:String 可有字段 备注:ip地址 |
|
|
|
|
'version': 1, |
|
|
|
|
'xoilAmountGun': this.vol |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
// console.log(orderData) |
|
|
|
|
let location = uni.getStorageSync('location') || { |
|
|
|
|