| | |
| | | </li> |
| | | <li class="verli"> |
| | | <input |
| | | :placeholder="$t('jy520')" |
| | | :placeholder="$t('jy561')" |
| | | v-model="form.idCard" |
| | | v-if="showBtn" |
| | | /><input |
| | | :placeholder="$t('jy520')" |
| | | :placeholder="$t('jy561')" |
| | | v-model="form.idCard" |
| | | v-if="!showBtn" |
| | | readonly |
| | | /> |
| | | </li> |
| | | <li class="verli"> |
| | | <input |
| | | :placeholder="$t('hj2111')" |
| | | v-model="form.address" |
| | | v-if="showBtn" |
| | | /><input |
| | | :placeholder="$t('hj2111')" |
| | | v-model="form.address" |
| | | v-if="!showBtn" |
| | | readonly |
| | | /> |
| | |
| | | phone: "", |
| | | name: "", |
| | | idCard: "", |
| | | address: "", |
| | | img1key: "", |
| | | img2key: "", |
| | | img3key: "" |
| | |
| | | ) { |
| | | this.form.idCard = this.$store.state.userInfo.idCard; |
| | | this.form.name = this.$store.state.userInfo.realName; |
| | | this.form.address = this.$store.state.userInfo.regAddress || ""; |
| | | this.form.img1key = this.$store.state.userInfo.img1Key; |
| | | this.form.img2key = this.$store.state.userInfo.img2Key; |
| | | // this.form.img3key = this.$store.state.userInfo.img3Key |
| | |
| | | Toast(this.$t("hj207")); |
| | | } else if (isNull(this.form.idCard) || !idCardReg(this.form.idCard)) { |
| | | Toast(this.$t("hj208")); |
| | | } else if (isNull(this.form.address)) { |
| | | Toast('请输入' + this.$t('hj2111')); |
| | | } else if (isNull(this.form.img1key)) { |
| | | Toast(this.$t("jy516")); |
| | | } else if (isNull(this.form.img2key)) { |
| | |
| | | let opts = { |
| | | realName: this.form.name, |
| | | idCard: this.form.idCard, |
| | | address: this.form.address, |
| | | img1key: this.form.img1key, |
| | | img2key: this.form.img2key, |
| | | img3key: this.form.img3key |