add.vue 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502
  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. <pop-up :type='ftype' :xwimgList="xwimgList" :content="content" @getClose='getClose'></pop-up>
  1185. </view>
  1186. </template>
  1187. <script>
  1188. import config from '@/config'
  1189. const baseUrl = config.baseUrl
  1190. const baseUrlimg=config.baseUrlimg
  1191. const baseName = config.baseName
  1192. import self from '@/utils/location.js';
  1193. import popUp from "@/work/components/popup/popup.vue"
  1194. import stepBar from "@/components/toptab/stepbar.vue"
  1195. import { getToken } from '@/utils/auth'
  1196. import {getApplicationNum,getApplicationZc,getApplicationAdd,getApplicationDet,getApplicationEdit,getExportMb,getDocumentList} from "@/api/mine/work.js"
  1197. import {getQyListNoPage,getOcrIdCard,getIdCardDet} from "@/api/mine/card.js"
  1198. import {uploadmore,selectValueKey} from '@/utils/common.js'
  1199. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  1200. import {getDictionaryFn} from "@/api/mine/register.js"
  1201. // 340622185605234521
  1202. export default{
  1203. components:{stepBar,popUp},
  1204. data(){
  1205. return{
  1206. //附件
  1207. option: {
  1208. // 上传服务器地址,需要替换为你的接口地址
  1209. url: baseUrl+'/common/uploadNew', // 该地址非真实路径,需替换为你项目自己的接口地址
  1210. // 上传附件的key
  1211. name: 'file',
  1212. // 根据你接口需求自定义请求头,默认不要写content-type,让浏览器自适配
  1213. header: {
  1214. // 示例参数可删除
  1215. 'Authorization': 'Bearer ' + getToken(),
  1216. },
  1217. // 根据你接口需求自定义body参数
  1218. formData: {
  1219. loanApplicationNumber:'',
  1220. }
  1221. },
  1222. gdformats: 'png,jpg,jpeg',
  1223. // 选择文件后是否立即自动上传,true=选择后立即上传
  1224. instantly: true,
  1225. // 必传宽高且宽高应与slot宽高保持一致
  1226. width: '',
  1227. height: '100rpx',
  1228. pwidth:'200rpx',
  1229. pheight:'126rpx',
  1230. // 限制允许上传的格式,空串=不限制,默认为空
  1231. formats: 'doc,docx,xls,xlsx,ppt,txt,pdf,zip,rar,word,png,jpg,jpeg',
  1232. // 文件上传大小限制
  1233. size: 100,
  1234. // 文件数量限制 默认10
  1235. count: 5,
  1236. // 文件回显列表
  1237. files: new Map(),
  1238. // 微信小程序Map对象for循环不显示,所以转成普通数组,不要问为什么,我也不知道
  1239. wxFiles: [],
  1240. // 是否打印日志
  1241. debug: false,
  1242. filelist:[],
  1243. gdfilelist:[],//股东附件列表
  1244. backimg:require("@/work/static/images/back.png"),
  1245. feditimg:require("@/work/static/images/fedit.png"),
  1246. hrimg:require('@/work/static/images/hrimg.png'),
  1247. ywicon:require('@/work/static/images/busin/ywicon.png'),
  1248. delimg:require('@/work/static/images/del.png'),
  1249. lookico:require('@/work/static/images/busin/lookico.png'),
  1250. phoicon:require('@/work/static/images/busin/phoicon.png'),
  1251. zico:require('@/work/static/images/busin/zico.png'),
  1252. cardz:require('@/work/static/images/busin/cardz.png'),
  1253. cardf:require('@/work/static/images/busin/cardf.png'),
  1254. addgd:require('@/work/static/images/busin/addgd.png'),
  1255. jhico:require('@/work/static/images/busin/jhico.png'),
  1256. hkico:require('@/work/static/images/busin/hkico.png'),
  1257. zancio:require('@/work/static/images/zancio.png'),
  1258. downimg:require('@/work/static/images/down.png'),
  1259. upimg:require('@/work/static/images/fup.png'),
  1260. filico:require('@/work/static/images/filico.png'),
  1261. fdelimg:require('@/work/static/images/del.png'),
  1262. steps:[{tit:'申请额度',status:0},{tit:'企业信息',status:1},{tit:'法人信息',status:2},{tit:'反担保人信息',status:3},{tit:'添加附件',status:4},],
  1263. stepval:1,
  1264. datainfo:{
  1265. // qymcid:1,
  1266. // hylx:'',
  1267. // hylxid:'',
  1268. // iszcy:'0',
  1269. // "loanApplicationId": 1,//贷款申请id
  1270. "loanApplicationNumber": "",//贷款申请编号
  1271. 'applicationType':'',//申请类型 1:企业 2:个人
  1272. "applicationAmount": '',//申请额度(万元)
  1273. "applicationBank": "",//申请银行
  1274. "usagePeriod": "",//使用期限(月)
  1275. "purposeFunds": "",//资金用途
  1276. "repaymentSource": "",//还款来源
  1277. "enterpriseName": "",//企业名称
  1278. "enterpriseId":"",//企业信息id
  1279. "categoryType": "",//行业类型
  1280. "isMake": "Y",//是否是制造业
  1281. "isNew": "Y",//是否是精特新
  1282. "isSmall": "Y",//是否是小微企业
  1283. "isDuty": "",//是否是免税企业
  1284. "companyIntroduction": "",//公司简介
  1285. "customerType": "",//用户类型
  1286. "corporationFront": "",//法人身份证正面
  1287. "corporationBack": "",//法人身份证反面
  1288. "corporationName": "",// 法人姓名
  1289. "corporationIdCard": "",//法人身份证号
  1290. "corporationPhone": "",// 法人手机号
  1291. "familyPopulation": "",//家庭人口数
  1292. "corporationJob": "",//法人职业
  1293. "isLoan": "",//有无贷款
  1294. "receivablePay": "",//应收应付款
  1295. "businessSituation": "",//经营情况
  1296. "businessEfficiency": "",//经营效益
  1297. "corporationMaritalStatus": "",//法人婚姻状态
  1298. "spouseFront": "",//配偶身份证正面
  1299. "spouseBack": "",//配偶身份证反面
  1300. "spouseName": "",//配偶姓名
  1301. "spouseIdCard": "",//配偶身份证号
  1302. "spousePhone": "",//配偶手机号
  1303. "guaranteeType": "",//担保类型
  1304. "guaranteeFront": "",//反担保人身份证正面
  1305. "guaranteeBack": "",//反担保人身份证反面
  1306. "guaranteeName": "",//反担保人姓名
  1307. "guaranteeIdCard": "",//反担保人身份证号
  1308. "guaranteePhone": "",//反担保人手机号
  1309. // "guaranteeMaritalStatus": "",//反担保人婚姻状态
  1310. // "guaranteeSpouseFront": "",//反担保人配偶身份证正面
  1311. // "guaranteeSpouseBack": "",//反担保人配偶身份证反面
  1312. // "guaranteeSpouseName": "",//反担保人配偶姓名
  1313. // "guaranteeSpouseIdCard": "",//反担保人配偶身份证号
  1314. // "guaranteeSpousePhone": "",//反担保人配偶手机号
  1315. // "userId": '',//申请人用户ID
  1316. // "idCard": "",//申请人身份证号码
  1317. // "applicationTime": "",//申请时间
  1318. // "fileTime": "",//归档时间
  1319. // "loanSchedule": "",//贷款申请进度(业务进度表查询进度列表):1:申报提交2:业务审核/分配 3:担保初审 4:尽职调查 5:初审风险合规 6:评审会 7:合同签约 8:放款合规风险审核 9:放款通知 10:归档
  1320. // "loanScheduleName": '',//贷款申请进度名称(中文字)
  1321. // "auditSchedule": "",//审核进度1:担保初审 2:A角色审核 3:B角色审核 4:风险审核 5:尽职调查 6:上会评审
  1322. // "auditType": "",//审核状态 1:待审核 2:已通过 3:未通过
  1323. // "loanApplicationType": "",//贷款申请状态 1:暂存 2:正常 3:回收站 4:归档
  1324. // "aUserId": "",//A角色用户ID
  1325. // "aUserName": "",//A角色用户名称
  1326. // "bUserId": '',//B角色用户ID
  1327. // "bUserName": '',//B角色用户名称
  1328. "shareholderFjList": [],//全体股东信息附件
  1329. "loanApplicationFjList": [],//相关附件
  1330. "basicFj":{},//基础附件
  1331. "declareFj":{},//申报附件
  1332. "fileFj":{},//文件出具
  1333. "otherFj":{},//其他附件
  1334. },
  1335. qymc:'',
  1336. msqy:'',
  1337. qyidx:0,
  1338. ywidx:0,
  1339. categoryId:'',//行业的id
  1340. rules:{
  1341. bonusType: {rules: [{required: true,errorMessage: '请选择加分类型'} ]},
  1342. // score: {rules: [{required: true,errorMessage: '请输入分值'} ]},
  1343. // bonusReason: {rules: [{required: true,errorMessage: '请输入加分事由'} ]},
  1344. },
  1345. gdlist:[{cardz:'',cardf:'',zxurl:[],zhizhao:[]}],
  1346. qylist:[],//企业列表
  1347. sfList:[{text: '是',value: 'Y'},{text: '否',value: 'N'}],
  1348. ywList:[{label: '有',value: 'Y'},{label: '无',value: 'N'}],
  1349. actcolor:'#00A9F0',
  1350. sqtype:'qy',//个人gr ,企业 qy,
  1351. hyztlist:[],//婚姻状态
  1352. yhlxlist:[],//用户类型
  1353. dblxlist:[],//担保类型
  1354. lookflag:false,
  1355. listTop:70,
  1356. userId:this.$store.state.user.userId,
  1357. categoryId:"",//行业类型id;
  1358. jcfjlist:[],//基础附件
  1359. sbfjlist:[],//申报附件
  1360. wjfjlist:[],//文件出具
  1361. jcfjobj:{},//基础附件
  1362. shareholderFjList:[],//全体股东信息附件
  1363. loanApplicationFjList:[],//相关附件
  1364. ftype:'',//弹窗type
  1365. baseUrl:'',
  1366. dblx:'',
  1367. yhlx:'',
  1368. frhyzk:'',//婚姻状况
  1369. dblxidx:0,
  1370. yhlxidx:0,
  1371. sfidx:0,
  1372. frhyzkidx:0,
  1373. btfiles:[{tit:'公司章程',type:'gszc'},
  1374. {tit:'开户许可证',type:'khxkz'},{tit:'申请企业征信报告',type:'sqqyzxbg'},{tit:'关联企业征信报告',type:'glqyzxbg'},{tit:'企业法人征信报告',type:'qyfrzxbg'},{tit:'实际控股人征信报告',type:'sjkgrzxbg'},
  1375. {tit:'户口簿首页',type:'frhkbsy'},
  1376. ],
  1377. sqbtfiles:[{tit:'委托担保申请书',type:'wtdbsqs'},
  1378. {tit:'股东会议纪要',type:'gdhyjy'},{tit:'上一年度财务报表',type:'syndcwbb'},{tit:'主要账户银行流水',type:'zyzhyhls'},{tit:'购销合同',type:'gxht'},
  1379. {tit:'当前从事项目情况证明',type:'dqcsxmqkzm'},{tit:'企业基本注册信息查询单',type:'qyjbzcxxcxd'},{tit:'水电费发票(一年)',type:'sdffpyn'},{tit:'人员工资表',type:'rggzb'},{tit:'纳税申报表',type:'nssbb'},
  1380. ],
  1381. content:'',//小微企业富文本
  1382. xwimgList:[],//小微企业图片
  1383. ptype:'add',
  1384. id:'',//申请id
  1385. declareFj:{},//
  1386. // {tit:'法人结婚证',type:'frjhz'},{tit:'法人离婚证',type:'frlhz'},
  1387. // {tit:'法人配偶身份证人面像',type:'frsfzpormx'},{tit:'法人配偶身份证国徽面',type:'frsfzpoghm'},
  1388. //担保类型为反担保人担保{tit:'反担保人身份证人面像',type:'fdbrsfzrmx'},{tit:'反担保人身份证国徽面',type:'fdbrsfzghm'},
  1389. //担保类型为抵押{tit:'企业固定资产证明',type:'qygdzczm'},
  1390. }
  1391. },
  1392. onUnload(){
  1393. uni.$off('refreshtalb')
  1394. },
  1395. // watch(){
  1396. // },
  1397. onLoad(e) {
  1398. // this.getIdCardDet()
  1399. // return
  1400. this.baseUrl=baseUrl
  1401. var data=JSON.parse(decodeURIComponent(e.data))
  1402. if(data.type){
  1403. this.ptype=data.type;
  1404. this.id=data.id;
  1405. if(Number(data.val)<4){
  1406. this.stepval=Number(data.val)+1
  1407. }
  1408. this.getDetail()
  1409. }else{
  1410. this.datainfo.applicationAmount=data.applicationAmount;
  1411. this.datainfo.applicationBank=data.applicationBank;
  1412. this.datainfo.usagePeriod=data.usagePeriod;
  1413. this.datainfo.purposeFunds=data.purposeFunds;
  1414. this.datainfo.repaymentSource=data.repaymentSource;
  1415. this.datainfo.applicationType=data.applicationType;
  1416. if(data.applicationType==1){
  1417. var obj={tit:'当期财务报表',type:'dqcwbb'};
  1418. this.sqbtfiles.push(obj)
  1419. }
  1420. this.getNumber();
  1421. this.getSbjListFn()
  1422. }
  1423. uni.$on('refreshtalb', (e) => {
  1424. this.datainfo.categoryType=e.categoryName
  1425. this.categoryId=e.categoryId
  1426. })
  1427. this.init()
  1428. this.getQylist()
  1429. this.getDocumentList()
  1430. },
  1431. mounted() {
  1432. this.getHeightFn()
  1433. // var obj={
  1434. // loanApplicationNumber:this.datainfo.loanApplicationNumber
  1435. // }
  1436. // this.option.formData=JSON.parse(JSON.stringify(obj))
  1437. // this.$refs['lsjUpload'].setData('formData.loanApplicationNumber','RZDB202404251759453241637');
  1438. },
  1439. methods:{
  1440. checkPermi, checkRole,
  1441. getIdCardDet(){
  1442. getIdCardDet(this.userId).then(res=>{
  1443. if(res.code==200){
  1444. }
  1445. })
  1446. },
  1447. init(){
  1448. // 用户类型
  1449. getDictionaryFn('customer_type').then(res=>{
  1450. if(res.code==200){
  1451. this.yhlxlist = res.data.map(v => {
  1452. return {
  1453. label: v.dictLabel,
  1454. value: v.dictValue
  1455. }
  1456. })
  1457. }
  1458. })
  1459. // 婚姻状况
  1460. getDictionaryFn('marital_status').then(res=>{
  1461. if(res.code==200){
  1462. this.hyztlist = res.data.map(v => {
  1463. return {
  1464. label: v.dictLabel,
  1465. value: v.dictValue
  1466. }
  1467. })
  1468. }
  1469. })
  1470. // 担保类型
  1471. getDictionaryFn('guarantee_type').then(res=>{
  1472. if(res.code==200){
  1473. this.dblxlist = res.data.map(v => {
  1474. return {
  1475. label: v.dictLabel,
  1476. value: v.dictValue
  1477. }
  1478. })
  1479. }
  1480. })
  1481. // 基础附件
  1482. getDictionaryFn('application_fj_jc').then(res=>{
  1483. if(res.code==200){
  1484. var obj={}
  1485. var data=res.data;
  1486. data.forEach(v=>{
  1487. obj[v.dictValue]=v.dictLabel
  1488. })
  1489. this.jcfjobj=obj
  1490. }
  1491. })
  1492. },
  1493. getSbjListFn(){
  1494. // 申报附件
  1495. getDictionaryFn('application_fj_sb').then(res=>{
  1496. if(res.code==200){
  1497. var declareFj=this.declareFj;
  1498. this.sbfjlist = res.data.map(v => {
  1499. return {
  1500. label: v.dictLabel,
  1501. val: v.dictValue,
  1502. fjlist:declareFj[v.dictValue]||[]
  1503. }
  1504. })
  1505. let signArr = this.filelist;
  1506. signArr = signArr.filter(s => {
  1507. // if (res.data.find(l => l.dictValue == s.type && l.title == s.title)) return false
  1508. if (res.data.find(l => l.dictValue == s.type)) return false
  1509. else return true;
  1510. })
  1511. this.filelist = signArr;
  1512. }
  1513. })
  1514. },
  1515. getQylist(){
  1516. // 需要userid
  1517. var params={
  1518. userId:this.userId
  1519. }
  1520. getQyListNoPage(params).then(res=>{
  1521. if(res.code==200){
  1522. this.qylist = res.rows.map(v => {
  1523. return {
  1524. label: v.enterpriseName,
  1525. value: v.enterpriseId
  1526. }
  1527. })
  1528. }
  1529. })
  1530. },
  1531. getNumber(){
  1532. getApplicationNum().then(res=>{
  1533. if(res.code==200){
  1534. this.datainfo.loanApplicationNumber=res.data;
  1535. var obj={
  1536. loanApplicationNumber:this.datainfo.loanApplicationNumber
  1537. }
  1538. this.option.formData=JSON.parse(JSON.stringify(obj))
  1539. }
  1540. })
  1541. },
  1542. getHeightFn(){
  1543. let query = uni.createSelectorQuery().in(this);
  1544. var s=uni.getSystemInfoSync().statusBarHeight;
  1545. //需要给黄色区域设置一个id标识,在这里是demo
  1546. query.select('.navtop').boundingClientRect(data => {
  1547. // #ifdef H5
  1548. this.listTop =s ? Number(data.height)*2:(Number(data.height)-20)*2//赋值,待会要用
  1549. // #endif
  1550. // #ifndef H5
  1551. this.listTop = Number(data.height)*2//赋值,待会要用
  1552. // #endif
  1553. }).exec();
  1554. },
  1555. getDbclFn(){
  1556. this.$tab.navigateTo("/work/pages/prove/dbcltips")
  1557. },
  1558. getBack(){
  1559. uni.navigateBack({
  1560. delta:1
  1561. })
  1562. },
  1563. getGiveupFn(){
  1564. var that=this;
  1565. uni.showModal({
  1566. title: '放弃编辑',
  1567. content: "是否确认放弃编辑",
  1568. cancelText: '取消',
  1569. confirmText: '确认',
  1570. success: function(res) {
  1571. if (res.confirm) {
  1572. that.$tab.reLaunch('/pages/index/index')
  1573. } else if (res.cancel) {
  1574. }
  1575. }
  1576. });
  1577. },
  1578. getPreFn(){
  1579. uni.pageScrollTo({
  1580. scrollTop: 0,
  1581. duration: 0
  1582. })
  1583. this.stepval=Number(this.stepval)-1
  1584. },
  1585. getNextFn(){
  1586. // 暂不判断必填写完否
  1587. uni.pageScrollTo({
  1588. scrollTop: 0,
  1589. duration: 0
  1590. })
  1591. this.stepval=Number(this.stepval)+1
  1592. },
  1593. getPreview(url) {
  1594. var newArr=[];
  1595. newArr.push(url)
  1596. uni.previewImage({
  1597. urls: newArr,
  1598. current:0,
  1599. success: function(data) {
  1600. },
  1601. fail: function(err) {
  1602. }
  1603. });
  1604. },
  1605. showImg(){
  1606. this.ftype='fwb'
  1607. // this.lookflag=true
  1608. },
  1609. getClose(){
  1610. this.ftype=''
  1611. },
  1612. getTalbFn(){
  1613. var obj={
  1614. id:this.categoryId,
  1615. name:this.datainfo.categoryType,
  1616. }
  1617. this.$tab.navigateTo('/work/pages/business/talbclass?data='+encodeURIComponent(JSON.stringify(obj)))
  1618. },
  1619. getAddGdFn(){
  1620. var obj = {cardz:'',cardf:'',zxurl:[],zhizhao:[]}
  1621. this.gdlist.push(obj);
  1622. },
  1623. getdelGdFn(idx){
  1624. var that=this;
  1625. uni.showModal({
  1626. title: '确认删除',
  1627. content: "是否确认删除",
  1628. cancelText: '取消',
  1629. confirmText: '确认',
  1630. success: function(res) {
  1631. if (res.confirm) {
  1632. that.gdlist.splice(idx,1);
  1633. } else if (res.cancel) {
  1634. }
  1635. }
  1636. });
  1637. },
  1638. statusFormat(ite,list,type) {
  1639. var aite=selectValueKey(list, ite);
  1640. if(type=='qy'){
  1641. this.qyidx=aite.key
  1642. }else if(type=='dblx'){
  1643. this.dblxidx=aite.key
  1644. }else if(type=='yhlx'){
  1645. this.yhlxidx=aite.key
  1646. }else if(type=='ywdk'){
  1647. this.ywidx=aite.key
  1648. }else if(type=='msqy'){
  1649. this.sfidx=aite.key
  1650. }else if(type=='frhyzk'){
  1651. this.frhyzkidx=aite.key
  1652. this.frhyzk=aite.actions;
  1653. }
  1654. return aite.actions;
  1655. },
  1656. bindDateChangea(e){
  1657. // 企业信息
  1658. var val=e.detail.value;
  1659. this.datainfo.enterpriseName=this.qylist[val].label;
  1660. this.datainfo.enterpriseId=this.qylist[val].value;
  1661. },
  1662. bindDateChangeb(e){
  1663. // 用户类型
  1664. var val=e.detail.value;
  1665. this.yhlx=this.yhlxlist[val].label;
  1666. this.datainfo.customerType=this.yhlxlist[val].value;
  1667. },
  1668. bindDateChangec(e){
  1669. // 有无贷款
  1670. var val=e.detail.value;
  1671. this.datainfo.isLoan=this.ywList[val].value;
  1672. },
  1673. getDelfzpo(type){
  1674. if(type=='front'){
  1675. this.datainfo.spouseFront="";
  1676. this.datainfo.spouseName="";
  1677. this.datainfo.spouseIdCard="";
  1678. }else{
  1679. this.datainfo.spouseBack="";
  1680. }
  1681. },
  1682. getDelfdbfzpo(type){
  1683. if(type=='front'){
  1684. this.datainfo.guaranteeFront="";
  1685. this.datainfo.guaranteeName="";
  1686. this.datainfo.guaranteeIdCard="";
  1687. }else{
  1688. this.datainfo.guaranteeBack="";
  1689. }
  1690. },
  1691. bindDateChanged(e){
  1692. // 婚姻状态
  1693. var val=e.detail.value;
  1694. var value=this.hyztlist[val].value;
  1695. var list=this.btfiles;
  1696. if(this.datainfo.corporationMaritalStatus!=value){
  1697. this.frhyzk=this.hyztlist[val].label;
  1698. this.datainfo.corporationMaritalStatus=this.hyztlist[val].value;
  1699. if(value==3){//离异
  1700. // 删除结婚证
  1701. var obj={tit:'法人离婚证',type:'frlhz'}
  1702. const index = list.findIndex(text => text.type === "frjhz");
  1703. if(index!=-1){
  1704. this.btfiles.splice(index,1,obj)
  1705. }else{
  1706. this.btfiles.push(obj)
  1707. }
  1708. }else if(value==1){//已婚
  1709. // 删除离婚证
  1710. var obj={tit:'法人结婚证',type:'frjhz'}
  1711. const index = list.findIndex(text => text.type === "frlhz");
  1712. if(index!=-1){
  1713. this.btfiles.splice(index,1,obj)
  1714. }else{
  1715. this.btfiles.push(obj)
  1716. }
  1717. }else{
  1718. // 未婚
  1719. const index = this.btfiles.findIndex(text => text.type === "frlhz");
  1720. if(index!=-1){
  1721. this.btfiles.splice(index,1)
  1722. }
  1723. const indexa = this.btfiles.findIndex(text => text.type === "frjhz");
  1724. if(indexa!=-1){
  1725. this.btfiles.splice(indexa,1)
  1726. }
  1727. }
  1728. }
  1729. },
  1730. bindDateChangee(e){
  1731. // 担保类型
  1732. var val=e.detail.value;
  1733. this.dblx=this.dblxlist[val].label;
  1734. this.datainfo.guaranteeType=this.dblxlist[val].value;
  1735. var value=this.dblxlist[val].value;
  1736. var list=this.btfiles;
  1737. var sqlist=this.sqlist;
  1738. },
  1739. bindDateChangef(e){
  1740. var val=e.detail.value;
  1741. // this.dblx=this.sfList[val].text;
  1742. this.datainfo.isDuty=this.sfList[val].value;
  1743. },
  1744. getZanFn(){
  1745. var that=this;
  1746. var params=this.datainfo;
  1747. var gdlist=this.gdlist;
  1748. var shFjList=[]
  1749. Object.keys(gdlist).some((key) => {
  1750. var fjurl={
  1751. shareholderFrontUrl:gdlist[key].cardz,
  1752. shareholderBackUrl:gdlist[key].cardf,
  1753. shareholderZxUrl:gdlist[key].zxurl.join(','),
  1754. shareholderBusinessUrl:gdlist[key].zhizhao.join(','),
  1755. }
  1756. shFjList.push(fjurl)
  1757. })
  1758. params.shareholderFjList=JSON.parse(JSON.stringify(shFjList))
  1759. var flist=this.filelist;
  1760. var sbfjlist=this.sbfjlist;
  1761. sbfjlist.forEach(ite=>{
  1762. if(ite.fjlist&&ite.fjlist.length){
  1763. ite.fjlist.forEach(itet=>{
  1764. flist.push(itet)
  1765. })
  1766. }
  1767. })
  1768. params.loanApplicationFjList=JSON.parse(JSON.stringify(flist))
  1769. getApplicationZc(params).then(res=>{
  1770. if(res.code==200){
  1771. this.$toast('暂存成功')
  1772. // 刷新列表
  1773. setTimeout(function(){
  1774. if(that.ptype=='add'){
  1775. that.$tab.reLaunch('/pages/index/index')
  1776. }else{
  1777. uni.$emit('refreshywlist')
  1778. }
  1779. },1200)
  1780. }
  1781. })
  1782. },
  1783. getDetail(){
  1784. getApplicationDet(this.id).then(res=>{
  1785. if(res.code==200){
  1786. this.datainfo=res.data;
  1787. if(res.data&&res.data.applicationType==1){
  1788. var obj={tit:'当期财务报表',type:'dqcwbb'};
  1789. this.sqbtfiles.push(obj)
  1790. }
  1791. var data=res.data;
  1792. var obj={
  1793. loanApplicationNumber:res.data.loanApplicationNumber
  1794. }
  1795. this.option.formData=JSON.parse(JSON.stringify(obj))
  1796. if(data.loanApplicationFjList){
  1797. this.filelist=JSON.parse(JSON.stringify(data.loanApplicationFjList))
  1798. }
  1799. if(data.declareFj){
  1800. this.declareFj=data.declareFj;
  1801. }
  1802. if(data.shareholderFjList){
  1803. var shFjList=[]
  1804. var gdlist=data.shareholderFjList;
  1805. Object.keys(gdlist).some((key) => {
  1806. var fjurl={
  1807. cardz:gdlist[key].shareholderFrontUrl,
  1808. cardf:gdlist[key].shareholderBackUrl,
  1809. zxurl:[],
  1810. zhizhao:[]
  1811. }
  1812. if(gdlist[key].shareholderZxUrl){
  1813. fjurl.zxurl=gdlist[key].shareholderZxUrl.split(',')
  1814. }
  1815. if(gdlist[key].shareholderBusinessUrl){
  1816. fjurl.zhizhao=gdlist[key].shareholderBusinessUrl.split(',')
  1817. }
  1818. shFjList.push(fjurl)
  1819. })
  1820. this.gdlist=JSON.parse(JSON.stringify(shFjList))
  1821. }
  1822. this.getSbjListFn()
  1823. }
  1824. })
  1825. },
  1826. getSubmit(){
  1827. var that=this;
  1828. // 判断附件是否完整
  1829. var params=this.datainfo;
  1830. if(!params.enterpriseName){
  1831. this.$toast("请选择企业名称")
  1832. return
  1833. }
  1834. if(!params.categoryType){
  1835. this.$toast("请选择行业类型")
  1836. return
  1837. }
  1838. if(!params.customerType){
  1839. this.$toast("请选择用户类型")
  1840. return
  1841. }
  1842. if(!params.corporationFront){
  1843. this.$toast("请上传法人身份证人面像")
  1844. return
  1845. }
  1846. if(!params.corporationBack){
  1847. this.$toast("请上传法人身份证国徽面")
  1848. return
  1849. }
  1850. // if(!params.corporationJob){
  1851. // this.$toast("请输入法人职业")
  1852. // return
  1853. // }
  1854. if(!params.isLoan){
  1855. this.$toast("请选择有无贷款")
  1856. return
  1857. }
  1858. if(!this.frhyzk){
  1859. this.$toast("请选择婚姻状态")
  1860. return
  1861. }
  1862. if(params.corporationMaritalStatus==1){
  1863. if(!params.spouseFront){
  1864. this.$toast("请上传配偶身份证人像面")
  1865. return
  1866. }
  1867. if(!params.spouseBack){
  1868. this.$toast("请上传配偶身份证国徽面")
  1869. return
  1870. }
  1871. }
  1872. if(!params.guaranteeType){
  1873. this.$toast("请选择担保类型")
  1874. return
  1875. }
  1876. if(!params.corporationPhone){
  1877. // 验证手机号
  1878. this.$toast("请输入法人手机号")
  1879. return
  1880. }
  1881. let regphone = /^1[3|4|5|6|7|8|9][0-9]\d{8}$/
  1882. if (params.corporationPhone && !regphone.test(params.corporationPhone)) {
  1883. that.$toast("请输入正确的法人手机号")
  1884. return
  1885. }
  1886. var gdlist=this.gdlist;
  1887. var shFjList=[]
  1888. var a=0;
  1889. Object.keys(gdlist).some((key) => {
  1890. var str="请上传股东"+(Number(key)+1)
  1891. if(gdlist[key].zhizhao<1 && !gdlist[key].cardz){
  1892. a=1;
  1893. that.$toast(str+'营业执照或者身份证')
  1894. return true;
  1895. }else{
  1896. if(gdlist[key].cardz){
  1897. if(!gdlist[key].cardf){
  1898. a=1;
  1899. that.$toast(str+'身份证国徽面')
  1900. return true;
  1901. }
  1902. }
  1903. }
  1904. // if(!gdlist[key].cardz){
  1905. // a=1;
  1906. // that.$toast(str+"身份证人像面")
  1907. // return true;
  1908. // }else if(!gdlist[key].cardf){
  1909. // a=1;
  1910. // that.$toast(str+'身份证国徽面')
  1911. // return true;
  1912. // }
  1913. if(gdlist[key].zxurl<1){
  1914. a=1;
  1915. that.$toast(str+'征信报告')
  1916. return true;
  1917. }
  1918. var fjurl={
  1919. shareholderFrontUrl:gdlist[key].cardz,
  1920. shareholderBackUrl:gdlist[key].cardf,
  1921. shareholderZxUrl:gdlist[key].zxurl.join(','),
  1922. shareholderBusinessUrl:gdlist[key].zhizhao.join(','),
  1923. }
  1924. shFjList.push(fjurl)
  1925. })
  1926. params.shareholderFjList=JSON.parse(JSON.stringify(shFjList))
  1927. if(a==1){
  1928. return
  1929. }
  1930. var flist=this.filelist;
  1931. var btfiles=JSON.parse(JSON.stringify(this.btfiles));
  1932. var sqbtfiles=JSON.parse(JSON.stringify(this.sqbtfiles));
  1933. if(params.guaranteeType==1){//抵押担保
  1934. var obj={tit:'企业固定资产证明',type:'qygdzczm'}
  1935. sqbtfiles.push(obj)
  1936. }
  1937. if(params.guaranteeType==2){//反担保人担保
  1938. // 选择担保人担保
  1939. if(!params.guaranteePhone){
  1940. // 验证手机号
  1941. this.$toast("请输入反担保人手机号")
  1942. return
  1943. }
  1944. if (params.guaranteePhone && !regphone.test(params.guaranteePhone)) {
  1945. that.$toast("请输入正确的反担保人手机号")
  1946. return
  1947. }
  1948. if(!params.guaranteeFront){
  1949. this.$toast("请上传法人身份证人面像")
  1950. return
  1951. }
  1952. if(!params.guaranteeBack){
  1953. this.$toast("请上传法人身份证国徽面")
  1954. return
  1955. }
  1956. }
  1957. var b=0;
  1958. Object.keys(btfiles).some((key) => {
  1959. if (flist.find(l => l.type == btfiles[key].type)) {
  1960. return false
  1961. }else{
  1962. b=1;
  1963. that.$toast('请上传'+btfiles[key].tit)
  1964. return true;
  1965. }
  1966. })
  1967. if(b==1){
  1968. return
  1969. }
  1970. if(!params.isDuty){
  1971. this.$toast("请选择是否免税企业")
  1972. return
  1973. }
  1974. var sbfjlist=this.sbfjlist;
  1975. var sbArr=[]
  1976. var c=0;
  1977. Object.keys(sqbtfiles).some((key) => {
  1978. if (sbfjlist.find(l => (l.val == sqbtfiles[key].type) && l.fjlist.length>0)) {
  1979. return false
  1980. }else{
  1981. c=1;
  1982. that.$toast('请上传'+sqbtfiles[key].tit)
  1983. return true;
  1984. }
  1985. })
  1986. if(c==1){
  1987. return
  1988. }
  1989. sbfjlist.forEach(ite=>{
  1990. if(ite.fjlist&&ite.fjlist.length){
  1991. flist.push(ite.fjlist[0])
  1992. }
  1993. })
  1994. params.loanApplicationFjList=JSON.parse(JSON.stringify(flist))
  1995. if(this.ptype=='add'){
  1996. getApplicationAdd(params).then(res=>{
  1997. if(res.code==200){
  1998. that.$toast("新增成功")
  1999. setTimeout(function(){
  2000. that.$tab.redirectTo('/work/pages/success')
  2001. },1200)
  2002. }
  2003. })
  2004. }else{
  2005. getApplicationEdit(params).then(res=>{
  2006. if(res.code==200){
  2007. that.$toast("修改成功")
  2008. setTimeout(function(){
  2009. uni.$emit('refreshywlist')
  2010. uni.navigateBack({
  2011. delta:1
  2012. })
  2013. },1200)
  2014. }
  2015. })
  2016. }
  2017. //
  2018. // this.$tab.navigateTo('/work/pages/success')
  2019. },
  2020. getaddImage(e){
  2021. let that = this;
  2022. let file =[],count=9
  2023. // if(e=='zj'){
  2024. // file = that.zjfile;
  2025. // count=9
  2026. // }else{
  2027. // file = that.mjfile;
  2028. // count=9
  2029. // }
  2030. uni.chooseImage({
  2031. count: 1,
  2032. success:function(res){
  2033. let img= res.tempFilePaths;
  2034. if(img.length + file.length > count){
  2035. uni.showToast({
  2036. title: '最多上传'+count+'张图片',
  2037. icon: 'none',
  2038. duration: 2000
  2039. })
  2040. }else{
  2041. let imglen = res.tempFilePaths.length;
  2042. var fuwufile = [];
  2043. uploadmore('/common/upload',img,0,0,0,imglen,fuwufile,function(rs){
  2044. if(e=='zj'){
  2045. that.zjfile = that.zjfile.concat(rs);
  2046. that.datainfo.identificationPhoto=that.zjfile.join(',')
  2047. }
  2048. })
  2049. }
  2050. }
  2051. });
  2052. },
  2053. // 人像面
  2054. ponuploadEnd(item,fileVal,bigType){
  2055. var newobj={}
  2056. var responseText=JSON.parse(item.responseText)
  2057. var url=responseText.fileName
  2058. var urlOnline=responseText.urlOnline
  2059. if(fileVal=='frsfzrmx'){
  2060. this.datainfo.corporationFront=url;
  2061. // 获取姓名 身份证号
  2062. this.getocrIdCard(urlOnline,fileVal)
  2063. }else if(fileVal=='frsfzghm'){
  2064. this.datainfo.corporationBack=url
  2065. }else if(fileVal=='frsfzpormx'){
  2066. this.datainfo.spouseFront=url
  2067. this.getocrIdCard(urlOnline,fileVal)
  2068. }else if(fileVal=='frsfzpoghm'){
  2069. this.datainfo.spouseBack=url
  2070. }else if(fileVal=='fdbrsfzrmx'){
  2071. this.getocrIdCard(urlOnline,fileVal)
  2072. this.datainfo.guaranteeFront=url
  2073. }else if(fileVal=='fdbrsfzghm'){
  2074. this.datainfo.guaranteeBack=url
  2075. }
  2076. },
  2077. getDocumentList(){
  2078. var params={
  2079. explainType:2
  2080. }
  2081. getDocumentList(params).then(res=>{
  2082. if(res.code==200){
  2083. var list=res.rows;
  2084. if(list&&list.length){
  2085. var content=list[0].explainContent;
  2086. this.content=this.formatRichText(content);
  2087. // 图片
  2088. if(list[0].explainImage){
  2089. this.xwimgList=list[0].explainImage.split(',')
  2090. }
  2091. }
  2092. }
  2093. })
  2094. },
  2095. //解析富文本方法
  2096. formatRichText(html) {
  2097. let newContent = html.replace(/<img[^>]*>/gi, function(match, capture) {
  2098. match = match.replace(/style="[^"]+"/gi, '').replace(/style='[^']+'/gi, '').replace(/style=""/gi, '');
  2099. match = match.replace(/width="[^"]+"/gi, '').replace(/width='[^']+'/gi, '');
  2100. match = match.replace(/height="[^"]+"/gi, '').replace(/height='[^']+'/gi, '');
  2101. return match;
  2102. });
  2103. newContent = newContent.replace(/style="[^"]+"/gi, function(match, capture) {
  2104. match = match.replace(/width:[^;]+;/gi, 'max-width:100%;').replace(/width:[^;]+;/gi, 'max-width:100%;');
  2105. return match;
  2106. });
  2107. newContent = newContent.replace(/<br[^>]*\/>/gi, '');
  2108. newContent = newContent.replace(/\<img src="/gi,
  2109. '<img style="max-width:100%;height:auto;display:block;margin:10rpx auto;" src="' +baseUrlimg);
  2110. return newContent;
  2111. },
  2112. getocrIdCard(url,type){
  2113. var that=this;
  2114. var burl=url;
  2115. var params={
  2116. image:url,
  2117. idCardSide:'front'
  2118. }
  2119. getOcrIdCard(params).then(res=>{
  2120. if(res.code==200){
  2121. var data=res.data;
  2122. if(type=='frsfzrmx'){
  2123. that.datainfo.corporationName=data.realName
  2124. that.datainfo.corporationIdCard=data.idCard
  2125. }else if(type=='frsfzpormx'){
  2126. that.datainfo.spouseName=data.realName
  2127. that.datainfo.spouseIdCard=data.idCard
  2128. }else if(type=='fdbrsfzrmx'){
  2129. that.datainfo.guaranteeName=data.realName
  2130. that.datainfo.guaranteeIdCard=data.idCard
  2131. }
  2132. }
  2133. })
  2134. },
  2135. onuploadEnd(item,fileVal,bigType) {
  2136. var newobj={}
  2137. var responseText=JSON.parse(item.responseText)
  2138. newobj.name=responseText.newFileName;
  2139. newobj.oldName=responseText.originalFilename;
  2140. newobj.url=responseText.fileName;
  2141. newobj.type=fileVal;
  2142. newobj.bigType=bigType;
  2143. this.filelist.push(newobj)
  2144. this.datainfo.loanApplicationFjList=JSON.parse(JSON.stringify(this.filelist))
  2145. },
  2146. // 股东附件上传
  2147. gdonuploadEnd(item,fileVal,bigType){
  2148. var idx=Number(fileVal);
  2149. var type=bigType;
  2150. var obj=this.gdlist[idx];
  2151. var responseText=JSON.parse(item.responseText);
  2152. if(type=='cardz'){
  2153. obj.cardz=responseText.fileName
  2154. }else if(type=='cardf'){
  2155. obj.cardf=responseText.fileName
  2156. }else if(type=='zx'){
  2157. // obj.zxurl.push(responseText.fileName)
  2158. obj.zxurl[0]=responseText.fileName
  2159. }else if(type=='zhz'){
  2160. // obj.zxurl.push(responseText.fileName)
  2161. obj.zhizhao[0]=responseText.fileName
  2162. }
  2163. console.log(this.gdlist,3)
  2164. this.gdlist.splice(idx,1,obj)
  2165. // this.datainfo.shareholderFjList=JSON.parse(JSON.stringify(this.gdlist))
  2166. },
  2167. // 申请附件上传
  2168. fjonuploadEnd(item,fileVal,bigType,idx){
  2169. var newobj={};
  2170. var sbfjlist=this.sbfjlist[idx].fjlist;
  2171. var responseText=JSON.parse(item.responseText)
  2172. newobj.name=responseText.newFileName;
  2173. newobj.oldName=responseText.originalFilename;
  2174. newobj.url=responseText.fileName;
  2175. newobj.type=fileVal;
  2176. newobj.bigType=bigType;
  2177. this.sbfjlist[idx].fjlist.push(newobj)
  2178. },
  2179. getDelsbFj(idx,fidx){
  2180. var that=this;
  2181. var obj=this.sbfjlist[idx];
  2182. uni.showModal({
  2183. title: '确认删除',
  2184. content: "是否确认删除",
  2185. cancelText: '取消',
  2186. confirmText: '确认',
  2187. success: function(res) {
  2188. if (res.confirm) {
  2189. obj.fjlist.splice(fidx,1)
  2190. that.sbfjlist.splice(idx,1,obj)
  2191. } else if (res.cancel) {
  2192. }
  2193. }
  2194. });
  2195. },
  2196. getDelgdFj(idx,zxidx){
  2197. var obj=this.gdlist[idx];
  2198. var that=this;
  2199. uni.showModal({
  2200. title: '确认删除',
  2201. content: "是否确认删除",
  2202. cancelText: '取消',
  2203. confirmText: '确认',
  2204. success: function(res) {
  2205. if (res.confirm) {
  2206. obj.zxurl.splice(zxidx,1)
  2207. that.gdlist.splice(idx,1,obj)
  2208. } else if (res.cancel) {
  2209. }
  2210. }
  2211. });
  2212. },
  2213. getDelgdyy(idx,zxidx){
  2214. var obj=this.gdlist[idx];
  2215. var that=this;
  2216. uni.showModal({
  2217. title: '确认删除',
  2218. content: "是否确认删除",
  2219. cancelText: '取消',
  2220. confirmText: '确认',
  2221. success: function(res) {
  2222. if (res.confirm) {
  2223. obj.zhizhao.splice(zxidx,1)
  2224. that.gdlist.splice(idx,1,obj)
  2225. } else if (res.cancel) {
  2226. }
  2227. }
  2228. });
  2229. },
  2230. getDelFj(idx){
  2231. var that=this;
  2232. uni.showModal({
  2233. title: '确认删除',
  2234. content: "是否确认删除",
  2235. cancelText: '取消',
  2236. confirmText: '确认',
  2237. success: function(res) {
  2238. if (res.confirm) {
  2239. that.filelist.splice(idx,1)
  2240. that.datainfo.loanApplicationFjList=JSON.parse(JSON.stringify(that.filelist))
  2241. } else if (res.cancel) {
  2242. }
  2243. }
  2244. });
  2245. },
  2246. getDownloader(path,name){
  2247. // console.log(path,name)
  2248. // #ifdef APP-PLUS
  2249. self.getFilePermissions(function(res){
  2250. if(res==1){
  2251. uni.showLoading({
  2252. title: '加载中'
  2253. });
  2254. var url = baseUrl + path;
  2255. let dtask = plus.downloader.createDownload(url, {
  2256. filename: 'file://storage/emulated/0/'+baseName+'/' + name
  2257. }, (d, status) => {
  2258. //d为下载的文件对象
  2259. if (status == 200) {
  2260. uni.hideLoading();
  2261. uni.showToast({
  2262. icon: 'none',
  2263. mask: true,
  2264. title: '已保存到文件夹:/'+baseName+'/'+ name, //保存路径
  2265. duration: 3000,
  2266. });
  2267. //下载成功,d.filename是文件在保存在本地的相对路径,使用下面的API可转为平台绝对路径
  2268. let fileSaveUrl = plus.io.convertLocalFileSystemURL(d.filename);
  2269. setTimeout(() => {
  2270. plus.runtime.openFile(d.filename); //选择软件打开文件
  2271. }, 1500)
  2272. } else {
  2273. //下载失败
  2274. uni.hideLoading();
  2275. plus.downloader.clear(); //清除下载任务
  2276. uni.showToast({
  2277. icon: 'none',
  2278. mask: true,
  2279. title: '下载失败,请稍后重试',
  2280. });
  2281. }
  2282. })
  2283. dtask.start();
  2284. }else{
  2285. uni.hideLoading();
  2286. uni.showToast({
  2287. title: '无法获取权限,文件下载将出错!',
  2288. icon: 'none',
  2289. })
  2290. }
  2291. })
  2292. // #endif
  2293. },
  2294. getExportMb(ite){
  2295. var that=this;
  2296. var params=this.datainfo;
  2297. if(ite.val=='wtdbsqs'){
  2298. params.type=1;
  2299. }else{
  2300. params.type=11;
  2301. }
  2302. params.bigType='b';
  2303. params.fileType=ite.val;
  2304. getExportMb(params).then(res=>{
  2305. if(res.code==200){
  2306. var data=res.data;
  2307. var url=data.path;
  2308. var name=data.fileName;
  2309. that.getDownloader(url,name)
  2310. }
  2311. })
  2312. },
  2313. getDown(e){
  2314. uni.showLoading({
  2315. title: '加载中'
  2316. });
  2317. var url=baseUrl+e;
  2318. let index1 = e.lastIndexOf("."); // 得到一个索引值
  2319. let index2 = e.length;
  2320. let type = e.substring(index1, index2);
  2321. if ((type.indexOf('jpg') > -1 || type.indexOf('jpeg') > -1 || type.indexOf('png') > -1)) {
  2322. uni.previewImage({
  2323. current: 0,
  2324. urls: [url],
  2325. // background: '#ffffff'
  2326. });
  2327. uni.hideLoading();
  2328. } else {
  2329. uni.downloadFile({
  2330. url: url,//文件的下载路径
  2331. success(result) {
  2332. uni.hideLoading()
  2333. var filePath = result.tempFilePath;
  2334. uni.openDocument({
  2335. filePath: filePath,
  2336. showMenu: true,
  2337. success: function (res) {
  2338. // console.log('打开文档成功');
  2339. }
  2340. });
  2341. },
  2342. fail(res) {uni.hideLoading()}
  2343. })
  2344. }
  2345. },
  2346. }
  2347. }
  2348. </script>
  2349. <style lang="scss" scoped>
  2350. .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;}
  2351. .addbox .bgf /deep/ .uni-forms-item:last-child{border-bottom: none;}
  2352. .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;}
  2353. .addbox /deep/ .uni-easyinput{flex: 1;text-align: left;font-size: 30rpx;color: #222327;}
  2354. .addbox /deep/ .uni-easyinput__content-textarea{min-height: 40rpx;font-size: 30rpx;}
  2355. .addbox /deep/ .uni-easyinput__placeholder-class{font-size: 30rpx;color: #AAAAAA;}
  2356. .addbox /deep/ .uni-input-input{font-size: 30rpx;}
  2357. .addbox /deep/ .uni-easyinput__content-input{padding-left: 0 !important;}
  2358. .addbox /deep/ .uni-textarea-textarea{font-size: 30rpx;}
  2359. .addbox /deep/ .is-disabled{color: #222327;background-color: #ffffff !important;}
  2360. .isborder{border-bottom: 2rpx solid #E6E6E6;}
  2361. .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;
  2362. position: absolute;left: -240rpx;top:50%;transform: translateY(-50%);
  2363. text{color: #AAAAAA;font-size: 26rpx;font-weight: normal;display: block;
  2364. &.del{
  2365. color: #FF6969;margin-top: 6rpx;text-align: center;padding: 4rpx 0;
  2366. }
  2367. }
  2368. }
  2369. .navtop{
  2370. position: fixed;left:0;right: 0;top: 0;z-index: 2;
  2371. }
  2372. .topl{width: 60rpx;height: 60rpx;display: flex;align-items: center;justify-content: center;
  2373. image{width: 40rpx;height: 30rpx;}
  2374. }
  2375. .edit{font-weight: 500;font-size: 26rpx;color: #FFFFFF;display: flex;align-items: center;
  2376. image{width: 24rpx;height: 26rpx;margin-right: 10rpx;}
  2377. .img{width: 24rpx;height: 26rpx;margin-right: 10rpx;}
  2378. .txt{font-weight: 500;font-size: 26rpx;color: #FFFFFF;}
  2379. }
  2380. .editcir{box-shadow: 0px 0px 20rpx 0px rgba(0,169,240,0.6);
  2381. 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;
  2382. .img{margin-bottom: 8rpx;margin-right: 0;}
  2383. }
  2384. .addbox{padding: 140rpx 0 136rpx;
  2385. .addtit{font-weight: bold;padding: 18rpx 34rpx;font-size: 26rpx;color: #666666;
  2386. text{color: #DF0303;margin-right: 8rpx;}
  2387. .ywimg{width: 30rpx;height: 30rpx;margin-left: 16rpx;}
  2388. &.tips{font-weight: 500;font-size: 24rpx;color: #FF6969;}
  2389. }
  2390. .lbtabp{
  2391. display: flex;align-items: center;
  2392. view{flex: 1;font-size: 30rpx;color: #222327;}
  2393. .rimg{flex: 0 0 auto;width: 16rpx;height: 26rpx;flex: 0 0 auto;margin-left: 18rpx;}
  2394. }
  2395. .ywicon{font-weight: 400;font-size: 26rpx;color: $com-cd3;padding-right: 14rpx;
  2396. image{width: 26rpx;height: 26rpx;margin-right: 8rpx;}
  2397. }
  2398. // 上传样式
  2399. .phobox{display: flex;flex-wrap: wrap;justify-content: space-between;
  2400. .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;
  2401. .photop{width: 200rpx;height: 126rpx;position: relative;
  2402. .bgimg{width: 100%;height: 100%;}
  2403. .addimg{width: 34rpx;height: 30rpx;position: absolute;left: 50%;margin-left: -17rpx;top: 50%;margin-top: -15rpx;z-index: 1;}
  2404. .delimg{position: absolute;width: 24rpx;height: 24rpx;right: -12rpx;top: -12rpx;}
  2405. .bgimga{width: 100%;height: 100%;position: absolute;left:0;right: 0;top:0;bottom: 0;}
  2406. }
  2407. // .pupdata{position: absolute;left: 0;right: 0;top:0;bottom: 0;opacity: 0;}
  2408. .photit{font-weight: 500;font-size: 20rpx;color: #AAAAAA;margin-top: 18rpx;max-width:200rpx;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
  2409. &.atit{position: absolute;left: 50%;transform: translate(-50%);bottom: 4rpx;word-break: keep-all;max-width: none;}
  2410. }
  2411. }
  2412. .frdelimg{
  2413. position: absolute;width: 32rpx;height: 32rpx;right: -16rpx;top: -16rpx;
  2414. image{width: 24rpx;height: 24rpx;}
  2415. }
  2416. }
  2417. .addgdbox{padding: 34rpx 10rpx 36rpx;}
  2418. // 附件
  2419. .fjbox{padding: 24rpx 0;
  2420. min-height: 150rpx;box-sizing: border-box;
  2421. // &:last-child{border-bottom: none;border-bottom: 2rpx solid #E6E6E6;}
  2422. .fjtop{
  2423. &.chek{
  2424. .chtit{flex: 1;font-size: 30rpx;color: #222327;text-align: right;}
  2425. .rimg{flex: 0 0 auto;width: 16rpx;height: 26rpx;flex: 0 0 auto;margin-left: 18rpx;}
  2426. }
  2427. .ftit{font-weight: bold;font-size: 32rpx;color: #161616;flex: 1;padding:28rpx 0;
  2428. text{color: #DF0303;margin-right: 8rpx;}
  2429. .mtxt{color: #AAAAAA;font-size: 26rpx;}
  2430. }
  2431. .fbtns{font-weight: 500;font-size: 26rpx;padding-right: 12rpx;margin-left: 36rpx;display: flex;align-items: center;height: 100rpx;justify-content: center;
  2432. image{width: 22rpx;height: 22rpx;margin-right: 10rpx;
  2433. &.downimg{width: 20rpx;}
  2434. }
  2435. }
  2436. }
  2437. }
  2438. // 18
  2439. .fjlists {display: flex;align-items: flex-start;justify-content: space-between;margin-bottom: 12rpx;
  2440. // image{flex: 0 0 auto;}
  2441. .imgl{width: 40rpx;height: 40rpx;display: flex;align-items: center;flex: 0 0 auto;
  2442. image{width: 26rpx;height: 24rpx;}
  2443. }
  2444. .tit{font-size: 26rpx;color: #222327;font-weight: 500;margin-top: 4rpx;}
  2445. .delimg{width: 40rpx;height:40rpx;margin-left: 16rpx;display: flex;align-items: center;justify-content: center;flex: 0 0 auto;
  2446. image{width: 24rpx;height: 24rpx;}
  2447. }
  2448. }
  2449. }
  2450. .addbtns{z-index: 4;
  2451. width: 100%;height: 100rpx;position: fixed;left: 0;right: 0;bottom: 0;display: flex;
  2452. .addlbtn{background-color: #ffffff;font-weight: 500;justify-content: center;
  2453. display: flex;align-items: center;width: 232rpx;flex: 0 0 auto;height: 100rpx;
  2454. .addlbtna{width: 32rpx;height: 32rpx;margin-right: 12rpx;display: block;}
  2455. .addlbtnb{font-size: 30rpx;color: $com-cd3;}
  2456. }
  2457. }
  2458. .addrbtn{flex: 1;height: 100rpx;font-weight: bold;font-size: 30rpx;display: flex;align-items: center;justify-content: center;
  2459. color: #FFFFFF;text-align: center;line-height: 100rpx;
  2460. &.bga{background: #29E18A;}
  2461. &.bgb{background: $com-cd3;}
  2462. }
  2463. // 标准
  2464. .looimg{width: 100%;height: 400rpx;position: fixed;left: 0;right: 0;top: 50%;margin-top: -200rpx;z-index: 10;}
  2465. </style>