add.vue 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541
  1. <template>
  2. <view class="addbox" :style="'padding-top:'+listTop+'rpx;'">
  3. <!-- 步骤条 -->
  4. <view class="navtop">
  5. <uni-nav-bar color="#ffffff" leftWidth="160rpx" rightWidth="160rpx" @clickLeft="getBack" title="业务申报" :background-color="actcolor" :border="false"
  6. statusBar='true'>
  7. <block slot="left">
  8. <view class="topl">
  9. <image :src="backimg" ></image>
  10. </view>
  11. </block>
  12. <!-- #ifndef MP-WEIXIN -->
  13. <block slot="right">
  14. <view class="edit" v-if="ftype" @click="getGiveupFn">
  15. <image :src="feditimg"></image>
  16. 放弃编辑
  17. </view>
  18. <cover-view class="edit" v-else @click="getGiveupFn">
  19. <cover-image :src="feditimg" @click.stop="getGiveupFn" class="img"></cover-image>
  20. <cover-view @click.stop="getGiveupFn" class="txt">放弃编辑</cover-view>
  21. </cover-view>
  22. </block>
  23. <!-- #endif -->
  24. </uni-nav-bar>
  25. <!-- 头部 -->
  26. <step-bar :steps="steps" :fixeda='false' :stepval="stepval"></step-bar>
  27. </view>
  28. <uni-forms ref="form" :model="datainfo" :rules="rules">
  29. <view class="bgf plr12 mt12">
  30. <uni-forms-item label="项目编号" name="loanApplicationNumber">
  31. <view class="lbtabp">
  32. <view :class="datainfo.loanApplicationNumber?'':'coa'">{{datainfo.loanApplicationNumber}}</view>
  33. </view>
  34. </uni-forms-item>
  35. </view>
  36. <!-- 企业信息 -->
  37. <view v-show="stepval==1">
  38. <!-- 企业信息 -->
  39. <view class="addtit mt3"><text>*</text>企业信息</view>
  40. <view class="bgf plr12">
  41. <picker range-key='label' :value="qyidx" :range="qylist" class="isborder" @change='bindDateChangea'>
  42. <uni-forms-item label="企业名称" name="enterpriseName">
  43. <view class="lbtabp">
  44. <view class="chtit" :class="datainfo.enterpriseName?'':'coa'">{{datainfo.enterpriseName||"请选择已添加的企业"}}</view>
  45. <image :src="hrimg" class="rimg"></image>
  46. </view>
  47. </uni-forms-item>
  48. </picker>
  49. <uni-forms-item label="行业类型" name="categoryType">
  50. <view class="lbtabp" @click="getTalbFn">
  51. <view :class="datainfo.categoryType?'':'coa'">{{datainfo.categoryType||"请选择行业类型"}}</view>
  52. <image :src="hrimg" class="rimg"></image>
  53. </view>
  54. </uni-forms-item>
  55. <uni-forms-item label="是否是制造业" name="isMake">
  56. <view class="checkbox">
  57. <uni-data-checkbox :selectedColor="actcolor" selectedTextColor='#222327' v-model="datainfo.isMake" :localdata="sfList" />
  58. </view>
  59. </uni-forms-item>
  60. <uni-forms-item label="是否专精特新" name="isNew">
  61. <view class="checkbox">
  62. <uni-data-checkbox :selectedColor="actcolor" selectedTextColor='#222327' v-model="datainfo.isNew" :localdata="sfList" />
  63. </view>
  64. </uni-forms-item>
  65. <uni-forms-item label="是否小微企业" name="isSmall">
  66. <view class="flexc">
  67. <view class="checkbox flex1">
  68. <uni-data-checkbox :selectedColor="actcolor" selectedTextColor='#222327' v-model="datainfo.isSmall" :localdata="sfList" />
  69. </view>
  70. <view class="ywicon flexc" @click="showImg"><image :src="ywicon"></image>划分标准</view>
  71. </view>
  72. </uni-forms-item>
  73. <uni-forms-item label="公司简介" name="companyIntroduction">
  74. <uni-easyinput type="textarea" autoHeight v-model="datainfo.companyIntroduction" :inputBorder='false' placeholder="请输入公司简介" />
  75. </uni-forms-item>
  76. <uni-forms-item label="公司简介" name="iszcy">
  77. <view class="phobox">
  78. <view class="phoboxa" v-if="jcfjobj.gszc">
  79. <!-- fileName 给label 0 -->
  80. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.gsjj" fileVal='gsjj' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  81. @progress="" @uploadEnd="onuploadEnd" >
  82. <view class="photop" >
  83. <image :src="zico" class="bgimg"></image>
  84. <image :src="phoicon" class="addimg"></image>
  85. </view>
  86. </lsj-upload>
  87. <view class="photit atit">公司简介附件与输入信息填一个即可。</view>
  88. </view>
  89. <block v-for="(ite,idx) in filelist" :key='idx'>
  90. <view class="phoboxa" v-if="ite.type=='gsjj'&&ite.bigType=='a'">
  91. <view class="photop" @click="getDown(ite.url)">
  92. <image :src="lookico" class="bgimg"></image>
  93. <image :src="phoicon" class="addimg"></image>
  94. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  95. </view>
  96. <view class="photit">{{ite.name}}</view>
  97. </view>
  98. </block>
  99. </view>
  100. </uni-forms-item>
  101. <uni-forms-item label="公司章程" name="iszcy">
  102. <view class="phobox">
  103. <view class="phoboxa" v-if="jcfjobj.gszc">
  104. <!-- fileName 给label 0 -->
  105. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.gszc" fileVal='gszc' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  106. @progress="" @uploadEnd="onuploadEnd" >
  107. <view class="photop" >
  108. <image :src="zico" class="bgimg"></image>
  109. <image :src="phoicon" class="addimg"></image>
  110. </view>
  111. </lsj-upload>
  112. <view class="photit atit">上传公司章程并盖市监局备案章</view>
  113. </view>
  114. <block v-for="(ite,idx) in filelist" :key='idx'>
  115. <view class="phoboxa" v-if="ite.type=='gszc'&&ite.bigType=='a'">
  116. <view class="photop" @click="getDown(ite.url)">
  117. <image :src="lookico" class="bgimg"></image>
  118. <image :src="phoicon" class="addimg"></image>
  119. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  120. </view>
  121. <view class="photit">{{ite.name}}</view>
  122. </view>
  123. </block>
  124. </view>
  125. </uni-forms-item>
  126. <uni-forms-item label="开户许可证" name="iszcy">
  127. <view class="phobox">
  128. <view class="phoboxa" v-if="jcfjobj.khxkz">
  129. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.khxkz" fileVal='khxkz' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  130. @progress="" @uploadEnd="onuploadEnd" >
  131. <view class="photop" >
  132. <image :src="zico" class="bgimg"></image>
  133. <image :src="phoicon" class="addimg"></image>
  134. </view>
  135. </lsj-upload>
  136. <view class="photit">上传开户许可证</view>
  137. </view>
  138. <block v-for="(ite,idx) in filelist" :key='idx'>
  139. <view class="phoboxa" v-if="ite.type=='khxkz'&&ite.bigType=='a'">
  140. <view class="photop" @click="getDown(ite.url)">
  141. <image :src="lookico" class="bgimg"></image>
  142. <image :src="phoicon" class="addimg"></image>
  143. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  144. </view>
  145. <view class="photit">{{ite.name}}</view>
  146. </view>
  147. </block>
  148. </view>
  149. </uni-forms-item>
  150. <!-- <uni-forms-item label="企业名称" name="email">
  151. <uni-easyinput v-model="datainfo.email" :inputBorder='false' placeholder="自动识别" />
  152. </uni-forms-item> -->
  153. </view>
  154. <!-- 全体股东身份信息 -->
  155. <view class="addtit mt3"><text>*</text>全体股东身份信息<text style="color: red; font-size: 12px;">(身份证信息与营业执照两者只需上传一个)</text></view>
  156. <view class="bgf plr12">
  157. <block v-for="(ite,idx) in gdlist" :key="idx">
  158. <uni-forms-item name="iszcy">
  159. <view class="labtxt">股东{{(Number(idx)+1)}}身份证
  160. <text class="del" @click="getdelGdFn(idx)">删除</text>
  161. </view>
  162. <view class="phobox" style="display: flex;flex-wrap: wrap;justify-content: space-between;">
  163. <view class="phoboxa">
  164. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="'股东'+(Number(idx)+1)+'身份证'" :fileVal='idx' bigType="cardz" :width="pwidth" :height="pheight" :formats="gdformats" :option="option" :size="size" :debug="debug" :instantly="instantly"
  165. @progress="" @uploadEnd="gdonuploadEnd" >
  166. <view class="photop">
  167. <image v-if="ite.cardz" :src="baseUrl+ite.cardz" class="bgimg"></image>
  168. <image v-else :src="cardz" class="bgimg"></image>
  169. <image :src="phoicon" class="addimg"></image>
  170. </view>
  171. </lsj-upload>
  172. <view class="photit">上传人像面</view>
  173. </view>
  174. <view class="phoboxa" >
  175. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="'股东'+(Number(idx)+1)+'身份证'" :fileVal='idx' bigType="cardf" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="gdformats" :debug="debug" :instantly="instantly"
  176. @progress="" @uploadEnd="gdonuploadEnd" >
  177. <view class="photop">
  178. <image v-if="ite.cardf" :src="baseUrl+ite.cardf" class="bgimg"></image>
  179. <image v-else :src="cardf" class="bgimg"></image>
  180. <image :src="phoicon" class="addimg"></image>
  181. </view>
  182. </lsj-upload>
  183. <view class="photit">上传国徽面</view>
  184. </view>
  185. </view>
  186. </uni-forms-item>
  187. <uni-forms-item name="iszcy">
  188. <view class="labtxt">股东{{(Number(idx)+1)}}营业执照
  189. <text class="del" @click="getdelGdFn(idx)">删除</text>
  190. </view>
  191. <view class="phobox">
  192. <view class="phoboxa">
  193. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="'股东'+(Number(idx)+1)+'营业执照'" :fileVal='idx' bigType="zhz" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  194. @progress="" @uploadEnd="gdonuploadEnd" >
  195. <view class="photop" >
  196. <image :src="zico" class="bgimg"></image>
  197. <image :src="phoicon" class="addimg"></image>
  198. </view>
  199. </lsj-upload>
  200. <view class="photit">上传实际控股人营业执照</view>
  201. </view>
  202. <block v-if="ite.zhizhao&&ite.zhizhao.length">
  203. <view class="phoboxa" v-for="(zxite,zxidx) in ite.zhizhao" :key="zxidx">
  204. <view class="photop" @click="getDown(zxite)">
  205. <image :src="lookico" class="bgimg"></image>
  206. <image :src="phoicon" class="addimg"></image>
  207. <image :src="delimg" class="delimg" @click.stop="getDelgdyy(idx,zxidx)"></image>
  208. </view>
  209. <!-- <view class="photit">{{zxite.name}}</view> -->
  210. </view>
  211. </block>
  212. </view>
  213. </uni-forms-item>
  214. </block>
  215. <view class="addgdbox">
  216. <view class="rzbtnadd" @click="getAddGdFn">
  217. <image :src="addgd"></image>添加股东
  218. </view>
  219. </view>
  220. </view>
  221. <!-- * 企业征信(由中国人民银行提供) -->
  222. <view class="addtit mt3"><text>*</text>企业征信(由中国人民银行提供)</view>
  223. <view class="bgf plr12">
  224. <uni-forms-item label="申请企业" name="iszcy">
  225. <view class="phobox">
  226. <view class="phoboxa" v-if="jcfjobj.sqqyzxbg">
  227. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.sqqyzxbg" fileVal='sqqyzxbg' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  228. @progress="" @uploadEnd="onuploadEnd" >
  229. <view class="photop" >
  230. <image :src="zico" class="bgimg"></image>
  231. <image :src="phoicon" class="addimg"></image>
  232. </view>
  233. </lsj-upload>
  234. <view class="photit atit">上传申请企业征信报告</view>
  235. </view>
  236. <block v-for="(ite,idx) in filelist" :key='idx'>
  237. <view class="phoboxa" v-if="ite.type=='sqqyzxbg'&&ite.bigType=='a'">
  238. <view class="photop" @click="getDown(ite.url)">
  239. <image :src="lookico" class="bgimg"></image>
  240. <image :src="phoicon" class="addimg"></image>
  241. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  242. </view>
  243. <view class="photit">{{ite.name}}</view>
  244. </view>
  245. </block>
  246. </view>
  247. </uni-forms-item>
  248. <uni-forms-item label="关联企业" name="iszcy">
  249. <view class="phobox">
  250. <view class="phoboxa" v-if="jcfjobj.glqyzxbg">
  251. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.glqyzxbg" fileVal='glqyzxbg' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  252. @progress="" @uploadEnd="onuploadEnd" >
  253. <view class="photop" >
  254. <image :src="zico" class="bgimg"></image>
  255. <image :src="phoicon" class="addimg"></image>
  256. </view>
  257. </lsj-upload>
  258. <view class="photit atit">上传关联企业征信报告</view>
  259. </view>
  260. <block v-for="(ite,idx) in filelist" :key='idx'>
  261. <view class="phoboxa" v-if="ite.type=='glqyzxbg'&&ite.bigType=='a'">
  262. <view class="photop" @click="getDown(ite.url)">
  263. <image :src="lookico" class="bgimg"></image>
  264. <image :src="phoicon" class="addimg"></image>
  265. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  266. </view>
  267. <view class="photit">{{ite.name}}</view>
  268. </view>
  269. </block>
  270. </view>
  271. </uni-forms-item>
  272. </view>
  273. <!-- * 企业法人征信-->
  274. <view class="addtit mt3"><text>*</text>企业法人征信</view>
  275. <view class="bgf plr12">
  276. <uni-forms-item label="企业法人" name="iszcy">
  277. <view class="phobox">
  278. <view class="phoboxa" v-if="jcfjobj.qyfrzxbg">
  279. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.qyfrzxbg" fileVal='qyfrzxbg' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  280. @progress="" @uploadEnd="onuploadEnd" >
  281. <view class="photop" >
  282. <image :src="zico" class="bgimg"></image>
  283. <image :src="phoicon" class="addimg"></image>
  284. </view>
  285. </lsj-upload>
  286. <view class="photit atit">上传企业法人征信报告</view>
  287. </view>
  288. <block v-for="(ite,idx) in filelist" :key='idx'>
  289. <view class="phoboxa" v-if="ite.type=='qyfrzxbg'&&ite.bigType=='a'">
  290. <view class="photop" @click="getDown(ite.url)">
  291. <image :src="lookico" class="bgimg"></image>
  292. <image :src="phoicon" class="addimg"></image>
  293. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  294. </view>
  295. <view class="photit">{{ite.name}}</view>
  296. </view>
  297. </block>
  298. </view>
  299. </uni-forms-item>
  300. </view>
  301. <!-- * 实际控股人夫妻双方征信-->
  302. <view class="addtit mt3"><text>*</text>实际控股人夫妻双方征信</view>
  303. <view class="bgf plr12">
  304. <uni-forms-item label="实际控股人" name="iszcy">
  305. <view class="phobox">
  306. <view class="phoboxa" v-if="jcfjobj.sjkgrzxbg">
  307. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.sjkgrzxbg" fileVal='sjkgrzxbg' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  308. @progress="" @uploadEnd="onuploadEnd" >
  309. <view class="photop" >
  310. <image :src="zico" class="bgimg"></image>
  311. <image :src="phoicon" class="addimg"></image>
  312. </view>
  313. </lsj-upload>
  314. <view class="photit atit">上传实际控股人征信报告</view>
  315. </view>
  316. <block v-for="(ite,idx) in filelist" :key='idx'>
  317. <view class="phoboxa" v-if="ite.type=='sjkgrzxbg'&&ite.bigType=='a'">
  318. <view class="photop" @click="getDown(ite.url)">
  319. <image :src="lookico" class="bgimg"></image>
  320. <image :src="phoicon" class="addimg"></image>
  321. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  322. </view>
  323. <view class="photit">{{ite.name}}</view>
  324. </view>
  325. </block>
  326. </view>
  327. </uni-forms-item>
  328. <uni-forms-item label="配偶征信" name="iszcy">
  329. <view class="phobox">
  330. <view class="phoboxa" v-if="jcfjobj.sjkgrpozxbg">
  331. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.sjkgrpozxbg" fileVal='sjkgrpozxbg' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  332. @progress="" @uploadEnd="onuploadEnd" >
  333. <view class="photop" >
  334. <image :src="zico" class="bgimg"></image>
  335. <image :src="phoicon" class="addimg"></image>
  336. </view>
  337. </lsj-upload>
  338. <view class="photit atit">上传实际控股人配偶征信报告</view>
  339. </view>
  340. <block v-for="(ite,idx) in filelist" :key='idx'>
  341. <view class="phoboxa" v-if="ite.type=='sjkgrpozxbg'&&ite.bigType=='a'">
  342. <view class="photop" @click="getDown(ite.url)">
  343. <image :src="lookico" class="bgimg"></image>
  344. <image :src="phoicon" class="addimg"></image>
  345. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  346. </view>
  347. <view class="photit">{{ite.name}}</view>
  348. </view>
  349. </block>
  350. </view>
  351. </uni-forms-item>
  352. </view>
  353. <!-- * 各股东个人征信(请与上面所填股东对应) -->
  354. <view class="addtit mt3"><text>*</text>各股东个人征信(请与上面所填股东对应)</view>
  355. <view class="bgf plr12">
  356. <block v-for="(ite,idx) in gdlist" :key="idx">
  357. <uni-forms-item :label="'股东'+(Number(idx)+1)+'征信'" name="iszcy">
  358. <view class="phobox">
  359. <view class="phoboxa">
  360. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="'股东'+(Number(idx)+1)+'征信'" :fileVal='idx' bigType="zx" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  361. @progress="" @uploadEnd="gdonuploadEnd" >
  362. <view class="photop" >
  363. <image :src="zico" class="bgimg"></image>
  364. <image :src="phoicon" class="addimg"></image>
  365. </view>
  366. </lsj-upload>
  367. <view class="photit">上传实际控股人征信报告</view>
  368. </view>
  369. <block v-if="ite.zxurl&&ite.zxurl.length">
  370. <view class="phoboxa" v-for="(zxite,zxidx) in ite.zxurl" :key="zxidx">
  371. <view class="photop" @click="getDown(zxite)">
  372. <image :src="lookico" class="bgimg"></image>
  373. <image :src="phoicon" class="addimg"></image>
  374. <image :src="delimg" class="delimg" @click.stop="getDelgdFj(idx,zxidx)"></image>
  375. </view>
  376. <!-- <view class="photit">{{zxite.name}}</view> -->
  377. </view>
  378. </block>
  379. </view>
  380. </uni-forms-item>
  381. </block>
  382. </view>
  383. </view>
  384. <!-- 法人信息 -->
  385. <view v-show="stepval==2">
  386. <!-- 用户类型 -->
  387. <view class="addtit mt3"><text>*</text>用户类型</view>
  388. <view class="bgf plr12">
  389. <picker range-key='label' :value="yhlxidx" :range="yhlxlist" class="" @change='bindDateChangeb'>
  390. <uni-forms-item label="用户类型" name="customerType">
  391. <view class="lbtabp">
  392. <view v-if="datainfo.customerType&&!yhlx">{{statusFormat(datainfo.customerType,yhlxlist,'yhlx')}}</view>
  393. <view v-else :class="yhlx?'':'coa'">{{yhlx||"请选择用户类型"}}</view>
  394. <image :src="hrimg" class="rimg"></image>
  395. </view>
  396. </uni-forms-item>
  397. </picker>
  398. </view>
  399. <!-- 法定代表人基本信息 -->
  400. <view class="addtit mt3"><text>*</text>法定代表人基本信息</view>
  401. <view class="bgf plr12">
  402. <uni-forms-item label="身份证" name="iszcy">
  403. <view class="phobox">
  404. <view class="phoboxa" v-if="jcfjobj.frsfzrmx">
  405. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.frsfzrmx" fileVal='frsfzrmx' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="gdformats" :debug="debug" :instantly="instantly"
  406. @progress="" @uploadEnd="ponuploadEnd" >
  407. <view class="photop">
  408. <image :src="cardz" class="bgimg"></image>
  409. <image v-if="datainfo.corporationFront" :src="baseUrl+datainfo.corporationFront" class="bgimga"></image>
  410. <image :src="phoicon" class="addimg"></image>
  411. </view>
  412. </lsj-upload>
  413. <view class="photit atit">上传人像面</view>
  414. </view>
  415. <view class="phoboxa" v-if="jcfjobj.frsfzghm">
  416. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.frsfzghm" fileVal='frsfzghm' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="gdformats" :debug="debug" :instantly="instantly"
  417. @progress="" @uploadEnd="ponuploadEnd" >
  418. <view class="photop">
  419. <view class="photop">
  420. <image :src="cardf" class="bgimg"></image>
  421. <image v-if="datainfo.corporationBack" :src="baseUrl+datainfo.corporationBack" class="bgimga"></image>
  422. <image :src="phoicon" class="addimg"></image>
  423. </view>
  424. </view>
  425. </lsj-upload>
  426. <view class="photit">上传国徽面</view>
  427. </view>
  428. </view>
  429. </uni-forms-item>
  430. <uni-forms-item label="姓名" name="corporationName">
  431. <uni-easyinput v-model="datainfo.corporationName" disabled :inputBorder='false' placeholder="自动识别" />
  432. </uni-forms-item>
  433. <!-- disabled -->
  434. <uni-forms-item label="身份证号" name="corporationIdCard">
  435. <uni-easyinput v-model="datainfo.corporationIdCard" disabled :inputBorder='false' placeholder="自动识别" />
  436. </uni-forms-item>
  437. <uni-forms-item label="手机号码" name="corporationPhone">
  438. <uni-easyinput v-model="datainfo.corporationPhone" type="number" :inputBorder='false' placeholder="请输入手机号码" />
  439. </uni-forms-item>
  440. <!-- 家庭人口选填-->
  441. <uni-forms-item label="家庭人口" name="familyPopulation">
  442. <uni-easyinput v-model="datainfo.familyPopulation" type="number" :inputBorder='false' placeholder="请输入家庭人口" />
  443. </uni-forms-item>
  444. <uni-forms-item label="法人职业" name="corporationJob">
  445. <uni-easyinput v-model="datainfo.corporationJob" :inputBorder='false' placeholder="请输入法人职业" />
  446. </uni-forms-item>
  447. <picker range-key='label' :value="ywidx" class="isborder" :range="ywList" @change='bindDateChangec'>
  448. <uni-forms-item label="有无贷款" name="qymc">
  449. <view class="lbtabp">
  450. <view v-if="datainfo.isLoan">{{datainfo.isLoan=='Y'?'有':'无'}}</view>
  451. <view v-else class="coa">请选择有/无</view>
  452. <image :src="hrimg" class="rimg"></image>
  453. </view>
  454. </uni-forms-item>
  455. </picker>
  456. <!-- <uni-forms-item label="应收应付款" name="email">
  457. <uni-easyinput v-model="datainfo.email" type="number" :inputBorder='false' placeholder="请输入应收应付款" />
  458. </uni-forms-item> -->
  459. <!-- <uni-forms-item label="经营情况" name="iszcy">
  460. <uni-easyinput type="textarea" autoHeight v-model="datainfo.email" :inputBorder='false' placeholder="请描述近几年经营情况" />
  461. </uni-forms-item> -->
  462. <!-- <uni-forms-item label="经营效益" name="email">
  463. <uni-easyinput v-model="datainfo.email" type="number" :inputBorder='false' placeholder="请输入经营效益" />
  464. </uni-forms-item> -->
  465. </view>
  466. <!-- * 家庭婚姻信息 -->
  467. <view class="addtit mt3"><text>*</text>家庭婚姻信息</view>
  468. <view class="bgf plr12">
  469. <picker range-key='label' :value="frhyzkidx" :range="hyztlist" class="isborder" @change='bindDateChanged'>
  470. <uni-forms-item label="婚姻状态" name="corporationMaritalStatus">
  471. <view class="lbtabp">
  472. <view v-if="datainfo.corporationMaritalStatus&&!frhyzk">{{statusFormat(datainfo.corporationMaritalStatus,hyztlist,'frhyzk')}}</view>
  473. <view v-else :class="frhyzk?'':'coa'">{{frhyzk||"请选择婚姻状态"}}</view>
  474. <image :src="hrimg" class="rimg"></image>
  475. </view>
  476. </uni-forms-item>
  477. </picker>
  478. <uni-forms-item label="配偶身份证" name="iszcy">
  479. <view class="phobox">
  480. <view class="phoboxa" v-if="jcfjobj.frsfzpormx">
  481. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.frsfzpormx" fileVal='frsfzpormx' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="gdformats" :debug="debug" :instantly="instantly"
  482. @progress="" @uploadEnd="ponuploadEnd" >
  483. <view class="photop">
  484. <image :src="cardz" class="bgimg"></image>
  485. <image v-if="datainfo.spouseFront" :src="baseUrl+datainfo.spouseFront" class="bgimga"></image>
  486. <image :src="phoicon" class="addimg"></image>
  487. </view>
  488. </lsj-upload>
  489. <!-- 删除 -->
  490. <view class="frdelimg" v-if="datainfo.spouseFront" @click.stop="getDelfzpo('front')">
  491. <image :src="fdelimg"></image>
  492. </view>
  493. <view class="photit atit">上传人像面</view>
  494. </view>
  495. <view class="phoboxa" v-if="jcfjobj.frsfzpoghm">
  496. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.frsfzpoghm" fileVal='frsfzpoghm' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="gdformats" :debug="debug" :instantly="instantly"
  497. @progress="" @uploadEnd="ponuploadEnd" >
  498. <view class="photop">
  499. <view class="photop">
  500. <image :src="cardf" class="bgimg"></image>
  501. <image v-if="datainfo.spouseBack" :src="baseUrl+datainfo.spouseBack" class="bgimga"></image>
  502. <image :src="phoicon" class="addimg"></image>
  503. </view>
  504. </view>
  505. </lsj-upload>
  506. <!-- 删除 -->
  507. <view class="frdelimg" v-if="datainfo.spouseBack" @click.stop="getDelfzpo('back')">
  508. <image :src="fdelimg"></image>
  509. </view>
  510. <view class="photit">上传国徽面</view>
  511. </view>
  512. </view>
  513. </uni-forms-item>
  514. <uni-forms-item label="配偶姓名" name="spouseName">
  515. <uni-easyinput v-model="datainfo.spouseName" disabled :inputBorder='false' placeholder="自动识别" />
  516. </uni-forms-item>
  517. <uni-forms-item label="配偶身份证号" name="spouseIdCard">
  518. <uni-easyinput v-model="datainfo.spouseIdCard" disabled :inputBorder='false' placeholder="自动识别" />
  519. </uni-forms-item>
  520. </view>
  521. <!-- * 企业法人征信-->
  522. <view class="addtit mt3"><text>*</text>婚姻证明</view>
  523. <view class="bgf plr12">
  524. <!-- 离婚状态上传 -->
  525. <uni-forms-item label="离婚证" name="iszcy" v-if="datainfo.corporationMaritalStatus==3">
  526. <view class="phobox">
  527. <view class="phoboxa" v-if="jcfjobj.frlhz">
  528. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.frlhz" fileVal='frlhz' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  529. @progress="" @uploadEnd="onuploadEnd" >
  530. <view class="photop" >
  531. <image :src="jhico" class="bgimg"></image>
  532. <image :src="phoicon" class="addimg"></image>
  533. </view>
  534. </lsj-upload>
  535. <view class="photit atit">上传离婚证</view>
  536. </view>
  537. <block v-for="(ite,idx) in filelist" :key='idx'>
  538. <view class="phoboxa" v-if="ite.type=='frlhz'&&ite.bigType=='a'">
  539. <view class="photop" @click="getDown(ite.url)">
  540. <image :src="lookico" class="bgimg"></image>
  541. <image :src="phoicon" class="addimg"></image>
  542. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  543. </view>
  544. <view class="photit">{{ite.name}}</view>
  545. </view>
  546. </block>
  547. </view>
  548. </uni-forms-item>
  549. <uni-forms-item label="结婚证" name="iszcy" v-else>
  550. <view class="phobox">
  551. <view class="phoboxa" v-if="jcfjobj.frjhz">
  552. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.frjhz" fileVal='frjhz' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  553. @progress="" @uploadEnd="onuploadEnd" >
  554. <view class="photop" >
  555. <image :src="jhico" class="bgimg"></image>
  556. <image :src="phoicon" class="addimg"></image>
  557. </view>
  558. </lsj-upload>
  559. <view class="photit atit">上传结婚证</view>
  560. </view>
  561. <block v-for="(ite,idx) in filelist" :key='idx'>
  562. <view class="phoboxa" v-if="ite.type=='frjhz'&&ite.bigType=='a'">
  563. <view class="photop" @click="getDown(ite.url)">
  564. <image :src="lookico" class="bgimg"></image>
  565. <image :src="phoicon" class="addimg"></image>
  566. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  567. </view>
  568. <view class="photit">{{ite.name}}</view>
  569. </view>
  570. </block>
  571. </view>
  572. </uni-forms-item>
  573. </view>
  574. <!-- * 户口簿信息-->
  575. <view class="addtit mt3"><text>*</text>户口簿信息</view>
  576. <view class="bgf plr12">
  577. <uni-forms-item label="户口簿首页" name="iszcy">
  578. <view class="phobox">
  579. <view class="phoboxa" v-if="jcfjobj.frhkbsy">
  580. <lsj-upload ref="lsjUpload" childId="frhkbsy" :fileName="jcfjobj.frhkbsy" fileVal='frhkbsy' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  581. @progress="" @uploadEnd="onuploadEnd" >
  582. <view class="photop" >
  583. <image :src="hkico" class="bgimg"></image>
  584. <!-- <block v-for="(ite,idx) in filelist" :key='idx'>
  585. <image v-if="ite.type=='frhkbsy'&&ite.bigType=='a'" :src="baseUrl+ite.url" class="bgimga"></image>
  586. </block> -->
  587. <image :src="phoicon" class="addimg"></image>
  588. </view>
  589. </lsj-upload>
  590. <view class="photit atit">上传户口簿第一页</view>
  591. </view>
  592. <block v-for="(ite,idx) in filelist" :key='idx'>
  593. <view class="phoboxa" v-if="ite.type=='frhkbsy'&&ite.bigType=='a'">
  594. <view class="photop" @click="getDown(ite.url)">
  595. <image :src="lookico" class="bgimg"></image>
  596. <image :src="phoicon" class="addimg"></image>
  597. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  598. </view>
  599. <view class="photit">{{ite.name}}</view>
  600. </view>
  601. </block>
  602. </view>
  603. </uni-forms-item>
  604. <uni-forms-item label="户口簿单页" name="iszcy">
  605. <view class="phobox">
  606. <view class="phoboxa" v-if="jcfjobj.frhkbbry">
  607. <!-- 法人户口簿每一页 -->
  608. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.frhkbbry" fileVal='frhkbbry' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  609. @progress="" @uploadEnd="onuploadEnd" >
  610. <view class="photop" >
  611. <image :src="hkico" class="bgimg"></image>
  612. <image :src="phoicon" class="addimg"></image>
  613. </view>
  614. </lsj-upload>
  615. <view class="photit atit">上传户口簿每一页</view>
  616. </view>
  617. <block v-for="(ite,idx) in filelist" :key='idx'>
  618. <view class="phoboxa" v-if="ite.type=='frhkbbry'&&ite.bigType=='a'">
  619. <view class="photop" @click="getDown(ite.url)">
  620. <image :src="lookico" class="bgimg"></image>
  621. <image :src="phoicon" class="addimg"></image>
  622. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  623. </view>
  624. <view class="photit">{{ite.name}}</view>
  625. </view>
  626. </block>
  627. <!-- <view class="phoboxa">
  628. <view class="photop">
  629. <image :src="hkico" class="bgimg"></image>
  630. <image :src="phoicon" class="addimg"></image>
  631. </view>
  632. <view class="photit atit">上传户口簿配偶页</view>
  633. </view> -->
  634. </view>
  635. </uni-forms-item>
  636. </view>
  637. </view>
  638. <!-- 反担保人信息 -->
  639. <view v-show="stepval==3">
  640. <!-- 担保类型 -->
  641. <view class="addtit mt3"><text>*</text>担保类型</view>
  642. <view class="bgf plr12">
  643. <picker range-key='label' :value="dblxidx" :range="dblxlist" class="" @change='bindDateChangee'>
  644. <uni-forms-item label="担保类型" name="guaranteeType">
  645. <view class="lbtabp">
  646. <view v-if="datainfo.guaranteeType&&!dblx">{{statusFormat(datainfo.guaranteeType,dblxlist,'dblx')}}</view>
  647. <view v-else :class="dblx?'':'coa'">{{dblx||"请选择担保类型"}}</view>
  648. <image :src="hrimg" class="rimg"></image>
  649. </view>
  650. </uni-forms-item>
  651. </picker>
  652. </view>
  653. <!-- 反担保人基本信息 v-if="datainfo.guaranteeType==2"-->
  654. <block>
  655. <view class="addtit mt3"><text>*</text>反担保人基本信息</view>
  656. <view class="bgf plr12">
  657. <uni-forms-item label="身份证" name="iszcy">
  658. <view class="phobox">
  659. <view class="phoboxa" v-if="jcfjobj.fdbrsfzrmx">
  660. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.fdbrsfzrmx" fileVal='fdbrsfzrmx' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="gdformats" :debug="debug" :instantly="instantly"
  661. @progress="" @uploadEnd="ponuploadEnd" >
  662. <view class="photop">
  663. <image :src="cardz" class="bgimg"></image>
  664. <image v-if="datainfo.guaranteeFront" :src="baseUrl+datainfo.guaranteeFront" class="bgimga"></image>
  665. <image :src="phoicon" class="addimg"></image>
  666. </view>
  667. </lsj-upload>
  668. <view class="frdelimg" v-if="datainfo.guaranteeFront" @click.stop="getDelfdbfzpo('front')">
  669. <image :src="fdelimg"></image>
  670. </view>
  671. <view class="photit atit">上传人像面</view>
  672. </view>
  673. <view class="phoboxa" v-if="jcfjobj.fdbrsfzghm">
  674. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.fdbrsfzghm" fileVal='fdbrsfzghm' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="gdformats" :debug="debug" :instantly="instantly"
  675. @progress="" @uploadEnd="ponuploadEnd" >
  676. <view class="photop">
  677. <view class="photop">
  678. <image :src="cardf" class="bgimg"></image>
  679. <image v-if="datainfo.guaranteeBack" :src="baseUrl+datainfo.guaranteeBack" class="bgimga"></image>
  680. <image :src="phoicon" class="addimg"></image>
  681. </view>
  682. </view>
  683. </lsj-upload>
  684. <view class="frdelimg" v-if="datainfo.guaranteeBack" @click.stop="getDelfdbfzpo('back')">
  685. <image :src="fdelimg"></image>
  686. </view>
  687. <view class="photit">上传国徽面</view>
  688. </view>
  689. </view>
  690. </uni-forms-item>
  691. <uni-forms-item label="姓名" name="guaranteeName">
  692. <uni-easyinput v-model="datainfo.guaranteeName" disabled :inputBorder='false' placeholder="自动识别" />
  693. </uni-forms-item>
  694. <uni-forms-item label="身份证号" name="guaranteeIdCard">
  695. <uni-easyinput v-model="datainfo.guaranteeIdCard" disabled :inputBorder='false' placeholder="自动识别" />
  696. </uni-forms-item>
  697. <uni-forms-item label="手机号码" name="guaranteePhone">
  698. <uni-easyinput v-model="datainfo.guaranteePhone" type="number" :inputBorder='false' placeholder="请输入手机号码" />
  699. </uni-forms-item>
  700. </view>
  701. </block>
  702. <!-- * 反担保人信用担保证明-->
  703. <view class="addtit mt3">反担保人信用担保证明</view>
  704. <view class="bgf plr12">
  705. <uni-forms-item name="iszcy">
  706. <view class="labtxt">个人工作证明
  707. <text>(选填)</text>
  708. </view>
  709. <view class="phobox" style="display: flex;flex-wrap: wrap;justify-content: space-between;">
  710. <view class="phoboxa" v-if="jcfjobj.fdbrgrgzzm">
  711. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.fdbrgrgzzm" fileVal='fdbrgrgzzm' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  712. @progress="" @uploadEnd="onuploadEnd" >
  713. <view class="photop" >
  714. <image :src="zico" class="bgimg"></image>
  715. <image :src="phoicon" class="addimg"></image>
  716. </view>
  717. </lsj-upload>
  718. <view class="photit atit">公职人员上传个人工作证明</view>
  719. </view>
  720. <block v-for="(ite,idx) in filelist" :key='idx'>
  721. <view class="phoboxa" v-if="ite.type=='fdbrgrgzzm'&&ite.bigType=='a'">
  722. <view class="photop" @click="getDown(ite.url)">
  723. <image :src="lookico" class="bgimg"></image>
  724. <image :src="phoicon" class="addimg"></image>
  725. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  726. </view>
  727. <view class="photit">{{ite.name}}</view>
  728. </view>
  729. </block>
  730. </view>
  731. </uni-forms-item>
  732. <uni-forms-item label="身份证复印件" name="iszcy">
  733. <view class="phobox">
  734. <view class="phoboxa" v-if="jcfjobj.fdbrsfzfyj">
  735. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.fdbrsfzfyj" fileVal='fdbrsfzfyj' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  736. @progress="" @uploadEnd="onuploadEnd" >
  737. <view class="photop" >
  738. <image :src="cardz" class="bgimg"></image>
  739. <image :src="phoicon" class="addimg"></image>
  740. </view>
  741. </lsj-upload>
  742. <view class="photit atit">上传身份证复印件</view>
  743. </view>
  744. <block v-for="(ite,idx) in filelist" :key='idx'>
  745. <view class="phoboxa" v-if="ite.type=='fdbrsfzfyj'&&ite.bigType=='a'">
  746. <view class="photop" @click="getDown(ite.url)">
  747. <image :src="lookico" class="bgimg"></image>
  748. <image :src="phoicon" class="addimg"></image>
  749. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  750. </view>
  751. <view class="photit">{{ite.name}}</view>
  752. </view>
  753. </block>
  754. </view>
  755. </uni-forms-item>
  756. <uni-forms-item label="个人征信报告" name="iszcy">
  757. <view class="phobox">
  758. <view class="phoboxa" v-if="jcfjobj.fdbrgrzxbg">
  759. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="jcfjobj.fdbrgrzxbg" fileVal='fdbrgrzxbg' bigType="a" :width="pwidth" :height="pheight" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  760. @progress="" @uploadEnd="onuploadEnd" >
  761. <view class="photop" >
  762. <image :src="zico" class="bgimg"></image>
  763. <image :src="phoicon" class="addimg"></image>
  764. </view>
  765. </lsj-upload>
  766. <view class="photit atit">上传个人征信报告</view>
  767. </view>
  768. <block v-for="(ite,idx) in filelist" :key='idx'>
  769. <view class="phoboxa" v-if="ite.type=='fdbrgrzxbg'&&ite.bigType=='a'">
  770. <view class="photop" @click="getDown(ite.url)">
  771. <image :src="lookico" class="bgimg"></image>
  772. <image :src="phoicon" class="addimg"></image>
  773. <image :src="delimg" class="delimg" @click.stop="getDelFj(idx)"></image>
  774. </view>
  775. <view class="photit">{{ite.name}}</view>
  776. </view>
  777. </block>
  778. </view>
  779. </uni-forms-item>
  780. </view>
  781. </view>
  782. <!-- 添加附件 -->
  783. <view v-show="stepval==4">
  784. <!-- 附件信息 -->
  785. <view class="addtit mt3">
  786. <view @click="getDbclFn" class="flexc">附件信息<image :src="ywicon" class="ywimg"></image></view>
  787. </view>
  788. <block v-for="(ite,idx) in sbfjlist" :key="ite.val">
  789. <!-- 委托担保申请书 -->
  790. <view class="bgf plr12 mb12" v-if="ite.val=='wtdbsqs'||ite.val=='gdhyjy'">
  791. <view class="fjbox">
  792. <view class="fjtop flext">
  793. <view class="ftit"><text>*</text>{{ite.label}}<text class="mtxt">(须面签)</text></view>
  794. <view class="fbtns cof64" @click="getExportMb(ite)">
  795. <image :src="downimg" class="downimg"></image>下载模板
  796. </view>
  797. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  798. @progress="" @uploadEnd="fjonuploadEnd" >
  799. <view class="fbtns co0a" :style="{width: width,height: height}">
  800. <image :src="upimg"></image>
  801. <view>{{'上传附件'}}</view>
  802. </view>
  803. </lsj-upload>
  804. </view>
  805. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  806. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  807. <view class="flext" @click="getDown(fite.url)">
  808. <view class="imgl"><image :src="filico" ></image></view>
  809. <view class="tit">{{fite.name}}</view>
  810. </view>
  811. <!-- 删除 -->
  812. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  813. <image :src="fdelimg"></image>
  814. </view>
  815. </view>
  816. </view>
  817. </view>
  818. </view>
  819. <view class="bgf plr12" v-if="ite.val=='syndcwbb'||ite.val=='syndsjbg'">
  820. <view class="fjbox" :class="ite.val!='syndsjbg'?'isborder':''">
  821. <view class="fjtop flext">
  822. <view class="ftit"><text v-if="ite.val=='syndcwbb'">*</text>{{ite.label}}</view>
  823. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  824. @progress="" @uploadEnd="fjonuploadEnd" >
  825. <view class="fbtns co0a" :style="{width: width,height: height}">
  826. <image :src="upimg"></image><view>上传附件</view>
  827. </view>
  828. </lsj-upload>
  829. </view>
  830. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  831. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  832. <view class="flext" @click="getDown(fite.url)">
  833. <view class="imgl"><image :src="filico" ></image></view>
  834. <view class="tit">{{fite.name}}</view>
  835. </view>
  836. <!-- 删除 -->
  837. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  838. <image :src="fdelimg"></image>
  839. </view>
  840. </view>
  841. </view>
  842. </view>
  843. </view>
  844. <!-- {{ite.fjlist&&ite.fjlist.length?'重新上传':'上传附件'}} -->
  845. <view class="bgf plr12" v-if="ite.val=='dqcwbb'&&datainfo.applicationType==1">
  846. <view class="fjbox isborder">
  847. <view class="fjtop flext">
  848. <view class="ftit"><text>*</text>{{ite.label}}</view>
  849. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  850. @progress="" @uploadEnd="fjonuploadEnd" >
  851. <view class="fbtns co0a" :style="{width: width,height: height}">
  852. <image :src="upimg"></image><view>上传附件</view>
  853. </view>
  854. </lsj-upload>
  855. </view>
  856. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  857. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  858. <view class="flext" @click="getDown(fite.url)">
  859. <view class="imgl"><image :src="filico" ></image></view>
  860. <view class="tit">{{fite.name}}</view>
  861. </view>
  862. <!-- 删除 -->
  863. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  864. <image :src="fdelimg"></image>
  865. </view>
  866. </view>
  867. </view>
  868. </view>
  869. </view>
  870. <view class="bgf plr12 mt12" v-if="ite.val=='nszm'">
  871. <view class="fjbox isborder">
  872. <picker range-key='text' :value="sfidx" :range="sfList" @change='bindDateChangef'>
  873. <view class="fjtop flexc chek">
  874. <view class="ftit"><text>*</text>是否免税企业</view>
  875. <view v-if="datainfo.isDuty">{{datainfo.isDuty=='Y'?'是':'否'}}</view>
  876. <view v-else class="coa">请选择是/否</view>
  877. <!-- <view :class="datainfo.isDuty?'':'coa'">{{msqy||"请选择是/否"}}</view> -->
  878. <image :src="hrimg" class="rimg"></image>
  879. </view>
  880. </picker>
  881. </view>
  882. <view class="fjbox isborder">
  883. <view class="fjtop flext">
  884. <view class="ftit">{{ite.label}}</view>
  885. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  886. @progress="" @uploadEnd="fjonuploadEnd" >
  887. <view class="fbtns co0a" :style="{width: width,height: height}">
  888. <image :src="upimg"></image><view>上传附件</view>
  889. </view>
  890. </lsj-upload>
  891. </view>
  892. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  893. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  894. <view class="flext" @click="getDown(fite.url)">
  895. <view class="imgl"><image :src="filico" ></image></view>
  896. <view class="tit">{{fite.name}}</view>
  897. </view>
  898. <!-- 删除 -->
  899. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  900. <image :src="fdelimg"></image>
  901. </view>
  902. </view>
  903. </view>
  904. </view>
  905. </view>
  906. <view class="bgf plr12 " v-if="ite.val=='jsyyhdzd'">
  907. <view class="fjbox">
  908. <view class="fjtop flext">
  909. <view class="ftit">{{ite.label}}</view>
  910. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  911. @progress="" @uploadEnd="fjonuploadEnd" >
  912. <view class="fbtns co0a" :style="{width: width,height: height}">
  913. <image :src="upimg"></image><view>上传附件</view>
  914. </view>
  915. </lsj-upload>
  916. </view>
  917. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  918. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  919. <view class="flext" @click="getDown(fite.url)">
  920. <view class="imgl"><image :src="filico" ></image></view>
  921. <view class="tit">{{fite.name}}</view>
  922. </view>
  923. <!-- 删除 -->
  924. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  925. <image :src="fdelimg"></image>
  926. </view>
  927. </view>
  928. </view>
  929. </view>
  930. </view>
  931. <!-- 主要账户银行流水 -->
  932. <view class="mt12" v-if="ite.val=='zyzhyhls'">
  933. <view class="bgf plr12 " >
  934. <view class="fjbox">
  935. <view class="fjtop flext">
  936. <view class="ftit"><text>*</text>{{ite.label}}</view>
  937. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  938. @progress="" @uploadEnd="fjonuploadEnd" >
  939. <view class="fbtns co0a" :style="{width: width,height: height}">
  940. <image :src="upimg"></image><view>上传附件</view>
  941. </view>
  942. </lsj-upload>
  943. </view>
  944. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  945. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  946. <view class="flext" @click="getDown(fite.url)">
  947. <view class="imgl"><image :src="filico" ></image></view>
  948. <view class="tit">{{fite.name}}</view>
  949. </view>
  950. <!-- 删除 -->
  951. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  952. <image :src="fdelimg"></image>
  953. </view>
  954. </view>
  955. </view>
  956. </view>
  957. </view>
  958. <view class="addtit tips">提供能够反映企业资金流向的法人或控股股东不低于半年的个人 主要账户银行流水</view>
  959. </view>
  960. <view class="bgf plr12 " :class="ite.val=='gxht'?'isborder':''" v-if="ite.val=='gxht'|| ite.val=='dqcsxmqkzm'">
  961. <view class="fjbox">
  962. <view class="fjtop flext">
  963. <view class="ftit"><text>*</text>{{ite.label}}</view>
  964. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  965. @progress="" @uploadEnd="fjonuploadEnd" >
  966. <view class="fbtns co0a" :style="{width: width,height: height}">
  967. <image :src="upimg"></image><view>上传附件</view>
  968. </view>
  969. </lsj-upload>
  970. </view>
  971. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  972. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  973. <view class="flext" @click="getDown(fite.url)">
  974. <view class="imgl"><image :src="filico" ></image></view>
  975. <view class="tit">{{fite.name}}</view>
  976. </view>
  977. <!-- 删除 -->
  978. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  979. <image :src="fdelimg"></image>
  980. </view>
  981. </view>
  982. </view>
  983. </view>
  984. </view>
  985. <!-- 企业基本注册信息查询单 -->
  986. <view class="bgf plr12 mt12 mb12" v-if="ite.val=='qyjbzcxxcxd'">
  987. <view class="fjbox">
  988. <view class="fjtop flext">
  989. <view class="ftit"><text>*</text>{{ite.label}}</view>
  990. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  991. @progress="" @uploadEnd="fjonuploadEnd" >
  992. <view class="fbtns co0a" :style="{width: width,height: height}">
  993. <image :src="upimg"></image><view>上传附件</view>
  994. </view>
  995. </lsj-upload>
  996. </view>
  997. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  998. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  999. <view class="flext" @click="getDown(fite.url)">
  1000. <view class="imgl"><image :src="filico" ></image></view>
  1001. <view class="tit">{{fite.name}}</view>
  1002. </view>
  1003. <!-- 删除 -->
  1004. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  1005. <image :src="fdelimg"></image>
  1006. </view>
  1007. </view>
  1008. </view>
  1009. </view>
  1010. </view>
  1011. <!-- 企业固定资产证明 -->
  1012. <view class="bgf plr12 " v-if="ite.val=='qygdzczm'||ite.val=='frzczmfc'||ite.val=='frzczmdc'||ite.val=='frzczmcl'">
  1013. <view class="fjbox" :class="ite.val!='frzczmcl'?'isborder':''">
  1014. <view class="fjtop flext">
  1015. <view class="ftit">{{ite.label}}</view>
  1016. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  1017. @progress="" @uploadEnd="fjonuploadEnd" >
  1018. <view class="fbtns co0a" :style="{width: width,height: height}">
  1019. <image :src="upimg"></image><view>上传附件</view>
  1020. </view>
  1021. </lsj-upload>
  1022. </view>
  1023. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  1024. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  1025. <view class="flext" @click="getDown(fite.url)">
  1026. <view class="imgl"><image :src="filico" ></image></view>
  1027. <view class="tit">{{fite.name}}</view>
  1028. </view>
  1029. <!-- 删除 -->
  1030. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  1031. <image :src="fdelimg"></image>
  1032. </view>
  1033. </view>
  1034. </view>
  1035. </view>
  1036. </view>
  1037. <!-- 反担保抵(质)押物复印件 -->
  1038. <view class="mt12" v-if="ite.val=='fdbdyfyj'">
  1039. <view class="bgf plr12 " >
  1040. <view class="fjbox">
  1041. <view class="fjtop flext">
  1042. <view class="ftit">{{ite.label}}</view>
  1043. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  1044. @progress="" @uploadEnd="fjonuploadEnd" >
  1045. <view class="fbtns co0a" :style="{width: width,height: height}">
  1046. <image :src="upimg"></image><view>上传附件</view>
  1047. </view>
  1048. </lsj-upload>
  1049. </view>
  1050. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  1051. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  1052. <view class="flext" @click="getDown(fite.url)">
  1053. <view class="imgl"><image :src="filico" ></image></view>
  1054. <view class="tit">{{fite.name}}</view>
  1055. </view>
  1056. <!-- 删除 -->
  1057. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  1058. <image :src="fdelimg"></image>
  1059. </view>
  1060. </view>
  1061. </view>
  1062. </view>
  1063. </view>
  1064. <view class="addtit tips">机械设备需提供发票原件;若上传附件,后期则需提供证明</view>
  1065. </view>
  1066. <!-- 代理相关品牌授权书 -->
  1067. <view class="bgf plr12 " v-if="ite.val=='dlxgcpsqs'||ite.val=='dlxgppht'">
  1068. <view class="fjbox isborder">
  1069. <view class="fjtop flext">
  1070. <view class="ftit">{{ite.label}}</view>
  1071. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  1072. @progress="" @uploadEnd="fjonuploadEnd" >
  1073. <view class="fbtns co0a" :style="{width: width,height: height}">
  1074. <image :src="upimg"></image><view>上传附件</view>
  1075. </view>
  1076. </lsj-upload>
  1077. </view>
  1078. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  1079. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  1080. <view class="flext" @click="getDown(fite.url)">
  1081. <view class="imgl"><image :src="filico" ></image></view>
  1082. <view class="tit">{{fite.name}}</view>
  1083. </view>
  1084. <!-- 删除 -->
  1085. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  1086. <image :src="fdelimg"></image>
  1087. </view>
  1088. </view>
  1089. </view>
  1090. </view>
  1091. </view>
  1092. <!-- 反担保抵(质)押物复印件 -->
  1093. <view v-if="ite.val=='scjyxkzgy'">
  1094. <view class="bgf plr12 " >
  1095. <view class="fjbox">
  1096. <view class="fjtop flext">
  1097. <view class="ftit">{{ite.label}}</view>
  1098. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  1099. @progress="" @uploadEnd="fjonuploadEnd" >
  1100. <view class="fbtns co0a" :style="{width: width,height: height}">
  1101. <image :src="upimg"></image><view>上传附件</view>
  1102. </view>
  1103. </lsj-upload>
  1104. </view>
  1105. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  1106. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  1107. <view class="flext" @click="getDown(fite.url)">
  1108. <view class="imgl"><image :src="filico" ></image></view>
  1109. <view class="tit">{{fite.name}}</view>
  1110. </view>
  1111. <!-- 删除 -->
  1112. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  1113. <image :src="fdelimg"></image>
  1114. </view>
  1115. </view>
  1116. </view>
  1117. </view>
  1118. </view>
  1119. <view class="addtit tips">例如:塑料包装行业《印刷经营许可证》、食品卫生行业《卫生 许可证》、环保达标认定表原件(工业)</view>
  1120. </view>
  1121. <!-- 纳税申报表 -->
  1122. <view class="bgf plr12 mb12" v-if="ite.val=='sdffpyn'||ite.val=='rggzb'||ite.val=='nssbb'">
  1123. <view class="fjbox">
  1124. <view class="fjtop flext">
  1125. <view class="ftit"><text>*</text>{{ite.label}}</view>
  1126. <lsj-upload ref="lsjUpload" :fileName="ite.label" :fjidx='idx' :fileVal='ite.val' bigType="b" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  1127. @progress="" @uploadEnd="fjonuploadEnd" >
  1128. <view class="fbtns co0a" :style="{width: width,height: height}">
  1129. <image :src="upimg"></image><view>上传附件</view>
  1130. </view>
  1131. </lsj-upload>
  1132. </view>
  1133. <view class="mt8" v-if="ite.fjlist&&ite.fjlist.length">
  1134. <view class="fjlists" v-for="(fite,fidx) in ite.fjlist">
  1135. <view class="flext" @click="getDown(fite.url)">
  1136. <view class="imgl"><image :src="filico" ></image></view>
  1137. <view class="tit">{{fite.name}}</view>
  1138. </view>
  1139. <!-- 删除 -->
  1140. <view class="delimg flex0" @click.stop="getDelsbFj(idx,fidx)">
  1141. <image :src="fdelimg"></image>
  1142. </view>
  1143. </view>
  1144. </view>
  1145. </view>
  1146. </view>
  1147. </block>
  1148. </view>
  1149. </uni-forms>
  1150. <!-- btnd -->
  1151. <view class="addbtns" v-if="ftype">
  1152. <view class="addlbtn" @click="getZanFn">
  1153. <image :src="zancio" class="addlbtna"></image>
  1154. <view class="addlbtnb">暂存</view>
  1155. </view>
  1156. <view class="addrbtn bga" @click="getPreFn" v-if="stepval>1">上一步</view>
  1157. <view class="addrbtn bgb" @click="getNextFn" v-if="stepval<4">下一步</view>
  1158. <view class="addrbtn bgb" @click="getSubmit" v-if="stepval==4">提交</view>
  1159. </view>
  1160. <cover-view class="addbtns" v-else>
  1161. <cover-view class="addlbtn" @click="getZanFn">
  1162. <cover-image :src="zancio" class="addlbtna" @click.stop="getZanFn"></cover-image>
  1163. <cover-view class="addlbtnb" @click.stop="getZanFn">暂存</cover-view>
  1164. </cover-view>
  1165. <cover-view class="addrbtn bga" @click="getPreFn" v-if="stepval>1">上一步</cover-view>
  1166. <cover-view class="addrbtn bgb" @click="getNextFn" v-if="stepval<4">下一步</cover-view>
  1167. <cover-view class="addrbtn bgb" @click="getSubmit" v-if="stepval==4">提交</cover-view>
  1168. </cover-view>
  1169. <block v-if="lookflag">
  1170. <view class="bgbox" @click="lookflag=false" ></view>
  1171. <image :src="lookico" class="looimg" @click="getPreview(lookico)"></image>
  1172. </block>
  1173. <!-- 放弃编辑 -->
  1174. <!-- #ifdef MP-WEIXIN -->
  1175. <view class="edit editcir" v-if="ftype" @click="getGiveupFn">
  1176. <image :src="feditimg"></image>
  1177. 放弃编辑
  1178. </view>
  1179. <cover-view class="edit editcir" v-else @click="getGiveupFn">
  1180. <cover-image :src="feditimg" @click.stop="getGiveupFn" class="img"></cover-image>
  1181. <cover-view @click.stop="getGiveupFn" class="txt">放弃编辑</cover-view>
  1182. </cover-view>
  1183. <!-- #endif -->
  1184. <!--附件 remark==1 后台生成的pdf,自己删除 -->
  1185. <pop-up :type='ftype' :xwimgList="xwimgList" :content="content" @getClose='getClose'></pop-up>
  1186. </view>
  1187. </template>
  1188. <script>
  1189. import config from '@/config'
  1190. const baseUrl = config.baseUrl
  1191. const baseUrlimg=config.baseUrlimg
  1192. const baseName = config.baseName
  1193. import self from '@/utils/location.js';
  1194. import popUp from "@/work/components/popup/popup.vue"
  1195. import stepBar from "@/components/toptab/stepbar.vue"
  1196. import { getToken } from '@/utils/auth'
  1197. import {getApplicationNum,getApplicationZc,getApplicationAdd,getApplicationDet,getApplicationEdit,getExportMb,getDocumentList} from "@/api/mine/work.js"
  1198. import {getQyListNoPage,getOcrIdCard,getIdCardDet} from "@/api/mine/card.js"
  1199. import {uploadmore,selectValueKey,showConfirm} from '@/utils/common.js'
  1200. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  1201. import {getDictionaryFn} from "@/api/mine/register.js"
  1202. // 340622185605234521
  1203. export default{
  1204. components:{stepBar,popUp},
  1205. data(){
  1206. return{
  1207. //附件
  1208. option: {
  1209. // 上传服务器地址,需要替换为你的接口地址
  1210. url: baseUrl+'/common/uploadNew', // 该地址非真实路径,需替换为你项目自己的接口地址
  1211. // 上传附件的key
  1212. name: 'file',
  1213. // 根据你接口需求自定义请求头,默认不要写content-type,让浏览器自适配
  1214. header: {
  1215. // 示例参数可删除
  1216. 'Authorization': 'Bearer ' + getToken(),
  1217. },
  1218. // 根据你接口需求自定义body参数
  1219. formData: {
  1220. loanApplicationNumber:'',
  1221. }
  1222. },
  1223. gdformats: 'png,jpg,jpeg',
  1224. // 选择文件后是否立即自动上传,true=选择后立即上传
  1225. instantly: true,
  1226. // 必传宽高且宽高应与slot宽高保持一致
  1227. width: '',
  1228. height: '100rpx',
  1229. pwidth:'200rpx',
  1230. pheight:'126rpx',
  1231. // 限制允许上传的格式,空串=不限制,默认为空
  1232. formats: 'doc,docx,xls,xlsx,ppt,txt,pdf,zip,rar,word,png,jpg,jpeg',
  1233. // 文件上传大小限制
  1234. size: 100,
  1235. // 文件数量限制 默认10
  1236. count: 5,
  1237. // 文件回显列表
  1238. files: new Map(),
  1239. // 微信小程序Map对象for循环不显示,所以转成普通数组,不要问为什么,我也不知道
  1240. wxFiles: [],
  1241. // 是否打印日志
  1242. debug: false,
  1243. filelist:[],
  1244. gdfilelist:[],//股东附件列表
  1245. backimg:require("@/work/static/images/back.png"),
  1246. feditimg:require("@/work/static/images/fedit.png"),
  1247. hrimg:require('@/work/static/images/hrimg.png'),
  1248. ywicon:require('@/work/static/images/busin/ywicon.png'),
  1249. delimg:require('@/work/static/images/del.png'),
  1250. lookico:require('@/work/static/images/busin/lookico.png'),
  1251. phoicon:require('@/work/static/images/busin/phoicon.png'),
  1252. zico:require('@/work/static/images/busin/zico.png'),
  1253. cardz:require('@/work/static/images/busin/cardz.png'),
  1254. cardf:require('@/work/static/images/busin/cardf.png'),
  1255. addgd:require('@/work/static/images/busin/addgd.png'),
  1256. jhico:require('@/work/static/images/busin/jhico.png'),
  1257. hkico:require('@/work/static/images/busin/hkico.png'),
  1258. zancio:require('@/work/static/images/zancio.png'),
  1259. downimg:require('@/work/static/images/down.png'),
  1260. upimg:require('@/work/static/images/fup.png'),
  1261. filico:require('@/work/static/images/filico.png'),
  1262. fdelimg:require('@/work/static/images/del.png'),
  1263. steps:[{tit:'申请额度',status:0},{tit:'企业信息',status:1},{tit:'法人信息',status:2},{tit:'反担保人信息',status:3},{tit:'添加附件',status:4},],
  1264. stepval:1,
  1265. datainfo:{
  1266. // qymcid:1,
  1267. // hylx:'',
  1268. // hylxid:'',
  1269. // iszcy:'0',
  1270. // "loanApplicationId": 1,//贷款申请id
  1271. "loanApplicationNumber": "",//贷款申请编号
  1272. 'applicationType':'',//申请类型 1:企业 2:个人
  1273. "applicationAmount": '',//申请额度(万元)
  1274. "applicationBank": "",//申请银行
  1275. "usagePeriod": "",//使用期限(月)
  1276. "purposeFunds": "",//资金用途
  1277. "repaymentSource": "",//还款来源
  1278. "enterpriseName": "",//企业名称
  1279. "enterpriseId":"",//企业信息id
  1280. "categoryType": "",//行业类型
  1281. "isMake": "Y",//是否是制造业
  1282. "isNew": "Y",//是否是精特新
  1283. "isSmall": "Y",//是否是小微企业
  1284. "isDuty": "",//是否是免税企业
  1285. "companyIntroduction": "",//公司简介
  1286. "customerType": "",//用户类型
  1287. "corporationFront": "",//法人身份证正面
  1288. "corporationBack": "",//法人身份证反面
  1289. "corporationName": "",// 法人姓名
  1290. "corporationIdCard": "",//法人身份证号
  1291. "corporationPhone": "",// 法人手机号
  1292. "familyPopulation": "",//家庭人口数
  1293. "corporationJob": "",//法人职业
  1294. "isLoan": "",//有无贷款
  1295. "receivablePay": "",//应收应付款
  1296. "businessSituation": "",//经营情况
  1297. "businessEfficiency": "",//经营效益
  1298. "corporationMaritalStatus": "",//法人婚姻状态
  1299. "spouseFront": "",//配偶身份证正面
  1300. "spouseBack": "",//配偶身份证反面
  1301. "spouseName": "",//配偶姓名
  1302. "spouseIdCard": "",//配偶身份证号
  1303. "spousePhone": "",//配偶手机号
  1304. "guaranteeType": "",//担保类型
  1305. "guaranteeFront": "",//反担保人身份证正面
  1306. "guaranteeBack": "",//反担保人身份证反面
  1307. "guaranteeName": "",//反担保人姓名
  1308. "guaranteeIdCard": "",//反担保人身份证号
  1309. "guaranteePhone": "",//反担保人手机号
  1310. // "guaranteeMaritalStatus": "",//反担保人婚姻状态
  1311. // "guaranteeSpouseFront": "",//反担保人配偶身份证正面
  1312. // "guaranteeSpouseBack": "",//反担保人配偶身份证反面
  1313. // "guaranteeSpouseName": "",//反担保人配偶姓名
  1314. // "guaranteeSpouseIdCard": "",//反担保人配偶身份证号
  1315. // "guaranteeSpousePhone": "",//反担保人配偶手机号
  1316. // "userId": '',//申请人用户ID
  1317. // "idCard": "",//申请人身份证号码
  1318. // "applicationTime": "",//申请时间
  1319. // "fileTime": "",//归档时间
  1320. // "loanSchedule": "",//贷款申请进度(业务进度表查询进度列表):1:申报提交2:业务审核/分配 3:担保初审 4:尽职调查 5:初审风险合规 6:评审会 7:合同签约 8:放款合规风险审核 9:放款通知 10:归档
  1321. // "loanScheduleName": '',//贷款申请进度名称(中文字)
  1322. // "auditSchedule": "",//审核进度1:担保初审 2:A角色审核 3:B角色审核 4:风险审核 5:尽职调查 6:上会评审
  1323. // "auditType": "",//审核状态 1:待审核 2:已通过 3:未通过
  1324. // "loanApplicationType": "",//贷款申请状态 1:暂存 2:正常 3:回收站 4:归档
  1325. // "aUserId": "",//A角色用户ID
  1326. // "aUserName": "",//A角色用户名称
  1327. // "bUserId": '',//B角色用户ID
  1328. // "bUserName": '',//B角色用户名称
  1329. "shareholderFjList": [],//全体股东信息附件
  1330. "loanApplicationFjList": [],//相关附件
  1331. "basicFj":{},//基础附件
  1332. "declareFj":{},//申报附件
  1333. "fileFj":{},//文件出具
  1334. "otherFj":{},//其他附件
  1335. },
  1336. qymc:'',
  1337. msqy:'',
  1338. qyidx:0,
  1339. ywidx:0,
  1340. categoryId:'',//行业的id
  1341. rules:{
  1342. bonusType: {rules: [{required: true,errorMessage: '请选择加分类型'} ]},
  1343. // score: {rules: [{required: true,errorMessage: '请输入分值'} ]},
  1344. // bonusReason: {rules: [{required: true,errorMessage: '请输入加分事由'} ]},
  1345. },
  1346. gdlist:[{cardz:'',cardf:'',zxurl:[],zhizhao:[]}],
  1347. qylist:[],//企业列表
  1348. sfList:[{text: '是',value: 'Y'},{text: '否',value: 'N'}],
  1349. ywList:[{label: '有',value: 'Y'},{label: '无',value: 'N'}],
  1350. actcolor:'#00A9F0',
  1351. sqtype:'qy',//个人gr ,企业 qy,
  1352. hyztlist:[],//婚姻状态
  1353. yhlxlist:[],//用户类型
  1354. dblxlist:[],//担保类型
  1355. lookflag:false,
  1356. listTop:70,
  1357. userId:this.$store.state.user.userId,
  1358. categoryId:"",//行业类型id;
  1359. jcfjlist:[],//基础附件
  1360. sbfjlist:[],//申报附件
  1361. wjfjlist:[],//文件出具
  1362. jcfjobj:{},//基础附件
  1363. shareholderFjList:[],//全体股东信息附件
  1364. loanApplicationFjList:[],//相关附件
  1365. ftype:'',//弹窗type
  1366. baseUrl:'',
  1367. dblx:'',
  1368. yhlx:'',
  1369. frhyzk:'',//婚姻状况
  1370. dblxidx:0,
  1371. yhlxidx:0,
  1372. sfidx:0,
  1373. frhyzkidx:0,
  1374. btfiles:[
  1375. {tit:'公司章程',type:'gszc'},
  1376. {tit:'开户许可证',type:'khxkz'},{tit:'申请企业征信报告',type:'sqqyzxbg'},{tit:'关联企业征信报告',type:'glqyzxbg'},{tit:'企业法人征信报告',type:'qyfrzxbg'},{tit:'实际控股人征信报告',type:'sjkgrzxbg'},
  1377. {tit:'户口簿首页',type:'frhkbsy'},
  1378. ],
  1379. sqbtfiles:[
  1380. {tit:'委托担保申请书',type:'wtdbsqs'},
  1381. {tit:'股东会议纪要',type:'gdhyjy'},{tit:'上一年度财务报表',type:'syndcwbb'},{tit:'主要账户银行流水',type:'zyzhyhls'},{tit:'购销合同',type:'gxht'},
  1382. {tit:'当前从事项目情况证明',type:'dqcsxmqkzm'},{tit:'企业基本注册信息查询单',type:'qyjbzcxxcxd'},{tit:'水电费发票(一年)',type:'sdffpyn'},{tit:'人员工资表',type:'rggzb'},{tit:'纳税申报表',type:'nssbb'},
  1383. ],
  1384. content:'',//小微企业富文本
  1385. xwimgList:[],//小微企业图片
  1386. ptype:'add',
  1387. id:'',//申请id
  1388. declareFj:{},//
  1389. // {tit:'法人结婚证',type:'frjhz'},{tit:'法人离婚证',type:'frlhz'},
  1390. // {tit:'法人配偶身份证人面像',type:'frsfzpormx'},{tit:'法人配偶身份证国徽面',type:'frsfzpoghm'},
  1391. //担保类型为反担保人担保{tit:'反担保人身份证人面像',type:'fdbrsfzrmx'},{tit:'反担保人身份证国徽面',type:'fdbrsfzghm'},
  1392. //担保类型为抵押{tit:'企业固定资产证明',type:'qygdzczm'},
  1393. ischange:false,
  1394. isdetail:false,
  1395. }
  1396. },
  1397. onUnload(){
  1398. uni.$off('refreshtalb')
  1399. },
  1400. watch:{
  1401. datainfo:{
  1402. handler(newVal, oldVal) {
  1403. if(this.isdetail){
  1404. this.isdetail=false
  1405. }else{
  1406. this.ischange=true
  1407. }
  1408. },
  1409. deep: true
  1410. }
  1411. },
  1412. onLoad(e) {
  1413. // this.getIdCardDet()
  1414. // return
  1415. this.baseUrl=baseUrl
  1416. var data=JSON.parse(decodeURIComponent(e.data))
  1417. if(data.type){
  1418. this.ptype=data.type;
  1419. this.id=data.id;
  1420. if(Number(data.val)<4){
  1421. this.stepval=Number(data.val)+1
  1422. }
  1423. this.getDetail()
  1424. }else{
  1425. this.datainfo.applicationAmount=data.applicationAmount;
  1426. this.datainfo.applicationBank=data.applicationBank;
  1427. this.datainfo.usagePeriod=data.usagePeriod;
  1428. this.datainfo.purposeFunds=data.purposeFunds;
  1429. this.datainfo.repaymentSource=data.repaymentSource;
  1430. this.datainfo.applicationType=data.applicationType;
  1431. if(data.applicationType==1){
  1432. var obj={tit:'当期财务报表',type:'dqcwbb'};
  1433. this.sqbtfiles.push(obj)
  1434. }
  1435. this.getNumber();
  1436. this.getSbjListFn()
  1437. }
  1438. uni.$on('refreshtalb', (e) => {
  1439. this.datainfo.categoryType=e.categoryName
  1440. this.categoryId=e.categoryId
  1441. })
  1442. this.init()
  1443. this.getQylist()
  1444. this.getDocumentList()
  1445. },
  1446. mounted() {
  1447. this.getHeightFn()
  1448. // var obj={
  1449. // loanApplicationNumber:this.datainfo.loanApplicationNumber
  1450. // }
  1451. // this.option.formData=JSON.parse(JSON.stringify(obj))
  1452. // this.$refs['lsjUpload'].setData('formData.loanApplicationNumber','RZDB202404251759453241637');
  1453. },
  1454. methods:{
  1455. checkPermi, checkRole,
  1456. getIdCardDet(){
  1457. getIdCardDet(this.userId).then(res=>{
  1458. if(res.code==200){
  1459. }
  1460. })
  1461. },
  1462. init(){
  1463. // 用户类型
  1464. getDictionaryFn('customer_type').then(res=>{
  1465. if(res.code==200){
  1466. this.yhlxlist = res.data.map(v => {
  1467. return {
  1468. label: v.dictLabel,
  1469. value: v.dictValue
  1470. }
  1471. })
  1472. }
  1473. })
  1474. // 婚姻状况
  1475. getDictionaryFn('marital_status').then(res=>{
  1476. if(res.code==200){
  1477. this.hyztlist = res.data.map(v => {
  1478. return {
  1479. label: v.dictLabel,
  1480. value: v.dictValue
  1481. }
  1482. })
  1483. }
  1484. })
  1485. // 担保类型
  1486. getDictionaryFn('guarantee_type').then(res=>{
  1487. if(res.code==200){
  1488. this.dblxlist = res.data.map(v => {
  1489. return {
  1490. label: v.dictLabel,
  1491. value: v.dictValue
  1492. }
  1493. })
  1494. }
  1495. })
  1496. // 基础附件
  1497. getDictionaryFn('application_fj_jc').then(res=>{
  1498. if(res.code==200){
  1499. var obj={}
  1500. var data=res.data;
  1501. data.forEach(v=>{
  1502. obj[v.dictValue]=v.dictLabel
  1503. })
  1504. this.jcfjobj=obj
  1505. }
  1506. })
  1507. },
  1508. getSbjListFn(){
  1509. // 申报附件
  1510. getDictionaryFn('application_fj_sb').then(res=>{
  1511. if(res.code==200){
  1512. var declareFj=this.declareFj;
  1513. this.sbfjlist = res.data.map(v => {
  1514. return {
  1515. label: v.dictLabel,
  1516. val: v.dictValue,
  1517. fjlist:declareFj[v.dictValue]||[]
  1518. }
  1519. })
  1520. let signArr = this.filelist;
  1521. signArr = signArr.filter(s => {
  1522. // if (res.data.find(l => l.dictValue == s.type && l.title == s.title)) return false
  1523. if (res.data.find(l => l.dictValue == s.type)) return false
  1524. else return true;
  1525. })
  1526. this.filelist = signArr;
  1527. }
  1528. })
  1529. },
  1530. getQylist(){
  1531. // 需要userid
  1532. var params={
  1533. userId:this.userId
  1534. }
  1535. getQyListNoPage(params).then(res=>{
  1536. if(res.code==200){
  1537. this.qylist = res.rows.map(v => {
  1538. return {
  1539. label: v.enterpriseName,
  1540. value: v.enterpriseId
  1541. }
  1542. })
  1543. }
  1544. })
  1545. },
  1546. getNumber(){
  1547. getApplicationNum().then(res=>{
  1548. if(res.code==200){
  1549. this.datainfo.loanApplicationNumber=res.data;
  1550. var obj={
  1551. loanApplicationNumber:this.datainfo.loanApplicationNumber
  1552. }
  1553. this.option.formData=JSON.parse(JSON.stringify(obj))
  1554. }
  1555. })
  1556. },
  1557. getHeightFn(){
  1558. let query = uni.createSelectorQuery().in(this);
  1559. var s=uni.getSystemInfoSync().statusBarHeight;
  1560. //需要给黄色区域设置一个id标识,在这里是demo
  1561. query.select('.navtop').boundingClientRect(data => {
  1562. // #ifdef H5
  1563. this.listTop =s ? Number(data.height)*2:(Number(data.height)-20)*2//赋值,待会要用
  1564. // #endif
  1565. // #ifndef H5
  1566. this.listTop = Number(data.height)*2//赋值,待会要用
  1567. // #endif
  1568. }).exec();
  1569. },
  1570. getDbclFn(){
  1571. this.$tab.navigateTo("/work/pages/prove/dbcltips")
  1572. },
  1573. getBack(){
  1574. // 暂存
  1575. var that=this;
  1576. if(this.ischange){
  1577. showConfirm('已做修改,是否暂存').then(res => {
  1578. if (res.confirm) {
  1579. this.getZanFn('back')
  1580. }else{
  1581. uni.navigateBack({
  1582. delta:1
  1583. })
  1584. }
  1585. })
  1586. }else{
  1587. uni.navigateBack({
  1588. delta:1
  1589. })
  1590. }
  1591. },
  1592. getGiveupFn(){
  1593. var that=this;
  1594. uni.showModal({
  1595. title: '放弃编辑',
  1596. content: "是否确认放弃编辑",
  1597. cancelText: '取消',
  1598. confirmText: '确认',
  1599. success: function(res) {
  1600. if (res.confirm) {
  1601. that.$tab.reLaunch('/pages/index/index')
  1602. } else if (res.cancel) {
  1603. }
  1604. }
  1605. });
  1606. },
  1607. getPreFn(){
  1608. uni.pageScrollTo({
  1609. scrollTop: 0,
  1610. duration: 0
  1611. })
  1612. this.stepval=Number(this.stepval)-1
  1613. },
  1614. getNextFn(){
  1615. // 暂不判断必填写完否
  1616. uni.pageScrollTo({
  1617. scrollTop: 0,
  1618. duration: 0
  1619. })
  1620. this.stepval=Number(this.stepval)+1
  1621. },
  1622. getPreview(url) {
  1623. var newArr=[];
  1624. newArr.push(url)
  1625. uni.previewImage({
  1626. urls: newArr,
  1627. current:0,
  1628. success: function(data) {
  1629. },
  1630. fail: function(err) {
  1631. }
  1632. });
  1633. },
  1634. showImg(){
  1635. this.ftype='fwb'
  1636. // this.lookflag=true
  1637. },
  1638. getClose(){
  1639. this.ftype=''
  1640. },
  1641. getTalbFn(){
  1642. var obj={
  1643. id:this.categoryId,
  1644. name:this.datainfo.categoryType,
  1645. }
  1646. this.$tab.navigateTo('/work/pages/business/talbclass?data='+encodeURIComponent(JSON.stringify(obj)))
  1647. },
  1648. getAddGdFn(){
  1649. var obj = {cardz:'',cardf:'',zxurl:[],zhizhao:[]}
  1650. this.gdlist.push(obj);
  1651. },
  1652. getdelGdFn(idx){
  1653. var that=this;
  1654. uni.showModal({
  1655. title: '确认删除',
  1656. content: "是否确认删除",
  1657. cancelText: '取消',
  1658. confirmText: '确认',
  1659. success: function(res) {
  1660. if (res.confirm) {
  1661. that.gdlist.splice(idx,1);
  1662. } else if (res.cancel) {
  1663. }
  1664. }
  1665. });
  1666. },
  1667. statusFormat(ite,list,type) {
  1668. var aite=selectValueKey(list, ite);
  1669. if(type=='qy'){
  1670. this.qyidx=aite.key
  1671. }else if(type=='dblx'){
  1672. this.dblxidx=aite.key
  1673. }else if(type=='yhlx'){
  1674. this.yhlxidx=aite.key
  1675. }else if(type=='ywdk'){
  1676. this.ywidx=aite.key
  1677. }else if(type=='msqy'){
  1678. this.sfidx=aite.key
  1679. }else if(type=='frhyzk'){
  1680. this.frhyzkidx=aite.key
  1681. this.frhyzk=aite.actions;
  1682. }
  1683. return aite.actions;
  1684. },
  1685. bindDateChangea(e){
  1686. // 企业信息
  1687. var val=e.detail.value;
  1688. this.datainfo.enterpriseName=this.qylist[val].label;
  1689. this.datainfo.enterpriseId=this.qylist[val].value;
  1690. },
  1691. bindDateChangeb(e){
  1692. // 用户类型
  1693. var val=e.detail.value;
  1694. this.yhlx=this.yhlxlist[val].label;
  1695. this.datainfo.customerType=this.yhlxlist[val].value;
  1696. },
  1697. bindDateChangec(e){
  1698. // 有无贷款
  1699. var val=e.detail.value;
  1700. this.datainfo.isLoan=this.ywList[val].value;
  1701. },
  1702. getDelfzpo(type){
  1703. if(type=='front'){
  1704. this.datainfo.spouseFront="";
  1705. this.datainfo.spouseName="";
  1706. this.datainfo.spouseIdCard="";
  1707. }else{
  1708. this.datainfo.spouseBack="";
  1709. }
  1710. },
  1711. getDelfdbfzpo(type){
  1712. if(type=='front'){
  1713. this.datainfo.guaranteeFront="";
  1714. this.datainfo.guaranteeName="";
  1715. this.datainfo.guaranteeIdCard="";
  1716. }else{
  1717. this.datainfo.guaranteeBack="";
  1718. }
  1719. },
  1720. bindDateChanged(e){
  1721. // 婚姻状态
  1722. var val=e.detail.value;
  1723. var value=this.hyztlist[val].value;
  1724. var list=this.btfiles;
  1725. if(this.datainfo.corporationMaritalStatus!=value){
  1726. this.frhyzk=this.hyztlist[val].label;
  1727. this.datainfo.corporationMaritalStatus=this.hyztlist[val].value;
  1728. if(value==3){//离异
  1729. // 删除结婚证
  1730. var obj={tit:'法人离婚证',type:'frlhz'}
  1731. const index = list.findIndex(text => text.type === "frjhz");
  1732. if(index!=-1){
  1733. this.btfiles.splice(index,1,obj)
  1734. }else{
  1735. this.btfiles.push(obj)
  1736. }
  1737. }else if(value==1){//已婚
  1738. // 删除离婚证
  1739. var obj={tit:'法人结婚证',type:'frjhz'}
  1740. const index = list.findIndex(text => text.type === "frlhz");
  1741. if(index!=-1){
  1742. this.btfiles.splice(index,1,obj)
  1743. }else{
  1744. this.btfiles.push(obj)
  1745. }
  1746. }else{
  1747. // 未婚
  1748. const index = this.btfiles.findIndex(text => text.type === "frlhz");
  1749. if(index!=-1){
  1750. this.btfiles.splice(index,1)
  1751. }
  1752. const indexa = this.btfiles.findIndex(text => text.type === "frjhz");
  1753. if(indexa!=-1){
  1754. this.btfiles.splice(indexa,1)
  1755. }
  1756. }
  1757. }
  1758. },
  1759. bindDateChangee(e){
  1760. // 担保类型
  1761. var val=e.detail.value;
  1762. this.dblx=this.dblxlist[val].label;
  1763. this.datainfo.guaranteeType=this.dblxlist[val].value;
  1764. var value=this.dblxlist[val].value;
  1765. var list=this.btfiles;
  1766. var sqlist=this.sqlist;
  1767. },
  1768. bindDateChangef(e){
  1769. var val=e.detail.value;
  1770. // this.dblx=this.sfList[val].text;
  1771. this.datainfo.isDuty=this.sfList[val].value;
  1772. },
  1773. getZanFn(type){
  1774. var that=this;
  1775. var params=this.datainfo;
  1776. var gdlist=this.gdlist;
  1777. var shFjList=[]
  1778. Object.keys(gdlist).some((key) => {
  1779. var fjurl={
  1780. shareholderFrontUrl:gdlist[key].cardz,
  1781. shareholderBackUrl:gdlist[key].cardf,
  1782. shareholderZxUrl:gdlist[key].zxurl.join(','),
  1783. shareholderBusinessUrl:gdlist[key].zhizhao.join(','),
  1784. }
  1785. shFjList.push(fjurl)
  1786. })
  1787. params.shareholderFjList=JSON.parse(JSON.stringify(shFjList))
  1788. var flist=this.filelist;
  1789. var sbfjlist=this.sbfjlist;
  1790. sbfjlist.forEach(ite=>{
  1791. if(ite.fjlist&&ite.fjlist.length){
  1792. ite.fjlist.forEach(itet=>{
  1793. flist.push(itet)
  1794. })
  1795. }
  1796. })
  1797. params.loanApplicationFjList=JSON.parse(JSON.stringify(flist))
  1798. getApplicationZc(params).then(res=>{
  1799. if(res.code==200){
  1800. this.ischange=false;
  1801. this.$toast('暂存成功')
  1802. // 刷新列表
  1803. setTimeout(function(){
  1804. if(that.ptype=='add'){
  1805. that.$tab.reLaunch('/pages/index/index')
  1806. }else{
  1807. uni.$emit('refreshywlist')
  1808. if(type&&type=='back'){
  1809. uni.navigateBack({
  1810. delta:1
  1811. })
  1812. }
  1813. }
  1814. },1200)
  1815. }
  1816. })
  1817. },
  1818. getDetail(){
  1819. getApplicationDet(this.id).then(res=>{
  1820. if(res.code==200){
  1821. this.datainfo=res.data;
  1822. this.isdetail=true;
  1823. if(res.data&&res.data.applicationType==1){
  1824. var obj={tit:'当期财务报表',type:'dqcwbb'};
  1825. this.sqbtfiles.push(obj)
  1826. }
  1827. var data=res.data;
  1828. var obj={
  1829. loanApplicationNumber:res.data.loanApplicationNumber
  1830. }
  1831. this.option.formData=JSON.parse(JSON.stringify(obj))
  1832. if(data.loanApplicationFjList){
  1833. // 筛除自动生成的附件
  1834. var filterlist=JSON.parse(JSON.stringify(data.loanApplicationFjList))
  1835. this.filelist=filterlist.filter((ite) => {
  1836. return ite.remark!=1;
  1837. })
  1838. // this.filelist=JSON.parse(JSON.stringify(data.loanApplicationFjList))
  1839. }
  1840. if(data.declareFj){
  1841. this.declareFj=data.declareFj;
  1842. }
  1843. if(data.shareholderFjList){
  1844. var shFjList=[]
  1845. var gdlist=data.shareholderFjList;
  1846. Object.keys(gdlist).some((key) => {
  1847. var fjurl={
  1848. cardz:gdlist[key].shareholderFrontUrl,
  1849. cardf:gdlist[key].shareholderBackUrl,
  1850. zxurl:[],
  1851. zhizhao:[]
  1852. }
  1853. if(gdlist[key].shareholderZxUrl){
  1854. fjurl.zxurl=gdlist[key].shareholderZxUrl.split(',')
  1855. }
  1856. if(gdlist[key].shareholderBusinessUrl){
  1857. fjurl.zhizhao=gdlist[key].shareholderBusinessUrl.split(',')
  1858. }
  1859. shFjList.push(fjurl)
  1860. })
  1861. this.gdlist=JSON.parse(JSON.stringify(shFjList))
  1862. }
  1863. this.getSbjListFn()
  1864. }
  1865. })
  1866. },
  1867. getSubmit(){
  1868. var that=this;
  1869. // 判断附件是否完整
  1870. var params=this.datainfo;
  1871. if(!params.enterpriseName){
  1872. this.$toast("请选择企业名称")
  1873. return
  1874. }
  1875. if(!params.categoryType){
  1876. this.$toast("请选择行业类型")
  1877. return
  1878. }
  1879. if(!params.customerType){
  1880. this.$toast("请选择用户类型")
  1881. return
  1882. }
  1883. if(!params.corporationFront){
  1884. this.$toast("请上传法人身份证人面像")
  1885. return
  1886. }
  1887. if(!params.corporationBack){
  1888. this.$toast("请上传法人身份证国徽面")
  1889. return
  1890. }
  1891. // if(!params.corporationJob){
  1892. // this.$toast("请输入法人职业")
  1893. // return
  1894. // }
  1895. if(!params.isLoan){
  1896. this.$toast("请选择有无贷款")
  1897. return
  1898. }
  1899. if(!this.frhyzk){
  1900. this.$toast("请选择婚姻状态")
  1901. return
  1902. }
  1903. if(params.corporationMaritalStatus==1){
  1904. if(!params.spouseFront){
  1905. this.$toast("请上传配偶身份证人像面")
  1906. return
  1907. }
  1908. if(!params.spouseBack){
  1909. this.$toast("请上传配偶身份证国徽面")
  1910. return
  1911. }
  1912. }
  1913. if(!params.guaranteeType){
  1914. this.$toast("请选择担保类型")
  1915. return
  1916. }
  1917. if(!params.corporationPhone){
  1918. // 验证手机号
  1919. this.$toast("请输入法人手机号")
  1920. return
  1921. }
  1922. let regphone = /^1[3|4|5|6|7|8|9][0-9]\d{8}$/
  1923. if (params.corporationPhone && !regphone.test(params.corporationPhone)) {
  1924. that.$toast("请输入正确的法人手机号")
  1925. return
  1926. }
  1927. var gdlist=this.gdlist;
  1928. var shFjList=[]
  1929. var a=0;
  1930. Object.keys(gdlist).some((key) => {
  1931. var str="请上传股东"+(Number(key)+1)
  1932. if(gdlist[key].zhizhao<1 && !gdlist[key].cardz){
  1933. a=1;
  1934. that.$toast(str+'营业执照或者身份证')
  1935. return true;
  1936. }else{
  1937. if(gdlist[key].cardz){
  1938. if(!gdlist[key].cardf){
  1939. a=1;
  1940. that.$toast(str+'身份证国徽面')
  1941. return true;
  1942. }
  1943. }
  1944. }
  1945. // if(!gdlist[key].cardz){
  1946. // a=1;
  1947. // that.$toast(str+"身份证人像面")
  1948. // return true;
  1949. // }else if(!gdlist[key].cardf){
  1950. // a=1;
  1951. // that.$toast(str+'身份证国徽面')
  1952. // return true;
  1953. // }
  1954. if(gdlist[key].zxurl<1){
  1955. a=1;
  1956. that.$toast(str+'征信报告')
  1957. return true;
  1958. }
  1959. var fjurl={
  1960. shareholderFrontUrl:gdlist[key].cardz,
  1961. shareholderBackUrl:gdlist[key].cardf,
  1962. shareholderZxUrl:gdlist[key].zxurl.join(','),
  1963. shareholderBusinessUrl:gdlist[key].zhizhao.join(','),
  1964. }
  1965. shFjList.push(fjurl)
  1966. })
  1967. params.shareholderFjList=JSON.parse(JSON.stringify(shFjList))
  1968. if(a==1){
  1969. return
  1970. }
  1971. var flist=this.filelist;
  1972. var btfiles=JSON.parse(JSON.stringify(this.btfiles));
  1973. var sqbtfiles=JSON.parse(JSON.stringify(this.sqbtfiles));
  1974. if(params.guaranteeType==1){//抵押担保
  1975. var obj={tit:'企业固定资产证明',type:'qygdzczm'}
  1976. sqbtfiles.push(obj)
  1977. }
  1978. if(params.guaranteeType==2){//反担保人担保
  1979. // 选择担保人担保
  1980. if(!params.guaranteePhone){
  1981. // 验证手机号
  1982. this.$toast("请输入反担保人手机号")
  1983. return
  1984. }
  1985. if (params.guaranteePhone && !regphone.test(params.guaranteePhone)) {
  1986. that.$toast("请输入正确的反担保人手机号")
  1987. return
  1988. }
  1989. if(!params.guaranteeFront){
  1990. this.$toast("请上传法人身份证人面像")
  1991. return
  1992. }
  1993. if(!params.guaranteeBack){
  1994. this.$toast("请上传法人身份证国徽面")
  1995. return
  1996. }
  1997. }
  1998. var b=0;
  1999. Object.keys(btfiles).some((key) => {
  2000. if (flist.find(l => l.type == btfiles[key].type)) {
  2001. return false
  2002. }else{
  2003. b=1;
  2004. that.$toast('请上传'+btfiles[key].tit)
  2005. return true;
  2006. }
  2007. })
  2008. if(b==1){
  2009. return
  2010. }
  2011. if(!params.isDuty){
  2012. this.$toast("请选择是否免税企业")
  2013. return
  2014. }
  2015. var sbfjlist=this.sbfjlist;
  2016. var sbArr=[]
  2017. var c=0;
  2018. Object.keys(sqbtfiles).some((key) => {
  2019. if (sbfjlist.find(l => (l.val == sqbtfiles[key].type) && l.fjlist.length>0)) {
  2020. return false
  2021. }else{
  2022. c=1;
  2023. that.$toast('请上传'+sqbtfiles[key].tit)
  2024. return true;
  2025. }
  2026. })
  2027. if(c==1){
  2028. return
  2029. }
  2030. sbfjlist.forEach(ite=>{
  2031. if(ite.fjlist&&ite.fjlist.length){
  2032. flist.push(ite.fjlist[0])
  2033. }
  2034. })
  2035. params.loanApplicationFjList=JSON.parse(JSON.stringify(flist))
  2036. if(this.ptype=='add'){
  2037. getApplicationAdd(params).then(res=>{
  2038. if(res.code==200){
  2039. that.$toast("新增成功")
  2040. setTimeout(function(){
  2041. that.$tab.redirectTo('/work/pages/success')
  2042. },1200)
  2043. }
  2044. })
  2045. }else{
  2046. getApplicationEdit(params).then(res=>{
  2047. if(res.code==200){
  2048. that.$toast("修改成功")
  2049. setTimeout(function(){
  2050. uni.$emit('refreshywlist')
  2051. uni.navigateBack({
  2052. delta:1
  2053. })
  2054. },1200)
  2055. }
  2056. })
  2057. }
  2058. //
  2059. // this.$tab.navigateTo('/work/pages/success')
  2060. },
  2061. getaddImage(e){
  2062. let that = this;
  2063. let file =[],count=9
  2064. // if(e=='zj'){
  2065. // file = that.zjfile;
  2066. // count=9
  2067. // }else{
  2068. // file = that.mjfile;
  2069. // count=9
  2070. // }
  2071. uni.chooseImage({
  2072. count: 1,
  2073. success:function(res){
  2074. let img= res.tempFilePaths;
  2075. if(img.length + file.length > count){
  2076. uni.showToast({
  2077. title: '最多上传'+count+'张图片',
  2078. icon: 'none',
  2079. duration: 2000
  2080. })
  2081. }else{
  2082. let imglen = res.tempFilePaths.length;
  2083. var fuwufile = [];
  2084. uploadmore('/common/upload',img,0,0,0,imglen,fuwufile,function(rs){
  2085. if(e=='zj'){
  2086. that.zjfile = that.zjfile.concat(rs);
  2087. that.datainfo.identificationPhoto=that.zjfile.join(',')
  2088. }
  2089. })
  2090. }
  2091. }
  2092. });
  2093. },
  2094. // 人像面
  2095. ponuploadEnd(item,fileVal,bigType){
  2096. var newobj={}
  2097. var responseText=JSON.parse(item.responseText)
  2098. var url=responseText.fileName
  2099. var urlOnline=responseText.urlOnline
  2100. if(fileVal=='frsfzrmx'){
  2101. this.datainfo.corporationFront=url;
  2102. // 获取姓名 身份证号
  2103. this.getocrIdCard(urlOnline,fileVal)
  2104. }else if(fileVal=='frsfzghm'){
  2105. this.datainfo.corporationBack=url
  2106. }else if(fileVal=='frsfzpormx'){
  2107. this.datainfo.spouseFront=url
  2108. this.getocrIdCard(urlOnline,fileVal)
  2109. }else if(fileVal=='frsfzpoghm'){
  2110. this.datainfo.spouseBack=url
  2111. }else if(fileVal=='fdbrsfzrmx'){
  2112. this.getocrIdCard(urlOnline,fileVal)
  2113. this.datainfo.guaranteeFront=url
  2114. }else if(fileVal=='fdbrsfzghm'){
  2115. this.datainfo.guaranteeBack=url
  2116. }
  2117. },
  2118. getDocumentList(){
  2119. var params={
  2120. explainType:2
  2121. }
  2122. getDocumentList(params).then(res=>{
  2123. if(res.code==200){
  2124. var list=res.rows;
  2125. if(list&&list.length){
  2126. var content=list[0].explainContent;
  2127. this.content=this.formatRichText(content);
  2128. // 图片
  2129. if(list[0].explainImage){
  2130. this.xwimgList=list[0].explainImage.split(',')
  2131. }
  2132. }
  2133. }
  2134. })
  2135. },
  2136. //解析富文本方法
  2137. formatRichText(html) {
  2138. let newContent = html.replace(/<img[^>]*>/gi, function(match, capture) {
  2139. match = match.replace(/style="[^"]+"/gi, '').replace(/style='[^']+'/gi, '').replace(/style=""/gi, '');
  2140. match = match.replace(/width="[^"]+"/gi, '').replace(/width='[^']+'/gi, '');
  2141. match = match.replace(/height="[^"]+"/gi, '').replace(/height='[^']+'/gi, '');
  2142. return match;
  2143. });
  2144. newContent = newContent.replace(/style="[^"]+"/gi, function(match, capture) {
  2145. match = match.replace(/width:[^;]+;/gi, 'max-width:100%;').replace(/width:[^;]+;/gi, 'max-width:100%;');
  2146. return match;
  2147. });
  2148. newContent = newContent.replace(/<br[^>]*\/>/gi, '');
  2149. newContent = newContent.replace(/\<img src="/gi,
  2150. '<img style="max-width:100%;height:auto;display:block;margin:10rpx auto;" src="' +baseUrlimg);
  2151. return newContent;
  2152. },
  2153. getocrIdCard(url,type){
  2154. var that=this;
  2155. var burl=url;
  2156. var params={
  2157. image:url,
  2158. idCardSide:'front'
  2159. }
  2160. getOcrIdCard(params).then(res=>{
  2161. if(res.code==200){
  2162. var data=res.data;
  2163. if(type=='frsfzrmx'){
  2164. that.datainfo.corporationName=data.realName
  2165. that.datainfo.corporationIdCard=data.idCard
  2166. }else if(type=='frsfzpormx'){
  2167. that.datainfo.spouseName=data.realName
  2168. that.datainfo.spouseIdCard=data.idCard
  2169. }else if(type=='fdbrsfzrmx'){
  2170. that.datainfo.guaranteeName=data.realName
  2171. that.datainfo.guaranteeIdCard=data.idCard
  2172. }
  2173. }
  2174. })
  2175. },
  2176. onuploadEnd(item,fileVal,bigType) {
  2177. var newobj={}
  2178. var responseText=JSON.parse(item.responseText)
  2179. newobj.name=responseText.newFileName;
  2180. newobj.oldName=responseText.originalFilename;
  2181. newobj.url=responseText.fileName;
  2182. newobj.type=fileVal;
  2183. newobj.bigType=bigType;
  2184. this.filelist.push(newobj)
  2185. this.datainfo.loanApplicationFjList=JSON.parse(JSON.stringify(this.filelist))
  2186. },
  2187. // 股东附件上传
  2188. gdonuploadEnd(item,fileVal,bigType){
  2189. var idx=Number(fileVal);
  2190. var type=bigType;
  2191. var obj=this.gdlist[idx];
  2192. var responseText=JSON.parse(item.responseText);
  2193. if(type=='cardz'){
  2194. obj.cardz=responseText.fileName
  2195. }else if(type=='cardf'){
  2196. obj.cardf=responseText.fileName
  2197. }else if(type=='zx'){
  2198. obj.zxurl.push(responseText.fileName)
  2199. // obj.zxurl[0]=responseText.fileName
  2200. }else if(type=='zhz'){
  2201. obj.zhizhao.push(responseText.fileName)
  2202. // obj.zhizhao[0]=responseText.fileName
  2203. }
  2204. console.log(this.gdlist,3)
  2205. this.gdlist.splice(idx,1,obj)
  2206. // this.datainfo.shareholderFjList=JSON.parse(JSON.stringify(this.gdlist))
  2207. },
  2208. // 申请附件上传
  2209. fjonuploadEnd(item,fileVal,bigType,idx){
  2210. var newobj={};
  2211. var sbfjlist=this.sbfjlist[idx].fjlist;
  2212. var responseText=JSON.parse(item.responseText)
  2213. newobj.name=responseText.newFileName;
  2214. newobj.oldName=responseText.originalFilename;
  2215. newobj.url=responseText.fileName;
  2216. newobj.type=fileVal;
  2217. newobj.bigType=bigType;
  2218. this.sbfjlist[idx].fjlist.push(newobj)
  2219. },
  2220. getDelsbFj(idx,fidx){
  2221. var that=this;
  2222. var obj=this.sbfjlist[idx];
  2223. uni.showModal({
  2224. title: '确认删除',
  2225. content: "是否确认删除",
  2226. cancelText: '取消',
  2227. confirmText: '确认',
  2228. success: function(res) {
  2229. if (res.confirm) {
  2230. obj.fjlist.splice(fidx,1)
  2231. that.sbfjlist.splice(idx,1,obj)
  2232. } else if (res.cancel) {
  2233. }
  2234. }
  2235. });
  2236. },
  2237. getDelgdFj(idx,zxidx){
  2238. var obj=this.gdlist[idx];
  2239. var that=this;
  2240. uni.showModal({
  2241. title: '确认删除',
  2242. content: "是否确认删除",
  2243. cancelText: '取消',
  2244. confirmText: '确认',
  2245. success: function(res) {
  2246. if (res.confirm) {
  2247. obj.zxurl.splice(zxidx,1)
  2248. that.gdlist.splice(idx,1,obj)
  2249. } else if (res.cancel) {
  2250. }
  2251. }
  2252. });
  2253. },
  2254. getDelgdyy(idx,zxidx){
  2255. var obj=this.gdlist[idx];
  2256. var that=this;
  2257. uni.showModal({
  2258. title: '确认删除',
  2259. content: "是否确认删除",
  2260. cancelText: '取消',
  2261. confirmText: '确认',
  2262. success: function(res) {
  2263. if (res.confirm) {
  2264. obj.zhizhao.splice(zxidx,1)
  2265. that.gdlist.splice(idx,1,obj)
  2266. } else if (res.cancel) {
  2267. }
  2268. }
  2269. });
  2270. },
  2271. getDelFj(idx){
  2272. var that=this;
  2273. uni.showModal({
  2274. title: '确认删除',
  2275. content: "是否确认删除",
  2276. cancelText: '取消',
  2277. confirmText: '确认',
  2278. success: function(res) {
  2279. if (res.confirm) {
  2280. that.filelist.splice(idx,1)
  2281. that.datainfo.loanApplicationFjList=JSON.parse(JSON.stringify(that.filelist))
  2282. } else if (res.cancel) {
  2283. }
  2284. }
  2285. });
  2286. },
  2287. getDownloader(path,name){
  2288. // console.log(path,name)
  2289. // #ifdef APP-PLUS
  2290. self.getFilePermissions(function(res){
  2291. if(res==1){
  2292. uni.showLoading({
  2293. title: '加载中'
  2294. });
  2295. var url = baseUrl + path;
  2296. let dtask = plus.downloader.createDownload(url, {
  2297. filename: 'file://storage/emulated/0/'+baseName+'/' + name
  2298. }, (d, status) => {
  2299. //d为下载的文件对象
  2300. if (status == 200) {
  2301. uni.hideLoading();
  2302. uni.showToast({
  2303. icon: 'none',
  2304. mask: true,
  2305. title: '已保存到文件夹:/'+baseName+'/'+ name, //保存路径
  2306. duration: 3000,
  2307. });
  2308. //下载成功,d.filename是文件在保存在本地的相对路径,使用下面的API可转为平台绝对路径
  2309. let fileSaveUrl = plus.io.convertLocalFileSystemURL(d.filename);
  2310. setTimeout(() => {
  2311. plus.runtime.openFile(d.filename); //选择软件打开文件
  2312. }, 1500)
  2313. } else {
  2314. //下载失败
  2315. uni.hideLoading();
  2316. plus.downloader.clear(); //清除下载任务
  2317. uni.showToast({
  2318. icon: 'none',
  2319. mask: true,
  2320. title: '下载失败,请稍后重试',
  2321. });
  2322. }
  2323. })
  2324. dtask.start();
  2325. }else{
  2326. uni.hideLoading();
  2327. uni.showToast({
  2328. title: '无法获取权限,文件下载将出错!',
  2329. icon: 'none',
  2330. })
  2331. }
  2332. })
  2333. // #endif
  2334. },
  2335. getExportMb(ite){
  2336. var that=this;
  2337. var params=this.datainfo;
  2338. if(ite.val=='wtdbsqs'){
  2339. params.type=1;
  2340. }else{
  2341. params.type=11;
  2342. }
  2343. params.bigType='b';
  2344. params.fileType=ite.val;
  2345. getExportMb(params).then(res=>{
  2346. if(res.code==200){
  2347. var data=res.data;
  2348. var url=data.path;
  2349. var name=data.fileName;
  2350. that.getDownloader(url,name)
  2351. }
  2352. })
  2353. },
  2354. getDown(e){
  2355. uni.showLoading({
  2356. title: '加载中'
  2357. });
  2358. var url=baseUrl+e;
  2359. let index1 = e.lastIndexOf("."); // 得到一个索引值
  2360. let index2 = e.length;
  2361. let type = e.substring(index1, index2);
  2362. if ((type.indexOf('jpg') > -1 || type.indexOf('jpeg') > -1 || type.indexOf('png') > -1)) {
  2363. uni.previewImage({
  2364. current: 0,
  2365. urls: [url],
  2366. // background: '#ffffff'
  2367. });
  2368. uni.hideLoading();
  2369. } else {
  2370. uni.downloadFile({
  2371. url: url,//文件的下载路径
  2372. success(result) {
  2373. uni.hideLoading()
  2374. var filePath = result.tempFilePath;
  2375. uni.openDocument({
  2376. filePath: filePath,
  2377. showMenu: true,
  2378. success: function (res) {
  2379. // console.log('打开文档成功');
  2380. }
  2381. });
  2382. },
  2383. fail(res) {uni.hideLoading()}
  2384. })
  2385. }
  2386. },
  2387. }
  2388. }
  2389. </script>
  2390. <style lang="scss" scoped>
  2391. .addbox /deep/ .uni-forms-item{min-height: 112rpx;box-sizing: border-box;display: flex;align-items: center;margin-bottom: 0;border-bottom: 2rpx solid #E6E6E6;padding:18rpx 0;position: relative;}
  2392. .addbox .bgf /deep/ .uni-forms-item:last-child{border-bottom: none;}
  2393. .addbox /deep/ .uni-forms-item__label{font-weight: bold;font-size: 32rpx;color: #161616;flex: 0 0 auto;width: auto !important;padding-left: 12rpx;min-width: 240rpx;box-sizing: border-box;}
  2394. .addbox /deep/ .uni-easyinput{flex: 1;text-align: left;font-size: 30rpx;color: #222327;}
  2395. .addbox /deep/ .uni-easyinput__content-textarea{min-height: 40rpx;font-size: 30rpx;}
  2396. .addbox /deep/ .uni-easyinput__placeholder-class{font-size: 30rpx;color: #AAAAAA;}
  2397. .addbox /deep/ .uni-input-input{font-size: 30rpx;}
  2398. .addbox /deep/ .uni-easyinput__content-input{padding-left: 0 !important;}
  2399. .addbox /deep/ .uni-textarea-textarea{font-size: 30rpx;}
  2400. .addbox /deep/ .is-disabled{color: #222327;background-color: #ffffff !important;}
  2401. .isborder{border-bottom: 2rpx solid #E6E6E6;}
  2402. .labtxt{font-weight: bold;font-size: 32rpx;color: #161616;flex: 0 0 auto;width: auto !important;padding-left: 12rpx;width: 240rpx;box-sizing: border-box;
  2403. position: absolute;left: -240rpx;top:50%;transform: translateY(-50%);
  2404. text{color: #AAAAAA;font-size: 26rpx;font-weight: normal;display: block;
  2405. &.del{
  2406. color: #FF6969;margin-top: 6rpx;text-align: center;padding: 4rpx 0;
  2407. }
  2408. }
  2409. }
  2410. .navtop{
  2411. position: fixed;left:0;right: 0;top: 0;z-index: 2;
  2412. }
  2413. .topl{width: 60rpx;height: 60rpx;display: flex;align-items: center;justify-content: center;
  2414. image{width: 40rpx;height: 30rpx;}
  2415. }
  2416. .edit{font-weight: 500;font-size: 26rpx;color: #FFFFFF;display: flex;align-items: center;
  2417. image{width: 24rpx;height: 26rpx;margin-right: 10rpx;}
  2418. .img{width: 24rpx;height: 26rpx;margin-right: 10rpx;}
  2419. .txt{font-weight: 500;font-size: 26rpx;color: #FFFFFF;}
  2420. }
  2421. .editcir{box-shadow: 0px 0px 20rpx 0px rgba(0,169,240,0.6);
  2422. width: 120rpx;height: 120rpx;border-radius: 50%;position: fixed;right:0;bottom:140rpx;background-color: $com-cd3;flex-direction: column;align-items: center;justify-content: center;
  2423. .img{margin-bottom: 8rpx;margin-right: 0;}
  2424. }
  2425. .addbox{padding: 140rpx 0 136rpx;
  2426. .addtit{font-weight: bold;padding: 18rpx 34rpx;font-size: 26rpx;color: #666666;
  2427. text{color: #DF0303;margin-right: 8rpx;}
  2428. .ywimg{width: 30rpx;height: 30rpx;margin-left: 16rpx;}
  2429. &.tips{font-weight: 500;font-size: 24rpx;color: #FF6969;}
  2430. }
  2431. .lbtabp{
  2432. display: flex;align-items: center;
  2433. view{flex: 1;font-size: 30rpx;color: #222327;}
  2434. .rimg{flex: 0 0 auto;width: 16rpx;height: 26rpx;flex: 0 0 auto;margin-left: 18rpx;}
  2435. }
  2436. .ywicon{font-weight: 400;font-size: 26rpx;color: $com-cd3;padding-right: 14rpx;
  2437. image{width: 26rpx;height: 26rpx;margin-right: 8rpx;}
  2438. }
  2439. // 上传样式
  2440. .phobox{display: flex;flex-wrap: wrap;justify-content: space-between;
  2441. .phoboxa{display: flex;flex-direction: column;align-items: center;margin: 10rpx 26rpx 0 0;padding-bottom: 4rpx;position: relative;min-height: 176rpx;box-sizing: border-box;
  2442. .photop{width: 200rpx;height: 126rpx;position: relative;
  2443. .bgimg{width: 100%;height: 100%;}
  2444. .addimg{width: 34rpx;height: 30rpx;position: absolute;left: 50%;margin-left: -17rpx;top: 50%;margin-top: -15rpx;z-index: 1;}
  2445. .delimg{position: absolute;width: 24rpx;height: 24rpx;right: -12rpx;top: -12rpx;}
  2446. .bgimga{width: 100%;height: 100%;position: absolute;left:0;right: 0;top:0;bottom: 0;}
  2447. }
  2448. // .pupdata{position: absolute;left: 0;right: 0;top:0;bottom: 0;opacity: 0;}
  2449. .photit{font-weight: 500;font-size: 20rpx;color: #AAAAAA;margin-top: 18rpx;max-width:200rpx;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
  2450. &.atit{position: absolute;left: 50%;transform: translate(-50%);bottom: 4rpx;word-break: keep-all;max-width: none;}
  2451. }
  2452. }
  2453. .frdelimg{
  2454. position: absolute;width: 32rpx;height: 32rpx;right: -16rpx;top: -16rpx;
  2455. image{width: 24rpx;height: 24rpx;}
  2456. }
  2457. }
  2458. .addgdbox{padding: 34rpx 10rpx 36rpx;}
  2459. // 附件
  2460. .fjbox{padding: 24rpx 0;
  2461. min-height: 150rpx;box-sizing: border-box;
  2462. // &:last-child{border-bottom: none;border-bottom: 2rpx solid #E6E6E6;}
  2463. .fjtop{
  2464. &.chek{
  2465. .chtit{flex: 1;font-size: 30rpx;color: #222327;text-align: right;}
  2466. .rimg{flex: 0 0 auto;width: 16rpx;height: 26rpx;flex: 0 0 auto;margin-left: 18rpx;}
  2467. }
  2468. .ftit{font-weight: bold;font-size: 32rpx;color: #161616;flex: 1;padding:28rpx 0;
  2469. text{color: #DF0303;margin-right: 8rpx;}
  2470. .mtxt{color: #AAAAAA;font-size: 26rpx;}
  2471. }
  2472. .fbtns{font-weight: 500;font-size: 26rpx;padding-right: 12rpx;margin-left: 36rpx;display: flex;align-items: center;height: 100rpx;justify-content: center;
  2473. image{width: 22rpx;height: 22rpx;margin-right: 10rpx;
  2474. &.downimg{width: 20rpx;}
  2475. }
  2476. }
  2477. }
  2478. }
  2479. // 18
  2480. .fjlists {display: flex;align-items: flex-start;justify-content: space-between;margin-bottom: 12rpx;
  2481. // image{flex: 0 0 auto;}
  2482. .imgl{width: 40rpx;height: 40rpx;display: flex;align-items: center;flex: 0 0 auto;
  2483. image{width: 26rpx;height: 24rpx;}
  2484. }
  2485. .tit{font-size: 26rpx;color: #222327;font-weight: 500;margin-top: 4rpx;}
  2486. .delimg{width: 40rpx;height:40rpx;margin-left: 16rpx;display: flex;align-items: center;justify-content: center;flex: 0 0 auto;
  2487. image{width: 24rpx;height: 24rpx;}
  2488. }
  2489. }
  2490. }
  2491. .addbtns{z-index: 4;
  2492. width: 100%;height: 100rpx;position: fixed;left: 0;right: 0;bottom: 0;display: flex;
  2493. .addlbtn{background-color: #ffffff;font-weight: 500;justify-content: center;
  2494. display: flex;align-items: center;width: 232rpx;flex: 0 0 auto;height: 100rpx;
  2495. .addlbtna{width: 32rpx;height: 32rpx;margin-right: 12rpx;display: block;}
  2496. .addlbtnb{font-size: 30rpx;color: $com-cd3;}
  2497. }
  2498. }
  2499. .addrbtn{flex: 1;height: 100rpx;font-weight: bold;font-size: 30rpx;display: flex;align-items: center;justify-content: center;
  2500. color: #FFFFFF;text-align: center;line-height: 100rpx;
  2501. &.bga{background: #29E18A;}
  2502. &.bgb{background: $com-cd3;}
  2503. }
  2504. // 标准
  2505. .looimg{width: 100%;height: 400rpx;position: fixed;left: 0;right: 0;top: 50%;margin-top: -200rpx;z-index: 10;}
  2506. </style>