123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- <template>
- <view class="content">
- <view class="box1">
- <view class="steps hflex acenter jcenter">
- <u-steps :current="current">
- <u-steps-item title="个人信息"></u-steps-item>
- <u-steps-item title="工作信息"></u-steps-item>
- <u-steps-item title="审核"></u-steps-item>
- </u-steps>
- </view>
- <view v-if="current == 0">
- <view class="title">个人信息</view>
- <view class="hflex acenter jbetween cell">
- <view class="left">姓名</view>
- <u-input v-model="userInfo.name" placeholder="请输入您的姓名" inputAlign="right" border="none"></u-input>
- </view>
- <view class="hflex acenter jbetween cell">
- <view class="left">身份证号</view>
- <u-input v-model="userInfo.idNumber" placeholder="请输入您的身份证号" inputAlign="right" border="none"></u-input>
- </view>
- <view class="hflex acenter jbetween cell">
- <view class="left">邮箱</view>
- <u-input v-model="userInfo.eamil" placeholder="请输入您的邮箱" inputAlign="right" border="none"></u-input>
- </view>
- <view class="hflex acenter jbetween cell">
- <view class="left">地址</view>
- <u-input v-model="userInfo.address" placeholder="请输入您的地址" inputAlign="right" border="none"></u-input>
- </view>
- <view class="line"></view>
- <view class="cell">
- <view class="img_title">身份证人像面照片</view>
- <view class="upload_img hflex acenter jcenter">
- <u-upload :fileList="userInfo.fileList1" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="1" multiple :previewFullImage="true" width="110" height="110">
- <image src="/static/images/comment/upload-just.png" style="width: 550rpx;height: 324rpx;"></image>
- </u-upload>
- </view>
- </view>
- <view class="cell">
- <view class="img_title">身份证人像面照片</view>
- <view class="upload_img hflex acenter jcenter">
- <u-upload :fileList="userInfo.fileList2" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="1" multiple :previewFullImage="true" width="110" height="110">
- <image src="/static/images/comment/upload-back.png" style="width: 550rpx;height: 324rpx;"></image>
- </u-upload>
- </view>
- </view>
- <view class="bottom">
- <view class="btn" @click="next">下一步</view>
- </view>
- </view>
- <view v-if="current == 1">
- <view class="title">工作信息</view>
- <view class="cell">
- <view class="img_title">营业执照(必填)</view>
- <view class="upload_img hflex acenter jcenter">
- <u-upload :fileList="userInfo.fileList3" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="1" multiple :previewFullImage="true" width="110" height="110">
- <image src="/static/images/comment/upload-just.png" style="width: 550rpx;height: 324rpx;"></image>
- </u-upload>
- </view>
- </view>
- <view class="cell">
- <view class="img_title">厂家授权(非必填)</view>
- <view class="upload_img hflex acenter jcenter">
- <u-upload :fileList="userInfo.fileList4" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="1" multiple :previewFullImage="true" width="110" height="110">
- <image src="/static/images/comment/upload-just.png" style="width: 550rpx;height: 324rpx;"></image>
- </u-upload>
- </view>
- </view>
- <view class="cell">
- <view class="img_title">以往业绩</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- current: 0,
- userInfo: {
- name: '',
- idNumber: '',
- eamil: '',
- address: '',
- fileList1: [],
- fileList2: [],
- fileList3: [],
- fileList4: [],
- }
- }
- },
- onLoad() {
- that = this
- },
- methods: {
- // 删除图片
- deletePic(event) {
- // that.userInfo.imgList.splice(event.index, 1)
- console.log(event)
- this[`fileList${event.name}`].splice(event.index, 1)
- },
- // 新增图片
- async afterRead(event) {
- let lists = [].concat(event.file)
- let fileListLen = this[`fileList${event.name}`].length
- lists.map((item) => {
- this[`fileList${event.name}`].push({
- ...item,
- status: 'uploading',
- message: '上传中'
- })
- })
- for (let i = 0; i < lists.length; i++) {
- const result = await this.uploadFilePromise(lists[i].url)
- let item = this[`fileList${event.name}`][fileListLen]
- this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
- status: 'success',
- message: '',
- url: result
- }))
- fileListLen++
- }
- },
- // 上传图片
- uploadFilePromise(url) {
- return new Promise((resolve, reject) => {
- let a = uni.uploadFile({
- url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
- filePath: url,
- name: 'file',
- formData: {
- user: 'test'
- },
- success: (res) => {
- setTimeout(() => {
- resolve(res.data.data)
- }, 1000)
- }
- });
- })
- },
- next() {
- that.current = that.current + 1
- // if ($api.formCheck(that.userInfo.name,'truename') && $api.formCheck(that.userInfo.idNumber,'identity') && $api.formCheck(that.userInfo.eamil,'email') && $api.formCheck(that.userInfo.address,'required') && $api.formCheck(that.userInfo.just_img,'required') && $api.formCheck(that.userInfo.back_img,'required')) {
- // that.current = that.current + 1
- // }
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- padding: 0 40rpx;
- .box1 {
- .steps {
- width: 100%;
- height: 188rpx;
- }
- .title {
- font-size: 32rpx;
- color: #444;
- margin: 8rpx 0;
- position: relative;
- z-index: 9;
- }
- .title::before {
- width: 120rpx;
- height: 16rpx;
- background: linear-gradient(270deg, #506dff 0%, #fff 100%);
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- z-index: 2;
- opacity: 0.8;
- }
- .u-input {
- width: 100%;
- margin-top: 30rpx;
- }
- .cell {
- width: 100%;
- padding: 20rpx 0;
- .left {
- font-size: 28rpx;
- color: #222;
- }
- .u-input {
- font-size: 28rpx;
- color: #222;
- }
- .img_title {
- font-size: 28rpx;
- color: #444;
- }
- .upload_img {
- width: 670rpx;
- height: 404rpx;
- background-color: #f4f4f4;
- border-radius: 20rpx;
- margin: 28rpx 0 40rpx;
- }
- .u-upload__wrap {
- display: flex;
- align-items: center !important;
- justify-content: center !important;
- }
- }
- .line {
- width: 100%;
- height: 1rpx;
- background-color: #f4f4f4;
- }
- .bottom {
- width: 100%;
- margin: 40rpx 0 64rpx;
- .btn {
- width: 690rpx;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- border-radius: 44rpx;
- background-color: #506dff;
- color: #fff;
- font-size: 36rpx;
- }
- }
- }
-
- }
- </style>
|