| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453 |
- <template>
- <a-spin :spinning="uploading" size="large" tip="正在提交资料,请勿关闭当前网页...">
- <!-- 客户信息-->
- <a-page-header
- style="background-color: #FFFFFF;margin-bottom:10px"
- title="行短稽核资料"
- sub-title=""
- @back="back"
- >
- <div>
- <a-form-model
- ref="form"
- :model="infoModel"
- :rules="rules"
- >
- <a-row>
- <a-col :span="6">
- <a-form-model-item label="客户编号" prop="customerName" v-bind="labelCol4" >
- <a-input v-model="infoModel.customerNo" placeholder="客户编号" :disabled='true'></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="用户编号" prop="customerName" 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="customerName" v-bind="labelCol4" >
- <a-input 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="customerName" v-bind="labelCol4">
- <a-input :disabled='isShow' v-model="infoModel.customerName" placeholder="客户名称/使用人名称"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="用户状态" prop="userState" v-bind="labelCol4">
- <a-input v-model="infoModel.userState" 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 v-model="infoModel.staffNo" placeholder="用户发展员工" :disabled='true'></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="码号" prop="codeNumber" v-bind="labelCol4">
- <a-input :disabled='isShow' v-model="infoModel.codeNumber" placeholder="(接入开通码号95/96/10/11/12/106/400(不含拓展位长))"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="号码详细用途" prop="numberUse" v-bind="labelCol4">
- <a-input :disabled='isShow' v-model="infoModel.numberUse" placeholder="(文字描述,最大200字。)"></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='isShow' v-model="infoModel.managePhone" placeholder="客户经理手机号"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="单位联系人手机号" prop="codeNumberContactPhone" v-bind="labelCol4">
- <a-input :disabled='isShow' v-model="infoModel.codeNumberContactPhone" placeholder="业务合同码号使用单位联系人手机号"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :span="8">
- <a-form-model-item label="签约号码与证书下发码号是否一致" prop="isSigningNumber" v-bind="labelCol5">
- <a-radio-group v-model="infoModel.isSigningNumber" button-style="solid" @change="stepLoading" :disabled='isShow' >
- <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-row>
- <a-row>
- <a-col :span="7" v-if='infoModel.contractDateDateIs==="" || infoModel.contractDateDateIs===null || infoModel.contractDateDateIs==="1" '>
- <a-form-model-item label="合同到期时间是否长期" prop="contractDateDateIs" v-bind="labelCol4">
- <a-radio-group :disabled='isShow' v-model="infoModel.contractDateDateIs" button-style="solid" @change="stepLoading">
- <a-radio-button value="0">否</a-radio-button>
- <a-radio-button value="1">是</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="7" v-if='infoModel.contractDateDateIs==="0" ' >
- <a-form-item label="合同到期时间" prop="filingsDateDateIs" v-bind="labelCol4">
- <j-date :disabled='isShow'
- style="width: 210px"
- v-model="infoModel.contractDateDate"
- format="YYYY-MM-DD"
- :placeholder="['到期时间']"
- />
- </a-form-item>
- </a-col>
- <a-col :span="7" v-if='infoModel.businessLicenseDateDateIs==="" || infoModel.businessLicenseDateDateIs===null || infoModel.businessLicenseDateDateIs==="1" '>
- <a-form-model-item label="营业执照有效期是否长期" prop="businessLicenseDateDateIs" v-bind="labelCol4">
- <a-radio-group :disabled='isShow' v-model="infoModel.businessLicenseDateDateIs" 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.businessLicenseDateDateIs==="0"'>
- <a-form-item label="营业执照到期时间" prop="filingsDateDateIs" v-bind="labelCol4" >
- <j-date :disabled='isShow'
- style="width: 210px"
- v-model="infoModel.businessLicenseDateDate"
- format="YYYY-MM-DD"
- :placeholder="['到期时间']"
- />
- </a-form-item>
- </a-col>
- <a-col :span="5">
- <a-form-model-item label="资料是否完整" prop="isAll" v-bind="labelCol4">
- <a-radio-group :disabled='isShow' v-model="infoModel.isAll" button-style="solid" @change="stepLoading">
- <a-radio-button value="0">否</a-radio-button>
- <a-radio-button value="1">是</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="7" v-if='infoModel.filingsDateDateIs==="" || infoModel.filingsDateDateIs===null || infoModel.filingsDateDateIs==="1" '>
- <a-form-model-item label="备案到期时间是否长期" prop="filingsDateDateIs" v-bind="labelCol4">
- <a-radio-group :disabled='isShow' v-model="infoModel.filingsDateDateIs" 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.filingsDateDateIs==="0" '>
- <a-form-item label="备案通知到期时间" prop="filingsDateDateIs" v-bind="labelCol4">
- <j-date
- style="width: 210px" :disabled='isShow'
- v-model="infoModel.filingsDateDate"
- format="YYYY-MM-DD"
- :placeholder="['到期时间']"
- />
- </a-form-item>
- </a-col>
- <a-col :span="7" v-if='infoModel.codeNumberDateDateIs==="" || infoModel.codeNumberDateDateIs===null || infoModel.codeNumberDateDateIs==="1" '>
- <a-form-model-item label="码号证书有效期是否长期" prop="codeNumberDateDateIs" v-bind="labelCol4">
- <a-radio-group :disabled='isShow' v-model="infoModel.codeNumberDateDateIs" 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.codeNumberDateDateIs==="0" '>
- <a-form-item label="码号证书到期时间" prop="filingsDateDateIs" v-bind="labelCol4">
- <j-date :disabled='isShow'
- style="width: 210px"
- v-model="infoModel.codeNumberDateDate"
- format="YYYY-MM-DD"
- :placeholder="['到期时间']"
- />
- </a-form-item>
- </a-col>
- <a-col :span="7" v-if='infoModel.permitDateDateIs==="" || infoModel.permitDateDateIs===null || infoModel.permitDateDateIs==="1" '>
- <a-form-model-item label="增值业务许可是否长期" prop="codeNumberDateDateIs" v-bind="labelCol4">
- <a-radio-group :disabled='isShow' v-model="infoModel.permitDateDateIs" 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="8" v-if='infoModel.permitDateDateIs==="0" '>
- <a-form-item label="增值业务许可证到期时间" prop="filingsDateDateIs" v-bind="labelCol4">
- <j-date :disabled='isShow'
- style="width: 210px"
- v-model="infoModel.permitDateDate"
- format="YYYY-MM-DD"
- :placeholder="['到期时间']"
- />
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="是否完成整改" prop="isComplete" v-bind="labelCol4">
- <a-radio-group v-model="infoModel.isComplete" :disabled='isShow' button-style="solid" @change="stepLoading">
- <a-radio-button value="0">否</a-radio-button>
- <a-radio-button value="1">是</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="6">
- <a-form-model-item label="是否为CSP商" prop="isCsp" v-bind="labelCol4">
- <a-radio-group v-model="infoModel.isCsp" :disabled='isShow' button-style="solid" @change="stepLoading">
- <a-radio-button value="0">否</a-radio-button>
- <a-radio-button value="1">是</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- <a-col :span="10">
- <a-form-model-item label="码号证书营业执照合同签约方主体是否一致" prop="codeNumberBusinessLicense" v-bind="labelCol5">
- <a-radio-group :disabled='isShow' v-model="infoModel.codeNumberBusinessLicense" button-style="solid" @change="stepLoading">
- <a-radio-button value="0">否</a-radio-button>
- <a-radio-button value="1">是</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </a-col>
- </a-row>
- <a-row>
- </a-row>
- <hr>
- <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='true' 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='true' placeholder="请输入上述信息的稽核结果" style="float:left;margin: 3px 3px;height:30px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list><div v-if='infoModel.infoResult==="2"' style="color: red;margin:0 auto" >稽核未通请确认上述填写信息...</div>
- </div>
- </a-form-model>
- </div>
- <!-- <hr v-if="infoModel.infoResult==='1'">-->
- <!-- <div style="width: 100%;float:left;margin-left: 35%" v-if="infoModel.infoResult==='1'">-->
- <!-- <a-list size="large" >-->
- <!-- <template>-->
- <!-- <a-list-item style='height: 60px' >-->
- <!-- <a-col :span="24" >-->
- <!-- <div>-->
- <!-- <div style="float:left;margin: 50px 3px;color: red" id="directRequirements">上述信息稽核未通过请确认填写信息...</div>-->
- <!--<!– <div style="float:left;margin: 50px 10px;" >–>-->
- <!--<!– <a-radio-group button-style="solid" v-model='infoModel.infoResult'>–>-->
- <!--<!– <a-radio :value="'1'">是</a-radio>–>-->
- <!--<!– <a-radio :value="'2'">否</a-radio>–>-->
- <!--<!– </a-radio-group>–>-->
- <!--<!– </div>–>-->
- <!-- </div>-->
- <!-- </a-col>-->
- <!-- </a-list-item>-->
- <!-- </template>-->
- <!-- </a-list>-->
- <!-- </div>-->
- </a-page-header>
- <!-- 步骤条-->
- <a-card style="margin-bottom:10px;width: 15%;float: left">
- <a-steps direction="vertical" :current="steps.current" size="small" @change="stepsClick">
- <a-step v-for="item in steps.stepsNow" :key="item.title" :title="item.title" :status="item.status" >
- <a-icon :type="item.type" :slot="item.slot" />
- </a-step>
- </a-steps>
- <a-button @click="addIsStaging" style="width: 100%" type="warn">暂存</a-button>
- <a-button @click="submitAuditLot" style="width: 100%;position: relative;top: 10px" type="primary">提交申请</a-button>
- </a-card>
- <!-- 合同到期时间(YYYY-MM-DD)-->
- <a-card v-if="steps.currentId == 'contractDate'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">合同资料</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.contractDateResult'>
- <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 :disabled='true' v-model=infoModel.contractDateResultRemark placeholder="请输入合同到期时间的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="合同资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.contractDateResult==='1'?true:false"
- v-model="infoModel.contractDateRemark"
- @change="textareaChange('contractDate','contractDateRemark')"
- placeholder="如没有合同到期时间,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.contractDate" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.contractDateResult ==='2'"
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'contractDate')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.contractDate"
- :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, 'contractDate')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.contractDateResult ==='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>
- </a-card>
- <!-- 营业执照到期时间-->
- <a-card v-if="steps.currentId == 'businessLicenseDate'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">营业执照资料</span>
- </div>
- <!-- 文件上传-->
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.businessLicenseDateResult'>
- <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 :disabled='true' v-model=infoModel.businessLicenseDateResultRemark placeholder="请输入营业执照到期时间的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="营业执照资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.businessLicenseDateResult==='1'?true:false"
- @change="textareaChange('businessLicenseDate','businessLicenseDateRemark')"
- v-model="infoModel.businessLicenseDateRemark"
- placeholder="如没有营业执照到期时间资料,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.businessLicenseDate" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.businessLicenseDateResult ==='2'"
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'businessLicenseDate')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.businessLicenseDate"
- :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, 'businessLicenseDate')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.businessLicenseDateResult ==='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>
- </a-card>
- <!-- 码号证书到期时间资料-->
- <a-card v-if="steps.currentId == 'codeNumberDate'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px">码号证书资料</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.codeNumberDateResult'>
- <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 :disabled='true' v-model=infoModel.codeNumberDateResultRemark placeholder="请输入码号证书到期时间的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="码号证书资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.codeNumberDateResult==='1'?true:false"
- @change="textareaChange('codeNumberDate','codeNumberDateRemark')"
- v-model="infoModel.codeNumberDateRemark"
- placeholder="如没有码号证书到期时间资料,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.codeNumberDate" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.codeNumberDateResult ==='2'"
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'codeNumberDate')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.codeNumberDate"
- :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, 'codeNumberDate')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.codeNumberDateResult ==='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>
- </a-card>
- <!-- 备案通知到期时间-->
- <a-card v-if="steps.currentId == 'filingsDate'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 备案通知资料</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.filingsDateResult'>
- <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 :disabled='true' v-model=infoModel.filingsDateResultRemark placeholder="请输入备案通知到期时间的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="备案通知到期时间资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.filingsDateResult==='1'?true:false"
- @change="textareaChange('filingsDate','filingsDateRemark')"
- v-model="infoModel.filingsDateRemark"
- placeholder="如没有备案通知到期时间资料,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.filingsDate" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.filingsDateResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'filingsDate')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.filingsDate"
- :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, 'filingsDate')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.filingsDateResult ==='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>
- </a-card>
- <!-- 增值业务许可证到期时间-->
- <a-card v-if="steps.currentId == 'permitDate'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 增值业务许可证资料</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.permitDateResult'>
- <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 :disabled='true' v-model=infoModel.permitDateResultRemark placeholder="请输入增值业务许可证到期时间资料的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="业务许可证资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.permitDateResult==='1'?true:false"
- @change="textareaChange('permitDate','permitDateRemark')"
- v-model="infoModel.permitDateRemark"
- placeholder="如没有增值业务许可证到期时间资料,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.permitDate" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.permitDateResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'permitDate')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.permitDate"
- :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, 'permitDate')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.permitDateResult ==='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>
- </a-card>
- <!-- 法人/责任人证件-->
- <a-card v-if="steps.currentId == 'corporationCard'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 法人/责任人证件资料</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.corporationCardResult'>
- <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 :disabled='true' v-model=infoModel.corporationCardResultRemark placeholder="请输入法人/责任人证件资料的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="法人/责任人证件资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.corporationCardResult==='1'?true:false"
- @change="textareaChange('corporationCard','corporationCardRemark')"
- v-model="infoModel.corporationCardRemark"
- placeholder="如没有法人/责任人证件,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.corporationCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.corporationCardResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'corporationCard')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.corporationCard"
- :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, 'corporationCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.corporationCardResult ==='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>
- </a-card>
- <!-- 责任人授权书-->
- <a-card v-if="steps.currentId == 'personResponsible'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 责任人授权书资料</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.personResponsibleResult'>
- <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 :disabled='true' v-model=infoModel.personResponsibleResultRemark placeholder="请输入责任人授权书资料的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="责任人授权书资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.personResponsibleResult==='1'?true:false"
- @change="textareaChange('personResponsible','personResponsibleRemark')"
- v-model="infoModel.personResponsibleRemark"
- placeholder="如没有责任人授权书资料,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.personResponsible" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.personResponsibleResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'personResponsible')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.personResponsible"
- :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, 'personResponsible')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.personResponsibleResult ==='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>
- </a-card>
- <!-- 经办人证件-->
- <a-card v-if="steps.currentId == 'operatorCard'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 经办人证件资料</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.operatorCardResult'>
- <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 :disabled='true' v-model=infoModel.operatorCardResultRemark placeholder="请输入经办人证件资料的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="经办人证件资料备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.operatorCardResult==='1'?true:false"
- v-model="infoModel.operatorCardRemark"
- @change="textareaChange('operatorCard','operatorCardRemark')"
- placeholder="如没有经办人证件资料,需要说明原因"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.operatorCard" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.operatorCardResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'operatorCard')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.operatorCard"
- :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, 'operatorCard')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.operatorCardResult ==='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>
- </a-card>
- <!-- 经办人手持身份证照片(背景需为电信营业厅或白墙-->
- <a-card v-if="steps.currentId == 'operatorCardPhone'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 经办人手持身份证照片</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.operatorCardPhoneResult'>
- <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 :disabled='true' v-model=infoModel.operatorCardPhoneResultRemark placeholder="请输入经办人手持身份证照片的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="经办人手持身份证照片备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.operatorCardPhoneResult==='1'?true:false"
- @change="textareaChange('operatorCardPhone','operatorCardPhoneRemark')"
- v-model="infoModel.operatorCardPhoneRemark"
- placeholder="经办人手持身份证照片备注"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.operatorCardPhone" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.operatorCardPhoneResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'operatorCardPhone')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.operatorCardPhone"
- :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, 'operatorCardPhone')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.operatorCardPhoneResult ==='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>
- </a-card>
- <!-- 机房设备照片-->
- <a-card v-if="steps.currentId == 'devicePhone'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 机房设备照片</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.devicePhoneResult'>
- <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 :disabled='true' v-model=infoModel.devicePhoneResultRemark placeholder="请输入机房设备照片的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="机房设备照片备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.devicePhoneResult==='1'?true:false"
- @change="textareaChange('devicePhone','devicePhoneRemark')"
- v-model="infoModel.devicePhoneRemark"
- placeholder="机房设备照片"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.devicePhone" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.devicePhoneResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'devicePhone')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.devicePhone"
- :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, 'devicePhone')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.devicePhoneResult ==='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>
- </a-card>
- <!-- 短信模板-->
- <a-card v-if="steps.currentId == 'textMessage'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 短信模板</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.textMessageResult'>
- <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 :disabled='true' v-model=infoModel.textMessageResultRemark placeholder="请输入短信模版的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="短信模板备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.textMessageResult==='1'?true:false"
- @change="textareaChange('textMessage','textMessageRemark')"
- v-model="infoModel.textMessageRemark"
- placeholder="短信模板"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.textMessage" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.textMessageResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'textMessage')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.textMessage"
- :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, 'textMessage')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.textMessageResult ==='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>
- </a-card>
- <!-- 端口类短信业务责任承诺书-->
- <a-card v-if="steps.currentId == 'textMessageBook'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 端口类短信业务责任承诺书</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.textMessageBookResult'>
- <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 :disabled='true' v-model=infoModel.textMessageBookResultRemark placeholder="请输入端口类短信业务责任承诺书的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="短信业务责任承诺书备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.textMessageBookResult==='1'?true:false"
- @change="textareaChange('textMessageBook','textMessageBookRemark')"
- v-model="infoModel.textMessageBookRemark"
- placeholder="端口类短信业务责任承诺书"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.textMessageBook" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.textMessageBookResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'textMessageBook')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.textMessageBook"
- :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, 'textMessageBook')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.textMessageBookResult ==='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>
- </a-card>
- <!-- 信息安全责任承诺书-->
- <a-card v-if="steps.currentId == 'secureBook'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 信息安全责任承诺书</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.secureBookResult'>
- <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 :disabled='true' v-model=infoModel.secureBookResultRemark placeholder="请输入信息安全责任承诺书的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="信息安全责任承诺书备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.secureBookResult==='1'?true:false"
- @change="textareaChange('secureBook','secureBookRemark')"
- v-model="infoModel.secureBookRemark"
- placeholder="信息安全责任承诺书"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.secureBook" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.secureBookResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'secureBook')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.secureBook"
- :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, 'secureBook')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.secureBookResult ==='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>
- </a-card>
- <!-- 特殊资费审批(标准资费无需提供)-->
- <a-card v-if="steps.currentId == 'special'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 特殊资费审批(标准资费无需提供)</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.specialResult'>
- <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 :disabled='true' v-model=infoModel.specialResultRemark placeholder="请输入特殊资费审批的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="特殊资费审批备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.specialResult==='1'?true:false"
- @change="textareaChange('special','specialRemark')"
- v-model="infoModel.specialRemark"
- placeholder="特殊资费审批(标准资费无需提供)"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.special" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.specialResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'special')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.special"
- :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, 'special')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.specialResult ==='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>
- </a-card>
- <!-- 入网签报-->
- <a-card v-if="steps.currentId == 'networkAccess'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 入网签报</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.networkAccessResult'>
- <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 :disabled='true' v-model=infoModel.networkAccessResultRemark placeholder="请输入入网签报的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="入网签报备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.networkAccessResult==='1'?true:false"
- @change="textareaChange('networkAccess','networkAccessRemark')"
- v-model="infoModel.networkAccessRemark"
- placeholder="入网签报"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.networkAccess" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.networkAccessResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'networkAccess')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.networkAccess"
- :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, 'networkAccess')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.networkAccessResult ==='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>
- </a-card>
- <!-- 集团价格审批-->
- <a-card v-if="steps.currentId == 'groupPriceApproval'"
- style="margin-bottom:10px;
- float: left;width: 83%;left: 2%">
- <div slot="title">
- <span style="float: left;position: relative;top: 4px"> 集团价格审批</span>
- </div>
- <div style="width: 100%;float:left;margin-left: 10%">
- <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 v-model='infoModel.groupPriceApprovalResult'>
- <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 :disabled='true' v-model=infoModel.groupPriceApprovalResultRemark placeholder="请输入集团价格审批的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
- </a-form-model-item>
- </a-col>
- </a-list-item>
- </template>
- </a-list>
- </div>
- <!-- 文件上传-->
- <!-- 附件-->
- <div>
- <a-form-model-item style="left: 10%;width: 70%;" label="集团价格审批备注:" v-bind="labelCol1Note">
- <a-textarea style="height: 77px" :disabled="infoModel.groupPriceApprovalResult==='1'?true:false"
- @change="textareaChange('groupPriceApproval','groupPriceApprovalRemark')"
- v-model="infoModel.groupPriceApprovalRemark"
- placeholder="集团价格审批"
- />
- <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
- </a-form-model-item>
- </div>
- <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.groupPriceApproval" :key="item.id">
- <iframe
- v-if="item.urlBase"
- frameborder="1"
- :src="item.urlBase"
- ref="ifr"
- width="704px"
- height="445px"
- scrolling="auto">
- </iframe>
- <img style="width: 70%;height: 70%;border: 1px solid;"
- v-if="!item.urlBase" :src="noDataPng" border="1">
- <a-button v-if="infoModel.groupPriceApprovalResult ==='2' "
- style="display: block;margin-top: 10px;border-color: red;color: red"
- danger @click="removeFile(item,'groupPriceApproval')">移除
- </a-button>
- </swiper-slide>
- <!-- <div
- class="swiper-button-next swiper-button-white"
- slot="button-next"
- ></div>
- <div
- class="swiper-button-prev swiper-button-white"
- slot="button-prev"
- ></div>-->
- </swiper>
- <!-- swiper2 Thumbs -->
- <swiper
- class="swiper gallery-thumbs"
- :options="swiperOptionThumbs"
- ref="swiperThumbs"
- >
- <swiper-slide
- class="slide"
- style="width:100px;height:100px;"
- v-for="(item, index) in infoModel.groupPriceApproval"
- :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, 'groupPriceApproval')"
- :headers="tokenHeader"
- :showUploadList="false"
- :beforeUpload="importBeforeUpload"
- @change="importHandleChange"
- >
- <div v-if="infoModel.groupPriceApprovalResult ==='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>
- </a-card>
- </a-spin>
- </template>
- <script>
- import {getAction, httpAction, postAction} from "@api/manage";
- /*无数据图片*/
- import noDataPng from '@/assets/nodata.png'
- import Vue from "vue";
- import {ACCESS_TOKEN, TENANT_ID} from "@/store/mutation-types";
- let Base64 = require('js-base64').Base64
- export default {
- name: 'TaskUploadData',
- inject: ['closeCurrent'],
- components: {
- noDataPng
- },
- data() {
- return {
- //缩略与大图数据源
- swiperId: 1,
- //轮播配置
- swiperOptionTop: {
- zoom: true,
- loop: false,
- loopedSlides: 5, // looped slides should be the same
- spaceBetween: 10,
- observer: true, //修改swiper自己或子元素时,自动初始化swiper
- observeParents: true, //修改swiper的父元素时,自动初始化swiper
- // autoplay: { //自动轮播
- // delay: 2000,
- // disableOnInteraction: false
- // },
- navigation: {
- nextEl: '.swiper-button-next',
- prevEl: '.swiper-button-prev'
- }
- },
- swiperOptionThumbs: {
- loop: false,
- loopedSlides: 5, // looped slides should be the same
- spaceBetween: 10,
- centeredSlides: true,
- slidesPerView: 'auto',
- touchRatio: 0.2,
- slideToClickedSlide: true,
- navigation: {
- nextEl: '.swiper-button-next',
- prevEl: '.swiper-button-prev'
- }
- },
- /**无数据图片*/
- noDataPng: noDataPng,
- url: {
- "getInfoDataById": "/smsCheck/customerInfo/queryById",
- "getInfoDataByInfoId": "/smsCheck/customerData/queryDataLogByInfoId",
- // 上传文件
- "minioUpload": "/smsCheck/customerData/uploadMinio",
- },
- //是否批量上传
- batchImproves: false,
- // 稽核结果
- specialResult: {},
- // 全局是否是在加载中
- uploading: false,
- //上级传参
- query: {
- data: {},
- },
- isShow:false,
- // 客户资料信息
- infoModel: {
- customerNo :"",
- userNo:"",
- networkAccessTime:"",
- logId:"",
- infoResult:"",
- infoResultRemark:"",
- dataId:"",
- infoId:"",
- //是否完成整改
- isComplete:"",
- //资料是否完整
- isAll:"",
- //签约号码与证书下发码号是否一致
- isSigningNumber:"",
- //是否为CSP商
- isCsp:"",
- //码号证书营业执照合同签约方主体是否一致
- codeNumberBusinessLicense:"",
- //码号使用单位联系人手机号
- codeNumberContactPhone:"",
- //客户经理手机号
- managePhone:"",
- //用户发展员工
- staffNo:"",
- //号码用途
- numberUse:"",
- //码号
- codeNumber:"",
- //用户状态
- userState:"",
- // 材料补不全有特审
- materialLabel: "0",
- // 用户类型
- userLable: "0",
- // 申请复开号码
- openingNumber: "",
- // 客户名称
- customerName: "",
- // 最后一次关停时间
- shutdownTime: "",
- // 关停标签
- shutdownLabel: "0",
- // 关停标签-其他
- shutdownLabelOther: "",
- //合同到期时间
- contractDate:[{}],
- contractDateRemark:"",
- contractDateResult:"",
- contractDateDateIs:"",
- contractDateDate:"",
- contractDateResultRemark:"",
- //'营业执照到期时间
- businessLicenseDate:[{}],
- businessLicenseDateDate:"",
- businessLicenseDateDateIs:"",
- businessLicenseDateRemark:"",
- businessLicenseDateResult:"",
- businessLicenseDateResultRemark:"",
- //码号证书到期时间
- codeNumberDate:[{}],
- codeNumberDateRemark:"",
- codeNumberDateDate:"",
- codeNumberDateDateIs:"",
- codeNumberDateResult:"",
- codeNumberDateResultRemark:"",
- //'备案通知到期时间
- filingsDateDate:"",
- filingsDateDateIs:"",
- filingsDate:[{}],
- filingsDateRemark:"",
- filingsDateResultRemark:"",
- filingsDateResult:"",
- //增值业务许可证到期时间
- permitDate:[{}],
- permitDateRemark:"",
- permitDateResultRemark:"",
- permitDateResult:"",
- permitDateDate:"",
- permitDateDateIs:"",
- //法人/责任人证件
- corporationCard:[{}],
- corporationCardRemark:"",
- corporationCardResult:"",
- corporationCardResultRemark:"",
- //责任人授权书
- personResponsible:[{}],
- personResponsibleRemark:"",
- personResponsibleResultRemark:"",
- personResponsibleResult:"",
- //经办人证件
- operatorCard:[{}],
- operatorCardRemark:"",
- operatorCardResult:"",
- operatorCardResultRemark:"",
- //经办人手持身份证照片(背景需为电信营业厅或白墙)
- operatorCardPhone:[{}],
- operatorCardPhoneRemark:"",
- operatorCardPhoneResultRemark:"",
- operatorCardPhoneResult:"",
- //机房设备照片'
- devicePhone:[{}],
- devicePhoneRemark:"",
- devicePhoneResult:"",
- devicePhoneResultRemark:"",
- //短信模板'
- textMessage:[{}],
- textMessageRemark:"",
- textMessageResult:"",
- textMessageResultRemark:"",
- //端口类短信业务责任承诺书'
- textMessageBook:[{}],
- textMessageBookRemark:"",
- textMessageBookResult:"",
- textMessageBookResultRemark:"",
- //信息安全责任承诺书
- secureBook:[{}],
- secureBookRemark:"",
- secureBookResult:"",
- secureBookResultRemark:"",
- //特殊资费审批(标准资费无需提供
- special:[{}],
- specialRemark:"",
- specialResult:"",
- specialResultRemark:"",
- //入网签报
- networkAccess:[{}],
- networkAccessRemark:"",
- networkAccessResult:"",
- networkAccessResultRemark:"",
- //集团价格审批
- groupPriceApproval:[{}],
- groupPriceApprovalRemark:"",
- groupPriceApprovalResult:"",
- groupPriceApprovalResultRemark:"",
- },
- //表单验证
- rules: {
- openingNumber: [
- {required: true, message: '必须输入手机号'},
- ],
- customerName: [
- {required: true, message: '必须输入客户名称'},
- ],
- userState: [
- {required: true, message: '必须输入用户状态'},
- ],
- codeNumber : [
- {required: true, message: '必须输入码号'},
- ],
- numberUse: [
- {required: true, message: '必须输入号码用途'},
- ],
- staffNo: [
- {required: true, message: '必须输入用户发展员工'},
- ],
- managePhone: [
- {required: true, message: '必须输入客户经理手机号'},
- ],
- codeNumberContactPhone: [
- {required: true, message: '必须输入码号使用单位联系人手机号'},
- ],
- isCsp: [
- {required: true, message: '必须输入是否为CSP商'},
- ],
- codeNumberBusinessLicense: [
- {required: true, message: '必须选择码号证书营业执照合同签约方主体是否一致'},
- ],
- isSigningNumber: [
- {required: true, message: '请选择签约号码与证书下发码号是否一致'},
- ],
- isAll: [
- {required: true, message: '必须选择资料是否完整'},
- ],
- isComplete: [
- {required: true, message: '必须选择是否完成整改'},
- ]
- },
- labelCol4: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 10},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 12},
- }
- },
- labelCol5: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 14},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 8},
- }
- },
- labelCol1: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 2},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 22},
- }
- },
- labelCol1Note: {
- labelCol: {
- xs: {span: 24},
- sm: {span: 6},
- },
- wrapperCol: {
- xs: {span: 24},
- sm: {span: 14},
- }
- },
- // 步骤条相关
- steps: {
- // 当前所在第几部
- current: 0,
- currentId: "",
- stepsNow: {},
- steps00: [
- {
- title: '上传合同资料',
- content: 'First-content',
- id: "contractDate",
- status: "wait"
- },
- {
- title: '上传营业执照资料',
- content: 'First-content',
- id: "businessLicenseDate",
- status: "wait"
- },
- {
- title: '上传码号证书资料',
- content: 'First-content',
- id: "codeNumberDate",
- status: "wait"
- },
- {
- title: '上传备案通知资料',
- content: 'First-content',
- id: "filingsDate",
- status: "wait"
- },{
- title: '上传增值业务许可证资料',
- content: 'First-content',
- id: "permitDate",
- status: "wait"
- }, {
- title: '上传法人/责任人证件资料',
- content: 'First-content',
- id: "corporationCard",
- status: "wait"
- },{
- title: '上传责任人授权书资料',
- content: 'First-content',
- id: "personResponsible",
- status: "wait"
- },{
- title: '上传经办人证件资料',
- content: 'First-content',
- id: "operatorCard",
- status: "wait"
- },{
- title: '上传入网签报资料',
- content: 'First-content',
- id: "networkAccess",
- status: "wait"
- },{
- title: '上传集团价格审批资料',
- content: 'First-content',
- id: "groupPriceApproval",
- status: "wait"
- },{
- title: '上传机房设备照片',
- content: 'First-content',
- id: "devicePhone",
- status: "wait"
- }, {
- title: '上传短信模板',
- content: 'First-content',
- id: "textMessage",
- status: "wait"
- },{
- title: '上传信息安全责任承诺书',
- content: 'First-content',
- id: "secureBook",
- status: "wait"
- },{
- title: '上传经办人手持身份证照片(背景需为电信营业厅或白墙)',
- content: 'First-content',
- id: "operatorCardPhone",
- status: "wait"
- },
- {
- title: '上传端口类短信业务责任承诺书',
- content: 'First-content',
- id: "textMessageBook",
- status: "wait"
- },{
- title: '上传特殊资费审批(标准资费无需提供)资料',
- content: 'First-content',
- id: "special",
- status: "wait"
- },
- ],
- // 单位户
- stepUserLable1: [
- {
- title: '使用人证件',
- content: 'First-content',
- id: "userCertificate",
- status: "wait"
- },
- {
- title: '营业执照副本(盖公章)',
- content: 'First-content',
- id: "businessLicense",
- status: "wait"
- },
- {
- title: '介绍信',
- content: 'First-content',
- id: "letterIntroduction",
- status: "wait"
- }
- ],
- // 个人户
- stepUserLable0: [
- {
- title: '号卡照片',
- content: 'First-content',
- id: "numberCard",
- status: "wait"
- },
- ],
- // 材料标签
- shutdownLabel0: [
- {
- title: '消费凭证',
- content: 'First-content',
- id: "consumptionVoucher",
- status: "wait"
- },
- ],
- // 承诺视频
- shutdownLabel5: [
- {
- title: '承诺视频',
- content: 'First-content',
- id: "commitmentVideo",
- status: "wait"
- },
- ],
- },
- }
- },
- computed: {
- importMinioUploadAction() {
- return window._CONFIG['domianURL'] + this.url.minioUpload;
- },
- tokenHeader() {
- let head = {'X-Access-Token': Vue.ls.get(ACCESS_TOKEN)}
- let tenantid = Vue.ls.get(TENANT_ID)
- if (tenantid) {
- head['tenant-id'] = tenantid
- }
- return head;
- }
- },
- props: {},
- watch: {},
- created() {
- // 是否批量上传
- this.infoModel.infoId=this.$route.query.id;
- this.batchImproves = this.$route.query.batchImproves;
- // 步骤条默认公用
- this.steps.stepsNow = this.steps.steps00;
- this.steps.currentId = this.steps.stepsNow[0].id
- if (this.batchImproves) {
- //批量上传id
- this.ids = this.$route.query.ids;
- } else {
- //客户ID
- this.query.infoId = this.$route.query.id;
- this.getInfoDataByInfoId(this.query.infoId);
- }
- },
- mounted() {
- // 实现swiper双向控制
- this.$nextTick(() => {
- const swiperTop = this.$refs.swiperTop.swiper
- const swiperThumbs = this.$refs.swiperThumbs.swiper
- swiperTop.controller.control = swiperThumbs
- swiperThumbs.controller.control = swiperTop
- })
- // /**监听视频拨放*/
- // this.$refs.myVideo.addEventListener("play", () => {
- // this.openTimer();
- // });
- // /**监听视频暂停*/
- // this.$refs.myVideo.addEventListener("pause", () => {
- // this.closeTimer();
- // });
- },
- methods: {
- /**备注坚听*/
- 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"
- }
- },
- // 步骤条动态变化
- stepLoading() {
- this.steps.stepsNow = this.steps.stepsNow.splice(0, 16)
- //材料不全有特审步骤条
- this.stepsMaterialLabel()
- /**用户标签点击事件*/
- this.userLableClick()
- /**材料标签点击事件*/
- this.shutdownLabelClick()
- },
- //材料不全有特审步骤条
- stepsMaterialLabel() {
- if (this.infoModel.materialLabel == "0" || this.infoModel.shutdownLabel == "999") {
- let stepsMaterial = this.steps.stepsMaterial;
- for (var i in stepsMaterial) {
- this.steps.stepsNow.push(stepsMaterial[i])
- }
- }
- },
- /**用户标签点击事件*/
- userLableClick() {
- 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"
- }
- },
- /**材料标签点击事件*/
- shutdownLabelClick() {
- var that = this;
- //材料不全有特审步骤条
- //that.stepsMaterialLabel();
- let shutdownLabel = that.infoModel.shutdownLabel;
- switch (shutdownLabel) {
- case "0":
- let shutdownLabel0 = this.steps.shutdownLabel0;
- for (var i in shutdownLabel0) {
- this.steps.stepsNow.push(shutdownLabel0[i])
- }
- break;
- case "5":
- let shutdownLabel5 = this.steps.shutdownLabel5;
- for (var j in shutdownLabel5) {
- this.steps.stepsNow.push(shutdownLabel5[j])
- }
- break;
- }
- if (this.infoModel.shutdownLabel == "999"){
- let shutdownLabel0 = this.steps.shutdownLabel0;
- for (var i in shutdownLabel0) {
- this.steps.stepsNow.push(shutdownLabel0[i])
- }
- let shutdownLabel5 = this.steps.shutdownLabel5;
- for (var j in shutdownLabel5) {
- this.steps.stepsNow.push(shutdownLabel5[j])
- }
- }
- },
- /**移除文件*/
- 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
- }
- },
- /**自定义的上传文件方法*/
- 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"
- }else {
- that.steps.stepsNow[that.steps.current].status = "wait"
- }
- }
- }
- })
- }
- },
- /**文件格式限制*/
- 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) {
- },
- dataListToStr(data){
- if (data.contractDate!==null && data.contractDate!==undefined){
- data.contractDate=JSON.stringify(data.contractDate);
- }
- if (data.businessLicenseDate!==null&& data.businessLicenseDate!==undefined){
- data.businessLicenseDate=JSON.stringify(data.businessLicenseDate);
- }
- if (data.codeNumberDate!==null && data.codeNumberDate!==undefined){
- data.codeNumberDate=JSON.stringify(data.codeNumberDate);
- }
- if (data.filingsDate!==null && data.filingsDate!==undefined){
- data.filingsDate=JSON.stringify(data.filingsDate);
- }
- if (data.permitDate!==null && data.permitDate!==undefined){
- data.permitDate=JSON.stringify(data.permitDate);
- }
- if (data.corporationCard!==null && data.corporationCard!==undefined){
- data.corporationCard=JSON.stringify(data.corporationCard);
- }
- if (data.personResponsible!==null && data.personResponsible!==undefined){
- data.personResponsible=JSON.stringify(data.personResponsible);
- }
- if (data.operatorCard!==null && data.operatorCard!==undefined){
- data.operatorCard=JSON.stringify(data.operatorCard);
- }
- if (data.operatorCardPhone!==null && data.operatorCardPhone!==undefined){
- data.operatorCardPhone=JSON.stringify(data.operatorCardPhone);
- }
- if (data.devicePhone!==null && data.devicePhone!==undefined){
- data.devicePhone=JSON.stringify(data.devicePhone);
- }
- if (data.textMessage!==null && data.textMessage!==undefined){
- data.textMessage=JSON.stringify(data.textMessage);
- }
- if (data.textMessageBook!==null && data.textMessageBook!==undefined){
- data.textMessageBook=JSON.stringify(data.textMessageBook);
- }
- if (data.secureBook!==null && data.secureBook!==undefined){
- data.secureBook=JSON.stringify(data.secureBook);
- }
- if (data.special!==null && data.special!==undefined){
- data.special=JSON.stringify(data.special);
- }
- if (data.networkAccess!==null && data.networkAccess!==undefined){
- data.networkAccess=JSON.stringify(data.networkAccess);
- }
- if (data.groupPriceApproval!==null && data.groupPriceApproval!==undefined){
- data.groupPriceApproval=JSON.stringify(data.groupPriceApproval);
- }
- return data;
- },
- /**暂存*/
- addIsStaging() {
- var that = this;
- var data=that.infoModel ;
- data =this.dataListToStr(data);
- postAction("/smsCheck/customerData/addIsStaging", data).then((res) => {
- if (res.success) {
- this.$message.success("提交成功", 3);
- this.addIng == true
- this.closeCurrent();
- } else {
- if ( res.message !==null){
- this.$message.error( res.message);
- }else {
- this.$message.error("提交失败");
- }
- }
- })
- },
- /*提交*/
- submitAuditLot() {
- this.$refs['form'].validate(valid => {
- })
- var info = "yes";
- for (var i in this.steps.stepsNow) {
- 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"){
- return
- }
- var that = this;
- var data=that.infoModel ;
- data =this.dataListToStr(data);
- postAction("/smsCheck/customerData/addLog", data).then((res) => {
- if (res.success) {
- this.$message.success("提交成功", 3);
- this.addIng == true
- this.closeCurrent();
- } else {
- if ( res.message !==null){
- this.$message.error( res.message);
- }else {
- this.$message.error("提交失败");
- }
- }
- })
- },
- /**步骤条点击事件*/
- 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[current].status!== "finish" && this.steps.stepsNow[current].status !== "error") {
- this.steps.stepsNow[current].status = "process"
- }
- },
- /**返回上一级*/
- back() {
- this.$router.go(-1);
- //关闭当前页
- this.closeCurrent();
- },
- /**获取客户信息*/
- 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.networkAccessTime=result.networkAccessTime;
- }
- })
- }
- resultA.userState=that.infoModel.userState
- return resultA
- },
- /**获取客户信息*/
- getInfoDataByInfoId(infoId) {
- var that = this;
- if (infoId) {
- var data = {
- "infoId": infoId,
- }
- getAction(this.url.getInfoDataByInfoId, data).then((res) => {
- if (res.success) {
- let result = res.result;
- result=this.getInfoDataById(infoId,result)
- that.infoModel=result;
- that.infoModel.contractDate= JSON.parse(result.contractDate);
- that.infoModel.businessLicenseDate= JSON.parse(result.businessLicenseDate);
- that.infoModel.codeNumberDate= JSON.parse(result.codeNumberDate);
- that.infoModel.filingsDate= JSON.parse(result.filingsDate);
- that.infoModel.permitDate= JSON.parse(result.permitDate);
- that.infoModel.corporationCard= JSON.parse(result.corporationCard);
- that.infoModel.personResponsible= JSON.parse(result.personResponsible);
- that.infoModel.operatorCard= JSON.parse(result.operatorCard);
- that.infoModel.operatorCardPhone= JSON.parse(result.operatorCardPhone);
- that.infoModel.devicePhone= JSON.parse(result.devicePhone);
- that.infoModel.textMessage= JSON.parse(result.textMessage);
- that.infoModel.textMessageBook= JSON.parse(result.textMessageBook);
- that.infoModel.secureBook= JSON.parse(result.secureBook);
- that.infoModel.special= JSON.parse(result.special);
- that.infoModel.networkAccess= JSON.parse(result.networkAccess);
- that.infoModel.groupPriceApproval= JSON.parse(result.groupPriceApproval);
- 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'][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
- }
- }
- })
- }
- }
- },
- /**获取客户DataLog信息*/
- getInfoDataLogByInfoId(infoId) {
- }
- }
- </script>
- <style lang="less">
- .ant-input[disabled] {
- color: #1e80ff;
- background-color: #f5f5f5;
- cursor: not-allowed;
- opacity: 1;
- }
- .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
- color: #fff;
- background-color: #1e80ff;
- border-color: #d9d9d9;
- box-shadow: none;
- }
- </style>
- <style lang="less">
- #common-video {
- position: relative;
- .video-box {
- box-sizing: border-box;
- border: 0;
- display: block;
- width: 470px;
- height: 500px;
- outline: none !important;
- }
- .isShow {
- //进度条
- video::-webkit-media-controls-timeline {
- display: none;
- }
- }
- video::-webkit-media-controls-play-button {
- visibility: hidden;
- }
- .operate-btn {
- display: block;
- width: 60px;
- height: 60px;
- position: absolute;
- top: calc(50% - 30px);
- left: calc(50% - 30px);
- }
- .operate-btn:hover {
- opacity: 0.8;
- }
- .fade-out {
- opacity: 0;
- }
- }
- .thumb-example {
- width: 864px;
- margin-top: 20px;
- // background: #000;
- }
- .swiper-slide {
- background-size: cover;
- background-position: center;
- }
- .gallery-top {
- // height: 80% !important;
- /*height: 600px;*/
- width: 100%;
- left: 10%;
- margin-bottom: 30px
- }
- .gallery-thumbs {
- height: 20% !important;
- box-sizing: border-box;
- padding: 10px 0px;
- /* width: 864px;*/
- margin-left: 2px;
- .swiper-button-next {
- right: 0px;
- }
- .swiper-button-prev {
- left: 0px;
- }
- .swiper-button-next,
- .swiper-button-prev {
- background: #fff;
- width: 45px;
- text-align: center;
- height: 101px;
- top: 26%;
- div {
- margin-top: 30px;
- background: rgb(207, 205, 205);
- height: 45px;
- border-radius: 50%;
- img {
- margin: 7px 0 0 2px;
- width: 30px;
- }
- }
- }
- .swiper-button-next:hover div {
- background: rgb(189, 186, 186);
- }
- .swiper-button-prev:hover div {
- background: rgb(189, 186, 186);
- }
- }
- .gallery-thumbs .swiper-slide {
- width: 20%;
- height: 80px;
- // opacity: 0.4;
- }
- .gallery-thumbs .swiper-slide-active {
- border: 2px solid red;
- }
- .markdown ul > li {
- color: #000000d9;
- font-size: 15px;
- line-height: 3;
- margin-left: 20px;
- padding-left: 4px;
- list-style-type: circle;
- }
- </style>
|