linwenxin 5 месяцев назад
Родитель
Сommit
ecf90442c7
3 измененных файлов с 546 добавлено и 229 удалено
  1. 92 0
      src/components/dateTimeBind.vue
  2. 2 2
      src/manifest.json
  3. 452 227
      src/packageMine/pages/workerEnter.vue

+ 92 - 0
src/components/dateTimeBind.vue

@@ -0,0 +1,92 @@
+<template>
+  <view>
+    <u-datetime-picker
+      v-if="isShow"
+      v-model="datePickerValue"
+      :show="isShow"
+      :mode="type"
+      placeholder="选择时间"
+      @confirm="confirmDate"
+      @cancel="isShow = false"
+      @close="isShow = false"
+      :minDate="minDate"
+      :formatter="formatter"
+      :style="{ width: '100%' }"
+    />
+  </view>
+</template>
+
+<script>
+export default {
+  props: {
+    value: {
+      type: [String, Number],
+      default: ''
+    },
+    datePickerValue: {
+      type: [String, Number],
+      default: new Date().getTime()
+    },
+    minDate: {
+      type: [String, Number],
+      default: null
+    },
+    type: {
+      type: [String, Number],
+      default: 'datetime'
+    }
+  },
+
+  data() {
+    return {
+      isShow: false
+    }
+  },
+
+  methods: {
+    showWin() {
+      this.isShow = true
+    },
+    confirmDate(e) {
+      this.$emit('input', this.formatTimestamp(e.value))
+      this.$nextTick(() => {
+        this.isShow = false
+      })
+    },
+    formatter(type, value) {
+      if (type === 'year') {
+        return `${value}年`
+      }
+      if (type === 'month') {
+        return `${value}月`
+      }
+      if (type === 'day') {
+        return `${value}日`
+      }
+      if (type === 'hour') {
+        return `${value}时`
+      }
+      if (type === 'minute') {
+        return `${value}分`
+      }
+      return value
+    },
+    formatTimestamp(timestamp) {
+      const date = new Date(timestamp)
+      const year = date.getFullYear()
+      const month = (date.getMonth() + 1).toString().padStart(2, '0')
+      const day = date.getDate().toString().padStart(2, '0')
+      const hours = date.getHours().toString().padStart(2, '0')
+      const minutes = date.getMinutes().toString().padStart(2, '0')
+      const seconds = date.getSeconds().toString().padStart(2, '0')
+      if (this.type === 'datetime') {
+        return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
+      } else if (this.type === 'date') {
+        return `${year}-${month}-${day}`
+      }
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped></style>

+ 2 - 2
src/manifest.json

@@ -13,7 +13,7 @@
   },
   "h5": {
     "title": "",
-    "publicPath": "/",
+    "publicPath": "/jsm-h5/",
     "devServer": {
       "https": false,
       "port": 3000,
@@ -31,7 +31,7 @@
     },
     "router": {
       "mode": "history",
-      "base": "/",
+      "base": "/jsm-h5/",
       "cache": {
         "mode": "path",
         "pages": []

+ 452 - 227
src/packageMine/pages/workerEnter.vue

@@ -38,27 +38,57 @@
           <view class="mokuaikapian">
             <view class="mokuaineirongquyu">
               <h3>身份证信息</h3>
-              <view class="item">
-                <view class="imgs" @tap="toChooseImg('idCardImg')">
-                  <image
-                    class="del"
-                    @tap.stop="idCardImg = ''"
-                    v-show="idCardImg"
-                    src="/static/mine/workerEnter/del.png"
-                    mode="aspectFill"
-                  ></image>
-                  <image
-                    id="img"
-                    v-if="idCardImg"
-                    :src="idCardImg"
-                    mode="aspectFill"
-                    @tap.stop="previewImage(idCardImg)"
-                  ></image>
-                  <view v-else class="addimg">
-                    <image src="/static/mine/workerEnter/camera.png" mode="aspectFit"></image>
+              <view style="display: flex; justify-content: space-between; align-items: center">
+                <view class="item" style="border-bottom: none">
+                  <view class="imgs" @tap="toChooseImg('idCardImg')">
+                    <image
+                      class="del"
+                      @tap.stop="idCardImg = ''"
+                      v-show="idCardImg"
+                      src="/static/mine/workerEnter/del.png"
+                      mode="aspectFill"
+                    ></image>
+                    <image
+                      class="img_neirong"
+                      v-if="idCardImg"
+                      :src="idCardImg"
+                      mode="aspectFill"
+                      @tap.stop="previewImage(idCardImg)"
+                    ></image>
+                    <view v-else class="addimg">
+                      <view class="img_neirong">
+                        <text class="iconfont icon-xiangji"></text>
+                        <text class="text">添加图片</text>
+                      </view>
+                    </view>
                   </view>
                   <view class="text required">身份证正面</view>
                 </view>
+                <view class="item" style="border-bottom: none">
+                  <view class="imgs" @tap="toChooseImg('idCardBackImg')">
+                    <image
+                      class="del"
+                      @tap.stop="idCardBackImg = ''"
+                      v-show="idCardBackImg"
+                      src="/static/mine/workerEnter/del.png"
+                      mode="aspectFill"
+                    ></image>
+                    <image
+                      class="img_neirong"
+                      v-if="idCardBackImg"
+                      :src="idCardBackImg"
+                      mode="aspectFill"
+                      @tap.stop="previewImage(idCardBackImg)"
+                    ></image>
+                    <view v-else class="addimg">
+                      <view class="img_neirong">
+                        <text class="iconfont icon-xiangji"></text>
+                        <text class="text">添加图片</text>
+                      </view>
+                    </view>
+                  </view>
+                  <view class="text required">身份证反面</view>
+                </view>
               </view>
               <view class="item flex">
                 <view class="required">身份证号</view>
@@ -66,35 +96,100 @@
                   <input v-model="idcard" maxlength="18" type="text" placeholder="请输入身份证号" />
                 </view>
               </view>
+              <view class="item flex" @click="$refs.idCardStateTime.showWin">
+                <view class="">证件有效期开始日期</view>
+                <view class="flex" style="flex: 1; pointer-events: none">
+                  <input v-model="idCardStateTime" disabled type="text" placeholder="请选择日期" />
+                </view>
+              </view>
+              <view class="item flex" @click="$refs.idCardEndTime.showWin">
+                <view class="">证件有效期结束日期</view>
+                <view class="flex" style="flex: 1; pointer-events: none">
+                  <input v-model="idCardEndTime" disabled type="text" placeholder="请选择日期" />
+                </view>
+              </view>
             </view>
           </view>
           <!-- ----------------------------------------------------------------- -->
           <view class="mokuaikapian">
             <view class="mokuaineirongquyu">
               <h3>高空证信息</h3>
-              <view class="item" v-for="(item, index) in imgList" :key="index">
-                <view class="imgs" @tap="toChooseImg1(index)">
-                  <image
-                    class="del"
-                    @tap.stop="item.imgUrl = ''"
-                    v-show="item.imgUrl"
-                    src="/static/mine/workerEnter/del.png"
-                    mode="aspectFill"
-                  ></image>
-                  <image
-                    id="img"
-                    v-if="item.imgUrl"
-                    :src="item.imgUrl"
-                    mode="aspectFill"
-                    @tap.stop="previewImage(item.imgUrl)"
-                  ></image>
-                  <view v-else class="addimg">
-                    <image src="/static/mine/workerEnter/camera.png" mode="aspectFit"></image>
+              <view style="display: flex; justify-content: space-between; align-items: center">
+                <view class="item" style="border-bottom: none">
+                  <view class="imgs" @tap="toChooseImg('altitudeDocumentImg')">
+                    <image
+                      class="del"
+                      @tap.stop="altitudeDocumentImg = ''"
+                      v-show="altitudeDocumentImg"
+                      src="/static/mine/workerEnter/del.png"
+                      mode="aspectFill"
+                    ></image>
+                    <image
+                      class="img_neirong"
+                      v-if="altitudeDocumentImg"
+                      :src="altitudeDocumentImg"
+                      mode="aspectFill"
+                      @tap.stop="previewImage(altitudeDocumentImg)"
+                    ></image>
+                    <view v-else class="addimg">
+                      <view class="img_neirong">
+                        <text class="iconfont icon-xiangji"></text>
+                        <text class="text">添加图片</text>
+                      </view>
+                    </view>
+                  </view>
+                  <view class="text required">高空证正面</view>
+                </view>
+                <view class="item" style="border-bottom: none">
+                  <view class="imgs" @tap="toChooseImg('altitudeDocumentBackImg')">
+                    <image
+                      class="del"
+                      @tap.stop="altitudeDocumentBackImg = ''"
+                      v-show="altitudeDocumentBackImg"
+                      src="/static/mine/workerEnter/del.png"
+                      mode="aspectFill"
+                    ></image>
+                    <image
+                      class="img_neirong"
+                      v-if="altitudeDocumentBackImg"
+                      :src="altitudeDocumentBackImg"
+                      mode="aspectFill"
+                      @tap.stop="previewImage(altitudeDocumentBackImg)"
+                    ></image>
+                    <view v-else class="addimg">
+                      <view class="img_neirong">
+                        <text class="iconfont icon-xiangji"></text>
+                        <text class="text">添加图片</text>
+                      </view>
+                    </view>
                   </view>
-                  <view class="text required">{{ item.dictValue }}</view>
+                  <view class="text required">高空证反面</view>
+                </view>
+              </view>
+              <view class="item flex">
+                <view class="">证件号</view>
+                <view class="flex" style="flex: 1">
+                  <input v-model="altitudeDocumentNumber" maxlength="18" type="text" placeholder="请输入高空证号" />
+                </view>
+              </view>
+              <view class="item flex" @click="$refs.reexamineTime.showWin">
+                <view class="">复审日期</view>
+                <view class="flex" style="flex: 1; pointer-events: none">
+                  <input v-model="reexamineTime" disabled type="text" placeholder="请选择日期" />
+                </view>
+              </view>
+              <view class="item flex" @click="$refs.altitudeDocumentStateTime.showWin">
+                <view class="">证件有效期开始日期</view>
+                <view class="flex" style="flex: 1; pointer-events: none">
+                  <input v-model="altitudeDocumentStateTime" disabled type="text" placeholder="请选择日期" />
+                </view>
+              </view>
+              <view class="item flex" @click="$refs.altitudeDocumentEndTime.showWin">
+                <view class="">证件有效期结束日期</view>
+                <view class="flex" style="flex: 1; pointer-events: none">
+                  <input v-model="altitudeDocumentEndTime" disabled type="text" placeholder="请选择日期" />
                 </view>
               </view>
-              <view class="zhu">注意:支持PNG、JPG、JPEG,每张大小不可超过1M</view>
             </view>
           </view>
           <!-- ----------------------------------------------------------------- -->
@@ -102,21 +197,51 @@
             <view class="mokuaineirongquyu">
               <h3>意外险信息</h3>
               <view class="item flex">
+                <view class="required">是否已购买意外险</view>
+                <view class="flex" style="flex: 1">
+                  <radio-group
+                    @change="
+                      d => {
+                        isBuy = d.detail.value
+                      }
+                    "
+                  >
+                    <label style="margin-left: 20upx; margin-right: 20upx">
+                      <radio value="YES" :checked="isBuy === 'YES'" />是
+                    </label>
+                    <label> <radio value="NO" :checked="isBuy === 'NO'" />否 </label>
+                  </radio-group>
+                </view>
+              </view>
+
+              <view class="item flex">
                 <view class="required">保险公司名称</view>
                 <view class="flex" style="flex: 1">
-                  <input v-model="name" type="text" placeholder="请输入姓名" />
+                  <input v-model="insurancePolicyName" type="text" placeholder="请输入姓名" />
                 </view>
               </view>
               <view class="item flex">
                 <view class="">保单名称</view>
                 <view class="flex" style="flex: 1">
-                  <input v-model="bankAccount" maxlength="18" type="text" placeholder="请输入银行卡号" />
+                  <input v-model="insuranceName" maxlength="18" type="text" placeholder="请输入银行卡号" />
                 </view>
               </view>
               <view class="item flex">
                 <view class="">保险单号</view>
                 <view class="flex" style="flex: 1">
-                  <input v-model="bankAccount" maxlength="18" type="text" placeholder="请输入银行卡号" />
+                  <input v-model="insuranceNumber" maxlength="18" type="text" placeholder="请输入银行卡号" />
+                </view>
+              </view>
+              <view class="item flex" @click="$refs.insuranceStateTime.showWin">
+                <view class="">保险有效期开始日期</view>
+                <view class="flex" style="flex: 1; pointer-events: none">
+                  <input v-model="insuranceStateTime" disabled type="text" placeholder="请选择日期" />
+                </view>
+              </view>
+              <view class="item flex" @click="$refs.insuranceEndTime.showWin">
+                <view class="">保险有效期结束日期</view>
+                <view class="flex" style="flex: 1; pointer-events: none">
+                  <input v-model="insuranceEndTime" disabled type="text" placeholder="请选择日期" />
                 </view>
               </view>
               <view class="mt30 image-container">
@@ -139,18 +264,6 @@
           <!-- ----------------------------------------------------------------- -->
         </view>
       </view>
-      <zjDialogPicker
-        ref="websitDialog"
-        :isShow="isShowWebsitDialog"
-        :multiple="false"
-        :styleType="2"
-        :title="'入驻网点'"
-        :list="websitList"
-        :keyName="'name'"
-        @cancel="isShowWebsitDialog = false"
-        @confirm="confirmWebsitDialog"
-      >
-      </zjDialogPicker>
     </template>
 
     <template slot="footer">
@@ -165,30 +278,75 @@
       </view>
       <view class="btn" @click="submit()">提交审核</view>
     </template>
+    <dateTimeBind v-model="idCardStateTime" ref="idCardStateTime" type="date" />
+    <dateTimeBind v-model="idCardEndTime" ref="idCardEndTime" type="date" />
+    <dateTimeBind v-model="reexamineTime" ref="reexamineTime" type="date" />
+    <dateTimeBind v-model="altitudeDocumentStateTime" ref="altitudeDocumentStateTime" type="date" />
+    <dateTimeBind v-model="altitudeDocumentEndTime" ref="altitudeDocumentEndTime" type="date" />
+    <dateTimeBind v-model="insuranceStateTime" ref="insuranceStateTime" type="date" />
+    <dateTimeBind v-model="insuranceEndTime" ref="insuranceEndTime" type="date" />
   </zj-page-layout>
 </template>
 
 <script>
 import { uploadImgFull } from '@/common/utils/util.js'
 import zjDialogPicker from '@/components/zj-dialog/zj-dialog-picker.vue'
+import dateTimeBind from '@/components/dateTimeBind.vue'
 import verify from '@/common/utils/verify.js'
 export default {
   components: {
-    zjDialogPicker
+    zjDialogPicker,
+    dateTimeBind
   },
   data() {
     return {
-      isShowWebsitDialog: false,
+      // 协议统一
       isChecked: false,
-      websitList: [],
+      // 网点
       websitName: '',
       websitId: '',
+      // 名称
       name: '',
+      // 银行卡号
       bankAccount: '',
+      // ------------------------
+      // 身份证号
       idcard: '',
+      // 身份证有效期开始日期
+      idCardStateTime: '',
+      // 身份证有效期结束日期
+      idCardEndTime: '',
+      // 身份证正面
       idCardImg: '',
-      imageUrl: this.$imageUrl,
-      imgList: [],
+      // 身份证反面
+      idCardBackImg: '',
+      // --------------------------
+      // 高空证号
+      altitudeDocumentNumber: '',
+      // 复审日期
+      reexamineTime: '',
+      // 高空证有效期开始日期
+      altitudeDocumentStateTime: '',
+      // 高空证有效期结束日期
+      altitudeDocumentEndTime: '',
+      // 高空证正面
+      altitudeDocumentImg: '',
+      // 高空证反面
+      altitudeDocumentBackImg: '',
+      // --------------------------
+      // 是否购买意外险
+      isBuy: 'YES',
+      // 保险公司名称
+      insurancePolicyName: '',
+      // 保单名称
+      insuranceName: '',
+      // 保险单号
+      insuranceNumber: '',
+      // 保险开始日期
+      insuranceStateTime: '',
+      // 保险结束日期
+      insuranceEndTime: '',
+      // 保险图片集合
       imageList: [] //上传的文件数据
     }
   },
@@ -199,67 +357,9 @@ export default {
       this.websitName = websitName
     }
     this.getUser()
-    this.getImageList()
   },
-  computed: {},
 
   methods: {
-    // 添加图片
-    async addImage() {
-      uni.chooseImage({
-        count: 6 - this.imageList.length,
-        success: res => {
-          uni.showLoading()
-          res.tempFilePaths.forEach(async item => {
-            let data = await uploadImgFull(item)
-            this.imageList.push(data)
-          })
-          uni.hideLoading()
-        },
-        fail: err => {}
-      })
-    },
-
-    // 删除图片
-    delImage(index) {
-      this.imageList.splice(index, 1)
-    },
-
-    //预览图片
-    prevImg(current) {
-      uni.previewImage({
-        current,
-        urls: this.imageList.map(item => {
-          return item.url
-        })
-      })
-    },
-
-    getWebsit() {
-      this.$api
-        .get('/user/apply/websit', {
-          pageNum: 1,
-          pageSize: -1,
-          status: 'ON'
-        })
-        .then(res => {
-          this.websitList = res.data
-        })
-    },
-
-    getImageList() {
-      this.$api
-        .post('/pay/sysDict', {
-          dictType: 'WORKER_IMG'
-        })
-        .then(res => {
-          res.data.filter(item => {
-            return (item.imgUrl = '')
-          })
-          this.imgList = res.data
-        })
-    },
-
     getUser() {
       this.$api
         .get('/user/user/detail', {
@@ -268,18 +368,197 @@ export default {
         .then(res => {
           this.idcard = res.data.idCard
           this.idCardImg = res.data.idCardImg
-          // this.name = res.data.nickName
+          this.idCardBackImg = res.data.idCardBackImg || ''
         })
     },
 
-    openWebsit() {
-      this.isShowWebsitDialog = true
+    checkForm() {
+      if (!this.websitId) {
+        this.$tips('请选择入驻网点!')
+        return false
+      }
+      if (!this.name) {
+        this.$tips('请输入姓名!')
+        return false
+      }
+      if (!this.idcard) {
+        this.$tips('请输入身份证号码!')
+        return false
+      }
+      if (!verify.isIdCard(this.idcard)) {
+        this.$tips('身份证号码格式不正确,请输入正确身份证号码!')
+        return false
+      }
+      if (!this.idCardImg) {
+        this.$tips('请上传身份证正面照!')
+        return false
+      }
+      if (!this.idCardBackImg) {
+        this.$tips('请上传身份证反面照!')
+        return false
+      }
+      if (!this.idCardStateTime) {
+        this.$tips('请选择身份证有效期时间!')
+        return false
+      }
+      if (!this.idCardEndTime) {
+        this.$tips('请选择身份证有效期时间!')
+        return false
+      }
+      if (
+        this.altitudeDocumentNumber ||
+        this.reexamineTime ||
+        this.altitudeDocumentStateTime ||
+        this.altitudeDocumentEndTime ||
+        this.altitudeDocumentImg ||
+        this.altitudeDocumentBackImg
+      ) {
+        if (
+          !this.altitudeDocumentNumber ||
+          !this.reexamineTime ||
+          !this.altitudeDocumentStateTime ||
+          !this.altitudeDocumentEndTime ||
+          !this.altitudeDocumentImg ||
+          !this.altitudeDocumentBackImg
+        ) {
+          this.$tips('高空证信息需要完整!')
+          return false
+        }
+      } else {
+        this.altitudeDocumentNumber = ''
+        this.reexamineTime = ''
+        this.altitudeDocumentStateTime = ''
+        this.altitudeDocumentEndTime = ''
+        this.altitudeDocumentImg = ''
+        this.altitudeDocumentBackImg = ''
+      }
+      if (this.isBuy == 'YES') {
+        if (
+          !this.insurancePolicyName ||
+          !this.insuranceName ||
+          !this.insuranceNumber ||
+          !this.insuranceStateTime ||
+          !this.insuranceEndTime ||
+          !this.imageList.length
+        ) {
+          this.$tips('保险信息需要完整!')
+          return false
+        }
+      } else {
+        this.insurancePolicyName = ''
+        this.insuranceName = ''
+        this.insuranceNumber = ''
+        this.insuranceStateTime = ''
+        this.insuranceEndTime = ''
+        this.imageList = []
+      }
+      return true
     },
 
-    confirmWebsitDialog(e) {
-      this.websitId = this.websitList[e[0]].websitId
-      this.websitName = this.websitList[e[0]].name
-      this.isShowWebsitDialog = false
+    dataAssembly() {
+      return {
+        name: this.name,
+        bankAccount: this.bankAccount,
+        idCard: this.idcard,
+        idCardStartTime: this.idCardStateTime,
+        idCardEndTime: this.idCardEndTime,
+        number: this.altitudeDocumentNumber,
+        hightExamineTime: this.reexamineTime,
+        startTime: this.altitudeDocumentStateTime,
+        endTime: this.altitudeDocumentEndTime,
+        type: 'WORKER',
+        websitId: this.websitId,
+        isBuy: this.isBuy,
+        workerImgs: [
+          ...(() => {
+            if (this.idCardImg) {
+              return [
+                {
+                  imgName: '身份证正面',
+                  imgUrl: this.idCardImg,
+                  type: 'ID'
+                }
+              ]
+            } else {
+              return []
+            }
+          })(),
+          ...(() => {
+            if (this.idCardBackImg) {
+              return [
+                {
+                  imgName: '身份证反面',
+                  imgUrl: this.idCardBackImg,
+                  type: 'ID'
+                }
+              ]
+            } else {
+              return []
+            }
+          })(),
+          ...(() => {
+            if (this.altitudeDocumentImg) {
+              return [
+                {
+                  imgName: '高空证正面',
+                  imgUrl: this.altitudeDocumentImg,
+                  type: 'HIGHT'
+                }
+              ]
+            } else {
+              return []
+            }
+          })(),
+          ...(() => {
+            if (this.altitudeDocumentBackImg) {
+              return [
+                {
+                  imgName: '高空证反面',
+                  imgUrl: this.altitudeDocumentBackImg,
+                  type: 'HIGHT'
+                }
+              ]
+            } else {
+              return []
+            }
+          })()
+        ],
+        workerPolicy: {
+          isBuy: this.isBuy,
+          company: this.insurancePolicyName,
+          policyName: this.insuranceName,
+          policyOrder: this.insuranceNumber,
+          startTime: this.insuranceStateTime,
+          endTime: this.insuranceEndTime,
+          policyType: 'AC',
+          policyPrice: 0,
+          policyUrl: this.imageList.map(item => item.urls).join(',')
+        }
+      }
+    },
+
+    async submit() {
+      if (this.checkForm()) {
+        if (!this.isChecked) {
+          this.$tips('请先阅读并同意服务协议!')
+          return false
+        }
+        this.$api.postJson('/user/apply', this.dataAssembly(), true, true, true).then(res => {
+          if (res.code == 200) {
+            this.$toast('提交审核成功!')
+            setTimeout(() => {
+              this.$navToPage(
+                {
+                  delta: 1
+                },
+                'navigateBack'
+              )
+            }, 1500)
+          } else {
+            this.$tips(res.msg)
+          }
+        })
+      }
     },
 
     // 选择图片
@@ -303,106 +582,45 @@ export default {
       this[type] = data.url
     },
 
-    async toChooseImg1(index) {
+    // 预览图片
+    previewImage(url) {
+      uni.previewImage({
+        current: url,
+        urls: [url]
+      })
+    },
+
+    // 添加图片
+    async addImage() {
       uni.chooseImage({
-        count: 1,
-        sizeType: ['compressed'],
+        count: 6 - this.imageList.length,
         success: res => {
-          this.uploadImage1(res.tempFilePaths[0], index)
+          uni.showLoading()
+          res.tempFilePaths.forEach(async item => {
+            let data = await uploadImgFull(item)
+            this.imageList.push(data)
+          })
+          uni.hideLoading()
         },
-        fail: err => {
-          console.log(err)
-        }
+        fail: err => {}
       })
     },
 
-    async uploadImage1(file, index) {
-      let data = await uploadImgFull(file)
-      uni.hideLoading()
-      this.imgList[index].imgUrl = data.url
+    // 删除图片
+    delImage(index) {
+      this.imageList.splice(index, 1)
     },
 
-    // 预览图片
-    previewImage(url) {
+    //预览图片
+    prevImg(current) {
       uni.previewImage({
-        current: url,
-        urls: [url]
+        current,
+        urls: this.imageList.map(item => {
+          return item.url
+        })
       })
     },
 
-    async checkForm() {
-      if (!this.websitId) {
-        this.$tips('请选择入驻网点!')
-        return true
-      }
-      if (!this.name) {
-        this.$tips('请输入姓名!')
-        return true
-      } else if (!this.idcard) {
-        this.$tips('请输入身份证号码!')
-        return true
-      } else if (!verify.isIdCard(this.idcard)) {
-        this.$tips('身份证号码格式不正确,请输入正确身份证号码!')
-        return true
-      } else if (!this.idCardImg) {
-        this.$tips('请上传身份证正面照!')
-        return true
-      }
-    },
-
-    async submit() {
-      const that = this
-      let is_save = await this.checkForm()
-      let workerImgs = []
-      for (var i = 0; i < this.imgList.length; i++) {
-        if (!this.imgList[i].imgUrl) {
-          return this.$tips('请上传' + this.imgList[i].dictValue + '!')
-          break
-        } else {
-          workerImgs.push({
-            imgName: this.imgList[i].dictValue,
-            imgUrl: this.imgList[i].imgUrl
-          })
-        }
-      }
-      if (!is_save) {
-        if (!this.isChecked) {
-          this.$tips('请先阅读并同意服务协议!')
-          return false
-        }
-        this.$api
-          .postJson(
-            '/user/apply',
-            {
-              idCard: this.idcard,
-              idCardImg: this.idCardImg,
-              name: this.name,
-              bankAccount: this.bankAccount,
-              type: 'WORKER',
-              websitId: this.websitId,
-              workerImgs
-            },
-            true,
-            true,
-            true
-          )
-          .then(res => {
-            if (res.code == 200) {
-              this.$toast('提交审核成功!')
-              setTimeout(() => {
-                this.$navToPage(
-                  {
-                    delta: 1
-                  },
-                  'navigateBack'
-                )
-              }, 1500)
-            } else {
-              this.$tips(res.msg)
-            }
-          })
-      }
-    },
     navToPage(url) {
       this.$navToPage({
         url
@@ -530,33 +748,40 @@ export default {
       height: 32rpx;
     }
   }
+  .text {
+    margin-top: 10rpx;
+    color: #999999;
+    text-align: center;
+  }
 }
 .imgs {
   text-align: center;
   position: relative;
-  #img {
-    width: 100%;
-    height: 320rpx;
-    padding: 30rpx 0;
-  }
-  .addimg {
-    width: 100%;
-    height: 320rpx;
+  width: 100%;
+  height: 180rpx;
+  box-sizing: border-box;
+  padding: 10rpx;
+  ::v-deep .img_neirong {
+    width: 100% !important;
+    height: 100% !important;
     border: 1rpx solid #eeeeee;
     border-radius: 10rpx;
+    overflow: hidden;
     display: flex;
     justify-content: center;
     align-items: center;
-    padding: 30rpx 0;
-
-    image {
-      width: 64rpx;
-      height: 64rpx;
-    }
-  }
-  .text {
     color: #999999;
+    flex-direction: column;
+  }
+  .addimg {
+    width: 100% !important;
+    height: 100% !important;
+    border-radius: 10rpx;
+    display: flex;
+    justify-content: center;
+    align-items: center;
   }
+
   .del {
     width: 38rpx !important;
     height: 38rpx !important;