1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108 |
- <template>
- <view :style="getHeight" style="background-color: #F5F5F5;">
- <!-- 公共组件-每个页面必须引入 -->
- <public-module></public-module>
- <!-- 头部 -->
- <view class="carInfo w-100 px-3 box-sizing">
- <view class="d-flex">
- <view class="icon iconfont icon-tree-round-car flex-shrink topLeft"></view>
- <view class="topRight d-flex flex-1 p-3 flex-column" style="color: #FFFFFF;">
- <view class="d-flex flex-1">
- <view class="font-lg d-flex a-center">{{this.licenseNo}}
- <view class="icon iconfont icon-bianji1 ml-2" @tap="toCarInfo"></view>
- </view>
- </view>
- <view class="brandName">{{carInfo.modelcname}}</view>
- </view>
- </view>
- <view class="other d-flex j-sb px-3">
- <view class="d-flex flex-1 a-center">
- <view class="privilege d-flex a-center j-center flex-shrink px-2">特权</view>
- <view class="content">每月自动查违章,无违章领奖励</view>
- </view>
- <view class="flex-shrink icon iconfont icon-youjiantou d-flex a-center font-sm"></view>
- </view>
- </view>
- <!-- 车主信息 -->
- <view>
- <view class="personInfo">
- <view class="title d-flex a-center j-center j-sb">
- <text style="font-weight: bold;">车主</text>
- <view class="showStatus" @tap="controlShow('showOwerInfo')">{{showOwerInfo?'收起':'展开'}}</view>
- </view>
- <view class="content" v-if="showOwerInfo">
- <view class="row d-flex a-center">
- <view class="left">姓名:</view>
- <view class="right d-flex flex-1">{{ownerInfo.name}}</view>
- </view>
- <view class="row d-flex a-center">
- <view class="left">证件类型:</view>
- <block v-for="(item,index) in identifyList" :key="index">
- <template v-if="item.id == ownerInfo.identifyType">
- <view class="right d-flex flex-1">{{item.label}}</view>
- </template>
- </block>
- </view>
- <view class="row d-flex a-center">
- <view class="left">手机号:</view>
- <view class="right d-flex flex-1">{{ownerInfo.mobile}}</view>
- </view>
- <view class="row d-flex a-center">
- <view class="left">证件号:</view>
- <view class="right d-flex flex-1">{{ownerInfo.identifyNumber}}</view>
- </view>
- <view class="row d-flex a-center"
- style="height:auto;min-height: 80upx;padding: 15upx 0;box-sizing: border-box; ">
- <view class="left">地址:</view>
- <view class="right d-flex flex-1">{{ownerInfo.addr}}</view>
- </view>
- </view>
- </view>
- <!-- 投保人信息 -->
- <view class="personInfo">
- <view class="title d-flex a-center j-sb">
- <text style="font-weight: bold;">投保人</text>
- <view class="showStatus" @tap="controlShow('showPolicyHolderInfo')">
- {{showPolicyHolderInfo?'收起':'展开'}}
- </view>
- </view>
- <view class="content" v-if="showPolicyHolderInfo">
- <view class="row d-flex a-center">
- <view class="left">姓名:</view>
- <view class="right d-flex flex-1">{{policyHolderInfo.name}}</view>
- </view>
- <view class="row d-flex a-center">
- <view class="left">证件类型:</view>
- <block v-for="(item,index) in identifyList" :key="index">
- <template v-if="item.id == policyHolderInfo.identifyType">
- <view class="right d-flex flex-1">{{item.label}}</view>
- </template>
- </block>
- </view>
- <view class="row d-flex a-center">
- <view class="left">手机号:</view>
- <view class="right d-flex flex-1">{{policyHolderInfo.mobile}}</view>
- </view>
- <view class="row d-flex a-center">
- <view class="left">证件号:</view>
- <view class="right d-flex flex-1">{{policyHolderInfo.identifyNumber}}</view>
- </view>
- <view class="row d-flex a-center"
- style="height:auto;min-height: 80upx;padding: 15upx 0;box-sizing: border-box; ">
- <view class="left">地址:</view>
- <view class="right d-flex flex-1">{{policyHolderInfo.addr}}</view>
- </view>
- </view>
- </view>
- <!-- 被保人信息 -->
- <view class="personInfo">
- <view class="title d-flex a-center j-sb">
- <text style="font-weight: bold;">被保人</text>
- <view class="showStatus" @tap="controlShow('showInsuredPersonInfo')">
- {{showInsuredPersonInfo?'收起':'展开'}}
- </view>
- </view>
- <view class="content" v-if="showInsuredPersonInfo">
- <view class="row d-flex a-center">
- <view class="left">姓名:</view>
- <view class="right d-flex flex-1">{{insuredPersonInfo.name}}</view>
- </view>
- <view class="row d-flex a-center">
- <view class="left">证件类型:</view>
- <block v-for="(item,index) in identifyList" :key="index">
- <template v-if="item.id == insuredPersonInfo.identifyType">
- <view class="right d-flex flex-1">{{item.label}}</view>
- </template>
- </block>
- </view>
- <view class="row d-flex a-center">
- <view class="left">手机号:</view>
- <view class="right d-flex flex-1">{{insuredPersonInfo.mobile}}</view>
- </view>
- <view class="row d-flex a-center">
- <view class="left">证件号:</view>
- <view class="right d-flex flex-1">{{insuredPersonInfo.identifyNumber}}</view>
- </view>
- <view class="row d-flex a-center"
- style="height:auto;min-height: 80upx;padding: 15upx 0;box-sizing: border-box; ">
- <view class="left">地址:</view>
- <view class="right d-flex flex-1">{{insuredPersonInfo.addr}}</view>
- </view>
- </view>
- </view>
- <!-- 车辆影像信息Start -->
- <view class="imageInfo">
- <view class="title d-flex a-center j-sb">
- <text style="font-weight: bold;">车辆影像信息</text>
- <view class="showStatus" @tap="controlShow('showCarImageInfo')">{{showCarImageInfo?'收起':'展开'}}
- </view>
- </view>
- <view class="uni-uploader" v-if="showCarImageInfo">
- <view class="uni-uploader-body">
- <view class="uni-uploader__files">
- <block v-for="(image,index) in carImageList" :key="index">
- <view class="uni-uploader__file">
- <image class="uni-uploader__img" :src="image.url" :data-src="image.url"
- @tap="previewImage($event,'car')"></image>
- <view class="delImgIcon iconfont icon-cuo d-flex a-center j-center"
- @tap="delCheckImage('car',index)"></view>
- </view>
- </block>
- <view class="uni-uploader__input-box" style="box-sizing: border-box;">
- <view class="uni-uploader__input" @tap="chooseImage('car')"></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 车辆影像信息End -->
- <!-- 车主影像信息Start -->
- <view class="imageInfo">
- <view class="title d-flex a-center j-sb">
- <text style="font-weight: bold;">车主影像信息</text>
- <view class="showStatus" @tap="controlShow('showOwnerImageInfo')">{{showOwnerImageInfo?'收起':'展开'}}
- </view>
- </view>
- <view class="uni-uploader" v-if="showOwnerImageInfo">
- <view class="uni-uploader-body">
- <view class="uni-uploader__files">
- <block v-for="(image,index) in ownerImageList" :key="index">
- <view class="uni-uploader__file">
- <image class="uni-uploader__img" :src="image.url" :data-src="image.url"
- @tap="previewImage($event,'owner')"></image>
- <view class="delImgIcon iconfont icon-cuo d-flex a-center j-center"
- @tap="delCheckImage('owner',index)"></view>
- </view>
- </block>
- <view class="uni-uploader__input-box" style="box-sizing: border-box;">
- <view class="uni-uploader__input" @tap="chooseImage('owner')"></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 车主影像信息End -->
- <!-- 投保人影像信息Start -->
- <view class="imageInfo">
- <view class="title d-flex a-center j-sb">
- <text style="font-weight: bold;">投保人影像信息</text>
- <view class="showStatus" @tap="controlShow('showPolicyImageInfo')">
- {{showPolicyImageInfo?'收起':'展开'}}
- </view>
- </view>
- <view class="uni-uploader" v-if="showPolicyImageInfo">
- <view class="uni-uploader-body">
- <view class="uni-uploader__files">
- <block v-for="(image,index) in policyImageList" :key="index">
- <view class="uni-uploader__file">
- <image class="uni-uploader__img" :src="image.url" :data-src="image.url"
- @tap="previewImage($event,'policy')"></image>
- <view class="delImgIcon iconfont icon-cuo d-flex a-center j-center"
- @tap="delCheckImage('policy',index)"></view>
- </view>
- </block>
- <view class="uni-uploader__input-box" style="box-sizing: border-box;">
- <view class="uni-uploader__input" @tap="chooseImage('policy')"></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 投保人影像信息End -->
- <!-- 被保人影像信息Start -->
- <view class="imageInfo">
- <view class="title d-flex a-center j-sb">
- <text style="font-weight: bold;">被保人影像信息</text>
- <view class="showStatus" @tap="controlShow('showInsuredImageInfo')">
- {{showInsuredImageInfo?'收起':'展开'}}
- </view>
- </view>
- <view class="uni-uploader" v-if="showInsuredImageInfo">
- <view class="uni-uploader-body">
- <view class="uni-uploader__files">
- <block v-for="(image,index) in insuredImageList" :key="index">
- <view class="uni-uploader__file">
- <image class="uni-uploader__img" :src="image.url" :data-src="image.url"
- @tap="previewImage($event,'insured')"></image>
- <view class="delImgIcon iconfont icon-cuo d-flex a-center j-center"
- @tap="delCheckImage('insured',index)"></view>
- </view>
- </block>
- <view class="uni-uploader__input-box" style="box-sizing: border-box;">
- <view class="uni-uploader__input" @tap="chooseImage('insured')"></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 被保人影像信息End -->
- <!-- 验车照Start -->
- <view class="imageInfo">
- <view class="title d-flex a-center j-sb">
- <text style="font-weight: bold;">验车照</text>
- <view class="showStatus" @tap="controlShow('showCarCheckImageInfo')">
- {{showCarCheckImageInfo?'收起':'展开'}}
- </view>
- </view>
- <view class="uni-uploader" v-if="showCarCheckImageInfo">
- <view class="uni-uploader-body">
- <view class="uni-uploader__files">
- <block v-for="(image,index) in carCheckImageList" :key="index">
- <view class="uni-uploader__file">
- <image class="uni-uploader__img" :src="image.url" :data-src="image.url"
- @tap="previewImage($event,'carCheck')"></image>
- <view class="delImgIcon iconfont icon-cuo d-flex a-center j-center "
- @tap="delCheckImage('carCheck',index)"></view>
- </view>
- </block>
- <view class="uni-uploader__input-box" style="box-sizing: border-box;">
- <view class="uni-uploader__input" @tap="chooseImage('carCheck')"></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 验车照End -->
- <!-- 特约 -->
- <block v-for="(item,index) in riskList" :key="index">
- <template>
- <view class="appoint">
- <view class="title d-flex a-center j-sb">
- <text style="font-weight: bold;">特约</text>
- <view class="showStatus" @tap="controlShow('showAppoint')">{{showAppoint?'收起':'展开'}}</view>
- </view>
- <view class="content" v-if="showAppoint">
- <view class="row d-flex a-center j-sb">
- <view class="d-flex a-center j-center">交强特约险:</view>
- <textarea maxlength="100" v-model="jqappoint"
- placeholder="请输入交强险特别约定,最多可输入300个字符" /></textarea>
- </view>
- <view class="row d-flex a-center j-sb">
- <view>商业特约险:</view>
- <textarea class="mb-32" style="width: 100%;" maxlength="300" v-model="syappoint"
- placeholder="请输入商业险特别约定,最多可输入300个字符" /></textarea>
- </view>
- </view>
- </view>
- </template>
- </block>
- <view class="advancePayment">
- <view class="title d-flex a-center j-sb">
- <text style="font-weight: bold;">保费</text>
- <view class="showStatus" @tap="controlShow('showAdvancePayment')">{{showAdvancePayment?'收起':'展开'}}
- </view>
- </view>
- <view class="content" v-if="showAdvancePayment">
- <block v-for="(item,index) in riskList" :key="index">
- <template v-if="item.riskCode == '0507'">
- <view class="row d-flex a-center j-sb">
- <view class="d-flex a-center">交强险</view>
- <view>¥{{jqpremium}}</view>
- </view>
- </template>
- </block>
- <view class="row d-flex a-center j-sb">
- <view>车船税</view>
- <view>¥{{taxAmount}}</view>
- </view>
- <block v-for="(item,index) in riskList" :key="index">
- <template v-if="item.riskCode == '0510'">
- <view class="row d-flex a-center j-sb">
- <view class="d-flex a-center">商业险</view>
- <view>¥{{sypremium}}</view>
- </view>
- </template>
- </block>
- </view>
- </view>
- </view>
- <view style="height: 160upx;"></view>
- <view class="bottomBtn">
- <view class="agree d-flex a-center">
- <checkbox @tap="agreed" :checked="agree" style="transform:scale(0.6)"></checkbox> 我已确认并同意 <text
- class="tip">保险条款</text> | <text class="tip">投保须知</text> | <text class="tip">隐私条款</text>
- </view>
- <view class="btnView d-flex">
- <view class="d-flex flex-1 a-center">
- <view class="d-flex flex-column a-center listener">
- <view class="icon iconfont icon-xiaomishu"></view> 客服
- </view>
- <view style="font-weight: bold;font-size: 34upx;color: #333; ">¥{{sumPermium}}</view>
- </view>
- <view class="btn d-flex a-center j-center" @tap="submitAudit">申请核保</view>
- </view>
- </view>
- <previewImage ref="previewImage" :opacity="0.8" :circular="true" :imgs="previewImgs"></previewImage>
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations
- } from "vuex"
- import previewImage from '@/components/common/previewImage/previewImage.vue'; //引用插件
- // import wPicker from "@/components/w-picker/w-picker.vue";
- import {
- pathToBase64,
- base64ToPath
- } from '@/common/image-tools-base64.js';
- import * as imageConversion from 'image-conversion'
- export default {
- components: {
- // wPicker,
- previewImage
- },
- computed: {
- ...mapState(['userInfo']),
- getHeight() {
- let height = uni.getSystemInfoSync().windowHeight;
- return `minHeight: ${height}px;`;
- }
- },
- data() {
- return {
- quoteno: "", //报价号
- previewImgs: [],
- sumPermium: "",
- carInfo: {},
- vehicleModel: {},
- companyId: "",
- licenseNo: "",
- riskList: [],
- kindList: [],
- name: "",
- icon: "",
- taxAmount: "",
- jqpremium: "",
- sypremium: "",
- ownerInfo: {},
- policyHolderInfo: {},
- insuredPersonInfo: {},
- agree: false,
- jqappoint: "", //交强险特别约定
- syappoint: "", //商业特别约定
- identifyList: [{
- label: '身份证',
- id: "01"
- },
- {
- label: '护照',
- id: "02"
- },
- {
- label: '港澳台居民居住证',
- id: "03"
- },
- {
- label: '组织机构代码证',
- id: "04"
- },
- {
- label: '统一社会信用代码证',
- id: "05"
- },
- {
- label: '营业执照',
- id: "06"
- }
- ],
- showOwerInfo: false, //展示车主信息
- showPolicyHolderInfo: false, //展示投保人信息
- showInsuredPersonInfo: false, //展示被保人信息
- showProposalWay: false, //获取保单方式
- showAdvancePayment: false, //展示保费
- showAppoint: false, //展示特约
- showCarImageInfo: false, //显示车辆影像
- carImageList: [],
- showOwnerImageInfo: false, //显示车主影像
- ownerImageList: [],
- showPolicyImageInfo: false, //显示投保人影像
- policyImageList: [],
- showInsuredImageInfo: false, //显示被保人影像
- insuredImageList: [],
- showCarCheckImageInfo: false, //显示验车照影像
- carCheckImageList: [],
- existenceimg: 0,
- }
- },
- async onLoad(params) {
- if (!!params.companyId) {
- this.companyId = params.companyId;
- let param = {
- companyId: params.companyId
- };
- let res = await this.$http.post('/insurance/order/getByCompanyId', param);
- //获取前一个页面传过来的信息(车辆信息,人员信息,险种信息)
- this.icon = "";
- this.name = res.data.inscompany;
- this.quoteno = res.data.quoteno;
- this.carInfo = res.data.carinfo;
- this.ownerInfo = res.data.ownerinfo;
- this.policyHolderInfo = res.data.applyinfo;
- this.insuredPersonInfo = res.data.insureinfo;
- this.riskList = res.data.riskinfo;
- this.kindList = res.data.kindinfo;
- this.licenseNo = res.data.licenseno;
- this.sumPermium = res.data.sumpremium;
- this.taxAmount = res.data.taxamount;
- this.jqpremium = res.data.jqpremium;
- this.sypremium = res.data.sypremium;
- // 图片类型(C01车辆影像,C02车主身份证,C03投保人身份证,C04被保人身份证,C05验车照)
- this.imageEcho(this.quoteno)
- // 影像获取完毕
- } else {
- uni.showModal({
- showCancel: false,
- title: "未查询到该订单"
- })
- }
- },
- methods: {
- ...mapMutations(['setOrdertype', 'setOrderStage']),
- //影像查询
- async imageEcho(quotenos) {
- let imgres = await this.$http.get('/ins/taskImage/findByQuoteNo?quoteNo=' + quotenos);
- if (imgres.code == "200") {
- Object.keys(imgres.data).forEach((keys) => {
- imgres.data[keys].forEach((ele) => {
- ele.url = this.$base.baseUrl + ele.url;
- return ele;
- });
- });
- console.log(imgres.data)
- this.carImageList = imgres.data.C01;
- this.ownerImageList = imgres.data.C02;
- this.policyImageList = imgres.data.C03;
- this.insuredImageList = imgres.data.C04;
- this.carCheckImageList = imgres.data.C05;
- }
- },
- // 重新选择车型
- toCarInfo() {
- this.navigate({
- url: '/pages/carInsure1/carInfo1',
- success: (res) => {
- res.eventChannel.emit("acceptData", {
- carInfo: this.carInfo,
- ownerInfo: this.ownerInfo,
- policyHolderInfo: this.policyHolderInfo,
- insuredPersonInfo: this.insuredPersonInfo,
- riskList: this.riskList,
- kindList: this.kindList
- })
- }
- }, "navigateTo", true);
- },
- //控制详情的展开和收起
- controlShow(type) {
- this[type] = !this[type];
- },
- //阅读并同意协议
- agreed() {
- if (this.agree == false) {
- this.agree = true;
- } else {
- this.agree = false;
- }
- },
- //保存影像
- async getTaskImg(type, typeName) {
- let res = await this.$http.get('/insTaskImage/findById?imgtype=' + type + '&taskid=' + this.orderno);
- if (res.data.imgList.length > 0) {
- this.existenceimg = 1;
- } else {
- this.existenceimg = 0;
- }
- this[typeName] = res.data.imgList;
- },
- async chooseImage(type) {
- if (this[type + 'ImageList'].length === 9) {
- let isContinue = await this.isFullImg(type);
- console.log("是否继续?", isContinue);
- if (!isContinue) {
- return;
- }
- }
- uni.chooseImage({
- count: 9 - this[type + 'ImageList'].length,
- success: (res) => {
- for (let i = 0; i < res.tempFilePaths.length; i++) {
- if (this.name == '永安财险') {
- if (Math.round(res.tempFiles[i].size / 1024) > 800) {
- uni.showModal({
- showCancel: false,
- title: "图片过大,请重新上传"
- })
- } else if ((Math.round(res.tempFiles[i].size / 1024) < 800) && (Math
- .round(res
- .tempFiles[i].size / 1024) > 100)) {
- //#ifdef APP-PLUS
- let kb = Math.round((100 / Math.round(res.tempFiles[i].size /
- 1024)) *
- 100);
- uni.compressImage({
- src: res.tempFilePaths[i],
- quality: kb,
- success: res => {
- pathToBase64(res.tempFilePath)
- .then(base64 => {
- this[type + 'ImageList'] = this[
- type +
- 'ImageList'].concat(base64)
- })
- }
- })
- //#endif
- //#ifdef H5
- const isJpgOrPng = res.tempFiles[i].type === "image/jpeg";
- if (!isJpgOrPng) {
- uni.showModal({
- showCancel: false,
- title: "上传图片只能是 JPG 格式!"
- })
- return false;
- }
- return new Promise((resolve) => {
- // 压缩到400KB,这里的400就是要压缩的大小,可自定义
- imageConversion.imageConversion(res.tempFiles[i],
- 90)
- .then((res) => {
- let file = window.URL.createObjectURL(
- res) //blob转临时路径
- pathToBase64(file)
- .then(base64 => {
- this[type + 'ImageList'] =
- this[type +
- 'ImageList']
- .imageConversionconcat(
- base64)
- })
- resolve(res);
- });
- });
- //#endif
- }
- } else {
- //#ifdef APP-PLUS
- uni.compressImage({
- src: res.tempFilePaths[i],
- quality: 95,
- success: res => {
- pathToBase64(res.tempFilePath)
- .then(base64 => {
- this[type + 'ImageList'] = this[type +
- 'ImageList'].concat(base64)
- })
- }
- })
- //#endif
- //#ifdef H5
- const isJpgOrPng = res.tempFiles[i].type === "image/jpeg";
- if (!isJpgOrPng) {
- uni.showModal({
- showCancel: false,
- title: "上传图片只能是 JPG 格式!"
- })
- return false;
- }
- return new Promise((resolve) => {
- // 压缩到400KB,这里的400就是要压缩的大小,可自定义
- imageConversion.compressAccurately(res.tempFiles[i], 90)
- .then((res) => {
- let file = window.URL.createObjectURL(
- res) //blob转临时路径
- pathToBase64(file)
- .then(base64 => {
- this[type + 'ImageList'] = this[
- type +
- 'ImageList'].concat(base64)
- })
- resolve(res);
- });
- });
- //#endif
- }
- }
- },
- fail: (err) => {
- console.log("上传失败!!");
- },
- })
- },
- isFullImg(type) {
- return new Promise((res) => {
- uni.showModal({
- content: "已经有9张图片了,是否清空现有图片?",
- success: (e) => {
- if (e.confirm) {
- this[type + 'ImageList'] = [];
- // this[type+'PreviewImageList']=[];
- setTimeout(() => {
- res(true);
- }, 500);
- } else {
- res(false)
- }
- },
- fail: () => {
- res(false)
- }
- })
- })
- },
- previewImage(e, type) {
- // var current = e.target.dataset.src
- // uni.previewImage({
- // current: current,
- // urls: this[type+'PreviewImageList']
- // })
- this.previewImgs = [];
- this.previewImgs = this[type + 'ImageList'];
- var current = e.currentTarget.dataset.src;
- this.$refs.previewImage.open(current); // 传入当前选中的图片地址或序号
- },
- //删除图片
- delCheckImage(type, index) {
- this[type + 'ImageList'].splice(index, 1);
- // this[type+'PreviewImageList'].splice(index,1)
- },
- // 上传影像并提交核保
- async submitAudit() {
- if (!this.agree) {
- return uni.showToast({
- title: '请阅读并同意协议',
- icon: "none",
- duration: 2000
- });
- }
- uni.showModal({
- content: '是否确认提交核保?',
- success: async (res) => {
- if (res.confirm) {
- switch (this.name) {
- case "永安财险":
- let yaimage = await this.$http.post('/order/yongAn/submitImage', {
- companyId: this.companyId
- });
- if (yaimage.code == '200') {
- let yaaudit = await this.$http.post('/order/yongAn/audit', {
- companyId: this.companyId,
- jqappoint: "",
- syappoint: ""
- });
- if (yaaudit.code == '200') {
- uni.showModal({
- content: '订单自核成功',
- cancelText: '暂不缴费',
- confirmText: '立即缴费',
- success: (res1) => {
- if (res1.confirm) {
- uni.navigateTo({
- url: "/pages/carInsure1/payCode1?companyId=" +
- this.companyId
- })
- } else {
- this.navigate({
- url: "/pages/index/index"
- }, "switchTab", true);
- }
- }
- });
- }
- } else {
- uni.showModal({
- content: '自核不通过(' + result.msg + ')',
- confirmText: '继续选择',
- success: async (res2) => {
- if (res2.confirm) {
- this.navigate({
- url: "/pages/orders/orders"
- }, "switchTab", true);
- }
- }
- });
- }
- break;
- case "中煤财险":
- let zmimage = await this.$http.post('/order/zhongMeiApi/submitImage', {
- companyId: this.companyId
- });
- if (zmimage.code == '200') {
- let zmaudit = await this.$http.post('/order/zhongMeiApi/audit', {
- companyId: this.companyId,
- jqappoint: "",
- syappoint: ""
- });
- if (zmaudit.code == '200') {
- uni.showModal({
- content: '订单自核成功',
- cancelText: '暂不缴费',
- confirmText: '立即缴费',
- success: (res1) => {
- if (res1.confirm) {
- uni.navigateTo({
- url: "/pages/carInsure1/payCode1?companyId=" +
- this.companyId
- })
- } else {
- this.navigate({
- url: "/pages/index/index"
- }, "switchTab", true);
- }
- }
- });
- }
- } else {
- uni.showModal({
- content: '自核不通过(' + result.msg + ')',
- confirmText: '继续选择',
- success: async (res2) => {
- if (res2.confirm) {
- this.navigate({
- url: "/pages/orders/orders"
- }, "switchTab", true);
- }
- }
- });
- }
- break;
- case "永诚财险":
- let ycimage = await this.$http.post('/api/yongCheng/UploadImage', {
- companyId: this.companyId
- });
- if (ycimage.code == '200') {
- let ycaudit = await this.$http.post('/api/yongCheng/audit', {
- companyId: this.companyId,
- });
- if (ycaudit.code == '200') {
- uni.showModal({
- content: '订单自核成功',
- cancelText: '暂不缴费',
- confirmText: '立即缴费',
- success: (res1) => {
- if (res1.confirm) {
- uni.navigateTo({
- url: "/pages/carInsure1/payCode1?companyId=" +
- this.companyId
- })
- } else {
- this.navigate({
- url: "/pages/index/index"
- }, "switchTab", true);
- }
- }
- });
- }
- } else {
- uni.showModal({
- content: '自核不通过(' + result.msg + ')',
- confirmText: '继续选择',
- success: async (res2) => {
- if (res2.confirm) {
- this.navigate({
- url: "/pages/orders/orders"
- }, "switchTab", true);
- }
- }
- });
- }
- break;
- case "紫金财险":
- let zjimage = await this.$http.post('/order/zijin/submitImage', {
- companyId: this.companyId
- });
- if (zjimage.code == '200') {
- let zjaudit = await this.$http.post('/order/zijin/audit', {
- companyId: this.companyId,
- });
- if (zjaudit.code == '200') {
- uni.showModal({
- content: '订单自核成功',
- cancelText: '暂不缴费',
- confirmText: '立即缴费',
- success: (res1) => {
- if (res1.confirm) {
- uni.navigateTo({
- url: "/pages/carInsure1/payCode1?companyId=" +
- this.companyId
- })
- } else {
- this.navigate({
- url: "/pages/index/index"
- }, "switchTab", true);
- }
- }
- });
- }
- } else {
- uni.showModal({
- content: '自核不通过(' + result.msg + ')',
- confirmText: '继续选择',
- success: async (res2) => {
- if (res2.confirm) {
- this.navigate({
- url: "/pages/orders/orders"
- }, "switchTab", true);
- }
- }
- });
- }
- break;
- case "恒邦财险":
- case "安盛天平":
- case "众安财险":
- case "中国人寿":
- let pythonimage = await this.$http.post(
- '/insurance/crawler/submitImage', {
- subOrderNo: this.companyId
- });
- if (pythonimage.code == '200') {
- let pythonaudit = await this.$http.post(
- '/insurance/crawler/audit', {
- subOrderNo: this.companyId,
- });
- if (pythonaudit.code == '200') {
- uni.showModal({
- content: '订单自核成功',
- cancelText: '暂不缴费',
- confirmText: '立即缴费',
- success: (res1) => {
- if (res1.confirm) {
- uni.navigateTo({
- url: "/pages/carInsure1/payCode1?companyId=" +
- this.companyId
- })
- } else {
- this.navigate({
- url: "/pages/index/index"
- }, "switchTab", true);
- }
- }
- });
- }
- } else {
- uni.showModal({
- content: '自核不通过(' + result.msg + ')',
- confirmText: '继续选择',
- success: async (res2) => {
- if (res2.confirm) {
- this.navigate({
- url: "/pages/orders/orders"
- }, "switchTab", true);
- }
- }
- });
- }
- break;
- }
- } else if (res.cancel) {}
- }
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '@/style/mixin.scss';
- /* 头部车辆信息和特权Start */
- .carInfo {
- height: 290upx;
- background: -webkit-linear-gradient(0deg, rgba($themeColor, 0.6), rgba($themeColor, 0.8));
- background-size: 100% 100%;
- }
- .carInfo .topLeft {
- width: 120upx;
- font-size: 90upx;
- color: #FFFFFF;
- }
- .carInfo .topRight .brandName {
- width: 400upx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .carInfo .other {
- background-color: #FFFFFF;
- height: 80upx;
- border-radius: 15upx;
- box-sizing: border-box;
- }
- .carInfo .other .privilege {
- background-color: rgba($themeColor, 0.6);
- font-size: 24upx;
- color: #FFFFFF;
- font-weight: bold;
- width: 60upx;
- }
- .carInfo .other .content {
- width: 460upx;
- margin-left: 15upx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .carInfo .other .icon {
- width: 30upx;
- }
- /* 头部车辆信息和特权End */
- /* 人员信息Start */
- .personInfo,
- .advancePayment,
- .imageInfo,
- .appoint {
- margin-bottom: 20upx;
- background: #FFFFFF;
- padding: 0upx 30upx;
- }
- .personInfo .title,
- .advancePayment .title,
- .imageInfo .title,
- .appoint .title {
- height: 80upx;
- font-size: 32upx;
- box-shadow: inset 0 -3upx 0px #fafafa;
- }
- .showStatus {
- font-size: 26upx;
- color: $themeColor;
- }
- .personInfo .content .row,
- .advancePayment .content .row {
- height: 80upx;
- border-bottom: 1px solid #F9F9F9;
- }
- .personInfo .content .row .left,
- .advancePayment .content .row .left {
- width: 170upx;
- flex-shrink: 0;
- font-size: 28upx;
- }
- .appoint .content .row {
- height: auto;
- margin-top: 10upx;
- }
- .appoint .content .row>view {
- width: 240upx;
- flex-shrink: 1;
- font-size: 28upx;
- }
- .appoint .content .row>textarea {
- padding: 15upx;
- box-sizing: border-box;
- font-size: 26upx;
- min-height: 160upx;
- height: 100upx;
- border: 1px solid #fafafa;
- }
- .personInfo .content .row .right,
- .advancePayment .content .row .right,
- .appoint .content .row .right {
- font-size: 28upx;
- }
- /* 人员信息End */
- .uni-uploader__file {
- position: relative;
- }
- .delImgIcon {
- width: 40upx;
- height: 40upx;
- background-color: #999;
- position: absolute;
- right: 0upx;
- top: 0upx;
- color: #FFFFFF;
- }
- /* 底部按钮Start */
- .bottomBtn {
- z-index: 99;
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- border-top: 1px solid #F1F1F1;
- background-color: #FFFFFF;
- height: 150upx;
- }
- .bottomBtn .agree {
- height: 60upx;
- font-size: 24upx;
- }
- .bottomBtn .agree .tip {
- color: $themeColor;
- margin: 0upx 10upx;
- }
- .bottomBtn .btnView {
- height: 100upx;
- border-top: 1px solid #F1F1F1;
- }
- .bottomBtn .listener {
- width: 120upx;
- font-size: 20upx;
- line-height: 1;
- color: #999;
- }
- .bottomBtn .listener .icon {
- font-size: 40upx;
- padding: 0;
- line-height: 1.2;
- }
- .bottomBtn .btn {
- font-size: 34upx;
- background-color: $themeColor;
- color: #fff;
- width: 280upx;
- flex-shrink: 0;
- }
- /* 底部按钮End */
- </style>
|