| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849 |
- <template>
- <div class="page">
- <el-form :inline="true" :model="pageRequest" class="demo-form-inline" size="small" label-width="130px">
- <el-row>
- <el-col :span="6">
- <el-form-item label="订单号">
- <el-input v-model="pageRequest.orderNo" placeholder="请输入订单号" class="widths" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="车牌号">
- <el-input v-model="pageRequest.licenseNo" placeholder="请输入车牌号" class="widths" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="车架号">
- <el-input v-model="pageRequest.frameNo" placeholder="请输入车架号" class="widths" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="投保人姓名">
- <el-input v-model="pageRequest.insuredName" placeholder="请输入投保人姓名" class="widths" clearable></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6" v-if="isLetterOrder">
- <el-form-item label="机构名称">
- <el-cascader class="widths" :options="institutionOptions" v-model="pageRequest.deptId" :props="{
- checkStrictly: true,
- value: 'id',
- label: 'name',
- }" @change="handleChange" clearable></el-cascader>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="录单日期">
- <el-date-picker v-model="value2" type="daterange" @change="monthChange" start-placeholder="开始日期"
- end-placeholder="结束日期" value-format="yyyy-MM-dd" clearable style="width: 200px"></el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="保险公司">
- <el-select v-model="pageRequest.companyId" filterable class="widths" clearable>
- <el-option v-for="val in companyList" :key="val.id" :label="val.name" :value="val.id"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="险种">
- <el-select v-model="pageRequest.productid" clearable filterable placeholder="选择险种" class="widths">
- <el-option v-for="item in productsTypeoptions" :key="item.dictValue" :label="item.dictTag"
- :value="item.dictValue"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="险种选择">
- <el-radio-group v-model="pageRequest.productid">
- <el-radio label="">全部</el-radio>
- <el-radio v-for="val in productsTypeoptions" :key="val.dictValue" :label="val.dictValue">{{ val.dictTag
- }}</el-radio>
- </el-radio-group>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="21" v-if="isLetterOrder">
- <el-form-item label="订单状态">
- <el-radio-group v-model="pageRequest.orderStatus">
- <el-radio label="888">全部</el-radio>
- <el-radio v-for="val in optionsStatus" :key="val.dictValue" :label="val.dictValue">{{ val.dictTag
- }}</el-radio>
- </el-radio-group>
- </el-form-item>
- </el-col>
- <el-col :span="3">
- <el-button type="primary" size="small" @click="onSubmit">查询</el-button>
- </el-col>
- </el-row>
- </el-form>
- <el-table size="small" :data="pageResult" border v-loading="orderLoaing" highlight-current-row stripe
- @expand-change="handleRowChange" ref="expandTable" :height="tabelHeight" :header-cell-style="{
- background: '#F2F7FC',
- fontWeight: '700',
- color: '#606266',
- }">
- <el-table-column type="expand">
- <template slot-scope="scope">
- <div class="demo-table-expand flex a-c j-s" :style="{ width: width, flexWrap: 'wrap' }"
- v-for="(item, index) in scope.row.insAreaCompanyList" :key="index">
- <div style="width: 12%">
- {{ item.inscompany }}
- <!-- <span style="color: #d42426">({{ item.agreementName }})</span> -->
- </div>
- <div class="flex a-c j-s demo-table-expand-time">
- <div>
- 总价:
- <span style="color: #d42426">{{ item.sumpremium }}</span>
- </div>
- <div>
- 交强险:
- <span style="color: #d42426">{{ item.jqpremium }}</span>
- </div>
- <div>
- 商业险:
- <span style="color: #d42426">{{ item.sypremium }}</span>
- </div>
- <div>
- 车船税:
- <span style="color: #d42426">{{ item.taxamount }}</span>
- </div>
- <div v-if="item.jypremium">
- 驾意险:
- <span style="color: #d42426">{{ item.jypremium }}</span>
- </div>
- <div>{{ item.createtime }}</div>
- </div>
- <div slot="reference" class="name-wrapper flex a-c j-c">
- <el-tag style="
- color: #33a08d;
- border-color: #33a08d;
- background: rgba(51, 160, 141, 0.1);
- " v-if="item.orderstatus == '0' || item.orderstatus == '1'" size="small">{{ item.orderstatus | cap
- }}</el-tag>
- <el-tag style="border-color: #e75b5d" type="danger" v-else-if="item.orderstatus == '3'" size="small">{{
- item.orderstatus | cap }}</el-tag>
- <el-tag v-else style="
- color: #2d4d89;
- border-color: #2d4d89;
- background: rgba(45, 77, 137, 0.1);
- " size="small">{{ item.orderstatus | cap }}</el-tag>
- </div>
- <div class="flex a-c">
- <el-button size="mini" type="text" v-if="item.orderstatus == '1' &&
- [
- '中煤财险',
- '大家财险',
- '永诚财险',
- '国任财险',
- '太平财险',
- '华农财险',
- '恒邦财险',
- '诚泰财险',
- '众安财险',
- '中国人寿',
- '安盛天平',
- '紫金财险',
- '渤海财险',
- '泰康财险',
- '华泰财险',
- ].includes(item.inscompany)
- " @click="refreshStatus(item)" class="red_color">更新订单</el-button>
- <el-button size="mini" type="text" v-if="item.orderstatus == '4' && item.inscompany == '华泰财险'"
- @click="updateStatusHuatai(item)" class="red_color">更新订单</el-button>
- <el-button size="mini" type="text" v-if="(item.orderstatus == '1' ||
- item.orderstatus == '2' ||
- item.orderstatus == '4') &&
- ['紫金财险'].includes(item.inscompany)
- " @click="cancelorder(item)" class="red_color">撤单</el-button>
- <el-button size="mini" type="text" v-if="item.orderstatus == '2'" @click="carcode(item)"
- class="red_color">二维码</el-button>
- <!-- <el-button size="mini" class="red_color" v-if="item.orderstatus == '2' && item.inscompany == '平安财险'" type="text" @click="signature(item)">生成签章</el-button> -->
- <el-button size="mini" type="text" class="green_color"
- @click="OrderDetails(scope.row, item)">查看详情</el-button>
- <el-button size="mini" type="text" :loading="querystatusLoaing" v-if="item.orderstatus == '2' &&
- [
- '太平财险',
- '华农财险',
- '恒邦财险',
- '诚泰财险',
- '众安财险',
- '中国人寿',
- '安盛天平',
- '紫金财险',
- '永诚财险',
- '大家财险',
- '华泰财险',
- '国任财险',
- '中煤财险',
- '渤海财险',
- '泰康财险',
- '平安财险',
- ].includes(item.inscompany)
- " class="blue_color" @click="querystatus(item, index)">状态更新</el-button>
- <el-button v-if="item.orderstatus !== '2'" size="mini" type="text" class="blue_color"
- @click="orderTrajectory(scope.row, item)">订单轨迹</el-button>
- <el-button size="mini" type="primary" @click="bjdpreview(item.id, scope.row.userid)">报价单</el-button>
- <el-button
- v-if="(item.orderstatus == '1' || item.orderstatus == '4') && item.inscompany == '平安财险' && item.fileStatus"
- size="mini" type="text" class="green_color"
- @click="additionalInformation(item.id, scope.row)">补充资料</el-button>
- <!-- <el-button size="mini" type="text" @click="CloseEdit(scope.$index, scope.row)">编辑</el-button> -->
- <el-button type="text" size="mini" v-if="item.orderstatus == '2'">
- <el-dropdown trigger="click">
- <span class="el-dropdown-link blue_color">
- 更多
- <i class="el-icon-arrow-down el-icon--right"></i>
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item>
- <el-button size="mini" type="text" style="color: #2d4d89"
- @click="orderTrajectory(scope.row, item)">订单轨迹</el-button>
- </el-dropdown-item>
- <el-dropdown-item v-if="item.inscompany !== '平安财险'">
- <el-button type="text" size="mini" style="color: #2d4d89"
- @click="revokeCode(item.id)">撤销二维码</el-button>
- </el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </el-button>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="orderno" label="订单号" align="center" width="180"></el-table-column>
- <el-table-column prop="username" :label="managementSource==1?'会员名称':'业务员'" align="center" width="180">
- <template slot-scope="scope">
- <span>{{ scope.row.username }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="username" :label="managementSource==1?'会员号':'业务员工号'" align="center" width="180">
- <template slot-scope="scope">
- <span>{{ scope.row.userid }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="insCompany" label="已承保的公司" width="100" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.insCompany ? scope.row.insCompany : "--" }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="partnerCompaniesName" label="合作公司" width="100" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.partnerCompaniesName ? scope.row.partnerCompaniesName : "--" }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="licenseno" label="车牌号" width="100" align="center"></el-table-column>
- <el-table-column prop="insuredname" label="投保人姓名" align="center" width="100"></el-table-column>
- <el-table-column prop="product" label="投保险种" align="center" width="100"></el-table-column>
- <el-table-column prop="orderstatus" label="状态" align="center" width="150">
- <template slot-scope="scope">
- <!-- <el-tag :type="capType(scope.row.orderstatus)" size="small">{{
- scope.row.orderstatus | cap
- }}</el-tag>-->
- <el-tag style="
- color: #33a08d;
- border-color: #33a08d;
- background: rgba(51, 160, 141, 0.1);
- " v-if="scope.row.orderstatus == '0' || scope.row.orderstatus == '1'" size="small">{{ scope.row.orderstatus
- | cap }}</el-tag>
- <el-tag type="danger" style="border-color: #e75b5d" v-else-if="scope.row.orderstatus == '3'" size="small">{{
- scope.row.orderstatus | cap }}</el-tag>
- <el-tag v-else style="
- color: #2d4d89;
- border-color: #2d4d89;
- background: rgba(45, 77, 137, 0.1);
- " size="small">{{ scope.row.orderstatus | cap }}</el-tag>
- </template>
- </el-table-column>
- <el-table-column prop="createtime" label="录单日期" align="center" width="200"></el-table-column>
- <el-table-column prop="insureTime" label="承保确认时间" align="center" width="200"></el-table-column>
- <el-table-column label="操作" align="center" fixed="right" min-width="250">
- <template slot-scope="scope">
- <!-- <el-button v-if="scope.row.orderstatus != '3'" size="mini" type="text" style="color: #2d4d89"
- @click="resendData(scope.$index, scope.row)">补传资料</el-button> -->
- <el-button v-if="scope.row.orderstatus != '3'" size="mini" type="text" style="color: #2d4d89"
- @click="CloseEdit(scope.$index, scope.row)">重新报价</el-button>
- <el-button size="mini" style="color: #2d4d89" type="text"
- @click="onoffQuotationHistory(scope.row)">报价历史</el-button>
- <!-- <el-button size="mini" type="text" v-if="['0', '5'].includes(scope.row.orderstatus)"
- @click="CloseQoute(scope.$index, scope.row)" style="color:#f56c6c">关闭报价</el-button>-->
- <!-- <el-button size="mini" type="text" v-if="scope.row.orderstatus == '0'"
- @click="underwriting(scope.$index, scope.row)" style="color:#e6a23c">去核保</el-button>-->
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页功能 -->
- <div class="block">
- <el-pagination @size-change="applyhandleSizeChange" @current-change="applyhandleCurrentChange"
- :current-page="pageNum" :page-size="pageSize" :page-sizes="[20, 30, 50, 100]"
- layout="total, sizes, prev, pager, next, jumper" :total="totalSize"></el-pagination>
- </div>
- <!--第一种 二维码 -->
- <el-dialog :visible.sync="codedialogVisible" width="430px" top="10vh" class="saomazhifucodeClass">
- <div class="ORcodebody" v-watermark="qrCodeId">
- <div slot="title" class="dialog-title">
- <span>扫码付款</span>
- </div>
- <div class="ORcode">
- <div style="padding: 13px; position: relative">
- <div v-if="['大家财险', '中煤财险', '华泰财险'].includes(inscompany)">
- <div v-if="apiType == 1" id="qrcode" ref="qrcode"></div>
- <img v-else :src="paycodeimg" alt style="width: 100%" />
- </div>
- <div v-else>
- <img v-if="['太平财险', '诚泰财险'].includes(inscompany)" :src="paycodeimg" alt style="width: 100%" />
- <div v-else id="qrcode" ref="qrcode"></div>
- </div>
- </div>
- </div>
- <img style="margin-left: -16px" src="../../../assets/image/divider.png" alt />
- <div style="
- font-size: 32px;
- text-align: center;
- color: #d42426;
- margin-top: 20px;
- ">
- <span style="font-size: 24px; font-weight: bold">¥</span>
- {{ sumpremium }}
- </div>
- <div class="ORtitle">
- <div>
- <span>保险公司:</span>
- <span>{{ inscompany }}</span>
- </div>
- <div>
- <span>车牌号:</span>
- <span>{{ licenseNo }}</span>
- </div>
- <div>
- <span>投保人:</span>
- <span>{{ applyName }}</span>
- </div>
- <div v-show="jqpremium">
- <span>交强:</span>
- <span>{{ jqpremium }}</span>
- </div>
- <div v-show="sypremium">
- <span>商业:</span>
- <span>{{ sypremium }}</span>
- </div>
- <div v-show="taxamount">
- <span>车船税:</span>
- <span>{{ taxamount }}</span>
- </div>
- <div v-show="jqstartdate">
- <span>交强险起保日期:</span>
- <span>{{ jqstartdate }}</span>
- </div>
- <div v-show="systartdate">
- <span>商业险起保日期:</span>
- <span>{{ systartdate }}</span>
- </div>
- <div v-if="jypremium">
- <span>驾意险:</span>
- <span>{{ jypremium }}</span>
- </div>
- <div v-if="jypremium">
- <span>驾意险险起保日期:</span>
- <span>{{ systartdate || jqstartdate }}</span>
- </div>
- </div>
- </div>
- <span slot="footer" class="dialog-footer display">
- <el-button size="small" style="width: 100px; border-color: #d42426; color: #d42426"
- @click="codedialogVisible = false">关闭</el-button>
- </span>
- </el-dialog>
- <!--第二种 二维码 -->
- <el-dialog :visible.sync="codedialogVisiblePro" width="660px" class="proSaomazhifucodeClass" top="10vh" title="扫码付款">
- <div class="flex j-s">
- <div class="scan-code">
- <div style="font-weight: bold">
- 总金额:
- <span style="color: #2d4d89">{{ sumpremium }}</span>
- </div>
- <div>交强险:{{ jqpremium }}</div>
- <div>车船税:{{ taxamount }}</div>
- <div>商业险:{{ sypremium }}</div>
- <div>驾意险:{{ jypremium }}</div>
- </div>
- <div v-if="['大家财险', '中煤财险', '华泰财险'].includes(inscompany)">
- <div v-if="apiType == 1" id="qrcode" ref="qrcode"></div>
- <img v-else :src="paycodeimg" alt style="width: 100%" />
- </div>
- <div v-else>
- <img v-if="['太平财险', '诚泰财险'].includes(inscompany)" :src="paycodeimg" alt style="width: 200px; height: 200px" />
- <div v-else id="qrcode" ref="qrcode"></div>
- </div>
- <div class="scan-code">
- <div>保险公司:{{ inscompany }}</div>
- <div>车牌号:{{ licenseNo }}</div>
- <div>投保人:{{ applyName }}</div>
- <div>交强险起保日期:{{ jqstartdate }}</div>
- <div>商业险起保日期:{{ systartdate }}</div>
- <div>驾意险起保日期:{{ systartdate || jqstartdate }}</div>
- </div>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button size="small" style="
- width: 100px;
- background: #eaedf1;
- border-color: #eaedf1;
- color: #2d4d89;
- " @click="codedialogVisiblePro = false">关闭</el-button>
- </span>
- </el-dialog>
- <!-- 车辆报价新页面 -->
- <detailsDialog ref="detailsDialog" :orderInfo.sync="orderInfo" :Feepermissions="false"></detailsDialog>
- <!-- 订单轨迹 -->
- <el-dialog :visible.sync="ddgjdialogVisible" width="430px">
- <div slot="title" class="dialog-title">
- <span>订单轨迹</span>
- </div>
- <div style="height: 300px; overflow-y: auto">
- <el-steps direction="vertical" :active="trajectoryTable.length - 1">
- <el-step :title="item.orderStatus | caps" :key="item.id" v-for="item in trajectoryTable">
- <template slot="description">
- <span>保险公司:{{ item.insCompany }}</span>
- <span>提交人:{{ item.operator }}</span>
- <div>创建时间:{{ item.createTime }}</div>
- <div v-if="item.remark">状态更新:{{ item.remark }}</div>
- </template>
- </el-step>
- </el-steps>
- </div>
- </el-dialog>
- <!-- 报价历史 -->
- <el-dialog :visible.sync="quotationhistorydialogVisible" v-dialogDrag width="90%">
- <div slot="title" class="dialog-title">
- <img src="../../../../src/icon/报价历史.png" alt class="icon-img" />
- <span>报价历史</span>
- </div>
- <div style="padding: 20px">
- <el-table size="small" :data="HistoryList" height="400" border style="width: 100%" v-loading="loading"
- :header-cell-style="{
- background: '#F2F7FC',
- }" highlight-current-row>
- <el-table-column prop="inscompany" label="保险公司" align="center"></el-table-column>
- <el-table-column prop="username" label="业务员" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.userName }}({{ scope.row.userId }})</span>
- </template>
- </el-table-column>
- <el-table-column prop="licenseno" label="车牌号" align="center"></el-table-column>
- <el-table-column prop="createtime" label="报价时间" align="center"></el-table-column>
- <el-table-column prop="jqpremium" label="交强险" align="center"></el-table-column>
- <el-table-column prop="sypremium" label="商业险" align="center"></el-table-column>
- <el-table-column prop="taxamount" label="车船税" align="center"></el-table-column>
- <el-table-column prop="sumpremium" label="总保费" align="center"></el-table-column>
- <el-table-column prop="orderstatus" label="状态" align="center">
- <template slot-scope="scope">
- <el-tag style="
- color: #33a08d;
- border-color: #33a08d;
- background: rgba(51, 160, 141, 0.1);
- " v-if="scope.row.orderstatus == '0' || scope.row.orderstatus == '1'
- " size="small">{{ scope.row.orderstatus | cap }}</el-tag>
- <el-tag type="danger" style="border-color: #e75b5d" v-else-if="scope.row.orderstatus == '3'" size="small">{{
- scope.row.orderstatus | cap }}</el-tag>
- <el-tag v-else style="
- color: #2d4d89;
- border-color: #2d4d89;
- background: rgba(45, 77, 137, 0.1);
- " size="small">{{ scope.row.orderstatus | cap }}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" min-width="180" fixed="right">
- <template slot-scope="scope">
- <el-button type="text" size="small" style="color: #2d4d89"
- @click="OrderDetails(quotationhistoryRow, scope.row)">查看详情</el-button>
- <el-button size="small" type="text" @click="bjdpreview(scope.row.id, scope.row.userId)">报价单</el-button>
- <el-button size="small" v-show="scope.row.orderstatus == '2'" type="text"
- @click="carcode(scope.row)">付款码</el-button>
- <!-- <el-button size="small" v-if="scope.row.orderstatus == '2' && scope.row.inscompany == '平安财险'" type="text" @click="signature(item)">生成签章</el-button> -->
- <el-button size="mini" type="text" v-if="(scope.row.orderstatus == '1' ||
- scope.row.orderstatus == '2' ||
- scope.row.orderstatus == '4') &&
- ['紫金财险'].includes(scope.row.inscompany)
- " @click="cancelorder(scope.row)">撤单</el-button>
- <el-button type="text" size="mini" style="color: #2d4d89"
- v-if="scope.row.orderstatus == '2' && scope.row.inscompany !== '平安财险'"
- @click="revokeCode(scope.row.id)">撤销二维码</el-button>
- <el-button type="text" size="mini" style="color: #2d4d89" v-if="scope.row.orderstatus == '2' &&
- [
- '太平财险',
- '华农财险',
- '恒邦财险',
- '诚泰财险',
- '众安财险',
- '中国人寿',
- '安盛天平',
- '紫金财险',
- '永诚财险',
- '大家财险',
- '华泰财险',
- '国任财险',
- '中煤财险',
- '渤海财险',
- '泰康财险',
- '平安财险',
- ].includes(scope.row.inscompany)
- " @click="querystatus(scope.row, 'history')">状态更新</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </el-dialog>
- <!-- 生成签章 -->
- <el-dialog :visible.sync="signaturedialogVisible" title="生成签章" width="14%">
- <div>
- <img :src="resultMessageImg" alt style="width: 100%" />
- <!-- <div id="signaturecode" ref="signaturecode"></div> -->
- </div>
- </el-dialog>
- <el-dialog :visible.sync="imageUploaddialogVisible" width="1070px">
- <div slot="title" class="dialog-title">
- <span>影像上传</span>
- </div>
- <el-row>
- <el-col :span="3">
- <div class="tab-style">
- <li class="liMenu" :class="idx == tabLiIndex ? 'tabLi-style' : ''" @click="tabLiScroll(item.scroll, idx)"
- v-for="(item, idx) in tabLimenu" :key="idx">
- {{ item.name }}
- </li>
- </div>
- </el-col>
- <el-col :span="21" style="height: 320px; overflow-y: auto">
- <div class="flex" id="vehicle">
- <div class="aaa">
- <span>1.行驶证主页</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) => drivingupload(file, 'imageList1', 'imgList1', 'C01')
- " :file-list="imgList1" ref="upload1" :class="{ styleB: imgList1.length == 1 }">
- <img v-show="imgList1.length == 0" src="../../../../static/carfront.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }" v-if="imgList1.length > 0">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList1', 'imgList1')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- <div class="aaa">
- <span>2.行驶证副页</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) => drivingupload(file, 'imageList1', 'imgList2', 'D01')
- " :file-list="imgList2" ref="upload2" :class="{ styleB: imgList2.length === 1 }">
- <img v-show="imgList2.length == 0" src="../../../../static/carback.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList1', 'imgList2')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- <div class="aaa">
- <span>1.新车合格证</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) =>
- drivingupload(file, 'imageList5', 'imgList9', 'XC00')
- " :file-list="imgList9" multiple ref="upload3" :class="{ styleB: imgList9.length === 1 }">
- <img v-show="imgList9.length == 0" src="../../../../static/userfront.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList5', 'imgList9')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- <div class="aaa">
- <span>2.购车发票</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) =>
- drivingupload(file, 'imageList5', 'imgList10', 'GC00')
- " :file-list="imgList10" multiple ref="upload4" :class="{ styleB: imgList10.length === 1 }">
- <img v-show="imgList10.length == 0" src="../../../../static/userfront.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList5', 'imgList10')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- </div>
- <div class="flex" id="owner">
- <div class="aaa">
- <span>1.车主身份证(正面)</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) => drivingupload(file, 'imageList2', 'imgList3', 'C02')
- " :file-list="imgList3" multiple ref="upload3" :class="{ styleB: imgList3.length === 1 }">
- <img v-show="imgList3.length == 0" src="../../../../static/userfront.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList2', 'imgList3')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- <div class="aaa">
- <span>2.车主身份证(反面)</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) => drivingupload(file, 'imageList2', 'imgList4', 'D02')
- " :file-list="imgList4" multiple ref="upload4" :class="{ styleB: imgList4.length === 1 }">
- <img v-show="imgList4.length == 0" src="../../../../static/userback.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList2', 'imgList4')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- <div class="aaa">
- <span>3.营业执照</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag multiple ref="upload4">
- <img src="../../../../static/userfront.png" style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList2', 'imgList4')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- </div>
- <div class="flex" id="applicant">
- <div class="aaa">
- <span>1.投保人身份证(正面)</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) => drivingupload(file, 'imageList3', 'imgList5', 'C03')
- " :file-list="imgList5" multiple ref="upload5" :class="{ styleB: imgList5.length === 1 }">
- <img v-show="imgList5.length == 0" src="../../../../static/userfront.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList3', 'imgList5')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- <div class="aaa">
- <span>2.投保人身份证(反面)</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) => drivingupload(file, 'imageList3', 'imgList6', 'D03')
- " :file-list="imgList6" multiple ref="upload6" :class="{ styleB: imgList6.length === 1 }">
- <img v-show="imgList6.length == 0" src="../../../../static/userback.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList3', 'imgList6')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- <div class="aaa">
- <span>3.营业执照</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag multiple ref="upload4">
- <img src="../../../../static/userfront.png" style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList2', 'imgList4')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- </div>
- <div class="flex">
- <div class="aaa">
- <span id="insured">1.被保人身份证(正面)</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) => drivingupload(file, 'imageList4', 'imgList7', 'C04')
- " :file-list="imgList7" multiple ref="upload7" :class="{ styleB: imgList7.length === 1 }">
- <img v-show="imgList7.length == 0" src="../../../../static/userfront.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList4', 'imgList7')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- <div class="aaa">
- <span>2.被保人身份证(反面)</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) => drivingupload(file, 'imageList4', 'imgList8', 'D04')
- " :file-list="imgList8" multiple ref="upload8" :class="{ styleB: imgList8.length === 1 }">
- <img v-show="imgList8.length == 0" src="../../../../static/userback.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList4', 'imgList8')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- <div class="aaa">
- <span>3.营业执照</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag multiple ref="upload4">
- <img src="../../../../static/userfront.png" style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList2', 'imgList4')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- </div>
- <div class="flex" id="relationship">
- <div class="aaa">
- <span>1.关系证明</span>
- <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) =>
- drivingupload(file, 'imageList5', 'imgList11', 'GX00')
- " :file-list="imgList11" multiple ref="upload3" :class="{ styleB: imgList11.length === 1 }">
- <img v-show="imgList11.length == 0" src="../../../../static/userfront.png"
- style="width: 100%; height: 100%" />
- <div slot="file" slot-scope="{ file }">
- <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
- <span class="el-upload-list__item-actions">
- <span class="el-upload-list__item-delete" @click="handleRemove1(file, 'imageList5', 'imgList11')">
- <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
- <i class="el-icon-delete"></i>
- </span>
- </span>
- </div>
- </el-upload>
- </div>
- </div>
- </el-col>
- </el-row>
- <span slot="footer" class="dialog-footer">
- <el-button size="small" @click="imageUploaddialogVisible = false">取 消</el-button>
- <el-button size="small" type="primary" @click="uploadinformation">上传资料</el-button>
- </span>
- </el-dialog>
- <el-image-viewer v-if="showViewer" :on-close="closeViewer" :z-index="9999" :url-list="[ProViewImg]" />
- <!-- 报价单 -->
- <quotationDialog ref="quotationDialog" :queryOrders="queryOrders"></quotationDialog>
- <quotationDialogPro ref="quotationDialogPro" :queryOrders="queryOrders"></quotationDialogPro>
- <imageDialog ref="imageDialog" :companyId="companyId" :type="2"></imageDialog>
- </div>
- </template>
- <script>
- let _self;
- import { pathToBase64, base64ToPath } from "@/common/image-tools-base64.js";
- import CommonUtil from "@/utils/comutil.js";
- import Cookies from "js-cookie";
- import QRCode from "qrcodejs2";
- import quotationDialog from "@/views/Core/components/quotationDialog.vue";
- import quotationDialogPro from "@/views/Core/components/quotationDialogPro.vue";
- import detailsDialog from "@/views/Core/components/detailsDialog.vue";
- import imageDialog from "@/views/Core/components/imageDialog.vue";
- import { debounce } from 'lodash';
- export default {
- data() {
- return {
- companyId: '',
- orderLoaing: false,
- qrcodeWidth: "180",
- qrcodeHeight: "180",
- qrCodeId: Cookies.get("user"),
- ddgjdialogVisible: false,
- signaturedialogVisible: false,
- signaturecode: null,
- trajectoryTable: [],
- queryOrders: {
- carinfo: {},
- ownerinfo: {},
- applyinfo: {},
- insureinfo: {},
- extendInfo: {},
- },
- logoImg: "", //报价单保险公司logo图
- value2: "",
- optionsStatus: [],
- optionsStatusAll: [],
- codedialogVisible: false,
- codedialogVisiblePro: false,
- loading: false,
- pageNum: 1, //页数
- pageSize: 20, //条数
- totalSize: null, //总数
- peopleid: "", //工号
- pageResult: [], //列表
- pageRequest: {
- //查询的默认条件
- orderNo: "",
- frameNo: "",
- insuredName: "",
- licenseNo: "",
- orderStatus: "",
- userId: "",
- endDate: "",
- startDate: "",
- pageNum: 1,
- pageSize: 20,
- deptId: "",
- },
- orderInfo: {
- //选中的订单
- ownerinfo: {},
- carinfo: {},
- applyinfo: {},
- insureinfo: {},
- kindinfo: [],
- riskinfo: [],
- ownerinfo: {},
- orderCommissionVo: {},
- extendInfo: {},
- },
- carImageList: [], //车辆影像
- ownerImageList: [], //车主影像
- policyImageList: [], //投保人影像
- insuredImageList: [], //被保人影像
- carCheckImageList: [], //验车照影像
- // 影像控制
- pic1Control: false,
- pic2Control: false,
- pic3Control: false,
- pic4Control: false,
- pic5Control: false,
- showInsureList: false, //是否展示具体险种信息
- oldfileList: [], //电子保单数据
- inscompany: "", //保险公司名称
- licenseNo: "", //车牌号
- applyName: "", //车主名字
- orderstatus: "", //订单状态
- sumpremium: "", //保费合计
- jqpremium: "", //交强
- sypremium: "", //商业
- taxamount: "", //车船税
- jypremium: "", //驾意险
- jqstartdate: "", //交强时间
- systartdate: "", //商业时间
- mobile: "", //投保人手机号
- qrcode: null,
- paycodeimg: "",
- userid: "",
- downloadstatus: 0,
- expands: [],
- productsTypeoptions: [],
- InsInsuranceKindoptions: [],
- width: document.documentElement.clientWidth,
- tabelHeight: document.documentElement.clientHeight - 390,
- insAreaCompanyList: [], //子订单list
- companyList: [], //保险公司
- querystatusLoaing: false,
- quotationhistorydialogVisible: false, //报价历史显示状态
- HistoryList: [], //报价历史数据
- natureOfVehicleUseoptions: [],
- businessVehicleUseoptions: [],
- energyTypeoptions: [],
- vehicleTypeoptions: [],
- trafficManagementVehicleTypeoptions: [],
- outOfBusinessVehicleUseoptions: [],
- userIdPor: Cookies.get("user"),
- statusPor: "",
- deptIdPor: "",
- apiType: "",
- resultMessageImg: '',
- institutionOptions: [],
- imageUploaddialogVisible: false,
- tabLiIndex: 0,
- tabLimenu: [
- {
- name: "车辆信息",
- scroll: "vehicle",
- },
- {
- name: "车主信息",
- scroll: "owner",
- },
- {
- name: "投保人信息",
- scroll: "applicant",
- },
- {
- name: "被保人信息",
- scroll: "insured",
- },
- {
- name: "关系证明",
- scroll: "relationship",
- },
- ],
- //影像回显列表
- imgList1: [],
- imgList2: [],
- imgList3: [],
- imgList4: [],
- imgList5: [],
- imgList6: [],
- imgList7: [],
- imgList8: [],
- imgList9: [],
- imgList10: [],
- imgList11: [],
- //影像上传列表
- imageList1: [],
- imageList2: [],
- imageList3: [],
- imageList4: [],
- imageList5: [],
- showViewer: false,
- ProViewImg: "",
- managementSource:"",
- };
- },
- components: {
- quotationDialog, detailsDialog, quotationDialogPro, imageDialog, "el-image-viewer": () =>
- import("element-ui/packages/image/src/image-viewer")
- },
- created() {
- this.managementSource = JSON.parse(localStorage.getItem("user_data")).managementSource;
- this.getDicType("natureOfVehicleUse"); //车辆使用性质
- this.getDicType("vehicleType"); //车辆种类
- this.getDicType("trafficManagementVehicleType"); //车辆类型
- this.getDicType("energyType"); //能源种类
- this.getDicType("businessVehicleUse"); //(车辆用途)营业
- this.getDicType("outOfBusinessVehicleUse"); //(车辆用途)非营业
- this.getDicType("productsType"); //(车辆用途)非营业
- this.$api.letter.gainTopList().then((res) => {
- this.companyList = res.data;
- });
- this.$api.insCompany.dicType("insOrderStatus").then((res) => {
- this.optionsStatusAll = res.data.ddList;
- this.optionsStatus = res.data.ddList.filter(item => item.dictValue !="状态更新");
- });
- this.peopleid = Cookies.get("user");
- this.$api.dept.findDeptTree().then((res) => {
- this.institutionOptions = res.data;
- });
- // this.findPage();
- if (this.isLetterOrder) {
- this.$api.user.sysMenuRecordAdd(2,2).then((res) => {
- });
- this.pageRequest.deptId = JSON.parse(
- localStorage.getItem("user_data")
- ).deptId;
- if (this.peopleid != "admin") {
- this.pageRequest.userId = this.peopleid;
- this.findPage();
- } else {
- this.pageRequest.userId = "admin";
- }
- }
- },
- props: {
- isLetterOrder: {
- type: Boolean,
- default: true,
- },
- },
- mounted() {
- window.addEventListener("resize", this.getDimensions);
- },
- beforeCreate() {
- _self = this;
- },
- // props:{
- // isdisabled:{
- // type:Boolean,
- // default:true
- // },
- // },
- filters: {
- cap(ele) {
- return _self.optionsStatus.find((item) => {
- return item.dictValue === ele;
- }).dictTag;
- },
- caps(ele) {
- return _self.optionsStatusAll.find((item) => {
- return item.dictValue === ele;
- }).dictTag;
- },
- },
- unmounted() {
- window.removeEventListener("resize", this.getDimensions);
- },
- computed: {
- allinsOption() {
- let cloneData = JSON.parse(JSON.stringify(this.allIns)); // 对源数据深度克隆
- return cloneData.filter((father) => {
- // 循环所有项,并添加children属性
- let branchArr = cloneData.filter(
- (child) => father.id == child.parentId
- ); // 返回每一项的子级数组
- branchArr.length > 0 ? (father.children = branchArr) : ""; //给父级添加一个children属性,并赋值
- return father.parentId == 0; //返回第一层
- });
- },
- registerDateFormat() {
- let date = new Date(this.orderInfo.carinfo.registerDate);
- let year = date.getFullYear();
- let month = date.getMonth() + 1;
- let day = date.getDate();
- return year + "-" + month + "-" + day;
- },
- issueDateFormat() {
- let date = new Date(this.orderInfo.carinfo.issueDate);
- let year = date.getFullYear();
- let month = date.getMonth() + 1;
- let day = date.getDate();
- return year + "-" + month + "-" + day;
- },
- },
- methods: {
- additionalInformation(companyId, row) {
- this.companyId = companyId
- this.$refs.imageDialog.imageEcho(row.quoteno)
- this.$refs.imageDialog.setBackupVisible(true);
- },
- // 关闭查看器
- closeViewer() {
- this.showViewer = false;
- },
- handlePictureCardPreview(img) {
- this.ProViewImg = img;
- this.showViewer = true;
- },
- //影像上传
- drivingupload(file, imageIdList, imgurl, type) {
- let that = this;
- let size = file.size / 1024 / 1024 < 5;
- const isJPG =
- file.raw.type === "image/jpeg" || file.raw.type === "image/png";
- if (!size) {
- this.$message.error("上传图片大小不能超过 5MB!");
- this[imgurl] = [];
- return false;
- }
- if (!isJPG) {
- this.$message.error("上传图片只能是 JPG、PNG 格式!");
- this[imgurl] = [];
- return false;
- }
- this[imgurl].push(file);
- var file = file.raw;
- const params = new FormData(); // 声明formData数据类型
- params.append("multipartFile", file);
- params.append("type", "image");
- this.$api.letter.uploadFile(params).then((res) => {
- if (res.code == "200") {
- if (this[imageIdList].some((v) => v.imageType == type)) {
- this[imageIdList].map((val) => {
- if (val.imageType == type) {
- val.imageId = res.data.id;
- }
- });
- } else {
- this[imageIdList].push({
- imageId: res.data.id,
- imageType: type,
- });
- }
- }
- });
- },
- handleRemove1(file, imageIdList, imgList) {
- this[imageIdList].map((ele, index) => {
- if (file.imageId === ele.imageId) {
- this[imageIdList].splice(index, 1);
- }
- return ele;
- });
- if (file.imageId) {
- this[imgList].map((ele, index) => {
- if (file.imageId === ele.imageId) {
- this[imgList].splice(index, 1);
- }
- return ele;
- });
- } else {
- this[imgList].map((ele, index) => {
- if (file.uid === ele.uid) {
- this[imgList].splice(index, 1);
- }
- return ele;
- });
- }
- },
- //影像上传
- uploadinformation() {
- // //上传图片
- const mergedArray = [
- ...this.imageList1,
- ...this.imageList2,
- ...this.imageList3,
- ...this.imageList4,
- ...this.imageList5,
- ];
- let imageparam = {
- imageList: mergedArray,
- quoteNo: this.quoteno,
- };
- this.$api.letter.uploadImages(imageparam).then((responses) => {
- if (responses.code == "200") {
- this.imageEcho(this.quoteno);
- this.$message({ message: responses.msg, type: "success" });
- } else {
- this.$message({ message: responses.msg, type: "error" });
- }
- });
- this.imageUploaddialogVisible = false;
- },
- tabLiScroll(id, idx) {
- this.tabLiIndex = idx;
- document.getElementById(id).scrollIntoView({ behavior: "smooth" });
- },
- imageEcho(quotenos) {
- //影像查询
- this.$api.letter.findByQuoteNo(quotenos).then((res) => {
- if (res.code == "200") {
- this.imageList1 = [];
- this.imageList2 = [];
- this.imageList3 = [];
- this.imageList4 = [];
- this.imageList5 = [];
- this.imgList1 = [];
- this.imgList2 = [];
- this.imgList3 = [];
- this.imgList4 = [];
- this.imgList5 = [];
- this.imgList6 = [];
- this.imgList7 = [];
- this.imgList8 = [];
- this.imgList9 = [];
- this.imgList10 = [];
- this.imgList11 = [];
- Object.keys(res.data).forEach((keys) => {
- if (res.data[keys].url) {
- res.data[keys].url = process.env.BASE_URL + res.data[keys].url;
- switch (keys) {
- case "C01":
- this.imageList1.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList1.push(res.data[keys]);
- break;
- case "D01":
- this.imageList1.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList2.push(res.data[keys]);
- break;
- case "C02":
- this.imageList2.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList3.push(res.data[keys]);
- break;
- case "D02":
- this.imageList2.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList4.push(res.data[keys]);
- break;
- case "C03":
- this.imageList3.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList5.push(res.data[keys]);
- break;
- case "D03":
- this.imageList3.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList6.push(res.data[keys]);
- break;
- case "C04":
- this.imageList4.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList7.push(res.data[keys]);
- break;
- case "D04":
- this.imageList4.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList8.push(res.data[keys]);
- break;
- case "XC00":
- this.imageList5.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList9.push(res.data[keys]);
- break;
- case "GC00":
- this.imageList5.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList10.push(res.data[keys]);
- break;
- case "GX00":
- this.imageList5.push({
- imageId: res.data[keys].imageId,
- imageType: res.data[keys].imageType,
- });
- this.imgList11.push(res.data[keys]);
- break;
- default:
- break;
- }
- }
- });
- } else {
- this.$message({ message: res.msg, type: "info" });
- }
- });
- },
- //报价历史点击事件
- onoffQuotationHistory(row) {
- this.quotationhistoryRow = row;
- this.RadioHistoryChange();
- this.quotationhistorydialogVisible = true;
- },
- //报价轨迹查询
- RadioHistoryChange() {
- let params = {
- orderNo: this.quotationhistoryRow.orderno,
- orderStatus: "",
- };
- this.$api.letter.queryQuoteHistory(params).then((res) => {
- res.data.forEach((item) => {
- if (item.accidentInfo) {
- item.accidentInfo.constructor === Object
- ? [item.accidentInfo]
- : item.accidentInfo;
- }
- });
- this.HistoryList = res.data;
- });
- },
- getDicType(type) {
- this.$api.insCompany.dicType(type).then((res) => {
- if (res.code == 200) {
- this[type + "options"] = res.data.ddList;
- }
- });
- },
- capType(val) {
- if (val == "0") {
- return "success";
- }
- if (val == "1") {
- return "warning";
- }
- if (val == "2" || val == "3" || val == "4") {
- return "danger";
- }
- },
- // 撤销二维码
- revokeCode(id) {
- this.$confirm('确定撤销二维码?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.$api.letter.getRevokeQrCode(id).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg,
- type: "success",
- });
- this.quotationhistorydialogVisible ? this.RadioHistoryChange() : "";
- this.findPage();
- }
- });
- }).catch(() => {
- this.$message({
- type: 'info',
- message: '已取消撤销二维码'
- });
- });
- },
- bjdpreview(companyId, userId) {
- let params = {
- companyId: companyId,
- };
- this.$api.letter.getByCompanyId(params).then((res) => {
- if (res.code == "200") {
- var data = res.data;
- if (data.kindinfo != null) {
- data.kindinfo.map((ele, index) => {
- switch (ele.kindCode) {
- case "A":
- if (ele.amount == 1) {
- ele.amount = "投保";
- } else {
- ele.amount = ele.amount;
- }
- break;
- case "D4":
- case "SY_FJ_YBW2":
- ele.unitAmount = this.toChinesNum(ele.unitAmount);
- break;
- case "MJ1":
- case "MJ2":
- case "MJ3":
- case "MJ4":
- ele.deductibleRate = ele.deductibleRate + "%";
- break;
- default:
- ele.amount = this.toChinesNum(ele.amount);
- }
- return ele;
- });
- }
- data.logoImg = this.iconfftter(res.data.inscompany);
- this.queryOrders = data;
- this.$api.letter.getThemeByUserId(this.userIdPor).then((res) => {
- if (res.code == 200) {
- if (res.data[0] == "GD") {
- this.$refs.quotationDialogPro.setBackupVisible(true);
- } else {
- this.$refs.quotationDialog.setBackupVisible(true);
- }
- }
- });
- }
- });
- },
- toChinesNum(num) {
- if (num.toString().length == 4) {
- let overQian = Math.floor(num / 1000);
- let result = overQian + "千";
- return result;
- } else {
- let overWan = Math.floor(num / 10000);
- let result = overWan + "万";
- return result;
- }
- },
- iconfftter(icon) {
- return CommonUtil.getDataName({
- dataList: this.global.insCompanyList,
- value: "name",
- label: "icon",
- data: icon,
- });
- },
- getRowClass(scope, rowIndex) {
- if (scope.row.insAreaCompanyList.length == 0) {
- //判断当前行是否有子数据或者根据实际情况设置
- return "row-expand-cover";
- }
- },
- getDimensions() {
- this.width = document.documentElement.clientWidth - 350 + "px";
- this.tabelHeight = document.documentElement.clientHeight - 330 + "px";
- },
- //订单修改
- CloseEdit(index, row) {
- this.$api.letter.getByOrderNo({ orderNo: row.orderno }).then((res) => {
- if (res.code == 200) {
- if (this.isLetterOrder) {
- this.$router.push({
- path: "/letter/letter",
- query: { data: res.data },
- });
- } else {
- res.data.activeName = "999";
- this.$emit("orderEdit", res.data);
- }
- } else {
- this.$message.error(res.msg);
- }
- });
- },
- resendData(index, row) {
- this.quoteno = row.quoteno;
- this.imageEcho(row.quoteno)
- this.imageUploaddialogVisible = true;
- },
- //二维码生成插件
- creatQrCode(text) {
- // 查找并删除旧的二维码DOM元素
- this.$refs['qrcode'].innerHTML = ''
- let element = document.getElementById("qrcode");
- while (element.firstChild) {
- element.removeChild(element.firstChild);
- }
- // 创建新的QRCode实例
- // this.qrcode = new QRCode("qrcode", {
- this.qrcode = new QRCode(this.$refs['qrcode'], {
- text: text,
- width: this.qrcodeWidth,
- height: this.qrcodeHeight,
- colorDark: "#000000",
- colorLight: "#ffffff",
- correctLevel: QRCode.CorrectLevel.H,
- });
- },
- //更新订单状态
- refreshStatus(item) {
- let inscompany = {
- 国任财险: "updateOrderInfoGuoren",
- 太平财险: "auditStatusQuery",
- 泰康财险: "auditStatusQuery",
- 华农财险: "auditStatusQuery",
- 恒邦财险: "auditStatusQuery",
- 众安财险: "auditStatusQuery",
- 中国人寿: "auditStatusQuery",
- 安盛天平: "auditStatusQuery",
- 诚泰财险: "auditStatusQuery",
- 紫金财险: "auditStatusQueryZijin",
- 渤海财险: "orderStatusbohai",
- };
- Object.keys(inscompany).forEach((val) => {
- if (val == item.inscompany) {
- this.$api.letter[inscompany[val]]({ companyId: item.id }).then(
- (res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.findPage();
- } else {
- this.$message({
- showClose: true,
- dangerouslyUseHTMLString: true,
- message: res.msg.replace(/\n/g, "<br><br>"),
- type: "error",
- duration: 7000,
- });
- // this.$message({ message: res.msg, type: "error" });
- }
- }
- );
- }
- });
- if (item.inscompany == "永诚财险") {
- this.$api.letter.orderStatusyongcheng(item.id).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.findPage();
- } else {
- this.$message({
- showClose: true,
- dangerouslyUseHTMLString: true,
- message: res.msg.replace(/\n/g, "<br><br>"),
- type: "error",
- duration: 7000,
- });
- }
- });
- }
- if (item.inscompany == "华泰财险") {
- let HtApiType =
- item.apiType == 2 ? "auditStatusQuery" : "orderStatushuatai";
- this.$api.letter[HtApiType]({ companyId: item.id }).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.findPage();
- } else {
- this.$message({
- showClose: true,
- dangerouslyUseHTMLString: true,
- message: res.msg.replace(/\n/g, "<br><br>"),
- type: "error",
- duration: 7000,
- });
- }
- });
- }
- if (item.inscompany == "大家财险") {
- let HtApiType =
- item.apiType == 2 ? "auditStatusQuery" : "updateOrderInfoDajia";
- this.$api.letter[HtApiType]({ companyId: item.id }).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.findPage();
- } else {
- this.$message({
- showClose: true,
- dangerouslyUseHTMLString: true,
- message: res.msg.replace(/\n/g, "<br><br>"),
- type: "error",
- duration: 7000,
- });
- }
- });
- }
- // 中煤财险: "orderStatuszhongmei",
- if (item.inscompany == "中煤财险") {
- let ZMApiType =
- item.apiType == 2 ? "auditStatusQuery" : "orderStatuszhongmei";
- this.$api.letter[ZMApiType]({ companyId: item.id }).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.findPage();
- } else {
- this.$message({
- showClose: true,
- dangerouslyUseHTMLString: true,
- message: res.msg.replace(/\n/g, "<br><br>"),
- type: "error",
- duration: 7000,
- });
- }
- });
- }
- },
- //华泰刷新核保状态
- updateStatusHuatai(item) {
- let HtApiType =
- item.apiType == 2 ? "auditStatusQuery" : "orderStatushuatai";
- this.$api.letter[HtApiType]({ companyId: item.id }).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.findPage();
- } else {
- this.$message({
- showClose: true,
- dangerouslyUseHTMLString: true,
- message: res.msg.replace(/\n/g, "<br><br>"),
- type: "error",
- duration: 7000,
- });
- }
- });
- },
- //查询缴费状态
- querystatus(item, index) {
- this.querystatusLoaing = true;
- let inscompany = {
- 国任财险: "updateOrderInfoGuoren",
- 大家财险: "updateOrderInfoDajia",
- 紫金财险: "getOrderDetail",
- 渤海财险: "getOrderDetailboHai",
- 平安财险: "getDocumentStatusList",
- };
- Object.keys(inscompany).forEach((val) => {
- if (val == item.inscompany) {
- this.$api.letter[inscompany[val]]({ companyId: item.id }).then(
- (res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.quotationhistorydialogVisible
- ? this.RadioHistoryChange()
- : "";
- this.findPage();
- this.querystatusLoaing = false;
- } else {
- this.querystatusLoaing = false;
- this.$message({ message: res.msg, type: "error" });
- }
- }
- );
- }
- });
- if (item.inscompany == "永诚财险") {
- this.$api.letter.orderStatusyongcheng(item.id).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.quotationhistorydialogVisible ? this.RadioHistoryChange() : "";
- this.findPage();
- this.querystatusLoaing = false;
- } else {
- this.querystatusLoaing = false;
- this.$message({ message: res.msg, type: "error" });
- }
- });
- }
- if (item.inscompany == "华泰财险") {
- let HtApiType =
- item.apiType == 2 ? "pychonverifyPayment" : "updateOrderInfoHuatai";
- this.$api.letter[HtApiType]({
- [item.apiType == 2 ? "subOrderNo" : "companyId"]: item.id,
- }).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.quotationhistorydialogVisible ? this.RadioHistoryChange() : "";
- this.findPage();
- this.querystatusLoaing = false;
- } else {
- this.querystatusLoaing = false;
- this.$message({ message: res.msg, type: "error" });
- }
- });
- }
- if (item.inscompany == "大家财险") {
- let DJApiType =
- item.apiType == 2 ? "pychonverifyPayment" : "updateOrderInfoDajia";
- this.$api.letter[DJApiType]({
- [item.apiType == 2 ? "subOrderNo" : "companyId"]: item.id,
- }).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.quotationhistorydialogVisible ? this.RadioHistoryChange() : "";
- this.findPage();
- this.querystatusLoaing = false;
- } else {
- this.querystatusLoaing = false;
- this.$message({ message: res.msg, type: "error" });
- }
- });
- }
-
- if (item.inscompany == "中煤财险") {
- // 中煤财险: "paymentEnquiry",
- let ZMApiType =
- item.apiType == 2 ? "pychonverifyPayment" : "paymentEnquiry";
- this.$api.letter[ZMApiType]({
- [item.apiType == 2 ? "subOrderNo" : "companyId"]: item.id,
- }).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg ? res.msg : "已刷新状态",
- type: "success",
- });
- this.quotationhistorydialogVisible ? this.RadioHistoryChange() : "";
- this.findPage();
- this.querystatusLoaing = false;
- } else {
- this.querystatusLoaing = false;
- this.$message({ message: res.msg, type: "error" });
- }
- });
- }
- if (
- item.inscompany == "诚泰财险" ||
- item.inscompany == "恒邦财险" ||
- item.inscompany == "众安财险" ||
- item.inscompany == "中国人寿" ||
- item.inscompany == "安盛天平" ||
- item.inscompany == "太平财险" ||
- item.inscompany == "泰康财险" ||
- item.inscompany == "华农财险"
- ) {
- this.$api.letter
- .pychonverifyPayment({ subOrderNo: item.id })
- .then((res) => {
- if (res.code == "200") {
- this.$message({
- message: "订单支付成功,正在更改状态",
- type: "success",
- });
- this.quotationhistorydialogVisible
- ? this.RadioHistoryChange()
- : "";
- this.findPage();
- this.querystatusLoaing = false;
- } else {
- this.querystatusLoaing = false;
- this.$message({ message: res.msg, type: "error" });
- }
- });
- }
- },
- cancelorder(item) {
- this.$api.letter.zijincancelorder({ companyId: item.id }).then((res) => {
- if (res.code == 200) {
- this.$message({
- message: res.msg,
- type: "success",
- });
- this.findPage();
- }
- });
- },
- //二维码
- carcode(item) {
- this.apiType = item.apiType;
- this.$api.letter.getQrCode(item.id).then((res) => {
- if (res.code == "200") {
- this.inscompany = res.data.inscompany; //保险公司
- this.sumpremium = res.data.sumpremium; //总价
- this.licenseNo = res.data.cPlateNo; //车牌号
- this.applyName = res.data.cApplyNme; //车主
- this.jqpremium = res.data.jqpremium; //交强
- this.sypremium = res.data.sypremium; //商业
- this.taxamount = res.data.taxamount; //车船税
- this.jypremium = res.data.jypremium; //驾意险
- this.jqstartdate = res.data.jqStartDate; //交强起保日期
- this.systartdate = res.data.syStartDate; //商业起保日期
- // this.mobile = res.data.applyinfo.mobile;//投保人手机号
- let qrCodeUrl = res.data.qrCodeUrl;
- this.$api.letter.getThemeByUserId(this.userIdPor).then((res) => {
- if (res.code == 200) {
- if (res.data[0] == "GD") {
- this.codedialogVisiblePro = true;
- this.qrcodeWidth = "154";
- this.qrcodeHeight = "154";
- } else {
- this.codedialogVisible = true;
- }
- this.$nextTick(function () {
- if (item.inscompany == "太平财险" || item.inscompany == "诚泰财险") {
- let anresult = qrCodeUrl.replace(/[\r\n]/g, "");
- let animgBase64 = `data:image/png;base64,${anresult}`;
- base64ToPath(animgBase64).then((path) => {
- this.paycodeimg = path;
- });
- } else if (item.inscompany == "华泰财险") {
- switch (item.apiType) {
- case 1:
- this.creatQrCode(qrCodeUrl);
- break;
- case 2:
- let anresult = qrCodeUrl.replace(/[\r\n]/g, "");
- let animgBase64 = `data:image/png;base64,${anresult}`;
- base64ToPath(animgBase64).then((path) => {
- console.log(path)
- this.paycodeimg = path;
- });
- break;
- }
- } else if (item.inscompany == "大家财险") {
- switch (item.apiType) {
- case 1:
- this.creatQrCode(qrCodeUrl);
- break;
- case 2:
- let anresult = qrCodeUrl.replace(/[\r\n]/g, "");
- let animgBase64 = `data:image/png;base64,${anresult}`;
- base64ToPath(animgBase64).then((path) => {
- this.paycodeimg = path;
- });
- break;
- }
- } else if (item.inscompany == "中煤财险") {
- switch (item.apiType) {
- case 1:
- this.creatQrCode(qrCodeUrl);
- break;
- case 2:
- let anresult = qrCodeUrl.replace(/[\r\n]/g, "");
- let animgBase64 = `data:image/png;base64,${anresult}`;
- base64ToPath(animgBase64).then((path) => {
- this.paycodeimg = path;
- });
- break;
- }
- } else {
- this.creatQrCode(qrCodeUrl);
- }
- });
- }
- });
- } else {
- this.$message({ message: res.msg, type: "warning" });
- }
- });
- // this.$api.letter.getByCompanyId(params).then(res => {
- // if (res.code == '200') {
- // this.inscompany = res.data.inscompany;//保险公司
- // this.sumpremium = res.data.sumpremium;//总价
- // this.licenseNo = res.data.carinfo.licenseNo;//车牌号
- // this.applyName = res.data.insuredname;//车主
- // this.jqpremium = res.data.jqpremium;//交强
- // this.sypremium = res.data.sypremium;//商业
- // this.taxamount = res.data.taxamount;//车船税
- // this.jypremium = res.data.jypremium;//驾意险
- // this.jqstartdate = res.data.jqstartdate;//交强起保日期
- // this.systartdate = res.data.systartdate;//商业起保日期
- // this.mobile = res.data.applyinfo.mobile;//投保人手机号
- // switch (item.inscompany) {
- // case "永安财险":
- // let url = this.global.h5BaseUrl + '/#/pages/carInsure1/yonganCode?companyId=' + item.id + '&mobile=' + this.mobile;
- // this.$nextTick(() => {
- // this.creatQrCode(url);
- // });
- // break;
- // case "人保财险":
- // case "中煤财险":
- // case "华泰财险":
- // case "永诚财险":
- // case "紫金财险":
- // this.$nextTick(() => {
- // this.creatQrCode(res.data.paymentLink);
- // });
- // break;
- // case "众安财险":
- // this.paycodeimg = res.data.paymentLink;
- // break;
- // case "中国人寿":
- // this.$nextTick(() => {
- // this.creatQrCode(res.data.paymentLink);
- // });
- // break;
- // case "恒邦财险":
- // this.paycodeimg = res.data.paymentLink;
- // break;
- // case "国任财险":
- // this.paycodeimg = res.data.paymentLink;
- // break;
- // case "安盛天平":
- // let anresult = res.data.paymentLink.replace(/[\r\n]/g, "");
- // let animgBase64 = `data:image/png;base64,${anresult}`;
- // base64ToPath(animgBase64)
- // .then(path => {
- // this.paycodeimg = path;
- // })
- // break;
- // default:
- // this.$message({ message: "识别不到保险公司,请检查", type: "warning" })
- // }
- // this.codedialogVisible = true;
- // } else {
- // this.$message({ message: res.msg, type: "warning" })
- // }
- // })
- },
- signature(row) {
- this.$api.letter.pingAnsignEleApply({ companyId: row.id }).then((res) => {
- if (res.code == 200 && res.data) {
- this.resultMessageImg = process.env.BASE_URL + res.data.resultMessage
- this.signaturedialogVisible = true;
- // 查找并删除旧的二维码DOM元素
- // let element = document.getElementById("signaturecode");
- // while (element.firstChild) {
- // element.removeChild(element.firstChild);
- // }
- // this.signaturecode = new QRCode("signaturecode", {
- // text: resultMessage,
- // width: 180,
- // height: 180,
- // colorDark: "#000000",
- // colorLight: "#ffffff",
- // correctLevel: QRCode.CorrectLevel.H,
- // });
- } else {
- this.$message({
- message: res.msg || "暂无数据!",
- type: "warning",
- });
- }
- });
- },
- orderTrajectory(row, item) {
- this.$api.letter.queryBySuborder(item.id).then((res) => {
- if (res.code == 200 && res.data.length > 0) {
- this.ddgjdialogVisible = true;
- this.trajectoryTable = res.data;
- } else {
- this.$message({
- message: res.msg || "暂无数据!",
- type: "warning",
- });
- }
- });
- },
- capTypedictTag(val, option) {
- if (option.find((item) => item.dictValue == val)) {
- return option.find((item) => item.dictValue == val).dictTag;
- } else {
- return "-";
- }
- },
- //应用详情
- OrderDetails(dy, item) {
- console.log(dy, item)
- this.carImageList = [];
- this.ownerImageList = []; //车主影像
- this.policyImageList = []; //投保人影像
- this.insuredImageList = []; //被保人影像
- this.carCheckImageList = []; //验车照影像
- // 影像控制
- this.pic1Control = false;
- this.pic2Control = false;
- this.pic3Control = false;
- this.pic4Control = false;
- this.pic5Control = false;
- for (let i = 0; i < this.global.insureList.length; i++) {
- this.global.insureList[i].coveragePremium = "";
- this.global.insureList[i].amount = 0;
- }
- let params = {
- companyId: item.id,
- };
- this.$api.letter.getByCompanyId(params).then((res) => {
- if (res.code == 200) {
- this.licenseNo = res.data.licenseno; //车牌号
- this.inscompany = res.data.inscompany; //保险公司
- // res.data.carinfo.carnature = this.natureOfVehicleUseCap(
- // res.data.carinfo.carnature
- // );
- if (
- (res.data.carinfo.carnature &&
- res.data.carinfo.carnature == "02") ||
- res.data.carinfo.carnature == "非营业"
- ) {
- res.data.carinfo.vehicleUse = this.capTypedictTag(
- res.data.carinfo.vehicleUse,
- this.outOfBusinessVehicleUseoptions
- );
- } else {
- res.data.carinfo.vehicleUse = this.capTypedictTag(
- res.data.carinfo.vehicleUse,
- this.businessVehicleUseoptions
- );
- }
- res.data.carinfo.carnature = this.capTypedictTag(
- res.data.carinfo.carnature,
- this.natureOfVehicleUseoptions
- );
- res.data.carinfo.cartype = res.data.carinfo.cartype
- ? this.capTypedictTag(
- res.data.carinfo.cartype,
- this.trafficManagementVehicleTypeoptions
- )
- : "";
- res.data.carinfo.cimodelclass = res.data.carinfo.cimodelclass
- ? this.capTypedictTag(
- res.data.carinfo.cimodelclass,
- this.vehicleTypeoptions
- )
- : "";
- res.data.carinfo.energyType = res.data.carinfo.energyType
- ? this.capTypedictTag(
- res.data.carinfo.energyType,
- this.energyTypeoptions
- )
- : "";
- if (res.data.accidentInfo) {
- res.data.accidentInfo.constructor === Object
- ? [res.data.accidentInfo]
- : res.data.accidentInfo;
- }
- Object.assign(this.orderInfo, res.data);
- if (this.orderInfo.riskinfo && this.orderInfo.riskinfo.length > 0) {
- for (let i = 0; i < this.orderInfo.riskinfo.length; i++) {
- if (this.orderInfo.riskinfo[i].riskCode == "0510") {
- for (let j = 0; j < this.orderInfo.kindinfo.length; j++) {
- for (let m = 0; m < this.global.insureList.length; m++) {
- if (
- this.orderInfo.kindinfo[j].kindCode ==
- this.global.insureList[m].kindCode
- ) {
- this.global.insureList[m].coveragePremium =
- this.orderInfo.kindinfo[j].coveragePremium;
- if (this.orderInfo.kindinfo[j].kindCode == "B") {
- this.global.insureList[9].amtList[0].value =
- this.orderInfo.kindinfo[j].amount;
- }
- if (this.orderInfo.kindinfo[j].kindCode == "A") {
- this.global.insureList[m].amount = "1";
- } else if (this.global.insureList[m].kindCode == "D4") {
- this.global.insureList[m].amount =
- this.orderInfo.kindinfo[j].unitAmount;
- } else if (
- this.global.insureList[m].isMainRisk ||
- this.global.insureList[m].kindCode == "BD" ||
- this.global.insureList[m].kindCode == "L"
- ) {
- this.global.insureList[m].amount =
- this.orderInfo.kindinfo[j].amount;
- } else {
- this.global.insureList[m].amount =
- this.orderInfo.kindinfo[j].deductibleRate;
- }
- }
- }
- }
- }
- }
- }
- // 获取影像
- this.$api.letter.findByQuoteNo(dy.quoteno).then((resImage) => {
- Object.keys(resImage.data).forEach((keys) => {
- if (resImage.data[keys]) {
- resImage.data[keys].url = resImage.data[keys].url
- ? process.env.BASE_URL + resImage.data[keys].url
- : null;
- switch (keys) {
- case "C01":
- case "D01":
- resImage.data[keys].url
- ? this.carImageList.push(resImage.data[keys].url)
- : "";
- break;
- case "C02":
- case "D02":
- resImage.data[keys].url
- ? this.ownerImageList.push(resImage.data[keys].url)
- : "";
- break;
- case "C03":
- case "D03":
- resImage.data[keys].url
- ? this.policyImageList.push(resImage.data[keys].url)
- : "";
- break;
- case "C04":
- case "D04":
- resImage.data[keys].url
- ? this.insuredImageList.push(resImage.data[keys].url)
- : "";
- break;
- case "XC00":
- case "GC00":
- case "GX00":
- resImage.data[keys].url
- ? this.carCheckImageList.push(resImage.data[keys].url)
- : "";
- break;
- default:
- break;
- }
- }
- });
- let obj = {
- carImageList: this.carImageList,
- ownerImageList: this.ownerImageList,
- policyImageList: this.policyImageList,
- insuredImageList: this.insuredImageList,
- carCheckImageList: this.carCheckImageList,
- };
- this.$refs.detailsDialog.imageFun(obj);
- });
- this.pic1Control = false;
- this.pic2Control = false;
- this.pic3Control = false;
- this.pic4Control = false;
- this.pic5Control = false;
- this.oldfileList = [];
- let businessList = [];
- let accidentList = [];
- if (res.data.orderstatus == "3") {
- if (res.data.isExternal == 1) {
- this.$api.letter
- .getPolicyPrintexternalOrder(res.data.id)
- .then((res1) => {
- if (res1.code == 200) {
- if (res1.data.jqPolicy) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res1.data.jqPolicy,
- });
- }
- if (res1.data.jqSign) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res1.data.jqSign,
- });
- }
- if (res1.data.jqSign) {
- accidentList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res1.data.jqSign,
- });
- }
- if (res1.data.noPolicy) {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: "驾意险保单",
- fileurl: res1.data.noPolicy,
- });
- }
- } else {
- this.$message.error(res1.msg);
- }
- });
- } else {
- switch (res.data.inscompany) {
- case "永安财险":
- if (this.orderInfo.jqpolicyno) {
- this.$api.letter
- .getPolicyPrint({
- companyId: item.id,
- policytype: "jq",
- })
- .then((res) => {
- //交强保单
- if (res.data) {
- let result = res.data.replace(/[\r\n]/g, "");
- let pdfBase64 = `data:application/pdf;base64,${result}`;
- base64ToPath(pdfBase64).then((path) => {
- if (path) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: path,
- });
- }
- });
- }
- });
- this.$api.letter
- .getPolicyPrint2({
- companyId: item.id,
- policytype: "jq",
- })
- .then((res) => {
- //交强保单
- if (res.data) {
- let result = res.data.replace(/[\r\n]/g, "");
- let pdfBase64 = `data:application/pdf;base64,${result}`;
- base64ToPath(pdfBase64).then((path) => {
- if (path) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: path,
- });
- }
- });
- }
- });
- }
- if (this.orderInfo.sypolicyno) {
- this.$api.letter
- .getPolicyPrint({
- companyId: item.id,
- policytype: "sy",
- })
- .then((res) => {
- //商业保单
- if (res.data) {
- let result = res.data.replace(/[\r\n]/g, "");
- let pdfBase64 = `data:application/pdf;base64,${result}`;
- base64ToPath(pdfBase64).then((path) => {
- if (path) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: path,
- });
- }
- });
- }
- });
- }
- break;
- case "华泰财险":
- switch (item.apiType) {
- case 1:
- if (this.orderInfo.jqpolicyno) {
- this.$api.letter
- .HuataigetPolicyPrint({
- companyId: item.id,
- riskCode: "0507",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data) {
- if (res.data.jqxPolicyUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxPolicyUrl,
- });
- }
- if (res.data.jqxFlagUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxFlagUrl,
- });
- }
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- if (this.orderInfo.sypolicyno) {
- this.$api.letter
- .HuataigetPolicyPrint({
- companyId: item.id,
- riskCode: "0510",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data && res.data.syxPolicyUrl) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data.syxPolicyUrl,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- break;
- case 2:
- if (
- this.orderInfo.jqpolicyno ||
- this.orderInfo.sypolicyno
- ) {
- this.$api.letter
- .pythongetPolicyPrint({
- subOrderNo: item.id,
- })
- .then((res) => {
- if (res.code == 200 && res.data) {
- if (res.data.jqxPolicyUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxPolicyUrl,
- });
- }
- if (res.data.jqxFlagUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxFlagUrl,
- });
- }
- if (res.data.syxPolicyUrl) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data.syxPolicyUrl,
- });
- }
- if (
- res.data.jyxInfoList &&
- res.data.jyxInfoList.length > 0
- ) {
- res.data.jyxInfoList.forEach((val) => {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: "驾意险保单",
- fileurl: val.jyx_policy_url,
- });
- });
- }
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- break;
- }
- break;
- case "中煤财险":
- switch (item.apiType) {
- case 1:
- if (this.orderInfo.jqpolicyno) {
- this.$api.letter
- .ZhongmeigetPolicyPrint({
- companyId: item.id,
- riskCode: "0507",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data && res.data[0]) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data[0],
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- this.$api.letter
- .ZhongmeigetPolicyPrint({
- companyId: item.id,
- riskCode: "0507",
- type: "1", // 1:标志
- })
- .then((res) => {
- if (res.data && res.data[0]) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data[0],
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- if (this.orderInfo.sypolicyno) {
- this.$api.letter
- .ZhongmeigetPolicyPrint({
- companyId: item.id,
- riskCode: "0510",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data && res.data[0]) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data[0],
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- if (this.orderInfo.crossInsurance.length > 0) {
- this.orderInfo.crossInsurance.map((ele) => {
- this.$api.letter
- .ZhongmeigetPolicyPrint({
- ridePolicyNo: ele.ridePolicyNo,
- companyId: item.id,
- riskCode: "0513",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.code == 200 && res.data) {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data[0],
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- });
- }
- break;
- case 2:
- if (
- this.orderInfo.jqpolicyno ||
- this.orderInfo.sypolicyno
- ) {
- this.$api.letter
- .pythongetPolicyPrint({
- subOrderNo: item.id,
- })
- .then((res) => {
- if (res.code == 200 && res.data) {
- if (res.data.jqxPolicyUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxPolicyUrl,
- });
- }
- if (res.data.jqxFlagUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxFlagUrl,
- });
- }
- if (res.data.syxPolicyUrl) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data.syxPolicyUrl,
- });
- }
- if (
- res.data.jyxInfoList &&
- res.data.jyxInfoList.length > 0
- ) {
- res.data.jyxInfoList.forEach((val) => {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: "驾意险保单",
- fileurl: val.jyx_policy_url,
- });
- });
- }
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- break;
- }
- break;
- case "永诚财险":
- if (this.orderInfo.jqpolicyno) {
- this.$api.letter
- .yongchenggetPolicyPrint({
- companyId: item.id,
- riskCode: "0507",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.code == 200 && res.data) {
- if (res.data.jqUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqUrl,
- });
- }
- if (res.data.jqFlagUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqFlagUrl,
- });
- }
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- if (this.orderInfo.sypolicyno) {
- this.$api.letter
- .yongchenggetPolicyPrint({
- companyId: item.id,
- riskCode: "0510",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data && res.data.syUrl) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data.syUrl,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- if (this.orderInfo.crossInsurance.length > 0) {
- this.orderInfo.crossInsurance.map((ele) => {
- this.$api.letter
- .yongchenggetPolicyPrint({
- companyId: item.id,
- policyNumber: ele.policyNumber,
- riskCode: "0513",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.code == 200 && res.data) {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: ele.policyNumber,
- fileurl: res.data.jyUrl,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- });
- }
- break;
- case "国任财险":
- if (this.orderInfo.jqpolicyno) {
- this.$api.letter
- .guoRengetPolicyPrint({
- companyId: item.id,
- riskCode: "0507",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- this.$api.letter
- .guoRengetPolicyPrint({
- companyId: item.id,
- riskCode: "0507",
- type: "1", //1:标志
- })
- .then((res) => {
- if (res.data) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- if (this.orderInfo.sypolicyno) {
- this.$api.letter
- .guoRengetPolicyPrint({
- companyId: item.id,
- riskCode: "0510",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- if (this.orderInfo.crossInsurance.length > 0) {
- this.orderInfo.crossInsurance.map((ele) => {
- this.$api.letter
- .guoRengetPolicyPrint({
- companyId: item.id,
- policyNumber: ele.policyNumber,
- riskCode: "0513",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data) {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: ele.policyNumber,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- });
- }
- break;
- case "紫金财险":
- if (this.orderInfo.jqpolicyno) {
- this.$api.letter
- .zijingetPolicyPrint({
- companyId: item.id,
- riskCode: "0507",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- this.$api.letter
- .zijingetPolicyPrint({
- companyId: item.id,
- riskCode: "0507",
- type: "1", //1:标志
- })
- .then((res) => {
- if (res.data) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- if (this.orderInfo.sypolicyno) {
- this.$api.letter
- .zijingetPolicyPrint({
- companyId: item.id,
- riskCode: "0510",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- if (this.orderInfo.crossInsurance.length > 0) {
- this.orderInfo.crossInsurance.map((ele) => {
- this.$api.letter
- .zijingetPolicyPrint({
- companyId: item.id,
- policyNumber: ele.policyNumber,
- riskCode: "0513",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data) {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: ele.policyNumber,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- });
- }
- break;
- case "渤海财险":
- if (this.orderInfo.jqpolicyno) {
- this.$api.letter
- .getPolicyPrintboHai({
- companyId: item.id,
- })
- .then((res) => {
- if (res.code == 200 && res.data) {
- if (res.data.jqxPolicyUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxPolicyUrl,
- });
- }
- if (res.data.jqxFlagUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxFlagUrl,
- });
- }
- if (res.data.syxPolicyUrl) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data.syxPolicyUrl,
- });
- }
- if (
- res.data.jyxInfoList &&
- res.data.jyxInfoList.length > 0
- ) {
- res.data.jyxInfoList.forEach((val) => {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: "驾意险保单",
- fileurl: val.jyx_policy_url,
- });
- });
- }
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- break;
- case "平安财险":
- if (this.orderInfo.jqpolicyno) {
- this.$api.letter
- .pingangetPolicyPrint({
- companyId: item.id,
- })
- .then((res) => {
- if (res.code == 200 && res.data) {
- if (res.data.jqxPolicyUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: process.env.BASE_URL + res.data.jqxPolicyUrl,
- });
- }
- if (res.data.jqxFlagUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: process.env.BASE_URL + res.data.jqxFlagUrl,
- });
- }
- if (res.data.syxPolicyUrl) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: process.env.BASE_URL + res.data.syxPolicyUrl,
- });
- }
- if (
- res.data.jyxInfoList &&
- res.data.jyxInfoList.length > 0
- ) {
- res.data.jyxInfoList.forEach((val) => {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: "驾意险保单",
- fileurl: process.env.BASE_URL + val.jyx_policy_url,
- });
- });
- }
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- break;
- case "诚泰财险":
- case "恒邦财险":
- case "安盛天平":
- case "中国人寿":
- case "太平财险":
- case "华农财险":
- case "众安财险":
- case "泰康财险":
- if (this.orderInfo.jqpolicyno || this.orderInfo.sypolicyno) {
- this.$api.letter
- .pythongetPolicyPrint({
- subOrderNo: item.id,
- })
- .then((res) => {
- if (res.code == 200 && res.data) {
- if (res.data.jqxPolicyUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxPolicyUrl,
- });
- }
- if (res.data.jqxFlagUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxFlagUrl,
- });
- }
- if (res.data.syxPolicyUrl) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data.syxPolicyUrl,
- });
- }
- if (
- res.data.jyxInfoList &&
- res.data.jyxInfoList.length > 0
- ) {
- res.data.jyxInfoList.forEach((val) => {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: "驾意险保单",
- fileurl: val.jyx_policy_url,
- });
- });
- }
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- break;
- case "大家财险":
- switch (item.apiType) {
- case 1:
- if (this.orderInfo.jqpolicyno) {
- this.$api.letter
- .obtainWarranty({
- companyId: item.id,
- riskCode: "0507",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- this.$api.letter
- .obtainWarranty({
- companyId: item.id,
- riskCode: "0507",
- type: "1", //1:标志
- })
- .then((res) => {
- if (res.data) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- if (this.orderInfo.sypolicyno) {
- this.$api.letter
- .obtainWarranty({
- companyId: item.id,
- riskCode: "0510",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data,
- });
- }
- });
- }
- if (this.orderInfo.crossInsurance.length > 0) {
- this.orderInfo.crossInsurance.map((ele) => {
- this.$api.letter
- .obtainWarranty({
- companyId: item.id,
- policyNumber: ele.policyNumber,
- riskCode: "0513",
- type: "2", //2:保单
- })
- .then((res) => {
- if (res.data) {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: ele.policyNumber,
- fileurl: res.data,
- });
- } else {
- this.$message.error(res.msg);
- }
- });
- });
- }
- break;
- case 2:
- if (
- this.orderInfo.jqpolicyno ||
- this.orderInfo.sypolicyno
- ) {
- this.$api.letter
- .pythongetPolicyPrint({
- subOrderNo: item.id,
- })
- .then((res) => {
- if (res.code == 200 && res.data) {
- if (res.data.jqxPolicyUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子保单",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxPolicyUrl,
- });
- }
- if (res.data.jqxFlagUrl) {
- this.oldfileList.push({
- fileTitle: "交强电子标志",
- filename: this.orderInfo.jqpolicyno,
- fileurl: res.data.jqxFlagUrl,
- });
- }
- if (res.data.syxPolicyUrl) {
- businessList.push({
- fileTitle: "商业电子保单",
- filename: this.orderInfo.sypolicyno,
- fileurl: res.data.syxPolicyUrl,
- });
- }
- if (
- res.data.jyxInfoList &&
- res.data.jyxInfoList.length > 0
- ) {
- res.data.jyxInfoList.forEach((val) => {
- accidentList.push({
- fileTitle: "驾意险保单",
- filename: "驾意险保单",
- fileurl: val.jyx_policy_url,
- });
- });
- }
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- break;
- }
- break;
- default:
- }
- }
- let obj = {
- oldfileList: this.oldfileList,
- businessList,
- accidentList,
- };
- this.$refs.detailsDialog.warrantyFun(obj);
- }
- console.log(this.orderInfo)
- this.showInsureList = false;
- this.$refs.detailsDialog.setBackupVisible(true);
- } else {
- this.$message.error("订单获取失败");
- }
- });
- },
- //联级选择器触发事件
- handleChange(val) {
- if (val.length !== 0) {
- this.pageRequest.deptId = val.at(-1);
- } else {
- this.pageRequest.deptId = "";
- }
- },
- handleClose(done) {
- this.$confirm("确认关闭?")
- .then((_) => {
- done();
- })
- .catch((_) => { });
- },
- httpRequest(options) {
- let file = options.file;
- let filename = options.filename;
- let reader = new FileReader();
- if (file) {
- reader.readAsDataURL(file);
- }
- reader.onload = () => {
- let base64Str = reader.result;
- this[options.filename].push(base64Str);
- };
- },
- // 设置每页条数
- applyhandleSizeChange(val) {
- this.pageSize = val;
- this.pageNum = 1;
- this.pageRequest.pageNum = 1;
- this.pageRequest.pageSize = val;
- this.findPage();
- },
- // 当前页
- applyhandleCurrentChange(val) {
- this.pageNum = val;
- this.pageRequest.pageNum = val;
- this.findPage();
- },
- saveAs(blob, filename) {
- var link = document.createElement("a");
- link.href = window.URL.createObjectURL(blob);
- link.target = "_ blank";
- link.download = filename;
- link.click();
- },
- //预览文件
- viewfile(index) {
- let name = index.fileurl.lastIndexOf("/");
- fetch(index.fileurl)
- .then((response) => response.blob())
- .then((blob) => {
- this.saveAs(
- blob,
- index.fileurl.substring(name + 1, index.fileurl.length)
- );
- })
- .catch((error) => { });
- // const a = document.createElement('a')
- // a.style.display = 'none'
- // a.href = index.fileurl
- // a.target = '_ blank';
- // a.download = this.licenseNo+ '.pdf'; // 下载文件的名字
- // document.body.appendChild(a)
- // a.click()
- },
- // jump(obj) {
- // var s = document.getElementById(obj);
- // var parent = s.parentNode;
- // for (let i = 0; i < parent.childNodes.length; i++) {
- // if (parent.childNodes[i].tagName == "DIV") {
- // if (parent.childNodes[i].childNodes[0].classList.contains("active")) {
- // parent.childNodes[i].childNodes[0].classList.remove("active");
- // }
- // }
- // }
- // s.childNodes[0].classList.add("active");
- // },
- // //表格行点击下拉事件
- // handleRowClick(row) {
- // if(!row.expanded){
- // this.$api.letter.querySonOrders({orderNo:row.orderno}).then(res=>{
- // if(res.code=='200' && res.data.length!=0){
- // this.pageResult.map(item=>{
- // if(item.orderno===row.orderno){
- // item.insAreaCompanyList=res.data;
- // }
- // return item;
- // })
- // row.expanded = !row.expanded;
- // this.$refs.expandTable.toggleRowExpansion(row, row.expanded);
- // }else{
- // this.$message.info("暂无数据");
- // }
- // })
- // }else{
- // row.expanded = !row.expanded;
- // this.$refs.expandTable.toggleRowExpansion(row, row.expanded);
- // }
- // },
- // handleRowChange:debounce(function(row,expandedRows) {
- // console.log(expandedRows);
- // if (expandedRows.length>0) {
- // this.$api.letter
- // .querySonOrders({ orderNo: row.orderno })
- // .then((res) => {
- // if (res.code == "200" && res.data.length != 0) {
- // this.pageResult.map((item) => {
- // if (item.orderno === row.orderno) {
- // item.insAreaCompanyList = res.data;
- // }
- // return item;
- // });
- // row.expanded = !row.expanded;
- // this.$refs.expandTable.toggleRowExpansion(row, row.expanded);
- // } else {
- // this.$message.info("暂无数据");
- // }
- // });
- // }
- // // else {
- // // row.expanded = !row.expanded;
- // // this.$refs.expandTable.toggleRowExpansion(row, row.expanded);
- // // }
- // }, 500), // 300 毫秒内不会重复触发,
- handleRowChange(row) {
- if (!row.expanded) {
- this.$api.letter.querySonOrders({ orderNo: row.orderno }).then(res => {
- if (res.code == "200" && res.data.length != 0) {
- this.pageResult.map(item => {
- if (item.orderno === row.orderno) {
- item.insAreaCompanyList = res.data;
- }
- return item;
- });
- row.expanded = !row.expanded;
- this.$refs.expandTable.toggleRowExpansion(row, row.expanded);
- } else {
- this.$message.info("暂无数据");
- }
- });
- } else {
- row.expanded = !row.expanded;
- this.$refs.expandTable.toggleRowExpansion(row, row.expanded);
- }
- },
- //数据
- findPage() {
- this.orderLoaing = true;
- let orderStatus = "";
- if (this.isLetterOrder) {
- orderStatus =
- this.pageRequest.orderStatus == 888
- ? ""
- : this.pageRequest.orderStatus;
- this.$api.letter
- .queryOrders({ ...this.pageRequest, orderStatus })
- .then((res) => {
- if (res.code == "200") {
- this.orderLoaing = false;
- this.pageResult = res.data.content;
- this.pageNum = res.data.pageNum;
- this.totalSize = res.data.totalSize;
- this.pageResult.forEach((val, index) => {
- this.$set(val, "expanded", false);
- });
- } else {
- this.$message.error(res.msg);
- this.orderLoaing = false;
- }
- });
- } else {
- orderStatus = this.statusPor == 888 ? "" : this.statusPor;
- this.$api.task
- .queryPageHospitalityOrder({
- ...this.pageRequest,
- orderStatus,
- userId: this.userIdPor,
- deptId: this.deptIdPor,
- })
- .then((res) => {
- if (res.code == "200") {
- this.orderLoaing = false;
- this.$nextTick(() => {
- this.pageResult = res.data.content;
- this.pageNum = res.data.pageNum;
- this.totalSize = res.data.totalSize;
- this.pageResult.forEach((val, index) => {
- this.$set(val, "expanded", false);
- });
- });
- } else {
- this.$message.error(res.msg);
- this.orderLoaing = false;
- }
- });
- }
- },
- //查询
- onSubmit() {
- this.pageRequest.pageNum = 1;
- this.pageRequest.pageSize = 20;
- this.findPage();
- },
- //时间js
- monthChange(e) {
- if (e === null) {
- this.pageRequest.startDate = e;
- this.pageRequest.endDate = e;
- } else {
- this.pageRequest.startDate = e[0];
- this.pageRequest.endDate = e[1];
- }
- },
- // downloadFile(url, fileName, type) {
- // const xhr = new XMLHttpRequest();
- // xhr.open("GET", url, true);
- // xhr.responseType = "blob"; // 获取文件blob数据
- // xhr.onload = function() {
- // if (xhr.status !== 200) {
- // this.$notify.error({
- // title: "错误",
- // message: "下载出现错误"
- // });
- // return;
- // }
- // const newUrl = window.URL.createObjectURL(xhr.response); // 生成一个可用的临时url
- // const a = document.createElement("a"); // 生成a标签调用点击事件
- // a.setAttribute("href", newUrl);
- // a.setAttribute("target", "_blank");
- // a.setAttribute("download", fileName); // 自定义文件名
- // document.body.appendChild(a);
- // a.click();
- // document.body.removeChild(a);
- // };
- // xhr.send();
- // }
- },
- };
- </script>
- <style lang="scss" scoped>
- .scan-code {
- div {
- margin-top: 10px;
- }
- }
- .green_color {
- color: #068069;
- border: 1px solid #068069;
- padding: 7px 8px;
- }
- .red_color {
- color: var(--themeColor);
- border: 1px solid var(--themeColor);
- padding: 7px 8px;
- }
- .blue_color {
- color: #2d4d89;
- border: 1px solid #2d4d89;
- padding: 7px 8px;
- }
- .el-dropdown {
- font-size: 12px;
- }
- .el-step__description>span {
- margin-right: 10px;
- }
- /deep/ {
- .proSaomazhifucodeClass .el-dialog__header {
- background: rgba(45, 77, 137, 0.1);
- font-weight: bold;
- }
- .proSaomazhifucodeClass .el-dialog__footer {
- border-top: 1px solid #eef1f6;
- }
- .el-step__head {
- min-height: 90px;
- }
- .el-table .row-expand-cover .cell .el-table__expand-icon {
- display: none;
- }
- .el-descriptions-item__label {
- &:not(.is-bordered-label) {
- color: #333;
- }
- }
- .saomazhifucodeClass .el-dialog__body,
- .saomazhifucodeClass .el-dialog__header,
- .saomazhifucodeClass .el-dialog__footer {
- padding: 0;
- background: #f4e9e9;
- }
- .saomazhifucodeClass .el-dialog__body {
- padding: 15px;
- }
- .saomazhifucodeClass .el-dialog__footer {
- background: #f4e9e9;
- padding-bottom: 15px;
- }
- .saomazhifucodeClass .el-dialog__headerbtn {
- margin-top: 10px;
- }
- .el-input.is-disabled .el-input__inner {
- color: #333;
- }
- }
- .ORcodebody {
- height: auto;
- // background: url(../../../assets/image/group.png) #fff;
- padding: 16px;
- background-color: #fff;
- }
- .ORcode {
- width: 100%;
- height: auto;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 30px;
- box-sizing: border-box;
- &>div {
- width: 176px;
- height: 176px;
- border: 1px solid var(--themeColor);
- border-radius: 5px;
- }
- }
- .ORtitle {
- width: 100%;
- padding-bottom: 20px;
- box-sizing: border-box;
- &>div {
- width: 100%;
- margin: 10px 0;
- font-size: 14px;
- &>span {
- &:nth-child(1) {
- color: #868b98;
- text-align: end;
- width: 150px;
- }
- &:nth-child(2) {
- color: #333333;
- }
- }
- }
- }
- </style>
- <style scoped lang="scss">
- #qqq {
- background-color: #111;
- width: 300px;
- height: 300px;
- margin: 0 auto;
- /*水平居中*/
- position: relative;
- }
- #qrCode {
- display: inline-block;
- margin: 0 auto;
- /*水平居中*/
- position: relative;
- top: 15%;
- }
- #qrCode img {
- width: 200px;
- height: 200px;
- background-color: #fff;
- padding: 6px;
- }
- .leftContainer {
- width: 80px;
- position: fixed;
- top: 79px;
- left: 30px;
- }
- .leftContainer .el-col {
- width: 80px;
- height: 80px;
- border-bottom: 1px solid #4d5c6f;
- background: #526176;
- cursor: pointer;
- color: #a6aeb9;
- border-radius: 0;
- }
- .leftContainer .el-col a {
- display: block;
- color: #a6aeb9;
- text-decoration: none;
- }
- .leftContainer .el-col a:hover {
- color: #fff;
- }
- .leftContainer .el-col a.active {
- color: #fff;
- }
- .leftContainer .el-col i {
- font-size: 30px;
- margin: 15px 0px 5px;
- }
- .rightContainer {
- width: calc(100vw - 160px);
- margin-left: 100px;
- }
- .rightContainer .header .el-col {
- font-size: 18px;
- font-weight: bold;
- }
- .rightContainer .bodyTitle {
- height: 40px;
- background: #f3f3f3;
- border: 1px solid #dddddd;
- }
- .rightContainer .bodyTitle>label {
- margin: 0px 15px;
- font-weight: bold;
- }
- .rightContainer #demo2 .body,
- .rightContainer #demo6 .body {
- border: 1px solid #ddd;
- padding: 15px;
- border-top: none;
- }
- .rightContainer .el-card {
- margin-bottom: 15px;
- }
- .body .el-row .el-col label {
- text-align: right;
- width: 80px;
- font-size: 14px;
- width: 100%;
- line-height: 36px;
- display: inline-block;
- box-sizing: border-box;
- }
- .disabledInput {
- width: 80% !important;
- background-color: #f5f7fa;
- text-align: center !important;
- max-width: 200px;
- border: 1px solid #e4e7ed;
- color: #c0c4cc;
- cursor: not-allowed;
- border-radius: 4px;
- box-sizing: border-box;
- padding: 0px 10px;
- height: 36px;
- margin: 20px 10%;
- }
- /* 上传图片样式Start */
- .avatar-uploader .el-upload {
- border: 1px dashed #d9d9d9;
- border-radius: 6px;
- cursor: pointer;
- position: relative;
- overflow: hidden;
- }
- .avatar-uploader .el-upload:hover {
- border-color: #409eff;
- }
- .avatar-uploader-icon {
- font-size: 28px;
- color: #8c939d;
- width: 100px;
- height: 100px;
- line-height: 100px;
- text-align: center;
- border: 1px dashed #d9d9d9;
- }
- .avatar {
- border: 1px dashed #d9d9d9;
- padding: 5px;
- border-radius: 6px;
- width: 100px;
- height: 100px;
- display: block;
- }
- .imageStyle {
- display: inline-block;
- width: 100px;
- height: 100px;
- box-shadow: #ddd 0px 0px 5px;
- margin-right: 20px;
- }
- /* 上传图片样式End */
- .dis {
- display: flex;
- }
- .align {
- align-items: center;
- }
- .jus {
- justify-content: space-between;
- }
- .display {
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- }
- .block {
- margin-top: 10px;
- }
- .page {
- padding: 14px;
- box-sizing: border-box;
- }
- .el-select--medium {
- vertical-align: bottom !important;
- }
- .widths {
- width: 200px;
- }
- .demo-table-expand {
- /* width:96vw; */
- height: auto;
- padding: 10px 20px 10px 50px;
- font-size: 14px;
- }
- .demo-table-expand-time {
- width: 40%;
- }
- .demo-table-expand-time>div {
- margin: 0 10px;
- }
- .icon-img {
- width: 30px;
- height: 30px;
- vertical-align: bottom;
- }
- .Enclosure {
- width: 100%;
- background-color: #fff;
- padding: 20px;
- box-sizing: border-box;
- margin-bottom: 15px;
- border-radius: 6px;
- border: 1px solid #ebeef5;
- transition: all 0.2s ease-in-out;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
- }
- .headers {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- margin: 5px 0;
- font-weight: bold;
- color: #333;
- }
- /* 内容待定 */
- .headers_Custom {
- div {
- padding: 2px 0px;
- font-size: 14px;
- &>span {
- color: rgb(226, 118, 10);
- }
- }
- }
- .back {
- color: #303133;
- font-weight: 700;
- }
- .u-f-ac {
- -webkit-box-align: center;
- align-items: center;
- /* padding: 10px; */
- }
- .bodyTitle {
- height: 40px;
- background: #f3f3f3;
- border: 1px solid #dddddd;
- line-height: 40px;
- padding: 0 20px;
- box-sizing: border-box;
- }
- .Risk {
- width: 100%;
- height: auto;
- display: flex;
- flex-direction: column;
- align-items: center;
- font-size: 12px;
- }
- .Risk_title {
- width: 100%;
- height: 40px;
- }
- .Risk_title>div {
- background: rgb(199, 20, 45);
- color: rgb(255, 255, 255);
- height: 100%;
- font-weight: 500;
- width: 33.3%;
- padding: 10px 20px;
- box-sizing: border-box;
- border: #fff solid 1px;
- display: flex;
- justify-content: center;
- align-items: center;
- border-bottom: none;
- }
- .Risk_title>div:nth-child(2) {
- border-left: none;
- border-right: none;
- }
- .Risk_data {
- width: 100%;
- height: 40px;
- }
- .Risk_data>div {
- background: #fbf6f7;
- color: rgb(51, 51, 51);
- height: 100%;
- font-weight: 500;
- width: 33.3%;
- padding: 10px 20px;
- box-sizing: border-box;
- border: #fff solid 1px;
- display: flex;
- justify-content: center;
- align-items: center;
- border-bottom: none;
- }
- .Risk_data>div :nth-child(2) {
- border-left: none;
- border-right: none;
- }
- .Risk_title>div :nth-child(3) {
- border-top-right-radius: 10px;
- }
- .jyxStyle>span {
- display: inline-block;
- text-align: center;
- }
- /* .el-step__description{
- color:#333
- } */
- /deep/ {
- .el-step__title,
- .el-step__icon-inner {
- color: var(--themeColor);
- }
- .el-step__description.is-finish,
- .el-step__head.is-finish {
- color: #333;
- border: none;
- }
- .el-step__icon.is-text {
- border: none;
- box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
- }
- .el-step__icon.is-text {
- font-size: 22px;
- }
- .el-step__icon {
- width: 28px;
- height: 28px;
- }
- .el-step.is-vertical .el-step__main {
- padding-left: 20px;
- }
- .el-step__line,
- .el-step.is-vertical .el-step__line {
- left: 14px;
- background-color: #e2e5eb;
- width: 1px;
- }
- .el-step__line-inner {
- height: 0;
- display: none;
- }
- .is-flex {
- .el-step__icon {
- background: var(--themeColor);
- }
- .el-step__icon-inner {
- color: #fff;
- }
- }
- .styleB {
- height: 128px;
- }
- .styleB .el-upload--picture-card {
- display: none;
- }
- }
- .tab-style {
- width: 110px;
- li {
- text-align: right;
- padding-right: 20px;
- line-height: 40px;
- cursor: pointer;
- box-sizing: border-box;
- border-right: 1px solid #e2e5eb;
- }
- li:focus {
- background: rgba(212, 36, 38, 0.1);
- border-right: 2px solid var(--themeColor);
- color: var(--themeColor);
- }
- }
- .tabLi-style {
- background: rgba(212, 36, 38, 0.1);
- border-right: 2px solid var(--themeColor);
- color: var(--themeColor);
- }
- .aaa {
- /deep/ {
- margin-bottom: 20px;
- margin-right: 50px;
- span {
- display: inline-block;
- margin-bottom: 10px;
- }
- .el-upload .el-upload-dragger {
- width: 180px;
- height: 120px;
- border: 1px dashed #c0ccda;
- padding: 0;
- }
- .el-upload-list--picture-card .el-upload-list__item {
- width: 180px;
- height: 120px;
- }
- .el-upload-list__item:first-child {
- margin-top: 0;
- }
- .el-upload--picture-card {
- width: 180px;
- height: 120px;
- }
- .el-upload-list__item {
- width: 180px;
- height: 120px;
- margin: 0 !important;
- display: block !important;
- }
- .el-upload-list--picture-card .el-upload-list__item-thumbnail {
- width: 180px;
- height: 120px;
- }
- }
- }
- .styleB .el-upload--picture-card {
- // display: none;
- opacity: 0;
- }
- </style>
|