TaskUploadDataZG.vue 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453
  1. <template>
  2. <a-spin :spinning="uploading" size="large" tip="正在提交资料,请勿关闭当前网页...">
  3. <!-- 客户信息-->
  4. <a-page-header
  5. style="background-color: #FFFFFF;margin-bottom:10px"
  6. title="行短稽核资料"
  7. sub-title=""
  8. @back="back"
  9. >
  10. <div>
  11. <a-form-model
  12. ref="form"
  13. :model="infoModel"
  14. :rules="rules"
  15. >
  16. <a-row>
  17. <a-col :span="6">
  18. <a-form-model-item label="客户编号" prop="customerName" v-bind="labelCol4" >
  19. <a-input v-model="infoModel.customerNo" placeholder="客户编号" :disabled='true'></a-input>
  20. </a-form-model-item>
  21. </a-col>
  22. <a-col :span="6">
  23. <a-form-model-item label="用户编号" prop="customerName" v-bind="labelCol4" >
  24. <a-input v-model="infoModel.userNo" placeholder="用户编号" :disabled='true'></a-input>
  25. </a-form-model-item>
  26. </a-col>
  27. <a-col :span="6">
  28. <a-form-model-item label="入网时间" prop="customerName" v-bind="labelCol4" >
  29. <a-input v-model="infoModel.networkAccessTime" placeholder="入网时间" :disabled='true'></a-input>
  30. </a-form-model-item>
  31. </a-col>
  32. <a-col :span="6">
  33. <a-form-model-item label="客户名称(全)" prop="customerName" v-bind="labelCol4">
  34. <a-input :disabled='isShow' v-model="infoModel.customerName" placeholder="客户名称/使用人名称"></a-input>
  35. </a-form-model-item>
  36. </a-col>
  37. <a-col :span="6">
  38. <a-form-model-item label="用户状态" prop="userState" v-bind="labelCol4">
  39. <a-input v-model="infoModel.userState" placeholder="用户状态" :disabled='true'></a-input>
  40. </a-form-model-item>
  41. </a-col>
  42. <a-col :span="6">
  43. <a-form-model-item label="用户发展员工" prop="staffNo" v-bind="labelCol4">
  44. <a-input v-model="infoModel.staffNo" placeholder="用户发展员工" :disabled='true'></a-input>
  45. </a-form-model-item>
  46. </a-col>
  47. <a-col :span="6">
  48. <a-form-model-item label="码号" prop="codeNumber" v-bind="labelCol4">
  49. <a-input :disabled='isShow' v-model="infoModel.codeNumber" placeholder="(接入开通码号95/96/10/11/12/106/400(不含拓展位长))"></a-input>
  50. </a-form-model-item>
  51. </a-col>
  52. <a-col :span="6">
  53. <a-form-model-item label="号码详细用途" prop="numberUse" v-bind="labelCol4">
  54. <a-input :disabled='isShow' v-model="infoModel.numberUse" placeholder="(文字描述,最大200字。)"></a-input>
  55. </a-form-model-item>
  56. </a-col>
  57. <a-col :span="6">
  58. <a-form-model-item label="客户经理手机号" prop="managePhone" v-bind="labelCol4">
  59. <a-input :disabled='isShow' v-model="infoModel.managePhone" placeholder="客户经理手机号"></a-input>
  60. </a-form-model-item>
  61. </a-col>
  62. <a-col :span="6">
  63. <a-form-model-item label="单位联系人手机号" prop="codeNumberContactPhone" v-bind="labelCol4">
  64. <a-input :disabled='isShow' v-model="infoModel.codeNumberContactPhone" placeholder="业务合同码号使用单位联系人手机号"></a-input>
  65. </a-form-model-item>
  66. </a-col>
  67. <a-col :span="8">
  68. <a-form-model-item label="签约号码与证书下发码号是否一致" prop="isSigningNumber" v-bind="labelCol5">
  69. <a-radio-group v-model="infoModel.isSigningNumber" button-style="solid" @change="stepLoading" :disabled='isShow' >
  70. <a-radio-button value="0">否</a-radio-button>
  71. <a-radio-button value="1">是</a-radio-button>
  72. </a-radio-group>
  73. </a-form-model-item>
  74. </a-col>
  75. </a-row>
  76. <a-row>
  77. <a-col :span="7" v-if='infoModel.contractDateDateIs==="" || infoModel.contractDateDateIs===null || infoModel.contractDateDateIs==="1" '>
  78. <a-form-model-item label="合同到期时间是否长期" prop="contractDateDateIs" v-bind="labelCol4">
  79. <a-radio-group :disabled='isShow' v-model="infoModel.contractDateDateIs" button-style="solid" @change="stepLoading">
  80. <a-radio-button value="0">否</a-radio-button>
  81. <a-radio-button value="1">是</a-radio-button>
  82. </a-radio-group>
  83. </a-form-model-item>
  84. </a-col>
  85. <a-col :span="7" v-if='infoModel.contractDateDateIs==="0" ' >
  86. <a-form-item label="合同到期时间" prop="filingsDateDateIs" v-bind="labelCol4">
  87. <j-date :disabled='isShow'
  88. style="width: 210px"
  89. v-model="infoModel.contractDateDate"
  90. format="YYYY-MM-DD"
  91. :placeholder="['到期时间']"
  92. />
  93. </a-form-item>
  94. </a-col>
  95. <a-col :span="7" v-if='infoModel.businessLicenseDateDateIs==="" || infoModel.businessLicenseDateDateIs===null || infoModel.businessLicenseDateDateIs==="1" '>
  96. <a-form-model-item label="营业执照有效期是否长期" prop="businessLicenseDateDateIs" v-bind="labelCol4">
  97. <a-radio-group :disabled='isShow' v-model="infoModel.businessLicenseDateDateIs" button-style="solid" >
  98. <a-radio-button value="0">否</a-radio-button>
  99. <a-radio-button value="1">是</a-radio-button>
  100. </a-radio-group>
  101. </a-form-model-item>
  102. </a-col>
  103. <a-col :span="7" v-if='infoModel.businessLicenseDateDateIs==="0"'>
  104. <a-form-item label="营业执照到期时间" prop="filingsDateDateIs" v-bind="labelCol4" >
  105. <j-date :disabled='isShow'
  106. style="width: 210px"
  107. v-model="infoModel.businessLicenseDateDate"
  108. format="YYYY-MM-DD"
  109. :placeholder="['到期时间']"
  110. />
  111. </a-form-item>
  112. </a-col>
  113. <a-col :span="5">
  114. <a-form-model-item label="资料是否完整" prop="isAll" v-bind="labelCol4">
  115. <a-radio-group :disabled='isShow' v-model="infoModel.isAll" button-style="solid" @change="stepLoading">
  116. <a-radio-button value="0">否</a-radio-button>
  117. <a-radio-button value="1">是</a-radio-button>
  118. </a-radio-group>
  119. </a-form-model-item>
  120. </a-col>
  121. <a-col :span="7" v-if='infoModel.filingsDateDateIs==="" || infoModel.filingsDateDateIs===null || infoModel.filingsDateDateIs==="1" '>
  122. <a-form-model-item label="备案到期时间是否长期" prop="filingsDateDateIs" v-bind="labelCol4">
  123. <a-radio-group :disabled='isShow' v-model="infoModel.filingsDateDateIs" button-style="solid" >
  124. <a-radio-button value="0">否</a-radio-button>
  125. <a-radio-button value="1">是</a-radio-button>
  126. </a-radio-group>
  127. </a-form-model-item>
  128. </a-col>
  129. <a-col :span="7" v-if='infoModel.filingsDateDateIs==="0" '>
  130. <a-form-item label="备案通知到期时间" prop="filingsDateDateIs" v-bind="labelCol4">
  131. <j-date
  132. style="width: 210px" :disabled='isShow'
  133. v-model="infoModel.filingsDateDate"
  134. format="YYYY-MM-DD"
  135. :placeholder="['到期时间']"
  136. />
  137. </a-form-item>
  138. </a-col>
  139. <a-col :span="7" v-if='infoModel.codeNumberDateDateIs==="" || infoModel.codeNumberDateDateIs===null || infoModel.codeNumberDateDateIs==="1" '>
  140. <a-form-model-item label="码号证书有效期是否长期" prop="codeNumberDateDateIs" v-bind="labelCol4">
  141. <a-radio-group :disabled='isShow' v-model="infoModel.codeNumberDateDateIs" button-style="solid" >
  142. <a-radio-button value="0">否</a-radio-button>
  143. <a-radio-button value="1">是</a-radio-button>
  144. </a-radio-group>
  145. </a-form-model-item>
  146. </a-col>
  147. <a-col :span="7" v-if='infoModel.codeNumberDateDateIs==="0" '>
  148. <a-form-item label="码号证书到期时间" prop="filingsDateDateIs" v-bind="labelCol4">
  149. <j-date :disabled='isShow'
  150. style="width: 210px"
  151. v-model="infoModel.codeNumberDateDate"
  152. format="YYYY-MM-DD"
  153. :placeholder="['到期时间']"
  154. />
  155. </a-form-item>
  156. </a-col>
  157. <a-col :span="7" v-if='infoModel.permitDateDateIs==="" || infoModel.permitDateDateIs===null || infoModel.permitDateDateIs==="1" '>
  158. <a-form-model-item label="增值业务许可是否长期" prop="codeNumberDateDateIs" v-bind="labelCol4">
  159. <a-radio-group :disabled='isShow' v-model="infoModel.permitDateDateIs" button-style="solid" >
  160. <a-radio-button value="0">否</a-radio-button>
  161. <a-radio-button value="1">是</a-radio-button>
  162. </a-radio-group>
  163. </a-form-model-item>
  164. </a-col>
  165. <a-col :span="8" v-if='infoModel.permitDateDateIs==="0" '>
  166. <a-form-item label="增值业务许可证到期时间" prop="filingsDateDateIs" v-bind="labelCol4">
  167. <j-date :disabled='isShow'
  168. style="width: 210px"
  169. v-model="infoModel.permitDateDate"
  170. format="YYYY-MM-DD"
  171. :placeholder="['到期时间']"
  172. />
  173. </a-form-item>
  174. </a-col>
  175. <a-col :span="6">
  176. <a-form-model-item label="是否完成整改" prop="isComplete" v-bind="labelCol4">
  177. <a-radio-group v-model="infoModel.isComplete" :disabled='isShow' button-style="solid" @change="stepLoading">
  178. <a-radio-button value="0">否</a-radio-button>
  179. <a-radio-button value="1">是</a-radio-button>
  180. </a-radio-group>
  181. </a-form-model-item>
  182. </a-col>
  183. <a-col :span="6">
  184. <a-form-model-item label="是否为CSP商" prop="isCsp" v-bind="labelCol4">
  185. <a-radio-group v-model="infoModel.isCsp" :disabled='isShow' button-style="solid" @change="stepLoading">
  186. <a-radio-button value="0">否</a-radio-button>
  187. <a-radio-button value="1">是</a-radio-button>
  188. </a-radio-group>
  189. </a-form-model-item>
  190. </a-col>
  191. <a-col :span="10">
  192. <a-form-model-item label="码号证书营业执照合同签约方主体是否一致" prop="codeNumberBusinessLicense" v-bind="labelCol5">
  193. <a-radio-group :disabled='isShow' v-model="infoModel.codeNumberBusinessLicense" button-style="solid" @change="stepLoading">
  194. <a-radio-button value="0">否</a-radio-button>
  195. <a-radio-button value="1">是</a-radio-button>
  196. </a-radio-group>
  197. </a-form-model-item>
  198. </a-col>
  199. </a-row>
  200. <a-row>
  201. </a-row>
  202. <hr>
  203. <div style="width: 100%;float:left;margin-left: 20%">
  204. <a-list size="large" >
  205. <template>
  206. <a-list-item style='height: 60px' >
  207. <a-col :span="6" >
  208. <div>
  209. <div style="float:left;margin: 50px 3px" id="directRequirements">稽核是否通过</div>
  210. <div style="float:left;margin: 50px 10px;" >
  211. <a-radio-group button-style="solid" :disabled='true' v-model='infoModel.infoResult'>
  212. <a-radio :value="'1'">是</a-radio>
  213. <a-radio :value="'2'">否</a-radio>
  214. </a-radio-group>
  215. </div>
  216. </div>
  217. </a-col>
  218. <a-col :span="18" >
  219. <div style="clear: both"></div>
  220. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  221. <a-textarea v-model=infoModel.infoResultRemark :disabled='true' placeholder="请输入上述信息的稽核结果" style="float:left;margin: 3px 3px;height:30px; width: 300px;" />
  222. </a-form-model-item>
  223. </a-col>
  224. </a-list-item>
  225. </template>
  226. </a-list><div v-if='infoModel.infoResult==="2"' style="color: red;margin:0 auto" >稽核未通请确认上述填写信息...</div>
  227. </div>
  228. </a-form-model>
  229. </div>
  230. <!-- <hr v-if="infoModel.infoResult==='1'">-->
  231. <!-- <div style="width: 100%;float:left;margin-left: 35%" v-if="infoModel.infoResult==='1'">-->
  232. <!-- <a-list size="large" >-->
  233. <!-- <template>-->
  234. <!-- <a-list-item style='height: 60px' >-->
  235. <!-- <a-col :span="24" >-->
  236. <!-- <div>-->
  237. <!-- <div style="float:left;margin: 50px 3px;color: red" id="directRequirements">上述信息稽核未通过请确认填写信息...</div>-->
  238. <!--&lt;!&ndash; <div style="float:left;margin: 50px 10px;" >&ndash;&gt;-->
  239. <!--&lt;!&ndash; <a-radio-group button-style="solid" v-model='infoModel.infoResult'>&ndash;&gt;-->
  240. <!--&lt;!&ndash; <a-radio :value="'1'">是</a-radio>&ndash;&gt;-->
  241. <!--&lt;!&ndash; <a-radio :value="'2'">否</a-radio>&ndash;&gt;-->
  242. <!--&lt;!&ndash; </a-radio-group>&ndash;&gt;-->
  243. <!--&lt;!&ndash; </div>&ndash;&gt;-->
  244. <!-- </div>-->
  245. <!-- </a-col>-->
  246. <!-- </a-list-item>-->
  247. <!-- </template>-->
  248. <!-- </a-list>-->
  249. <!-- </div>-->
  250. </a-page-header>
  251. <!-- 步骤条-->
  252. <a-card style="margin-bottom:10px;width: 15%;float: left">
  253. <a-steps direction="vertical" :current="steps.current" size="small" @change="stepsClick">
  254. <a-step v-for="item in steps.stepsNow" :key="item.title" :title="item.title" :status="item.status" >
  255. <a-icon :type="item.type" :slot="item.slot" />
  256. </a-step>
  257. </a-steps>
  258. <a-button @click="addIsStaging" style="width: 100%" type="warn">暂存</a-button>
  259. <a-button @click="submitAuditLot" style="width: 100%;position: relative;top: 10px" type="primary">提交申请</a-button>
  260. </a-card>
  261. <!-- 合同到期时间(YYYY-MM-DD)-->
  262. <a-card v-if="steps.currentId == 'contractDate'"
  263. style="margin-bottom:10px;
  264. float: left;width: 83%;left: 2%">
  265. <div slot="title">
  266. <span style="float: left;position: relative;top: 4px">合同资料</span>
  267. </div>
  268. <div style="width: 100%;float:left;margin-left: 10%">
  269. <a-list size="large" >
  270. <template>
  271. <a-list-item style='height: 60px' >
  272. <a-col :span="6" >
  273. <div>
  274. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  275. <div style="float:left;margin: 50px 10px;" >
  276. <a-radio-group button-style="solid" disabled v-model='infoModel.contractDateResult'>
  277. <a-radio :value="'1'">是</a-radio>
  278. <a-radio :value="'2'">否</a-radio>
  279. </a-radio-group>
  280. </div>
  281. </div>
  282. </a-col>
  283. <a-col :span="18" >
  284. <div style="clear: both"></div>
  285. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  286. <a-textarea :disabled='true' v-model=infoModel.contractDateResultRemark placeholder="请输入合同到期时间的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  287. </a-form-model-item>
  288. </a-col>
  289. </a-list-item>
  290. </template>
  291. </a-list>
  292. </div>
  293. <!-- 文件上传-->
  294. <!-- 附件-->
  295. <div>
  296. <a-form-model-item style="left: 10%;width: 70%;" label="合同资料备注:" v-bind="labelCol1Note">
  297. <a-textarea style="height: 77px" :disabled="infoModel.contractDateResult==='1'?true:false"
  298. v-model="infoModel.contractDateRemark"
  299. @change="textareaChange('contractDate','contractDateRemark')"
  300. placeholder="如没有合同到期时间,需要说明原因"
  301. />
  302. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  303. </a-form-model-item>
  304. </div>
  305. <div style="height: 70%">
  306. <div class="thumb-example" >
  307. <!-- swiper1 -->
  308. <swiper
  309. class="swiper gallery-top"
  310. :options="swiperOptionTop"
  311. ref="swiperTop"
  312. >
  313. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.contractDate" :key="item.id">
  314. <iframe
  315. v-if="item.urlBase"
  316. frameborder="1"
  317. :src="item.urlBase"
  318. ref="ifr"
  319. width="704px"
  320. height="445px"
  321. scrolling="auto">
  322. </iframe>
  323. <img style="width: 70%;height: 70%;border: 1px solid;"
  324. v-if="!item.urlBase" :src="noDataPng" border="1">
  325. <a-button v-if="infoModel.contractDateResult ==='2'"
  326. style="display: block;margin-top: 10px;border-color: red;color: red"
  327. danger @click="removeFile(item,'contractDate')">移除
  328. </a-button>
  329. </swiper-slide>
  330. <!-- <div
  331. class="swiper-button-next swiper-button-white"
  332. slot="button-next"
  333. ></div>
  334. <div
  335. class="swiper-button-prev swiper-button-white"
  336. slot="button-prev"
  337. ></div>-->
  338. </swiper>
  339. <!-- swiper2 Thumbs -->
  340. <swiper
  341. class="swiper gallery-thumbs"
  342. :options="swiperOptionThumbs"
  343. ref="swiperThumbs"
  344. >
  345. <swiper-slide
  346. class="slide"
  347. style="width:100px;height:100px;"
  348. v-for="(item, index) in infoModel.contractDate"
  349. :key="item.id"
  350. >
  351. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  352. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  353. </div>
  354. <img style="width: 100%;height: 96px"
  355. v-if="!item.urlBase" :src="noDataPng" border="1">
  356. </swiper-slide>
  357. <!-- 点我上传文件按钮-->
  358. <div class="clearfix">
  359. <a-upload
  360. listType="picture-card"
  361. name="file"
  362. :multiple="false"
  363. :action="importMinioUploadAction"
  364. :customRequest="e => selfUploadContract(e, 'contractDate')"
  365. :headers="tokenHeader"
  366. :showUploadList="false"
  367. :beforeUpload="importBeforeUpload"
  368. @change="importHandleChange"
  369. >
  370. <div v-if="infoModel.contractDateResult ==='2'">
  371. <a-icon type="plus"/>
  372. <div class="ant-upload-text">点我上传合同</div>
  373. </div>
  374. </a-upload>
  375. </div>
  376. <div class="swiper-button-next swiper-button-white" slot="button-next">
  377. <div>
  378. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  379. </div>
  380. </div>
  381. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  382. <div>
  383. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  384. </div>
  385. </div>
  386. </swiper>
  387. </div>
  388. </div>
  389. </a-card>
  390. <!-- 营业执照到期时间-->
  391. <a-card v-if="steps.currentId == 'businessLicenseDate'"
  392. style="margin-bottom:10px;
  393. float: left;width: 83%;left: 2%">
  394. <div slot="title">
  395. <span style="float: left;position: relative;top: 4px">营业执照资料</span>
  396. </div>
  397. <!-- 文件上传-->
  398. <div style="width: 100%;float:left;margin-left: 10%">
  399. <a-list size="large" >
  400. <template>
  401. <a-list-item style='height: 60px' >
  402. <a-col :span="6" >
  403. <div>
  404. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  405. <div style="float:left;margin: 50px 10px;" >
  406. <a-radio-group button-style="solid" disabled v-model='infoModel.businessLicenseDateResult'>
  407. <a-radio :value="'1'">是</a-radio>
  408. <a-radio :value="'2'">否</a-radio>
  409. </a-radio-group>
  410. </div>
  411. </div>
  412. </a-col>
  413. <a-col :span="18" >
  414. <div style="clear: both"></div>
  415. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  416. <a-textarea :disabled='true' v-model=infoModel.businessLicenseDateResultRemark placeholder="请输入营业执照到期时间的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  417. </a-form-model-item>
  418. </a-col>
  419. </a-list-item>
  420. </template>
  421. </a-list>
  422. </div>
  423. <!-- 附件-->
  424. <div>
  425. <a-form-model-item style="left: 10%;width: 70%;" label="营业执照资料备注:" v-bind="labelCol1Note">
  426. <a-textarea style="height: 77px" :disabled="infoModel.businessLicenseDateResult==='1'?true:false"
  427. @change="textareaChange('businessLicenseDate','businessLicenseDateRemark')"
  428. v-model="infoModel.businessLicenseDateRemark"
  429. placeholder="如没有营业执照到期时间资料,需要说明原因"
  430. />
  431. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  432. </a-form-model-item>
  433. </div>
  434. <div style="height: 70%">
  435. <div class="thumb-example" >
  436. <!-- swiper1 -->
  437. <swiper
  438. class="swiper gallery-top"
  439. :options="swiperOptionTop"
  440. ref="swiperTop"
  441. >
  442. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.businessLicenseDate" :key="item.id">
  443. <iframe
  444. v-if="item.urlBase"
  445. frameborder="1"
  446. :src="item.urlBase"
  447. ref="ifr"
  448. width="704px"
  449. height="445px"
  450. scrolling="auto">
  451. </iframe>
  452. <img style="width: 70%;height: 70%;border: 1px solid;"
  453. v-if="!item.urlBase" :src="noDataPng" border="1">
  454. <a-button v-if="infoModel.businessLicenseDateResult ==='2'"
  455. style="display: block;margin-top: 10px;border-color: red;color: red"
  456. danger @click="removeFile(item,'businessLicenseDate')">移除
  457. </a-button>
  458. </swiper-slide>
  459. <!-- <div
  460. class="swiper-button-next swiper-button-white"
  461. slot="button-next"
  462. ></div>
  463. <div
  464. class="swiper-button-prev swiper-button-white"
  465. slot="button-prev"
  466. ></div>-->
  467. </swiper>
  468. <!-- swiper2 Thumbs -->
  469. <swiper
  470. class="swiper gallery-thumbs"
  471. :options="swiperOptionThumbs"
  472. ref="swiperThumbs"
  473. >
  474. <swiper-slide
  475. class="slide"
  476. style="width:100px;height:100px;"
  477. v-for="(item, index) in infoModel.businessLicenseDate"
  478. :key="item.id"
  479. >
  480. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  481. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  482. </div>
  483. <img style="width: 100%;height: 96px"
  484. v-if="!item.urlBase" :src="noDataPng" border="1">
  485. </swiper-slide>
  486. <!-- 点我上传文件按钮-->
  487. <div class="clearfix">
  488. <a-upload
  489. listType="picture-card"
  490. name="file"
  491. :multiple="false"
  492. :action="importMinioUploadAction"
  493. :customRequest="e => selfUploadContract(e, 'businessLicenseDate')"
  494. :headers="tokenHeader"
  495. :showUploadList="false"
  496. :beforeUpload="importBeforeUpload"
  497. @change="importHandleChange"
  498. >
  499. <div v-if="infoModel.businessLicenseDateResult ==='2'">
  500. <a-icon type="plus"/>
  501. <div class="ant-upload-text">点我上传营业执照到期时间资料</div>
  502. </div>
  503. </a-upload>
  504. </div>
  505. <div class="swiper-button-next swiper-button-white" slot="button-next">
  506. <div>
  507. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  508. </div>
  509. </div>
  510. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  511. <div>
  512. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  513. </div>
  514. </div>
  515. </swiper>
  516. </div>
  517. </div>
  518. </a-card>
  519. <!-- 码号证书到期时间资料-->
  520. <a-card v-if="steps.currentId == 'codeNumberDate'"
  521. style="margin-bottom:10px;
  522. float: left;width: 83%;left: 2%">
  523. <div slot="title">
  524. <span style="float: left;position: relative;top: 4px">码号证书资料</span>
  525. </div>
  526. <div style="width: 100%;float:left;margin-left: 10%">
  527. <a-list size="large" >
  528. <template>
  529. <a-list-item style='height: 60px' >
  530. <a-col :span="6" >
  531. <div>
  532. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  533. <div style="float:left;margin: 50px 10px;" >
  534. <a-radio-group button-style="solid" disabled v-model='infoModel.codeNumberDateResult'>
  535. <a-radio :value="'1'">是</a-radio>
  536. <a-radio :value="'2'">否</a-radio>
  537. </a-radio-group>
  538. </div>
  539. </div>
  540. </a-col>
  541. <a-col :span="18" >
  542. <div style="clear: both"></div>
  543. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  544. <a-textarea :disabled='true' v-model=infoModel.codeNumberDateResultRemark placeholder="请输入码号证书到期时间的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  545. </a-form-model-item>
  546. </a-col>
  547. </a-list-item>
  548. </template>
  549. </a-list>
  550. </div>
  551. <!-- 文件上传-->
  552. <!-- 附件-->
  553. <div>
  554. <a-form-model-item style="left: 10%;width: 70%;" label="码号证书资料备注:" v-bind="labelCol1Note">
  555. <a-textarea style="height: 77px" :disabled="infoModel.codeNumberDateResult==='1'?true:false"
  556. @change="textareaChange('codeNumberDate','codeNumberDateRemark')"
  557. v-model="infoModel.codeNumberDateRemark"
  558. placeholder="如没有码号证书到期时间资料,需要说明原因"
  559. />
  560. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  561. </a-form-model-item>
  562. </div>
  563. <div style="height: 70%">
  564. <div class="thumb-example" >
  565. <!-- swiper1 -->
  566. <swiper
  567. class="swiper gallery-top"
  568. :options="swiperOptionTop"
  569. ref="swiperTop"
  570. >
  571. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.codeNumberDate" :key="item.id">
  572. <iframe
  573. v-if="item.urlBase"
  574. frameborder="1"
  575. :src="item.urlBase"
  576. ref="ifr"
  577. width="704px"
  578. height="445px"
  579. scrolling="auto">
  580. </iframe>
  581. <img style="width: 70%;height: 70%;border: 1px solid;"
  582. v-if="!item.urlBase" :src="noDataPng" border="1">
  583. <a-button v-if="infoModel.codeNumberDateResult ==='2'"
  584. style="display: block;margin-top: 10px;border-color: red;color: red"
  585. danger @click="removeFile(item,'codeNumberDate')">移除
  586. </a-button>
  587. </swiper-slide>
  588. <!-- <div
  589. class="swiper-button-next swiper-button-white"
  590. slot="button-next"
  591. ></div>
  592. <div
  593. class="swiper-button-prev swiper-button-white"
  594. slot="button-prev"
  595. ></div>-->
  596. </swiper>
  597. <!-- swiper2 Thumbs -->
  598. <swiper
  599. class="swiper gallery-thumbs"
  600. :options="swiperOptionThumbs"
  601. ref="swiperThumbs"
  602. >
  603. <swiper-slide
  604. class="slide"
  605. style="width:100px;height:100px;"
  606. v-for="(item, index) in infoModel.codeNumberDate"
  607. :key="item.id"
  608. >
  609. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  610. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  611. </div>
  612. <img style="width: 100%;height: 96px"
  613. v-if="!item.urlBase" :src="noDataPng" border="1">
  614. </swiper-slide>
  615. <!-- 点我上传文件按钮-->
  616. <div class="clearfix">
  617. <a-upload
  618. listType="picture-card"
  619. name="file"
  620. :multiple="false"
  621. :action="importMinioUploadAction"
  622. :customRequest="e => selfUploadContract(e, 'codeNumberDate')"
  623. :headers="tokenHeader"
  624. :showUploadList="false"
  625. :beforeUpload="importBeforeUpload"
  626. @change="importHandleChange"
  627. >
  628. <div v-if="infoModel.codeNumberDateResult ==='2'">
  629. <a-icon type="plus"/>
  630. <div class="ant-upload-text">点我上传码号证书到期时间资料</div>
  631. </div>
  632. </a-upload>
  633. </div>
  634. <div class="swiper-button-next swiper-button-white" slot="button-next">
  635. <div>
  636. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  637. </div>
  638. </div>
  639. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  640. <div>
  641. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  642. </div>
  643. </div>
  644. </swiper>
  645. </div>
  646. </div>
  647. </a-card>
  648. <!-- 备案通知到期时间-->
  649. <a-card v-if="steps.currentId == 'filingsDate'"
  650. style="margin-bottom:10px;
  651. float: left;width: 83%;left: 2%">
  652. <div slot="title">
  653. <span style="float: left;position: relative;top: 4px"> 备案通知资料</span>
  654. </div>
  655. <div style="width: 100%;float:left;margin-left: 10%">
  656. <a-list size="large" >
  657. <template>
  658. <a-list-item style='height: 60px' >
  659. <a-col :span="6" >
  660. <div>
  661. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  662. <div style="float:left;margin: 50px 10px;" >
  663. <a-radio-group button-style="solid" disabled v-model='infoModel.filingsDateResult'>
  664. <a-radio :value="'1'">是</a-radio>
  665. <a-radio :value="'2'">否</a-radio>
  666. </a-radio-group>
  667. </div>
  668. </div>
  669. </a-col>
  670. <a-col :span="18" >
  671. <div style="clear: both"></div>
  672. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  673. <a-textarea :disabled='true' v-model=infoModel.filingsDateResultRemark placeholder="请输入备案通知到期时间的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  674. </a-form-model-item>
  675. </a-col>
  676. </a-list-item>
  677. </template>
  678. </a-list>
  679. </div>
  680. <!-- 文件上传-->
  681. <!-- 附件-->
  682. <div>
  683. <a-form-model-item style="left: 10%;width: 70%;" label="备案通知到期时间资料备注:" v-bind="labelCol1Note">
  684. <a-textarea style="height: 77px" :disabled="infoModel.filingsDateResult==='1'?true:false"
  685. @change="textareaChange('filingsDate','filingsDateRemark')"
  686. v-model="infoModel.filingsDateRemark"
  687. placeholder="如没有备案通知到期时间资料,需要说明原因"
  688. />
  689. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  690. </a-form-model-item>
  691. </div>
  692. <div style="height: 70%">
  693. <div class="thumb-example" >
  694. <!-- swiper1 -->
  695. <swiper
  696. class="swiper gallery-top"
  697. :options="swiperOptionTop"
  698. ref="swiperTop"
  699. >
  700. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.filingsDate" :key="item.id">
  701. <iframe
  702. v-if="item.urlBase"
  703. frameborder="1"
  704. :src="item.urlBase"
  705. ref="ifr"
  706. width="704px"
  707. height="445px"
  708. scrolling="auto">
  709. </iframe>
  710. <img style="width: 70%;height: 70%;border: 1px solid;"
  711. v-if="!item.urlBase" :src="noDataPng" border="1">
  712. <a-button v-if="infoModel.filingsDateResult ==='2' "
  713. style="display: block;margin-top: 10px;border-color: red;color: red"
  714. danger @click="removeFile(item,'filingsDate')">移除
  715. </a-button>
  716. </swiper-slide>
  717. <!-- <div
  718. class="swiper-button-next swiper-button-white"
  719. slot="button-next"
  720. ></div>
  721. <div
  722. class="swiper-button-prev swiper-button-white"
  723. slot="button-prev"
  724. ></div>-->
  725. </swiper>
  726. <!-- swiper2 Thumbs -->
  727. <swiper
  728. class="swiper gallery-thumbs"
  729. :options="swiperOptionThumbs"
  730. ref="swiperThumbs"
  731. >
  732. <swiper-slide
  733. class="slide"
  734. style="width:100px;height:100px;"
  735. v-for="(item, index) in infoModel.filingsDate"
  736. :key="item.id"
  737. >
  738. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  739. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  740. </div>
  741. <img style="width: 100%;height: 96px"
  742. v-if="!item.urlBase" :src="noDataPng" border="1">
  743. </swiper-slide>
  744. <!-- 点我上传文件按钮-->
  745. <div class="clearfix">
  746. <a-upload
  747. listType="picture-card"
  748. name="file"
  749. :multiple="false"
  750. :action="importMinioUploadAction"
  751. :customRequest="e => selfUploadContract(e, 'filingsDate')"
  752. :headers="tokenHeader"
  753. :showUploadList="false"
  754. :beforeUpload="importBeforeUpload"
  755. @change="importHandleChange"
  756. >
  757. <div v-if="infoModel.filingsDateResult ==='2'">
  758. <a-icon type="plus"/>
  759. <div class="ant-upload-text">点我上传备案通知到期时间资料</div>
  760. </div>
  761. </a-upload>
  762. </div>
  763. <div class="swiper-button-next swiper-button-white" slot="button-next">
  764. <div>
  765. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  766. </div>
  767. </div>
  768. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  769. <div>
  770. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  771. </div>
  772. </div>
  773. </swiper>
  774. </div>
  775. </div>
  776. </a-card>
  777. <!-- 增值业务许可证到期时间-->
  778. <a-card v-if="steps.currentId == 'permitDate'"
  779. style="margin-bottom:10px;
  780. float: left;width: 83%;left: 2%">
  781. <div slot="title">
  782. <span style="float: left;position: relative;top: 4px"> 增值业务许可证资料</span>
  783. </div>
  784. <div style="width: 100%;float:left;margin-left: 10%">
  785. <a-list size="large" >
  786. <template>
  787. <a-list-item style='height: 60px' >
  788. <a-col :span="6" >
  789. <div>
  790. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  791. <div style="float:left;margin: 50px 10px;" >
  792. <a-radio-group button-style="solid" disabled v-model='infoModel.permitDateResult'>
  793. <a-radio :value="'1'">是</a-radio>
  794. <a-radio :value="'2'">否</a-radio>
  795. </a-radio-group>
  796. </div>
  797. </div>
  798. </a-col>
  799. <a-col :span="18" >
  800. <div style="clear: both"></div>
  801. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  802. <a-textarea :disabled='true' v-model=infoModel.permitDateResultRemark placeholder="请输入增值业务许可证到期时间资料的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  803. </a-form-model-item>
  804. </a-col>
  805. </a-list-item>
  806. </template>
  807. </a-list>
  808. </div>
  809. <!-- 文件上传-->
  810. <!-- 附件-->
  811. <div>
  812. <a-form-model-item style="left: 10%;width: 70%;" label="业务许可证资料备注:" v-bind="labelCol1Note">
  813. <a-textarea style="height: 77px" :disabled="infoModel.permitDateResult==='1'?true:false"
  814. @change="textareaChange('permitDate','permitDateRemark')"
  815. v-model="infoModel.permitDateRemark"
  816. placeholder="如没有增值业务许可证到期时间资料,需要说明原因"
  817. />
  818. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  819. </a-form-model-item>
  820. </div>
  821. <div style="height: 70%">
  822. <div class="thumb-example" >
  823. <!-- swiper1 -->
  824. <swiper
  825. class="swiper gallery-top"
  826. :options="swiperOptionTop"
  827. ref="swiperTop"
  828. >
  829. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.permitDate" :key="item.id">
  830. <iframe
  831. v-if="item.urlBase"
  832. frameborder="1"
  833. :src="item.urlBase"
  834. ref="ifr"
  835. width="704px"
  836. height="445px"
  837. scrolling="auto">
  838. </iframe>
  839. <img style="width: 70%;height: 70%;border: 1px solid;"
  840. v-if="!item.urlBase" :src="noDataPng" border="1">
  841. <a-button v-if="infoModel.permitDateResult ==='2' "
  842. style="display: block;margin-top: 10px;border-color: red;color: red"
  843. danger @click="removeFile(item,'permitDate')">移除
  844. </a-button>
  845. </swiper-slide>
  846. <!-- <div
  847. class="swiper-button-next swiper-button-white"
  848. slot="button-next"
  849. ></div>
  850. <div
  851. class="swiper-button-prev swiper-button-white"
  852. slot="button-prev"
  853. ></div>-->
  854. </swiper>
  855. <!-- swiper2 Thumbs -->
  856. <swiper
  857. class="swiper gallery-thumbs"
  858. :options="swiperOptionThumbs"
  859. ref="swiperThumbs"
  860. >
  861. <swiper-slide
  862. class="slide"
  863. style="width:100px;height:100px;"
  864. v-for="(item, index) in infoModel.permitDate"
  865. :key="item.id"
  866. >
  867. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  868. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  869. </div>
  870. <img style="width: 100%;height: 96px"
  871. v-if="!item.urlBase" :src="noDataPng" border="1">
  872. </swiper-slide>
  873. <!-- 点我上传文件按钮-->
  874. <div class="clearfix">
  875. <a-upload
  876. listType="picture-card"
  877. name="file"
  878. :multiple="false"
  879. :action="importMinioUploadAction"
  880. :customRequest="e => selfUploadContract(e, 'permitDate')"
  881. :headers="tokenHeader"
  882. :showUploadList="false"
  883. :beforeUpload="importBeforeUpload"
  884. @change="importHandleChange"
  885. >
  886. <div v-if="infoModel.permitDateResult ==='2'">
  887. <a-icon type="plus"/>
  888. <div class="ant-upload-text">点我上传增值业务许可证到期时间资料</div>
  889. </div>
  890. </a-upload>
  891. </div>
  892. <div class="swiper-button-next swiper-button-white" slot="button-next">
  893. <div>
  894. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  895. </div>
  896. </div>
  897. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  898. <div>
  899. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  900. </div>
  901. </div>
  902. </swiper>
  903. </div>
  904. </div>
  905. </a-card>
  906. <!-- 法人/责任人证件-->
  907. <a-card v-if="steps.currentId == 'corporationCard'"
  908. style="margin-bottom:10px;
  909. float: left;width: 83%;left: 2%">
  910. <div slot="title">
  911. <span style="float: left;position: relative;top: 4px"> 法人/责任人证件资料</span>
  912. </div>
  913. <div style="width: 100%;float:left;margin-left: 10%">
  914. <a-list size="large" >
  915. <template>
  916. <a-list-item style='height: 60px' >
  917. <a-col :span="6" >
  918. <div>
  919. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  920. <div style="float:left;margin: 50px 10px;" >
  921. <a-radio-group button-style="solid" disabled v-model='infoModel.corporationCardResult'>
  922. <a-radio :value="'1'">是</a-radio>
  923. <a-radio :value="'2'">否</a-radio>
  924. </a-radio-group>
  925. </div>
  926. </div>
  927. </a-col>
  928. <a-col :span="18" >
  929. <div style="clear: both"></div>
  930. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  931. <a-textarea :disabled='true' v-model=infoModel.corporationCardResultRemark placeholder="请输入法人/责任人证件资料的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  932. </a-form-model-item>
  933. </a-col>
  934. </a-list-item>
  935. </template>
  936. </a-list>
  937. </div>
  938. <!-- 文件上传-->
  939. <!-- 附件-->
  940. <div>
  941. <a-form-model-item style="left: 10%;width: 70%;" label="法人/责任人证件资料备注:" v-bind="labelCol1Note">
  942. <a-textarea style="height: 77px" :disabled="infoModel.corporationCardResult==='1'?true:false"
  943. @change="textareaChange('corporationCard','corporationCardRemark')"
  944. v-model="infoModel.corporationCardRemark"
  945. placeholder="如没有法人/责任人证件,需要说明原因"
  946. />
  947. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  948. </a-form-model-item>
  949. </div>
  950. <div style="height: 70%">
  951. <div class="thumb-example" >
  952. <!-- swiper1 -->
  953. <swiper
  954. class="swiper gallery-top"
  955. :options="swiperOptionTop"
  956. ref="swiperTop"
  957. >
  958. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.corporationCard" :key="item.id">
  959. <iframe
  960. v-if="item.urlBase"
  961. frameborder="1"
  962. :src="item.urlBase"
  963. ref="ifr"
  964. width="704px"
  965. height="445px"
  966. scrolling="auto">
  967. </iframe>
  968. <img style="width: 70%;height: 70%;border: 1px solid;"
  969. v-if="!item.urlBase" :src="noDataPng" border="1">
  970. <a-button v-if="infoModel.corporationCardResult ==='2' "
  971. style="display: block;margin-top: 10px;border-color: red;color: red"
  972. danger @click="removeFile(item,'corporationCard')">移除
  973. </a-button>
  974. </swiper-slide>
  975. <!-- <div
  976. class="swiper-button-next swiper-button-white"
  977. slot="button-next"
  978. ></div>
  979. <div
  980. class="swiper-button-prev swiper-button-white"
  981. slot="button-prev"
  982. ></div>-->
  983. </swiper>
  984. <!-- swiper2 Thumbs -->
  985. <swiper
  986. class="swiper gallery-thumbs"
  987. :options="swiperOptionThumbs"
  988. ref="swiperThumbs"
  989. >
  990. <swiper-slide
  991. class="slide"
  992. style="width:100px;height:100px;"
  993. v-for="(item, index) in infoModel.corporationCard"
  994. :key="item.id"
  995. >
  996. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  997. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  998. </div>
  999. <img style="width: 100%;height: 96px"
  1000. v-if="!item.urlBase" :src="noDataPng" border="1">
  1001. </swiper-slide>
  1002. <!-- 点我上传文件按钮-->
  1003. <div class="clearfix">
  1004. <a-upload
  1005. listType="picture-card"
  1006. name="file"
  1007. :multiple="false"
  1008. :action="importMinioUploadAction"
  1009. :customRequest="e => selfUploadContract(e, 'corporationCard')"
  1010. :headers="tokenHeader"
  1011. :showUploadList="false"
  1012. :beforeUpload="importBeforeUpload"
  1013. @change="importHandleChange"
  1014. >
  1015. <div v-if="infoModel.corporationCardResult ==='2'">
  1016. <a-icon type="plus"/>
  1017. <div class="ant-upload-text">点我上传法人/责任人证件资料</div>
  1018. </div>
  1019. </a-upload>
  1020. </div>
  1021. <div class="swiper-button-next swiper-button-white" slot="button-next">
  1022. <div>
  1023. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  1024. </div>
  1025. </div>
  1026. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  1027. <div>
  1028. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  1029. </div>
  1030. </div>
  1031. </swiper>
  1032. </div>
  1033. </div>
  1034. </a-card>
  1035. <!-- 责任人授权书-->
  1036. <a-card v-if="steps.currentId == 'personResponsible'"
  1037. style="margin-bottom:10px;
  1038. float: left;width: 83%;left: 2%">
  1039. <div slot="title">
  1040. <span style="float: left;position: relative;top: 4px"> 责任人授权书资料</span>
  1041. </div>
  1042. <div style="width: 100%;float:left;margin-left: 10%">
  1043. <a-list size="large" >
  1044. <template>
  1045. <a-list-item style='height: 60px' >
  1046. <a-col :span="6" >
  1047. <div>
  1048. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  1049. <div style="float:left;margin: 50px 10px;" >
  1050. <a-radio-group button-style="solid" disabled v-model='infoModel.personResponsibleResult'>
  1051. <a-radio :value="'1'">是</a-radio>
  1052. <a-radio :value="'2'">否</a-radio>
  1053. </a-radio-group>
  1054. </div>
  1055. </div>
  1056. </a-col>
  1057. <a-col :span="18" >
  1058. <div style="clear: both"></div>
  1059. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  1060. <a-textarea :disabled='true' v-model=infoModel.personResponsibleResultRemark placeholder="请输入责任人授权书资料的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  1061. </a-form-model-item>
  1062. </a-col>
  1063. </a-list-item>
  1064. </template>
  1065. </a-list>
  1066. </div>
  1067. <!-- 文件上传-->
  1068. <!-- 附件-->
  1069. <div>
  1070. <a-form-model-item style="left: 10%;width: 70%;" label="责任人授权书资料备注:" v-bind="labelCol1Note">
  1071. <a-textarea style="height: 77px" :disabled="infoModel.personResponsibleResult==='1'?true:false"
  1072. @change="textareaChange('personResponsible','personResponsibleRemark')"
  1073. v-model="infoModel.personResponsibleRemark"
  1074. placeholder="如没有责任人授权书资料,需要说明原因"
  1075. />
  1076. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  1077. </a-form-model-item>
  1078. </div>
  1079. <div style="height: 70%">
  1080. <div class="thumb-example" >
  1081. <!-- swiper1 -->
  1082. <swiper
  1083. class="swiper gallery-top"
  1084. :options="swiperOptionTop"
  1085. ref="swiperTop"
  1086. >
  1087. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.personResponsible" :key="item.id">
  1088. <iframe
  1089. v-if="item.urlBase"
  1090. frameborder="1"
  1091. :src="item.urlBase"
  1092. ref="ifr"
  1093. width="704px"
  1094. height="445px"
  1095. scrolling="auto">
  1096. </iframe>
  1097. <img style="width: 70%;height: 70%;border: 1px solid;"
  1098. v-if="!item.urlBase" :src="noDataPng" border="1">
  1099. <a-button v-if="infoModel.personResponsibleResult ==='2' "
  1100. style="display: block;margin-top: 10px;border-color: red;color: red"
  1101. danger @click="removeFile(item,'personResponsible')">移除
  1102. </a-button>
  1103. </swiper-slide>
  1104. <!-- <div
  1105. class="swiper-button-next swiper-button-white"
  1106. slot="button-next"
  1107. ></div>
  1108. <div
  1109. class="swiper-button-prev swiper-button-white"
  1110. slot="button-prev"
  1111. ></div>-->
  1112. </swiper>
  1113. <!-- swiper2 Thumbs -->
  1114. <swiper
  1115. class="swiper gallery-thumbs"
  1116. :options="swiperOptionThumbs"
  1117. ref="swiperThumbs"
  1118. >
  1119. <swiper-slide
  1120. class="slide"
  1121. style="width:100px;height:100px;"
  1122. v-for="(item, index) in infoModel.personResponsible"
  1123. :key="item.id"
  1124. >
  1125. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  1126. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  1127. </div>
  1128. <img style="width: 100%;height: 96px"
  1129. v-if="!item.urlBase" :src="noDataPng" border="1">
  1130. </swiper-slide>
  1131. <!-- 点我上传文件按钮-->
  1132. <div class="clearfix">
  1133. <a-upload
  1134. listType="picture-card"
  1135. name="file"
  1136. :multiple="false"
  1137. :action="importMinioUploadAction"
  1138. :customRequest="e => selfUploadContract(e, 'personResponsible')"
  1139. :headers="tokenHeader"
  1140. :showUploadList="false"
  1141. :beforeUpload="importBeforeUpload"
  1142. @change="importHandleChange"
  1143. >
  1144. <div v-if="infoModel.personResponsibleResult ==='2' ">
  1145. <a-icon type="plus"/>
  1146. <div class="ant-upload-text">点我上传责任人授权书资料</div>
  1147. </div>
  1148. </a-upload>
  1149. </div>
  1150. <div class="swiper-button-next swiper-button-white" slot="button-next">
  1151. <div>
  1152. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  1153. </div>
  1154. </div>
  1155. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  1156. <div>
  1157. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  1158. </div>
  1159. </div>
  1160. </swiper>
  1161. </div>
  1162. </div>
  1163. </a-card>
  1164. <!-- 经办人证件-->
  1165. <a-card v-if="steps.currentId == 'operatorCard'"
  1166. style="margin-bottom:10px;
  1167. float: left;width: 83%;left: 2%">
  1168. <div slot="title">
  1169. <span style="float: left;position: relative;top: 4px"> 经办人证件资料</span>
  1170. </div>
  1171. <div style="width: 100%;float:left;margin-left: 10%">
  1172. <a-list size="large" >
  1173. <template>
  1174. <a-list-item style='height: 60px' >
  1175. <a-col :span="6" >
  1176. <div>
  1177. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  1178. <div style="float:left;margin: 50px 10px;" >
  1179. <a-radio-group button-style="solid" disabled v-model='infoModel.operatorCardResult'>
  1180. <a-radio :value="'1'">是</a-radio>
  1181. <a-radio :value="'2'">否</a-radio>
  1182. </a-radio-group>
  1183. </div>
  1184. </div>
  1185. </a-col>
  1186. <a-col :span="18" >
  1187. <div style="clear: both"></div>
  1188. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  1189. <a-textarea :disabled='true' v-model=infoModel.operatorCardResultRemark placeholder="请输入经办人证件资料的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  1190. </a-form-model-item>
  1191. </a-col>
  1192. </a-list-item>
  1193. </template>
  1194. </a-list>
  1195. </div>
  1196. <!-- 文件上传-->
  1197. <!-- 附件-->
  1198. <div>
  1199. <a-form-model-item style="left: 10%;width: 70%;" label="经办人证件资料备注:" v-bind="labelCol1Note">
  1200. <a-textarea style="height: 77px" :disabled="infoModel.operatorCardResult==='1'?true:false"
  1201. v-model="infoModel.operatorCardRemark"
  1202. @change="textareaChange('operatorCard','operatorCardRemark')"
  1203. placeholder="如没有经办人证件资料,需要说明原因"
  1204. />
  1205. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  1206. </a-form-model-item>
  1207. </div>
  1208. <div style="height: 70%">
  1209. <div class="thumb-example" >
  1210. <!-- swiper1 -->
  1211. <swiper
  1212. class="swiper gallery-top"
  1213. :options="swiperOptionTop"
  1214. ref="swiperTop"
  1215. >
  1216. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.operatorCard" :key="item.id">
  1217. <iframe
  1218. v-if="item.urlBase"
  1219. frameborder="1"
  1220. :src="item.urlBase"
  1221. ref="ifr"
  1222. width="704px"
  1223. height="445px"
  1224. scrolling="auto">
  1225. </iframe>
  1226. <img style="width: 70%;height: 70%;border: 1px solid;"
  1227. v-if="!item.urlBase" :src="noDataPng" border="1">
  1228. <a-button v-if="infoModel.operatorCardResult ==='2' "
  1229. style="display: block;margin-top: 10px;border-color: red;color: red"
  1230. danger @click="removeFile(item,'operatorCard')">移除
  1231. </a-button>
  1232. </swiper-slide>
  1233. <!-- <div
  1234. class="swiper-button-next swiper-button-white"
  1235. slot="button-next"
  1236. ></div>
  1237. <div
  1238. class="swiper-button-prev swiper-button-white"
  1239. slot="button-prev"
  1240. ></div>-->
  1241. </swiper>
  1242. <!-- swiper2 Thumbs -->
  1243. <swiper
  1244. class="swiper gallery-thumbs"
  1245. :options="swiperOptionThumbs"
  1246. ref="swiperThumbs"
  1247. >
  1248. <swiper-slide
  1249. class="slide"
  1250. style="width:100px;height:100px;"
  1251. v-for="(item, index) in infoModel.operatorCard"
  1252. :key="item.id"
  1253. >
  1254. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  1255. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  1256. </div>
  1257. <img style="width: 100%;height: 96px"
  1258. v-if="!item.urlBase" :src="noDataPng" border="1">
  1259. </swiper-slide>
  1260. <!-- 点我上传文件按钮-->
  1261. <div class="clearfix">
  1262. <a-upload
  1263. listType="picture-card"
  1264. name="file"
  1265. :multiple="false"
  1266. :action="importMinioUploadAction"
  1267. :customRequest="e => selfUploadContract(e, 'operatorCard')"
  1268. :headers="tokenHeader"
  1269. :showUploadList="false"
  1270. :beforeUpload="importBeforeUpload"
  1271. @change="importHandleChange"
  1272. >
  1273. <div v-if="infoModel.operatorCardResult ==='2'">
  1274. <a-icon type="plus"/>
  1275. <div class="ant-upload-text">点我上传经办人证件资料</div>
  1276. </div>
  1277. </a-upload>
  1278. </div>
  1279. <div class="swiper-button-next swiper-button-white" slot="button-next">
  1280. <div>
  1281. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  1282. </div>
  1283. </div>
  1284. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  1285. <div>
  1286. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  1287. </div>
  1288. </div>
  1289. </swiper>
  1290. </div>
  1291. </div>
  1292. </a-card>
  1293. <!-- 经办人手持身份证照片(背景需为电信营业厅或白墙-->
  1294. <a-card v-if="steps.currentId == 'operatorCardPhone'"
  1295. style="margin-bottom:10px;
  1296. float: left;width: 83%;left: 2%">
  1297. <div slot="title">
  1298. <span style="float: left;position: relative;top: 4px"> 经办人手持身份证照片</span>
  1299. </div>
  1300. <div style="width: 100%;float:left;margin-left: 10%">
  1301. <a-list size="large" >
  1302. <template>
  1303. <a-list-item style='height: 60px' >
  1304. <a-col :span="6" >
  1305. <div>
  1306. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  1307. <div style="float:left;margin: 50px 10px;" >
  1308. <a-radio-group button-style="solid" disabled v-model='infoModel.operatorCardPhoneResult'>
  1309. <a-radio :value="'1'">是</a-radio>
  1310. <a-radio :value="'2'">否</a-radio>
  1311. </a-radio-group>
  1312. </div>
  1313. </div>
  1314. </a-col>
  1315. <a-col :span="18" >
  1316. <div style="clear: both"></div>
  1317. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  1318. <a-textarea :disabled='true' v-model=infoModel.operatorCardPhoneResultRemark placeholder="请输入经办人手持身份证照片的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  1319. </a-form-model-item>
  1320. </a-col>
  1321. </a-list-item>
  1322. </template>
  1323. </a-list>
  1324. </div>
  1325. <!-- 文件上传-->
  1326. <!-- 附件-->
  1327. <div>
  1328. <a-form-model-item style="left: 10%;width: 70%;" label="经办人手持身份证照片备注:" v-bind="labelCol1Note">
  1329. <a-textarea style="height: 77px" :disabled="infoModel.operatorCardPhoneResult==='1'?true:false"
  1330. @change="textareaChange('operatorCardPhone','operatorCardPhoneRemark')"
  1331. v-model="infoModel.operatorCardPhoneRemark"
  1332. placeholder="经办人手持身份证照片备注"
  1333. />
  1334. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  1335. </a-form-model-item>
  1336. </div>
  1337. <div style="height: 70%">
  1338. <div class="thumb-example" >
  1339. <!-- swiper1 -->
  1340. <swiper
  1341. class="swiper gallery-top"
  1342. :options="swiperOptionTop"
  1343. ref="swiperTop"
  1344. >
  1345. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.operatorCardPhone" :key="item.id">
  1346. <iframe
  1347. v-if="item.urlBase"
  1348. frameborder="1"
  1349. :src="item.urlBase"
  1350. ref="ifr"
  1351. width="704px"
  1352. height="445px"
  1353. scrolling="auto">
  1354. </iframe>
  1355. <img style="width: 70%;height: 70%;border: 1px solid;"
  1356. v-if="!item.urlBase" :src="noDataPng" border="1">
  1357. <a-button v-if="infoModel.operatorCardPhoneResult ==='2' "
  1358. style="display: block;margin-top: 10px;border-color: red;color: red"
  1359. danger @click="removeFile(item,'operatorCardPhone')">移除
  1360. </a-button>
  1361. </swiper-slide>
  1362. <!-- <div
  1363. class="swiper-button-next swiper-button-white"
  1364. slot="button-next"
  1365. ></div>
  1366. <div
  1367. class="swiper-button-prev swiper-button-white"
  1368. slot="button-prev"
  1369. ></div>-->
  1370. </swiper>
  1371. <!-- swiper2 Thumbs -->
  1372. <swiper
  1373. class="swiper gallery-thumbs"
  1374. :options="swiperOptionThumbs"
  1375. ref="swiperThumbs"
  1376. >
  1377. <swiper-slide
  1378. class="slide"
  1379. style="width:100px;height:100px;"
  1380. v-for="(item, index) in infoModel.operatorCardPhone"
  1381. :key="item.id"
  1382. >
  1383. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  1384. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  1385. </div>
  1386. <img style="width: 100%;height: 96px"
  1387. v-if="!item.urlBase" :src="noDataPng" border="1">
  1388. </swiper-slide>
  1389. <!-- 点我上传文件按钮-->
  1390. <div class="clearfix">
  1391. <a-upload
  1392. listType="picture-card"
  1393. name="file"
  1394. :multiple="false"
  1395. :action="importMinioUploadAction"
  1396. :customRequest="e => selfUploadContract(e, 'operatorCardPhone')"
  1397. :headers="tokenHeader"
  1398. :showUploadList="false"
  1399. :beforeUpload="importBeforeUpload"
  1400. @change="importHandleChange"
  1401. >
  1402. <div v-if="infoModel.operatorCardPhoneResult ==='2'">
  1403. <a-icon type="plus"/>
  1404. <div class="ant-upload-text">点我上传经办人手持身份证照片</div>
  1405. </div>
  1406. </a-upload>
  1407. </div>
  1408. <div class="swiper-button-next swiper-button-white" slot="button-next">
  1409. <div>
  1410. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  1411. </div>
  1412. </div>
  1413. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  1414. <div>
  1415. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  1416. </div>
  1417. </div>
  1418. </swiper>
  1419. </div>
  1420. </div>
  1421. </a-card>
  1422. <!-- 机房设备照片-->
  1423. <a-card v-if="steps.currentId == 'devicePhone'"
  1424. style="margin-bottom:10px;
  1425. float: left;width: 83%;left: 2%">
  1426. <div slot="title">
  1427. <span style="float: left;position: relative;top: 4px"> 机房设备照片</span>
  1428. </div>
  1429. <div style="width: 100%;float:left;margin-left: 10%">
  1430. <a-list size="large" >
  1431. <template>
  1432. <a-list-item style='height: 60px' >
  1433. <a-col :span="6" >
  1434. <div>
  1435. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  1436. <div style="float:left;margin: 50px 10px;" >
  1437. <a-radio-group button-style="solid" disabled v-model='infoModel.devicePhoneResult'>
  1438. <a-radio :value="'1'">是</a-radio>
  1439. <a-radio :value="'2'">否</a-radio>
  1440. </a-radio-group>
  1441. </div>
  1442. </div>
  1443. </a-col>
  1444. <a-col :span="18" >
  1445. <div style="clear: both"></div>
  1446. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  1447. <a-textarea :disabled='true' v-model=infoModel.devicePhoneResultRemark placeholder="请输入机房设备照片的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  1448. </a-form-model-item>
  1449. </a-col>
  1450. </a-list-item>
  1451. </template>
  1452. </a-list>
  1453. </div>
  1454. <!-- 文件上传-->
  1455. <!-- 附件-->
  1456. <div>
  1457. <a-form-model-item style="left: 10%;width: 70%;" label="机房设备照片备注:" v-bind="labelCol1Note">
  1458. <a-textarea style="height: 77px" :disabled="infoModel.devicePhoneResult==='1'?true:false"
  1459. @change="textareaChange('devicePhone','devicePhoneRemark')"
  1460. v-model="infoModel.devicePhoneRemark"
  1461. placeholder="机房设备照片"
  1462. />
  1463. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  1464. </a-form-model-item>
  1465. </div>
  1466. <div style="height: 70%">
  1467. <div class="thumb-example" >
  1468. <!-- swiper1 -->
  1469. <swiper
  1470. class="swiper gallery-top"
  1471. :options="swiperOptionTop"
  1472. ref="swiperTop"
  1473. >
  1474. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.devicePhone" :key="item.id">
  1475. <iframe
  1476. v-if="item.urlBase"
  1477. frameborder="1"
  1478. :src="item.urlBase"
  1479. ref="ifr"
  1480. width="704px"
  1481. height="445px"
  1482. scrolling="auto">
  1483. </iframe>
  1484. <img style="width: 70%;height: 70%;border: 1px solid;"
  1485. v-if="!item.urlBase" :src="noDataPng" border="1">
  1486. <a-button v-if="infoModel.devicePhoneResult ==='2' "
  1487. style="display: block;margin-top: 10px;border-color: red;color: red"
  1488. danger @click="removeFile(item,'devicePhone')">移除
  1489. </a-button>
  1490. </swiper-slide>
  1491. <!-- <div
  1492. class="swiper-button-next swiper-button-white"
  1493. slot="button-next"
  1494. ></div>
  1495. <div
  1496. class="swiper-button-prev swiper-button-white"
  1497. slot="button-prev"
  1498. ></div>-->
  1499. </swiper>
  1500. <!-- swiper2 Thumbs -->
  1501. <swiper
  1502. class="swiper gallery-thumbs"
  1503. :options="swiperOptionThumbs"
  1504. ref="swiperThumbs"
  1505. >
  1506. <swiper-slide
  1507. class="slide"
  1508. style="width:100px;height:100px;"
  1509. v-for="(item, index) in infoModel.devicePhone"
  1510. :key="item.id"
  1511. >
  1512. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  1513. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  1514. </div>
  1515. <img style="width: 100%;height: 96px"
  1516. v-if="!item.urlBase" :src="noDataPng" border="1">
  1517. </swiper-slide>
  1518. <!-- 点我上传文件按钮-->
  1519. <div class="clearfix">
  1520. <a-upload
  1521. listType="picture-card"
  1522. name="file"
  1523. :multiple="false"
  1524. :action="importMinioUploadAction"
  1525. :customRequest="e => selfUploadContract(e, 'devicePhone')"
  1526. :headers="tokenHeader"
  1527. :showUploadList="false"
  1528. :beforeUpload="importBeforeUpload"
  1529. @change="importHandleChange"
  1530. >
  1531. <div v-if="infoModel.devicePhoneResult ==='2' ">
  1532. <a-icon type="plus"/>
  1533. <div class="ant-upload-text">点我上传机房设备照片</div>
  1534. </div>
  1535. </a-upload>
  1536. </div>
  1537. <div class="swiper-button-next swiper-button-white" slot="button-next">
  1538. <div>
  1539. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  1540. </div>
  1541. </div>
  1542. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  1543. <div>
  1544. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  1545. </div>
  1546. </div>
  1547. </swiper>
  1548. </div>
  1549. </div>
  1550. </a-card>
  1551. <!-- 短信模板-->
  1552. <a-card v-if="steps.currentId == 'textMessage'"
  1553. style="margin-bottom:10px;
  1554. float: left;width: 83%;left: 2%">
  1555. <div slot="title">
  1556. <span style="float: left;position: relative;top: 4px"> 短信模板</span>
  1557. </div>
  1558. <div style="width: 100%;float:left;margin-left: 10%">
  1559. <a-list size="large" >
  1560. <template>
  1561. <a-list-item style='height: 60px' >
  1562. <a-col :span="6" >
  1563. <div>
  1564. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  1565. <div style="float:left;margin: 50px 10px;" >
  1566. <a-radio-group button-style="solid" disabled v-model='infoModel.textMessageResult'>
  1567. <a-radio :value="'1'">是</a-radio>
  1568. <a-radio :value="'2'">否</a-radio>
  1569. </a-radio-group>
  1570. </div>
  1571. </div>
  1572. </a-col>
  1573. <a-col :span="18" >
  1574. <div style="clear: both"></div>
  1575. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  1576. <a-textarea :disabled='true' v-model=infoModel.textMessageResultRemark placeholder="请输入短信模版的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  1577. </a-form-model-item>
  1578. </a-col>
  1579. </a-list-item>
  1580. </template>
  1581. </a-list>
  1582. </div>
  1583. <!-- 文件上传-->
  1584. <!-- 附件-->
  1585. <div>
  1586. <a-form-model-item style="left: 10%;width: 70%;" label="短信模板备注:" v-bind="labelCol1Note">
  1587. <a-textarea style="height: 77px" :disabled="infoModel.textMessageResult==='1'?true:false"
  1588. @change="textareaChange('textMessage','textMessageRemark')"
  1589. v-model="infoModel.textMessageRemark"
  1590. placeholder="短信模板"
  1591. />
  1592. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  1593. </a-form-model-item>
  1594. </div>
  1595. <div style="height: 70%">
  1596. <div class="thumb-example" >
  1597. <!-- swiper1 -->
  1598. <swiper
  1599. class="swiper gallery-top"
  1600. :options="swiperOptionTop"
  1601. ref="swiperTop"
  1602. >
  1603. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.textMessage" :key="item.id">
  1604. <iframe
  1605. v-if="item.urlBase"
  1606. frameborder="1"
  1607. :src="item.urlBase"
  1608. ref="ifr"
  1609. width="704px"
  1610. height="445px"
  1611. scrolling="auto">
  1612. </iframe>
  1613. <img style="width: 70%;height: 70%;border: 1px solid;"
  1614. v-if="!item.urlBase" :src="noDataPng" border="1">
  1615. <a-button v-if="infoModel.textMessageResult ==='2' "
  1616. style="display: block;margin-top: 10px;border-color: red;color: red"
  1617. danger @click="removeFile(item,'textMessage')">移除
  1618. </a-button>
  1619. </swiper-slide>
  1620. <!-- <div
  1621. class="swiper-button-next swiper-button-white"
  1622. slot="button-next"
  1623. ></div>
  1624. <div
  1625. class="swiper-button-prev swiper-button-white"
  1626. slot="button-prev"
  1627. ></div>-->
  1628. </swiper>
  1629. <!-- swiper2 Thumbs -->
  1630. <swiper
  1631. class="swiper gallery-thumbs"
  1632. :options="swiperOptionThumbs"
  1633. ref="swiperThumbs"
  1634. >
  1635. <swiper-slide
  1636. class="slide"
  1637. style="width:100px;height:100px;"
  1638. v-for="(item, index) in infoModel.textMessage"
  1639. :key="item.id"
  1640. >
  1641. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  1642. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  1643. </div>
  1644. <img style="width: 100%;height: 96px"
  1645. v-if="!item.urlBase" :src="noDataPng" border="1">
  1646. </swiper-slide>
  1647. <!-- 点我上传文件按钮-->
  1648. <div class="clearfix">
  1649. <a-upload
  1650. listType="picture-card"
  1651. name="file"
  1652. :multiple="false"
  1653. :action="importMinioUploadAction"
  1654. :customRequest="e => selfUploadContract(e, 'textMessage')"
  1655. :headers="tokenHeader"
  1656. :showUploadList="false"
  1657. :beforeUpload="importBeforeUpload"
  1658. @change="importHandleChange"
  1659. >
  1660. <div v-if="infoModel.textMessageResult ==='2'">
  1661. <a-icon type="plus"/>
  1662. <div class="ant-upload-text">点我上传短信模板</div>
  1663. </div>
  1664. </a-upload>
  1665. </div>
  1666. <div class="swiper-button-next swiper-button-white" slot="button-next">
  1667. <div>
  1668. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  1669. </div>
  1670. </div>
  1671. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  1672. <div>
  1673. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  1674. </div>
  1675. </div>
  1676. </swiper>
  1677. </div>
  1678. </div>
  1679. </a-card>
  1680. <!-- 端口类短信业务责任承诺书-->
  1681. <a-card v-if="steps.currentId == 'textMessageBook'"
  1682. style="margin-bottom:10px;
  1683. float: left;width: 83%;left: 2%">
  1684. <div slot="title">
  1685. <span style="float: left;position: relative;top: 4px"> 端口类短信业务责任承诺书</span>
  1686. </div>
  1687. <div style="width: 100%;float:left;margin-left: 10%">
  1688. <a-list size="large" >
  1689. <template>
  1690. <a-list-item style='height: 60px' >
  1691. <a-col :span="6" >
  1692. <div>
  1693. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  1694. <div style="float:left;margin: 50px 10px;" >
  1695. <a-radio-group button-style="solid" disabled v-model='infoModel.textMessageBookResult'>
  1696. <a-radio :value="'1'">是</a-radio>
  1697. <a-radio :value="'2'">否</a-radio>
  1698. </a-radio-group>
  1699. </div>
  1700. </div>
  1701. </a-col>
  1702. <a-col :span="18" >
  1703. <div style="clear: both"></div>
  1704. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  1705. <a-textarea :disabled='true' v-model=infoModel.textMessageBookResultRemark placeholder="请输入端口类短信业务责任承诺书的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  1706. </a-form-model-item>
  1707. </a-col>
  1708. </a-list-item>
  1709. </template>
  1710. </a-list>
  1711. </div>
  1712. <!-- 文件上传-->
  1713. <!-- 附件-->
  1714. <div>
  1715. <a-form-model-item style="left: 10%;width: 70%;" label="短信业务责任承诺书备注:" v-bind="labelCol1Note">
  1716. <a-textarea style="height: 77px" :disabled="infoModel.textMessageBookResult==='1'?true:false"
  1717. @change="textareaChange('textMessageBook','textMessageBookRemark')"
  1718. v-model="infoModel.textMessageBookRemark"
  1719. placeholder="端口类短信业务责任承诺书"
  1720. />
  1721. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  1722. </a-form-model-item>
  1723. </div>
  1724. <div style="height: 70%">
  1725. <div class="thumb-example" >
  1726. <!-- swiper1 -->
  1727. <swiper
  1728. class="swiper gallery-top"
  1729. :options="swiperOptionTop"
  1730. ref="swiperTop"
  1731. >
  1732. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.textMessageBook" :key="item.id">
  1733. <iframe
  1734. v-if="item.urlBase"
  1735. frameborder="1"
  1736. :src="item.urlBase"
  1737. ref="ifr"
  1738. width="704px"
  1739. height="445px"
  1740. scrolling="auto">
  1741. </iframe>
  1742. <img style="width: 70%;height: 70%;border: 1px solid;"
  1743. v-if="!item.urlBase" :src="noDataPng" border="1">
  1744. <a-button v-if="infoModel.textMessageBookResult ==='2' "
  1745. style="display: block;margin-top: 10px;border-color: red;color: red"
  1746. danger @click="removeFile(item,'textMessageBook')">移除
  1747. </a-button>
  1748. </swiper-slide>
  1749. <!-- <div
  1750. class="swiper-button-next swiper-button-white"
  1751. slot="button-next"
  1752. ></div>
  1753. <div
  1754. class="swiper-button-prev swiper-button-white"
  1755. slot="button-prev"
  1756. ></div>-->
  1757. </swiper>
  1758. <!-- swiper2 Thumbs -->
  1759. <swiper
  1760. class="swiper gallery-thumbs"
  1761. :options="swiperOptionThumbs"
  1762. ref="swiperThumbs"
  1763. >
  1764. <swiper-slide
  1765. class="slide"
  1766. style="width:100px;height:100px;"
  1767. v-for="(item, index) in infoModel.textMessageBook"
  1768. :key="item.id"
  1769. >
  1770. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  1771. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  1772. </div>
  1773. <img style="width: 100%;height: 96px"
  1774. v-if="!item.urlBase" :src="noDataPng" border="1">
  1775. </swiper-slide>
  1776. <!-- 点我上传文件按钮-->
  1777. <div class="clearfix">
  1778. <a-upload
  1779. listType="picture-card"
  1780. name="file"
  1781. :multiple="false"
  1782. :action="importMinioUploadAction"
  1783. :customRequest="e => selfUploadContract(e, 'textMessageBook')"
  1784. :headers="tokenHeader"
  1785. :showUploadList="false"
  1786. :beforeUpload="importBeforeUpload"
  1787. @change="importHandleChange"
  1788. >
  1789. <div v-if="infoModel.textMessageBookResult ==='2' ">
  1790. <a-icon type="plus"/>
  1791. <div class="ant-upload-text">点我上传端口类短信业务责任承诺书</div>
  1792. </div>
  1793. </a-upload>
  1794. </div>
  1795. <div class="swiper-button-next swiper-button-white" slot="button-next">
  1796. <div>
  1797. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  1798. </div>
  1799. </div>
  1800. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  1801. <div>
  1802. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  1803. </div>
  1804. </div>
  1805. </swiper>
  1806. </div>
  1807. </div>
  1808. </a-card>
  1809. <!-- 信息安全责任承诺书-->
  1810. <a-card v-if="steps.currentId == 'secureBook'"
  1811. style="margin-bottom:10px;
  1812. float: left;width: 83%;left: 2%">
  1813. <div slot="title">
  1814. <span style="float: left;position: relative;top: 4px"> 信息安全责任承诺书</span>
  1815. </div>
  1816. <div style="width: 100%;float:left;margin-left: 10%">
  1817. <a-list size="large" >
  1818. <template>
  1819. <a-list-item style='height: 60px' >
  1820. <a-col :span="6" >
  1821. <div>
  1822. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  1823. <div style="float:left;margin: 50px 10px;" >
  1824. <a-radio-group button-style="solid" disabled v-model='infoModel.secureBookResult'>
  1825. <a-radio :value="'1'">是</a-radio>
  1826. <a-radio :value="'2'">否</a-radio>
  1827. </a-radio-group>
  1828. </div>
  1829. </div>
  1830. </a-col>
  1831. <a-col :span="18" >
  1832. <div style="clear: both"></div>
  1833. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  1834. <a-textarea :disabled='true' v-model=infoModel.secureBookResultRemark placeholder="请输入信息安全责任承诺书的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  1835. </a-form-model-item>
  1836. </a-col>
  1837. </a-list-item>
  1838. </template>
  1839. </a-list>
  1840. </div>
  1841. <!-- 文件上传-->
  1842. <!-- 附件-->
  1843. <div>
  1844. <a-form-model-item style="left: 10%;width: 70%;" label="信息安全责任承诺书备注:" v-bind="labelCol1Note">
  1845. <a-textarea style="height: 77px" :disabled="infoModel.secureBookResult==='1'?true:false"
  1846. @change="textareaChange('secureBook','secureBookRemark')"
  1847. v-model="infoModel.secureBookRemark"
  1848. placeholder="信息安全责任承诺书"
  1849. />
  1850. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  1851. </a-form-model-item>
  1852. </div>
  1853. <div style="height: 70%">
  1854. <div class="thumb-example" >
  1855. <!-- swiper1 -->
  1856. <swiper
  1857. class="swiper gallery-top"
  1858. :options="swiperOptionTop"
  1859. ref="swiperTop"
  1860. >
  1861. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.secureBook" :key="item.id">
  1862. <iframe
  1863. v-if="item.urlBase"
  1864. frameborder="1"
  1865. :src="item.urlBase"
  1866. ref="ifr"
  1867. width="704px"
  1868. height="445px"
  1869. scrolling="auto">
  1870. </iframe>
  1871. <img style="width: 70%;height: 70%;border: 1px solid;"
  1872. v-if="!item.urlBase" :src="noDataPng" border="1">
  1873. <a-button v-if="infoModel.secureBookResult ==='2' "
  1874. style="display: block;margin-top: 10px;border-color: red;color: red"
  1875. danger @click="removeFile(item,'secureBook')">移除
  1876. </a-button>
  1877. </swiper-slide>
  1878. <!-- <div
  1879. class="swiper-button-next swiper-button-white"
  1880. slot="button-next"
  1881. ></div>
  1882. <div
  1883. class="swiper-button-prev swiper-button-white"
  1884. slot="button-prev"
  1885. ></div>-->
  1886. </swiper>
  1887. <!-- swiper2 Thumbs -->
  1888. <swiper
  1889. class="swiper gallery-thumbs"
  1890. :options="swiperOptionThumbs"
  1891. ref="swiperThumbs"
  1892. >
  1893. <swiper-slide
  1894. class="slide"
  1895. style="width:100px;height:100px;"
  1896. v-for="(item, index) in infoModel.secureBook"
  1897. :key="item.id"
  1898. >
  1899. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  1900. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  1901. </div>
  1902. <img style="width: 100%;height: 96px"
  1903. v-if="!item.urlBase" :src="noDataPng" border="1">
  1904. </swiper-slide>
  1905. <!-- 点我上传文件按钮-->
  1906. <div class="clearfix">
  1907. <a-upload
  1908. listType="picture-card"
  1909. name="file"
  1910. :multiple="false"
  1911. :action="importMinioUploadAction"
  1912. :customRequest="e => selfUploadContract(e, 'secureBook')"
  1913. :headers="tokenHeader"
  1914. :showUploadList="false"
  1915. :beforeUpload="importBeforeUpload"
  1916. @change="importHandleChange"
  1917. >
  1918. <div v-if="infoModel.secureBookResult ==='2'">
  1919. <a-icon type="plus"/>
  1920. <div class="ant-upload-text">点我上传信息安全责任承诺书</div>
  1921. </div>
  1922. </a-upload>
  1923. </div>
  1924. <div class="swiper-button-next swiper-button-white" slot="button-next">
  1925. <div>
  1926. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  1927. </div>
  1928. </div>
  1929. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  1930. <div>
  1931. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  1932. </div>
  1933. </div>
  1934. </swiper>
  1935. </div>
  1936. </div>
  1937. </a-card>
  1938. <!-- 特殊资费审批(标准资费无需提供)-->
  1939. <a-card v-if="steps.currentId == 'special'"
  1940. style="margin-bottom:10px;
  1941. float: left;width: 83%;left: 2%">
  1942. <div slot="title">
  1943. <span style="float: left;position: relative;top: 4px"> 特殊资费审批(标准资费无需提供)</span>
  1944. </div>
  1945. <div style="width: 100%;float:left;margin-left: 10%">
  1946. <a-list size="large" >
  1947. <template>
  1948. <a-list-item style='height: 60px' >
  1949. <a-col :span="6" >
  1950. <div>
  1951. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  1952. <div style="float:left;margin: 50px 10px;" >
  1953. <a-radio-group button-style="solid" disabled v-model='infoModel.specialResult'>
  1954. <a-radio :value="'1'">是</a-radio>
  1955. <a-radio :value="'2'">否</a-radio>
  1956. </a-radio-group>
  1957. </div>
  1958. </div>
  1959. </a-col>
  1960. <a-col :span="18" >
  1961. <div style="clear: both"></div>
  1962. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  1963. <a-textarea :disabled='true' v-model=infoModel.specialResultRemark placeholder="请输入特殊资费审批的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  1964. </a-form-model-item>
  1965. </a-col>
  1966. </a-list-item>
  1967. </template>
  1968. </a-list>
  1969. </div>
  1970. <!-- 文件上传-->
  1971. <!-- 附件-->
  1972. <div>
  1973. <a-form-model-item style="left: 10%;width: 70%;" label="特殊资费审批备注:" v-bind="labelCol1Note">
  1974. <a-textarea style="height: 77px" :disabled="infoModel.specialResult==='1'?true:false"
  1975. @change="textareaChange('special','specialRemark')"
  1976. v-model="infoModel.specialRemark"
  1977. placeholder="特殊资费审批(标准资费无需提供)"
  1978. />
  1979. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  1980. </a-form-model-item>
  1981. </div>
  1982. <div style="height: 70%">
  1983. <div class="thumb-example" >
  1984. <!-- swiper1 -->
  1985. <swiper
  1986. class="swiper gallery-top"
  1987. :options="swiperOptionTop"
  1988. ref="swiperTop"
  1989. >
  1990. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.special" :key="item.id">
  1991. <iframe
  1992. v-if="item.urlBase"
  1993. frameborder="1"
  1994. :src="item.urlBase"
  1995. ref="ifr"
  1996. width="704px"
  1997. height="445px"
  1998. scrolling="auto">
  1999. </iframe>
  2000. <img style="width: 70%;height: 70%;border: 1px solid;"
  2001. v-if="!item.urlBase" :src="noDataPng" border="1">
  2002. <a-button v-if="infoModel.specialResult ==='2' "
  2003. style="display: block;margin-top: 10px;border-color: red;color: red"
  2004. danger @click="removeFile(item,'special')">移除
  2005. </a-button>
  2006. </swiper-slide>
  2007. <!-- <div
  2008. class="swiper-button-next swiper-button-white"
  2009. slot="button-next"
  2010. ></div>
  2011. <div
  2012. class="swiper-button-prev swiper-button-white"
  2013. slot="button-prev"
  2014. ></div>-->
  2015. </swiper>
  2016. <!-- swiper2 Thumbs -->
  2017. <swiper
  2018. class="swiper gallery-thumbs"
  2019. :options="swiperOptionThumbs"
  2020. ref="swiperThumbs"
  2021. >
  2022. <swiper-slide
  2023. class="slide"
  2024. style="width:100px;height:100px;"
  2025. v-for="(item, index) in infoModel.special"
  2026. :key="item.id"
  2027. >
  2028. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  2029. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  2030. </div>
  2031. <img style="width: 100%;height: 96px"
  2032. v-if="!item.urlBase" :src="noDataPng" border="1">
  2033. </swiper-slide>
  2034. <!-- 点我上传文件按钮-->
  2035. <div class="clearfix">
  2036. <a-upload
  2037. listType="picture-card"
  2038. name="file"
  2039. :multiple="false"
  2040. :action="importMinioUploadAction"
  2041. :customRequest="e => selfUploadContract(e, 'special')"
  2042. :headers="tokenHeader"
  2043. :showUploadList="false"
  2044. :beforeUpload="importBeforeUpload"
  2045. @change="importHandleChange"
  2046. >
  2047. <div v-if="infoModel.specialResult ==='2' ">
  2048. <a-icon type="plus"/>
  2049. <div class="ant-upload-text">点我上传特殊资费审批(标准资费无需提供)</div>
  2050. </div>
  2051. </a-upload>
  2052. </div>
  2053. <div class="swiper-button-next swiper-button-white" slot="button-next">
  2054. <div>
  2055. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  2056. </div>
  2057. </div>
  2058. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  2059. <div>
  2060. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  2061. </div>
  2062. </div>
  2063. </swiper>
  2064. </div>
  2065. </div>
  2066. </a-card>
  2067. <!-- 入网签报-->
  2068. <a-card v-if="steps.currentId == 'networkAccess'"
  2069. style="margin-bottom:10px;
  2070. float: left;width: 83%;left: 2%">
  2071. <div slot="title">
  2072. <span style="float: left;position: relative;top: 4px"> 入网签报</span>
  2073. </div>
  2074. <div style="width: 100%;float:left;margin-left: 10%">
  2075. <a-list size="large" >
  2076. <template>
  2077. <a-list-item style='height: 60px' >
  2078. <a-col :span="6" >
  2079. <div>
  2080. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  2081. <div style="float:left;margin: 50px 10px;" >
  2082. <a-radio-group button-style="solid" disabled v-model='infoModel.networkAccessResult'>
  2083. <a-radio :value="'1'">是</a-radio>
  2084. <a-radio :value="'2'">否</a-radio>
  2085. </a-radio-group>
  2086. </div>
  2087. </div>
  2088. </a-col>
  2089. <a-col :span="18" >
  2090. <div style="clear: both"></div>
  2091. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  2092. <a-textarea :disabled='true' v-model=infoModel.networkAccessResultRemark placeholder="请输入入网签报的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  2093. </a-form-model-item>
  2094. </a-col>
  2095. </a-list-item>
  2096. </template>
  2097. </a-list>
  2098. </div>
  2099. <!-- 文件上传-->
  2100. <!-- 附件-->
  2101. <div>
  2102. <a-form-model-item style="left: 10%;width: 70%;" label="入网签报备注:" v-bind="labelCol1Note">
  2103. <a-textarea style="height: 77px" :disabled="infoModel.networkAccessResult==='1'?true:false"
  2104. @change="textareaChange('networkAccess','networkAccessRemark')"
  2105. v-model="infoModel.networkAccessRemark"
  2106. placeholder="入网签报"
  2107. />
  2108. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  2109. </a-form-model-item>
  2110. </div>
  2111. <div style="height: 70%">
  2112. <div class="thumb-example" >
  2113. <!-- swiper1 -->
  2114. <swiper
  2115. class="swiper gallery-top"
  2116. :options="swiperOptionTop"
  2117. ref="swiperTop"
  2118. >
  2119. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.networkAccess" :key="item.id">
  2120. <iframe
  2121. v-if="item.urlBase"
  2122. frameborder="1"
  2123. :src="item.urlBase"
  2124. ref="ifr"
  2125. width="704px"
  2126. height="445px"
  2127. scrolling="auto">
  2128. </iframe>
  2129. <img style="width: 70%;height: 70%;border: 1px solid;"
  2130. v-if="!item.urlBase" :src="noDataPng" border="1">
  2131. <a-button v-if="infoModel.networkAccessResult ==='2' "
  2132. style="display: block;margin-top: 10px;border-color: red;color: red"
  2133. danger @click="removeFile(item,'networkAccess')">移除
  2134. </a-button>
  2135. </swiper-slide>
  2136. <!-- <div
  2137. class="swiper-button-next swiper-button-white"
  2138. slot="button-next"
  2139. ></div>
  2140. <div
  2141. class="swiper-button-prev swiper-button-white"
  2142. slot="button-prev"
  2143. ></div>-->
  2144. </swiper>
  2145. <!-- swiper2 Thumbs -->
  2146. <swiper
  2147. class="swiper gallery-thumbs"
  2148. :options="swiperOptionThumbs"
  2149. ref="swiperThumbs"
  2150. >
  2151. <swiper-slide
  2152. class="slide"
  2153. style="width:100px;height:100px;"
  2154. v-for="(item, index) in infoModel.networkAccess"
  2155. :key="item.id"
  2156. >
  2157. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  2158. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  2159. </div>
  2160. <img style="width: 100%;height: 96px"
  2161. v-if="!item.urlBase" :src="noDataPng" border="1">
  2162. </swiper-slide>
  2163. <!-- 点我上传文件按钮-->
  2164. <div class="clearfix">
  2165. <a-upload
  2166. listType="picture-card"
  2167. name="file"
  2168. :multiple="false"
  2169. :action="importMinioUploadAction"
  2170. :customRequest="e => selfUploadContract(e, 'networkAccess')"
  2171. :headers="tokenHeader"
  2172. :showUploadList="false"
  2173. :beforeUpload="importBeforeUpload"
  2174. @change="importHandleChange"
  2175. >
  2176. <div v-if="infoModel.networkAccessResult ==='2' ">
  2177. <a-icon type="plus"/>
  2178. <div class="ant-upload-text">点我上传入网签报资料</div>
  2179. </div>
  2180. </a-upload>
  2181. </div>
  2182. <div class="swiper-button-next swiper-button-white" slot="button-next">
  2183. <div>
  2184. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  2185. </div>
  2186. </div>
  2187. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  2188. <div>
  2189. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  2190. </div>
  2191. </div>
  2192. </swiper>
  2193. </div>
  2194. </div>
  2195. </a-card>
  2196. <!-- 集团价格审批-->
  2197. <a-card v-if="steps.currentId == 'groupPriceApproval'"
  2198. style="margin-bottom:10px;
  2199. float: left;width: 83%;left: 2%">
  2200. <div slot="title">
  2201. <span style="float: left;position: relative;top: 4px"> 集团价格审批</span>
  2202. </div>
  2203. <div style="width: 100%;float:left;margin-left: 10%">
  2204. <a-list size="large" >
  2205. <template>
  2206. <a-list-item style='height: 60px' >
  2207. <a-col :span="6" >
  2208. <div>
  2209. <div style="float:left;margin: 50px 3px;" id="directRequirements">稽核是否通过</div>
  2210. <div style="float:left;margin: 50px 10px;" >
  2211. <a-radio-group button-style="solid" disabled v-model='infoModel.groupPriceApprovalResult'>
  2212. <a-radio :value="'1'">是</a-radio>
  2213. <a-radio :value="'2'">否</a-radio>
  2214. </a-radio-group>
  2215. </div>
  2216. </div>
  2217. </a-col>
  2218. <a-col :span="18" >
  2219. <div style="clear: both"></div>
  2220. <a-form-model-item label="稽核结果备注" prop="basicCheckNote" style="float:left;margin: 50px 10px;" :labelCol="{ span: 5 }" :wrapperCol="{ span: 15 }" >
  2221. <a-textarea :disabled='true' v-model=infoModel.groupPriceApprovalResultRemark placeholder="请输入集团价格审批的稽核结果" style="float:left;margin: 3px 3px;height:20px; width: 300px;" />
  2222. </a-form-model-item>
  2223. </a-col>
  2224. </a-list-item>
  2225. </template>
  2226. </a-list>
  2227. </div>
  2228. <!-- 文件上传-->
  2229. <!-- 附件-->
  2230. <div>
  2231. <a-form-model-item style="left: 10%;width: 70%;" label="集团价格审批备注:" v-bind="labelCol1Note">
  2232. <a-textarea style="height: 77px" :disabled="infoModel.groupPriceApprovalResult==='1'?true:false"
  2233. @change="textareaChange('groupPriceApproval','groupPriceApprovalRemark')"
  2234. v-model="infoModel.groupPriceApprovalRemark"
  2235. placeholder="集团价格审批"
  2236. />
  2237. <!-- :auto-size="{ minRows: 3, maxRows: 5 }"-->
  2238. </a-form-model-item>
  2239. </div>
  2240. <div style="height: 70%">
  2241. <div class="thumb-example" >
  2242. <!-- swiper1 -->
  2243. <swiper
  2244. class="swiper gallery-top"
  2245. :options="swiperOptionTop"
  2246. ref="swiperTop"
  2247. >
  2248. <swiper-slide class="slide-1" v-for="(item, index) in infoModel.groupPriceApproval" :key="item.id">
  2249. <iframe
  2250. v-if="item.urlBase"
  2251. frameborder="1"
  2252. :src="item.urlBase"
  2253. ref="ifr"
  2254. width="704px"
  2255. height="445px"
  2256. scrolling="auto">
  2257. </iframe>
  2258. <img style="width: 70%;height: 70%;border: 1px solid;"
  2259. v-if="!item.urlBase" :src="noDataPng" border="1">
  2260. <a-button v-if="infoModel.groupPriceApprovalResult ==='2' "
  2261. style="display: block;margin-top: 10px;border-color: red;color: red"
  2262. danger @click="removeFile(item,'groupPriceApproval')">移除
  2263. </a-button>
  2264. </swiper-slide>
  2265. <!-- <div
  2266. class="swiper-button-next swiper-button-white"
  2267. slot="button-next"
  2268. ></div>
  2269. <div
  2270. class="swiper-button-prev swiper-button-white"
  2271. slot="button-prev"
  2272. ></div>-->
  2273. </swiper>
  2274. <!-- swiper2 Thumbs -->
  2275. <swiper
  2276. class="swiper gallery-thumbs"
  2277. :options="swiperOptionThumbs"
  2278. ref="swiperThumbs"
  2279. >
  2280. <swiper-slide
  2281. class="slide"
  2282. style="width:100px;height:100px;"
  2283. v-for="(item, index) in infoModel.groupPriceApproval"
  2284. :key="item.id"
  2285. >
  2286. <div v-if="item.urlBase" style="width: 100%;height: 96px;background: rgb(68,142,247);color: white">
  2287. <span style="white-space:normal; word-break:break-all;overflow:hidden;">{{ item.fileName }}</span>
  2288. </div>
  2289. <img style="width: 100%;height: 96px"
  2290. v-if="!item.urlBase" :src="noDataPng" border="1">
  2291. </swiper-slide>
  2292. <!-- 点我上传文件按钮-->
  2293. <div class="clearfix">
  2294. <a-upload
  2295. listType="picture-card"
  2296. name="file"
  2297. :multiple="false"
  2298. :action="importMinioUploadAction"
  2299. :customRequest="e => selfUploadContract(e, 'groupPriceApproval')"
  2300. :headers="tokenHeader"
  2301. :showUploadList="false"
  2302. :beforeUpload="importBeforeUpload"
  2303. @change="importHandleChange"
  2304. >
  2305. <div v-if="infoModel.groupPriceApprovalResult ==='2'">
  2306. <a-icon type="plus"/>
  2307. <div class="ant-upload-text">点我上传集团价格审批</div>
  2308. </div>
  2309. </a-upload>
  2310. </div>
  2311. <div class="swiper-button-next swiper-button-white" slot="button-next">
  2312. <div>
  2313. <!-- <img src="../../../../assets/images/nextImg.png" alt=""/>-->
  2314. </div>
  2315. </div>
  2316. <div class="swiper-button-prev swiper-button-white" slot="button-prev">
  2317. <div>
  2318. <!-- <img src="../../../../assets/images/prevImg.png" alt=""/>-->
  2319. </div>
  2320. </div>
  2321. </swiper>
  2322. </div>
  2323. </div>
  2324. </a-card>
  2325. </a-spin>
  2326. </template>
  2327. <script>
  2328. import {getAction, httpAction, postAction} from "@api/manage";
  2329. /*无数据图片*/
  2330. import noDataPng from '@/assets/nodata.png'
  2331. import Vue from "vue";
  2332. import {ACCESS_TOKEN, TENANT_ID} from "@/store/mutation-types";
  2333. let Base64 = require('js-base64').Base64
  2334. export default {
  2335. name: 'TaskUploadData',
  2336. inject: ['closeCurrent'],
  2337. components: {
  2338. noDataPng
  2339. },
  2340. data() {
  2341. return {
  2342. //缩略与大图数据源
  2343. swiperId: 1,
  2344. //轮播配置
  2345. swiperOptionTop: {
  2346. zoom: true,
  2347. loop: false,
  2348. loopedSlides: 5, // looped slides should be the same
  2349. spaceBetween: 10,
  2350. observer: true, //修改swiper自己或子元素时,自动初始化swiper
  2351. observeParents: true, //修改swiper的父元素时,自动初始化swiper
  2352. // autoplay: { //自动轮播
  2353. // delay: 2000,
  2354. // disableOnInteraction: false
  2355. // },
  2356. navigation: {
  2357. nextEl: '.swiper-button-next',
  2358. prevEl: '.swiper-button-prev'
  2359. }
  2360. },
  2361. swiperOptionThumbs: {
  2362. loop: false,
  2363. loopedSlides: 5, // looped slides should be the same
  2364. spaceBetween: 10,
  2365. centeredSlides: true,
  2366. slidesPerView: 'auto',
  2367. touchRatio: 0.2,
  2368. slideToClickedSlide: true,
  2369. navigation: {
  2370. nextEl: '.swiper-button-next',
  2371. prevEl: '.swiper-button-prev'
  2372. }
  2373. },
  2374. /**无数据图片*/
  2375. noDataPng: noDataPng,
  2376. url: {
  2377. "getInfoDataById": "/smsCheck/customerInfo/queryById",
  2378. "getInfoDataByInfoId": "/smsCheck/customerData/queryDataLogByInfoId",
  2379. // 上传文件
  2380. "minioUpload": "/smsCheck/customerData/uploadMinio",
  2381. },
  2382. //是否批量上传
  2383. batchImproves: false,
  2384. // 稽核结果
  2385. specialResult: {},
  2386. // 全局是否是在加载中
  2387. uploading: false,
  2388. //上级传参
  2389. query: {
  2390. data: {},
  2391. },
  2392. isShow:false,
  2393. // 客户资料信息
  2394. infoModel: {
  2395. customerNo :"",
  2396. userNo:"",
  2397. networkAccessTime:"",
  2398. logId:"",
  2399. infoResult:"",
  2400. infoResultRemark:"",
  2401. dataId:"",
  2402. infoId:"",
  2403. //是否完成整改
  2404. isComplete:"",
  2405. //资料是否完整
  2406. isAll:"",
  2407. //签约号码与证书下发码号是否一致
  2408. isSigningNumber:"",
  2409. //是否为CSP商
  2410. isCsp:"",
  2411. //码号证书营业执照合同签约方主体是否一致
  2412. codeNumberBusinessLicense:"",
  2413. //码号使用单位联系人手机号
  2414. codeNumberContactPhone:"",
  2415. //客户经理手机号
  2416. managePhone:"",
  2417. //用户发展员工
  2418. staffNo:"",
  2419. //号码用途
  2420. numberUse:"",
  2421. //码号
  2422. codeNumber:"",
  2423. //用户状态
  2424. userState:"",
  2425. // 材料补不全有特审
  2426. materialLabel: "0",
  2427. // 用户类型
  2428. userLable: "0",
  2429. // 申请复开号码
  2430. openingNumber: "",
  2431. // 客户名称
  2432. customerName: "",
  2433. // 最后一次关停时间
  2434. shutdownTime: "",
  2435. // 关停标签
  2436. shutdownLabel: "0",
  2437. // 关停标签-其他
  2438. shutdownLabelOther: "",
  2439. //合同到期时间
  2440. contractDate:[{}],
  2441. contractDateRemark:"",
  2442. contractDateResult:"",
  2443. contractDateDateIs:"",
  2444. contractDateDate:"",
  2445. contractDateResultRemark:"",
  2446. //'营业执照到期时间
  2447. businessLicenseDate:[{}],
  2448. businessLicenseDateDate:"",
  2449. businessLicenseDateDateIs:"",
  2450. businessLicenseDateRemark:"",
  2451. businessLicenseDateResult:"",
  2452. businessLicenseDateResultRemark:"",
  2453. //码号证书到期时间
  2454. codeNumberDate:[{}],
  2455. codeNumberDateRemark:"",
  2456. codeNumberDateDate:"",
  2457. codeNumberDateDateIs:"",
  2458. codeNumberDateResult:"",
  2459. codeNumberDateResultRemark:"",
  2460. //'备案通知到期时间
  2461. filingsDateDate:"",
  2462. filingsDateDateIs:"",
  2463. filingsDate:[{}],
  2464. filingsDateRemark:"",
  2465. filingsDateResultRemark:"",
  2466. filingsDateResult:"",
  2467. //增值业务许可证到期时间
  2468. permitDate:[{}],
  2469. permitDateRemark:"",
  2470. permitDateResultRemark:"",
  2471. permitDateResult:"",
  2472. permitDateDate:"",
  2473. permitDateDateIs:"",
  2474. //法人/责任人证件
  2475. corporationCard:[{}],
  2476. corporationCardRemark:"",
  2477. corporationCardResult:"",
  2478. corporationCardResultRemark:"",
  2479. //责任人授权书
  2480. personResponsible:[{}],
  2481. personResponsibleRemark:"",
  2482. personResponsibleResultRemark:"",
  2483. personResponsibleResult:"",
  2484. //经办人证件
  2485. operatorCard:[{}],
  2486. operatorCardRemark:"",
  2487. operatorCardResult:"",
  2488. operatorCardResultRemark:"",
  2489. //经办人手持身份证照片(背景需为电信营业厅或白墙)
  2490. operatorCardPhone:[{}],
  2491. operatorCardPhoneRemark:"",
  2492. operatorCardPhoneResultRemark:"",
  2493. operatorCardPhoneResult:"",
  2494. //机房设备照片'
  2495. devicePhone:[{}],
  2496. devicePhoneRemark:"",
  2497. devicePhoneResult:"",
  2498. devicePhoneResultRemark:"",
  2499. //短信模板'
  2500. textMessage:[{}],
  2501. textMessageRemark:"",
  2502. textMessageResult:"",
  2503. textMessageResultRemark:"",
  2504. //端口类短信业务责任承诺书'
  2505. textMessageBook:[{}],
  2506. textMessageBookRemark:"",
  2507. textMessageBookResult:"",
  2508. textMessageBookResultRemark:"",
  2509. //信息安全责任承诺书
  2510. secureBook:[{}],
  2511. secureBookRemark:"",
  2512. secureBookResult:"",
  2513. secureBookResultRemark:"",
  2514. //特殊资费审批(标准资费无需提供
  2515. special:[{}],
  2516. specialRemark:"",
  2517. specialResult:"",
  2518. specialResultRemark:"",
  2519. //入网签报
  2520. networkAccess:[{}],
  2521. networkAccessRemark:"",
  2522. networkAccessResult:"",
  2523. networkAccessResultRemark:"",
  2524. //集团价格审批
  2525. groupPriceApproval:[{}],
  2526. groupPriceApprovalRemark:"",
  2527. groupPriceApprovalResult:"",
  2528. groupPriceApprovalResultRemark:"",
  2529. },
  2530. //表单验证
  2531. rules: {
  2532. openingNumber: [
  2533. {required: true, message: '必须输入手机号'},
  2534. ],
  2535. customerName: [
  2536. {required: true, message: '必须输入客户名称'},
  2537. ],
  2538. userState: [
  2539. {required: true, message: '必须输入用户状态'},
  2540. ],
  2541. codeNumber : [
  2542. {required: true, message: '必须输入码号'},
  2543. ],
  2544. numberUse: [
  2545. {required: true, message: '必须输入号码用途'},
  2546. ],
  2547. staffNo: [
  2548. {required: true, message: '必须输入用户发展员工'},
  2549. ],
  2550. managePhone: [
  2551. {required: true, message: '必须输入客户经理手机号'},
  2552. ],
  2553. codeNumberContactPhone: [
  2554. {required: true, message: '必须输入码号使用单位联系人手机号'},
  2555. ],
  2556. isCsp: [
  2557. {required: true, message: '必须输入是否为CSP商'},
  2558. ],
  2559. codeNumberBusinessLicense: [
  2560. {required: true, message: '必须选择码号证书营业执照合同签约方主体是否一致'},
  2561. ],
  2562. isSigningNumber: [
  2563. {required: true, message: '请选择签约号码与证书下发码号是否一致'},
  2564. ],
  2565. isAll: [
  2566. {required: true, message: '必须选择资料是否完整'},
  2567. ],
  2568. isComplete: [
  2569. {required: true, message: '必须选择是否完成整改'},
  2570. ]
  2571. },
  2572. labelCol4: {
  2573. labelCol: {
  2574. xs: {span: 24},
  2575. sm: {span: 10},
  2576. },
  2577. wrapperCol: {
  2578. xs: {span: 24},
  2579. sm: {span: 12},
  2580. }
  2581. },
  2582. labelCol5: {
  2583. labelCol: {
  2584. xs: {span: 24},
  2585. sm: {span: 14},
  2586. },
  2587. wrapperCol: {
  2588. xs: {span: 24},
  2589. sm: {span: 8},
  2590. }
  2591. },
  2592. labelCol1: {
  2593. labelCol: {
  2594. xs: {span: 24},
  2595. sm: {span: 2},
  2596. },
  2597. wrapperCol: {
  2598. xs: {span: 24},
  2599. sm: {span: 22},
  2600. }
  2601. },
  2602. labelCol1Note: {
  2603. labelCol: {
  2604. xs: {span: 24},
  2605. sm: {span: 6},
  2606. },
  2607. wrapperCol: {
  2608. xs: {span: 24},
  2609. sm: {span: 14},
  2610. }
  2611. },
  2612. // 步骤条相关
  2613. steps: {
  2614. // 当前所在第几部
  2615. current: 0,
  2616. currentId: "",
  2617. stepsNow: {},
  2618. steps00: [
  2619. {
  2620. title: '上传合同资料',
  2621. content: 'First-content',
  2622. id: "contractDate",
  2623. status: "wait"
  2624. },
  2625. {
  2626. title: '上传营业执照资料',
  2627. content: 'First-content',
  2628. id: "businessLicenseDate",
  2629. status: "wait"
  2630. },
  2631. {
  2632. title: '上传码号证书资料',
  2633. content: 'First-content',
  2634. id: "codeNumberDate",
  2635. status: "wait"
  2636. },
  2637. {
  2638. title: '上传备案通知资料',
  2639. content: 'First-content',
  2640. id: "filingsDate",
  2641. status: "wait"
  2642. },{
  2643. title: '上传增值业务许可证资料',
  2644. content: 'First-content',
  2645. id: "permitDate",
  2646. status: "wait"
  2647. }, {
  2648. title: '上传法人/责任人证件资料',
  2649. content: 'First-content',
  2650. id: "corporationCard",
  2651. status: "wait"
  2652. },{
  2653. title: '上传责任人授权书资料',
  2654. content: 'First-content',
  2655. id: "personResponsible",
  2656. status: "wait"
  2657. },{
  2658. title: '上传经办人证件资料',
  2659. content: 'First-content',
  2660. id: "operatorCard",
  2661. status: "wait"
  2662. },{
  2663. title: '上传入网签报资料',
  2664. content: 'First-content',
  2665. id: "networkAccess",
  2666. status: "wait"
  2667. },{
  2668. title: '上传集团价格审批资料',
  2669. content: 'First-content',
  2670. id: "groupPriceApproval",
  2671. status: "wait"
  2672. },{
  2673. title: '上传机房设备照片',
  2674. content: 'First-content',
  2675. id: "devicePhone",
  2676. status: "wait"
  2677. }, {
  2678. title: '上传短信模板',
  2679. content: 'First-content',
  2680. id: "textMessage",
  2681. status: "wait"
  2682. },{
  2683. title: '上传信息安全责任承诺书',
  2684. content: 'First-content',
  2685. id: "secureBook",
  2686. status: "wait"
  2687. },{
  2688. title: '上传经办人手持身份证照片(背景需为电信营业厅或白墙)',
  2689. content: 'First-content',
  2690. id: "operatorCardPhone",
  2691. status: "wait"
  2692. },
  2693. {
  2694. title: '上传端口类短信业务责任承诺书',
  2695. content: 'First-content',
  2696. id: "textMessageBook",
  2697. status: "wait"
  2698. },{
  2699. title: '上传特殊资费审批(标准资费无需提供)资料',
  2700. content: 'First-content',
  2701. id: "special",
  2702. status: "wait"
  2703. },
  2704. ],
  2705. // 单位户
  2706. stepUserLable1: [
  2707. {
  2708. title: '使用人证件',
  2709. content: 'First-content',
  2710. id: "userCertificate",
  2711. status: "wait"
  2712. },
  2713. {
  2714. title: '营业执照副本(盖公章)',
  2715. content: 'First-content',
  2716. id: "businessLicense",
  2717. status: "wait"
  2718. },
  2719. {
  2720. title: '介绍信',
  2721. content: 'First-content',
  2722. id: "letterIntroduction",
  2723. status: "wait"
  2724. }
  2725. ],
  2726. // 个人户
  2727. stepUserLable0: [
  2728. {
  2729. title: '号卡照片',
  2730. content: 'First-content',
  2731. id: "numberCard",
  2732. status: "wait"
  2733. },
  2734. ],
  2735. // 材料标签
  2736. shutdownLabel0: [
  2737. {
  2738. title: '消费凭证',
  2739. content: 'First-content',
  2740. id: "consumptionVoucher",
  2741. status: "wait"
  2742. },
  2743. ],
  2744. // 承诺视频
  2745. shutdownLabel5: [
  2746. {
  2747. title: '承诺视频',
  2748. content: 'First-content',
  2749. id: "commitmentVideo",
  2750. status: "wait"
  2751. },
  2752. ],
  2753. },
  2754. }
  2755. },
  2756. computed: {
  2757. importMinioUploadAction() {
  2758. return window._CONFIG['domianURL'] + this.url.minioUpload;
  2759. },
  2760. tokenHeader() {
  2761. let head = {'X-Access-Token': Vue.ls.get(ACCESS_TOKEN)}
  2762. let tenantid = Vue.ls.get(TENANT_ID)
  2763. if (tenantid) {
  2764. head['tenant-id'] = tenantid
  2765. }
  2766. return head;
  2767. }
  2768. },
  2769. props: {},
  2770. watch: {},
  2771. created() {
  2772. // 是否批量上传
  2773. this.infoModel.infoId=this.$route.query.id;
  2774. this.batchImproves = this.$route.query.batchImproves;
  2775. // 步骤条默认公用
  2776. this.steps.stepsNow = this.steps.steps00;
  2777. this.steps.currentId = this.steps.stepsNow[0].id
  2778. if (this.batchImproves) {
  2779. //批量上传id
  2780. this.ids = this.$route.query.ids;
  2781. } else {
  2782. //客户ID
  2783. this.query.infoId = this.$route.query.id;
  2784. this.getInfoDataByInfoId(this.query.infoId);
  2785. }
  2786. },
  2787. mounted() {
  2788. // 实现swiper双向控制
  2789. this.$nextTick(() => {
  2790. const swiperTop = this.$refs.swiperTop.swiper
  2791. const swiperThumbs = this.$refs.swiperThumbs.swiper
  2792. swiperTop.controller.control = swiperThumbs
  2793. swiperThumbs.controller.control = swiperTop
  2794. })
  2795. // /**监听视频拨放*/
  2796. // this.$refs.myVideo.addEventListener("play", () => {
  2797. // this.openTimer();
  2798. // });
  2799. // /**监听视频暂停*/
  2800. // this.$refs.myVideo.addEventListener("pause", () => {
  2801. // this.closeTimer();
  2802. // });
  2803. },
  2804. methods: {
  2805. /**备注坚听*/
  2806. textareaChange(name, nameRemark) {
  2807. if (this.infoModel[nameRemark].length > 0) {
  2808. this.steps.stepsNow[this.steps.current].status = "finish"
  2809. } else if (this.infoModel[name].length > 0 && this.infoModel[name][0].urlBase) {
  2810. this.steps.stepsNow[this.steps.current].status = "finish"
  2811. } else {
  2812. this.steps.stepsNow[this.steps.current].status = "wait"
  2813. }
  2814. if (this.steps.stepsNow[this.steps.current].status = "error"){
  2815. // type:"solution",
  2816. //slot:"icon"
  2817. this.steps.stepsNow[this.steps.current].type="solution",
  2818. this.steps.stepsNow[this.steps.current].slot="icon"
  2819. this.steps.stepsNow[this.steps.current].status = "final"
  2820. }
  2821. },
  2822. // 步骤条动态变化
  2823. stepLoading() {
  2824. this.steps.stepsNow = this.steps.stepsNow.splice(0, 16)
  2825. //材料不全有特审步骤条
  2826. this.stepsMaterialLabel()
  2827. /**用户标签点击事件*/
  2828. this.userLableClick()
  2829. /**材料标签点击事件*/
  2830. this.shutdownLabelClick()
  2831. },
  2832. //材料不全有特审步骤条
  2833. stepsMaterialLabel() {
  2834. if (this.infoModel.materialLabel == "0" || this.infoModel.shutdownLabel == "999") {
  2835. let stepsMaterial = this.steps.stepsMaterial;
  2836. for (var i in stepsMaterial) {
  2837. this.steps.stepsNow.push(stepsMaterial[i])
  2838. }
  2839. }
  2840. },
  2841. /**用户标签点击事件*/
  2842. userLableClick() {
  2843. if (this.infoModel[nameRemark].length > 0) {
  2844. this.steps.stepsNow[this.steps.current].status = "finish"
  2845. } else if (this.infoModel[name].length > 0 && this.infoModel[name][0].urlBase) {
  2846. this.steps.stepsNow[this.steps.current].status = "finish"
  2847. } else {
  2848. this.steps.stepsNow[this.steps.current].status = "wait"
  2849. }
  2850. },
  2851. /**材料标签点击事件*/
  2852. shutdownLabelClick() {
  2853. var that = this;
  2854. //材料不全有特审步骤条
  2855. //that.stepsMaterialLabel();
  2856. let shutdownLabel = that.infoModel.shutdownLabel;
  2857. switch (shutdownLabel) {
  2858. case "0":
  2859. let shutdownLabel0 = this.steps.shutdownLabel0;
  2860. for (var i in shutdownLabel0) {
  2861. this.steps.stepsNow.push(shutdownLabel0[i])
  2862. }
  2863. break;
  2864. case "5":
  2865. let shutdownLabel5 = this.steps.shutdownLabel5;
  2866. for (var j in shutdownLabel5) {
  2867. this.steps.stepsNow.push(shutdownLabel5[j])
  2868. }
  2869. break;
  2870. }
  2871. if (this.infoModel.shutdownLabel == "999"){
  2872. let shutdownLabel0 = this.steps.shutdownLabel0;
  2873. for (var i in shutdownLabel0) {
  2874. this.steps.stepsNow.push(shutdownLabel0[i])
  2875. }
  2876. let shutdownLabel5 = this.steps.shutdownLabel5;
  2877. for (var j in shutdownLabel5) {
  2878. this.steps.stepsNow.push(shutdownLabel5[j])
  2879. }
  2880. }
  2881. },
  2882. /**移除文件*/
  2883. removeFile(fileData, fileAttribute) {
  2884. let that = this.infoModel;
  2885. //处理轮播数据
  2886. let swiperImg = that[fileAttribute];
  2887. if (swiperImg) {
  2888. let number = swiperImg.indexOf(fileData);
  2889. swiperImg.splice(number, 1)
  2890. if (swiperImg.length == 0) {
  2891. swiperImg.push({})
  2892. let textId = fileAttribute + "Remark";
  2893. if (this.infoModel[textId].trim() > 0) {
  2894. this.steps.stepsNow[this.steps.current].status = "finish"
  2895. } else {
  2896. this.steps.stepsNow[this.steps.current].status = "wait"
  2897. }
  2898. } else {
  2899. this.steps.stepsNow[this.steps.current].status = "finish"
  2900. }
  2901. that[fileAttribute] = swiperImg
  2902. }
  2903. },
  2904. /**自定义的上传文件方法*/
  2905. selfUploadContract(data, fileAttribute) {
  2906. var that = this;
  2907. if (data.file) {
  2908. let formData = new FormData();
  2909. formData.append('file', data.file)
  2910. postAction(this.url.minioUpload, formData).then((res) => {
  2911. if (res.success) {
  2912. that.swiperId = that.swiperId + 1;
  2913. console.log(that.swiperId)
  2914. //文件链接
  2915. let filePath = res.message;
  2916. let swipData = {
  2917. id: that.swiperId,
  2918. urlBase: window._CONFIG['onlinePreviewDomainURL'] + '?url='
  2919. + encodeURIComponent(
  2920. Base64.encode(
  2921. (filePath)
  2922. )),
  2923. url: filePath,
  2924. fileName: data.file.name
  2925. }
  2926. if (that.infoModel[fileAttribute][0].urlBase) {
  2927. that.infoModel[fileAttribute].push(swipData)
  2928. } else {
  2929. that.infoModel[fileAttribute] = []
  2930. //数据发生变化
  2931. that.infoModel[fileAttribute][0] = swipData;
  2932. }
  2933. // 改变步骤条状态
  2934. if (that.infoModel[fileAttribute].length > 0) {
  2935. if (that.steps.stepsNow[that.steps.current].status === "error"){
  2936. that.steps.stepsNow[this.steps.current].type="solution",
  2937. that.steps.stepsNow[this.steps.current].slot="icon"
  2938. that.steps.stepsNow[that.steps.current].status = "final"
  2939. }else {
  2940. that.steps.stepsNow[that.steps.current].status = "wait"
  2941. }
  2942. }
  2943. }
  2944. })
  2945. }
  2946. },
  2947. /**文件格式限制*/
  2948. importBeforeUpload(file) {
  2949. var fileType = file.type;
  2950. if (fileType === 'image') {
  2951. if (fileType.indexOf('image') < 0) {
  2952. this.$message.warning('请上传图片');
  2953. return false;
  2954. }
  2955. } else if (fileType === 'file') {
  2956. if (fileType.indexOf('image') >= 0) {
  2957. this.$message.warning('请上传文件');
  2958. return false;
  2959. }
  2960. }
  2961. return true
  2962. },
  2963. /**文件上传成功后回调*/
  2964. importHandleChange(info) {
  2965. },
  2966. dataListToStr(data){
  2967. if (data.contractDate!==null && data.contractDate!==undefined){
  2968. data.contractDate=JSON.stringify(data.contractDate);
  2969. }
  2970. if (data.businessLicenseDate!==null&& data.businessLicenseDate!==undefined){
  2971. data.businessLicenseDate=JSON.stringify(data.businessLicenseDate);
  2972. }
  2973. if (data.codeNumberDate!==null && data.codeNumberDate!==undefined){
  2974. data.codeNumberDate=JSON.stringify(data.codeNumberDate);
  2975. }
  2976. if (data.filingsDate!==null && data.filingsDate!==undefined){
  2977. data.filingsDate=JSON.stringify(data.filingsDate);
  2978. }
  2979. if (data.permitDate!==null && data.permitDate!==undefined){
  2980. data.permitDate=JSON.stringify(data.permitDate);
  2981. }
  2982. if (data.corporationCard!==null && data.corporationCard!==undefined){
  2983. data.corporationCard=JSON.stringify(data.corporationCard);
  2984. }
  2985. if (data.personResponsible!==null && data.personResponsible!==undefined){
  2986. data.personResponsible=JSON.stringify(data.personResponsible);
  2987. }
  2988. if (data.operatorCard!==null && data.operatorCard!==undefined){
  2989. data.operatorCard=JSON.stringify(data.operatorCard);
  2990. }
  2991. if (data.operatorCardPhone!==null && data.operatorCardPhone!==undefined){
  2992. data.operatorCardPhone=JSON.stringify(data.operatorCardPhone);
  2993. }
  2994. if (data.devicePhone!==null && data.devicePhone!==undefined){
  2995. data.devicePhone=JSON.stringify(data.devicePhone);
  2996. }
  2997. if (data.textMessage!==null && data.textMessage!==undefined){
  2998. data.textMessage=JSON.stringify(data.textMessage);
  2999. }
  3000. if (data.textMessageBook!==null && data.textMessageBook!==undefined){
  3001. data.textMessageBook=JSON.stringify(data.textMessageBook);
  3002. }
  3003. if (data.secureBook!==null && data.secureBook!==undefined){
  3004. data.secureBook=JSON.stringify(data.secureBook);
  3005. }
  3006. if (data.special!==null && data.special!==undefined){
  3007. data.special=JSON.stringify(data.special);
  3008. }
  3009. if (data.networkAccess!==null && data.networkAccess!==undefined){
  3010. data.networkAccess=JSON.stringify(data.networkAccess);
  3011. }
  3012. if (data.groupPriceApproval!==null && data.groupPriceApproval!==undefined){
  3013. data.groupPriceApproval=JSON.stringify(data.groupPriceApproval);
  3014. }
  3015. return data;
  3016. },
  3017. /**暂存*/
  3018. addIsStaging() {
  3019. var that = this;
  3020. var data=that.infoModel ;
  3021. data =this.dataListToStr(data);
  3022. postAction("/smsCheck/customerData/addIsStaging", data).then((res) => {
  3023. if (res.success) {
  3024. this.$message.success("提交成功", 3);
  3025. this.addIng == true
  3026. this.closeCurrent();
  3027. } else {
  3028. if ( res.message !==null){
  3029. this.$message.error( res.message);
  3030. }else {
  3031. this.$message.error("提交失败");
  3032. }
  3033. }
  3034. })
  3035. },
  3036. /*提交*/
  3037. submitAuditLot() {
  3038. this.$refs['form'].validate(valid => {
  3039. })
  3040. var info = "yes";
  3041. for (var i in this.steps.stepsNow) {
  3042. if (this.steps.stepsNow[i].status !== "finish" && this.steps.stepsNow[i].type!=='solution') {
  3043. this.$message.warn( this.steps.stepsNow[i].title +"资料或备注都未整改!!!");
  3044. info="no";
  3045. }
  3046. }
  3047. if (info==="no"){
  3048. return
  3049. }
  3050. var that = this;
  3051. var data=that.infoModel ;
  3052. data =this.dataListToStr(data);
  3053. postAction("/smsCheck/customerData/addLog", data).then((res) => {
  3054. if (res.success) {
  3055. this.$message.success("提交成功", 3);
  3056. this.addIng == true
  3057. this.closeCurrent();
  3058. } else {
  3059. if ( res.message !==null){
  3060. this.$message.error( res.message);
  3061. }else {
  3062. this.$message.error("提交失败");
  3063. }
  3064. }
  3065. })
  3066. },
  3067. /**步骤条点击事件*/
  3068. stepsClick(current) {
  3069. this.steps.current = current;
  3070. this.steps.currentId = this.steps.stepsNow[current].id
  3071. // for (var i in this.steps.stepsNow) {
  3072. // if (this.steps.stepsNow[i].status !== "finish" && this.steps.stepsNow[i].status !== "error") {
  3073. // this.steps.stepsNow[i].status = "wait"
  3074. // }
  3075. // }
  3076. if (this.steps.stepsNow[current].status!== "finish" && this.steps.stepsNow[current].status !== "error") {
  3077. this.steps.stepsNow[current].status = "process"
  3078. }
  3079. },
  3080. /**返回上一级*/
  3081. back() {
  3082. this.$router.go(-1);
  3083. //关闭当前页
  3084. this.closeCurrent();
  3085. },
  3086. /**获取客户信息*/
  3087. getInfoDataById(id,resultA) {
  3088. var that = this;
  3089. if (id) {
  3090. var data = {
  3091. "id": id,
  3092. }
  3093. getAction(this.url.getInfoDataById, data).then((res) => {
  3094. if (res.success) {
  3095. let result = res.result;
  3096. //用户状态
  3097. that.infoModel.userState =result.userState;
  3098. //用户发展员工
  3099. that.infoModel.staffNo =result.staffNo;
  3100. that.infoModel.customerNo=result.customerNo;
  3101. that.infoModel.networkAccessTime=result.networkAccessTime;
  3102. }
  3103. })
  3104. }
  3105. resultA.userState=that.infoModel.userState
  3106. return resultA
  3107. },
  3108. /**获取客户信息*/
  3109. getInfoDataByInfoId(infoId) {
  3110. var that = this;
  3111. if (infoId) {
  3112. var data = {
  3113. "infoId": infoId,
  3114. }
  3115. getAction(this.url.getInfoDataByInfoId, data).then((res) => {
  3116. if (res.success) {
  3117. let result = res.result;
  3118. result=this.getInfoDataById(infoId,result)
  3119. that.infoModel=result;
  3120. that.infoModel.contractDate= JSON.parse(result.contractDate);
  3121. that.infoModel.businessLicenseDate= JSON.parse(result.businessLicenseDate);
  3122. that.infoModel.codeNumberDate= JSON.parse(result.codeNumberDate);
  3123. that.infoModel.filingsDate= JSON.parse(result.filingsDate);
  3124. that.infoModel.permitDate= JSON.parse(result.permitDate);
  3125. that.infoModel.corporationCard= JSON.parse(result.corporationCard);
  3126. that.infoModel.personResponsible= JSON.parse(result.personResponsible);
  3127. that.infoModel.operatorCard= JSON.parse(result.operatorCard);
  3128. that.infoModel.operatorCardPhone= JSON.parse(result.operatorCardPhone);
  3129. that.infoModel.devicePhone= JSON.parse(result.devicePhone);
  3130. that.infoModel.textMessage= JSON.parse(result.textMessage);
  3131. that.infoModel.textMessageBook= JSON.parse(result.textMessageBook);
  3132. that.infoModel.secureBook= JSON.parse(result.secureBook);
  3133. that.infoModel.special= JSON.parse(result.special);
  3134. that.infoModel.networkAccess= JSON.parse(result.networkAccess);
  3135. that.infoModel.groupPriceApproval= JSON.parse(result.groupPriceApproval);
  3136. for (var i in that.steps.stepsNow) {
  3137. for (var j in result[that.steps.stepsNow[i].id]){
  3138. if (result[that.steps.stepsNow[i].id+'Result'][0]!==undefined){
  3139. if (result[that.steps.stepsNow[i].id+'Result'][0]==='1'){
  3140. that.steps.stepsNow[i].status = "finish"
  3141. }else {
  3142. that.steps.stepsNow[i].status = "error"
  3143. }
  3144. }
  3145. }
  3146. }
  3147. if (that.infoModel.infoResult==="2"){
  3148. var element = document.getElementById('directRequirements');
  3149. element.style.color = 'red';
  3150. that.isShow=false
  3151. }
  3152. if (that.infoModel.infoResult==="1"){
  3153. var element = document.getElementById('directRequirements');
  3154. element.style.color = 'black';
  3155. that.isShow=true
  3156. }
  3157. }
  3158. })
  3159. }
  3160. }
  3161. },
  3162. /**获取客户DataLog信息*/
  3163. getInfoDataLogByInfoId(infoId) {
  3164. }
  3165. }
  3166. </script>
  3167. <style lang="less">
  3168. .ant-input[disabled] {
  3169. color: #1e80ff;
  3170. background-color: #f5f5f5;
  3171. cursor: not-allowed;
  3172. opacity: 1;
  3173. }
  3174. .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
  3175. color: #fff;
  3176. background-color: #1e80ff;
  3177. border-color: #d9d9d9;
  3178. box-shadow: none;
  3179. }
  3180. </style>
  3181. <style lang="less">
  3182. #common-video {
  3183. position: relative;
  3184. .video-box {
  3185. box-sizing: border-box;
  3186. border: 0;
  3187. display: block;
  3188. width: 470px;
  3189. height: 500px;
  3190. outline: none !important;
  3191. }
  3192. .isShow {
  3193. //进度条
  3194. video::-webkit-media-controls-timeline {
  3195. display: none;
  3196. }
  3197. }
  3198. video::-webkit-media-controls-play-button {
  3199. visibility: hidden;
  3200. }
  3201. .operate-btn {
  3202. display: block;
  3203. width: 60px;
  3204. height: 60px;
  3205. position: absolute;
  3206. top: calc(50% - 30px);
  3207. left: calc(50% - 30px);
  3208. }
  3209. .operate-btn:hover {
  3210. opacity: 0.8;
  3211. }
  3212. .fade-out {
  3213. opacity: 0;
  3214. }
  3215. }
  3216. .thumb-example {
  3217. width: 864px;
  3218. margin-top: 20px;
  3219. // background: #000;
  3220. }
  3221. .swiper-slide {
  3222. background-size: cover;
  3223. background-position: center;
  3224. }
  3225. .gallery-top {
  3226. // height: 80% !important;
  3227. /*height: 600px;*/
  3228. width: 100%;
  3229. left: 10%;
  3230. margin-bottom: 30px
  3231. }
  3232. .gallery-thumbs {
  3233. height: 20% !important;
  3234. box-sizing: border-box;
  3235. padding: 10px 0px;
  3236. /* width: 864px;*/
  3237. margin-left: 2px;
  3238. .swiper-button-next {
  3239. right: 0px;
  3240. }
  3241. .swiper-button-prev {
  3242. left: 0px;
  3243. }
  3244. .swiper-button-next,
  3245. .swiper-button-prev {
  3246. background: #fff;
  3247. width: 45px;
  3248. text-align: center;
  3249. height: 101px;
  3250. top: 26%;
  3251. div {
  3252. margin-top: 30px;
  3253. background: rgb(207, 205, 205);
  3254. height: 45px;
  3255. border-radius: 50%;
  3256. img {
  3257. margin: 7px 0 0 2px;
  3258. width: 30px;
  3259. }
  3260. }
  3261. }
  3262. .swiper-button-next:hover div {
  3263. background: rgb(189, 186, 186);
  3264. }
  3265. .swiper-button-prev:hover div {
  3266. background: rgb(189, 186, 186);
  3267. }
  3268. }
  3269. .gallery-thumbs .swiper-slide {
  3270. width: 20%;
  3271. height: 80px;
  3272. // opacity: 0.4;
  3273. }
  3274. .gallery-thumbs .swiper-slide-active {
  3275. border: 2px solid red;
  3276. }
  3277. .markdown ul > li {
  3278. color: #000000d9;
  3279. font-size: 15px;
  3280. line-height: 3;
  3281. margin-left: 20px;
  3282. padding-left: 4px;
  3283. list-style-type: circle;
  3284. }
  3285. </style>