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

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