You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

opening-account-people.vue 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881
  1. <template>
  2. <navBar title="ETC开户新办申请-个人" :scrollTop="scrollTop"></navBar>
  3. <navBgCar></navBgCar>
  4. <view class="content-wrap">
  5. <view @click="tabChange(true)">
  6. <view :class="state.isMyPeopple ? 'big' : 'nomal'"> 本人车辆 </view>
  7. <view :class="state.isMyPeopple ? 'tip' : ''"> </view>
  8. </view>
  9. <view @click="tabChange(false)" style="margin-left: 60rpx" class="" v-if="state.isEnableOther">
  10. <view :class="state.isMyPeopple ? 'nomal' : 'big'"> 他人车辆 </view>
  11. <view :class="state.isMyPeopple ? '' : 'tip'"> </view>
  12. </view>
  13. </view>
  14. <view v-if="state.isMyPeopple" class="content">
  15. <view class="item-tips">
  16. <view class="title"> 上传后请核对识别信息 </view>
  17. <view class="tip"> 如有错误请及时手动修改 </view>
  18. </view>
  19. <view class="picture-wrapper" @click="takePhotoMode('1','my')">
  20. <view class="bg">
  21. <view class="">
  22. <view class="name"> 人像面 </view>
  23. <view class="value"> 上传身份证的人像面 </view>
  24. <view class="tip">
  25. <view class="tip-value"> 拍摄规范 </view>
  26. </view>
  27. </view>
  28. <image v-if="!state.form.userPosImgUrl" class="icon" :src="`${$imgUrl}applyCard/renxiang.png`">
  29. </image>
  30. <image v-else class="icon" :src="strReplace(state.form.userPosImgUrl)"></image>
  31. </view>
  32. </view>
  33. <view class="picture-wrapper" @click="takePhotoMode('2','my')">
  34. <view class="bg">
  35. <view class="">
  36. <view class="name"> 国徽面 </view>
  37. <view class="value"> 上传身份证的国徽面 </view>
  38. <view class="tip">
  39. <view class="tip-value"> 拍摄规范 </view>
  40. </view>
  41. </view>
  42. <image v-if="!state.form.userNegImgUrl" class="icon" :src="`${$imgUrl}applyCard/guohui.png`">
  43. </image>
  44. <image v-else class="icon" :src="strReplace(state.form.userNegImgUrl)"></image>
  45. </view>
  46. </view>
  47. <view class="shibie-wrapper">
  48. <view class="title"> 识别内容如下 </view>
  49. <u-form label-width="230" :model="state.form" ref="uForm">
  50. <u-form-item label="姓名">
  51. <u-input v-model="state.form.userName" placeholder='请输入姓名' :disabled="state.isEnableOCRData"
  52. maxlength="20" @input="replaceInput" />
  53. </u-form-item>
  54. <u-form-item label="身份证号">
  55. <u-input placeholder='请输入身份证' type="idcard" v-model="state.form.userIdNum"
  56. :disabled="state.isEnableOCRData" maxlength="18" />
  57. </u-form-item>
  58. <u-form-item label="地址">
  59. <u-input placeholder='请输入地址' :autoHeight='true' v-model="state.form.address"
  60. :disabled="state.isEnableOCRData" maxlength="50" />
  61. </u-form-item>
  62. <u-form-item label="联系方式">
  63. <u-input placeholder='请输入联系方式' type="number" v-model="state.form.tel" maxlength="11" />
  64. </u-form-item>
  65. </u-form>
  66. </view>
  67. <view class="green-tip">
  68. 如识别信息有误,请手动修改,确认无误后,点击下一步!
  69. </view>
  70. <view class="action">
  71. <button type="default" class="button" @click="savaHandle()">
  72. 下一步
  73. </button>
  74. </view>
  75. </view>
  76. <view v-else class="content">
  77. <view class="title"> 车主信息 </view>
  78. <view class="item-tips">
  79. <view class="title"> 上传后请核对识别信息 </view>
  80. <view class="tip"> 如有错误请及时手动修改 </view>
  81. </view>
  82. <view class="picture-wrapper" @click="takePhotoMode('1','my')">
  83. <view class="bg">
  84. <view class="">
  85. <view class="name"> 人像面 </view>
  86. <view class="value"> 上传身份证的人像面 </view>
  87. <view class="tip">
  88. <view class="tip-value"> 拍摄规范 </view>
  89. </view>
  90. </view>
  91. <image v-if="!state.form.userPosImgUrl" class="icon" :src="`${$imgUrl}applyCard/renxiang.png`">
  92. </image>
  93. <image v-else class="icon" :src="strReplace(state.form.userPosImgUrl)"></image>
  94. </view>
  95. </view>
  96. <view class="picture-wrapper" @click="takePhotoMode('2','my')">
  97. <view class="bg">
  98. <view class="">
  99. <view class="name"> 国徽面 </view>
  100. <view class="value"> 上传身份证的国徽面 </view>
  101. <view class="tip">
  102. <view class="tip-value"> 拍摄规范 </view>
  103. </view>
  104. </view>
  105. <image v-if="!state.form.userNegImgUrl" class="icon" :src="`${$imgUrl}applyCard/guohui.png`">
  106. </image>
  107. <image v-else class="icon" :src="strReplace(state.form.userNegImgUrl)"></image>
  108. </view>
  109. </view>
  110. <view class="shibie-wrapper">
  111. <view class="title"> 识别内容如下 </view>
  112. <u-form label-width="200" :model="state.form" ref="uForm">
  113. <u-form-item label="姓名">
  114. <u-input inputAlign="right" placeholder='请输入姓名' v-model="state.form.userName"
  115. :disabled="state.isEnableOCRData" maxlength="20" />
  116. </u-form-item>
  117. <u-form-item label="身份证号">
  118. <u-input inputAlign="right" placeholder='请输入身份证号' v-model="state.form.userIdNum"
  119. :disabled="state.isEnableOCRData" type="idcard" maxlength="18" />
  120. </u-form-item>
  121. <u-form-item label="联系方式">
  122. <u-input inputAlign="right" placeholder='请输入联系方式' v-model="state.form.tel" maxlength="11"
  123. type="number" />
  124. </u-form-item>
  125. <u-form-item label="地址">
  126. <u-input placeholder='请输入地址' inputAlign="right" :autoHeight='true' v-model="state.form.address"
  127. :disabled="state.isEnableOCRData" maxlength="50" />
  128. </u-form-item>
  129. </u-form>
  130. </view>
  131. <view style="margin-top: 30rpx" class="title"> 代办人信息 </view>
  132. <view class="item-tips">
  133. <view class="title"> 上传后请核对识别信息 </view>
  134. <view class="tip"> 如有错误请及时手动修改 </view>
  135. </view>
  136. <view class="picture-wrapper" @click="takePhotoMode('1','other')">
  137. <view class="bg">
  138. <view class="">
  139. <view class="name"> 人像面 </view>
  140. <view class="value"> 上传身份证的人像面 </view>
  141. <view class="tip">
  142. <view class="tip-value"> 拍摄规范 </view>
  143. </view>
  144. </view>
  145. <image v-if="!state.form.agentPosImgUrl" class="icon" :src="`${$imgUrl}applyCard/renxiang.png`">
  146. </image>
  147. <image v-else class="icon" :src="strReplace(state.form.agentPosImgUrl)"></image>
  148. </view>
  149. </view>
  150. <view class="picture-wrapper" @click="takePhotoMode('2','other')">
  151. <view class="bg">
  152. <view class="">
  153. <view class="name"> 国徽面 </view>
  154. <view class="value"> 上传身份证的国徽面 </view>
  155. <view class="tip">
  156. <view class="tip-value"> 拍摄规范 </view>
  157. </view>
  158. </view>
  159. <image v-if="!state.form.agentNegImgUrl" class="icon" :src="`${$imgUrl}applyCard/guohui.png`">
  160. </image>
  161. <image v-else class="icon" :src="strReplace(state.form.agentNegImgUrl)"></image>
  162. </view>
  163. </view>
  164. <view class="picture-wrapper" @click="cardFileImageUpdate()" v-if='state.isEnableBook'>
  165. <view class="bg">
  166. <view class="">
  167. <view class="name"> 委托书 </view>
  168. <view class="value"> 上传文字清晰的委托书 </view>
  169. <view class="tip">
  170. <view class="tip-value"> 拍摄规范 </view>
  171. </view>
  172. <view class="down" @click="downAuthD">模板下载</view>
  173. </view>
  174. <image v-if="!state.form.proxyUrl" class="icon" :src="`${$imgUrl}applyCard/weituoshu.png`">
  175. </image>
  176. <image v-else class="icon" :src="strReplace(state.form.proxyUrl)"></image>
  177. </view>
  178. </view>
  179. <view class="shibie-wrapper">
  180. <view class="title"> 识别内容如下 </view>
  181. <u-form label-width="200" :model="state.form" ref="uForm">
  182. <u-form-item label="经办人姓名">
  183. <u-input inputAlign="right" placeholder='请输入经办人姓名' v-model="state.form.agentName"
  184. :disabled="state.isEnableOCRData" maxlength="20" />
  185. </u-form-item>
  186. <u-form-item label="身份证号">
  187. <u-input inputAlign="right" placeholder='请输入身份证号' v-model="state.form.agentIdNum"
  188. :disabled="state.isEnableOCRData" maxlength="18" type="idcard" />
  189. </u-form-item>
  190. <u-form-item label="联系方式">
  191. <u-input inputAlign="right" placeholder='请输入联系方式' v-model="state.form.agentTel" type="number"
  192. maxlength="11" />
  193. </u-form-item>
  194. </u-form>
  195. </view>
  196. <view class="green-tip">
  197. 如识别信息有误,请手动修改,确认无误后,点击下一步!
  198. </view>
  199. <view class="action">
  200. <button type="default" class="button" @click="savaHandle()">
  201. 下一步
  202. </button>
  203. </view>
  204. </view>
  205. <u-select mode="single-column" :list="state.genderList" v-model="state.genderShow" @confirm="genderSelectConfirm">
  206. </u-select>
  207. <view class="choice-takePhoto-wrap" v-if="state.isTakePhotoModeShow" @click="cancle">
  208. <view class="choice-takePhoto">
  209. <view @click.stop="takePhoto(state.choiceIndex)" style="border-radius: 20rpx 20rpx 0 0;">拍照</view>
  210. <view @click.stop="xiangce(state.choiceIndex)">从手机相册选择</view>
  211. <view @click.stop="cancle">取消</view>
  212. </view>
  213. </view>
  214. <viewfinder v-if="state.phoneType" :phoneType="state.phoneType" :images="state.images"
  215. :showStartPhoto="state.showImg" @confirmReturn="confirmReturn" @camera="camera"></viewfinder>
  216. </template>
  217. <script setup lang="ts">
  218. import viewfinder from "../../components/viewfinder.vue"
  219. import navBgCar from "./components/nav-bg-car3";
  220. import {
  221. reactive,
  222. ref,
  223. } from "vue";
  224. import {
  225. msg,
  226. checkStr,
  227. strReplace,
  228. uploadFile,
  229. hasLogin,
  230. compressImage
  231. } from "@/utils/utils";
  232. import {
  233. onLoad,
  234. onPageScroll,
  235. } from "@dcloudio/uni-app";
  236. import {
  237. etcOcrCard,
  238. etcUserCardInfoSubmit,
  239. fileUpload,
  240. register,
  241. envs,
  242. getUserMsg,
  243. ocrAllQuery
  244. } from "@/utils/network/api.js";
  245. import {
  246. request
  247. } from "@/utils/network/request.js";
  248. import {
  249. stringToJson
  250. } from "@/utils/network/encryption";
  251. import {
  252. setItem,
  253. getItem,
  254. } from "@/utils/storage";
  255. import {
  256. getCodeName
  257. } from "@/datas/queryKey.js";
  258. import navBar from "@/components/nav-bar/nav-bar2.vue";
  259. const scrollTop = ref(0)
  260. const state = reactive({
  261. showImg: true,
  262. isMy: "",//自己办理 他人办理
  263. phoneType: 0, // 1 身份证正面 2 身份证反面 3行驶证正面 4行驶证反面
  264. choiceIndex: 1, // 1 身份证正面 2 身份证反面
  265. isTakePhotoModeShow: false, //选择拍照方式是否出来
  266. images: '',
  267. genderList: [{
  268. value: '男',
  269. label: '男'
  270. },
  271. {
  272. value: '女',
  273. label: '女'
  274. }
  275. ],
  276. form: {
  277. orderId: "", //订单ID
  278. userName: "", //开户人姓名
  279. userIdType: "101", //用户证件类型 101//身份证
  280. userIdNum: "", //用户证件号码
  281. userPosImgUrl: "", //身份证正面
  282. userNegImgUrl: "", //身份证反面
  283. tel: "", //开户人手机号
  284. address: "", //开户人地址
  285. sceneType: "", //用户协议支撑服务场景(发行服务机构和用户签订的协议)
  286. channelId: "", //渠道id
  287. gender: "",
  288. customerIdVld: "",
  289. agentName: "",
  290. agentGender: "",
  291. agentTel: '',
  292. agentPhone: "",
  293. agentIdType: "101",
  294. agentIdNum: "",
  295. agentPosImgUrl: "",
  296. agentNegImgUrl: "",
  297. proxyUrl: "",
  298. agentAddress: "",
  299. agentIdVld: '',
  300. opId: '',
  301. orderSource: 'WECHAT',
  302. },
  303. genderShow: false,
  304. orderId: "",
  305. vehiclePlateColor: undefined,
  306. isMyPeopple: true,
  307. isSign: '',
  308. type: 1,
  309. isEnableOther: true, //小程序是否支持他人办理
  310. isEnableBook: true, //他人办理时是否上传委托书
  311. isEnableInfo: true, //小程序信息带出
  312. isEnableOCRData: true, //允许修改OCR识别出来的数据
  313. vehicleId: ""
  314. });
  315. const userGenderAction = () => {
  316. state.genderShow = true;
  317. };
  318. const genderSelectConfirm = (e) => {
  319. state.form.gender = ''
  320. e.map((val, index) => {
  321. state.form.gender = val.label;
  322. })
  323. };
  324. const camera = () => {
  325. state.phoneType = 0
  326. }
  327. const savaHandle = () => {
  328. if (!state.form.userName) {
  329. msg('请输入姓名');
  330. return;
  331. }
  332. if (!state.form.userPosImgUrl) {
  333. msg('请上传身份证的人像面');
  334. return;
  335. }
  336. if (!state.form.userNegImgUrl) {
  337. msg('请上传身份证的国徽面');
  338. return;
  339. }
  340. if (!checkStr(state.form.userIdNum, 'card')) {
  341. msg('请输入正确身份证号');
  342. return;
  343. }
  344. if (!checkStr(state.form.tel, 'mobile')) {
  345. msg('请输入正确的手机号');
  346. return;
  347. }
  348. // 都要无感注册
  349. // 没登录就存token 登录了就正常走
  350. registerRequest().then((result : any) => {
  351. if (!getItem('openId')) {
  352. setItem('token', result.accessToken)
  353. setItem('openId', result.openId)
  354. } else {
  355. console.log("正常走 ")
  356. // 已经登录
  357. let data = state.form;
  358. const options = {
  359. type: 2,
  360. data: data,
  361. method: "POST",
  362. showLoading: true,
  363. };
  364. request(etcUserCardInfoSubmit, options).then((res) => {
  365. console.log(res);
  366. uni.redirectTo({
  367. url: `/subpackage/orders/car-release?orderId=${state.orderId}&vehiclePlateColor=${state.vehiclePlateColor}&type=${state.type}&isSign=${state.isSign}&vehicleId=${state.vehicleId}`,
  368. });
  369. });
  370. }
  371. })
  372. };
  373. const cardFileImageUpdate = () => {
  374. uni.chooseImage({
  375. count: 1, //只能选取一张照片
  376. sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
  377. sourceType: ["camera", "album"], //从相册选择
  378. success: function (res) {
  379. uploadFile(res.tempFilePaths[0], "", "").then((data) => {
  380. state.form.proxyUrl = data;
  381. })
  382. },
  383. });
  384. };
  385. //tab切换
  386. const tabChange = (val : any) => {
  387. state.isTakePhotoModeShow = false
  388. if (val) {
  389. state.isMyPeopple = true;
  390. } else {
  391. state.isMyPeopple = false;
  392. }
  393. state.form = {
  394. orderId: state.orderId, //订单ID
  395. userName: "", //开户人姓名
  396. userIdType: "101", //用户证件类型 101//身份证
  397. userIdNum: "", //用户证件号码
  398. userPosImgUrl: "", //身份证正面
  399. userNegImgUrl: "", //身份证反面
  400. tel: "", //开户人手机号
  401. address: "", //开户人地址
  402. sceneType: "", //用户协议支撑服务场景(发行服务机构和用户签订的协议)
  403. channelId: "", //渠道id
  404. gender: "",
  405. customerIdVld: "",
  406. agentName: "",
  407. agentGender: "",
  408. agentTel: '',
  409. agentPhone: "",
  410. agentIdType: "101",
  411. agentIdNum: "",
  412. agentPosImgUrl: "",
  413. agentNegImgUrl: "",
  414. proxyUrl: "",
  415. agentAddress: "",
  416. agentIdVld: '',
  417. orderSource: 'WECHAT',
  418. };
  419. };
  420. onLoad((option : any) => {
  421. state.form.orderId = option.orderId;
  422. state.orderId = option.orderId;
  423. state.vehiclePlateColor = option.vehiclePlateColor;
  424. state.form.opId = getItem('openId') ? getItem('openId') : '';
  425. state.isSign = option.isSign;
  426. state.type = option.type;
  427. state.vehicleId = option.vehicleId;
  428. getGlobalParam(); //全局配置数据
  429. console.log("option", option)
  430. });
  431. //监听页面滚动
  432. onPageScroll((e) => {
  433. scrollTop.value = e.scrollTop;
  434. });
  435. const replaceInput = (event) => {
  436. console.log("event", event)
  437. const screeningStr = /[^\u4E00-\u9FA5]/g; //想禁止什么类型,在这里替换正则就可以了
  438. if (screeningStr.test(event)) {
  439. setTimeout(() => {
  440. state.form.userName = event.replace(screeningStr, '');
  441. }, 100)
  442. } else {
  443. setTimeout(() => {
  444. state.form.userName = event;
  445. }, 100)
  446. }
  447. console.log("event.replace(screeningStr, '')", event.replace(screeningStr, ''), event, state.form.userName)
  448. }
  449. const getGlobalParam = () => {
  450. const data = getItem('globalParam')
  451. console.log("全局配置数据", getCodeName('IS_ENABLE', data.miniSupportOther), getCodeName('IS_ENABLE', data.otherUploadProxy), getCodeName('IS_ENABLE', data.miniInfoShow), getCodeName('IS_ENABLE', data.changeOCRData))
  452. // 小程序是否支持他人办理
  453. if (getCodeName('IS_ENABLE', data.miniSupportOther) == '启用') {
  454. state.isEnableOther = true;
  455. } else {
  456. state.isEnableOther = false;
  457. }
  458. // 他人办理时是否上传委托书
  459. if (getCodeName('IS_ENABLE', data.otherUploadProxy) == '启用') {
  460. state.isEnableBook = true;
  461. } else {
  462. state.isEnableBook = false;
  463. }
  464. // 小程序信息带出
  465. if (getCodeName('IS_ENABLE', data.miniInfoShow) == '启用') {
  466. state.isEnableInfo = true;
  467. uni.showModal({
  468. // title: '提示',
  469. content: '是否允许带出用户信息',
  470. success: function (res) {
  471. if (res.confirm) {
  472. console.log('用户点击确定');
  473. queryUserMsg() //通过opneId查询用户信息
  474. } else if (res.cancel) {
  475. console.log('用户点击取消');
  476. }
  477. }
  478. });
  479. } else {
  480. state.isEnableInfo = false;
  481. }
  482. // 允许修改OCR识别出来的数据
  483. if (getCodeName('IS_ENABLE', data.changeOCRData) == '启用') {
  484. state.isEnableOCRData = false;
  485. } else {
  486. state.isEnableOCRData = true;
  487. }
  488. }
  489. // 通过opneId查询用户信息
  490. const queryUserMsg = () => {
  491. const options = {
  492. type: 2,
  493. data: {
  494. "openId": getItem('openId')
  495. },
  496. method: "POST",
  497. showLoading: true,
  498. };
  499. request(getUserMsg, options).then((res) => {
  500. console.log("通过opneId查询用户信息", stringToJson(res.bizContent))
  501. const data = stringToJson(res.bizContent);
  502. state.form.userPosImgUrl = data.customerPosImgUrl;
  503. state.form.userNegImgUrl = data.customerNegImgUrl;
  504. state.form.userName = data.customerName;
  505. state.form.userIdNum = data.customerIdNum;
  506. state.form.address = data.customerAddress;
  507. state.form.tel = data.customerTel;
  508. })
  509. }
  510. const takePhotoMode = (index, isMy) => {
  511. console.log("index", index, isMy)
  512. state.isTakePhotoModeShow = true
  513. state.choiceIndex = index
  514. state.isMy = isMy
  515. }
  516. const xiangce = (val) => {
  517. console.log("val", val)
  518. var imageType = val;
  519. uni.chooseImage({
  520. count: 1, //只能选取一张照片
  521. sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
  522. sourceType: ["album"], //从相册选择
  523. success: function (res) {
  524. // compressImage(res.tempFilePaths[0], (res) => {
  525. console.log("过来了", res)
  526. state.showImg = false
  527. state.images = res.tempFilePaths[0]
  528. state.phoneType = state.choiceIndex
  529. state.isTakePhotoModeShow = false
  530. // })
  531. console.log("tempFilePaths[0].startsWith('file://')", res.tempFilePaths[0], res.tempFilePaths[0].startsWith('file://'))
  532. },
  533. })
  534. }
  535. const takePhoto = (val) => {
  536. state.showImg = true
  537. console.log("拍照", val)
  538. state.phoneType = val;
  539. }
  540. const confirmReturn = (val) => {
  541. console.log("图片地址val", val)
  542. state.phoneType = 0
  543. state.isTakePhotoModeShow = false
  544. var imageType = state.choiceIndex;
  545. // uploadFile(val.tempImagePath, imageType, ocrAllQuery).then((data) => {
  546. uploadFile(val.tempImagePath, imageType, etcOcrCard).then((data) => {
  547. console.log("身份证上传", data)
  548. if (state.isMy == "my") {
  549. if (state.choiceIndex == "1") {
  550. state.form.userName = data.name;
  551. state.form.gender = data.gender;
  552. state.form.userIdNum = data.idno;
  553. state.form.userPosImgUrl = data.imageUrl;
  554. state.form.address = data.address;
  555. } else {
  556. state.form.customerIdVld = data.enddate;
  557. state.form.userNegImgUrl = data.imageUrl;
  558. }
  559. state.isTakePhotoModeShow = false
  560. } else {
  561. if (state.choiceIndex == "1") {
  562. state.form.agentName = data.name;
  563. state.form.agentGender = data.gender;
  564. state.form.agentIdNum = data.idno;
  565. state.form.agentPosImgUrl = data.imageUrl;
  566. state.form.agentAddress = data.address;
  567. } else {
  568. console.log("state.isMy", state.isMy, state.choiceIndex, state.choiceIndex == "1", data)
  569. state.form.agentIdVld = data.enddate;
  570. state.form.agentNegImgUrl = data.imageUrl;
  571. }
  572. state.isTakePhotoModeShow = false
  573. }
  574. })
  575. }
  576. const cancle = () => {
  577. state.isTakePhotoModeShow = false
  578. }
  579. const downAuthD = () => {
  580. uni.downloadFile({
  581. url: "https://qtzl.etcjz.cn/default-bucket/20240311/个人委托书.docx",
  582. filePath: uni.env.USER_DATA_PATH + '/' + '个人委托书.docx',
  583. success(res) {
  584. const filePath = res.filePath
  585. uni.openDocument({
  586. filePath: filePath,
  587. fileType: 'docx',
  588. showMenu: true, //关键点
  589. success: function (res) {
  590. // msg("成功查看协议详情");
  591. },
  592. fail: function (err) {
  593. msg("打开文档失败");
  594. }
  595. });
  596. },
  597. fail: function (err) {
  598. msg("下载文档失败");
  599. console.log("err", err)
  600. },
  601. complete(res) {
  602. }
  603. })
  604. }
  605. // 无感注册
  606. const registerRequest = () => {
  607. let data = {
  608. userType: "PERSONAL",
  609. idNum: state.form.userIdNum,
  610. idType: state.form.userIdType,
  611. mobile: state.form.tel,
  612. userName: state.form.userName,
  613. gender: state.form.gender == '男' ? 'MALE' : 'FEMALE',
  614. certifyChannel: "BAIDUOCR",
  615. address: state.form.address,
  616. agentIdNum: state.form.agentIdNum,
  617. agentIdType: state.form.agentIdType,
  618. agentName: state.form.agentName,
  619. department: "",
  620. userIdImgUrl: state.form.userPosImgUrl,
  621. userIdImgBase64: "",
  622. }
  623. const options = {
  624. type: 2,
  625. data: data,
  626. method: "POST",
  627. showLoading: true,
  628. };
  629. return new Promise(async (resolve, reject) => {
  630. const res = await request(register, options);
  631. const data = stringToJson(res.bizContent);
  632. resolve(data);
  633. }).catch((error) => {
  634. reject(error);
  635. });
  636. }
  637. </script>
  638. <style lang="scss" scoped>
  639. .title {
  640. font-size: 35rpx;
  641. font-family: Microsoft YaHei;
  642. font-weight: 400;
  643. color: #000000;
  644. line-height: 80rpx;
  645. margin-bottom: 10rpx;
  646. }
  647. .content-wrap {
  648. position: relative;
  649. margin-top: -50rpx;
  650. padding: 0rpx 30rpx;
  651. display: flex;
  652. .big {
  653. font-size: 30rpx;
  654. font-family: Microsoft YaHei;
  655. font-weight: 400;
  656. color: #333333;
  657. line-height: 24rpx;
  658. }
  659. .nomal {
  660. font-size: 26rpx;
  661. font-family: Microsoft YaHei;
  662. font-weight: 400;
  663. color: #666666;
  664. line-height: 24rpx;
  665. }
  666. .tip {
  667. margin-top: -5px;
  668. width: 117rpx;
  669. height: 16rpx;
  670. background: #00b38b;
  671. opacity: 0.3;
  672. }
  673. }
  674. .content {
  675. padding: 50rpx 30rpx 50rpx 30rpx;
  676. .action {
  677. padding-left: 20rpx;
  678. padding-right: 20rpx;
  679. padding-bottom: 30rpx;
  680. .button {
  681. height: 80rpx;
  682. background: linear-gradient(-90deg, #43a1e0 0%, #13e7c1 100%);
  683. border-radius: 40rpx;
  684. font-size: 32rpx;
  685. font-weight: 400;
  686. color: #ffffff;
  687. line-height: 80rpx;
  688. }
  689. }
  690. .item-tips {
  691. .title {
  692. font-size: 30rpx;
  693. font-family: Microsoft YaHei;
  694. font-weight: 400;
  695. color: #000000;
  696. line-height: 24rpx;
  697. }
  698. .tip {
  699. margin-top: 16rpx;
  700. font-size: 24rpx;
  701. font-family: Microsoft YaHei;
  702. font-weight: 400;
  703. color: #999999;
  704. line-height: 24rpx;
  705. }
  706. }
  707. .picture-wrapper {
  708. margin-top: 40rpx;
  709. .bg {
  710. background: #ffffff;
  711. box-shadow: 0rpx 4rpx 13rpx 3rpx rgba(223, 223, 223, 0.8);
  712. border-radius: 20rpx;
  713. padding: 40rpx;
  714. display: flex;
  715. // align-items: center;
  716. justify-content: space-between;
  717. .name {
  718. font-size: 34rpx;
  719. font-family: Microsoft YaHei;
  720. font-weight: 400;
  721. color: #000000;
  722. line-height: 34rpx;
  723. }
  724. .value {
  725. margin-top: 20rpx;
  726. font-size: 24rpx;
  727. font-family: Microsoft YaHei;
  728. font-weight: 400;
  729. color: #999999;
  730. line-height: 24rpx;
  731. }
  732. .tip {
  733. margin-top: 20rpx;
  734. text-align: center;
  735. width: 110rpx;
  736. height: 40rpx;
  737. background: rgba(33, 190, 177, 0.2);
  738. border-radius: 6rpx;
  739. .tip-value {
  740. font-size: 20rpx;
  741. font-family: Microsoft YaHei;
  742. font-weight: 400;
  743. color: #0a8f8a;
  744. line-height: 40rpx;
  745. opacity: 1;
  746. }
  747. }
  748. }
  749. .icon {
  750. width: 294rpx;
  751. height: 188rpx;
  752. }
  753. }
  754. .shibie-wrapper {
  755. margin-top: 60rpx;
  756. .title {
  757. font-size: 30rpx;
  758. font-family: Microsoft YaHei;
  759. font-weight: 400;
  760. color: #000000;
  761. line-height: 30rpx;
  762. }
  763. }
  764. .buchong-wrapper {
  765. margin-top: 60rpx;
  766. .title {
  767. font-size: 30rpx;
  768. font-family: Microsoft YaHei;
  769. font-weight: 400;
  770. color: #000000;
  771. line-height: 30rpx;
  772. }
  773. }
  774. .green-tip {
  775. margin-top: 50rpx;
  776. font-size: 24rpx;
  777. font-family: Microsoft YaHei;
  778. font-weight: 400;
  779. color: #00b38b;
  780. line-height: 24rpx;
  781. margin-bottom: 60rpx;
  782. }
  783. }
  784. .choice-takePhoto {
  785. position: absolute;
  786. bottom: 0;
  787. background-color: white;
  788. width: 100%;
  789. border-radius: 20rpx 20rpx 0 0;
  790. }
  791. .choice-takePhoto>view:first-child {
  792. text-align: center;
  793. height: 80rpx;
  794. line-height: 80rpx;
  795. border-bottom: 1rpx solid rgba(127, 127, 127, 0.3);
  796. background-color: white;
  797. }
  798. .choice-takePhoto>view:last-child {
  799. text-align: center;
  800. height: 80rpx;
  801. line-height: 80rpx;
  802. border-top: 6rpx solid rgba(127, 127, 127, 0.1);
  803. background-color: white;
  804. }
  805. .choice-takePhoto>view {
  806. text-align: center;
  807. height: 80rpx;
  808. line-height: 80rpx;
  809. background-color: white;
  810. }
  811. .choice-takePhoto-wrap {
  812. width: 100%;
  813. height: 100vh;
  814. background-color: rgba(127, 127, 127, 0.2);
  815. position: fixed;
  816. left: 0;
  817. top: 0;
  818. z-index: 11111;
  819. }
  820. .down {
  821. background-color: rgba(33, 190, 177, 0.2);
  822. color: #0a8f8a;
  823. border-radius: 10rpx;
  824. padding: 6rpx 10rpx;
  825. font-size: 28rpx;
  826. margin-top: 10rpx;
  827. width: 48%;
  828. }
  829. </style>