|
@@ -258,7 +258,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="24"><div class="supplierAdd-title">联系人信息</div></el-col>
|
|
|
- <el-col :span="6">
|
|
|
+ <el-col :span="8">
|
|
|
<el-form-item label="姓名" prop="contactor">
|
|
|
<el-input
|
|
|
v-model="ruleForm.contactor"
|
|
@@ -268,7 +268,7 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="6">
|
|
|
+ <el-col :span="8">
|
|
|
<el-form-item label="手机号" prop="mobile">
|
|
|
<el-input
|
|
|
v-model="ruleForm.mobile"
|
|
@@ -278,17 +278,18 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="6">
|
|
|
- <el-form-item label="座机号" prop="telephone">
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="电子邮箱" prop="email">
|
|
|
<el-input
|
|
|
- v-model="ruleForm.telephone"
|
|
|
+ v-model="ruleForm.email"
|
|
|
:disabled="type !== 'add' && type !== 'edit'"
|
|
|
- placeholder="座机号"
|
|
|
+ placeholder="电子邮箱"
|
|
|
maxlength="50"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="6">
|
|
|
+
|
|
|
+ <el-col :span="8">
|
|
|
<el-form-item label="职位" prop="position">
|
|
|
<el-input
|
|
|
v-model="ruleForm.position"
|
|
@@ -298,6 +299,16 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="座机号" prop="telephone">
|
|
|
+ <el-input
|
|
|
+ v-model="ruleForm.telephone"
|
|
|
+ :disabled="type !== 'add' && type !== 'edit'"
|
|
|
+ placeholder="座机号"
|
|
|
+ maxlength="50"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :span="24"> <div class="supplierAdd-title">营业执照信息</div></el-col>
|
|
|
|
|
|
<el-col :span="16">
|
|
@@ -433,6 +444,7 @@ import {
|
|
|
isSpecialSymbol,
|
|
|
hasSpace,
|
|
|
isAddr,
|
|
|
+ validEmail,
|
|
|
} from "@/utils/validate";
|
|
|
export default {
|
|
|
name: "supplierAdd",
|
|
@@ -487,6 +499,17 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
+ const validateEmail = (rule, value, callback) => {
|
|
|
+ if (value === "") {
|
|
|
+ callback(new Error("邮箱不能为空!"));
|
|
|
+ } else {
|
|
|
+ if (!validEmail(value)) {
|
|
|
+ callback(new Error("邮箱格式不正确!"));
|
|
|
+ } else {
|
|
|
+ callback();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
return {
|
|
|
loading: false,
|
|
|
hand_name: "",
|
|
@@ -573,6 +596,7 @@ export default {
|
|
|
],
|
|
|
contactor: [{ required: true, message: "姓名不能为空", trigger: "blur" }],
|
|
|
mobile: [{ required: true, validator: validatemobile, trigger: "blur" }],
|
|
|
+ email: [{ required: true, validator: validateEmail, trigger: "blur" }],
|
|
|
telephone: [{ required: false, validator: validatetelephone, trigger: "blur" }],
|
|
|
position: [{ required: true, message: "职位不能为空", trigger: "blur" }],
|
|
|
registercode: [{ required: true, validator: validateLicense, trigger: "blur" }],
|
|
@@ -635,6 +659,7 @@ export default {
|
|
|
personid,
|
|
|
person,
|
|
|
telephone,
|
|
|
+ email,
|
|
|
} = this.sitem;
|
|
|
this.hand_name = person || "";
|
|
|
this.ruleForm = {
|
|
@@ -655,6 +680,7 @@ export default {
|
|
|
position: position || "",
|
|
|
registercode: registercode || "",
|
|
|
name: name || "",
|
|
|
+ email: email || "",
|
|
|
nature: nature || "",
|
|
|
addr: addr || "",
|
|
|
legaler: legaler || "",
|
|
@@ -719,12 +745,8 @@ export default {
|
|
|
this.$refs.ruleForm.validateField("personid");
|
|
|
},
|
|
|
type_search_change(e) {
|
|
|
- const { id, code, label } = e;
|
|
|
- if (id) {
|
|
|
- this.ruleForm.nature = id;
|
|
|
- } else {
|
|
|
- this.ruleForm.nature = "";
|
|
|
- }
|
|
|
+ const { id } = e;
|
|
|
+ this.ruleForm.nature = id ? id : "";
|
|
|
this.$refs.ruleForm.validateField("nature");
|
|
|
},
|
|
|
|