TaskCheckCheck.vue 121 KB

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