add.vue 94 KB

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