123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- <template>
- <view>
- <public-module></public-module>
- <view class="box"
- :style="{background:`url(${indexBackgroundImage})`,backgroundSize: 'contain',backgroundRepeat: 'no-repeat'}">
- <view class="box-con">
- <uni-forms ref="personData" :rules="rules" :value="personData" label-width="100" validate-trigger="bind"
- err-show-type="toast">
- <uni-forms-item label="姓名" required name="name">
- <input class="uni-input-input textColor" placeholder="输入姓名" v-model="personData.name"
- placeholder-style="font-size:28upx" />
- </uni-forms-item>
- <uni-forms-item label="手机号" required name="mobile">
- <input class="uni-input-input textColor" maxlength="11" placeholder="输入手机号"
- v-model="personData.mobile" placeholder-style="font-size:28upx" />
- </uni-forms-item>
- <uni-forms-item label="证件号" required name="identity">
- <input class="uni-input-input textColor" placeholder="输入证件号" v-model="personData.identity"
- placeholder-style="font-size:28upx" />
- </uni-forms-item>
- <uni-forms-item label="密码" required name="password">
- <input class="uni-input-input textColor" placeholder="输入密码" v-model="personData.password"
- placeholder-style="font-size:28upx" />
- </uni-forms-item>
- <uni-forms-item label="地址" required name="address">
- <input class="uni-input-input textColor" placeholder="输入地址" v-model="personData.address"
- placeholder-style="font-size:28upx" />
- </uni-forms-item>
- </uni-forms>
- </view>
- </view>
- <view class="userBox" style="margin-top:10px">
- <text>身份证件照</text>
- <view class="dis j-s" style="margin: 10px 0;">
- <view class="imgOcr-border">
- <image :src=" userfrontImg?userfrontImg:'/static/image/my/shenfenzz.png'" mode=""
- @click="userfrontChange"></image>
- <view>人像面</view>
- </view>
- <view class="imgOcr-border">
- <image :src="userbackImg?userbackImg:'/static/image/my/shenzf.png'" mode="" @click="userbackChange">
- </image>
- <view>国徽面</view>
- </view>
- </view>
- </view>
- <view class="submit" @click="submit()">
- 提交
- </view>
- </view>
- </template>
- <script>
- import indexBackgroundImage from "@/static/shenqing.png"
- import {
- mapState,
- mapMutations
- } from "vuex"
- export default {
- data() {
- return {
- indexBackgroundImage: indexBackgroundImage,
- checked: false,
- userfrontImg: "",
- userbackImg: "",
- personData: {
- name: '',
- mobile: '',
- identity: '',
- password: '',
- address: '',
- esmUserImageVo: []
- },
- rules: {
- name: {
- rules: [{
- required: true,
- errorMessage: '姓名不能为空'
- }]
- },
- mobile: {
- rules: [{
- required: true,
- errorMessage: '请输入手机号',
- },
- {
- pattern: /^1[3-9]\d{9}$/,
- errorMessage: '请输入正确的手机号',
- }
- ]
- },
- identity: {
- rules: [{
- required: true,
- errorMessage: '请输入身份证号',
- },
- {
- pattern: /^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/,
- errorMessage: '请输入正确的身份证号',
- }
- ]
- },
- password: {
- rules: [{
- required: true,
- errorMessage: '请输入密码'
- }]
- },
- address: {
- rules: [{
- required: true,
- errorMessage: '请输入地址',
- }]
- },
- },
- grade: '',
- id: '',
- }
- },
- computed: {
- ...mapState(['userInfo', "userCheckInfo"]),
- },
- async onLoad(options) {
- console.log(options);
- this.grade = options.grade ? options.grade : ''
- },
- methods: {
- //提交注册
- submit() {
- this.$refs.personData.submit().then(res => {
- if (this.id) {
- this.$http.post('/user/updateUserInfo1/' + this.id, {
- esmUserImageVo: this.personData.esmUserImageVo,
- sysUser: this.personData,
- sysUserInfo: this.personData,
- }).then(res => {
- if (res.code == 200) {
- let obj = JSON.stringify({
- id: this.id,
- mobile: this.personData.mobile
- });
- uni.redirectTo({
- url: "/pages/index/success?data=" + obj
- })
- } else {
- uni.showModal({
- showCancel: false,
- title: res.msg
- })
- }
- })
- } else {
- this.$http.post('/user/newSaveUserInfoByPartner', {
- sysUser: {
- ...this.personData,
- roleId: "97",
- referrerId: this.userInfo.sysUser.userId,
- grade: this.grade,
- },
- esmUserImageVo: this.personData.esmUserImageVo
- }).then(res => {
- if (res.code == 200) {
- let obj = JSON.stringify({
- id: res.data.id,
- mobile: res.data.mobile
- });
- uni.redirectTo({
- url: "/pages/index/success?data=" + obj
- })
- } else {
- uni.showModal({
- showCancel: false,
- title: res.msg
- })
- }
- })
- }
- }).catch(err => {
- console.log('err', err);
- })
- },
- async userfrontChange() {
- let [chooseImageErr, chooseImageRes] = await uni.chooseImage({
- count: 1,
- sizeType: ['compressed']
- });
- let size = chooseImageRes.tempFiles[0].size / 1024 / 1024 < 5;
- if (!size) {
- this.$refs.uToast.show({
- title: '上传图片大小不能超过 5MB!',
- type: 'error',
- })
- return false
- }
- if (chooseImageRes) {
- this.userfrontImg = chooseImageRes.tempFilePaths[0];
- uni.uploadFile({
- url: this.$base.baseUrl + '/ins/taskImage/uploadFileByPartner',
- filePath: chooseImageRes.tempFilePaths[0],
- name: "multipartFile",
- formData: {
- 'type': 'image',
- },
- // header: {
- // Authorization: store.state.token,
- // },
- success: (imgRes) => {
- let data = JSON.parse(imgRes.data);
- if (data.code == '200') {
- if (this.personData.esmUserImageVo.some(v => v.type == 'SFZ_01')) {
- this.personData.esmUserImageVo.map(val => {
- if (val.imageType == 'SFZ_01') {
- val.imageId = data.data.id;
- }
- })
- } else {
- this.personData.esmUserImageVo.push({
- imageId: data.data.id,
- type: "SFZ_01",
- })
- }
- }
- }
- });
- }
- },
- async userbackChange() {
- let [chooseImageErr, chooseImageRes] = await uni.chooseImage({
- count: 1,
- sizeType: ['compressed']
- });
- let size = chooseImageRes.tempFiles[0].size / 1024 / 1024 < 5;
- if (!size) {
- this.$refs.uToast.show({
- title: '上传图片大小不能超过 5MB!',
- type: 'error',
- })
- return false
- }
- if (chooseImageRes) {
- this.userbackImg = chooseImageRes.tempFilePaths[0];
- uni.uploadFile({
- url: this.$base.baseUrl + '/ins/taskImage/uploadFileByPartner',
- filePath: chooseImageRes.tempFilePaths[0],
- name: "multipartFile",
- formData: {
- 'type': 'image',
- },
- // header: {
- // Authorization: store.state.token,
- // },
- success: (imgRes) => {
- let data = JSON.parse(imgRes.data);
- if (data.code == '200') {
- if (this.personData.esmUserImageVo.some(v => v.type == 'SFZ_02')) {
- this.personData.esmUserImageVo.map(val => {
- if (val.imageType == 'SFZ_02') {
- val.imageId = data.data.id;
- }
- })
- } else {
- this.personData.esmUserImageVo.push({
- imageId: data.data.id,
- type: "SFZ_02",
- })
- }
- }
- }
- });
- }
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .box {
- height: 330px;
- width: 100%;
- background: #F9F9F9;
- background: url(/static/image/my/shenqing.png) no-repeat;
- background-size: contain;
- padding: 130px 15px 0 15px;
- // padding: 200px 16px 15px 16px;
- }
- .box-con {
- background: #FFFFFF;
- padding: 10px 15px;
- border-radius: 5px 5px 5px 5px;
- }
- .userBox {
- border-radius: 5px 5px 5px 5px;
- margin: 10px 15px;
- padding: 10px 15px;
- background: #fff;
- font-size: 15px;
- color: #666666;
- .imgOcr-border {
- // position: relative;
- width: 48%;
- text-align: center;
- image {
- display: inline-block;
- height: 95px;
- width: 100%;
- }
- // .del_btn {
- // position: absolute;
- // cursor: pointer;
- // position: absolute;
- // top: 5rpx;
- // right: 0;
- // width: 50rpx;
- // height: 50rpx;
- // border-radius: 50%;
- // z-index: 20;
- // }
- }
- }
- .submit {
- margin: 15px;
- text-align: center;
- color: #fff;
- height: 46px;
- line-height: 46px;
- background: linear-gradient(133deg, #2DD9FF 0%, #2D6DFF 100%);
- border-radius: 31px 31px 31px 31px;
- }
- </style>
|