identity.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <template>
  2. <view class="total-page page-env-160 page-box task-bg">
  3. <Nav :title="title" :genre="4" is_fixed :opacity="scrollTop" :fixedHeight="fixedHeight"
  4. :navsHeight="fixedHeight" :bgHeight="fixedHeight">
  5. <!-- 步鄹条start -->
  6. <!-- <view class="task-tabs" :style="{top:`${$tools.topHeight()}px`}">-->
  7. <!-- <view class="row-justify-sb m-lr50 m-tb20">-->
  8. <!-- <view class="column-c" style="text-align: center;" @click="setNum(1)">-->
  9. <!-- <image class="wh-45 m-b16" :src="`https://wealfavor-1257406827.cos.ap-beijing.myqcloud.com/new-xcx/information/${step === 1?'double':'correct'}.png`"-->
  10. <!-- mode="aspectFill"></image>-->
  11. <!-- <text class="size-24"-->
  12. <!-- :class="step === 1?'color-0FB160 sys-weight-600':'sys-weight-400'">身份认证</text>-->
  13. <!-- </view>-->
  14. <!-- <view class="line"></view>-->
  15. <!-- <view class="column-c justify-center" @click="setNum(2)">-->
  16. <!-- <image class="wh-45 m-b16" :src="`https://wealfavor-1257406827.cos.ap-beijing.myqcloud.com/new-xcx/information/${stepTwo[step-1]}.png`"-->
  17. <!-- mode="aspectFill"></image>-->
  18. <!-- <text class="size-24"-->
  19. <!-- :class="step === 2?'color-0FB160 sys-weight-600':'sys-weight-400'">教育职业信息</text>-->
  20. <!-- </view>-->
  21. <!-- <view class="line"></view>-->
  22. <!-- <view class="column-c justify-center" @click="setNum(3)">-->
  23. <!-- <image class="wh-45 m-b16" :src="`https://wealfavor-1257406827.cos.ap-beijing.myqcloud.com/new-xcx/information/${stepThree[step-1]}.png`"-->
  24. <!-- mode="aspectFill"></image>-->
  25. <!-- <text class="size-24"-->
  26. <!-- :class="step === 3?'color-0FB160 sys-weight-600':'sys-weight-400'">社保信息</text>-->
  27. <!-- </view>-->
  28. <!-- </view>-->
  29. <!-- </view>-->
  30. <!-- 步鄹条end -->
  31. </Nav>
  32. <view class=" page-env-20" :style="[{top:`${$tools.topHeight() + fixedHeight}px`}]">
  33. <!-- 身份认证start -->
  34. <view class="m-t20 m-lr30 text-color-12" >
  35. <view class="sys-background-fff r-20 p-lr30 p-t30">
  36. <text class="size-30 sys-weight-600'">身份认证</text>
  37. <view class="size-26 m-t10 text-color-999">应监管要求,请先进行身份认证</view>
  38. <view class="sys-bg-BFD2CC row-justify-sb sys-weight-500 center r-20 p-30 m-t40">
  39. <view class="row-c flex">
  40. <image class="wh-45 m-r20" src="https://wealfavor-1257406827.cos.ap-beijing.myqcloud.com/new-xcx/task/sf_icon.png" mode=""></image>
  41. <text class="size-26">身份证认证</text>
  42. </view>
  43. <button class="attestation-button button-background button-color size-26 r-30" type="default" hover-class="is-hover" @click="onAuthentication(1)">去认证</button>
  44. </view>
  45. <view class="p-t20">
  46. <WhInput :value="formData.name" name="姓名" placeholder="待自动录入" disabled></WhInput>
  47. <WhInput :value="formData.sex===1?'男':'女'" name="性别" placeholder="待自动录入" disabled></WhInput>
  48. <WhInput :value="formData.id_number" :is_border="false" :name="'身份证号'" placeholder="待自动录入"
  49. disabled>
  50. </WhInput>
  51. </view>
  52. </view>
  53. <view class="sys-background-fff r-20 m-t20 p-lr30">
  54. <WhInput :value="formData.phone" v-if="verifyKey('phone')" :name="'联系方式'"></WhInput>
  55. <en-city label="常居城市" placeholder="请选择省、市、区" v-if="verifyKey('resident_city')" v-model="formData.resident_city"></en-city>
  56. <WhInput :name="'详细地址'" :value="formData.resident_address" v-if="verifyKey('resident_address')"></WhInput>
  57. <en-select label="婚姻状态" :local-data="marriageData" v-if="verifyKey('marriage_type')" v-model="formData.marriage_type"></en-select>
  58. <en-upload label="添加结婚证" :imageWidth="180" v-if="verifyKey('marriage_img') && formData.marriage_type!=='1'" v-model="formData.marriage_img"></en-upload>
  59. </view>
  60. <view class="sys-background-fff r-20 m-t20 p-lr30" v-if="formData.marriage_type===2">
  61. <WhInput label="配偶姓名" type="text" placeholder="等待自动录入" v-if="verifyKey('mate_name')"
  62. v-model="formData.mate_name"></WhInput>
  63. <WhInput label="配偶身份" type="idcard" placeholder="等待自动录入" v-if="verifyKey('mate_id_number')"
  64. v-model="formData.mate_id_number"></WhInput>
  65. <WhInput label="配偶手机号" type="number" placeholder="请输入手机号码" v-if="verifyKey('mate_phone')"
  66. v-model="formData.mate_phone"></WhInput>
  67. <WhInput label="配偶企业" type="text" placeholder="请输入配偶所在企业" v-if="verifyKey('mate_firm')"
  68. v-model="formData.mate_firm" :no-box="true"></WhInput>
  69. </view>
  70. </view>
  71. <!-- 身份认证end -->
  72. <!-- 教育职业背景start -->
  73. <view class="m-t20 m-lr30 text-color-12" >
  74. <view class="sys-background-fff r-20 m-t20 p-lr30 p-t30">
  75. <view class="size-30 sys-weight-600 p-b30">教育职业背景</view>
  76. <WhInput name="学历" is_select></WhInput>
  77. <EnRadio v-model="formData.is_farming" name="雇佣类型" :list="employTypeData" > </EnRadio>
  78. <WhInput name="企业名称"></WhInput>
  79. <WhInput name="企业城市" is_select></WhInput>
  80. <WhInput :is_border="false" name="详细地址"></WhInput>
  81. </view>
  82. </view>
  83. <!-- 教育职业背景end -->
  84. <!-- 社保信息start -->
  85. <view class="m-t20 m-lr30 text-color-12" >
  86. <view class="sys-background-fff r-20 m-t20 p-lr30 p-t30">
  87. <view class="size-30 sys-weight-600 p-b30">社保信息</view>
  88. <WhInput name="缴纳时间" rightText="月" placeholder="请输入社保连续缴纳时间"></WhInput>
  89. <WhInput name="公积金" rightText="元" placeholder="请输入公积金缴纳基数"></WhInput>
  90. </view>
  91. </view>
  92. <!-- 社保信息end -->
  93. </view>
  94. <!-- <EnButton :text="'完成'" @onSubmit="onSubmit" v-if="step === 3 || step === 4"></EnButton> -->
  95. <EnButton v-if="step === 3" is_both :leftText="'上一步'" :rightText="'保存'" @onLeftSubmit="onStep(0)"
  96. @onSubmit="onSubmit" />
  97. <EnButton v-else is_both :leftText="'保存'" :rightText="'下一步'" @onLeftSubmit="onLeftSubmit" @onSubmit="onStep(1)">
  98. </EnButton>
  99. <uv-action-sheet ref="marriageSheet" round="10" :actions="marriageData" title="请选择婚姻状态" @select="onSelectMarriage"></uv-action-sheet>
  100. </view>
  101. </template>
  102. <!-- correct -->
  103. <script>
  104. import TaskImgTab from "@/common/task/task_ima_tab.vue"
  105. import WhInput from "@/components/en-from/en-input/wh-input.vue"
  106. import EnDataPicker from "@/components/en-utils/en-data-picker/en-data-picker.vue"
  107. import EnCity from "@/components/en-from/en-city/en-city.vue";
  108. import EnSelect from "@/components/en-from/en-select/en-select.vue";
  109. import EnUpload from "@/components/en-from/en-upload/en-upload.vue";
  110. export default {
  111. components: {
  112. EnUpload,
  113. EnSelect,
  114. EnCity,
  115. TaskImgTab,
  116. WhInput,
  117. EnDataPicker
  118. },
  119. data() {
  120. return {
  121. employTypeData: [{'value': 1, 'text': '受薪'}, {'value': 2, 'text': '自雇'}],
  122. sexData: [{'value': 1, 'text': '男'}, {'value': 2, 'text': '女'}],
  123. marriageData: [{'value': 1, 'text': '单身'}, {'value': 2, 'text': '已婚'}, {'value': 3, 'text': '离异'}, {'value': 4, 'text': '丧偶'}],
  124. educationData: [
  125. {text: "初中", value: 1,},
  126. {text: "高中", value: 2,},
  127. {text: "中专", value: 3,},
  128. {text: "大专", value: 4,},
  129. {text: "本科", value: 5,},
  130. {text: "研究生", value: 6,},
  131. {text: "硕士", value: 7,},
  132. {text: "博士", value: 8,},
  133. {text: "博士后", value: 9,},
  134. ],
  135. title: '',
  136. step: 1,
  137. scrollTop: 0,
  138. // fixedHeight: 75,
  139. fixedHeight: 0,
  140. stepTwo: ['two', 'double', 'correct', 'correct'],
  141. stepThree: ['three', 'three', 'double', 'correct'],
  142. value: '',
  143. formData: {
  144. "name": "",
  145. "birthday": "",
  146. "sex": 1,
  147. "id_number": "",
  148. "identity_one": "",
  149. "identity_two": "",
  150. "phone": "",
  151. "marriage_type": 1,
  152. "education_type": '',
  153. "education_name": '',
  154. "employ_type": 1,
  155. "firm_name": "",
  156. "firm_address": "",
  157. "resident_city": "",
  158. "resident_address": "",
  159. "mate_name": "",
  160. "mate_phone": "",
  161. "mate_id_number": "",
  162. "mate_firm": "",
  163. "m_code": "",
  164. "code": "",
  165. "m_identity_one": "",
  166. "m_identity_two": "",
  167. "firm_city": "",
  168. "social_num": "",
  169. "reserved_money": "",
  170. "marriage_img": [],
  171. "credit_img": []
  172. },
  173. clientInfoKey:[]
  174. }
  175. },
  176. watch: {
  177. 'formData': {
  178. handler() {
  179. uni.$emit("putClientInfo", this.formData);
  180. },
  181. deep: true
  182. },
  183. },
  184. onPageScroll(res) {
  185. this.scrollTop = res.scrollTop / 120
  186. },
  187. onLoad(options) {
  188. this.title = options.title
  189. let clientInfoData = uni.getStorageSync('clientInfoData')
  190. let clientInfoKey = uni.getStorageSync('clientInfoKey')
  191. this.formData=clientInfoData
  192. this.clientInfoKey=clientInfoKey
  193. console.log(clientInfoData, clientInfoKey)
  194. uni.$on('discernMember',data=>{
  195. this.formData.identity_one=data.identity_one
  196. this.formData.identity_two=data.identity_two
  197. this.formData.name=data.name
  198. this.formData.id_number=data.id_number
  199. this.formData.sex=data.sex
  200. this.formData.identity_validity=data.identity_validity
  201. })
  202. uni.$on('setClientData',clientInfo=>{
  203. this.formData=clientInfo
  204. })
  205. },
  206. methods: {
  207. verifyKey(field) {
  208. return this.clientInfoKey.indexOf(field) >= 0
  209. },
  210. setNum(step) {
  211. if (this.step !== step) {
  212. this.step = step
  213. }
  214. },
  215. // 身份认证
  216. onAuthentication(item) {
  217. uni.navigateTo({
  218. url: "/page_task/identity_upload/identity_upload?identity_one="+this.formData.identity_one+'&identity_two='+this.formData.identity_two+'&name='+this.formData.name+'&identity_validity='+this.formData.identity_validity
  219. })
  220. },
  221. // 保存
  222. onLeftSubmit() {
  223. console.log(this.formData);
  224. console.log('保存');
  225. this.step--
  226. },
  227. // 下一步
  228. onStep(type) {
  229. if (type === 1) {
  230. if (this.step === 3) return
  231. this.step++
  232. } else {
  233. if (this.step === 1) return
  234. this.step--
  235. }
  236. },
  237. // 完成
  238. onSubmit() {
  239. this.step = 4
  240. },
  241. onChange(address) {
  242. console.log(address);
  243. this.formData.firm_address = address
  244. },
  245. onMarriage() {
  246. this.$refs.marriageSheet.open();
  247. },
  248. onSelectMarriage(e) {
  249. console.log(e);
  250. },
  251. onFarming(e) {
  252. this.formData.is_farming = e
  253. }
  254. }
  255. }
  256. </script>
  257. <style lang="scss" scoped>
  258. .info_button {
  259. width: 130rpx;
  260. height: 60rpx;
  261. border: none;
  262. line-height: 60rpx;
  263. }
  264. .attestation_content {
  265. width: 100%;
  266. position: absolute;
  267. }
  268. .attestation-button {
  269. width: 156rpx;
  270. height: 54rpx;
  271. line-height: 54rpx;
  272. background: #FFFFFF;
  273. border: 1rpx solid #0FB160;
  274. }
  275. .line {
  276. width: 70rpx;
  277. height: 4rpx;
  278. background: #8EDBDA;
  279. margin-top: 22rpx;
  280. }
  281. button::after {
  282. border: none;
  283. }
  284. </style>