| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581 |
- <template>
- <div>
- <a-spin :spinning="uploading" size="large" tip="正在提交资料,请勿关闭当前网页...">
- <a-page-header
- style="background-color: #FFFFFF;margin-bottom:10px"
- title="上传资料"
- :sub-title="notes"
- @back="goBack"
- >
- <a-form-model
- ref="form"
- :model="infoModel"
- :rules="rules"
- >
- <a-card style="margin-bottom:10px;color: #000000d9;font-size: 15px;line-height: 2.5;">
- <div>
- <span>1.请选择客户类型</span>
- </div>
- <a-radio-group style="position: relative;left: 30px"
- @change="controlChange" prop='customType' v-model:value="infoModel.customType">
- <a-radio :value="0">一类客户(党政军、大型企事业单位)</a-radio>
- <a-radio :value="1">二类客户(其余用户)</a-radio>
- </a-radio-group>
- <a-tooltip placement="topLeft" >
- <template slot="title">
- <span>1、不管是一类还是二类客户,场景为经营性呼叫中心和经营性会议电话的,还需提供短号码证书或者400接入合同,注意事项:必须使用400(95/96,12等)服务号码开通外呼功能,不可以使用八位用户服务号码进行外呼,须签署本地中继线和短号码接入合同后,在单独签署外显合同,短号码不可授权使用。
- </span>
- </template>
- <template slot="title">
- <span> 2、不管是一类还是二类客户,场景为自用型呼叫中心的,还需提供短号码证书或者400接入合同,注意事项:如果有短号码外呼,需要提供短号码证书或者400接入合同,同时须签署本地中继线和短号码接入合同后,在单独签署外显合同,短号码不可授权使用。</span>
- </template>
- <a-icon type="question-circle" style='margin-left: 30px;color: red' />
- </a-tooltip>
- <div>
- <span style="display: block">2.请选择使用场景</span>
- <a-radio-group style="position: relative;left: 30px;"
- @change="controlChange" v-model:value="infoModel.scene" prop='scene'>
- <a-radio :value="'0'">办公自用</a-radio>
- <a-radio :value="'1'">自用型呼叫中心</a-radio>
- <a-radio :value="'2'">经营型呼叫中心</a-radio>
- <a-radio :value="'3'">经营型会议电话</a-radio>
- </a-radio-group>
- </div>
- <div>
- <span style="display: block">3.是否突破价格管控</span>
- <a-radio-group style="position: relative;left: 30px;"
- @change="controlChange" v-model:value="infoModel.control" prop='scene'>
- <a-radio :value="'0'">否</a-radio>
- <a-radio :value="'1'">是</a-radio>
- </a-radio-group>
- </div>
- </a-card>
- <a-card style="margin-bottom:10px;color: #000000d9;font-size: 15px;line-height: 2.5;">
- <a-row>
- <a-col :span="6">
- <a-form-model-item label="客户编号"prop="customerNo" v-bind="labelCol4" >
- <a-input class="cornflowerblue" v-model="infoModel.customerNo" placeholder="客户编号" :disabled='true'></a-input>
- </a-form-model-item>
- </a-col>
- <!-- <a-col :span="6">-->
- <!-- <a-form-model-item label="用户编号" v-bind="labelCol4" >-->
- <!-- <a-input v-model="infoModel.userNo" placeholder="用户编号" :disabled='true'></a-input>-->
- <!-- </a-form-model-item>-->
- <!-- </a-col>-->
- <a-col :span="6">
- <a-form-model-item label="用户发展员工" prop="staffNo" v-bind="labelCol4">
- <a-input class="cornflowerblue" :disabled='true' v-model="infoModel.staffNo" placeholder="用户发展员工" ></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="发展员工姓名" prop="staffNo" v-bind="labelCol4">
- <a-input class="cornflowerblue" :disabled='true' v-model="infoModel.staffName" placeholder="发展员工姓名" ></a-input>
- </a-form-model-item>
- </a-col>
- <!-- <a-col :span="6">-->
- <!-- <a-form-model-item label="用户号码" prop="userCode" v-bind="labelCol4">-->
- <!-- <a-input :disabled='true' v-model="infoModel.userCode" placeholder="用户号码" ></a-input>-->
- <!-- </a-form-model-item>-->
- <!-- </a-col>-->
- <a-col :span="6">
- <a-form-model-item label="用户编号" v-bind="labelCol4" >
- <a-input class="cornflowerblue" v-model="infoModel.userNo" placeholder="用户编号" :disabled='true'></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="入网时间" prop="networkAccessTime" v-bind="labelCol4" >
- <a-input class="cornflowerblue" v-model="infoModel.networkAccessTime" placeholder="入网时间" :disabled='true'></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="首次激活时间" prop="firstActivationDate" v-bind="labelCol4">
- <a-input class="cornflowerblue" :disabled='true' v-model="infoModel.firstActivationDate" placeholder="首次激活时间"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="账户编码" prop="accountCode" v-bind="labelCol4">
- <a-input class="cornflowerblue" :disabled='true' v-model="infoModel.accountCode" placeholder="账户编码"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="楼宇名称" prop="floorName" v-bind="labelCol4">
- <a-input class="cornflowerblue" :disabled='true' v-model="infoModel.floorName" placeholder="楼宇名称"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="用户状态"v-bind="labelCol4" prop="userState" >
- <j-dict-select-tag placeholder="请选择用户状态" v-model="infoModel.userState" dictCode="user_status_2"/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户名称(全)" prop="customerName" v-bind="labelCol4">
- <a-input v-model="infoModel.customerName" placeholder="客户名称/使用人名称"></a-input>
- </a-form-model-item>
- </a-col>
- <!-- <a-col :span="6">-->
- <!-- <a-form-model-item label="楼宇编号" prop="floorCode" v-bind="labelCol4">-->
- <!-- <a-input v-model="infoModel.floorCode" placeholder="楼宇编号"></a-input>-->
- <!-- </a-form-model-item>-->
- <!-- </a-col>-->
- <a-col :span="6">
- <a-form-model-item label="客户经理手机号" prop="managePhone" v-bind="labelCol4">
- <a-input v-model="infoModel.managePhone" placeholder="客户经理手机号"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="实际装机地址" prop="installationAddress" v-bind="labelCol4">
- <a-input v-model="infoModel.installationAddress" placeholder="实际装机地址"></a-input>
- </a-form-model-item>
- </a-col>
- <!--风险评估等级(非办公自用需提供)-->
- <a-col :span="9" v-if='infoModel.contractDateIs==="" || infoModel.contractDateIs===null || infoModel.contractDateIs==="1" '>
- <a-form-model-item label="合同到期时间是否长期" prop="contractDateIs" v-bind="labelCol5">
- <a-radio-group v-model="infoModel.contractDateIs" button-style="solid" >
- <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="9" v-if='infoModel.contractDateIs==="0" ' >
- <a-form-model-item label="合同到期时间" prop="contractDate" v-bind="labelCol6">
- <a-date-picker style="min-width:50px; width: 67% " v-model="infoModel.contractDate"
- format="YYYY-MM-DD"
- showTime valueFormat="YYYY-MM-DD"/>
- <a-button @click="back('contractDate')" >长期</a-button>
- </a-form-model-item>
- </a-col>
- <a-col :span="9" v-if='infoModel.businessLicenseDateIs==="" || infoModel.businessLicenseDateIs===null || infoModel.businessLicenseDateIs==="1" '>
- <a-form-model-item label="营业执照有效期是否长期" prop="businessLicenseDateIs" v-bind="labelCol5">
- <a-radio-group v-model="infoModel.businessLicenseDateIs" button-style="solid" >
- <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="9" v-if='infoModel.businessLicenseDateIs==="0"'>
- <a-form-model-item label="营业执照到期时间" prop="businessLicenseDate" v-bind="labelCol4">
- <a-date-picker style="min-width:50px; width: 67% " v-model="infoModel.businessLicenseDate"
- format="YYYY-MM-DD"
- showTime valueFormat="YYYY-MM-DD"/>
- <a-button @click="back('businessLicenseDate')" >长期</a-button>
- </a-form-model-item>
- </a-col>
- <!-- (第一类客户办公自用除外,不需提供)-->
- <a-col :span="10" v-if='infoModel.customType=="1"'>
- <a-form-model-item label="房屋租赁合同到期时间" prop="houseDate" v-bind="labelCol4">
- <a-date-picker style="width: 210px" v-model="infoModel.houseDate"
- format="YYYY-MM-DD"
- showTime valueFormat="YYYY-MM-DD"/>
- </a-form-model-item>
- </a-col>
- <a-col :span="11" v-if='infoModel.scene==="2" ||infoModel.scene==="3" '>
- <a-form-model-item label="经营型呼叫中心增值许可证到期日 " prop="zZBusinessLicenseDate" v-bind="labelCol4">
- <a-date-picker style="width: 210px" v-model="infoModel.zZBusinessLicenseDate"
- format="YYYY-MM-DD"
- showTime valueFormat="YYYY-MM-DD"/>
- </a-form-model-item>
- </a-col>
- <a-col :span="13" v-if='infoModel.scene!=="0"'>
- <a-form-model-item label="风险评估等级(非办公自用需提供)" prop="riskGrade" v-bind="labelCol4">
- <a-radio-group v-model="infoModel.riskGrade" button-style="solid" >
- <a-radio-button value="0">较低风险</a-radio-button>
- <a-radio-button value="1">低风险</a-radio-button>
- <a-radio-button value="2">中风险</a-radio-button>
- <a-radio-button value="3">高风险</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- </a-row>
- </a-card>
- </a-form-model>
- </a-page-header>
- </a-spin>
- <!-- 步骤条-->
- <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" :title="item.title" :status="item.status"/>
- </a-steps>
- <a-button @click="addIsStaging" style="width: 100%" type="warn">暂存</a-button>
- <a-button @click="submitAuditLot" style="width: 100%;position: relative;top: 10px" type="primary">提交申请</a-button>
- </a-card>
- <!-- 入网申请签报 -->
- <a-card v-if="steps.currentId === 'applySign'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">入网申请签报</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li>1)18年9月以后入网的需要</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.applySignRemark"
- @change="textareaChange('applySign','applySignRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'applySign')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.applySign" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'applySign')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.applySign"
- :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, 'applySign')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === '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 class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li>1)请按材料如实上传</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.businessLicenseRemark"
- @change="textareaChange('businessLicense','businessLicenseRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'businessLicense')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <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="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;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=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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>
- <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 === 'threePhotos'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">三张现场照片</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >1) 客户办公现场、装机地址(交换机和配线架等)、公司logo照片(客户经理必须到现场,照片客户经理需体现)</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.threePhotosRemark"
- @change="textareaChange('threePhotos','threePhotosRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'threePhotos')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.threePhotos" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'threePhotos')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.threePhotos"
- :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, 'threePhotos')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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>
- <!-- DID(含中继线)业务的责任承诺函-->
- <a-card v-if="steps.currentId === 'commitmentBook'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">DID(含中继线)业务的责任承诺函</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >1) 需写明使用号段、中继线引示号、中继线条数等信息,盖公章。</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.commitmentBookRemark"
- @change="textareaChange('commitmentBook','commitmentBookRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'commitmentBook')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.commitmentBook" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'commitmentBook')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.commitmentBook"
- :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, 'commitmentBook')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'isPriceApproval'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">价格审批表</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >1)如有价格审批表请进行上传</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.isPriceApprovalRemark"
- @change="textareaChange('isPriceApproval','isPriceApprovalRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'isPriceApproval')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.isPriceApproval" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'isPriceApproval')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.isPriceApproval"
- :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, 'isPriceApproval')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'legalIdCard'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">法人身份证</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >非党政军客户需具备</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.legalIdCardRemark"
- @change="textareaChange('legalIdCard','legalIdCardRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'legalIdCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.legalIdCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'legalIdCard')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.legalIdCard"
- :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, 'legalIdCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'operatorIdCard'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">经办人身份证</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >1)如有经办人身份证请进行上传</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.operatorIdCardRemark"
- @change="textareaChange('operatorIdCard','operatorIdCardRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'operatorIdCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.operatorIdCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'operatorIdCard')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.operatorIdCard"
- :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, 'operatorIdCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'authorizeBook'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">授权函</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >1)如有授权函请进行上传</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.authorizeBookRemark"
- @change="textareaChange('authorizeBook','authorizeBookRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'authorizeBook')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.authorizeBook" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'authorizeBook')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.authorizeBook"
- :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, 'authorizeBook')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'zZBusinessLicense'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">经营性呼叫中心增值业务许可证</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >1)需在有效期内</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.zZBusinessLicenseRemark"
- @change="textareaChange('zZBusinessLicense','zZBusinessLicenseRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'zZBusinessLicense')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.zZBusinessLicense" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'zZBusinessLicense')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.zZBusinessLicense"
- :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, 'zZBusinessLicense')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'centerBusiness'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">呼叫中心业务说明</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >自用型呼叫中心、经营型呼叫中心、经营型会议电话均需提供</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.centerBusinessRemark"
- @change="textareaChange('centerBusiness','centerBusinessRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'centerBusiness')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.centerBusiness" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'centerBusiness')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.centerBusiness"
- :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, 'centerBusiness')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'contractOrProve'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">房屋租赁合同或房产证明</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >1)二类客户需具备</li>
- <li >2)需在有效期内</li>
- <li>3)房屋租赁合同或房屋产权证明(加盖公章)</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.contractOrProveRemark"
- @change="textareaChange('contractOrProve','contractOrProveRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'contractOrProve')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.contractOrProve" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'contractOrProve')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.contractOrProve"
- :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, 'contractOrProve')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'riskTable'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">风险评估表</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >非办公自用需提供</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.riskTableRemark"
- @change="textareaChange('riskTable','riskTableRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'riskTable')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.riskTable" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'riskTable')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.riskTable"
- :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, 'riskTable')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'trunkTable'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">中继线预审表</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >1)如有中继线预审表请进行上传</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.trunkTableRemark"
- @change="textareaChange('trunkTable','trunkTableRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'trunkTable')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.trunkTable" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'trunkTable')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.trunkTable"
- :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, 'trunkTable')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'trunkContract'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">中继线合同</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li> 1)必须是正规合同,不能是业务申请单</li>
- <li>2)标准文本合同(明确装机地址、分配号段、交换机型号、业务类型和防范通讯信息诈骗的相关责任条款)</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%;" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.trunkContractRemark"
- @change="textareaChange('trunkContract','trunkContractRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'trunkContract')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- class="a-upload-line-30"
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
-
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.trunkContract" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'trunkContract')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </div>
- </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.trunkContract"
- :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, 'trunkContract')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'accessTable'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">回访表</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >2023年7月26日后入网的需要</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.accessTableRemark"
- @change="textareaChange('accessTable','accessTableRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'accessTable')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.accessTable" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'accessTable')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.accessTable"
- :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, 'accessTable')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'accessPhone'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">电话回访截图</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >客户经理在业务开通后48小时内完成电话回访,存在无人接听、持续忙音、回铃音异常等异常情况的,予以停机核验。</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.accessPhoneRemark"
- @change="textareaChange('accessPhone','accessPhoneRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'accessPhone')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.accessPhone" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'accessPhone')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.accessPhone"
- :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, 'accessPhone')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'accessPhoto'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">现场回访照片</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li >1)客户经理在业务开通后3日内的工作时间里完成客户装机现场复核,客户使用场景及报备话术复核。一经发现异常,有发展部门研判、予以关停。</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.accessPhotoRemark"
- @change="textareaChange('accessPhoto','accessPhotoRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
-
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'accessPhoto')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- style='margin-left: 125px;line-height: 50px'
- >
- <a-button> <a-icon type="upload" /> 上传文件 </a-button>
- </a-upload>
- <div style="height: 70%">
- <div class="thumb-example">
- <swiper
- class="swiper gallery-top"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- <swiper-slide class="slide-1" v-for="(item, index) in infoModel.accessPhoto" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase" style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'accessPhoto')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.accessPhoto"
- :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, 'accessPhoto')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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 === 'commitment'" style="margin-bottom:10px; float: left;width: 83%;left: 2%; ">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">其他材料(非必填)</span>
- </div>
- <div class="a-card-25">
- <a-alert
- message="注意事项(必看)"
- type="warning"
- style="height: 100vh"
- >
- <div slot="description" class="markdown" style="position: relative;top:30px">
- <ul>
- <li>1)如有其他材料(非必填)请进行上传</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: -2%;" label="上传资料备注:" v-bind="labelCol1Note">
- <a-textarea class="a-textarea-line-30"
- v-model="infoModel.commitmentRemark"
- @change="textareaChange('commitment','commitmentRemark')"
- placeholder="如没有上传资料备注,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <a-upload
- name="file"
- :multiple="true"
- :action="importMinioUploadAction"
- :customRequest="e => selfUploadContract(e, 'commitment')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- class="a-upload-line-30"
- >
- <a-button>
- <a-icon type="upload"/>
- 上传文件
- </a-button>
- </a-upload>
- <div style="height: 70%">
- <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.commitment" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="500px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div><a-button v-if="item.urlBase"
- style="display: block;margin-top: 1px;border-color: red;color: red;float: left"
- danger @click="removeFile(item,'commitment')">移除
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase"
- @click="jumpUrl(item.urlBase)">预览
- </a-button></div>
- </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.commitment"
- :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,'commitment')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div>
- <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='isPhoneshow' ref="floatButton"
- class="float-infoPhone">
- <div class="thumb-example1" >
- <!-- swiper1 -->
- <swiper
- class="swiper gallery-topview"
- :options="swiperOptionTop"
- ref="swiperTop"
- >
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbsview"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide v-for="(item, index) in phoneList" :key="item.id"
- class="slide"
- style="width:290px;height:200px;">
- <div v-if="item.urlBase" style="width:290px;height: 96px;background: rgb(68,142,247);color: white">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- @preview="handlePreview"
- @change="handleChange"
- scrolling="auto">
- </iframe>
- <div style="display:flex ;justify-content:center;height:100%;">
- <a-button @click='selfUploadContractView(item)' >使用</a-button>
- <a-button style='margin-left: 10px' @click="jumpUrl(item.urlBase)">预览</a-button>
- </div>
- </div>
- <a-modal :visible="previewVisible" :footer="null" @cancel="handleCancel">
- <img alt="example" style="width: 100%" :src="previewImage" />
- </a-modal>
- </swiper-slide>
- <div class="swiper-button-next swiper-button-white" slot="button-next">
- <div>
- </div>
- </div>
- <div class="swiper-button-prev swiper-button-white" slot="button-prev">
- <div>
- </div>
- </div>
- </swiper>
- </div>
- </a-card>
- <div @click='showPhone(true,true)'
- ref="floatButton"
- class="float-info floating-button"
- :style="{'width': 80 + 'px', 'height': 80 + 'px', 'left': 90+'%' , 'top': 80 + '%'}"
- >
- <a-badge :count=fileShoppingNumber>
- <img style="width: 89%;height: 81%;position: relative;top: 10%" :src="fileShopping" border="1">
- </a-badge> </div>
- </div>
- </template>
- <script>
- import { getAction, httpAction, postAction } from '@api/manage'
- /*无数据图片*/
- import noDataPng from '@/assets/nodata.png'
- import {JeecgListMixin} from '@/mixins/JeecgListMixin'
- import fileShopping from '@assets/file_shopping.png'
- let Base64 = require('js-base64').Base64
- function getBase64(file) {
- return new Promise((resolve, reject) => {
- const reader = new FileReader();
- reader.readAsDataURL(file);
- reader.onload = () => resolve(reader.result);
- reader.onerror = error => reject(error);
- });
- }
- export default {
- name: "TaskUploadData",
- mixins: [JeecgListMixin],
- inject: ['closeCurrent'],
- components: {noDataPng},
- data() {
- return {
- // 购物车图标数
- fileShoppingNumber:0,
- fileShopping: fileShopping,
- idCurrent :'',
- isPhoneshow:false,
- phoneList:'',
- btnStyle:{
- "fontSize":'small',
- "top":'60vh',
- "left":'90vw'
- },
- selectDateTime: '',
- timeScopedPre: {
- 近七日: [ ],//加上今天一共是七天,subtract方法是传6,往后推6天
- 近14日: [ ],
- 近30日: [ ]
- },
- currentId: "businessLicense",
- noDataPng: noDataPng,
- //加载状态
- loading: false,
- //弹窗
- previewImage: "",
- previewVisible: false,
- url: {
- "getInfoDataByInfoId": "/smsTurck/customerData/queryDataLogByInfoId",
- "getTask":"/smsTurck/customerData/query/getTask",
- "getInfoDataById": "/smsCheck/customerInfo/queryById",
- updateFile: "/smsCheck/customerData/updateFile",
- //"getInfoDataByInfoId": "/smsTurck/customerData/query/infoId",
- minioUpload: "/smsCheck/customerData/uploadMinio",
- list: "/smsCheck/customerData/list",
- addOrEdit: "/smsTurck/customerData/edit/info"
- },
- //步骤条数据
- // current: 0,
- // steps: "",
- steps: {
- // 当前所在第几部
- current: 0,
- currentId: "",
- stepsNow: {},
- steps00: [
- //不分类型与场景 中继线合同 (必须是正规合同,不能是业务申请单)
- {
- title: '中继线合同',
- content: 'First-content',
- id: "trunkContract",
- },
- //是否有入网申请签报
- {
- title: '入网申请签报 ',
- content: 'First-content',
- id: "applySign",
- },
- {
- title: '中继线营业执照',
- content: 'First-content',
- id: "businessLicense",
- },
- //不分类型与场景 三张现场照片
- {
- title: '三张现场照片 ',
- content: 'First-content',
- id: "threePhotos",
- },
- //不分类型与场景 是否有DID(含中继线)业务的责任承诺函
- {
- title: 'DID(含中继线)业务的责任承诺函',
- content: 'First-content',
- id: "commitmentBook",
- },
- //不分类型与场景 价格审批表
- {
- title: '价格审批表',
- content: 'First-content',
- id: "isPriceApproval",
- },
- //不分类型与场景 授权函
- {
- title: '授权函',
- content: 'First-content',
- id: "authorizeBook",
- },
- // 不分类型与场景 经营性呼叫中心增值业务许可证到期时间
- // {
- // title: '经营性呼叫中心增值业务许可证',
- // content: 'First-content',
- // id: "zZBusinessLicense",
- // },
- //不分类型与场景
- {
- title: '中继线预审表',
- content: 'First-content',
- id: "trunkTable",
- },
- //经办人身份证 不分类型与场景
- {
- title: '经办人身份证',
- content: 'First-content',
- id: "operatorIdCard",
- },
- {
- title: '回访表',
- content: 'First-content',
- id: "accessTable",
- }, {
- title: '电话回访截图',
- content: 'First-content',
- id: "accessPhone",
- }, {
- title: '现场回访照片',
- content: 'First-content',
- id: "accessPhoto",
- },
- ],
- steps01: [
- //不分类型与场景 中继线合同 (必须是正规合同,不能是业务申请单)
- {
- title: '中继线合同',
- content: 'First-content',
- id: "trunkContract",
- },
- //是否有入网申请签报
- {
- title: '入网申请签报 ',
- content: 'First-content',
- id: "applySign",
- },
- {
- title: '中继线营业执照',
- content: 'First-content',
- id: "businessLicense",
- },
- //不分类型与场景 三张现场照片
- {
- title: '三张现场照片 ',
- content: 'First-content',
- id: "threePhotos",
- },
- //不分类型与场景 是否有DID(含中继线)业务的责任承诺函
- {
- title: 'DID(含中继线)业务的责任承诺函',
- content: 'First-content',
- id: "commitmentBook",
- },
- //不分类型与场景 价格审批表
- {
- title: '价格审批表',
- content: 'First-content',
- id: "isPriceApproval",
- },
- //经办人身份证 不分类型与场景
- {
- title: '经办人身份证',
- content: 'First-content',
- id: "operatorIdCard",
- },
- //不分类型与场景 授权函
- {
- title: '授权函',
- content: 'First-content',
- id: "authorizeBook",
- },
- // 不分类型与场景 经营性呼叫中心增值业务许可证到期时间
- // {
- // title: '经营性呼叫中心增值业务许可证',
- // content: 'First-content',
- // id: "zZBusinessLicense",
- // },
- //中心业务是否有说明 自用型呼叫中心、经营型呼叫中心、经营型会议电话均需提供
- {
- title: '呼叫中心业务说明',
- content: 'First-content',
- id: "centerBusiness",
- },
- //非办公自用需提供 风险评估表
- {
- title: '风险评估表',
- content: 'First-content',
- id: "riskTable",
- },
- //不分类型与场景
- {
- title: '中继线预审表',
- content: 'First-content',
- id: "trunkTable",
- }, {
- title: '回访表',
- content: 'First-content',
- id: "accessTable",
- }, {
- title: '电话回访截图',
- content: 'First-content',
- id: "accessPhone",
- }, {
- title: '现场回访照片',
- content: 'First-content',
- id: "accessPhoto",
- },
- ],
- steps02: [
- //不分类型与场景 中继线合同 (必须是正规合同,不能是业务申请单)
- {
- title: '中继线合同',
- content: 'First-content',
- id: "trunkContract",
- },
- //是否有入网申请签报
- {
- title: '入网申请签报 ',
- content: 'First-content',
- id: "applySign",
- },
- {
- title: '中继线营业执照',
- content: 'First-content',
- id: "businessLicense",
- },
- //不分类型与场景 三张现场照片
- {
- title: '三张现场照片 ',
- content: 'First-content',
- id: "threePhotos",
- },
- //不分类型与场景 是否有DID(含中继线)业务的责任承诺函
- {
- title: 'DID(含中继线)业务的责任承诺函',
- content: 'First-content',
- id: "commitmentBook",
- },
- //不分类型与场景 价格审批表
- {
- title: '价格审批表',
- content: 'First-content',
- id: "isPriceApproval",
- },
- //经办人身份证 不分类型与场景
- {
- title: '经办人身份证',
- content: 'First-content',
- id: "operatorIdCard",
- },
- //不分类型与场景 授权函
- {
- title: '授权函',
- content: 'First-content',
- id: "authorizeBook",
- },
- // 不分类型与场景 经营性呼叫中心增值业务许可证到期时间
- {
- title: '经营性呼叫中心增值业务许可证',
- content: 'First-content',
- id: "zZBusinessLicense",
- },
- //中心业务是否有说明 自用型呼叫中心、经营型呼叫中心、经营型会议电话均需提供
- {
- title: '呼叫中心业务说明',
- content: 'First-content',
- id: "centerBusiness",
- },
- //非办公自用需提供 风险评估表
- {
- title: '风险评估表',
- content: 'First-content',
- id: "riskTable",
- },
- //不分类型与场景
- {
- title: '中继线预审表',
- content: 'First-content',
- id: "trunkTable",
- }, {
- title: '回访表',
- content: 'First-content',
- id: "accessTable",
- }, {
- title: '电话回访截图',
- content: 'First-content',
- id: "accessPhone",
- }, {
- title: '现场回访照片',
- content: 'First-content',
- id: "accessPhoto",
- },
- ],
- steps10: [
- //不分类型与场景 中继线合同 (必须是正规合同,不能是业务申请单)
- {
- title: '中继线合同',
- content: 'First-content',
- id: "trunkContract",
- },
- //是否有入网申请签报
- {
- title: '入网申请签报 ',
- content: 'First-content',
- id: "applySign",
- },
- {
- title: '中继线营业执照',
- content: 'First-content',
- id: "businessLicense",
- },
- //不分类型与场景 三张现场照片
- {
- title: '三张现场照片 ',
- content: 'First-content',
- id: "threePhotos",
- },
- //不分类型与场景 是否有DID(含中继线)业务的责任承诺函
- {
- title: 'DID(含中继线)业务的责任承诺函',
- content: 'First-content',
- id: "commitmentBook",
- },
- //不分类型与场景 价格审批表
- {
- title: '价格审批表',
- content: 'First-content',
- id: "isPriceApproval",
- },
- //是否有法人身份证 (非党政军客户需具备)
- {
- title: '法人身份证',
- content: 'First-content',
- id: "legalIdCard",
- },
- //经办人身份证 不分类型与场景
- {
- title: '经办人身份证',
- content: 'First-content',
- id: "operatorIdCard",
- },
- //不分类型与场景 授权函
- {
- title: '授权函',
- content: 'First-content',
- id: "authorizeBook",
- },
- // 不分类型与场景 经营性呼叫中心增值业务许可证到期时间
- // {
- // title: '经营性呼叫中心增值业务许可证',
- // content: 'First-content',
- // id: "zZBusinessLicense",
- // },
- //房屋租赁合同或房产证明 二类客户需具备
- {
- title: '房屋租赁合同或房产证明',
- content: 'First-content',
- id: "contractOrProve",
- },
- //不分类型与场景
- {
- title: '中继线预审表',
- content: 'First-content',
- id: "trunkTable",
- }, {
- title: '回访表',
- content: 'First-content',
- id: "accessTable",
- }, {
- title: '电话回访截图',
- content: 'First-content',
- id: "accessPhone",
- }, {
- title: '现场回访照片',
- content: 'First-content',
- id: "accessPhoto",
- },
- ],
- steps11: [
- //不分类型与场景 中继线合同 (必须是正规合同,不能是业务申请单)
- {
- title: '中继线合同',
- content: 'First-content',
- id: "trunkContract",
- },
- //是否有入网申请签报
- {
- title: '入网申请签报 ',
- content: 'First-content',
- id: "applySign",
- },
- {
- title: '中继线营业执照',
- content: 'First-content',
- id: "businessLicense",
- },
- //不分类型与场景 三张现场照片
- {
- title: '三张现场照片 ',
- content: 'First-content',
- id: "threePhotos",
- },
- //不分类型与场景 是否有DID(含中继线)业务的责任承诺函
- {
- title: 'DID(含中继线)业务的责任承诺函',
- content: 'First-content',
- id: "commitmentBook",
- },
- //不分类型与场景 价格审批表
- {
- title: '价格审批表',
- content: 'First-content',
- id: "isPriceApproval",
- },
- //是否有法人身份证 (非党政军客户需具备)
- {
- title: '法人身份证',
- content: 'First-content',
- id: "legalIdCard",
- },
- //经办人身份证 不分类型与场景
- {
- title: '经办人身份证',
- content: 'First-content',
- id: "operatorIdCard",
- },
- //不分类型与场景 授权函
- {
- title: '授权函',
- content: 'First-content',
- id: "authorizeBook",
- },
- // 不分类型与场景 经营性呼叫中心增值业务许可证到期时间
- // {
- // title: '经营性呼叫中心增值业务许可证',
- // content: 'First-content',
- // id: "zZBusinessLicense",
- // },
- //中心业务是否有说明 自用型呼叫中心、经营型呼叫中心、经营型会议电话均需提供
- {
- title: '呼叫中心业务说明',
- content: 'First-content',
- id: "centerBusiness",
- },
- //房屋租赁合同或房产证明 二类客户需具备
- {
- title: '房屋租赁合同或房产证明',
- content: 'First-content',
- id: "contractOrProve",
- },
- //非办公自用需提供 风险评估表
- {
- title: '风险评估表',
- content: 'First-content',
- id: "riskTable",
- },
- //不分类型与场景
- {
- title: '中继线预审表',
- content: 'First-content',
- id: "trunkTable",
- }, {
- title: '回访表',
- content: 'First-content',
- id: "accessTable",
- }, {
- title: '电话回访截图',
- content: 'First-content',
- id: "accessPhone",
- }, {
- title: '现场回访照片',
- content: 'First-content',
- id: "accessPhoto",
- },
- ],
- steps12: [
- //不分类型与场景 中继线合同 (必须是正规合同,不能是业务申请单)
- {
- title: '中继线合同',
- content: 'First-content',
- id: "trunkContract",
- },
- //是否有入网申请签报
- {
- title: '入网申请签报 ',
- content: 'First-content',
- id: "applySign",
- },
- {
- title: '中继线营业执照',
- content: 'First-content',
- id: "businessLicense",
- },
- //不分类型与场景 三张现场照片
- {
- title: '三张现场照片 ',
- content: 'First-content',
- id: "threePhotos",
- },
- //不分类型与场景 是否有DID(含中继线)业务的责任承诺函
- {
- title: 'DID(含中继线)业务的责任承诺函',
- content: 'First-content',
- id: "commitmentBook",
- },
- //不分类型与场景 价格审批表
- {
- title: '价格审批表',
- content: 'First-content',
- id: "isPriceApproval",
- },
- //是否有法人身份证 (非党政军客户需具备)
- {
- title: '法人身份证',
- content: 'First-content',
- id: "legalIdCard",
- },
- //经办人身份证 不分类型与场景
- {
- title: '经办人身份证',
- content: 'First-content',
- id: "operatorIdCard",
- },
- //不分类型与场景 授权函
- {
- title: '授权函',
- content: 'First-content',
- id: "authorizeBook",
- },
- //经营性呼叫中心增值业务许可证到期时间
- {
- title: '经营性呼叫中心增值业务许可证',
- content: 'First-content',
- id: "zZBusinessLicense",
- },
- //中心业务是否有说明 自用型呼叫中心、经营型呼叫中心、经营型会议电话均需提供
- {
- title: '呼叫中心业务说明',
- content: 'First-content',
- id: "centerBusiness",
- },
- //房屋租赁合同或房产证明 二类客户需具备
- {
- title: '房屋租赁合同或房产证明',
- content: 'First-content',
- id: "contractOrProve",
- },
- //非办公自用需提供 风险评估表
- {
- title: '风险评估表',
- content: 'First-content',
- id: "riskTable",
- },
- //不分类型与场景
- {
- title: '中继线预审表',
- content: 'First-content',
- id: "trunkTable",
- }, {
- title: '回访表',
- content: 'First-content',
- id: "accessTable",
- }, {
- title: '电话回访截图',
- content: 'First-content',
- id: "accessPhone",
- }, {
- title: '现场回访照片',
- content: 'First-content',
- id: "accessPhoto",
- },
- ],
- },
- uploading: false,
- rules:{
- scene: [
- {required: true, message: '必须输入'},
- ],
- customType: [
- {required: true, message: '必须输入'},
- ],
- customerName: [
- {required: true, message: '必须输入'},
- ],
- houseDate:[
- {required: true, message: '必须输入'},
- ],
- zZBusinessLicenseDate:[
- {required: true, message: '必须输入'},
- ],
- businessLicenseDateIs:[
- {required: true, message: '必须输入'},
- ],
- businessLicenseDate:[
- {required: true, message: '必须输入'},
- ],
- contractDate:[
- {required: true, message: '必须输入'},
- ],
- riskGrade:[
- {required: true, message: '必须输入'},
- ],
- installationAddress:[
- {required: true, message: '必须输入'},
- ],
- floorName:[
- {required: true, message: '必须输入'},
- ],
- firstActivationDate:[
- {required: true, message: '必须输入'},
- ],
- customerNo:[
- {required: true, message: '必须输入'},
- ],
- userNo:[
- {required: true, message: '必须输入'},
- ],
- networkAccessTime:[
- {required: true, message: '必须输入'},
- ],
- userState:[
- {required: true, message: '必须输入'},
- ],
- contractDateIs:[
- {required: true, message: '必须输入'},
- ],
- staffNo:[
- {required: true, message: '必须输入'},
- ],
- codeNumber:[
- {required: true, message: '必须输入'},
- ],
- accountCode:[
- {required: true, message: '必须输入'},
- ],
- floorCode:[
- {required: true, message: '必须输入'},
- ],
- userCode:[
- {required: true, message: '必须输入'},
- ],
- managePhone: [
- {required: true, message: '请输入客户经理手机号!', trigger: 'blur'}, {validator: this.isPhone}
- ],
- },
- taskId:"",
- notes:"",
- infoModel:{
- control:'0',
- staffName:"",
- dataId:"",
- logId:"",
- infoId:"",
- managePhone:"",
- //客户类型
- customType: 0,
- //使用场景
- scene:'0',
- houseDate:"",
- zZBusinessLicenseDate:"",
- businessLicenseDateIs:"",
- businessLicenseDate:"",
- contractDate:"",
- riskGrade:"",
- installationAddress:"",
- floorName:"",
- firstActivationDate:"",
- customerNo:"",
- userNo:"",
- networkAccessTime:"",
- customerName:"",
- userState:"",
- contractDateIs:"",
- staffNo:"",
- codeNumber:"",
- accountCode:"",
- floorCode:"",
- userCode:"",
- //入网申请签报 applySign
- applySign:[{}],
- applySignRemark:"",
- businessLicense:[{}],
- businessLicenseRemark:"",
- //三张现场照片 threePhotos
- threePhotos:[{}],
- threePhotosRemark:"",
- //DID(含中继线)业务的责任承诺函
- commitmentBook:[{}],
- commitmentBookRemark:"",
- //价格审批表
- isPriceApproval:[{}],
- isPriceApprovalRemark:"",
- //法人身份证
- legalIdCard:[{}],
- legalIdCardRemark:"",
- //经办人身份证.
- operatorIdCard:[{}],
- operatorIdCardRemark:"",
- //授权函.
- authorizeBook:[{}],
- authorizeBookRemark:"",
- //经营性呼叫中心增值业务许可证.
- zZBusinessLicense:[{}],
- zZBusinessLicenseRemark:"",
- //呼叫中心业务说明.
- centerBusiness:[{}],
- centerBusinessRemark:"",
- //房屋租赁合同或房产证明.
- contractOrProve:[{}],
- contractOrProveRemark:"",
- //风险评估表
- riskTable:[{}],
- riskTableRemark:"",
- //中继线预审表
- trunkTable:[{}],
- trunkTableRemark:"",
- //中继线合同
- trunkContract:[{}],
- trunkContractRemark:"",
- accessTable:[{}],
- accessTableRemark:"",
- accessPhone:[{}],
- accessPhoneRemark:"",
- accessPhoto:[{}],
- accessPhotoRemark:"",
- commitment: [{}],
- commitmentRemark: '',
- },
- next: "",
- prev: "",
- //客户信息ID
- infoId: "",
- lotData: {
- //客户类型
- customType: "0",
- //使用场景
- scene: "0",
- //正式卡/测试卡
- blockType: "model",
- //价格管控
- control: "controlN",
- //合同文件
- contractFiles: [],
- //责任人和经办人授权书
- empowerFiles: [],
- //责任人和经办人身份证
- idCardFiles: [],
- //客户证件扫描
- scanningFiles: [],
- //风险评估表
- riskFiles: [],
- //价格审批表
- priceFiles: [],
- //测试卡申请单
- testCardApplication: []
- },
- truckData: {
- //客户类型
- customType: "0",
- //使用场景
- scene: "0",
- },
- //缩略与大图数据源
- swiperId: 0 + 1,
- swiperImg: [{}],
- //轮播配置
- 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'
- }
- },
- labelCol6: {
- labelCol: {
- xs: {span: 24},
- sm: {span:10},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 12},
- }
- },
- labelCol4: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 10},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 12},
- }
- },
- labelCol5: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 12},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 12},
- }
- },
- labelCol1Note: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 4},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 20},
- }
- },
- 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'
- }
- }
- };
- },
- created() {
- this.infoId = this.$route.query.id;
- this.controlChange();
- //this.steps.stepsNow = this.steps.steps00;
- this.steps.currentId = this.steps.stepsNow[0].id;
- this.infoModel.infoId = this.$route.query.id;
- this.getInfoDataById(this.$route.query.id);
- this.getTask(this.$route.query.id);
- this.getInfoDataByInfoId(this.$route.query.id)
- },
- computed: {
- importMinioUploadAction() {
- return window._CONFIG['domianURL'] + this.url.minioUpload;
- },
- },
- props: {
- poster: {
- type: String,
- required: false,
- default: ""
- },
- controls: {
- type: Boolean,
- required: false,
- default: true
- },
- control: {
- type: Boolean,
- required: false,
- default: false
- },
- },
- watch: {
- // 监听操作
- videoData(val, oldVal) {
- const {currentTime, duration} = val;
- if (currentTime && duration && currentTime < duration) {
- this.hintOperate();
- }
- }
- },
- mounted() {
- // 实现swiper双向控制
- this.$nextTick(() => {
- const swiperTop = this.$refs.swiperTop.swiper
- const swiperThumbs = this.$refs.swiperThumbs.swiper
- swiperTop.controller.control = swiperThumbs
- swiperThumbs.controller.control = swiperTop
- })
- // //默认流程
- // this.steps = this.steps00;
- },
- methods: {
- jumpUrl(url){
- var a = document.createElement("a");
- a.setAttribute("href", url);
- a.setAttribute("target", "_blank");
- a.click();
- },
- handleCancel() {
- this.previewVisible = false;
- },
- async handlePreview(file) {
- if (!file.url && !file.preview) {
- file.preview = await getBase64(file.originFileObj);
- }
- this.previewImage = file.url || file.preview ||file.urlBase ;
- this.previewVisible = true;
- },
- handleChange({ fileList }) {
- this.fileList = fileList;
- },
- showPhone(isShow,msg) {
- var data = {
- customerNo: this.infoModel.customerNo,
- stepsId: this.steps.stepsNow[this.steps.current].id,
- type:'4'
- }
- getAction('/smsCheck/customerInfo/phone/customerPhone', data).then((res) => {
- if (res.success) {
- this.phoneList=JSON.parse(res.result);
- if (this.phoneList!==null && this.phoneList.length!==0){
- this.fileShoppingNumber = this.phoneList.length
- if (this.isPhoneshow === false && isShow) {
- this.isPhoneshow = true;
- }else {
- this.isPhoneshow = false;
- }
- }else {
- this.fileShoppingNumber = 0 ;
- if (msg){
- this.$message.warning("此类无历史上传");
- }
- }
- }else {
- this.fileShoppingNumber = 0 ;
- }
- })
- },
- isPhone(rule, value, callback) {
- if (!value || new RegExp(/^1([38][0-9]|4[579]|5[0-3,5-9]|6[6]|7[0135678]|9[89])\d{8}$/).test(value)) {
- callback();
- } else {
- callback("您的手机号码格式不正确!");
- }
- },
- getTask(infoId){
- var that = this;
- var data = {
- "infoId": infoId,
- }
- postAction(this.url.getTask, data).then((res) => {
- if (res.success) {
- that.taskId=res.result.taskId;
- }
- })
- },
- getInfoDataByInfoId(infoId) {
- var that = this;
- if (infoId) {
- var data = {
- "infoId": infoId,
- }
- getAction(this.url.getInfoDataByInfoId, data).then((res) => {
- if (res.success) {
- let result = res.result;
- // result=this.getInfoDataById(infoId,result)
- that.infoModel=result;
- that.infoModel.applySign= JSON.parse(result.applySign);
- that.infoModel.threePhotos= JSON.parse(result.threePhotos);
- that.infoModel.commitmentBook= JSON.parse(result.commitmentBook);
- that.infoModel.isPriceApproval= JSON.parse(result.isPriceApproval);
- that.infoModel.legalIdCard= JSON.parse(result.legalIdCard);
- that.infoModel.operatorIdCard= JSON.parse(result.operatorIdCard);
- that.infoModel.authorizeBook= JSON.parse(result.authorizeBook);
- that.infoModel.zZBusinessLicense= JSON.parse(result.zZBusinessLicense);
- that.infoModel.businessLicense= JSON.parse(result.businessLicense);
- that.infoModel.centerBusiness= JSON.parse(result.centerBusiness);
- that.infoModel.contractOrProve= JSON.parse(result.contractOrProve);
- that.infoModel.riskTable= JSON.parse(result.riskTable);
- that.infoModel.trunkTable= JSON.parse(result.trunkTable);
- that.infoModel.trunkContract= JSON.parse(result.trunkContract);
- that.infoModel.accessPhone= JSON.parse(result.accessPhone);
- that.infoModel.accessPhoto= JSON.parse(result.accessPhoto);
- that.infoModel.accessTable= JSON.parse(result.accessTable);
- that.infoModel.commitment = JSON.parse(result.commitment);
- that.controlChange();
- for (var i in that.steps.stepsNow) {
- for (var j in result[that.steps.stepsNow[i].id]){
- if (result[that.steps.stepsNow[i].id][0].urlBase!==undefined){
- that.steps.stepsNow[i].status = "finish"
- }
- if (result[that.steps.stepsNow[i].id+'Remark'][0]!==undefined){
- that.steps.stepsNow[i].status = "finish"
- }
- }
- }
- }
- })
- }
- },
- /**获取客户信息*/
- getInfoDataById(id,resultA) {
- 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.userState =result.userState;
- //用户发展员工
- that.infoModel.staffNo =result.staffNo;
- that.infoModel.customerNo =result.customerNo;
- that.infoModel.userNo =result.userNo;
- that.infoModel.networkAccessTime =result.networkAccessTime;
- that.infoModel.firstActivationDate =result.firstActivationDate;
- that.infoModel.userCode =result.userCode;
- that.infoModel.accountCode =result.accountCode;
- that.infoModel.floorName =result.floorName;
- that.infoModel.staffName =result.staffName;
- that.notes =result.notes;
- this.showPhone();
- }
- })
- }
- return resultA
- },
- /**备注坚听*/
- textareaChange(name, nameRemark) {
- 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"
- }
- },
- /**步骤条点击事件*/
- stepsClick(current) {
- 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[i].status === "finish") {
- this.steps.stepsNow[i].status === "finish"
- }
- }
- if (this.steps.stepsNow[current].status!== "finish") {
- this.steps.stepsNow[current].status = "process"
- }
- this.showPhone(false,false);
- },
- back(name){
- if (name==='contractDate'){
- this.infoModel.contractDateIs="1"
- this.infoModel.contractDate=""
- }
- if (name==='businessLicenseDate'){
- this.infoModel.businessLicenseDateIs="1"
- this.infoModel.businessLicenseDate=""
- }
- },
- /**暂存*/
- addIsStaging() {
- this.uploading = true;
- var that = this;
- var data=that.infoModel ;
- //data =this.dataListToStr(data);
- postAction("/smsTurck/customerData/addIsStaging", data).then((res) => {
- if (res.success) {
- this.uploading = false;
- this.$message.success("提交成功", 3);
- this.addIng == true
- this.$router.push({path: '/truck/check/task/check', query: {id: that.taskId}});
- this.closeCurrent();
- } else {
- this.uploading = false;
- if ( res.message !==null){
- this.$message.error( res.message);
- }else {
- this.$message.error("提交失败");
- }
- }
- }).finally(() => {
- this.uploading = false;
- })
- },
- /*提交*/
- submitAuditLot() {
- this.uploading = true;
- var info = "yes";
- this.$refs.form.validate(valid => {
- // 验证通过
- if (!valid) {
- info = "no";
- this.uploading = false;
- }}
- )
- var text= "";
- for (var i in this.steps.stepsNow) {
- if (this.steps.stepsNow[i].status !== "finish"&& this.steps.stepsNow[i].id !=='commitment') {
- // text+= '111<br/> ';
- var str=this.steps.stepsNow[i].title;
- text+= str+"资料或备注都未上传!!!"+'<br/><br/>';
- //this.$message.warn( this.steps.stepsNow[i].title +"资料或备注都未上传!!!");
- info="no";
- }
- }
- debugger
- if (this.infoModel.customType===1){
- if (this.infoModel.houseDate==="" ||this.infoModel.houseDate===null){
- info="no";
- this.$message.warn( "房屋租赁合同到期时间 未填写!!!");
- }
- }
- var stringToHTML = function (str) {
- var dom = document.createElement('div');
- dom.innerHTML = str;
- return dom;
- };
- console.log(stringToHTML('<h1>Hello world!</h1><p>How are you today?</p>'));
- if (info==="no"){
- this.$warning({
- title: '提示',
- dangerouslyUseHTMLString: true,
- content:(h) => {
- return h('div', {
- domProps: {
- innerHTML: text
- },
- }, []);
- }
- })
- return
- }
- var that = this;
- var data=that.infoModel ;
- //data =this.dataListToStr(data);
- postAction("/smsTurck/customerData/add", data).then((res) => {
- if (res.success) {
- this.uploading = false;
- this.$message.success("提交成功", 3);
- this.addIng == true
- this.$router.push({path: '/truck/check/task/check', query: {id: that.taskId}});
- this.closeCurrent();
- } else {
- this.uploading = false;
- if ( res.message !==null){
- this.$message.error( res.message);
- }else {
- this.$message.error("提交失败");
- }
- }
- }).finally(() => {
- this.uploading = false;
- })
- },
- //客户类型与使用场景监听
- controlChange(a, event) {
- this.current = 0;
- this.steps.currentId = "trunkContract";
- let customType = this.infoModel.customType;
- let scene = this.infoModel.scene;
- if (customType ===0) {
- if (scene ==='0') {
- this.steps.stepsNow = this.steps.steps00
- }
- if (scene ==='1') {
- this.steps.stepsNow = this.steps.steps01
- }
- if (scene ==='2') {
- this.steps.stepsNow= this.steps.steps02
- }
- if (scene ==='3') {
- this.steps.stepsNow = this.steps.steps02
- }
- }
- if (customType ===1) {
- if (scene ==='0') {
- this.steps.stepsNow = this.steps.steps10
- }
- if (scene ==='1') {
- this.steps.stepsNow = this.steps.steps11
- }
- if (scene ==='2') {
- this.steps.stepsNow = this.steps.steps12
- }
- if (scene ==='3') {
- this.steps.stepsNow = this.steps.steps12
- }
- }
- if (this.infoModel.control==='0'){
- for (var i = 0; i <this.steps.stepsNow.length; i++) {
- if (this.steps.stepsNow[i].id==='isPriceApproval'){
- this.steps.stepsNow.splice(i, 1);
- }
- }
- }
- if (this.infoModel.control==='1'){
- var info ='';
- for (var i = 0; i <this.steps.stepsNow.length; i++) {
- if (this.steps.stepsNow[i].id==='isPriceApproval'){
- info ='yes';
- }
- }
- if (info!=='yes'){
- this.steps.stepsNow.push({
- title: '价格审批表',
- content: 'First-content',
- id: "isPriceApproval",
- });
- }
- }
- var info2='';
- for (var i = 0; i <this.steps.stepsNow.length; i++) {
- if (this.steps.stepsNow[i].id==='commitment'){
- info2 ='yes';
- }
- }
- if (info2!=='yes'){
- this.steps.stepsNow.push({
- title: '其他材料(非必填)',
- content: 'First-content',
- id: "commitment",
- });
- }
- for (var i in this.steps.stepsNow) {
- for (var j in this.infoModel[this.steps.stepsNow[i].id]){
- if (this.infoModel[this.steps.stepsNow[i].id][0].urlBase!==undefined){
- this.steps.stepsNow[i].status = "finish"
- }
- if (this.infoModel[this.steps.stepsNow[i].id+'Remark'][0]!==undefined){
- this.steps.stepsNow[i].status = "finish"
- }
- }
- }
- //
- // for (var i in this.steps.stepsNow) {
- // if ( this.steps.stepsNow[i].urlBase!==undefined){
- // this.steps.stepsNow[i].status = "finish"
- // }
- // if ( this.steps.stepsNow[i][this.steps.stepsNow.id+'Remark']!==undefined){
- // this.steps.stepsNow[i].status = "finish"
- // }
- // }
- },
- /**移除文件*/
- 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({})
- let textId = fileAttribute + "Remark";
- if (this.infoModel[textId].trim() > 0) {
- this.steps.stepsNow[this.steps.current].status = "finish"
- } else {
- this.steps.stepsNow[this.steps.current].status = "wait"
- }
- } else {
- this.steps.stepsNow[this.steps.current].status = "finish"
- }
- that[fileAttribute] = swiperImg
- }
- },
- selfUploadContractView(item) {
- this.idCurrent= this.steps.stepsNow[this.steps.current].id;
- var fileAttribute =this.steps.stepsNow[this.steps.current].id;
- var that = this;
- that.swiperId = that.swiperId + 1;
- console.log(that.swiperId)
- //文件链接
- let swipData = item;
- if (that.infoModel[fileAttribute][0].urlBase) {
- that.infoModel[fileAttribute].push(swipData)
- } else {
- that.infoModel[fileAttribute] = []
- //数据发生变化
- that.infoModel[fileAttribute][0] = swipData;
- }
- // 改变步骤条状态
- if (that.infoModel[fileAttribute].length > 0) {
- that.steps.stepsNow[that.steps.current].status = "finish"
- } else {
- that.steps.stepsNow[that.steps.current].status = "wait"
- }
- this.$message.success(that.steps.stepsNow[that.steps.current].title+"上传成功");
- },
- //分割数组
- spliceArr(data, fileData) {
- let indexOf = data.indexOf(fileData);
- return data.splice(indexOf, 1)
- },
- /**自定义的上传文件方法*/
- 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;
- console.log(that.swiperId)
- //文件链接
- 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.infoModel[fileAttribute].length > 0) {
- that.steps.stepsNow[that.steps.current].status = "finish"
- } else {
- that.steps.stepsNow[that.steps.current].status = "wait"
- }
- }
- })
- }
- },
- //文件上传成功后回调
- importHandleChange(info) {
- },
- //文件格式限制
- 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
- },
- //返回上一菜单
- goBack() {
- this.$router.go(-1);
- this.closeCurrent();
- },
- // //下一步骤
- // nextSteps() {
- // if (this.swiperImg.length == 0) {
- // this.$message.warn("请先上传文件!")
- // return;
- // }
- // if (this.swiperImg.length == 1) {
- // if (!this.swiperImg[0].urlBase) {
- // this.$message.warn("请先上传文件!")
- // return;
- // }
- // }
- // if (this.current < this.steps.length) {
- // this.current = this.current + 1;
- // this.currentId = this.steps[this.current].id;
- // //步骤文件类型对应
- // this.currentFileType(this.steps[this.current].id);
- // }
- // },
- // //上一步骤
- // prevSteps() {
- // if (this.current != 0) {
- // this.current = this.current - 1;
- // this.currentId = this.steps[this.current].id;
- // //步骤文件类型对应
- // this.currentFileType(this.currentId);
- // }
- // },
- //上传步骤文件类型对应
- currentFileType(currentId) {
- let that = this;
- this.swiperImg = {}
- switch (currentId) {
- case 'businessLicense':
- that.swiperImg = that.infoModel.businessLicense
- break;
- case 'idCard':
- that.swiperImg = that.infoModel.idCard
- break;
- case 'contract':
- that.swiperImg = that.infoModel.contract
- break;
- case 'prequaliFication':
- that.swiperImg = that.infoModel.prequaliFication
- break;
- case 'risk':
- that.swiperImg = that.infoModel.risk
- break;
- case 'coverLetter':
- that.swiperImg = that.infoModel.coverLetter
- break;
- case 'addedLicense':
- that.swiperImg = that.infoModel.addedLicense
- break;
- case 'registeredCapital':
- that.swiperImg = that.infoModel.registeredCapital
- break;
- case 'ownershipCertificate':
- that.swiperImg = that.infoModel.ownershipCertificate
- break;
- case 'creditInquiry':
- that.swiperImg = that.infoModel.creditInquiry
- break;
- case 'legalPersonality':
- that.swiperImg = that.infoModel.legalPersonality
- break;
- case 'takePhotos':
- that.swiperImg = that.infoModel.takePhotos
- break;
- default:
- that.swiperImg = [];
- }
- //拒绝下标为空 影响轮播样式
- if (that.swiperImg.length == 0) {
- that.swiperImg.push({})
- }
- },
- //步骤文件类型对应
- uploadCurrentFileType(currentId) {
- let that = this;
- switch (currentId) {
- case 'businessLicense':
- that.infoModel.businessLicense = that.swiperImg
- break;
- case 'idCard':
- that.infoModel.idCard = that.swiperImg
- break;
- case 'contract':
- that.infoModel.contract = that.swiperImg
- break;
- case 'prequaliFication':
- that.infoModel.prequaliFication = that.swiperImg
- break;
- case 'risk':
- that.infoModel.risk = that.swiperImg
- break;
- case 'coverLetter':
- that.infoModel.coverLetter = that.swiperImg
- break;
- case 'addedLicense':
- that.infoModel.addedLicense = that.swiperImg
- break;
- case 'registeredCapital':
- that.infoModel.registeredCapital = that.swiperImg
- break;
- case 'ownershipCertificate':
- that.infoModel.ownershipCertificate = that.swiperImg
- break;
- case 'creditInquiry':
- that.infoModel.creditInquiry = that.swiperImg
- break;
- case 'legalPersonality':
- that.infoModel.legalPersonality = that.swiperImg
- break;
- case 'takePhotos':
- that.infoModel.takePhotos = that.swiperImg
- break;
- }
- },
- /**提交稽核*/
- submitLot() {
- let that = this;
- let data = {};
- //客户类型
- data['customType'] = that.infoModel.customType;
- //使用场景
- data['scene'] = that.infoModel.scene;
- let steps = that.steps;
- steps.forEach(function (value) {
- data[value.id] = that.urlBaseJoin(that.infoModel[value.id], "url")
- });
- this.postLotInfo(data);
- },
- postLotInfo(data) {
- //任务Id
- data["infoId"] = this.infoId;
- postAction(this.url.addOrEdit, data).then((res) => {
- if (res.success) {
- this.$message.success("提交成功");
- this.$router.go(-1);
- this.closeCurrent();
- //this.$router.push({path: '/lot/check/task/check', query: {id: record.id}});
- } else {
- this.$message.error(res.message);
- }
- });
- },
- urlBaseJoin(dataArray, name) {
- let newDataArr = [];
- for (var i in dataArray) {
- let dataArrayElementElement = dataArray[i][name];
- newDataArr.push(dataArrayElementElement);
- }
- return newDataArr.toString();
- }
- }
- };
- </script>
- <style lang="less" scoped>
- h3 {
- margin: 20px 0 0 10px;
- }
- .thumb-example {
- //width: 650px;
- margin-top: 20px;
- // background: #000;
- }
- .thumb-example1 {
- width: 1200px;
- margin-top: 20px;
- // background: #000;
- }
- .swiper-slide {
- background-size: cover;
- background-position: center;
- }
- .gallery-top {
- // height: 80% !important;
- /*height: 600px;*/
- width: 100%;
- left: 15%;
- margin-bottom: 50px
- }
- .gallery-topview {
- // height: 80% !important;
- /*height: 600px;*/
- width: 100%;
- left: 15%;
- }
- .gallery-thumbs {
- height: 20% !important;
- box-sizing: border-box;
- padding: 10px 0px;
- /* width: 864px;*/
- margin-left: 10%;
- .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-thumbsview {
- 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;
- }
- .float-info{
- box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
- transition: all 0.3s;
- position: fixed;
- bottom: 50px;
- right: 30px;
- width: 55px;
- height: 55px;
- display: flex;
- flex-flow: column;
- justify-content: center;
- align-items: center;
- z-index: 999;
- background: #1890FF;
- border-radius: 50%;
- cursor: pointer;
- }
- .float-infoPhone{
- margin-bottom:10px;
- float: left;
- right: 11%;
- box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
- transition: all 0.3s;
- position: fixed;
- bottom:3%;
- display: flex;
- flex-flow: column;
- justify-content: center;
- align-items: center;
- z-index: 999;
- //background: #b3d4fc;
- cursor: pointer;
- }
- .floating-button {
- position: fixed;
- bottom: 20px;
- right: 20px;
- z-index: 1000;
- border-radius: 50%;
- color: #fff;
- font-size: 24px;
- width: 50px;
- height: 50px;
- text-align: center;
- line-height: 50px;
- transition: all 0.2s ease;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
- cursor: pointer;
- }
- .floating-button:hover {
- box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
- transform: translateY(-5px);
- }
- .floating-button:active {
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
- transform: translateY(2px);
- }
- .a-upload-line-30 {
- line-height: 30px;
- left: 15%;
- position: relative
- }
- .a-textarea-line-30 {
- height: 77px;
- width: 80vh
- }
- .a-card-70 {
- width: 72%;
- float: left;
- left: 2%;
- position: relative
- }
- .a-card-25 {
- float: left;
- width: 25%
- }
- .cornflowerblue {
- color: cornflowerblue;
- }
- </style>
|