| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103 |
- <template>
- <a-spin :spinning="this.uploading" size="large" tip="正在提交资料,请勿关闭当前网页...">
- <!-- 客户信息-->
- <a-page-header
- style="background-color: #FFFFFF;margin-bottom:10px"
- :title= 'checkState===2 ?"客户信息稽核":checkState===4?"客户信息信息整改":""'
- :sub-title="notes"
- @back="back"
- >
- <!-- 稽核和详情的基础信息-->
- <div v-if='checkState===2 ||checkState===5 '>
- <a-form-model
- ref="form"
- :model="infoModel"
- :rules="rules"
- >
- <a-row>
- <a-col :span="6">
- <a-form-model-item label="客户名称:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.customerName }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户类型:" v-bind="labelCol10">
- <span v-if='infoModel.customType===0' class="cornflowerblue">一类客户(党政军、大型企事业单位)</span>
- <span v-if='infoModel.customType===1' class="cornflowerblue">二类客户(其余用户)</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="使用场景:" v-bind="labelCol4">
- <span v-if='infoModel.scene==="0"' class="cornflowerblue">办公自用</span>
- <span v-if='infoModel.scene==="1"' class="cornflowerblue">自用型呼叫中心</span>
- <span v-if='infoModel.scene==="2"' class="cornflowerblue">经营型呼叫中心</span>
- <span v-if='infoModel.scene==="3"' class="cornflowerblue">经营型会议电话</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="是否突破价格管控:" v-bind="labelCol4">
- <span v-if='infoModel.control==="0"' class="cornflowerblue">未突破</span>
- <span v-if='infoModel.control==="1"' class="cornflowerblue">已突破</span>
- </a-form-model-item>
- </a-col>
- </a-row>
- <a-row>
- <a-col :span="6">
- <a-form-model-item label="客户编号:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.customerNo }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="用户发展员工:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.staffNo }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="用户发展员工姓名:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.staffName }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="用户状态:" v-bind="labelCol4">
- <span v-if='infoModel.userState==="1"' class="cornflowerblue">在用</span>
- <span v-if='infoModel.userState==="2"' class="cornflowerblue">停机</span>
- <span v-if='infoModel.userState==="3"' class="cornflowerblue">拆机</span>
- </a-form-model-item>
- </a-col>
- </a-row>
- <a-row>
- <a-col :span="6">
- <a-form-model-item label="入网时间:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.networkAccessTime }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="首次激活时间:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.firstActivationDate }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="营业执照到期时间:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.businessLicenseDate==="" ?"长期": infoModel.businessLicenseDate }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户名称:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.customerName }}</span>
- </a-form-model-item>
- </a-col>
- </a-row>
- <a-row>
- <a-col :span="6">
- <a-form-model-item label="楼宇名称:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.floorName }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="客户经理手机号:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.managePhone }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="房屋租赁合同到期时间:" v-bind="labelCol9">
- <span class="cornflowerblue">{{ infoModel.houseDate }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="合同到期时间:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.contractDate==="" ?"长期": infoModel.contractDate }}</span>
- </a-form-model-item>
- </a-col>
- </a-row>
- <a-row>
- <a-col :span="6">
- <a-form-model-item label="账户编码:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.accountCode }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="实际装机地址:" v-bind="labelCol4">
- <span class="cornflowerblue">{{ infoModel.installationAddress }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="呼叫中心增值许可证到期日:" v-bind="labelCol9">
- <span class="cornflowerblue">{{ infoModel.zZBusinessLicenseDate }}</span>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="风险评估等级:" v-bind="labelCol4">
- <span v-if='infoModel.riskGrade==="0"' class="cornflowerblue">较低风险</span>
- <span v-if='infoModel.riskGrade==="1"' class="cornflowerblue">低风险</span>
- <span v-if='infoModel.riskGrade==="2"' class="cornflowerblue">中风险</span>
- <span v-if='infoModel.riskGrade==="3"' class="cornflowerblue">高风险</span>
- </a-form-model-item>
- </a-col>
- </a-row>
- <!-- 稽核状态 -->
- <a-row v-if="checkState === 2">
- <a-col :span="6">
- <a-form-model-item label="稽核状态" prop="basicCheckState" v-bind="labelCol4">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true" @change='sizeColor'
- v-model='infoModel.infoResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="24">
- <a-form-model-item label="稽核结果" prop="basicCheckNote" v-bind="labelCol1">
- <a-textarea style="height: 100px" v-model=infoModel.infoResultRemark :disabled="checkState===2?false:true"
- placeholder="请输入上述信息的稽核结果"/>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </a-col>
- <a-col :span="24">
- <a-button v-if='checkState!==4'
- style="display: block;position: relative;left:auto;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin-left: 5%"
- @click="historys">整改历史
- </a-button>
- </a-col>
- </a-row>
- </a-form-model>
- </div>
- <a-form-model
- ref="form"
- :model="infoModel"
- :rules="rules"
- >
- <a-card v-if='checkState===4' 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" :disabled="infoModel.infoResult==='1'?true:false"
- @change="controlChange" prop='customType' v-model:value="infoModel.customType">
- <a-radio :value="0">一类客户(党政军、大型企事业单位)</a-radio>
- <a-radio :value="1">二类客户(其余用户)</a-radio>
- </a-radio-group>
- <div>
- <span style="display: block">2.请选择使用场景</span>
- <a-radio-group style="position: relative;left: 30px;" :disabled="infoModel.infoResult==='1'?true:false"
- @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;" :disabled="infoModel.infoResult==='1'?true:false"
- 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 v-if='checkState===4' 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-item label="用户状态"v-bind="labelCol4" prop="userState" >
- <j-dict-select-tag placeholder="请选择用户状态" :disabled="infoModel.infoResult==='1'?true:false" 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 :disabled="infoModel.infoResult==='1'?true:false" v-model="infoModel.customerName" 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 :disabled="infoModel.infoResult==='1'?true:false" v-model="infoModel.floorName" 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 :disabled="infoModel.infoResult==='1'?true:false" 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 :disabled="infoModel.infoResult==='1'?true:false" 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 :disabled="infoModel.infoResult==='1'?true:false" v-model="infoModel.installationAddress" placeholder="实际装机地址"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="8" 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" :disabled="infoModel.infoResult==='1'?true:false">
- <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="8" 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" :disabled="infoModel.infoResult==='1'?true:false"
- format="YYYY-MM-DD"
- showTime valueFormat="YYYY-MM-DD"/>
- <a-button @click="backDate('contractDate')" >长期</a-button>
- </a-form-model-item>
- </a-col>
- <a-col :span="7" v-if='infoModel.businessLicenseDateIs==="" || infoModel.businessLicenseDateIs===null || infoModel.businessLicenseDateIs==="1" '>
- <a-form-model-item label="营业执照有效期是否长期" prop="businessLicenseDateIs" v-bind="labelCol5">
- <a-radio-group :disabled="infoModel.infoResult==='1'?true:false" 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="7" 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="backDate('businessLicenseDate')" >长期</a-button>
- </a-form-model-item>
- </a-col>
- <!-- (第一类客户办公自用除外,不需提供)-->
- <a-col :span="9">
- <a-form-model-item label="房屋租赁合同到期时间" :prop='infoModel.customType===0 && infoModel.scene==="0" ?"houseDate":""' v-bind="labelCol4">
- <a-date-picker :disabled="infoModel.infoResult==='1'?true:false" 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="12">
- <a-form-model-item label="经营型呼叫中心增值许可证到期日 " prop="zZBusinessLicenseDate" v-bind="labelCol4">
- <a-date-picker :disabled="infoModel.infoResult==='1'?true:false" 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">
- <a-form-model-item label="风险评估等级(非办公自用需提供)" prop="riskGrade" v-bind="labelCol4">
- <a-radio-group v-model="infoModel.riskGrade" button-style="solid" :disabled="infoModel.infoResult==='1'?true:false" >
- <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>
- <div>
- <a-modal v-model:open="open" title="修改历史" @ok="handleOk" :width="700">
- <template slot="footer" >
- <a-button type="primary" style="display:block;margin:0 auto"
- @click="handleOk" >关闭</a-button>
- </template>
- <a-table :columns="columns" :data-source="dataList" :scroll="{ x: 300, y: 500 }" :pagination="false" >
- <template #bodyCell="{ column }">
- </template>
- </a-table>
- </a-modal>
- </div>
- <!-- <hr v-if='checkState!==4'>-->
- <!-- <div style="width: 100%;float:left;margin-left: 20%">-->
- <!-- <a-list size="large" >-->
- <!-- <template>-->
- <!-- <a-list-item style='height: 60px' >-->
- <!-- <a-col :span="6" >-->
- <!-- <div>-->
- <!-- <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>-->
- <!-- <div style="float:left;margin: 50px 10px;" >-->
- <!-- <a-radio-group button-style="solid" :disabled="checkState===2?false:true" @change='sizeColor' v-model='infoModel.infoResult'>-->
- <!-- <a-radio :value="'1'">是</a-radio>-->
- <!-- <a-radio :value="'2'">否</a-radio>-->
- <!-- </a-radio-group>-->
- <!-- </div>-->
- <!-- </div>-->
- <!-- </a-col>-->
- <!-- <a-col :span="18" >-->
- <!-- <div style="clear: both"></div>-->
- <!-- <a-form-model-item label="稽核结果备注:" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >-->
- <!-- <a-textarea v-model=infoModel.infoResultRemark :disabled="checkState===2?false:true" placeholder="请输入上述信息的稽核结果" style="float:left;margin: 3px 3px;height:50px; width: 300px;" />-->
- <!-- </a-form-model-item>-->
- <!-- </a-col>-->
- <!-- </a-list-item>-->
- <!-- </template>-->
- <!-- </a-list>-->
- <!-- </div>-->
- <a-row v-if="checkState === 4 || checkState === 5">
- <a-col :span="6">
- <a-form-model-item label="稽核状态" prop="basicCheckState" v-bind="labelCol4">
- <a-tag class="font-size-14" v-if="infoModel.infoResult == 1" color="#2db7f5">通过</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.infoResult == 2" color="#f50">未通过</a-tag>
- </a-form-model-item>
- </a-col>
- <a-col :span="24">
- <a-form-model-item label="稽核结果" prop="basicCheckNote" v-bind="labelCol1">
- <a-tag class="font-size-14"
- color="orange">{{ infoModel.infoResultRemark }}</a-tag>
- </a-form-model-item>
- </a-col>
- <a-col :span="24">
- <a-button v-if='checkState!==4'
- style="display: block;position: relative;left:auto;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin-left: 5%"
- @click="historys">整改历史
- </a-button>
- </a-col>
- </a-row>
- </a-page-header>
- <div>
- <a-card style="margin-bottom:10px;width: 15%;float: left">
- <a-steps direction="vertical" :current="steps.current" size="small" @change="stepsClick" v-if='checkState===2 ||checkState===5 '>
- <a-step v-for="item in steps.stepsNow" :key="item.title" :status="item.status">
- <a-icon v-if="item.solution" style='color: #faad14;' :type="item.type" :slot="item.slot" />
- <a-icon v-if="item.solutionGreen" style='color: #52c41a;' :type="item.type" :slot="item.slot" />
- <span v-if="item.solutionGreen" style='color: #52c41a;' slot="title" >{{item.title}}</span>
- <span v-else-if='item.status==="error"' style='color: red' slot="title" >{{item.title}}</span>
- <span v-else-if='item.yellow' style='color: sandybrown' slot="title" >{{item.title}}</span>
- <span v-else slot="title" >{{item.title}}</span>
- </a-step>
- </a-steps>
- <a-steps direction="vertical" :current="steps.current" size="small" @change="stepsClick"v-if='checkState===4'>
- <a-step v-for="item in steps.stepsNow" :key="item.title" :status="item.status" >
- <!-- <a-icon :type="item.type" :slot="item.slot" />-->
- <a-icon v-if="item.solution" style='color: #faad14;' :type="item.type" :slot="item.slot" />
- <span v-if="item.solution" style='color: sandybrown' slot="title" >{{item.title}}</span>
- <span v-else slot="title" >{{item.title}}</span>
- </a-step>
- </a-steps>
- <a-button @click="submitAuditLot"v-if='checkState!==5' style="width: 100%;position: relative;top: 10px" type="primary">提交</a-button>
- <a-button @click="outPage"v-if='checkState===5' 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: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.applySignResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.applySignResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.applySignResult)" v-model='infoModel.applySignResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.applySignResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.applySignResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.applySignResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.applySignRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.applySignResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.applySignResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.applySignResult==="2"'
- 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.applySign" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.applySignResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'applySign')">移除
- </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 v-if='checkState===4 && infoModel.applySignResult==="2"'>
- <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: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.threePhotosResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.threePhotosResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.threePhotosResult)" v-model='infoModel.threePhotosResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.threePhotosResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.threePhotosResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.threePhotosResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.threePhotosRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.threePhotosResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.threePhotosResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.threePhotosResult==="2"'
- 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.threePhotos" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.threePhotosResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'threePhotos')">移除
- </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 v-if='checkState===4 && infoModel.threePhotosResult==="2"'>
- <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: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.commitmentBookResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.commitmentBookResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.commitmentBookResult)" v-model='infoModel.commitmentBookResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.commitmentBookResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.commitmentBookResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.commitmentBookResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.commitmentBookRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.commitmentBookResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.commitmentBookResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.commitmentBookResult==="2"'
- 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.commitmentBook" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.commitmentBookResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'commitmentBook')">移除
- </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 v-if='checkState===4 && infoModel.commitmentBookResult==="2"'>
- <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 class="markdown" style="position: relative;top:10px;left: 10%">
- <ul>
- <li>1)请按实际情况完成填写</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.isPriceApprovalResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.isPriceApprovalResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.isPriceApprovalResult)" v-model='infoModel.isPriceApprovalResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.isPriceApprovalResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.isPriceApprovalResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.isPriceApprovalResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.isPriceApprovalRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.isPriceApprovalResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.isPriceApprovalResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.isPriceApprovalResult==="2"'
- 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.isPriceApproval" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.isPriceApprovalResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'isPriceApproval')">移除
- </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 v-if='checkState===4 && infoModel.isPriceApprovalResult==="2"'>
- <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>1)非党政军客户需具备</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.legalIdCardResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.legalIdCardResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.legalIdCardResult)" v-model='infoModel.legalIdCardResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.legalIdCardResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.legalIdCardResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.legalIdCardResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.legalIdCardRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.legalIdCardResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.legalIdCardResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.legalIdCardResult==="2"'
- 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.legalIdCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.legalIdCardResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'legalIdCard')">移除
- </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 v-if='checkState===4 && infoModel.legalIdCardResult==="2"'>
- <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: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.operatorIdCardResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.operatorIdCardResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.operatorIdCardResult)" v-model='infoModel.operatorIdCardResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.operatorIdCardResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.operatorIdCardResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.operatorIdCardResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.operatorIdCardRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.operatorIdCardResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.operatorIdCardResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.operatorIdCardResult==="2"'
- 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.operatorIdCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.operatorIdCardResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'operatorIdCard')">移除
- </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 v-if='checkState===4 && infoModel.operatorIdCardResult==="2"'>
- <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: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.authorizeBookResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.authorizeBookResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.authorizeBookResult)" v-model='infoModel.authorizeBookResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.authorizeBookResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.authorizeBookResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.authorizeBookResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.authorizeBookRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.authorizeBookResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.authorizeBookResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.authorizeBookResult==="2"'
- 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.authorizeBook" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.authorizeBookResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'authorizeBook')">移除
- </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 v-if='checkState===4 && infoModel.authorizeBookResult==="2"'>
- <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: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.zZBusinessLicenseResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.zZBusinessLicenseResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.zZBusinessLicenseResult)" v-model='infoModel.zZBusinessLicenseResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.zZBusinessLicenseResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.zZBusinessLicenseResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.zZBusinessLicenseResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.zZBusinessLicenseRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.zZBusinessLicenseResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.zZBusinessLicenseResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.zZBusinessLicenseResult==="2"'
- 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.zZBusinessLicense" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.zZBusinessLicenseResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'zZBusinessLicense')">移除
- </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 v-if='checkState===4 && infoModel.zZBusinessLicenseResult==="2"'>
- <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>1)自用型呼叫中心、经营型呼叫中心、经营型会议电话均需提供</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.centerBusinessResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.centerBusinessResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.centerBusinessResult)" v-model='infoModel.centerBusinessResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.centerBusinessResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.centerBusinessResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.centerBusinessResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.centerBusinessRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.centerBusinessResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.centerBusinessResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.centerBusinessResult==="2"'
- 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.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 style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.centerBusinessResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'centerBusiness')">移除
- </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 v-if='checkState===4 && infoModel.centerBusinessResult==="2"'>
- <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>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.contractOrProveResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.contractOrProveResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.contractOrProveResult)" v-model='infoModel.contractOrProveResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.contractOrProveResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.contractOrProveResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.contractOrProveResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.contractOrProveRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.contractOrProveResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.contractOrProveResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.contractOrProveResult==="2"'
- 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.contractOrProve" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.contractOrProveResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'contractOrProve')">移除
- </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 v-if='checkState===4 && infoModel.contractOrProveResult==="2"'>
- <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>1)非办公自用需提供</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.riskTableResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.riskTableResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.riskTableResult)" v-model='infoModel.riskTableResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.riskTableResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.riskTableResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.riskTableResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.riskTableRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.riskTableResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.riskTableResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.riskTableResult==="2"'
- 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.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 style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.riskTableResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'riskTable')">移除
- </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 v-if='checkState===4 && infoModel.riskTableResult==="2"'>
- <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: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.trunkTableResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.trunkTableResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.trunkTableResult)" v-model='infoModel.trunkTableResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.trunkTableResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.trunkTableResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.trunkTableResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.trunkTableRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.trunkTableResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.trunkTableResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.trunkTableResult==="2"'
- 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.trunkTable" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.trunkTableResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'trunkTable')">移除
- </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 v-if='checkState===4 && infoModel.trunkTableResult==="2"'>
- <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>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.trunkContractResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.trunkContractResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.trunkContractResult)" v-model='infoModel.trunkContractResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.trunkContractResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.trunkContractResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.trunkContractResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.trunkContractRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.trunkContractResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.trunkContractResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
-
- v-if='checkState===4 && infoModel.trunkContractResult==="2"'
- 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>
- <a-button style="float: left;position: relative;margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="display: block;position: relative;left:20px;margin-top: 10px;float:left;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.trunkContractResult==='2'" style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'trunkContract')">移除
- </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.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 v-if='checkState===4 && infoModel.trunkContractResult==="2"'>
- <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>1)2023年7月26日后入网的需要</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.accessTableResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.accessTableResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.accessTableResult)" v-model='infoModel.accessTableResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.accessTableResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.accessTableResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.accessTableResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.accessTableRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.accessTableResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.accessTableResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.accessTableResult==="2"'
- 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.accessTable" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.accessTableResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'accessTable')">移除
- </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 v-if='checkState===4 && infoModel.accessTableResult==="2"'>
- <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>1)请按照实际情况填写</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.accessPhoneResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.accessPhoneResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.accessPhoneResult)" v-model='infoModel.accessPhoneResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.accessPhoneResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.accessPhoneResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.accessPhoneResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.accessPhoneRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.accessPhoneResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.accessPhoneResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.accessPhoneResult==="2"'
- 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.accessPhone" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.accessPhoneResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'accessPhone')">移除
- </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 v-if='checkState===4 && infoModel.accessPhoneResult==="2"'>
- <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)请按实际情况填写</li>
- </ul>
- </div>
- </a-alert>
- </div>
- <div class="a-card-70">
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核是否通过:" v-bind="labelCol1Note">
- <div v-if="checkState===2?false:true">
- <a-tag class="font-size-14" v-if="infoModel.accessPhotoResult == 1" color="#2db7f5">是</a-tag>
- <a-tag class="font-size-14" v-if="infoModel.accessPhotoResult == 2" color="#f50">否</a-tag>
- </div>
- <div v-if="checkState===2?true:false">
- <a-radio-group button-style="solid" :disabled="checkState===2?false:true"
- @change="basicCheckClick(infoModel.accessPhotoResult)" v-model='infoModel.accessPhotoResult'>
- <a-radio :value="'1'">是</a-radio>
- <a-radio :value="'2'">否</a-radio>
- </a-radio-group>
- </div>
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <div>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="稽核结果备注:" v-bind="labelCol1Note">
- <a-tag v-if="checkState===2?false:true" class="font-size-14"
- color="orange">{{ infoModel.accessPhotoResultRemark }}</a-tag>
- <a-textarea v-if="checkState===2?true:false" style="height: 77px"
- v-model="infoModel.accessPhotoResultRemark"
- placeholder="请输入稽核结果" :disabled="checkState===2?false:true"
- />
- </a-form-model-item>
- <a-form-model-item style="left: 10%;margin-top: 20px" label="上传资料备注:" v-bind="labelCol1Note">
- <a-tag v-if="(checkState===4 && infoModel.accessPhotoResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- class="font-size-14" color="orange">{{ infoModel.accessPhotoRemark }}</a-tag>
- <a-textarea v-if="(checkState===4 && infoModel.accessPhotoResult ==='1' ) || (checkState===2|| checkState===5) ?false:true"
- style="height: 77px"
- :disabled="(checkState===4 && infoModel.accessPhotoResult ==='1' ) || (checkState===2|| checkState===5) ?true:false"
- 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"
- v-if='checkState===4 && infoModel.accessPhotoResult==="2"'
- 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.accessPhoto" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="70%"
- height="450px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <div>
- <a-button style="float: left; margin-top: 10px;border-color: #1890FF;color: #1890FF"
- v-if=" item.urlBase "
- @click="downloadFile(item.url)">下载
- </a-button>
- <a-button style="float: left;margin-top: 10px;border-color: #1890FF;color: #1890FF;margin: 10px"
- v-if=" item.urlBase "
- @click="jumpUrl(item.urlBase)">预览
- </a-button>
- <a-button v-if="item.urlBase&& checkState!==2 &&checkState!==5 && infoModel.accessPhotoResult==='2'"
- style="float: left;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'accessPhoto')">移除
- </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 v-if='checkState===4 && infoModel.accessPhotoResult==="2"'>
- <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>
- </div>
- </a-spin>
- </template>
- <script>
- import {httpAction, getAction, postAction} from '@api/manage'
- /*无数据图片*/
- import noDataPng from '@/assets/nodata.png'
- import {JeecgListMixin} from "@/mixins/JeecgListMixin";
- let Base64 = require('js-base64').Base64
- export default {
- name: "TaskCheckAudit",
- mixins: [JeecgListMixin],
- inject:['closeCurrent'],
- data() {
- return {
- labelCol6: {
- 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},
- }
- },
- labelCol4: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 10},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 12},
- }
- },
- labelCol10: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 5},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 19},
- }
- },
- labelCol9: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 14},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 10},
- }
- },
- labelCol1: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 2},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 22},
- }
- },
- open:false,
- columns:[
- { title: '编辑时间', width: 100, dataIndex: 'updateDate', key: 'updateDate' },
- { title: '修改字段', width: 100, dataIndex: 'updateField', updateField: 'age' },
- { title: '修改内容', width: 100, dataIndex: 'context', key: 'context' },
- ],
- labelCol1Note: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 4},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 15},
- }
- },
- //无数据图片
- noDataPng: noDataPng,
- //客户信息
- info: {},
- url: {
- "getTask":"/smsTurck/customerData/query/getTask",
- "getInfoDataById": "/smsCheck/customerInfo/queryById",
- updateFile: "/smsCheck/customerData/updateFile",
- // "getInfoDataByInfoId": "/smsTurck/customerData/query/infoId",
- "getInfoDataByInfoId": "/smsTurck/customerData/queryDataLogByInfoId",
- minioUpload: "/smsCheck/customerData/uploadMinio",
- // list: "/smsCheck/customerData/list",
- addOrEdit: "/smsTurck/customerData/edit/info"
- },
- //轮播配置
- 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'
- }
- },
- taskId:"",
- notes:"",
- checkState:"",
- history:"",
- dataList:[],
- 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}
- ],
- },
- infoModel:{
- staffName:"",
- applySignResult:"",
- applySignResultRemark:"",
- //三张现场照片 threePhotos
- threePhotosResult:"",
- threePhotosResultRemark:"",
- //DID(含中继线)业务的责任承诺函
- commitmentBookResult:"",
- commitmentBookResultRemark:"",
- //突破客户经理管控价是否有固网价格审批
- isPriceApprovalResult:"",
- isPriceApprovalResultRemark:"",
- //法人身份证
- legalIdCardResult:"",
- legalIdCardResultRemark:"",
- //经办人身份证.
- operatorIdCardResult:"",
- operatorIdCardResultRemark:"",
- //授权函.
- authorizeBookResult:"",
- authorizeBookResultRemark:"",
- //经营性呼叫中心增值业务许可证.
- zZBusinessLicenseResult:"",
- zZBusinessLicenseResultRemark:"",
- //呼叫中心业务说明.
- centerBusinessResult:"",
- centerBusinessResultRemark:"",
- //房屋租赁合同或房产证明.
- contractOrProveResult:"",
- contractOrProveResultRemark:"",
- //风险评估表
- riskTableResult:"",
- riskTableResultRemark:"",
- //中继线预审表
- trunkTableResult:"",
- trunkTableResultRemark:"",
- //中继线合同
- trunkContractResult:"",
- trunkContractResultRemark:"",
- accessTableResult:"",
- accessTableResultRemark:"",
- accessPhoneResult:"",
- accessPhoneResultRemark:"",
- accessPhotoResult:"",
- accessPhotoResultRemark:"",
- infoResult:"",
- infoResultRemark:"",
- dataId:"",
- logId:"",
- infoId:"",
- managePhone:"",
- //客户类型
- customType: 0,
- control:'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:"",
- //三张现场照片 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:"",
- },
- 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'
- }
- },
- //中继线资料
- truckData:{
- //客户类型
- customType: "0",
- //使用场景
- scene: "0",
- //客户营业执照
- businessLicense: [],
- //经办人介绍信和身份证复印件
- idCard: [],
- //标准文本合同工
- contract: [],
- //中继线业务预审表
- prequaliFication: [],
- //风险评估表
- risk: [],
- //呼叫中心/会议电话业务说明函
- coverLetter: [],
- //办公现场和装机地址现场拍照(需客户经理入镜)
- takePhotos: [],
- //增值业务许可证
- addedLicense: [],
- //注册资金不低于50万
- registeredCapital: [],
- //屋租赁合同或房屋产权证明
- ownershipCertificate: [],
- //客户信用查询截屏
- creditInquiry: [],
- //企业法人身份证复印件
- legalPersonality: [],
- businessLicenseModel:{},
- idCardModel:{},
- contractModel:{},
- prequaliFicationModel:{},
- riskModel:{},
- coverLetterModel:{},
- takePhotosModel:{},
- addedLicenseModel:{},
- registeredCapitalModel:{},
- ownershipCertificateModel:{},
- creditInquiryModel:{},
- legalPersonalityModel:{},
- },
- //步骤条
- current: 0,
- currentId: "businessLicense",
- steps: {
- // 当前所在第几部
- current: 0,
- currentId: "",
- stepsNow: {},
- steps00: [
- //不分类型与场景 中继线合同 (必须是正规合同,不能是业务申请单)
- {
- title: '中继线合同',
- content: 'First-content',
- id: "trunkContract",
- },
- //是否有入网申请签报
- {
- title: '入网申请签报 ',
- content: 'First-content',
- id: "applySign",
- },
- //不分类型与场景 三张现场照片
- {
- 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: "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: "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: "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: "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: "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",
- },
- ],
- },
- alertWarning: [
- "没有明确装机地址、分配号段、交换机型号、业务类型和防范通讯信息诈骗的相关责任条款",
- "没有坐席规模、坐席地点、业务使用场景描述、业务使用时间",
- ]
- }
- },
- computed: {
- importMinioUploadAction() {
- return window._CONFIG['domianURL'] + this.url.minioUpload;
- },
- },
- components: {},
- created() {
- this.infoId = this.$route.query.id;
- 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)
- },
- methods: {
- backDate(name){
- if (name==='contractDate'){
- this.infoModel.contractDateIs="1"
- this.infoModel.contractDate=""
- }
- if (name==='businessLicenseDate'){
- this.infoModel.businessLicenseDateIs="1"
- this.infoModel.businessLicenseDate=""
- }
- },
- //客户类型与使用场景监听
- 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
- }
- }
- 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"
- }
- }
- }
- //待整改
- if (this.checkState===4){
- 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+'Result']!==null&& this.infoModel[this.steps.stepsNow[i].id+'Result']!==undefined && this.infoModel[this.steps.stepsNow[i].id+'Result'][0]!==undefined){
- if ( this.infoModel[this.steps.stepsNow[i].id+'Result'][0]==='1'){
- this.steps.stepsNow[i].status = "finish"
- }else {
- this.steps.stepsNow[i].status = "error"
- }
- }
- }
- }
- if (this.infoModel.infoResult==="2"){
- var element = document.getElementById('directRequirements');
- element.style.color = 'red';
- this.isShow=false
- }
- if (this.infoModel.infoResult==="1"){
- var element = document.getElementById('directRequirements');
- element.style.color = 'black';
- this.isShow=true
- }
- }
- //
- // 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"
- // }
- // }
- },
- showModal() {
- this.open = true;
- },
- handleOk() {
- this.open = false;
- },
- historys() {
- this.showModal()
- },
- downloadFile(url){
- const a = document.createElement('a')
- a.style.display='none';
- a.href=url
- document.body.appendChild(a)
- a.click()
- },
- jumpUrl(url){
- var a = document.createElement("a");
- a.setAttribute("href", url);
- a.setAttribute("target", "_blank");
- a.click();
- },
- /**移除文件*/
- 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
- }
- },
- //文件格式限制
- importBeforeUpload(file) {
- var fileType = file.type;
- if (fileType === 'image') {
- if (fileType.indexOf('image') < 0) {
- this.$message.warning('请上传图片');
- return false;
- }
- } else if (fileType === 'file') {
- if (fileType.indexOf('image') >= 0) {
- this.$message.warning('请上传文件');
- return false;
- }
- }
- return true
- },
- //文件上传成功后回调
- importHandleChange(info) {
- },
- /**自定义的上传文件方法*/
- 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) {
- if (that.steps.stepsNow[that.steps.current].status === "error"){
- that.steps.stepsNow[this.steps.current].type="solution",
- that.steps.stepsNow[this.steps.current].slot="icon"
- that.steps.stepsNow[that.steps.current].status = "final"
- this.steps.stepsNow[this.steps.current].solution = true;
- }else {
- that.steps.stepsNow[that.steps.current].status = "wait"
- }
- }
- }
- })
- }
- },
- /**备注坚听*/
- 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"
- }
- if (this.steps.stepsNow[this.steps.current].status = "error"){
- // type:"solution",
- //slot:"icon"
- this.steps.stepsNow[this.steps.current].type="solution",
- this.steps.stepsNow[this.steps.current].slot="icon"
- this.steps.stepsNow[this.steps.current].status = "final"
- this.steps.stepsNow[this.steps.current].solution = true;
- }
- },
- sizeColor(){
- if (this.infoModel.infoResult==="2"){
- var element = document.getElementById('directRequirements');
- element.style.color = 'red';
- }
- if (this.infoModel.infoResult==="1"){
- var element = document.getElementById('directRequirements');
- element.style.color = 'black';
- }
- },
- getTask(infoId){
- var that = this;
- var data = {
- "infoId": infoId,
- }
- postAction(this.url.getTask, data).then((res) => {
- if (res.success) {
- that.taskId=res.result.taskId;
- /** 稽核状态 0:未处理;1:未完善;2:待稽核;3:已整改;4:待整改;5:稽核通过; */
- that.checkState=res.result.checkState;
- }
- })
- },
- 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.dataList=result.history;
- 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.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.customType= result.customType ;
- that.infoModel.scene= result.scene ;
- var customType =result.customType;
- var scene =result.scene;
- if (customType ===0) {
- if (scene ==='0') {
- that.steps.stepsNow = that.steps.steps00
- }
- if (scene ==='1') {
- that.steps.stepsNow = that.steps.steps01
- }
- if (scene ==='2') {
- that.steps.stepsNow= that.steps.steps02
- }
- if (scene ==='3') {
- that.steps.stepsNow = that.steps.steps02
- }
- }
- if (customType ===1) {
- if (scene ==='0') {
- that.steps.stepsNow = that.steps.steps10
- }
- if (scene ==='1') {
- that.steps.stepsNow = that.steps.steps11
- }
- if (scene ==='2') {
- that.steps.stepsNow = that.steps.steps12
- }
- if (scene ==='3') {
- that.steps.stepsNow = that.steps.steps12
- }
- }
- that.checkState=result.checkState;
- //待稽核
- if (that.checkState===2 || that.checkState===5 ){
- for (var i in that.steps.stepsNow) {
- for (var j in result[that.steps.stepsNow[i].id]){
- if (result[that.steps.stepsNow[i].id+'Result']!=undefined &&result[that.steps.stepsNow[i].id+'Result']!=null&& result[that.steps.stepsNow[i].id+'Result'][0]!==undefined){
- if (result[that.steps.stepsNow[i].id+'Result'][0]==='1'){
- that.steps.stepsNow[i].status = "finish"
- }else {
- //that.steps.stepsNow[i].status = "error"
- that.steps.stepsNow[i].type="solution"
- that.steps.stepsNow[i].slot="icon"
- that.steps.stepsNow[i].status = "final"
- that.steps.stepsNow[i].solution = true;
- that.steps.stepsNow[i].yellow = true;
- that.steps.stepsNow[i].Isyellow = true;
- }
- }
- }
- }
- if (that.infoModel.infoResult==="2"){
- var element = document.getElementById('directRequirements');
- element.style.color = 'red';
- }
- if (that.infoModel.infoResult==="1"){
- var element = document.getElementById('directRequirements');
- element.style.color = 'black';
- }
- }
- //待整改
- if (that.checkState===4){
- for (var i in that.steps.stepsNow) {
- for (var j in result[that.steps.stepsNow[i].id]){
- if (result[that.steps.stepsNow[i].id+'Result']!=undefined &&result[that.steps.stepsNow[i].id+'Result']!=null&& result[that.steps.stepsNow[i].id+'Result'][0]!==undefined){
- if (result[that.steps.stepsNow[i].id+'Result'][0]==='1'){
- that.steps.stepsNow[i].status = "finish"
- }else {
- that.steps.stepsNow[i].status = "error"
- }
- }
- }
- }
- if (that.infoModel.infoResult==="2"){
- var element = document.getElementById('directRequirements');
- element.style.color = 'red';
- that.isShow=false
- }
- if (that.infoModel.infoResult==="1"){
- var element = document.getElementById('directRequirements');
- element.style.color = 'black';
- that.isShow=true
- }
- }
- }
- })
- }
- },
- /**获取客户信息*/
- 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.staffName =result.staffName;
- that.notes =result.notes;
- }
- })
- }
- return resultA
- },
- outPage(){
- this.$router.push({path: '/truck/check/task/check', query: {id: this.taskId}});
- },
- /**提交稽核*/
- submitAuditLot() {
- this.uploading=true;
- var info = "yes";
- for (var i in this.steps.stepsNow) {
- if (this.checkState===2){
- if (this.steps.stepsNow[i].status === "wait" || this.steps.stepsNow[i].status===undefined || this.steps.stepsNow[i].status===''|| this.steps.stepsNow[i].status===null ) {
- if (this.steps.stepsNow[i].type!=='solution'){
- this.$message.warn( this.steps.stepsNow[i].title +"未进行稽核...");
- info="no";
- }
- }
- if (this.infoModel.infoResult==="" || this.infoModel.infoResult===null){
- this.$message.warn( "中继线基本信息未进行稽核...");
- info="no";
- }
- }
- if (this.checkState===4){
- if (this.steps.stepsNow[i].status !== "finish" && this.steps.stepsNow[i].type!=='solution') {
- this.$message.warn( this.steps.stepsNow[i].title +"资料或备注都未整改!!!");
- info="no";
- }
- }
- }
- if (info==="no"){
- this.uploading=false;
- return
- }
- var that = this;
- var data=that.infoModel ;
- data.stepsNow=that.steps.stepsNow;
- //var dataToStr =this.dataListToStr(data);
- //data=dataToStr;
- postAction("/smsTurck/customerData/addLog", data).then((res) => {
- if (res.success) {
- this.uploading=false;
- this.$message.success("提交成功", 3);
- this.addIng == true
- this.closeCurrent();
- this.$router.push({path: '/truck/check/task/check', query: {id: that.taskId}});
- } else {
- this.uploading=false;
- if ( res.message !==null){
- this.$message.error( res.message);
- }else {
- this.$message.error("提交失败");
- }
- }
- }).finally(() => {
- this.uploading = false;
- })
- },
- /**节点状态*/
- basicCheckClick(state) {
- let boolean = state == "1" ? true : false;
- if (boolean) {
- if ( (this.steps.stepsNow[this.steps.current]["status"] === "wait"|| this.steps.stepsNow[this.steps.current]["status"] ==="process")
- && this.steps.stepsNow[this.steps.current]["type"] !== "solution" || !this.steps.stepsNow[this.steps.current].Isyellow){
- this.steps.stepsNow[this.steps.current]["status"] = "finish";
- }else {
- this.steps.stepsNow[this.steps.current]["status"] = "finish";
- this.steps.stepsNow[this.steps.current].solutionGreen = true;
- this.steps.stepsNow[this.steps.current].yellow = false;
- this.steps.stepsNow[this.steps.current].slot="icon"
- this.steps.stepsNow[this.steps.current].type="solution"
- this.steps.stepsNow[this.steps.current].solution = false;
- }
- } else {
- this.steps.stepsNow[this.steps.current].solutionGreen = false;
- this.steps.stepsNow[this.steps.current].solution = false;
- this.steps.stepsNow[this.steps.current].slot=""
- this.steps.stepsNow[this.steps.current].status = "error";
- this.steps.stepsNow[this.steps.current].type=""
- }
- //若以前稽核整改过
- if ( this.steps.stepsNow[this.steps.current].Isyellow && !this.steps.stepsNow[this.steps.current].solutionGreen){
- this.steps.stepsNow[this.steps.current].type="solution"
- this.steps.stepsNow[this.steps.current].slot="icon"
- this.steps.stepsNow[this.steps.current].status = "final"
- this.steps.stepsNow[this.steps.current].solution = true;
- this.steps.stepsNow[this.steps.current].yellow = true;
- }
- },
- /**提醒点击事件*/
- alertText(text) {
- let that = this;
- let current = that.current;
- //卡类型
- let blockType = that.lotData.blockType;
- switch (current) {
- case 0:
- if (blockType == 0) {
- //测试卡
- let basicCheckNote = this.operatorIdCardApplicationModel.basicCheckNote;
- basicCheckNote = basicCheckNote + " " + text;
- this.lotData.operatorIdCardApplicationModel.basicCheckNote = basicCheckNote
- } else {
- //正式卡
- let basicCheckNote = this.lotData.contractModel.basicCheckNote;
- basicCheckNote = basicCheckNote + " " + text;
- this.lotData.contractModel.basicCheckNote = basicCheckNote
- }
- break;
- case 1:
- let basicCheckNote = this.lotData.empowerModel.basicCheckNote;
- basicCheckNote = basicCheckNote + " " + text;
- this.lotData.empowerModel.basicCheckNote = basicCheckNote
- break;
- case 2:
- let basicCheckNote2 = this.lotData.idCardModel.basicCheckNote;
- basicCheckNote2 = basicCheckNote2 + " " + text;
- this.lotData.idCardModel.basicCheckNote = basicCheckNote2
- break;
- case 3:
- let basicCheckNote3 = this.lotData.customerIdModel.basicCheckNote;
- basicCheckNote3 = basicCheckNote3 + " " + text;
- this.lotData.customerIdModel.basicCheckNote = basicCheckNote3
- break;
- case 4:
- let basicCheckNote4 = this.lotData.riskModel.basicCheckNote;
- basicCheckNote4 = basicCheckNote4 + " " + text;
- this.lotData.riskModel.basicCheckNote = basicCheckNote4
- break;
- case 5:
- let basicCheckNote5 = this.lotData.priceApprovalModel.basicCheckNote;
- basicCheckNote5 = basicCheckNote5 + " " + text;
- this.lotData.priceApprovalModel.basicCheckNote = basicCheckNote5
- break;
- }
- },
- /**步骤条点击事件*/
- 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!== "error") {
- this.steps.stepsNow[i].status = "wait"
- }
- if (this.steps.stepsNow[i].status === "finish") {
- this.steps.stepsNow[i].status === "finish"
- }
- if (this.steps.stepsNow[i].status === "error") {
- this.steps.stepsNow[i].status === "error"
- }
- }
- if (this.steps.stepsNow[current].status!== "finish" && this.steps.stepsNow[current].status!== "error" ) {
- this.steps.stepsNow[current].status = "process"
- }
- },
- /**步骤文件类型对应*/
- currentFileType(currentId) {
- let that = this;
- this.swiperImg = {}
- switch (currentId) {
- case 'businessLicense':
- that.swiperImg = that.truckData.businessLicense
- break;
- case 'idCard':
- that.swiperImg = that.truckData.idCard
- break;
- case 'contract':
- that.swiperImg = that.truckData.contract
- break;
- case 'prequaliFication':
- that.swiperImg = that.truckData.prequaliFication
- break;
- case 'risk':
- that.swiperImg = that.truckData.risk
- break;
- case 'coverLetter':
- that.swiperImg = that.truckData.coverLetter
- break;
- case 'addedLicense':
- that.swiperImg = that.truckData.addedLicense
- break;
- case 'registeredCapital':
- that.swiperImg = that.truckData.registeredCapital
- break;
- case 'ownershipCertificate':
- that.swiperImg = that.truckData.ownershipCertificate
- break;
- case 'creditInquiry':
- that.swiperImg = that.truckData.creditInquiry
- break;
- case 'legalPersonality':
- that.swiperImg = that.truckData.legalPersonality
- break;
- case 'takePhotos':
- that.swiperImg = that.truckData.takePhotos
- break;
- default:
- that.swiperImg = [];
- }
- //拒绝下标为空 影响轮播样式
- if (that.swiperImg.length == 0) {
- that.swiperImg.push({})
- }
- },
- /**返回上一级*/
- back() {
- this.$router.go(-1);
- //关闭当前页
- this.closeCurrent();
- },
- /**获取客户信息*/
- queryInfoById(id) {
- let url = this.url.queryInfo;
- let params = {
- id: id
- }
- let that = this;
- getAction(url, params).then(res => {
- if (res.success) {
- that.info = res.result;
- }
- }).finally(() => {
- })
- },
- /**获取中继线文件数据*/
- truckInfoById(id) {
- let that = this;
- let url = this.url.truckInfo;
- let params = {
- infoId: id
- }
- postAction(url, params).then(res => {
- if (res.success) {
- let data = res.result;
- that.info.dataId = data.id
- that.truckData.businessLicense = that.packageArr(data.businessLicense);
- that.truckData.contract = that.packageArr(data.contract);
- that.truckData.prequaliFication = that.packageArr(data.prequaliFication);
- that.truckData.risk = that.packageArr(data.risk);
- that.truckData.coverLetter = that.packageArr(data.coverLetter);
- that.truckData.takePhotos = that.packageArr(data.takePhotos);
- that.truckData.addedLicense = that.packageArr(data.addedLicense);
- that.truckData.registeredCapital = that.packageArr(data.registeredCapital);
- that.truckData.ownershipCertificate = that.packageArr(data.ownershipCertificate);
- that.truckData.creditInquiry = that.packageArr(data.creditInquiry);
- that.truckData.legalPersonality = that.packageArr(data.legalPersonality);
- //客户类型
- that.truckData.customType = data.customType.toString();
- //使用场景
- that.truckData.scene = data.scene.toString();
- let customType = that.truckData.customType;
- let scene = that.truckData.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
- }
- }
- }
- }).finally(() => {
- })
- },
- /**包装轮播数据*/
- packageArr(data) {
- let id = 0;
- let newArr = []
- if (data == null) {
- newArr.push({})
- return newArr;
- }
- let splice = data.split(",");
- for (var i in splice) {
- id = id + 1;
- let filePath = splice[i];
- if (filePath == "") {
- break;
- }
- let fileName = filePath.split("/");
- fileName = fileName[fileName.length - 1];
- let swipData = {
- id: id,
- urlBase: window._CONFIG['onlinePreviewDomainURL'] + '?url='
- + encodeURIComponent(
- Base64.encode(
- (filePath)
- )),
- url: filePath,
- fileName: fileName
- }
- newArr.push(swipData);
- }
- return newArr;
- },
- },
- }
- </script>
- <style lang="less" scoped>
- .noDataPng {
- width: 70%;
- height: 70%;
- border: 1px solid;
- }
- .alert-warning {
- cursor: pointer;
- margin-bottom: 10px !important;
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- color: rgba(0, 0, 0, 0.65);
- font-size: 14px;
- font-variant: tabular-nums;
- line-height: 1.5;
- list-style: none;
- font-feature-settings: 'tnum';
- position: relative;
- padding: 8px 15px 8px 37px;
- word-wrap: break-word;
- border-radius: 4px;
- background-color: #fffbe6;
- border: 1px solid #ffe58f;
- padding: 8px 15px;
- }
- h3 {
- margin: 20px 0 0 10px;
- }
- .thumb-example {
- //width: 800px;
- 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-thumbs {
- height: 20% !important;
- box-sizing: border-box;
- padding: 10px 0px;
- width: 620px;
- 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;
- }
- margin-bottom-10 {
- margin-bottom: 10px;
- }
- .cornflowerblue {
- color: cornflowerblue;
- }
- .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%
- }
- .a-upload-line-30 {
- line-height: 30px;
- left: 15%;
- position: relative
- }
- .font-size-14 {
- font-size:14px
- }
- </style>
|