123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- <template>
- <view class="content">
- <view class="item-tips">
- <view class="picture-wrapper" @click="takePhotoMode('1')">
- <view class="bg">
- <view class="">
- <view class="name"> 人像面 </view>
- <view class="value"> 上传身份证的人像面 </view>
- <view class="tip">
- <view class="tip-value"> 拍摄规范 </view>
- </view>
- </view>
- <image class="icon" :src="`${$imgUrl}applyCard/renxiang.png`" v-if="!state.imageUrl"></image>
- <image class="icon" :src="state.imageUrl" v-else></image>
- </view>
- </view>
- <view class="picture-wrapper" @click="takePhotoMode('2')">
- <view class="bg">
- <view class="">
- <view class="name"> 国徽面 </view>
- <view class="value"> 上传身份证的国徽面 </view>
- <view class="tip">
- <view class="tip-value"> 拍摄规范 </view>
- </view>
- </view>
- <image class="icon" :src="`${$imgUrl}applyCard/guohui.png`" v-if="!state.imageUrl2"></image>
- <image class="icon" :src="state.imageUrl2" v-else></image>
- </view>
- </view>
- </view>
- <view class="shibie-wrapper">
- <view class="title"> 个人信息 </view>
- <view class="">
- <u-field required labelWidth="200" v-model="state.ocrData.name" input-align="right" label="姓名">
- </u-field>
- <u-field required labelWidth="200" v-model="state.ocrData.gender" input-align="right" label="性别">
- </u-field>
- <u-field required labelWidth="200" v-model="state.ocrData.idno" input-align="right" label="证件号">
- </u-field>
- <u-field required labelWidth="200" v-model="state.ocrData.address" input-align="right" label="地址">
- </u-field>
- <u-field required labelWidth="200" v-model="state.ocrData.termValidity" input-align="right"
- label="证件有效期">
- </u-field>
- <u-field required labelWidth="200" v-model="state.ocrData.phone" input-align="right" label="联系方式">
- </u-field>
- </view>
- </view>
-
- <view class="action">
- <button type="default" class="button" @click="savaHandle()">
- 确认下一步
- </button>
- </view>
- </view>
- <view class="choice-takePhoto-wrap" v-if="state.isTakePhotoModeShow" @click="cancle">
- <view class="choice-takePhoto">
- <view @click.stop="takePhoto(state.choiceIndex)" style="border-radius: 20rpx 20rpx 0 0;">拍照</view>
- <view @click.stop="xiangce(state.choiceIndex)">从手机相册选择</view>
- <view @click.stop="cancle">取消</view>
- </view>
- </view>
- <viewfinder v-if="state.phoneType" :phoneType="state.phoneType" :images="state.images"
- :showStartPhoto="state.showImg" @confirmReturn="confirmReturn" @camera="camera"></viewfinder>
- </template>
-
- <script setup lang="ts">
- import { reactive } from "vue";
- import { navTo, uploadFile } from "@/utils/utils";
- import { etcOcrCard } from "@/utils/network/api.js";
- import viewfinder from "@/components/viewfinder.vue"
- const savaHandle = () => {
- console.log("执行点击事件");
- navTo("/subpackage/after-sale/to-bookkeeping-card/car-change");
- };
-
- const state = reactive({
- phoneType: 0, // 1 身份证正面 2 身份证反面 3行驶证正面 4行驶证反面
- choiceIndex: 1, // 1 身份证正面 2 身份证反面
- isTakePhotoModeShow: false, //选择拍照方式是否出来
- images: '',
- showImg: true,
- ocrData: {
- name: "",
- gender: "",
- idno: "",
- address: "",
- phone: "",
- termValidity: "",
- },
- isMyPeopple: true,
- buchongData: {
- conmpany: "李某一",
- type: "居民身份证",
- card: "",
- phone: "",
- },
- imageUrl: "",
- imageUrl2: "",
- });
-
- const takePhotoMode = (index) => {
- console.log("index", index)
- state.isTakePhotoModeShow = true
- state.choiceIndex = index
- }
- const xiangce = (val) => {
- console.log("val", val)
- var imageType = val;
- uni.chooseImage({
- count: 1, //只能选取一张照片
- sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
- sourceType: ["album"], //从相册选择
- success: function (res) {
- state.showImg = false
- state.images = res.tempFilePaths[0]
- state.phoneType = state.choiceIndex
- state.isTakePhotoModeShow = false
- console.log("tempFilePaths[0].startsWith('file://')", res.tempFilePaths[0], res.tempFilePaths[0].startsWith('file://'))
- },
- })
- }
- const takePhoto = (val) => {
- console.log("拍照", val)
- state.showImg = true
- state.phoneType = val;
- }
- const confirmReturn = (val) => {
- state.phoneType = 0
- state.isTakePhotoModeShow = false
- var imageType = state.choiceIndex;
- console.log("图片地址val", val.tempImagePath)
- uploadFile(val.tempImagePath, imageType, etcOcrCard).then((data) => {
- console.log("身份证上传", data)
- if (state.choiceIndex == 1) {
- state.imageUrl = data.imageUrl;
- state.ocrData.name = data.name;
- state.ocrData.gender = data.gender;
- state.ocrData.idno = data.idno;
- state.ocrData.address = data.address;
- } else {
- state.ocrData.termValidity = data.begindate + "-" + data
- .enddate;
- state.imageUrl2 = data.imageUrl;
- }
- state.isTakePhotoModeShow = false
- })
- }
- const cancle = () => {
- state.isTakePhotoModeShow = false
- }
- const camera = () => {
- state.phoneType = 0
- }
- </script>
-
- <style lang="scss" scoped>
- .content {
- padding: 50rpx 30rpx 50rpx 30rpx;
-
- .action {
- margin-top: 60rpx;
- padding-left: 20rpx;
- padding-right: 20rpx;
- padding-bottom: 30rpx;
-
- .button {
- height: 80rpx;
- background: linear-gradient(-90deg, #43a1e0 0%, #13e7c1 100%);
- border-radius: 40rpx;
- font-size: 32rpx;
- font-weight: 400;
- color: #ffffff;
- line-height: 80rpx;
- }
- }
-
- .item-tips {
- .title {
- font-size: 30rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #000000;
- line-height: 24rpx;
- }
-
- .tip {
- margin-top: 16rpx;
- font-size: 24rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 24rpx;
- }
- }
-
- .picture-wrapper {
- margin-top: 40rpx;
-
- .bg {
- background: #ffffff;
- box-shadow: 0rpx 4rpx 13rpx 3rpx rgba(223, 223, 223, 0.8);
- border-radius: 20rpx;
- padding: 40rpx;
- display: flex;
- // align-items: center;
- justify-content: space-between;
-
- .name {
- font-size: 34rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #000000;
- line-height: 34rpx;
- }
-
- .value {
- margin-top: 20rpx;
- font-size: 24rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 24rpx;
- }
-
- .tip {
- margin-top: 20rpx;
- text-align: center;
- width: 110rpx;
- height: 40rpx;
- background: rgba(33, 190, 177, 0.2);
- border-radius: 6rpx;
-
- .tip-value {
- font-size: 20rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #0a8f8a;
- line-height: 40rpx;
- opacity: 1;
- }
- }
- }
-
- .icon {
- width: 294rpx;
- height: 188rpx;
- }
- }
-
- .shibie-wrapper {
- margin-top: 60rpx;
-
- .title {
- font-size: 30rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #000000;
- line-height: 30rpx;
- }
-
- ::v-deep .u-flex {
- width: 100%;
- }
-
- ::v-deep .u-field {
- border-bottom: 1rpx solid #DCDCDC;
- }
- }
-
- .buchong-wrapper {
- margin-top: 60rpx;
-
- .title {
- font-size: 30rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #000000;
- line-height: 30rpx;
- }
- }
-
- .green-tip {
- margin-top: 50rpx;
- font-size: 24rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #00b38b;
- line-height: 24rpx;
- margin-bottom: 60rpx;
- }
- }
-
- .choice-takePhoto {
- position: absolute;
- bottom: 0;
- background-color: white;
- width: 100%;
- border-radius: 20rpx 20rpx 0 0;
- }
-
- .choice-takePhoto>view:first-child {
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- border-bottom: 1rpx solid rgba(127, 127, 127, 0.3);
- background-color: white;
- }
-
- .choice-takePhoto>view:last-child {
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- border-top: 6rpx solid rgba(127, 127, 127, 0.1);
- background-color: white;
- }
-
- .choice-takePhoto>view {
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- background-color: white;
- }
-
- .choice-takePhoto-wrap {
- width: 100%;
- height: 100vh;
- background-color: rgba(127, 127, 127, 0.2);
- position: fixed;
- left: 0;
- top: 0;
- z-index: 11111;
- }
- </style>
|