Bladeren bron

认证修改

cuixq 4 jaren geleden
bovenliggende
commit
0fe109e25d
1 gewijzigde bestanden met toevoegingen van 33 en 9 verwijderingen
  1. 33 9
      front-vue/src/views/system/company/certification.vue

+ 33 - 9
front-vue/src/views/system/company/certification.vue

@@ -439,6 +439,26 @@
                     maxlength="20"
                     clearable=""
                   ></el-input>
+                   <el-tooltip
+                    style="margin-left: 8px;"
+                    class="item"
+                    effect="light"
+                    content="以下号段不支持验证:1349(卫星通信号段)、174(卫星通信号段)、141(物联网)、144(物联网)、165(虚拟)、167(虚拟)、1700(虚拟)、
+                      1701(虚拟)、1702(虚拟)、1703(虚拟)、1704(虚拟)、1705(虚拟)、1706(虚拟)、1707(虚拟)、1708(虚拟)、
+                      1709(虚拟)、(虚拟)"
+                    placement="right-start"
+                  >
+                    <i class="el-icon-question" />
+                  </el-tooltip>
+                </el-col>
+                <el-col :span="6" class="zap-personnel-information__item">
+                  <span class="zap-form__label">邮箱</span>
+                  <el-input
+                    v-model="form.email"
+                    placeholder="请输入邮箱"
+                    maxlength="20"
+                    clearable=""
+                  ></el-input>
                 </el-col>
               </template>
               <template v-if="!legalHandle">
@@ -480,6 +500,15 @@
                     <i class="el-icon-question" />
                   </el-tooltip>
                 </el-col>
+                <el-col :span="6" class="zap-personnel-information__item">
+                  <span class="zap-form__label">邮箱</span>
+                  <el-input
+                    v-model="form.email"
+                    placeholder="请输入邮箱"
+                    maxlength="20"
+                    clearable=""
+                  ></el-input>
+                </el-col>
               </template>
               <template>
                 <el-col :span="6" class="zap-personnel-information__item"
@@ -1788,6 +1817,7 @@ export default {
           this.form.qtfjList = this.qtfjList;
           this.form.repeatToken = this.repeatToken;
           if (this.term) {
+            console.log("长期");
             this.form.scyEndTime = "长期";
           } else if (!this.form.scyEndTime&&!this.term) {
             this.form.scyEndTime = null;
@@ -1859,15 +1889,9 @@ export default {
           spinner: "el-icon-loading",
           background: "rgba(0, 0, 0, 0.7)",
         });
-        const nowDate = new Date();
-        const date = {
-          year: nowDate.getFullYear(),
-          month: nowDate.getMonth() + 1,
-          date: nowDate.getDate(),
-        };
-        const newmonth = date.month > 10 ? date.month : "0" + date.month;
-        const day = date.date > 10 ? date.date : "0" + date.date;
-        this.updateTime = date.year + "-" + newmonth + "-" + day;
+        var aData = new Date();
+        this.updateTime =
+        aData.getFullYear() + "-" + (aData.getMonth() + 1) + "-" + aData.getDate();
         const confirmText = [
           "绑定对公账户成功,您于" +
             this.updateTime +