| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652 |
- <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="3">
- <el-button type="primary" size="small" @click="onSubmit">查询</el-button>
- </el-col>
- </el-row>
- <el-row v-if="isLetterOrder">
- <el-col :span="21">
- <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-row>
- </el-form>
- <el-table size="small" :data="pageResult" border v-loading="orderLoaing" highlight-current-row stripe
- @expand-change="handleRowChange" ref="expandTable" :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" 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 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>
- <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"></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="insCompany" label="承保公司" width="180" align="center">
- <template slot-scope="scope">
- <span>{{ scope.row.insCompany ? scope.row.insCompany : "--" }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="licenseno" label="车牌号" width="180" align="center"></el-table-column>
- <el-table-column prop="insuredname" label="投保人姓名" align="center" width="150"></el-table-column>
- <el-table-column prop="product" label="投保险种" align="center" width="200"></el-table-column>
- <el-table-column prop="orderstatus" label="状态" align="center">
- <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 label="操作" align="center" min-width="100">
- <template slot-scope="scope">
- <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;">
- <img v-if="['太平财险', '华泰财险'].includes(inscompany)" :src="paycodeimg" alt style="width:100%" />
- <div v-else id="qrcode" ref="qrcode"></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>
- </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>
- <img v-if="['太平财险'].includes(inscompany)" :src="paycodeimg" alt style="width:100%" />
- <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>
- </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 | cap" :key="item.id" v-for="item in trajectoryTable">
- <template slot="description">
- <span>保险公司:{{ item.insCompany }}</span>
- <span>提交人:{{ item.operator }}</span>
- <div>创建时间:{{ item.createTime }}</div>
- </template>
- </el-step>
- </el-steps>
- </div>
- </el-dialog>
- <!-- 报价历史 -->
- <el-dialog :visible.sync="quotationhistorydialogVisible" 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="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'"
- @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>
- <!-- 报价单 -->
- <quotationDialog ref="quotationDialog" :queryOrders="queryOrders"></quotationDialog>
- <quotationDialogPro ref="quotationDialogPro" :queryOrders="queryOrders"></quotationDialogPro>
- </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";
- export default {
- data() {
- return {
- orderLoaing: false,
- qrcodeWidth: "180",
- qrcodeHeight: "180",
- qrCodeId: Cookies.get("user"),
- ddgjdialogVisible: false,
- trajectoryTable: [],
- queryOrders: {
- carinfo: {},
- ownerinfo: {},
- applyinfo: {},
- insureinfo: {},
- extendInfo: {}
- },
- logoImg: "", //报价单保险公司logo图
- value2: "",
- optionsStatus: [],
- 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: [],
- institutionOptions: [],
- width: document.documentElement.clientWidth,
- insAreaCompanyList: [], //子订单list
- companyList: [], //保险公司
- querystatusLoaing: false,
- quotationhistorydialogVisible: false, //报价历史显示状态
- HistoryList: [], //报价历史数据
- natureOfVehicleUseoptions: [],
- businessVehicleUseoptions: [],
- energyTypeoptions: [],
- vehicleTypeoptions: [],
- trafficManagementVehicleTypeoptions: [],
- outOfBusinessVehicleUseoptions: [],
- userIdPor: '',
- statusPor: '',
- deptIdPor: ''
- };
- },
- components: { quotationDialog, detailsDialog, quotationDialogPro },
- created() {
- this.getDicType("natureOfVehicleUse"); //车辆使用性质
- this.getDicType("vehicleType"); //车辆种类
- this.getDicType("trafficManagementVehicleType"); //车辆类型
- this.getDicType("energyType"); //能源种类
- this.getDicType("businessVehicleUse"); //(车辆用途)营业
- this.getDicType("outOfBusinessVehicleUse"); //(车辆用途)非营业
- this.$api.letter.gainTopList().then(res => {
- this.companyList = res.data;
- });
- this.$api.insCompany.dicType("insOrderStatus").then(res => {
- this.optionsStatus = res.data.ddList;
- });
- this.peopleid = Cookies.get("user");
- this.$api.dept.findDeptTree().then(res => {
- this.institutionOptions = res.data;
- });
- // this.findPage();
- if (this.isLetterOrder) {
- 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;
- }
- },
- 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: {
- //报价历史点击事件
- 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.$api.letter.getRevokeQrCode(id).then(res => {
- if (res.code == 200) {
- this.$message({
- message: res.msg,
- type: "success"
- });
- this.quotationhistorydialogVisible ? this.RadioHistoryChange() : "";
- this.findPage();
- }
- });
- },
- 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().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";
- },
- //订单修改
- 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)
- }
- });
- },
- //二维码生成插件
- creatQrCode(text) {
- if (this.qrcode) {
- this.qrcode.clear();
- this.qrcode.makeCode(text);
- } else {
- this.qrcode = new QRCode("qrcode", {
- text: text,
- width: this.qrcodeWidth,
- height: this.qrcodeHeight,
- colorDark: "#000000",
- colorLight: "#ffffff",
- correctLevel: QRCode.CorrectLevel.H
- });
- }
- },
- //查询缴费状态
- refreshStatus(item) {
- let inscompany = {
- 国任财险: "updateOrderInfoGuoren",
- 华泰财险: "orderStatushuatai",
- 大家财险: "updateOrderInfoDajia",
- 中煤财险: "orderStatuszhongmei",
- 太平财险: "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](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",
- 华泰财险: "updateOrderInfoHuatai",
- 大家财险: "updateOrderInfoDajia",
- 紫金财险: "getOrderDetail",
- 中煤财险: "paymentEnquiry",
- 渤海财险: "getOrderDetailboHai"
- };
- 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: item.id } : 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 == "华农财险"
- ) {
- 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.$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.cInsuredNme; //车主
- 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;
- console.log(item.apiType)
- console.log(qrCodeUrl)
- this.$api.letter.getThemeByUserId().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 == "太平财险") {
- 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.paycodeimg = 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" })
- // }
- // })
- },
- 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) {
- 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") {
- 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 "华泰财险":
- let HtApiType =
- item.apiType == 2
- ? "pythongetPolicyPrint"
- : "HuataigetPolicyPrint";
- if (this.orderInfo.jqpolicyno) {
- this.$api.letter[HtApiType]({
- [this.apiType == 2 ? "subOrderNo" : "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[HtApiType]({
- [this.apiType == 2 ? "subOrderNo" : "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 "中煤财险":
- 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 "永诚财险":
- 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 "恒邦财险":
- 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 "大家财险":
- 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
- .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;
- default:
- }
- let obj = {
- oldfileList: this.oldfileList,
- businessList,
- accidentList
- };
- this.$refs.detailsDialog.warrantyFun(obj);
- }
- 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(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(1) {}
- .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;
- }
- }
- }
- </style>
|