123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856 |
- <template>
- <el-form
- ref="ruleForm"
- v-loading="loading"
- :model="ruleForm"
- status-icon
- :rules="rulesThis"
- :size="'small'"
- label-width="100px"
- class="supplierAdd"
- >
- <el-row>
- <el-col :span="6">
- <div class="supplierAdd-title" style="margin: 6px 0 0 10px">
- 基础信息
- </div></el-col
- >
- <el-col :span="6">
- <el-form-item label="合作状态" prop="coop_state">
- <el-select
- style="width: 100%"
- v-model="ruleForm.coop_state"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="合作状态"
- >
- <el-option
- v-for="item in coop_stateoptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="供应商来源" prop="source">
- <el-select
- style="width: 100%"
- v-model="ruleForm.source"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="供应商来源"
- >
- <el-option
- v-for="item in sourceoptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="申请类型" prop="type">
- <el-select
- style="width: 100%"
- v-model="ruleForm.type"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="申请类型"
- >
- <el-option
- v-for="item in typeoptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="所属类别" prop="category">
- <el-select
- style="width: 100%"
- v-model="ruleForm.category"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="所属类别"
- >
- <el-option
- v-for="item in categoryoptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="物流方式" prop="delivery_way">
- <el-select
- style="width: 100%"
- v-model="ruleForm.delivery_way"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="物流方式"
- >
- <el-option
- v-for="item in delivery_wayoptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select> </el-form-item
- ></el-col>
- <el-col :span="6"
- ><el-form-item label="供应商类型" prop="supplier_type">
- <el-select
- style="width: 100%"
- v-model="ruleForm.supplier_type"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="供应商类型"
- >
- <el-option
- v-for="item in supplier_typeoptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select> </el-form-item
- ></el-col>
- <el-col :span="6">
- <el-form-item label="供应商级别" prop="level">
- <el-select
- style="width: 100%"
- v-model="ruleForm.level"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="供应商级别"
- >
- <el-option
- v-for="item in leveloptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="付款方式" prop="pay_type">
- <el-select
- style="width: 100%"
- v-model="ruleForm.pay_type"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="付款方式"
- >
- <el-option
- v-for="item in pay_typeoptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="负责人" prop="personid">
- <search-account
- :disabled="type !== 'add' && type !== 'edit'"
- :is-detail="type !== 'add'"
- :value="ruleForm.personid"
- :size="'small'"
- :names="hand_name"
- :placeholder="'负责人名称'"
- @searchChange="handleHandoverName"
- />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item
- label="营业执照"
- prop="supplier_img"
- :disabled="id == 'view'"
- class="activity-upload"
- >
- <div v-if="ruleForm.supplier_img" class="img-find">
- <img
- :src="ruleForm.supplier_img"
- class="avatar hover fl"
- v-viewer
- style="width: 84px; height: 84px"
- />
- <el-link
- class="fl"
- :underline="false"
- @click="deleteimg()"
- type="warning"
- style="margin: 0 0 0 16px"
- >删除</el-link
- >
- </div>
- <div class="btnupload" style="position: relative" v-else>
- <i class="el-icon-plus avatar-uploader-icon"></i>
- <file-upload
- v-if="type !== 'view'"
- class="Upload"
- :disabled="id == 'view'"
- :accept="'.jpg,.png,.jpeg'"
- :multiple="true"
- :uploadcondition="beforeAvatarUpload"
- @UploadErrorEvent="UploadErrorEventsupplier_img"
- @UploadSuccessEvent="UploadSuccessEventsupplier_img"
- ></file-upload>
- </div>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="资质证明" prop="prove_img">
- <div class="good_info_img_div">
- <ul class="clear">
- <template
- v-if="
- ruleForm &&
- ruleForm.prove_img &&
- ruleForm.prove_img.length > 0
- "
- >
- <li
- class="img-show-li"
- v-viewer
- v-for="(img, iindex) in ruleForm.prove_img"
- :key="img + iindex"
- >
- <div class="img-show-li-div">
- <img :src="img" class="img-show" alt="" />
- <i
- v-if="type === 'add' || type === 'edit'"
- class="el-icon-close"
- @click="closeImg(iindex)"
- ></i>
- </div>
- </li>
- </template>
- <li
- class="img-show-li"
- v-if="
- ruleForm &&
- ruleForm.prove_img &&
- ruleForm.prove_img.length < 10 &&
- type !== 'view'
- "
- >
- <div class="activity-upload">
- <div class="btnupload" style="position: relative">
- <i class="el-icon-plus avatar-uploader-icon"></i>
- <file-upload
- class="Upload"
- :disabled="type !== 'add' && type !== 'edit'"
- :accept="'.jpg,.png,.jpeg'"
- :multiple="true"
- :uploadcondition="beforeAvatarUpload"
- @UploadErrorEvent="UploadErrorEventgood_info_img"
- @UploadSuccessEvent="UploadSuccessEventgood_info_img"
- ></file-upload>
- </div>
- </div>
- </li>
- </ul>
- </div>
- </el-form-item>
- </el-col>
- <el-col :span="24"
- ><div class="supplierAdd-title">联系人信息</div></el-col
- >
- <el-col :span="6">
- <el-form-item label="姓名" prop="contactor">
- <el-input
- v-model="ruleForm.contactor"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="姓名"
- minlength="20"
- />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="手机号" prop="mobile">
- <el-input
- v-model="ruleForm.mobile"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="手机号"
- minlength="20"
- />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="座机号" prop="telephone">
- <el-input
- v-model="ruleForm.telephone"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="座机号"
- minlength="20"
- />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="职位" prop="position">
- <el-input
- v-model="ruleForm.position"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="职位"
- minlength="20"
- />
- </el-form-item>
- </el-col>
- <el-col :span="24">
- <div class="supplierAdd-title">营业执照信息</div></el-col
- >
- <el-col :span="16">
- <el-form-item label="供应商名称" prop="name">
- <el-input
- v-model="ruleForm.name"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="供应商名称"
- minlength="20"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="(ruleForm.supplier_img==='' && (type === 'add'|| type === 'edit'))">
- <el-form-item
- label="统一社会信用代码"
- prop="registercode"
- label-width="140px"
- >
- <el-input
- v-model="ruleForm.registercode"
- :disabled="type !== 'add' && type !== 'edit'"
- placeholder="统一社会信用代码"
- minlength="20"
- />
- </el-form-item>
- </el-col>
- <el-col :span="16" v-if="(ruleForm.supplier_img==='' && (type === 'add'|| type === 'edit'))">
- <el-form-item label="详细地址" prop="addr">
- <el-input
- v-model="ruleForm.addr"
- :disabled="
- (ruleForm.supplier_img && (type == 'add' || type == 'edit')) ||
- (type !== 'add' && type !== 'edit')
- "
- placeholder="详细地址"
- minlength="20"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="(ruleForm.supplier_img==='' && (type === 'add'|| type === 'edit'))">
- <el-form-item label="公司类型" prop="nature">
- <search-company-type
- :value="ruleForm.nature"
- :disabled="
- (ruleForm.supplier_img && (type == 'add' || type == 'edit')) ||
- (type !== 'add' && type !== 'edit')
- "
- :size="'small'"
- :isDetail="false"
- :placeholder="'公司类型'"
- @searchChange="type_search_change"
- />
- </el-form-item>
- </el-col>
- <el-col :span="16" v-if="(ruleForm.supplier_img==='' && (type === 'add'|| type === 'edit'))">
- <el-form-item label="运营范围" prop="scope">
- <el-input
- v-model="ruleForm.scope"
- :autosize="{ minRows: 4, maxRows: 4 }"
- type="textarea"
- :disabled="
- (ruleForm.supplier_img && (type == 'add' || type == 'edit')) ||
- (type !== 'add' && type !== 'edit')
- "
- placeholder="运营范围"
- minlength="20"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8" v-if="(ruleForm.supplier_img==='' && (type === 'add'|| type === 'edit'))">
- <el-form-item label="法人代表" prop="legaler">
- <el-input
- v-model="ruleForm.legaler"
- :disabled="
- (ruleForm.supplier_img && (type == 'add' || type == 'edit')) ||
- (type !== 'add' && type !== 'edit')
- "
- placeholder="法人代表"
- minlength="20"
- />
- </el-form-item>
- <el-form-item label="成立日期" prop="registertime">
- <el-date-picker
- v-model="ruleForm.registertime"
- type="date"
- value-format="yyyy-MM-dd"
- :disabled="
- (ruleForm.supplier_img && (type == 'add' || type == 'edit')) ||
- (type !== 'add' && type !== 'edit')
- "
- style="width: 100%"
- :picker-options="pickerOptions"
- placeholder="成立日期"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col
- :span="24"
- style="text-align: right"
- v-if="type === 'add' || type === 'edit'"
- >
- <el-button type="primary" :size="'small'" @click="submitForm"
- >保 存
- </el-button>
- </el-col>
- </el-row>
- </el-form>
- </template>
- <script>
- import asyncRequest from "@/apis/service/serviceParam/supplier";
- import resToken from "@/mixins/resToken";
- import { isLicense, isMobile, isqz } from "@/utils/validate";
- export default {
- name: "supplierAdd",
- mixins: [resToken],
- props: ["showModel", "id", "type", "sitem"],
- data() {
- const validateLicense = (rule, value, callback) => {
- if (value !== "") {
- if (!isLicense(value)) {
- callback(new Error("统一社会信用代码不正确!"));
- } else {
- callback();
- }
- } else {
- callback(new Error("请输入统一社会信用代码!"));
- }
- };
- const validatemobile = (rule, value, callback) => {
- if (value === "") {
- callback(new Error("手机号不能为空!"));
- } else {
- if (!isMobile(value)) {
- callback(new Error("手机号格式不正确!"));
- } else {
- callback();
- }
- }
- };
- const validatetelephone = (rule, value, callback) => {
- if (value === "") {
- callback();
- } else {
- if (isqz(value)) {
- callback();
- } else {
- callback(new Error("规则为区号[0+2~3位]-固定电话[7~8位]!"));
- }
- }
- };
- return {
- loading: false,
- hand_name: "",
- coop_stateoptions: [
- { value: "0", label: "白名单" },
- { value: "1", label: "黑名单" },
- ],
- sourceoptions: [
- { value: "0", label: "客户提供" },
- { value: "1", label: "供应商" },
- { value: "2", label: "公司开发" },
- ],
- typeoptions: [
- { value: "0", label: "正式供应商" },
- { value: "1", label: "临时供应商" },
- ],
- categoryoptions: [
- { value: "0", label: "单品类供应商" },
- { value: "1", label: "多品类供应商" },
- ],
- delivery_wayoptions: [
- { value: "0", label: "供应商发货" },
- { value: "1", label: "公司自提" },
- ],
- supplier_typeoptions: [
- { value: "0", label: "生产厂家" },
- { value: "1", label: "代理商" },
- { value: "2", label: "经销商" },
- { value: "3", label: "分销商" },
- { value: "4", label: "电商平台" },
- ],
- leveloptions: [
- { value: "2", label: "生产厂家" },
- { value: "0", label: "一级代理商" },
- { value: "1", label: "二级代理商" },
- ],
- pay_typeoptions: [
- { value: "0", label: "现结" },
- { value: "1", label: "月清" },
- { value: "2", label: "双月清" },
- ],
- title: "添加供应商",
- showModelThis: this.showModel,
- pickerOptions: {
- disabledDate(time) {
- return time.getTime() > Date.now();
- },
- },
- ruleForm: {},
- rulesThis: this.rules,
- rules: {
- coop_state: [
- { required: true, message: "请选择合作状态", trigger: "change" },
- ],
- source: [
- { required: true, message: "请选择供应商来源", trigger: "change" },
- ],
- type: [
- { required: true, message: "请选择申请类型", trigger: "change" },
- ],
- category: [
- { required: true, message: "请选择所属类别", trigger: "change" },
- ],
- delivery_way: [
- { required: true, message: "请选择物流方式", trigger: "change" },
- ],
- supplier_type: [
- { required: true, message: "请选择供应商类型", trigger: "change" },
- ],
- level: [
- { required: true, message: "请选择供应商级别", trigger: "change" },
- ],
- pay_type: [
- { required: true, message: "请选择付款方式", trigger: "change" },
- ],
- prove_img: [
- {
- required: false,
- type: "array",
- message: "请上传资质证明",
- trigger: "change",
- },
- ],
- personid: [
- {
- required: true,
- type: "array",
- message: "请选择负责人",
- trigger: "change",
- },
- ],
- contactor: [
- { required: true, message: "姓名不能为空", trigger: "blur" },
- ],
- mobile: [
- { required: true, validator: validatemobile, trigger: "blur" },
- ],
- telephone: [
- { required: false, validator: validatetelephone, trigger: "blur" },
- ],
- position: [
- { required: true, message: "职位不能为空", trigger: "blur" },
- ],
- registercode: [
- { required: true, validator: validateLicense, trigger: "blur" },
- ],
- name: [
- { required: true, message: "供应商名称不能为空", trigger: "blur" },
- ],
- nature: [
- { required: true, message: "公司类型不能为空", trigger: "change" },
- ],
- addr: [
- { required: true, message: "详细地址不能为空", trigger: "blur" },
- ],
- legaler: [
- { required: true, message: "法人代表不能为空", trigger: "blur" },
- ],
- registertime: [
- { required: true, message: "成立时间不能为空", trigger: "change" },
- ],
- scope: [
- { required: true, message: "营业执照不能为空", trigger: "blur" },
- ],
- },
- };
- },
- mounted() {
- this.initForm();
- },
- methods: {
- async initForm() {
- this.hand_name = "";
- this.loading = true;
- this.resetFormData();
- this.rulesThis = this.rules;
- await this.resetForm();
- this.loading = false;
- },
- async resetForm() {
- // 重置
- await this.$nextTick(() => {
- if (this.$refs.ruleForm) {
- this.$refs.ruleForm.resetFields();
- this.$refs.ruleForm.clearValidate();
- this.resetFormData();
- }
- });
- },
- resetFormData() {
- const {
- id,
- coop_state,
- source,
- type,
- category,
- delivery_way,
- supplier_type,
- level,
- pay_type,
- supplier_img,
- prove_img,
- contactor,
- mobile,
- position,
- registercode,
- name,
- nature,
- addr,
- legaler,
- registertime,
- scope,
- personid,
- person,
- telephone,
- } = this.sitem;
- this.hand_name = person || "";
- this.ruleForm = {
- id: id || "",
- coop_state: coop_state || "",
- source: source || "",
- type: type || "",
- category: category || "",
- delivery_way: delivery_way || "",
- supplier_type: supplier_type || "",
- level: level || "",
- pay_type: pay_type || "",
- supplier_img: supplier_img || "",
- prove_img: prove_img ? (prove_img || "").split(",") : [],
- contactor: contactor || "",
- mobile: mobile || "",
- telephone: telephone || "",
- position: position || "",
- registercode: registercode || "",
- name: name || "",
- nature: nature || "",
- addr: addr || "",
- legaler: legaler || "",
- registertime: registertime || "",
- scope: scope || "",
- personid: personid ? [personid] : [],
- };
- },
- closeImg(index) {
- this.ruleForm.prove_img.splice(index, 1);
- this.$refs.ruleForm.validateField("prove_img");
- },
- async submitForm() {
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- this.loading = true;
- let model = JSON.parse(JSON.stringify(this.ruleForm));
- model.prove_img = model.prove_img.toString();
- model.personid = model.personid.toString();
- let res = {};
- if (this.id === "add") {
- delete model["id"];
- res = await asyncRequest.add(model);
- } else {
- res = await asyncRequest.update(model);
- }
- this.loading = false;
- if (res && res.code === 0) {
- const title = this.id === "add" ? "添加成功!" : "修改成功!";
- this.$notify.success({
- title,
- message: "",
- });
- this.showModelThis = false;
- // 刷新
- this.$emit("refresh", res.data);
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- deleteimg() {
- this.ruleForm.supplier_img = "";
- this.$refs.ruleForm.validateField("supplier_img");
- },
- handleHandoverName(e) {
- if (e && e.id) {
- this.ruleForm.personid = [e.id];
- } else {
- this.ruleForm.personid = [];
- }
- this.$refs.ruleForm.validateField("personid");
- },
- type_search_change(e) {
- const { id, code, label } = e;
- if (id) {
- this.ruleForm.nature = id;
- } else {
- this.ruleForm.nature = "";
- }
- this.$refs.ruleForm.validateField("nature");
- },
- //图片上传成功
- async UploadSuccessEventsupplier_img(data) {
- await this.UploadSuccessEvent(1, data);
- },
- // //图片上传成功
- // async UploadSuccessEventgood_img(data) {
- // await this.UploadSuccessEvent(2, data);
- // },
- //图片上传成功
- async UploadSuccessEventgood_info_img(data) {
- await this.UploadSuccessEvent(3, data);
- },
- //图片上传成功
- async UploadSuccessEvent(type, data) {
- const { url } = data;
- if (url === "noToken") {
- await this.logout();
- } else {
- if (type === 1) {
- this.ruleForm.supplier_img = url;
- this.$refs.ruleForm.validateField("supplier_img");
- } else if (type === 2) {
- this.ruleForm.good_img = url;
- this.$refs.ruleForm.validateField("good_img");
- } else {
- this.ruleForm.prove_img.push(url);
- this.$refs.ruleForm.validateField("prove_img");
- }
- this.$message.success("图片上传成功!");
- }
- },
- //图片上传失败
- UploadErrorEventsupplier_img(res) {
- this.imgUploadError(1, res);
- },
- // //图片上传失败
- // UploadErrorEventgood_img(res) {
- // this.imgUploadError(2, res);
- // },
- //图片上传失败
- UploadErrorEventgood_info_img(res) {
- this.imgUploadError(3, res);
- },
- imgUploadError(type, res) {
- if (res !== "break") {
- this.$message.error("图片上传失败!");
- this.$refs.ruleForm.validateField(
- type === 1
- ? "supplier_img"
- : type === 2
- ? "good_img"
- : "good_info_img"
- );
- }
- },
- //判断图片规格
- beforeAvatarUpload(file) {
- let isJPG = false;
- if (
- file.type === "image/jpg" ||
- file.type === "image/png" ||
- file.type === "image/jpeg"
- ) {
- isJPG = true;
- }
- const isLt2M = file.size / 1024 / 1024 < 1;
- if (!isJPG) {
- this.$message.error("图片格式不正确!");
- }
- if (!isLt2M) {
- this.$message.error("图片大小不能超过 1MB!");
- }
- return isJPG && isLt2M;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .supplierAdd {
- .good_info_img_div {
- ul {
- width: 100%;
- li {
- float: left;
- width: 89px;
- height: 89px;
- padding: 0 5px 0 0;
- .img-show-li-div {
- width: 84px;
- height: 84px;
- border: 1px solid #dfe4ed;
- background: #dfe4ed;
- position: relative;
- img.img-show {
- width: 100%;
- height: 100%;
- position: relative;
- display: inline-block;
- }
- i.el-icon-close {
- position: absolute;
- z-index: 2;
- top: 0;
- right: 0;
- color: #dfe4ed;
- }
- &:hover {
- i.el-icon-close {
- cursor: pointer;
- color: #63cbe7;
- }
- }
- }
- }
- }
- }
- .supplierAdd-title {
- border-left: 5px solid #006eff;
- margin: 6px 0 25px 10px;
- width: 100%;
- box-sizing: border-box;
- padding: 0 0 0 10px;
- }
- }
- </style>
|