| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <template>
- <view class="license-box">
- <view class="account-name">
- {{imgType==='1'?'车辆登记证书':'行驶证'}}
- </view>
- <view class="credentials-box" @click="showUploadingImg(true)">
- <view class="credentials-img" v-if="register_img">
- <image class="credentials-imgs" :src="register_img" mode="aspectFill"></image>
- </view>
- <view class="credentials-img" v-else>
- <image class="credentials-imgs" src="/pages-task/static/add-client/scmb.png" mode=""></image>
- </view>
- </view>
- <uni-popup ref="popup" :safeArea="false" type="bottom" @change="closePopup">
- <view class="popup-block">
- <view class="popup-row" @click="uploadingImg(1)">拍照</view>
- <view class="popup-row" @click="uploadingImg(2)">从手机里面选择</view>
- <view class="popup-row" @click="showUploadingImg(false,0)">取消</view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- import txUploadFile from "@/common/js/txOssSts";
- import tools from "@/common/js/tools";
- import {getBaiDuImgRecognition} from "@/api/common";
- export default {
- name: "add-register",
- components: {},
- props: {
- 'value': {
- default: '',
- },
- 'imgType':{
- default: '1'
- }
- },
- data() {
- return {
- 'register_img': '',
- 'carData': {}
- }
- },
- watch: {
- 'register_img': function () {
- this.$emit("input", this.register_img);
- },
- 'value': function () {
- this.setValue()
- },
- },
- mounted() {
- this.setValue()
- },
- methods: {
- setValue() {
- console.log(this.value)
- this.register_img = this.value
- },
- uploadingImg(sourceType) {
- uni.chooseMedia({
- mediaType: 'image',
- count: 1, //默认9
- sizeType: "compressed",
- sourceType: [sourceType === 1 ? 'camera' : 'album'],
- success: (res) => {
- if (res.tempFiles.length > 0) {
- res.tempFiles.forEach((tempFile) => {
- txUploadFile(tempFile.tempFilePath).then((data) => {
- if (!data) {
- tools.error('图片上传失败')
- tools.hideLoading()
- } else {
- tools.showLoading()
- getBaiDuImgRecognition({
- 'imgUrl': data.Location,
- 'imgType': this.imgType==='1'?'5':'6'
- }).then((res) => {
- tools.hideLoading()
- if (res.code === 1) {
- this.register_img = data.Location;
- this.carData = res.data;
- this.$emit('setCarData', this.carData)
- } else {
- tools.error(res.msg)
- }
- })
- }
- })
- })
- this.showUploadingImg(false, 0);
- } else {
- tools.error("请选择上传的图片")
- }
- },
- });
- },
- showUploadingImg(showImg) {
- if (showImg) {
- if (this.isUploading) {
- return
- }
- this.isUploading = true
- this.$refs.popup.open("bottom");
- } else {
- this.$refs.popup.close();
- this.isUploading = false
- }
- },
- closePopup(e) {
- if (e.show === false) {
- this.isUploading = false
- }
- },
- }
- }
- </script>
- <style scoped lang="scss">
- @import "../../../static/css/common/wh-common";
- .license-box {
- .account-name {
- font-size: 32rpx;
- padding: 16px 0 0 0;
- color: #232A35;
- }
- .credentials-box {
- padding: 24rpx 0 0 0;
- border-bottom: 1px solid #F0F0F0;
- .credentials-img {
- width: 160rpx;
- height: 160rpx;
- margin: 0 16rpx 30rpx 0;
- .credentials-imgs {
- width: 100%;
- height: 100%;
- display: block;
- }
- }
- }
- }
- </style>
|