popup.vue 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252
  1. <template>
  2. <view>
  3. <!-- 弹窗 -->
  4. <view class="bgbox" @click="getClose" v-if="type"></view>
  5. <!-- 业务进度 -->
  6. <view class="speedbox" v-if="type=='ywjd'">
  7. <view class="tit">业务进度</view>
  8. <view class="lists" v-for="(ite,idx) in stepList" :key='idx'>
  9. <view class="listl">
  10. <image :src="stepa" class="imga" v-if="Number(stepval)>Number(ite.loanScheduleValue)"></image>
  11. <image :src="stepb" v-else-if="stepval==ite.loanScheduleValue"></image>
  12. <image :src="stepc" v-else></image>
  13. </view>
  14. <view class="listr">
  15. <view class="ltit" :class="stepval==ite.loanScheduleValue?'act':''">{{ite.loanScheduleName}}</view>
  16. <view class="ltxt">{{ite.loanScheduleTime}}</view>
  17. </view>
  18. </view>
  19. </view>
  20. <!-- 业务审核 -->
  21. <view class="fixbox" v-if="type=='sh'">
  22. <view class="cloimg" @click="getClose">
  23. <image :src="closeimg"></image>
  24. </view>
  25. <view class="ttit">业务审核</view>
  26. <view class="mb16">
  27. <view class="ttxt mb18">是否同意进入初审</view>
  28. <uni-data-checkbox :selectedColor="actcolor" v-model="isty" :localdata="tyList" />
  29. </view>
  30. <view class="mb16">
  31. <view class="ttxt mb18">审核意见</view>
  32. <textarea class="textar" style="min-height: 156rpx;" maxlength="-1" autoHeight="true" v-model="shtext" placeholder="若不同意进入初审,请填写理由…"></textarea>
  33. </view>
  34. <block v-if="isty!=3">
  35. <view class="mb16">
  36. <!-- :chosevalue="datainfo.name" -->
  37. <view class="ttxt mb18">分配A角</view>
  38. <w-select
  39. :list='userList'
  40. valueName='userName'
  41. keyName="userId"
  42. :filterable='filterable'
  43. width='100%'
  44. height="44px"
  45. @change='getchangea'
  46. >
  47. </w-select>
  48. </view>
  49. <view class="mb16">
  50. <view class="ttxt mb18">分配B角</view>
  51. <w-select
  52. :list='userList'
  53. valueName='userName'
  54. keyName="userId"
  55. :filterable='filterable'
  56. width='100%'
  57. height="44px"
  58. @change='getchangeb'
  59. >
  60. </w-select>
  61. <!-- <uni-data-select v-model="mycdtxt" placeholder="请选择B角" :localdata="mycdlist" ></uni-data-select> -->
  62. </view>
  63. <view class="mb16">
  64. <view class="ttxt mb18">分配风险人员</view>
  65. <w-select
  66. :list='userList'
  67. valueName='userName'
  68. keyName="userId"
  69. :filterable='filterable'
  70. width='100%'
  71. height="44px"
  72. @change='getchangec'
  73. >
  74. </w-select>
  75. <!-- <uni-data-select v-model="mycdtxt" placeholder="请选择B角" :localdata="mycdlist" ></uni-data-select> -->
  76. </view>
  77. </block>
  78. <!-- <view class="btns" @click="getupSubmit">确认<block v-if="isty!=3">并生成担保意向函</block></view> -->
  79. <view class="btns" @click="getupSubmit">确认</view>
  80. </view>
  81. <!-- a,b角色审核 -->
  82. <view class="fixbox" v-if="type=='ajssh'||type=='bjssh'">
  83. <view class="cloimg" @click="getClose">
  84. <image :src="closeimg"></image>
  85. </view>
  86. <view class="ttit">担保初审</view>
  87. <view class="mb16">
  88. <view class="ttxt mb18">是否通过</view>
  89. <uni-data-checkbox :selectedColor="actcolor" v-model="isty" :localdata="tgList" />
  90. </view>
  91. <view >
  92. <view class="ttxt mb18">审核意见</view>
  93. <textarea class="textar" style="min-height: 156rpx;" maxlength="-1" autoHeight="true" v-model="shtext" placeholder="若资料不予通过,请填写理由…"></textarea>
  94. </view>
  95. <view class="btns" @click="getupSubmit">确认</view>
  96. <view class="shtips" v-if="type=='ajssh'">* 提交后将交由B角复核,误操可撤回</view>
  97. <view class="shtips" v-if="type=='bjssh'">* 提交后将交由风险部进行风险审核,误操可撤回</view>
  98. </view>
  99. <!-- 风险部审核 fxsh-->
  100. <view class="fixbox" v-if="type=='fxsh'">
  101. <view class="cloimg" @click="getClose">
  102. <image :src="closeimg"></image>
  103. </view>
  104. <view class="ttit">风险审核</view>
  105. <view class="mb16">
  106. <view class="ttxt mb18">是否通过</view>
  107. <uni-data-checkbox :selectedColor="actcolor" v-model="isty" :localdata="tgList" />
  108. </view>
  109. <view class="mb16">
  110. <view class="ttxt mb18">审核意见</view>
  111. <textarea class="textar" style="min-height: 156rpx;" maxlength="-1" autoHeight="true" v-model="shtext" placeholder="若资料不予通过,请填写理由…"></textarea>
  112. </view>
  113. <view class="btns" @click="getupSubmit">确认</view>
  114. </view>
  115. <!-- 初审风险审核 -->
  116. <view class="fixbox" v-if="type=='fxbmsh'">
  117. <view class="cloimg" @click="getClose">
  118. <image :src="closeimg"></image>
  119. </view>
  120. <view class="ttit">风险审核</view>
  121. <view class="mb16">
  122. <view class="ttxt mb18">是否通过</view>
  123. <uni-data-checkbox :selectedColor="actcolor" v-model="isty" :localdata="tgList" />
  124. </view>
  125. <view class="mb16">
  126. <view class="ttxt mb18">审核意见</view>
  127. <textarea class="textar" style="min-height: 156rpx;" maxlength="-1" autoHeight="true" v-model="shtext" placeholder="若资料不予通过,请填写理由…"></textarea>
  128. </view>
  129. <view class="mb16">
  130. <!-- 担保项目合法合规表 -->
  131. <view class="ttxt mb18 flexcj">附件信息
  132. <lsj-upload ref="lsjUpload" childId="upload1" :loanApplicationId="loanApplicationId" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  133. @progress="" @uploadEnd="onuploadEnd" :fileName="wjcjobj.dbxmhfhgb" fileVal='dbxmhfhgb' bigType="c">
  134. <view class="fbtns co0a" :style="{width: width,height: height}">上传附件</view>
  135. </lsj-upload>
  136. </view>
  137. <view class="fjlists" v-for="(fite,fidx) in filelist" :key='fidx'>
  138. <view class="flext" @click="getDown(fite.url)">
  139. <view class="imgl"><image :src="filico" ></image></view>
  140. <view class="tit">{{fite.name}}</view>
  141. </view>
  142. <view class="delimg flex0" @click.stop="getDelFj(idx)">
  143. <image :src="fdelimg"></image>
  144. </view>
  145. </view>
  146. </view>
  147. <view class="btns" @click="getupSubmit">确认</view>
  148. </view>
  149. <!-- 上会同意 1-->
  150. <view class="fixbox" v-if="type=='shshty'">
  151. <view class="cloimg" @click="getClose">
  152. <image :src="closeimg"></image>
  153. </view>
  154. <view class="ttit">上会审核</view>
  155. <view class="mb16">
  156. <view class="ttxt mb18">是否同意上评审会</view>
  157. <uni-data-checkbox :selectedColor="actcolor" v-model="isty" :localdata="tyList" />
  158. </view>
  159. <view class="mb16">
  160. <view class="ttxt mb18">审核意见</view>
  161. <textarea class="textar" v-model="shtext" style="min-height: 156rpx;" maxlength="-1" autoHeight="true" placeholder="若不同意上会,请填写理由…"></textarea>
  162. </view>
  163. <view class="btns" style="margin-top: 18rpx;" @click="getupSubmit">确认</view>
  164. </view>
  165. <!-- 上会管理员审核2 shsh -->
  166. <view class="fixbox" v-if="type=='shsh'">
  167. <view class="cloimg" @click="getClose">
  168. <image :src="closeimg"></image>
  169. </view>
  170. <view class="ttit">上会日期</view>
  171. <!-- <view class="mb16">
  172. <view class="ttxt mb18">是否同意上评审会</view>
  173. <uni-data-checkbox :selectedColor="actcolor" v-model="isty" :localdata="tyList" />
  174. </view> -->
  175. <view class="mb16" v-if="isty!=3">
  176. <view class="ttxt mb18">评审会日期</view>
  177. <picker mode="date" @change='bindDateChangea'>
  178. <view class="chekt">
  179. <view :class="jtri?'':'coa'">{{jtri|| "请选择具体日期"}}</view>
  180. <image :src="upimg"></image>
  181. </view>
  182. </picker>
  183. </view>
  184. <view class="mb16" v-if="isty!=3">
  185. <view class="ttxt mb18">评审会时间</view>
  186. <picker mode="time" @change='bindDateChangeb'>
  187. <view class="chekt">
  188. <view :class="jtsj?'':'coa'">{{jtsj|| "请选择具体时间"}}</view>
  189. <image :src="upimg"></image>
  190. </view>
  191. </picker>
  192. </view>
  193. <!-- <view class="mb16">
  194. <view class="ttxt mb18">审核意见</view>
  195. <textarea class="textar" v-model="shtext" style="min-height: 156rpx;" maxlength="-1" autoHeight="true" placeholder="若不同意上会,请填写理由…"></textarea>
  196. </view> -->
  197. <!-- <view class="mb16" v-if="isty!=3">
  198. <view class="ttxt mb18 flexcj">评委
  199. <view class="addsh" @click="getAddFn" >
  200. <image :src="addpeimg"></image>添加评委
  201. </view>
  202. </view>
  203. <view class="peolists">
  204. <view class="plist" v-for="(ite,idx) in shrylist" :key="idx">
  205. <view class="flex1 over">{{ite.realName}}</view>
  206. <image :src="fdelimg" @click="getDelRy(idx)"></image>
  207. </view>
  208. </view>
  209. </view> -->
  210. <!-- <view class="shshtips">* 确认上会后,即出具评审意见签批表、股东会决议</view> -->
  211. <view class="btns" style="margin-top: 18rpx;" @click="getupSubmit">确认</view>
  212. </view>
  213. <!-- 上会投票3 shshtp -->
  214. <view class="fixbox" v-if="type=='shshtp'">
  215. <view class="cloimg" @click="getClose">
  216. <image :src="closeimg"></image>
  217. </view>
  218. <view class="ttit">上会投票</view>
  219. <view class="mb16">
  220. <view class="ttxt mb18">是否同意</view>
  221. <uni-data-checkbox :selectedColor="actcolor" v-model="issf" :localdata="sfList" />
  222. </view>
  223. <view class="mb16">
  224. <view class="ttxt mb18">担保额度</view>
  225. <view class="flexc chektinp">
  226. <input placeholder="请输入担保额度" type="number" v-model="dbed" placeholder-class="coa" class="flex1"/>
  227. <view class="ltit flex0 ml8">万元</view>
  228. </view>
  229. </view>
  230. <view class="mb16">
  231. <view class="ttxt mb18">担保期限</view>
  232. <view class="flexc chektinp">
  233. <input placeholder="请输入担保期限" type="number" v-model="dbqx" placeholder-class="coa" class="flex1"/>
  234. <view class="ltit flex0 ml8">月</view>
  235. </view>
  236. </view>
  237. <view class="mb16">
  238. <view class="ttxt mb18">意见</view>
  239. <textarea class="textar" v-model="shtext" style="min-height: 156rpx;" maxlength="-1" autoHeight="true" placeholder="若不同意上会,请填写理由…"></textarea>
  240. </view>
  241. <!-- <view class="shshtips">* 确认上会后,即出具评审意见签批表、股东会决议</view> -->
  242. <view class="btns" style="margin-top: 18rpx;" @click="getupSubmit">确认</view>
  243. </view>
  244. <!-- 重新投票 cxtp -->
  245. <view class="fixbox" v-if="type=='cxtp'">
  246. <view class="cloimg" @click="getClose">
  247. <image :src="closeimg"></image>
  248. </view>
  249. <view class="ttit">投票日期</view>
  250. <view class="mb16" v-if="isty!=3">
  251. <view class="ttxt mb18">投票日期</view>
  252. <picker mode="date" @change='bindDateChangea'>
  253. <view class="chekt">
  254. <view :class="jtri?'':'coa'">{{jtri|| "请选择投票日期"}}</view>
  255. <image :src="upimg"></image>
  256. </view>
  257. </picker>
  258. </view>
  259. <view class="mb16" v-if="isty!=3">
  260. <view class="ttxt mb18">投票时间</view>
  261. <picker mode="time" @change='bindDateChangeb'>
  262. <view class="chekt">
  263. <view :class="jtsj?'':'coa'">{{jtsj|| "请选择投票时间"}}</view>
  264. <image :src="upimg"></image>
  265. </view>
  266. </picker>
  267. </view>
  268. <view class="btns" style="margin-top: 18rpx;" @click="getupSubmit">确认</view>
  269. </view>
  270. <!-- 申诉 -->
  271. <view class="fixbox" v-if="type=='sssh'">
  272. <view class="cloimg" @click="getClose">
  273. <image :src="closeimg"></image>
  274. </view>
  275. <view class="ttit">申诉</view>
  276. <view class="mb16">
  277. <view class="ttxt mb18">是否通过</view>
  278. <uni-data-checkbox :selectedColor="actcolor" v-model="isty" :localdata="tgList" />
  279. </view>
  280. <view class="mb16">
  281. <view class="ttxt mb18">审核意见</view>
  282. <textarea class="textar" style="min-height: 156rpx;" maxlength="-1" autoHeight="true" v-model="shtext" placeholder="若资料不予通过,请填写理由…"></textarea>
  283. </view>
  284. <!-- 其他附件 -->
  285. <view class="mb16">
  286. <view class="ttxt mb18 flexcj">附件信息
  287. <lsj-upload ref="lsjUpload" childId="upload1" :loanApplicationId="loanApplicationId" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  288. @progress="" @uploadEnd="onuploadEnd" :fileName="qtfjobj.qtfj" fileVal='qtfj' bigType="d">
  289. <view class="fbtns co0a" :style="{width: width,height: height}">上传附件</view>
  290. </lsj-upload>
  291. </view>
  292. <view class="fjlists" v-for="(fite,fidx) in filelist" :key='fidx'>
  293. <view class="flext" @click="getDown(fite.url)">
  294. <view class="imgl"><image :src="filico" ></image></view>
  295. <view class="tit">{{fite.name}}</view>
  296. </view>
  297. <view class="delimg flex0" @click.stop="getDelFj(idx)">
  298. <image :src="fdelimg"></image>
  299. </view>
  300. </view>
  301. </view>
  302. <view class="btns" @click="getupSubmit">确认</view>
  303. </view>
  304. <!-- 保后上传附件 -->
  305. <view class="fixbox" v-if="type=='bgfjadd'">
  306. <view class="cloimg" @click="getClose">
  307. <image :src="closeimg"></image>
  308. </view>
  309. <view class="ttit">上传附件</view>
  310. <view class="mb16">
  311. <view class="ttxt mb18 flexcj" v-if="bhxxobj[fjval]">附件信息
  312. <lsj-upload ref="lsjUpload" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  313. @progress="" @uploadEnd="onuploadEnd" :fileName="bhxxobj[fjval]" :fileVal='fjval' bigType="f">
  314. <view class="fbtns co0a" :style="{width: width,height: height}">上传附件</view>
  315. </lsj-upload>
  316. </view>
  317. <view class="fjlists" v-for="(fite,fidx) in filelist" :key='fidx'>
  318. <view class="flext" @click="getDown(fite.url)">
  319. <view class="imgl"><image :src="filico" ></image></view>
  320. <view class="tit">{{fite.name}}</view>
  321. </view>
  322. <view class="delimg flex0" @click.stop="getDelFj(idx)">
  323. <image :src="fdelimg"></image>
  324. </view>
  325. </view>
  326. </view>
  327. <view class="conbtns flexcj">
  328. <view class="cbtns bgb" @click="getfjAdd">确认</view>
  329. </view>
  330. </view>
  331. <!-- 上传借据 -->
  332. <view class="fixbox" v-if="type=='jj'">
  333. <view class="cloimg" @click="getClose">
  334. <image :src="closeimg"></image>
  335. </view>
  336. <view class="ttit">上传附件</view>
  337. <view class="mb16">
  338. <!-- 借据 -->
  339. <view class="ttxt mb18 flexcj">附件信息
  340. <lsj-upload ref="lsjUpload" childId="upload1" :width="width" :height="height" :option="jjoption" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  341. @progress="" @uploadEnd="jjonuploadEnd" :fileName="wjcjobj.jj" fileVal='jj' bigType="c">
  342. <view class="fbtns co0a" :style="{width: width,height: height}">上传附件</view>
  343. </lsj-upload>
  344. </view>
  345. <view class="fjlists" v-for="(fite,fidx) in filelist" :key='fidx'>
  346. <view class="flext" @click="getDown(fite.url)">
  347. <view class="imgl"><image :src="filico" ></image></view>
  348. <view class="tit">{{fite.name}}</view>
  349. </view>
  350. <view class="delimg flex0" @click.stop="getDelFj(idx)">
  351. <image :src="fdelimg"></image>
  352. </view>
  353. </view>
  354. </view>
  355. <view class="conbtns flexcj">
  356. <view class="cbtns bgb" @click="getfjAdd">确认</view>
  357. </view>
  358. <view class="shshtips">* 识别最新一条借据信息</view>
  359. </view>
  360. <!-- 上会上传附件 -->
  361. <view class="fixbox" v-if="type=='shpsyj'||type=='shshjy'">
  362. <view class="cloimg" @click="getClose">
  363. <image :src="closeimg"></image>
  364. </view>
  365. <view class="ttit">上传附件</view>
  366. <view class="mb16">
  367. <!-- 评审意见签批表 -->
  368. <view class="ttxt mb18 flexcj" v-if="type=='shpsyj'">附件信息
  369. <lsj-upload ref="lsjUpload" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  370. @progress="" @uploadEnd="onuploadEnd" :fileName="wjcjobj.psyjqpb" fileVal='psyjqpb' bigType="c">
  371. <view class="fbtns co0a" :style="{width: width,height: height}">上传附件</view>
  372. </lsj-upload>
  373. </view>
  374. <!-- 上会纪要 -->
  375. <view class="ttxt mb18 flexcj" v-if="type=='shshjy'">附件信息
  376. <lsj-upload ref="lsjUpload" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  377. @progress="" @uploadEnd="onuploadEnd" :fileName="wjcjobj.gdhyjy" fileVal='gdhyjy' bigType="c">
  378. <view class="fbtns co0a" :style="{width: width,height: height}">上传附件</view>
  379. </lsj-upload>
  380. </view>
  381. <view class="fjlists" v-for="(fite,fidx) in filelist" :key='fidx'>
  382. <view class="flext" @click="getDown(fite.url)">
  383. <view class="imgl"><image :src="filico" ></image></view>
  384. <view class="tit">{{fite.name}}</view>
  385. </view>
  386. <view class="delimg flex0" @click.stop="getDelFj(idx)">
  387. <image :src="fdelimg"></image>
  388. </view>
  389. </view>
  390. </view>
  391. <view class="conbtns flexcj">
  392. <!-- <view class="cbtns bga">暂存</view> -->
  393. <view class="cbtns bgb" @click="getfjAdd">确认</view>
  394. </view>
  395. </view>
  396. <!-- 上传附件 -->
  397. <view class="fixbox" v-if="type=='fjadd'">
  398. <view class="cloimg" @click="getClose">
  399. <image :src="closeimg"></image>
  400. </view>
  401. <view class="ttit">上传附件</view>
  402. <view class="mb16">
  403. <view class="ttxt mb18 flexcj" v-if="wjcjobj[fjval]">附件信息
  404. <lsj-upload ref="lsjUpload" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  405. @progress="" @uploadEnd="onuploadEnd" :fileName="wjcjobj[fjval]" :fileVal='fjval' bigType="c">
  406. <view class="fbtns co0a" :style="{width: width,height: height}">上传附件</view>
  407. </lsj-upload>
  408. </view>
  409. <view class="fjlists" v-for="(fite,fidx) in filelist" :key='fidx'>
  410. <view class="flext" @click="getDown(fite.url)">
  411. <view class="imgl"><image :src="filico" ></image></view>
  412. <view class="tit">{{fite.name}}</view>
  413. </view>
  414. <view class="delimg flex0" @click.stop="getDelFj(idx)">
  415. <image :src="fdelimg"></image>
  416. </view>
  417. </view>
  418. </view>
  419. <view class="conbtns flexcj">
  420. <!-- <view class="cbtns bga">暂存</view> -->
  421. <view class="cbtns bgb" @click="getfjAdd">确认</view>
  422. </view>
  423. </view>
  424. <!-- 其他附件 -->
  425. <view class="fixbox" v-if="type=='qtfjadd'">
  426. <view class="cloimg" @click="getClose">
  427. <image :src="closeimg"></image>
  428. </view>
  429. <view class="ttit">上传附件</view>
  430. <view class="mb16">
  431. <view class="ttxt mb18 flexcj" v-if="qtfjobj[fjval]">附件信息
  432. <lsj-upload ref="lsjUpload" childId="upload1" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  433. @progress="" @uploadEnd="onuploadEnd" :fileName="qtfjobj[fjval]" :fileVal='fjval' bigType="d">
  434. <view class="fbtns co0a" :style="{width: width,height: height}">上传附件</view>
  435. </lsj-upload>
  436. </view>
  437. <view class="fjlists" v-for="(fite,fidx) in filelist" :key='fidx'>
  438. <view class="flext" @click="getDown(fite.url)">
  439. <view class="imgl"><image :src="filico" ></image></view>
  440. <view class="tit">{{fite.name}}</view>
  441. </view>
  442. <view class="delimg flex0" @click.stop="getDelFj(idx)">
  443. <image :src="fdelimg"></image>
  444. </view>
  445. </view>
  446. </view>
  447. <view class="conbtns flexcj">
  448. <!-- <view class="cbtns bga">暂存</view> -->
  449. <view class="cbtns bgb" @click="getfjAdd">确认</view>
  450. </view>
  451. </view>
  452. <!-- 审核结果二次确认弹窗 -->
  453. <view class="fixbox con" v-if="type=='confirm'">
  454. <view class="cloimg" @click="getClose">
  455. <image :src="closeimg"></image>
  456. </view>
  457. <view class="ttit">确认提交审核意见</view>
  458. <view class="conttxt">请您二次确认对该项目资料提交 “<text>
  459. {{shtg==3?'不通过':'通过'}}
  460. </text>”的审核意见吗?</view>
  461. <view class="conbtns flexcj">
  462. <view class="cbtns bga" @click="getClose">取消</view>
  463. <view class="cbtns bgb" @click="getSure">确认</view>
  464. </view>
  465. </view>
  466. <!-- 尽职调查反馈 -->
  467. <view class="fixbox" v-if="type=='jztcsh'">
  468. <view class="cloimg" @click="getClose">
  469. <image :src="closeimg"></image>
  470. </view>
  471. <view class="ttit">业务审核</view>
  472. <!-- <view class="mb16">
  473. <view class="ttxt mb18">是否通过</view>
  474. <uni-data-checkbox :selectedColor="actcolor" v-model="isty" :localdata="tgList" />
  475. </view> -->
  476. <!-- <view class="mb16">
  477. <view class="ttxt mb18">审核意见</view>
  478. <textarea class="textar" v-model="shtext" style="height: 156rpx;" placeholder="若不同意,请填写理由…"></textarea>
  479. </view> -->
  480. <view class="mb16">
  481. <view class="ttxt mb18">上传照片</view>
  482. <view class="addpbox">
  483. <view class="plist addpimg" @click="getaddImage">
  484. <image :src="addpimg"></image>
  485. </view>
  486. <view class="plist" v-for="(ite,idx) in phofile" :key="idx">
  487. <image :src="baseUrl+ite" class="img"></image>
  488. <image :src="fdelimg" class="del" @click="getDelPh(idx)"></image>
  489. </view>
  490. </view>
  491. </view>
  492. <view class="ptips">* 点击添加照片可实时拍摄照片上传,也可由手 机相册中上传</view>
  493. <view class="mb16">
  494. <!-- 尽职调查报告 -->
  495. <view class="ttxt mb18 flexcj">附件信息
  496. <lsj-upload ref="lsjUpload" childId="upload1" :fileName="wjcjobj.jzdcbg" fileVal='jzdcbg' bigType="c" :width="width" :height="height" :option="option" :size="size" :formats="formats" :debug="debug" :instantly="instantly"
  497. @progress="" @uploadEnd="onuploadEnd" >
  498. <view class="fbtns co0a" :style="{width: width,height: height}">上传附件</view>
  499. </lsj-upload>
  500. </view>
  501. <view class="fjlists" v-for="(fite,fidx) in filelist" :key='fidx'>
  502. <view class="flext" @click="getDown(fite.url)">
  503. <view class="imgl"><image :src="filico" ></image></view>
  504. <view class="tit">{{fite.name}}</view>
  505. </view>
  506. <view class="delimg flex0" @click.stop="getDelFj(idx)">
  507. <image :src="fdelimg"></image>
  508. </view>
  509. </view>
  510. </view>
  511. <view class="conbtns flexcj">
  512. <view class="cbtns bga" @click="getClose">取消</view>
  513. <view class="cbtns bgb" @click="getupSubmit">确认</view>
  514. </view>
  515. </view>
  516. <!-- 人员弹窗 -->
  517. <block v-if="addflag">
  518. <view class="addboxbg" @click="getCloseAdd"></view>
  519. <view class="addbox">
  520. <view class="cloimg" @click="getCloseAdd">
  521. <image :src="closeimg"></image>
  522. </view>
  523. <view class="ttit">添加人员</view>
  524. <view class="peolists">
  525. <view class="plist" :class="shrylist.findIndex(text => text.userId === ite.userId)!=-1?'act':''" v-for="(ite,idx) in userList" :key="idx">
  526. <view class="flex1" @click="getChose(ite)">{{ite.userName}}</view>
  527. </view>
  528. </view>
  529. </view>
  530. </block>
  531. <!-- 富文本弹窗 -->
  532. <view class="fixbox con" v-if="type=='fwb'">
  533. <view class="cloimg" @click="getClose">
  534. <image :src="closeimg"></image>
  535. </view>
  536. <view class="ttit">小微企业说明</view>
  537. <view class="conttxt">
  538. <block v-if="xwimgList&&xwimgList.length">
  539. <image :src="baseUrl+ite" v-for="(ite,idx) in xwimgList" :key="idx" class="imgs" @click="getPreviewImage(xwimgList,idx)"></image>
  540. </block>
  541. <rich-text :nodes="content" v-else></rich-text>
  542. </view>
  543. <view class="conbtns flexcj">
  544. <view class="cbtns bga" @click="getClose">取消</view>
  545. <!-- <view class="cbtns bgb">确认</view> -->
  546. </view>
  547. </view>
  548. <!-- 暂缓出具弹窗 -->
  549. <view class="fixbox" v-if="type=='zhfkhgb'">
  550. <view class="cloimg" @click="getClose">
  551. <image :src="closeimg"></image>
  552. </view>
  553. <view class="ttit">风险审核</view>
  554. <view class="mb16">
  555. <view class="ttxt mb18">暂缓原因</view>
  556. <textarea class="textar" style="min-height: 156rpx;" maxlength="-1" autoHeight="true" v-model="shtext" placeholder="请填写理由…"></textarea>
  557. </view>
  558. <view class="btns" @click="getupSubmit">确认</view>
  559. </view>
  560. </view>
  561. </template>
  562. <script>
  563. import config from '@/config'
  564. const baseUrl = config.baseUrl
  565. import { getToken } from '@/utils/auth'
  566. import {uploadmore} from '@/utils/common.js'
  567. import wSelect from "@/work/components/w-select/w-select.vue"
  568. export default{
  569. components:{wSelect},
  570. props:{
  571. type: {
  572. type: String,
  573. default () {
  574. return ''
  575. }
  576. },
  577. stepList:{
  578. type: Array,
  579. default () {
  580. return []
  581. }
  582. },
  583. userList:{
  584. type: Array,
  585. default () {
  586. return []
  587. }
  588. },
  589. stepval:{
  590. type: [Number,String],
  591. default () {
  592. return 0
  593. }
  594. },
  595. content:{
  596. type: [Number,String],
  597. default () {
  598. return ''
  599. }
  600. },
  601. xwimgList:{
  602. type: Array,
  603. default () {
  604. return []
  605. }
  606. },
  607. shtg:{
  608. type: [Number,String],
  609. default () {
  610. return ''
  611. }
  612. },
  613. loanApplicationId:{
  614. type: [Number,String],
  615. default () {
  616. return ''
  617. }
  618. },
  619. loanApplicationNumber:{
  620. type: [Number,String],
  621. default () {
  622. return ''
  623. }
  624. },
  625. wjcjobj:{
  626. type: Object,
  627. default () {
  628. return {}
  629. }
  630. },
  631. bhxxobj:{
  632. type: Object,
  633. default () {
  634. return {}
  635. }
  636. },
  637. qtfjobj:{
  638. type: Object,
  639. default () {
  640. return {}
  641. }
  642. },
  643. fjval:{
  644. type: String,
  645. default () {
  646. return ''
  647. }
  648. },
  649. startady:{
  650. type: String,
  651. default () {
  652. return ''
  653. }
  654. }
  655. },
  656. data(){
  657. return{
  658. //附件
  659. option: {
  660. // 上传服务器地址,需要替换为你的接口地址
  661. url: baseUrl+'/common/uploadNew', // 该地址非真实路径,需替换为你项目自己的接口地址
  662. // 上传附件的key
  663. name: 'file',
  664. // 根据你接口需求自定义请求头,默认不要写content-type,让浏览器自适配
  665. header: {
  666. // 示例参数可删除
  667. 'Authorization': 'Bearer ' + getToken(),
  668. },
  669. // 根据你接口需求自定义body参数
  670. formData: {
  671. loanApplicationNumber:'',
  672. loanApplicationId:'',
  673. }
  674. },
  675. // 借据上传
  676. jjoption: {
  677. // 上传服务器地址,需要替换为你的接口地址
  678. url: baseUrl+'/common/uploadNewOcr', // 该地址非真实路径,需替换为你项目自己的接口地址
  679. // 上传附件的key
  680. name: 'file',
  681. // 根据你接口需求自定义请求头,默认不要写content-type,让浏览器自适配
  682. header: {
  683. // 示例参数可删除
  684. 'Authorization': 'Bearer ' + getToken(),
  685. },
  686. // 根据你接口需求自定义body参数
  687. formData: {
  688. loanApplicationNumber:'',
  689. loanApplicationId:'',
  690. }
  691. },
  692. // 选择文件后是否立即自动上传,true=选择后立即上传
  693. instantly: true,
  694. // 必传宽高且宽高应与slot宽高保持一致
  695. width: '',
  696. height: '40rpx',
  697. // 限制允许上传的格式,空串=不限制,默认为空
  698. formats: 'doc,docx,xls,xlsx,ppt,txt,pdf,zip,rar,word,png,jpg,jpeg',
  699. // 文件上传大小限制
  700. size: 100,
  701. // 文件数量限制 默认10
  702. count: 5,
  703. // 文件回显列表
  704. files: new Map(),
  705. // 微信小程序Map对象for循环不显示,所以转成普通数组,不要问为什么,我也不知道
  706. wxFiles: [],
  707. // 是否打印日志
  708. debug: false,
  709. filelist:[],
  710. stepa:require('@/work/static/images/busin/stepa.png'),
  711. stepb:require('@/work/static/images/busin/stepb.png'),
  712. stepc:require('@/work/static/images/busin/stepc.png'),
  713. closeimg:require('@/work/static/images/close.png'),
  714. filico:require('@/work/static/images/filico.png'),
  715. fdelimg:require('@/work/static/images/del.png'),
  716. addpimg:require('@/work/static/images/addp.png'),
  717. upimg:require('@/work/static/images/aup.png'),
  718. addpeimg:require('@/work/static/images/aap.png'),
  719. actcolor:'#00A9F0',
  720. tyList:[{text: '同意',value: '2'},{text: '不同意',value: '3'}],
  721. tgList:[{text: '通过',value: '2'},{text: '不通过',value: '3'}],
  722. sfList:[{text: '是',value: 'Y'},{text: '否',value: 'N'}],
  723. issf:'Y',
  724. mycdlist:[{text: 'a',value: '0'},{text: 'b',value: '1'}],
  725. isty:'2',//同意
  726. shtext:'',//审核意见
  727. dbed:'',//担保额度
  728. dbqx:'',//担保期限
  729. aUserId:'',//A角色用户ID
  730. aUserName:'',//A角色用户名称
  731. bUserId:'',//B角色用户ID
  732. bUserName:'',//B角色用户名称
  733. fUserId:'',//风险用户id
  734. fUserName:'',//风险用户名称
  735. mycdtxt:'',
  736. jtri:'',//具体日期
  737. jtsj:'',//具体时间
  738. filterable:true,
  739. chooseValue:'',
  740. phofile:[],
  741. baseUrl:'',
  742. shrylist:[],//参会人员
  743. addflag:false,
  744. actuallyAmount:'',//实际放贷金额(万元)
  745. actuallyTime:'',//实际放款时间
  746. }
  747. },
  748. mounted() {
  749. this.baseUrl=baseUrl
  750. },
  751. watch:{
  752. loanApplicationNumber(val){
  753. this.option.formData.loanApplicationNumber=val
  754. this.jjoption.formData.loanApplicationNumber=val
  755. },
  756. loanApplicationId(val){
  757. this.option.formData.loanApplicationId=val
  758. this.jjoption.formData.loanApplicationId=val
  759. },
  760. type(val){
  761. this.filelist=[];
  762. this.shtext='';
  763. this.isty='2';
  764. this.phofile=[];
  765. }
  766. },
  767. methods:{
  768. getClose(){
  769. this.$emit('getClose')
  770. },
  771. getAddFn(){
  772. this.addflag=true;
  773. },
  774. getCloseAdd(){
  775. this.addflag=false;
  776. },
  777. getPreviewImage(arr,idx){
  778. var newArr=[];
  779. arr.forEach(ite=>{
  780. var ds=this.baseUrl+ite
  781. newArr.push(ds)
  782. })
  783. uni.previewImage({
  784. urls: newArr,
  785. current:idx,
  786. success: function(data) {
  787. },
  788. fail: function(err) {
  789. }
  790. });
  791. },
  792. getChose(ite,idx){
  793. const index = this.shrylist.findIndex(text => text.userId === ite.userId);
  794. var obj={
  795. userId:ite.userId,
  796. realName:ite.userName,
  797. loanApplicationId:this.loanApplicationId,
  798. }
  799. if(index!=-1){
  800. this.shrylist.splice(index,1)
  801. }else{
  802. this.shrylist.push(obj)
  803. }
  804. },
  805. getchangea(e){
  806. this.aUserId=e.userId;
  807. this.aUserName=e.userName;
  808. },
  809. getchangeb(e){
  810. this.bUserId=e.userId;
  811. this.bUserName=e.userName;
  812. },
  813. getchangec(e){//风险人员
  814. this.fUserId=e.userId;
  815. this.fUserName=e.userName;
  816. },
  817. getupSubmit(){
  818. var type=this.type;
  819. var data={}
  820. if(type=='sh'){
  821. data={
  822. auditType:this.isty,
  823. auditView:this.shtext,
  824. }
  825. if(this.isty==3&&!this.shtext){
  826. this.$toast("请输入审核意见")
  827. return
  828. }
  829. if(this.isty!=3){
  830. if(!this.aUserName){
  831. this.$toast("请选择分配A角")
  832. return
  833. }
  834. if(!this.bUserName){
  835. this.$toast("请选择分配B角")
  836. return
  837. }
  838. if(!this.fUserName){
  839. this.$toast("请选择分配风险用户人员")
  840. return
  841. }
  842. data.aUserId=this.aUserId;
  843. data.aUserName=this.aUserName;
  844. data.bUserId=this.bUserId;
  845. data.bUserName=this.bUserName;
  846. data.fUserId=this.fUserId;
  847. data.fUserName=this.fUserName;
  848. }
  849. }else if(type=='ajssh'||type=='bjssh'||type=='fxsh'){
  850. data={
  851. auditType:this.isty,
  852. auditView:this.shtext,
  853. }
  854. if(this.isty==3&&!this.shtext){
  855. this.$toast("请输入审核意见")
  856. return
  857. }
  858. }else if(type=='fxbmsh'){
  859. data={
  860. auditType:this.isty,
  861. fjUrl:this.filelist,
  862. auditView:this.shtext,
  863. }
  864. if(this.isty==3&&!this.shtext){
  865. this.$toast("请输入审核意见")
  866. return
  867. }
  868. // if(this.isty!=3&&(!this.filelist||this.filelist.length<1)){
  869. // this.$toast("请上传附件")
  870. // return
  871. // }
  872. }else if(type=='jztcsh'){
  873. data={
  874. // auditType:this.isty,
  875. auditType:2,
  876. // auditView:this.shtext,
  877. fjUrl:this.filelist,
  878. imageUrl:this.phofile.join(',')
  879. }
  880. if(!this.phofile||this.phofile.length<1){
  881. this.$toast("请上传图片")
  882. return
  883. }
  884. if(!this.filelist||this.filelist.length<1){
  885. this.$toast("请上传附件")
  886. return
  887. }
  888. }else if(type=='shshty'){
  889. data={
  890. auditView:this.shtext,
  891. }
  892. if(this.isty==2){
  893. data.reviewSchedule=3
  894. }else if(this.isty==3){
  895. data.reviewSchedule=2
  896. }
  897. if(this.isty==3&&!this.shtext){
  898. this.$toast("请输入审核意见")
  899. return
  900. }
  901. }else if(type=='sssh'){//申诉
  902. data={
  903. auditView:this.shtext,
  904. fjUrl:this.filelist,
  905. }
  906. if(this.isty==2){
  907. data.ssType=1
  908. }else if(this.isty==3){
  909. data.ssType=2
  910. }
  911. if(this.isty==3&&!this.shtext){
  912. this.$toast("请输入审核意见")
  913. return
  914. }
  915. }else if(type=='shsh'||type=='cxtp'){
  916. var str='评审会'
  917. if(type=='cxtp'){
  918. str='投票'
  919. }
  920. data={
  921. // auditType:this.isty,
  922. // auditView:this.shtext,
  923. }
  924. if(!this.jtri){
  925. this.$toast("请选择"+str+"日期")
  926. return
  927. }
  928. if(!this.jtsj){
  929. this.$toast("请选择"+str+"时间")
  930. return
  931. }
  932. var time=this.jtri+' '+this.jtsj
  933. data.conferenceTime=time;
  934. }else if(type=='shshtp'){
  935. data={
  936. votingResult:this.issf,
  937. argument:this.shtext,
  938. lineGuarantee:this.dbed,
  939. guaranteePeriod:this.dbqx,
  940. }
  941. if(this.issf=='N'&&!this.shtext){
  942. this.$toast("请输入意见")
  943. return
  944. }
  945. if(this.issf=='Y'){
  946. if(!this.dbed||this.dbed<0){
  947. this.$toast("请输入担保额度")
  948. return
  949. }
  950. if(!this.dbqx||this.dbqx<0){
  951. this.$toast("请输入担保期限")
  952. return
  953. }
  954. }
  955. }else if(type=='zhfkhgb'){
  956. if(!this.shtext){
  957. this.$toast("请输入暂缓原因")
  958. return
  959. }
  960. data={
  961. remark:this.shtext,
  962. }
  963. }
  964. this.$emit('getupSubmit',data)
  965. },
  966. getfjAdd(){
  967. var type=this.type;
  968. if(this.filelist&&this.filelist.length>0){
  969. var data={
  970. fjUrl:this.filelist,
  971. actuallyAmount:this.actuallyAmount,
  972. actuallyTime:this.actuallyTime,
  973. }
  974. this.$emit('getfjAdd',data)
  975. }else{
  976. this.$toast("请上传附件")
  977. return
  978. }
  979. },
  980. bindDateChangea(e){
  981. var val=e.detail.value;
  982. this.jtri=val;
  983. },
  984. bindDateChangeb(e){
  985. var val=e.detail.value;
  986. this.jtsj=val+':00';
  987. },
  988. getSure(){
  989. this.$emit('getSure')
  990. },
  991. // 上传图片
  992. getaddImage(e){
  993. let that = this;
  994. let file =[],count=9
  995. // if(e=='zj'){
  996. // file = that.zjfile;
  997. // count=9
  998. // }else{
  999. // file = that.mjfile;
  1000. // count=9
  1001. // }
  1002. uni.chooseImage({
  1003. // count: 1,
  1004. success:function(res){
  1005. let img= res.tempFilePaths;
  1006. if(img.length + file.length > count){
  1007. uni.showToast({
  1008. title: '最多上传'+count+'张图片',
  1009. icon: 'none',
  1010. duration: 2000
  1011. })
  1012. }else{
  1013. let imglen = res.tempFilePaths.length;
  1014. var fuwufile = [];
  1015. uploadmore('/common/upload',img,0,0,0,imglen,fuwufile,function(rs){
  1016. that.phofile = that.phofile.concat(rs);
  1017. // if(e=='zj'){
  1018. // that.datainfo.identificationPhoto=that.zjfile.join(',')
  1019. // }
  1020. })
  1021. }
  1022. }
  1023. });
  1024. },
  1025. onuploadEnd(item,fileVal,bigType) {
  1026. var newobj={}
  1027. var responseText=JSON.parse(item.responseText)
  1028. if(fileVal=='qtfj'){
  1029. newobj.name=responseText.originalFilename;
  1030. }else{
  1031. newobj.name=responseText.newFileName;
  1032. }
  1033. newobj.oldName=responseText.originalFilename;
  1034. newobj.url=responseText.fileName;
  1035. newobj.type=fileVal;
  1036. newobj.bigType=bigType;
  1037. newobj.loanApplicationId=this.loanApplicationId;
  1038. newobj.loanApplicationNumber=this.loanApplicationNumber;
  1039. this.filelist.push(newobj)
  1040. },
  1041. // 借据上传
  1042. jjonuploadEnd(item,fileVal,bigType){
  1043. var newobj={}
  1044. var responseText=JSON.parse(item.responseText)
  1045. if(responseText.code==200){
  1046. this.actuallyAmount=responseText.actuallyAmount;
  1047. this.actuallyTime=responseText.actuallyTime;
  1048. newobj.name=responseText.newFileName;
  1049. newobj.oldName=responseText.originalFilename;
  1050. newobj.url=responseText.fileName;
  1051. newobj.type=fileVal;
  1052. newobj.bigType=bigType;
  1053. newobj.loanApplicationId=this.loanApplicationId;
  1054. newobj.loanApplicationNumber=this.loanApplicationNumber;
  1055. var newArr=[];
  1056. newArr.push(newobj);
  1057. this.filelist=JSON.parse(JSON.stringify(newArr))
  1058. }else{
  1059. this.$toast(responseText.msg)
  1060. }
  1061. },
  1062. getDelFj(idx){
  1063. var that=this;
  1064. uni.showModal({
  1065. title: '确认删除',
  1066. content: "是否确认删除",
  1067. cancelText: '取消',
  1068. confirmText: '确认',
  1069. success: function(res) {
  1070. if (res.confirm) {
  1071. that.filelist.splice(idx,1)
  1072. } else if (res.cancel) {
  1073. }
  1074. }
  1075. });
  1076. },
  1077. getDelPh(idx){
  1078. this.phofile.splice(idx,1)
  1079. },
  1080. getDelRy(idx){
  1081. this.shrylist.splice(idx,1)
  1082. },
  1083. getDown(e){
  1084. uni.showLoading({
  1085. title: '加载中'
  1086. });
  1087. var url=baseUrl+e;
  1088. let index1 = e.lastIndexOf("."); // 得到一个索引值
  1089. let index2 = e.length;
  1090. let type = e.substring(index1, index2);
  1091. if ((type.indexOf('jpg') > -1 || type.indexOf('jpeg') > -1 || type.indexOf('png') > -1)) {
  1092. uni.previewImage({
  1093. current: 0,
  1094. urls: [url],
  1095. // background: '#ffffff'
  1096. });
  1097. uni.hideLoading();
  1098. } else {
  1099. uni.downloadFile({
  1100. url: url,//文件的下载路径
  1101. success(result) {
  1102. uni.hideLoading()
  1103. var filePath = result.tempFilePath;
  1104. uni.openDocument({
  1105. filePath: filePath,
  1106. showMenu: true,
  1107. success: function (res) {
  1108. // console.log('打开文档成功');
  1109. }
  1110. });
  1111. },
  1112. fail(res) {uni.hideLoading()}
  1113. })
  1114. }
  1115. },
  1116. }
  1117. }
  1118. </script>
  1119. <style lang="scss" scoped>
  1120. // 进度
  1121. .speedbox{background: #FFFFFF;box-shadow: 0px 0px 14rpx 0px rgba(184,184,184,0.76);border-radius: 20rpx;padding: 44rpx 40rpx 0;
  1122. position: fixed;z-index: 10;left: 220rpx;top: 50%;transform: translateY(-50%);max-height: calc(100vh - 200rpx);overflow: auto;
  1123. .tit{font-weight: bold;font-size: 30rpx;color: #222327;margin-bottom: 36rpx;}
  1124. .lists{display: flex;align-items: flex-start;position: relative;padding-bottom: 52rpx;
  1125. &::after{content: '';width: 2rpx;position: absolute;left: 15rpx;top: 56rpx;bottom: 56rpx;height: 60rpx;background: #E6E6E6;}
  1126. &:last-child{
  1127. &::after{display: none;}
  1128. // .ltit{color: #01A9F0 !important;}
  1129. }
  1130. .listl{width: 32rpx;height: 32rpx;margin-right: 22rpx;display: flex;align-items: center;justify-content: center;
  1131. image{width: 32rpx;height: 32rpx;
  1132. &.imga{width: 30rpx;height: 30rpx;}
  1133. }
  1134. }
  1135. .listr{
  1136. .ltit{font-weight: 500;font-size: 26rpx;color: #222327;margin-bottom: 22rpx;
  1137. &.act{color: #01A9F0;}
  1138. }
  1139. .ltxt{font-weight: 500;font-size: 24rpx;color: #AAAAAA;}
  1140. }
  1141. }
  1142. }
  1143. .fixbox /deep/ .uni-select{border: none;background-color: #EEEEEE;height: 88rpx;}
  1144. .fixbox /deep/ .uni-select__input-placeholder{font-size: 30rpx;color: #AAAAAA;}
  1145. .fixbox /deep/ .uni-textarea-placeholder{font-size: 26rpx;color: #AAAAAA;}
  1146. .textar{width: 100%;border-radius: 10rpx;padding: 26rpx 30rpx;font-size: 26rpx;color: #222327;height: 400rpx;background: #EEEEEE;
  1147. &.texthe{height: 190rpx;}
  1148. }
  1149. .fixbox{position: fixed;left: 56rpx;right: 56rpx;background: #FFFFFF;max-height: calc(100vh - 200rpx);overflow: auto;
  1150. border-radius: 20rpx;z-index: 10;top: 50%;transform: translateY(-50%);padding: 40rpx 48rpx 52rpx;
  1151. .ttxt{font-weight: bold;font-size: 30rpx;color: #222327;}
  1152. .btns{margin-top: 70rpx;width: 100%;background: #00A9F0;border-radius:10rpx;height: 88rpx;display: flex;align-items: center;justify-content: center;font-weight: 500;font-size: 30rpx;color: #FFFFFF;}
  1153. .shtips{font-weight: 500;text-align: center;margin-top: 36rpx;font-size: 24rpx;color: #FF6969;padding-bottom: 20rpx;}
  1154. //按钮
  1155. .conbtns{margin-top: 66rpx;
  1156. .cbtns{flex:1;display: flex;align-items: center;justify-content: center;box-sizing: border-box;height: 88rpx;font-weight: 500;
  1157. font-size: 30rpx;background: #FFFFFF;border-radius: 10rpx;
  1158. &.bga{border: 1px solid #00A9F0;background: #FFFFFF;color: #01A9F0;margin-right: 24rpx;}
  1159. &.bgb{background: #00A9F0;color: #FFFFFF;}
  1160. }
  1161. }
  1162. // 二次确认弹窗
  1163. &.con{
  1164. left: 80rpx;right: 80rpx;padding-bottom: 60rpx;
  1165. .conttxt{font-weight: bold;font-size: 30rpx;color: #222327;padding: 0 34rpx;text-align: center;
  1166. padding-top: 36rpx;
  1167. text{color: #00A9F0;}
  1168. .imgs{margin-bottom: 10rpx;}
  1169. }
  1170. }
  1171. // 上传图片
  1172. .addpbox{display: flex;flex-wrap: wrap;
  1173. .plist{width: 160rpx;height: 160rpx;background: #FFFFFF;border-radius: 20rpx;position: relative;margin-bottom: 10rpx;
  1174. margin-right: 30rpx;border: 2rpx dashed #CDCDCD;display: flex;align-items: center;justify-content: center;
  1175. &:nth-of-type(3n){margin-right: 0;}
  1176. &.addpimg{
  1177. border: 0;
  1178. image{width: 100%;height: 100%;}
  1179. }
  1180. .img{width: 150rpx;height: 150rpx;}
  1181. .del{width: 24rpx;height: 24rpx;position: absolute;right: -6rpx;top: -6rpx;}
  1182. }
  1183. }
  1184. // 选择日期
  1185. .chekt{
  1186. background-color: #EEEEEE;height: 88rpx;border-radius: 8rpx;display: flex;align-items: center;padding: 0 40rpx 0 24rpx;
  1187. view{font-size: 30rpx;flex: 1;}
  1188. image{width: 16rpx;height: 10rpx;flex: 0 0 auto;margin-left: 12rpx;}
  1189. }
  1190. .chektinp{background-color: #EEEEEE;height: 88rpx;border-radius: 8rpx;display: flex;align-items: center;padding-left: 24rpx;padding-right: 10rpx;}
  1191. // 上会人员添加
  1192. .shshtips{font-weight: 500;padding-top: 14rpx;font-size: 24rpx;color: #FF6969;}
  1193. .addsh{font-weight: 500;flex:0 0 auto; font-size: 30rpx;color: #00A9F0;display: flex;align-items: center;
  1194. image{width: 24rpx;height: 24rpx;margin-right: 8rpx;}
  1195. }
  1196. .peolists{
  1197. display: flex;flex-wrap: wrap;
  1198. .plist{background-color: rgba(0, 169, 240, 0.1);font-weight: 500;font-size: 26rpx;border-radius:10rpx;width: 172rpx;margin: 0 12rpx 18rpx 0;display: flex;align-items: center;padding: 18rpx 16rpx;box-sizing: border-box;
  1199. color: #666666;overflow: hidden;
  1200. &:nth-of-type(3n){margin-right: 0;}
  1201. image{width: 26rpx;height: 26rpx;}
  1202. }
  1203. }
  1204. .ptips{font-weight: 500;font-size: 26rpx;color: #FF6969;margin-bottom: 40rpx;}
  1205. // 附件
  1206. .fjlists {display: flex;align-items: flex-start;justify-content: space-between;margin-bottom: 20rpx;
  1207. &:last-child{margin-bottom: 0;}
  1208. .imgl{width: 40rpx;height: 40rpx;display: flex;align-items: center;flex: 0 0 auto;
  1209. image{width: 26rpx;height: 24rpx;}
  1210. }
  1211. .tit{font-size: 26rpx;color: #222327;font-weight: 500;margin-top: 4rpx;}
  1212. .delimg{width: 40rpx;height:40rpx;margin-left: 16rpx;display: flex;align-items: center;justify-content: center;flex: 0 0 auto;
  1213. image{width: 24rpx;height: 24rpx;}
  1214. }
  1215. .txta{color: #28C529;font-weight: 500;line-height: 40rpx;flex: 0 0 auto;margin-left: 18rpx;padding: 0 6rpx;}
  1216. }
  1217. }
  1218. .addboxbg{background-color: rgba(0, 0, 0, 0.5);position: fixed;left: 0;right: 0;top: 0;bottom: 0;z-index: 50;
  1219. }
  1220. .addbox{z-index: 55;width: 100%;position: fixed;left:0;right: 0;bottom: 0;max-height: calc(100vh - 400rpx);overflow: auto;
  1221. padding: 40rpx 48rpx 52rpx;background-color: #FFFFFF;
  1222. .peolists{display: flex;flex-wrap: wrap;
  1223. .plist{width: auto !important;background: #FFFFFF;font-weight: 500;font-size: 26rpx;border-radius:10rpx;min-width: 172rpx;margin: 0 12rpx 18rpx 0;display: flex;align-items: center;padding: 18rpx 16rpx;box-sizing: border-box;
  1224. color: #666666;overflow: hidden;text-align: center;border: 2rpx solid rgba(0, 169, 240, 0.1);
  1225. &.act{
  1226. background-color: rgba(0, 169, 240, 0.1);
  1227. }
  1228. }
  1229. }
  1230. }
  1231. .cloimg{display: flex;align-items: center;justify-content: center;position: absolute;width: 40rpx;height: 40rpx;
  1232. top: 40rpx;left: 40rpx;
  1233. image{width: 22rpx;height: 22rpx;}
  1234. }
  1235. .ttit{font-weight: bold;text-align: center;font-size: 30rpx;color: #222327;margin-bottom:50rpx;}
  1236. </style>