| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027 |
- <template>
- <a-spin :spinning="uploading" size="large" tip="正在提交资料,请勿关闭当前网页...">
- <!-- 客户信息-->
- <a-page-header
- style="background-color: #FFFFFF;margin-bottom:10px"
- title="特审复开资料填写"
- sub-title=""
- @back="back"
- >
- <div>
- <a-form-model
- ref="form"
- :model="infoModel"
- :rules="rules"
- >
- <a-row v-if="specialResult.basicInfoState == '1' || detail">
- <a-col :span="6">
- <a-form-model-item label="用户选择" prop="userOpenState" v-bind="labelCol4">
- <span>{{ infoModel.userLable == '0' ? '个人户' : '单位户' }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="申请复开号码" prop="openingNumber" v-bind="labelCol4">
- <span>{{ infoModel.openingNumber }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户名称(使用人)" prop="customerName" v-bind="labelCol4">
- <span>{{ infoModel.customerName }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户经理手机号" v-bind="labelCol4">
- <span>{{ infoModel.accountManagerPhone }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6" v-if="infoModel.userLable == '1'">
- <a-form-model-item label="单位名称" prop="unitName" v-bind="labelCol4">
- <span>{{ infoModel.unitName }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="最后一次关停时间" prop="shutdownTime" v-bind="labelCol4">
- <span>{{ infoModel.shutdownTime }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="申请复开原因" prop="reasonReopening" v-bind="labelCol4">
- <span>{{ infoModel.reasonReopening }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="24">
- <a-form-model-item label="材料标签选择" prop="userOpenState" v-bind="labelCol1">
- <a-radio-group :disabled="true" v-model="infoModel.materialLabel" button-style="solid">
- <span>{{ infoModel.userLable == '0' ? '材料不全(有特审/签报)' : '材料齐全(无特审)' }}</span>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="24">
- <a-form-model-item label="关停标签选择" prop="userOpenState" v-bind="labelCol1">
- <span v-if="infoModel.shutdownLabel.indexOf('0') > -1">安防停机(高危漫游地)</span>
- <span v-if="infoModel.shutdownLabel.indexOf('1') > -1">安防关停(紫名单)</span>
- <span v-if="infoModel.shutdownLabel.indexOf('2') > -1">安防停机(专班研判)</span>
- <span v-if="infoModel.shutdownLabel.indexOf('3') > -1">安防停机(可复开)</span>
- <span v-if="infoModel.shutdownLabel.indexOf('4') > -1">沉默移动卡保护性单停 </span>
- <span v-if="infoModel.shutdownLabel.indexOf('5') > -1">集团一点停复机(单停) </span>
- <span v-if="infoModel.shutdownLabel.indexOf('6') > -1">大数据保护停机单停 </span>
- <span v-if="infoModel.shutdownLabel.indexOf('7') > -1">工信部断卡单停 </span>
- <span v-if="infoModel.shutdownLabel.indexOf('8') > -1">实人核验未通过关停(单停)</span>
- <span v-if="infoModel.shutdownLabel.indexOf('999') > -1">其他 {{ infoModel.shutdownLabelOther }} </span>
- </a-form-model-item>
- </a-col>
- </a-row>
- <a-row v-if="(specialResult.basicInfoState == '0' || !rectification)">
- <a-col :span="6">
- <a-form-model-item label="用户选择" prop="userOpenState" v-bind="labelCol4">
- <a-radio-group v-model="infoModel.userLable" button-style="solid" @change="stepLoading">
- <a-radio-button value="0">个人户</a-radio-button>
- <a-radio-button value="1">单位户</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="申请复开号码" prop="openingNumber" v-bind="labelCol4">
- <a-input :disabled="rectificationInput" v-model="infoModel.openingNumber"
- placeholder="申请复开号码"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户名称(使用人)" prop="customerName" v-bind="labelCol4">
- <a-input :disabled="rectificationInput" v-model="infoModel.customerName"
- placeholder="客户名称/使用人名称"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6" v-if="infoModel.userLable == '1'">
- <a-form-model-item label="单位名称" prop="unitName" v-bind="labelCol4">
- <a-input v-model="infoModel.unitName" placeholder="单位名称"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户经理手机号" v-bind="labelCol4">
- <a-input :disabled="rectificationInput" v-model="infoModel.accountManagerPhone"
- placeholder="客户经理手机号"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="最后一次关停时间" prop="shutdownTime" v-bind="labelCol4">
- <a-date-picker :style="{width:'100%'}" v-model="infoModel.shutdownTime"
- format="YYYY-MM-DD"
- showTime valueFormat="YYYY-MM-DD"/>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="申请复开原因" prop="reasonReopening" v-bind="labelCol4">
- <a-input v-model="infoModel.reasonReopening" placeholder="申请复开原因"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="24" v-if="specialResult.basicInfoState != '1'">
- <a-form-model-item label="材料标签选择" prop="userOpenState" v-bind="labelCol1">
- <a-radio-group :disabled="rectificationInput" v-model="infoModel.materialLabel" button-style="solid"
- @change="stepLoading">
- <a-radio-button value="0">材料不全(有特审/签报)</a-radio-button>
- <a-radio-button value="1">材料齐全(无特审)</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="24" v-if="specialResult.basicInfoState != '1'">
- <a-form-model-item label="关停标签选择" prop="userOpenState" v-bind="labelCol1">
- <a-checkbox-group v-model="infoModel.shutdownLabel" button-style="solid" @change="stepLoading">
- <a-checkbox value="0">安防停机(高危漫游地)</a-checkbox>
- <a-checkbox value="1">安防关停(紫名单)</a-checkbox>
- <a-checkbox value="2">安防停机(专班研判)</a-checkbox>
- <a-checkbox value="3">安防停机(可复开)</a-checkbox>
- <a-checkbox value="4">沉默移动卡保护性单停</a-checkbox>
- <a-checkbox value="5">集团一点停复机(单停)</a-checkbox>
- <a-checkbox value="6">大数据保护停机单停</a-checkbox>
- <a-checkbox value="7">工信部断卡单停</a-checkbox>
- <a-checkbox value="8">实人核验未通过关停(单停)</a-checkbox>
- <a-checkbox value="999">其它(手动输入名称)</a-checkbox>
- <a-input style="width: 300px;left: 10px" v-show="infoModel.shutdownLabel.indexOf('999') > -1"
- v-model:value="infoModel.shutdownLabelOther" placeholder=请输入关停标签名称></a-input>
- </a-checkbox-group>
- </a-form-model-item>
- </a-col>
- </a-row>
- <!-- 基础信息稽核结果-->
- <div v-if="rectification">
- <a-form-model-item label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1">
- <a-tag class="font-size-14" v-if="specialResult.basicInfoState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.basicInfoState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item label="稽核结果备注" prop="basicCheckNote" v-bind="labelCol1">
- <a-tag class="font-size-14" color="orange">{{ specialResult.basicInfoNote }}</a-tag>
- </a-form-model-item>
- </div>
- </a-form-model>
- </div>
- </a-page-header>
- <!-- 步骤条-->
- <a-card style="margin-bottom:10px;width: 15%;float: left">
- <a-steps direction="vertical" :current="steps.current" size="small" @change="stepsClick">
- <a-step v-for="item in steps.stepsNow" :key="item.title" :status="item.status">
- <a-icon v-if="item.solution" style='color: #faad14;' type="solution" slot="icon"/>
- <span v-if="item.status=='wait'" slot="title">{{ item.title }}</span>
- <span v-if="item.status=='error' && !item.solution" style="color: red" slot="title">{{ item.title }}</span>
- <span v-if="item.status=='error' && item.solution" style="color: #faad14" slot="title">{{ item.title }}</span>
- <span v-if="item.status=='finish'" slot="title">{{ item.title }}</span>
- <span v-if="item.status=='process'" slot="title">{{ item.title }}</span>
- </a-step>
- </a-steps>
- <a-button v-if="!rectification" @click="stagingAuditLot" style="width: 100%" type="warn">暂存</a-button>
- <div v-if="!batchImproves">
- <a-button v-if="!detail" @click="submitAuditLot" style="width: 100%;position: relative;top: 5px"
- type="primary">
- 提交申请
- </a-button>
- <a-button v-if="!detail && rectification" @click="closeAuditLot"
- style="width: 100%;position: relative;top: 10px">
- 关闭复开
- </a-button>
- </div>
- </a-card>
- <!-- 系统实名制截图-->
- <a-card v-if="steps.currentId == 'nameFindCompliance'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">系统实名制截图</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.nameFindComplianceState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.nameFindComplianceState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果备注" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.nameFindComplianceNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="left: 0%;width: 90%;" label="实名制截图备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.nameFindComplianceState == 1">{{ infoModel.nameFindComplianceRemark }}</span>
- <a-textarea v-else style="height: 77px"
- v-model="infoModel.nameFindComplianceRemark"
- @change="textareaChange('nameFindCompliance','nameFindComplianceRemark')"
- placeholder="如没有系统实名制截图,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.nameFindCompliance" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- style="position: relative;"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button
- v-if="infoModel.nameFindCompliance.length && item.urlBase && specialResult.nameFindComplianceState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'nameFindCompliance')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.nameFindCompliance.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.nameFindCompliance"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'nameFindCompliance')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.nameFindCompliance.length < 10 && specialResult.nameFindComplianceState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传合同</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </div>
- </a-card>
- <!-- 身份证照片正反面-->
- <a-card v-if="steps.currentId == 'fileListIdCard'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">身份证照片正反面</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.idCardState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.idCardState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果备注" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.idCardNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="身份证正反面备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.idCardState == 1">{{ infoModel.fileListIdCardRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('fileListIdCard','fileListIdCardRemark')"
- v-model="infoModel.fileListIdCardRemark"
- placeholder="如没有身份证正反面照片,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.fileListIdCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.fileListIdCard.length && item.urlBase && specialResult.idCardState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'fileListIdCard')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.fileListIdCard.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.fileListIdCard"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'fileListIdCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.fileListIdCard.length < 20 && specialResult.idCardState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传身份证正反面</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- <!-- 手持半身照-->
- <a-card v-if="steps.currentId == 'handCertificate'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">手持证件半身照片</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.handCertificateState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.handCertificateState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果备注" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.handCertificateNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="手持身份证半身照片备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.handCertificateState == 1">{{ infoModel.handCertificateRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('handCertificate','handCertificateRemark')"
- v-model="infoModel.handCertificateRemark"
- placeholder="如没有手持证件半身照片,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.handCertificate" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="90%"
- height="500px"
- style="display:block"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button
- v-if="infoModel.handCertificate.length && item.urlBase && specialResult.handCertificateState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'handCertificate')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.handCertificate.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.handCertificate"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'handCertificate')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.handCertificate.length < 20 && specialResult.handCertificateState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传手持证件半身照片</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- <!-- 防诈骗承若函-->
- <a-card v-if="steps.currentId == 'fraudPrevention'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 防诈骗承诺涵(使用人签署)</span>
- </div>
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.fraudPreventionState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.fraudPreventionState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果备注" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.fraudPreventionNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="防诈骗承诺涵备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.fraudPreventionState == 1">{{ infoModel.fraudPreventionRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('fraudPrevention','fraudPreventionRemark')"
- v-model="infoModel.fraudPreventionRemark"
- placeholder="如没有防诈骗承诺涵,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.fraudPrevention" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button
- v-if="infoModel.fraudPrevention.length && item.urlBase && specialResult.fraudPreventionState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'fraudPrevention')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.fraudPrevention.length > 0 && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.fraudPrevention"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'fraudPrevention')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.fraudPrevention.length < 20 && specialResult.fraudPreventionState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传手持证件半身照片</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- <!-- 附件-->
- </a-card>
- <!-- 特审单-->
- <a-card v-if="steps.currentId == 'specialReviewForm'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 特审单</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.specialReviewFormState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.specialReviewFormState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.specialReviewFormNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="特审单备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.specialReviewFormState == 1">{{ infoModel.specialReviewFormRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('specialReviewForm','specialReviewFormRemark')"
- v-model="infoModel.specialReviewFormRemark"
- placeholder="如没有特审单,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.specialReviewForm" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button
- v-if="infoModel.specialReviewForm.length && item.urlBase && specialResult.specialReviewFormState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'specialReviewForm')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.specialReviewForm.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.specialReviewForm"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'specialReviewForm')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.specialReviewForm.length < 20 && specialResult.specialReviewFormState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传特审单</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- <!-- 单位户-使用人证件-->
- <a-card v-if="steps.currentId == 'userCertificate'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 使用人证件</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.userCertificateState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.userCertificateState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.userCertificateNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="使用人证件备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.userCertificateState == 1">{{ infoModel.userCertificateRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('userCertificate','userCertificateRemark')"
- v-model="infoModel.userCertificateRemark"
- placeholder="如没有使用人证件,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.userCertificate" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button
- v-if="infoModel.userCertificate.length && item.urlBase && specialResult.userCertificateState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'userCertificate')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.userCertificate.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.userCertificate"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'userCertificate')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.userCertificate.length < 20 && specialResult.userCertificateState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传使用人证件</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- <!-- 单位户-营业执照副本(盖公章)-->
- <a-card v-if="steps.currentId == 'businessLicense'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 营业执照副本(盖公章)</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.businessLicenseState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.businessLicenseState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.businessLicenseNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="使用人证件备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.businessLicenseState == 1">{{ infoModel.businessLicenseRemark }}</span>
- <a-textarea v-else style="height: 77px"
- v-model="infoModel.businessLicenseRemark"
- @change="textareaChange('businessLicense','businessLicenseRemark')"
- placeholder="如没有营业执照副本(盖公章),需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.businessLicense" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button
- v-if="infoModel.businessLicense.length && item.urlBase && specialResult.businessLicenseState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'businessLicense')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.businessLicense.length >0 && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.businessLicense"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'businessLicense')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.businessLicense.length < 20 && specialResult.businessLicenseState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传营业执照副本(盖公章)</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- <!-- 单位户-介绍信-->
- <a-card v-if="steps.currentId == 'letterIntroduction'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 介绍信</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.letterIntroductionState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.letterIntroductionState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.letterIntroductionNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="介绍信备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.letterIntroductionState == 1">{{ infoModel.letterIntroductionRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('letterIntroduction','letterIntroductionRemark')"
- v-model="infoModel.letterIntroductionRemark"
- placeholder="介绍信"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.letterIntroduction" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button
- v-if="infoModel.letterIntroduction.length && item.urlBase && specialResult.letterIntroductionState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'letterIntroduction')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.letterIntroduction.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.letterIntroduction"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'letterIntroduction')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.letterIntroduction.length < 20 && specialResult.letterIntroductionState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传介绍信</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- <!-- 个人户-号卡照片-->
- <a-card v-if="steps.currentId == 'numberCard'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 号卡照片</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.numberCardState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.numberCardState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.numberCardNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="号码备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.numberCardState == 1">{{ infoModel.numberCardRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('numberCard','numberCardRemark')"
- v-model="infoModel.numberCardRemark"
- placeholder="介绍信"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.numberCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.numberCard.length && item.urlBase && specialResult.numberCardState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'numberCard')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.numberCard.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.numberCard"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'numberCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.numberCard.length < 20 && specialResult.numberCardState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传号卡</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- <!-- 个人户-手持号卡照片-->
- <a-card v-if="steps.currentId == 'handNumberCard'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 手持号卡照片</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.handNumberCardState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.handNumberCardState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.handNumberCardNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="手持号卡备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.handNumberCardState == 1">{{ infoModel.handNumberCardRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('handNumberCard','handNumberCardRemark')"
- v-model="infoModel.handNumberCardRemark"
- placeholder="介绍信"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.handNumberCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.handNumberCard.length && item.urlBase && specialResult.handNumberCardState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'handNumberCard')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.handNumberCard.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.handNumberCard"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'handNumberCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.handNumberCard.length < 20 && specialResult.handNumberCardState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传手持号卡</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- <!-- 消费凭证-->
- <a-card v-if="steps.currentId == 'consumptionVoucher'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 消费凭证</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.consumptionVoucherState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.consumptionVoucherState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.consumptionVoucherNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="消费凭证备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.consumptionVoucherState == 1">{{ infoModel.consumptionVoucherRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('consumptionVoucher','consumptionVoucherRemark')"
- v-model="infoModel.consumptionVoucherRemark"
- placeholder="介绍信"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.consumptionVoucher" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button
- v-if="infoModel.consumptionVoucher.length && item.urlBase && specialResult.consumptionVoucherState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'consumptionVoucher')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.consumptionVoucher.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.consumptionVoucher"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'consumptionVoucher')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.consumptionVoucher.length < 20 && specialResult.consumptionVoucherState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传消费凭证</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- <!-- 承诺视频-->
- <a-card v-if="steps.currentId == 'commitmentVideo'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 承诺视频</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.commitmentVideoState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.commitmentVideoState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.commitmentVideoNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="承诺视频备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.commitmentVideoState == 1">{{ infoModel.commitmentVideoRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('commitmentVideo','commitmentVideoRemark')"
- v-model="infoModel.commitmentVideoRemark"
- placeholder="介绍信"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example" style="position: relative">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.commitmentVideo" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button
- v-if="infoModel.commitmentVideo.length && item.urlBase && specialResult.commitmentVideoState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'commitmentVideo')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.commitmentVideo.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.commitmentVideo"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'commitmentVideo')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.commitmentVideo.length < 20">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传承诺视频</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- <!-- 其它资料-->
- <a-card v-if="steps.currentId == 'notes'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 其它资料(非必传)</span>
- </div>
- <!-- 附件-->
- <div>
- <div v-if="rectification">
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核是否通过" prop="basicCheckState" v-bind="labelCol1Note">
- <a-tag class="font-size-14" v-if="specialResult.notesState == 0" color="#f50">未通过</a-tag>
- <a-tag class="font-size-14" v-if="specialResult.notesState == 1" color="#2db7f5">通过</a-tag>
- </a-form-model-item>
- <a-form-model-item style="left: 0%;width: 90%;" label="稽核结果" prop="basicCheckNote" v-bind="labelCol1Note">
- <a-tag class="font-size-14" color="orange">{{ specialResult.notesNote }}</a-tag>
- </a-form-model-item>
- </div>
- <a-form-model-item style="width: 90%;" label="其他资料备注:" v-bind="labelCol1Note">
- <span v-if="specialResult.notesNote == 1">{{ infoModel.notesRemark }}</span>
- <a-textarea v-else style="height: 77px"
- @change="textareaChange('notes','notesRemark')"
- v-model="infoModel.notesRemark"
- placeholder="其它资料"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <!-- 文件上传-->
- <div class="file-div-minio-upload">
- <div class="thumb-example">
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.notes" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="100%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 100%;height: 500px;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button
- v-if="infoModel.notes.length && item.urlBase && specialResult.notesState != 1"
- style="display: block;margin-top: 10px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'notes')">移除
- </a-button>
- <a-button
- style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if="infoModel.notes.length && item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- </swiper-slide>
- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.notes"
- :key="item.id"
- >
- <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
- <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
- </div>
- <img style="width: 100%;height: 96px"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- </swiper-slide>
- <!-- 点我上传文件按钮-->
- <div class="clearfix">
- <a-upload
- listType="picture-card"
- name="file"
- :multiple="false"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'notes')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.notes.length < 20 && specialResult.notesState != 1 && !detail">
- <a-icon type="plus"/>
- <div class="ant-upload-text">点我上传其它资料</div>
- </div>
- </a-upload>
- </div>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
- </div>
- </div>
- </swiper>
- </div>
- </div>
- </a-card>
- </a-spin>
- </template>
- <script>
- import {getAction, httpAction, postAction} from "@api/manage";
- import { Modal } from 'ant-design-vue';
- /*无数据图片*/
- import noDataPng from '@/assets/nodata.png'
- import Vue from "vue";
- import {ACCESS_TOKEN, TENANT_ID} from "@/store/mutation-types";
- let Base64 = require('js-base64').Base64
- export default {
- name: 'TaskUploadData',
- inject: ['closeCurrent'],
- components: {
- noDataPng,
- Modal
- },
- data() {
- return {
- //缩略与大图数据源
- swiperId: 1,
- //轮播配置
- swiperOptionTop: {
- zoom: true,
- loop: false,
- loopedSlides: 5, // looped slides should be the same
- spaceBetween: 10,
- observer: true, //修改swiper自己或子元素时,自动初始化swiper
- observeParents: true, //修改swiper的父元素时,自动初始化swiper
- // autoplay: { //自动轮播
- // delay: 2000,
- // disableOnInteraction: false
- // },
- navigation: {
- nextEl: '.swiper-button-next',
- prevEl: '.swiper-button-prev'
- }
- },
- swiperOptionThumbs: {
- loop: false,
- loopedSlides: 5, // looped slides should be the same
- spaceBetween: 10,
- centeredSlides: true,
- slidesPerView: 'auto',
- touchRatio: 0.2,
- slideToClickedSlide: true,
- navigation: {
- nextEl: '.swiper-button-next',
- prevEl: '.swiper-button-prev'
- }
- },
- /**无数据图片*/
- noDataPng: noDataPng,
- url: {
- // 获取客户信息
- "getInfoDataById": "/smsCheck/customerInfo/queryById",
- // 上传文件
- "minioUpload": "/smsCheck/customerData/uploadMinio",
- // 暂存
- "staging": "/special/examination/staging",
- // 批量暂存
- "stagingList": "/special/examination/staging/list",
- // 特审复开资料查询
- "getSpecialByinfoId": "/special/examination/find/user/id",
- // 提交
- "editInfo": "/special/examination/edit/info",
- // 批量提交
- "batchEditInfo": "/special/examination/batch/edit/info",
- // 获取稽核结果
- "findCheckState": "/special/examination/find/check/log",
- // 关闭复开
- "closeId": "/special/examination/close",
- },
- //是否批量上传
- batchImproves: false,
- // 是否整改
- rectification: false,
- // 基础信息输入框是否禁用
- rectificationInput: true,
- // 详情
- detail: false,
- specialResult: {
- //基础信息
- basicInfoState: null,
- basicInfoNote: "",
- //系统实名截图
- nameFindComplianceState: null,
- nameFindComplianceNote: "",
- //特审单
- specialReviewFormState: null,
- specialReviewFormNote: "",
- //身份证照片/正反面
- idCardState: null,
- idCardNote: "",
- //手持证件半身照片
- handCertificateState: null,
- handCertificateNote: "",
- //号卡照片
- numberCardState: null,
- numberCardNote: "",
- //手持号卡照片
- handNumberCardState: null,
- handNumberCardNote: "",
- //使用人证件
- userCertificateState: null,
- userCertificateNote: "",
- //营业执照
- businessLicenseState: null,
- businessLicenseNote: "",
- //介绍信
- letterIntroductionState: null,
- letterIntroductionNote: "",
- //防诈骗承诺函
- fraudPreventionState: null,
- fraudPreventionNote: "",
- //消费凭证
- consumptionVoucherState: null,
- consumptionVoucherNote: "",
- //承诺视频
- commitmentVideoState: null,
- commitmentVideoNote: "",
- // 其它资料
- notesState: null,
- notesNote: ""
- },
- // 全局是否是在加载中
- uploading: false,
- //上级传参
- query: {
- data: {},
- infoId: "",
- },
- // 客户资料信息
- infoModel: {
- // 单位名称
- unitName: "",
- // 材料补不全有特审
- materialLabel: "0",
- // 用户类型
- userLable: "0",
- // 申请复开号码
- openingNumber: "",
- // 申请复开原因
- reasonReopening: "",
- // 客户名称
- customerName: "",
- // 客户经理手机号
- accountManagerPhone: "",
- // 最后一次关停时间
- shutdownTime: "",
- // 关停标签
- shutdownLabel: ['0'],
- // 关停标签-其他
- shutdownLabelOther: "",
- // 系统实名制截图
- nameFindCompliance: [{}],
- // 实名制截图原因
- nameFindComplianceRemark: "",
- // 身份证正反面
- fileListIdCard: [{}],
- fileListIdCardRemark: "",
- // 手持证件半身照片
- handCertificate: [{}],
- handCertificateRemark: "",
- // 防诈骗承若函
- fraudPrevention: [{}],
- fraudPreventionRemark: "",
- // 有无特审单
- specialReviewForm: [{}],
- specialReviewFormRemark: "",
- // 单位户-使用人证件
- userCertificate: [{}],
- userCertificateRemark: "",
- // 单位户-营业执照副本
- businessLicense: [{}],
- businessLicenseRemark: "",
- // 单位户-介绍信
- letterIntroduction: [{}],
- letterIntroductionRemark: "",
- // 个人户-号卡照片
- numberCard: [{}],
- numberCardRemark: "",
- // 个人户-手持号卡照片
- handNumberCard: [{}],
- handNumberCardRemark: "",
- // 消费凭证
- consumptionVoucher: [{}],
- consumptionVoucherRemark: "",
- // 承诺视频
- commitmentVideo: [{}],
- commitmentVideoRemark: "",
- // 其它资料
- notes: [{}],
- notesRemark: "",
- },
- //表单验证
- rules: {
- shutdownTime: [
- {required: true, message: '请选择关停时间'},
- ],
- reasonReopening: [
- {required: true, message: '请输入申请复开原因'},
- ]
- },
- labelCol4: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 8},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 14},
- }
- },
- labelCol1: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 2},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 22},
- }
- },
- labelCol1Note: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 4},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 20},
- }
- },
- // 步骤条相关
- steps: {
- // 当前所在第几部
- current: 0,
- currentId: "",
- stepsNow: {},
- // 默认
- steps00: [
- {
- title: '系统实名制截图',
- content: 'First-content',
- id: "nameFindCompliance",
- status: "wait"
- },
- {
- title: '身份证照片/正反面',
- content: 'First-content',
- id: "fileListIdCard",
- status: "wait"
- },
- {
- title: '手持证件半身照片',
- content: 'First-content',
- id: "handCertificate",
- status: "wait"
- },
- {
- title: ' 防诈骗承诺涵(使用人签署)',
- content: 'First-content',
- id: "fraudPrevention",
- status: "wait"
- }
- ],
- // 有特审
- stepsMaterial: [
- {
- title: '特审单',
- content: 'First-content',
- id: "specialReviewForm",
- status: "wait"
- }
- ],
- // 单位户
- stepUserLable1: [
- {
- title: '使用人证件',
- content: 'First-content',
- id: "userCertificate",
- status: "wait"
- },
- {
- title: '营业执照副本(盖公章)',
- content: 'First-content',
- id: "businessLicense",
- status: "wait"
- },
- {
- title: '介绍信',
- content: 'First-content',
- id: "letterIntroduction",
- status: "wait"
- }
- ],
- // 个人户
- stepUserLable0: [
- {
- title: '号卡照片',
- content: 'First-content',
- id: "numberCard",
- status: "wait"
- },
- {
- title: '手持号卡照片',
- content: 'First-content',
- id: "handNumberCard",
- status: "wait"
- },
- ],
- // 材料标签
- shutdownLabel0: [
- {
- title: '消费凭证',
- content: 'First-content',
- id: "consumptionVoucher",
- status: "wait"
- },
- ],
- // 承诺视频
- shutdownLabel5: [
- {
- title: '承诺视频',
- content: 'First-content',
- id: "commitmentVideo",
- status: "wait"
- },
- ],
- },
- }
- },
- computed: {
- importMinioUploadAction() {
- return window._CONFIG['domianURL'] + this.url.minioUpload;
- },
- tokenHeader() {
- let head = {'X-Access-Token': Vue.ls.get(ACCESS_TOKEN)}
- let tenantid = Vue.ls.get(TENANT_ID)
- if (tenantid) {
- head['tenant-id'] = tenantid
- }
- return head;
- }
- },
- props: {},
- watch: {},
- updated() {
- // 实现swiper双向控制
- this.$nextTick(() => {
- const swiperTop = this.$refs.swiperTop.swiper
- const swiperThumbs = this.$refs.swiperThumbs.swiper
- swiperTop.controller.control = swiperThumbs
- swiperThumbs.controller.control = swiperTop
- })
- },
- created() {
- // 是否批量上传
- this.batchImproves = this.$route.query.batchImproves;
- // 步骤条默认公用
- this.steps.stepsNow = this.steps.steps00;
- this.steps.currentId = this.steps.stepsNow[0].id
- // 整改
- this.rectification = this.$route.query.rectification;
- if (this.rectification) {
- // 整改时input解除禁用
- this.rectificationInput = false;
- }
- // 详情
- this.detail = this.$route.query.detail;
- // 批量
- if (this.batchImproves) {
- //批量上传id
- this.ids = this.$route.query.ids;
- } else {
- //客户ID
- this.query.infoId = this.$route.query.id;
- // 获取客户基础信息
- this.getInfoDataById(this.query.infoId)
- }
- },
- methods: {
- /**整改->获取稽核结果*/
- findCheckState(id) {
- let that = this;
- let model = {
- "dataId": id,
- }
- postAction(this.url.findCheckState, model)
- .then((res) => {
- if (res.success) {
- if (res.result == null) {
- return;
- }
- that.specialResult = res.result;
- // 整改->处理步骤条状态
- if (that.rectification) {
- for (var i in that.steps.stepsNow) {
- let id = that.steps.stepsNow[i].id;
- if (id == 'fileListIdCard') {
- id = "idCard"
- }
- let specialResultElement = that.specialResult[id + "State"];
- if (specialResultElement == 0) {
- that.steps.stepsNow[i].status = 'error'
- } else if (specialResultElement == 1) {
- that.steps.stepsNow[i].status = 'finish'
- }
- }
- }
- }
- })
- },
- /**备注监听*/
- textareaChange(name, nameRemark) {
- if (!this.rectification) {
- if (this.infoModel[nameRemark].length > 0) {
- this.steps.stepsNow[this.steps.current].status = "finish"
- } else if (this.infoModel[name].length > 0 && this.infoModel[name][0].urlBase) {
- this.steps.stepsNow[this.steps.current].status = "finish"
- } else {
- this.steps.stepsNow[this.steps.current].status = "wait"
- }
- } else {
- this.steps.stepsNow[this.steps.current].solution = true;
- }
- },
- // 步骤条动态变化
- stepLoading() {
- this.steps.stepsNow = this.steps.stepsNow.splice(0, 4)
- //材料不全有特审步骤条
- this.stepsMaterialLabel()
- /**用户标签点击事件*/
- this.userLableClick()
- /**材料标签点击事件*/
- this.shutdownLabelClick()
- this.steps.stepsNow.push(
- {
- title: ' 其它资料(非必传)',
- content: 'First-content',
- id: "notes",
- status: "wait"
- })
- },
- //材料不全有特审步骤条
- stepsMaterialLabel() {
- if (this.infoModel.materialLabel == "0") {
- let stepsMaterial = this.steps.stepsMaterial;
- for (var i in stepsMaterial) {
- this.steps.stepsNow.push(stepsMaterial[i])
- }
- }
- },
- /**用户标签点击事件*/
- userLableClick() {
- var that = this;
- //材料不全有特审步骤条
- //that.stepsMaterialLabel();
- let userLable = that.infoModel.userLable;
- switch (userLable) {
- case "0":
- //个人户
- let stepUserLable0 = this.steps.stepUserLable0;
- for (var i in stepUserLable0) {
- this.steps.stepsNow.push(stepUserLable0[i])
- }
- break
- case "1":
- //单位户
- let stepUserLable1 = this.steps.stepUserLable1;
- for (var j in stepUserLable1) {
- this.steps.stepsNow.push(stepUserLable1[j])
- }
- break
- }
- },
- /**材料标签点击事件*/
- shutdownLabelClick() {
- var that = this;
- //材料不全有特审步骤条
- //that.stepsMaterialLabel();
- let shutdownLabel = that.infoModel.shutdownLabel;
- // 其它包含所有
- if (shutdownLabel.indexOf("0") > -1) {
- let shutdownLabel0 = this.steps.shutdownLabel0;
- for (var i in shutdownLabel0) {
- this.steps.stepsNow.push(shutdownLabel0[i])
- }
- }
- },
- /**移除文件*/
- removeFile(fileData, fileAttribute) {
- let that = this.infoModel;
- //处理轮播数据
- let swiperImg = that[fileAttribute];
- if (swiperImg) {
- let number = swiperImg.indexOf(fileData);
- swiperImg.splice(number, 1)
- if (swiperImg.length == 0) {
- swiperImg.push({})
- that[fileAttribute] = swiperImg
- let textId = fileAttribute + "Remark";
- if (!this.rectification) {
- if (this.infoModel[textId].trim() > 0) {
- this.steps.stepsNow[this.steps.current].status = "finish"
- } else {
- this.steps.stepsNow[this.steps.current].status = "wait"
- }
- }
- } else {
- if (!this.rectification) {
- this.steps.stepsNow[this.steps.current].status = "finish"
- }
- }
- }
- },
- /**自定义的上传文件方法*/
- selfUploadContract(data, fileAttribute) {
- var that = this;
- if (data.file) {
- let formData = new FormData();
- formData.append('file', data.file)
- postAction(this.url.minioUpload, formData).then((res) => {
- if (res.success) {
- that.swiperId = that.swiperId + 1;
- //文件链接
- let filePath = res.message;
- let swipData = {
- id: that.swiperId,
- urlBase: window._CONFIG['onlinePreviewDomainURL'] + '?url='
- + encodeURIComponent(
- Base64.encode(
- (filePath)
- )),
- url: filePath,
- fileName: data.file.name
- }
- if (that.infoModel[fileAttribute][0].urlBase) {
- that.infoModel[fileAttribute].push(swipData)
- } else {
- that.infoModel[fileAttribute] = []
- //数据发生变化
- that.infoModel[fileAttribute][0] = swipData;
- }
- if (!that.rectification) {
- // 改变步骤条状态
- if (that.infoModel[fileAttribute].length > 0) {
- that.steps.stepsNow[that.steps.current].status = "finish"
- } else {
- that.steps.stepsNow[that.steps.current].status = "wait"
- }
- } else {
- that.steps.stepsNow[that.steps.current].solution = true
- }
- }
- })
- }
- },
- /**文件格式限制*/
- importBeforeUpload(file) {
- var fileType = file.type;
- if (fileType === 'image') {
- if (fileType.indexOf('image') < 0) {
- this.$message.warning('请上传图片');
- return false;
- }
- } else if (fileType === 'file') {
- if (fileType.indexOf('image') >= 0) {
- this.$message.warning('请上传文件');
- return false;
- }
- }
- return true
- },
- /**文件上传成功后回调*/
- importHandleChange(info) {
- },
- /**暂存事件*/
- stagingAuditLot() {
- let that = this;
- let url = that.url.staging
- let data = that.getDataNow();
- // 是否为批量上传
- if (that.batchImproves) {
- url = that.url.stagingList
- }
- postAction(url, data).then((res) => {
- if (res.code == 200) {
- this.$router.go(-1);
- //关闭当前页
- this.closeCurrent();
- } else {
- that.$message.warning(res.message);
- }
- })
- },
- getDataNow() {
- let that = this
- let infoModel = that.infoModel
- var data = {
- "infoIds": that.ids,
- "infoId": that.query.infoId,
- // 申请复开号码
- "openingNumber": infoModel.openingNumber,
- // 客户名称/使用人名称
- "customerName": infoModel.customerName,
- // 客户经理手机号
- "accountManagerPhone": infoModel.accountManagerPhone,
- // 用户标签
- "userLable": infoModel.userLable,
- // 关停标签
- "shutdownLabel": infoModel.shutdownLabel.join(),
- // 关停标签其他-名称
- "shutdownLabelOther": infoModel.shutdownLabelOther,
- // 最后一次关停时间
- "shutdownTime": infoModel.shutdownTime,
- // 申请复开原因
- "reasonReopening": infoModel.reasonReopening,
- // 材料标签选择
- "materialLabel": infoModel.materialLabel,
- // 单位名称
- "unitName": infoModel.unitName,
- // 身份证正反面
- idCard: this.urlBaseJoin(infoModel.fileListIdCard, "url"),
- idCardRemark: infoModel.fileListIdCardRemark,
- // 手持证件半身照片
- handCertificate: this.urlBaseJoin(infoModel.handCertificate, "url"),
- handCertificateRemark: infoModel.handCertificateRemark,
- // 号卡照片
- numberCard: this.urlBaseJoin(infoModel.numberCard, "url"),
- numberCardRemark: infoModel.numberCardRemark,
- // 手持号卡照片
- handNumberCard: this.urlBaseJoin(infoModel.handNumberCard, "url"),
- handNumberCardRemark: infoModel.handNumberCardRemark,
- // 防诈骗承诺函
- fraudPrevention: this.urlBaseJoin(infoModel.fraudPrevention, "url"),
- fraudPreventionRemark: infoModel.fraudPreventionRemark,
- // 营业执照副本
- businessLicense: this.urlBaseJoin(infoModel.businessLicense, "url"),
- businessLicenseRemark: infoModel.businessLicenseRemark,
- // 介绍信
- letterIntroduction: this.urlBaseJoin(infoModel.letterIntroduction, "url"),
- letterIntroductionRemark: infoModel.letterIntroductionRemark,
- // 使用人证件
- userCertificate: this.urlBaseJoin(infoModel.userCertificate, "url"),
- userCertificateRemark: infoModel.userCertificateRemark,
- // 消费凭证
- consumptionVoucher: this.urlBaseJoin(infoModel.consumptionVoucher, "url"),
- // 消费凭证备注
- consumptionVoucherRemark: infoModel.consumptionVoucherRemark,
- // 承诺视频
- commitmentVideo: this.urlBaseJoin(infoModel.commitmentVideo, "url"),
- // 承诺视频备注
- commitmentVideoRemark: infoModel.commitmentVideoRemark,
- // 系统实名制截图
- nameFindCompliance: this.urlBaseJoin(infoModel.nameFindCompliance, "url"),
- // 系统实名制截图备注
- nameFindComplianceRemark: infoModel.nameFindComplianceRemark,
- // 特审单
- specialReviewForm: this.urlBaseJoin(infoModel.specialReviewForm, "url"),
- // 特审单备注
- specialReviewFormRemark: infoModel.specialReviewFormRemark,
- // 其它资料
- notes: this.urlBaseJoin(infoModel.notes, "url"),
- // 其它资料备注
- notesRemark: infoModel.notesRemark,
- }
- return data;
- },
- /**提交申请事件*/
- submitAuditLot() {
- // 表单效验证结果
- let fromValid = false;
- // 是否为单位户
- if (this.infoModel.userLable == '1') {
- this.rules["unitName"] = [{required: true, message: '请输入单位名称 '}]
- } else {
- this.rules["unitName"] = [{required: false, message: '请输入单位名称 '}]
- }
- // 触发表单验证
- this.$refs.form.validate(valid => {
- // 验证是否通过
- fromValid = valid;
- })
- // 表单效验是否通过
- if (!fromValid) {
- this.$warning({
- title: '提示',
- content: '请完成全部特审资料填写',
- })
- return;
- }
- // 关停标签
- if (this.infoModel.shutdownLabel.length == 0) {
- this.$warning({
- title: '提示',
- content: '至少选择一个关停标签',
- })
- return;
- }
- // 材料不全,必须上传特深单
- if (this.infoModel.materialLabel == '0') {
- if (!this.labelValidation(['specialReviewForm'])) {
- this.$warning({
- title: '提示',
- content: '材料不全,请上传特审单',
- })
- return;
- }
- }
- // 无特审,所有材料必须上传
- // 公用效验参数
- var labels = ["nameFindCompliance", "fileListIdCard", "handCertificate", "fraudPrevention"]
- // 单位户或个人
- if (this.infoModel.userLable == '0') {
- // 个人->号卡照片
- labels.push('numberCard', 'handNumberCard')
- } else {
- // 单位户 -> 使用人证件,营业执照副本,介绍信
- labels.push('userCertificate')
- labels.push('businessLicense')
- labels.push('letterIntroduction')
- }
- // 关停标签 -> 安防停机(高危漫游地)
- if (this.infoModel.shutdownLabel.indexOf('0') > -1) {
- labels.push('consumptionVoucher')
- }
- if (!this.labelValidation(labels)) {
- this.$warning({
- title: '提示',
- content: '请上传全部文件材料!',
- })
- return;
- }
- let data = this.getDataNow();
- let url = this.url.editInfo;
- // 是否批量提交
- if (this.batchImproves) {
- url = this.url.batchEditInfo;
- }
- this.uploading = true;
- httpAction(url, data, "POST")
- .then((res) => {
- if (res.success) {
- this.uploading = false;
- this.$message.success("提交成功");
- this.$router.go(-1);
- this.closeCurrent();
- } else {
- this.uploading = false;
- this.$error({
- title: '提示',
- content: res.message,
- })
- }
- }).finally(() => {
- this.uploading = false;
- })
- },
- /**关闭复开申请*/
- closeAuditLot() {
- let that = this;
- Modal.confirm({
- title: '确认关闭该复开信息吗?',
- content: '关闭后无法恢复!',
- okText: '确认',
- okType: 'danger',
- cancelText: '取消',
- onOk() {
- that.closeOk()
- },
- onCancel() {
- },
- });
- },
- /**关闭确认*/
- closeOk() {
- let that = this;
- let data = {
- "id": that.query.infoId,
- }
- let url = that.url.closeId;
- httpAction(url, data, "POST")
- .then((res) => {
- if (res.success) {
- this.$message.success("关闭成功");
- this.$router.go(-1);
- this.closeCurrent();
- }else {
- this.$error({
- title: '提示',
- content: res.message,
- })
- }
- })
- },
- /**标签效验*/
- labelValidation(lableName) {
- let boolean = true;
- let infoModel = this.infoModel;
- for (var i in lableName) {
- let value = lableName[i];
- let valueRemark = value + "Remark";
- // 去除两端空格
- if (infoModel[valueRemark] != null) {
- infoModel[valueRemark] = infoModel[valueRemark].trim();
- }
- if ((infoModel[value].length == 0 || !infoModel[value][0].urlBase)
- && (infoModel[valueRemark] == null || infoModel[valueRemark].length == 0)) {
- boolean = false
- break;
- }
- }
- return boolean;
- }
- ,
- /**步骤条点击事件*/
- stepsClick(current) {
- if (!this.rectification) {
- this.steps.current = current;
- this.steps.currentId = this.steps.stepsNow[current].id
- for (var i in this.steps.stepsNow) {
- if (this.steps.stepsNow[i].status != "finish") {
- this.steps.stepsNow[i].status = "wait"
- }
- }
- if (this.steps.stepsNow[current].status != "finish") {
- this.steps.stepsNow[current].status = "process"
- }
- } else {
- this.steps.current = current;
- this.steps.currentId = this.steps.stepsNow[current].id
- }
- }
- ,
- /**返回上一级*/
- back() {
- this.$router.go(-1);
- //关闭当前页
- this.closeCurrent();
- }
- ,
- /**获取客户信息*/
- getInfoDataById(id) {
- var that = this;
- if (id) {
- var data = {
- "id": id,
- }
- getAction(this.url.getInfoDataById, data).then((res) => {
- if (res.success) {
- let result = res.result;
- // 复开号码
- that.infoModel.openingNumber = result.smsNumber
- // 机主姓名
- that.infoModel.customerName = result.customerName
- // 有无特殊审单
- that.infoModel.materialLabel = result.materialLabel == "无" ? "1" : "0"
- // 客户经理手机号
- that.infoModel.accountManagerPhone = result.accountManagerPhone;
- // 特审步骤条
- that.stepLoading();
- // 获取客户文件信息
- that.getInfoSpecialData(this.query.infoId);
- }
- })
- }
- }
- ,
- /**获取特审复开数据*/
- getInfoSpecialData(infoId) {
- let that = this;
- let infoModel = that.infoModel;
- postAction(that.url.getSpecialByinfoId, {infoId}).then((res) => {
- if (res.result != null) {
- let result = res.result;
- // 单位名称
- infoModel.unitName = result.unitName;
- // 身份证正反面
- infoModel.fileListIdCard = that.packageArr(result.idCard);
- infoModel.fileListIdCardRemark = result.idCardRemark;
- // 系统实名制截图
- infoModel.nameFindCompliance = that.packageArr(result.nameFindCompliance)
- infoModel.nameFindComplianceRemark = result.nameFindComplianceRemark;
- // 手持证件半身照片
- infoModel.handCertificate = that.packageArr(result.handCertificate)
- infoModel.handCertificateRemark = result.handCertificateRemark
- // 防诈骗承若函
- infoModel.fraudPrevention = that.packageArr(result.fraudPrevention)
- infoModel.fraudPreventionRemark = result.fraudPreventionRemark
- // 有无特审单
- infoModel.specialReviewForm = that.packageArr(result.specialReviewForm)
- infoModel.specialReviewFormRemark = result.specialReviewFormRemark
- // 使用人证件
- infoModel.userCertificate = that.packageArr(result.userCertificate)
- infoModel.userCertificateRemark = result.userCertificateRemark
- // 单位户-营业执照副本
- infoModel.businessLicense = that.packageArr(result.businessLicense)
- infoModel.businessLicenseRemark = result.businessLicenseRemark
- // 单位户-介绍信
- infoModel.letterIntroduction = that.packageArr(result.letterIntroduction)
- infoModel.letterIntroductionRemark = result.letterIntroductionRemark
- // 个人户-号卡照片
- infoModel.numberCard = that.packageArr(result.numberCard)
- infoModel.numberCardRemark = result.numberCardRemark
- // 个人户-手持号卡照片
- infoModel.handNumberCard = that.packageArr(result.handNumberCard)
- infoModel.handNumberCardRemark = result.handNumberCardRemark
- // 消费凭证
- infoModel.consumptionVoucher = that.packageArr(result.consumptionVoucher)
- infoModel.consumptionVoucherRemark = result.consumptionVoucherRemark
- // 承诺视频
- infoModel.commitmentVideo = that.packageArr(result.commitmentVideo)
- infoModel.commitmentVideoRemark = result.commitmentVideoRemark
- // 其它资料
- infoModel.notes = that.packageArr(result.notes)
- infoModel.notesRemark = result.notesRemark
- // 用户标签
- if (result.userLable) {
- infoModel.userLable = result.userLable.toString()
- }
- // 关停标签
- if (result.shutdownLabel) {
- infoModel.shutdownLabel = result.shutdownLabel.split(",")
- }
- // 关停标签其他-名称
- infoModel.shutdownLabelOther = result.shutdownLabelOther
- // 最后一次关停时间
- infoModel.shutdownTime = result.shutdownTime
- // 申请复开原因
- infoModel.reasonReopening = result.reasonReopening
- that.infoModel = infoModel
- // 步骤条
- that.stepLoading();
- that.findCheckState(result.id)
- }
- })
- }
- ,
- // 照片格式转换
- urlBaseJoin(dataArray, name) {
- let newDataArr = [];
- for (var i in dataArray) {
- let dataArrayElementElement = dataArray[i][name];
- newDataArr.push(dataArrayElementElement);
- }
- return newDataArr.toString();
- }
- ,
- /**包装轮播数据*/
- packageArr(data) {
- let id = 0;
- let newArr = []
- if (data == null || data.length == 0) {
- newArr.push({})
- return newArr;
- }
- let splice = data.split(",");
- for (var i in splice) {
- id = id + 1;
- let filePath = splice[i];
- if (filePath == "") {
- break;
- }
- let fileName = filePath.split("/");
- fileName = fileName[fileName.length - 1];
- let swipData = {
- id: id,
- urlBase: window._CONFIG['onlinePreviewDomainURL'] + '?url='
- + encodeURIComponent(
- Base64.encode(
- (filePath)
- )),
- url: filePath,
- fileName: fileName
- }
- newArr.push(swipData);
- }
- return newArr;
- }
- ,
- // 点击方法 url为传入的第三方链接或网址 如'www.baidu.com' url前面不要加协议哦!
- jumpUrl(url) {
- var a = document.createElement("a");
- a.setAttribute("href", url);
- a.setAttribute("target", "_blank");
- a.click();
- },
- }
- }
- </script>
- <style lang="less">
- .ant-input[disabled] {
- color: #1e80ff;
- background-color: #f5f5f5;
- cursor: not-allowed;
- opacity: 1;
- }
- .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
- color: #fff;
- background-color: #1e80ff;
- border-color: #d9d9d9;
- box-shadow: none;
- }
- </style>
- <style lang="less">
- .thumb-example {
- width: 80%;
- margin-top: 20px;
- // background: #000;
- }
- .swiper-slide {
- background-size: cover;
- background-position: center;
- }
- .gallery-top {
- // height: 80% !important;
- /*height: 600px;*/
- width: 100%;
- margin-bottom: 30px
- }
- .gallery-thumbs {
- height: 20% !important;
- box-sizing: border-box;
- padding: 10px 0px;
- /* width: 864px;*/
- margin-left: 2px;
- .swiper-button-next {
- right: 0px;
- }
- .swiper-button-prev {
- left: 0px;
- }
- .swiper-button-next,
- .swiper-button-prev {
- background: #fff;
- width: 45px;
- text-align: center;
- height: 101px;
- top: 26%;
- div {
- margin-top: 30px;
- background: rgb(207, 205, 205);
- height: 45px;
- border-radius: 50%;
- img {
- margin: 7px 0 0 2px;
- width: 30px;
- }
- }
- }
- .swiper-button-next:hover div {
- background: rgb(189, 186, 186);
- }
- .swiper-button-prev:hover div {
- background: rgb(189, 186, 186);
- }
- }
- .gallery-thumbs .swiper-slide {
- width: 20%;
- height: 80px;
- // opacity: 0.4;
- }
- .gallery-thumbs .swiper-slide-active {
- border: 2px solid red;
- }
- .markdown ul > li {
- color: #000000d9;
- font-size: 15px;
- line-height: 3;
- margin-left: 20px;
- padding-left: 4px;
- list-style-type: circle;
- }
- .file-div-minio-upload {
- height: 100%;
- position: relative;
- left: 10%
- }
- .font-size-14 {
- font-size: 14px
- }
- .ant-form-item-children>span{
- white-space: normal;
- overflow-wrap: break-word;
- }
- </style>
|