fangyuan
2022-12-16 9ff66017debadfc89bc0c1b796684a4d1dbe2bc3
src/views/operate/disposal/casepool/dispatch/updateUser/uploadResult/components/evidence/index.vue
@@ -52,7 +52,7 @@
            <div class="user-form-content">
                <el-form ref="userForm" label-width="120px" :model="user" :rules="userRules" autoComplete="on">
                    <!-- 类型 -->
                    <el-form-item label="类型:" prop="illegalType">
                    <el-form-item label="类型:" prop="illegalType" :disabled="true">
                        <el-input v-model="user.illegalType"></el-input>
                    </el-form-item>
                    <!-- 姓名、手机号 -->
@@ -271,15 +271,15 @@
        }
    },
    async created() {
        await this.getCardTypeList();
        await this.getSchoolList();
        await this.getNationList();
        if (this.evidenceData) {
      await this.getCardTypeList();
      await this.getSchoolList();
      await this.getNationList();
      this.$set(this.user, 'illegalType', this.illegalType);
      if (this.evidenceData) {
          this.evidence = deepClone(this.evidenceData);
          this.evidence.pic = this.evidenceData.pic.split(',');
          this.user = this.evidence.partyInfo;
          this.evidence.userInfo = this.evidence.partyInfo.name;
          this.user.illegalType = JSON.parse(JSON.stringify(this.mytype));
        }
    },
    methods: {
@@ -300,16 +300,17 @@
        openDialog(e) {
            this.userFlag = true;
            this.userInfo = true;
            this.$set(this.user, 'illegalType', this.illegalType);
        },
        // 检验user
        checkUser() {
          debugger;
            this.$refs.userForm.validate((valid) => {
                if (valid) {
                    this.userFlag = false;
                  this.evidence.userInfo = this.user.name + '...';
                  this.userFlag = false;
                } else {
                    this.evidence.userInfo = false;
                    return false;
                    this.evidence.userInfo = null;
                    this.$message.warning('请检查必填项');
                }
            })
        },
@@ -351,7 +352,7 @@
            this.evidence.pic.splice(this.evidence.pic.indexOf(baseUrl + url),1);
        }
    },
    props:['mytype','mycode', 'evidenceData']
    props:['evidenceData', 'illegalType']
}
</script>
<style lang="scss" scoped>