baseForm.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856
  1. <template>
  2. <el-form
  3. ref="ruleForm"
  4. v-loading="loading"
  5. :model="ruleForm"
  6. status-icon
  7. :rules="rulesThis"
  8. :size="'small'"
  9. label-width="100px"
  10. class="supplierAdd"
  11. >
  12. <el-row>
  13. <el-col :span="6">
  14. <div class="supplierAdd-title" style="margin: 6px 0 0 10px">
  15. 基础信息
  16. </div></el-col
  17. >
  18. <el-col :span="6">
  19. <el-form-item label="合作状态" prop="coop_state">
  20. <el-select
  21. style="width: 100%"
  22. v-model="ruleForm.coop_state"
  23. :disabled="type !== 'add' && type !== 'edit'"
  24. placeholder="合作状态"
  25. >
  26. <el-option
  27. v-for="item in coop_stateoptions"
  28. :key="item.value"
  29. :label="item.label"
  30. :value="item.value"
  31. >
  32. </el-option>
  33. </el-select>
  34. </el-form-item>
  35. </el-col>
  36. <el-col :span="6">
  37. <el-form-item label="供应商来源" prop="source">
  38. <el-select
  39. style="width: 100%"
  40. v-model="ruleForm.source"
  41. :disabled="type !== 'add' && type !== 'edit'"
  42. placeholder="供应商来源"
  43. >
  44. <el-option
  45. v-for="item in sourceoptions"
  46. :key="item.value"
  47. :label="item.label"
  48. :value="item.value"
  49. >
  50. </el-option>
  51. </el-select>
  52. </el-form-item>
  53. </el-col>
  54. <el-col :span="6">
  55. <el-form-item label="申请类型" prop="type">
  56. <el-select
  57. style="width: 100%"
  58. v-model="ruleForm.type"
  59. :disabled="type !== 'add' && type !== 'edit'"
  60. placeholder="申请类型"
  61. >
  62. <el-option
  63. v-for="item in typeoptions"
  64. :key="item.value"
  65. :label="item.label"
  66. :value="item.value"
  67. >
  68. </el-option>
  69. </el-select>
  70. </el-form-item>
  71. </el-col>
  72. <el-col :span="6">
  73. <el-form-item label="所属类别" prop="category">
  74. <el-select
  75. style="width: 100%"
  76. v-model="ruleForm.category"
  77. :disabled="type !== 'add' && type !== 'edit'"
  78. placeholder="所属类别"
  79. >
  80. <el-option
  81. v-for="item in categoryoptions"
  82. :key="item.value"
  83. :label="item.label"
  84. :value="item.value"
  85. >
  86. </el-option>
  87. </el-select>
  88. </el-form-item>
  89. </el-col>
  90. <el-col :span="6">
  91. <el-form-item label="物流方式" prop="delivery_way">
  92. <el-select
  93. style="width: 100%"
  94. v-model="ruleForm.delivery_way"
  95. :disabled="type !== 'add' && type !== 'edit'"
  96. placeholder="物流方式"
  97. >
  98. <el-option
  99. v-for="item in delivery_wayoptions"
  100. :key="item.value"
  101. :label="item.label"
  102. :value="item.value"
  103. >
  104. </el-option>
  105. </el-select> </el-form-item
  106. ></el-col>
  107. <el-col :span="6"
  108. ><el-form-item label="供应商类型" prop="supplier_type">
  109. <el-select
  110. style="width: 100%"
  111. v-model="ruleForm.supplier_type"
  112. :disabled="type !== 'add' && type !== 'edit'"
  113. placeholder="供应商类型"
  114. >
  115. <el-option
  116. v-for="item in supplier_typeoptions"
  117. :key="item.value"
  118. :label="item.label"
  119. :value="item.value"
  120. >
  121. </el-option>
  122. </el-select> </el-form-item
  123. ></el-col>
  124. <el-col :span="6">
  125. <el-form-item label="供应商级别" prop="level">
  126. <el-select
  127. style="width: 100%"
  128. v-model="ruleForm.level"
  129. :disabled="type !== 'add' && type !== 'edit'"
  130. placeholder="供应商级别"
  131. >
  132. <el-option
  133. v-for="item in leveloptions"
  134. :key="item.value"
  135. :label="item.label"
  136. :value="item.value"
  137. >
  138. </el-option>
  139. </el-select>
  140. </el-form-item>
  141. </el-col>
  142. <el-col :span="6">
  143. <el-form-item label="付款方式" prop="pay_type">
  144. <el-select
  145. style="width: 100%"
  146. v-model="ruleForm.pay_type"
  147. :disabled="type !== 'add' && type !== 'edit'"
  148. placeholder="付款方式"
  149. >
  150. <el-option
  151. v-for="item in pay_typeoptions"
  152. :key="item.value"
  153. :label="item.label"
  154. :value="item.value"
  155. >
  156. </el-option>
  157. </el-select>
  158. </el-form-item>
  159. <el-form-item label="负责人" prop="personid">
  160. <search-account
  161. :disabled="type !== 'add' && type !== 'edit'"
  162. :is-detail="type !== 'add'"
  163. :value="ruleForm.personid"
  164. :size="'small'"
  165. :names="hand_name"
  166. :placeholder="'负责人名称'"
  167. @searchChange="handleHandoverName"
  168. />
  169. </el-form-item>
  170. </el-col>
  171. <el-col :span="6">
  172. <el-form-item
  173. label="营业执照"
  174. prop="supplier_img"
  175. :disabled="id == 'view'"
  176. class="activity-upload"
  177. >
  178. <div v-if="ruleForm.supplier_img" class="img-find">
  179. <img
  180. :src="ruleForm.supplier_img"
  181. class="avatar hover fl"
  182. v-viewer
  183. style="width: 84px; height: 84px"
  184. />
  185. <el-link
  186. class="fl"
  187. :underline="false"
  188. @click="deleteimg()"
  189. type="warning"
  190. style="margin: 0 0 0 16px"
  191. >删除</el-link
  192. >
  193. </div>
  194. <div class="btnupload" style="position: relative" v-else>
  195. <i class="el-icon-plus avatar-uploader-icon"></i>
  196. <file-upload
  197. v-if="type !== 'view'"
  198. class="Upload"
  199. :disabled="id == 'view'"
  200. :accept="'.jpg,.png,.jpeg'"
  201. :multiple="true"
  202. :uploadcondition="beforeAvatarUpload"
  203. @UploadErrorEvent="UploadErrorEventsupplier_img"
  204. @UploadSuccessEvent="UploadSuccessEventsupplier_img"
  205. ></file-upload>
  206. </div>
  207. </el-form-item>
  208. </el-col>
  209. <el-col :span="12">
  210. <el-form-item label="资质证明" prop="prove_img">
  211. <div class="good_info_img_div">
  212. <ul class="clear">
  213. <template
  214. v-if="
  215. ruleForm &&
  216. ruleForm.prove_img &&
  217. ruleForm.prove_img.length > 0
  218. "
  219. >
  220. <li
  221. class="img-show-li"
  222. v-viewer
  223. v-for="(img, iindex) in ruleForm.prove_img"
  224. :key="img + iindex"
  225. >
  226. <div class="img-show-li-div">
  227. <img :src="img" class="img-show" alt="" />
  228. <i
  229. v-if="type === 'add' || type === 'edit'"
  230. class="el-icon-close"
  231. @click="closeImg(iindex)"
  232. ></i>
  233. </div>
  234. </li>
  235. </template>
  236. <li
  237. class="img-show-li"
  238. v-if="
  239. ruleForm &&
  240. ruleForm.prove_img &&
  241. ruleForm.prove_img.length < 10 &&
  242. type !== 'view'
  243. "
  244. >
  245. <div class="activity-upload">
  246. <div class="btnupload" style="position: relative">
  247. <i class="el-icon-plus avatar-uploader-icon"></i>
  248. <file-upload
  249. class="Upload"
  250. :disabled="type !== 'add' && type !== 'edit'"
  251. :accept="'.jpg,.png,.jpeg'"
  252. :multiple="true"
  253. :uploadcondition="beforeAvatarUpload"
  254. @UploadErrorEvent="UploadErrorEventgood_info_img"
  255. @UploadSuccessEvent="UploadSuccessEventgood_info_img"
  256. ></file-upload>
  257. </div>
  258. </div>
  259. </li>
  260. </ul>
  261. </div>
  262. </el-form-item>
  263. </el-col>
  264. <el-col :span="24"
  265. ><div class="supplierAdd-title">联系人信息</div></el-col
  266. >
  267. <el-col :span="6">
  268. <el-form-item label="姓名" prop="contactor">
  269. <el-input
  270. v-model="ruleForm.contactor"
  271. :disabled="type !== 'add' && type !== 'edit'"
  272. placeholder="姓名"
  273. minlength="20"
  274. />
  275. </el-form-item>
  276. </el-col>
  277. <el-col :span="6">
  278. <el-form-item label="手机号" prop="mobile">
  279. <el-input
  280. v-model="ruleForm.mobile"
  281. :disabled="type !== 'add' && type !== 'edit'"
  282. placeholder="手机号"
  283. minlength="20"
  284. />
  285. </el-form-item>
  286. </el-col>
  287. <el-col :span="6">
  288. <el-form-item label="座机号" prop="telephone">
  289. <el-input
  290. v-model="ruleForm.telephone"
  291. :disabled="type !== 'add' && type !== 'edit'"
  292. placeholder="座机号"
  293. minlength="20"
  294. />
  295. </el-form-item>
  296. </el-col>
  297. <el-col :span="6">
  298. <el-form-item label="职位" prop="position">
  299. <el-input
  300. v-model="ruleForm.position"
  301. :disabled="type !== 'add' && type !== 'edit'"
  302. placeholder="职位"
  303. minlength="20"
  304. />
  305. </el-form-item>
  306. </el-col>
  307. <el-col :span="24">
  308. <div class="supplierAdd-title">营业执照信息</div></el-col
  309. >
  310. <el-col :span="16">
  311. <el-form-item label="供应商名称" prop="name">
  312. <el-input
  313. v-model="ruleForm.name"
  314. :disabled="type !== 'add' && type !== 'edit'"
  315. placeholder="供应商名称"
  316. minlength="20"
  317. />
  318. </el-form-item>
  319. </el-col>
  320. <el-col :span="8" v-if="(ruleForm.supplier_img==='' && (type === 'add'|| type === 'edit'))">
  321. <el-form-item
  322. label="统一社会信用代码"
  323. prop="registercode"
  324. label-width="140px"
  325. >
  326. <el-input
  327. v-model="ruleForm.registercode"
  328. :disabled="type !== 'add' && type !== 'edit'"
  329. placeholder="统一社会信用代码"
  330. minlength="20"
  331. />
  332. </el-form-item>
  333. </el-col>
  334. <el-col :span="16" v-if="(ruleForm.supplier_img==='' && (type === 'add'|| type === 'edit'))">
  335. <el-form-item label="详细地址" prop="addr">
  336. <el-input
  337. v-model="ruleForm.addr"
  338. :disabled="
  339. (ruleForm.supplier_img && (type == 'add' || type == 'edit')) ||
  340. (type !== 'add' && type !== 'edit')
  341. "
  342. placeholder="详细地址"
  343. minlength="20"
  344. />
  345. </el-form-item>
  346. </el-col>
  347. <el-col :span="8" v-if="(ruleForm.supplier_img==='' && (type === 'add'|| type === 'edit'))">
  348. <el-form-item label="公司类型" prop="nature">
  349. <search-company-type
  350. :value="ruleForm.nature"
  351. :disabled="
  352. (ruleForm.supplier_img && (type == 'add' || type == 'edit')) ||
  353. (type !== 'add' && type !== 'edit')
  354. "
  355. :size="'small'"
  356. :isDetail="false"
  357. :placeholder="'公司类型'"
  358. @searchChange="type_search_change"
  359. />
  360. </el-form-item>
  361. </el-col>
  362. <el-col :span="16" v-if="(ruleForm.supplier_img==='' && (type === 'add'|| type === 'edit'))">
  363. <el-form-item label="运营范围" prop="scope">
  364. <el-input
  365. v-model="ruleForm.scope"
  366. :autosize="{ minRows: 4, maxRows: 4 }"
  367. type="textarea"
  368. :disabled="
  369. (ruleForm.supplier_img && (type == 'add' || type == 'edit')) ||
  370. (type !== 'add' && type !== 'edit')
  371. "
  372. placeholder="运营范围"
  373. minlength="20"
  374. />
  375. </el-form-item>
  376. </el-col>
  377. <el-col :span="8" v-if="(ruleForm.supplier_img==='' && (type === 'add'|| type === 'edit'))">
  378. <el-form-item label="法人代表" prop="legaler">
  379. <el-input
  380. v-model="ruleForm.legaler"
  381. :disabled="
  382. (ruleForm.supplier_img && (type == 'add' || type == 'edit')) ||
  383. (type !== 'add' && type !== 'edit')
  384. "
  385. placeholder="法人代表"
  386. minlength="20"
  387. />
  388. </el-form-item>
  389. <el-form-item label="成立日期" prop="registertime">
  390. <el-date-picker
  391. v-model="ruleForm.registertime"
  392. type="date"
  393. value-format="yyyy-MM-dd"
  394. :disabled="
  395. (ruleForm.supplier_img && (type == 'add' || type == 'edit')) ||
  396. (type !== 'add' && type !== 'edit')
  397. "
  398. style="width: 100%"
  399. :picker-options="pickerOptions"
  400. placeholder="成立日期"
  401. >
  402. </el-date-picker>
  403. </el-form-item>
  404. </el-col>
  405. <el-col
  406. :span="24"
  407. style="text-align: right"
  408. v-if="type === 'add' || type === 'edit'"
  409. >
  410. <el-button type="primary" :size="'small'" @click="submitForm"
  411. >保 存
  412. </el-button>
  413. </el-col>
  414. </el-row>
  415. </el-form>
  416. </template>
  417. <script>
  418. import asyncRequest from "@/apis/service/serviceParam/supplier";
  419. import resToken from "@/mixins/resToken";
  420. import { isLicense, isMobile, isqz } from "@/utils/validate";
  421. export default {
  422. name: "supplierAdd",
  423. mixins: [resToken],
  424. props: ["showModel", "id", "type", "sitem"],
  425. data() {
  426. const validateLicense = (rule, value, callback) => {
  427. if (value !== "") {
  428. if (!isLicense(value)) {
  429. callback(new Error("统一社会信用代码不正确!"));
  430. } else {
  431. callback();
  432. }
  433. } else {
  434. callback(new Error("请输入统一社会信用代码!"));
  435. }
  436. };
  437. const validatemobile = (rule, value, callback) => {
  438. if (value === "") {
  439. callback(new Error("手机号不能为空!"));
  440. } else {
  441. if (!isMobile(value)) {
  442. callback(new Error("手机号格式不正确!"));
  443. } else {
  444. callback();
  445. }
  446. }
  447. };
  448. const validatetelephone = (rule, value, callback) => {
  449. if (value === "") {
  450. callback();
  451. } else {
  452. if (isqz(value)) {
  453. callback();
  454. } else {
  455. callback(new Error("规则为区号[0+2~3位]-固定电话[7~8位]!"));
  456. }
  457. }
  458. };
  459. return {
  460. loading: false,
  461. hand_name: "",
  462. coop_stateoptions: [
  463. { value: "0", label: "白名单" },
  464. { value: "1", label: "黑名单" },
  465. ],
  466. sourceoptions: [
  467. { value: "0", label: "客户提供" },
  468. { value: "1", label: "供应商" },
  469. { value: "2", label: "公司开发" },
  470. ],
  471. typeoptions: [
  472. { value: "0", label: "正式供应商" },
  473. { value: "1", label: "临时供应商" },
  474. ],
  475. categoryoptions: [
  476. { value: "0", label: "单品类供应商" },
  477. { value: "1", label: "多品类供应商" },
  478. ],
  479. delivery_wayoptions: [
  480. { value: "0", label: "供应商发货" },
  481. { value: "1", label: "公司自提" },
  482. ],
  483. supplier_typeoptions: [
  484. { value: "0", label: "生产厂家" },
  485. { value: "1", label: "代理商" },
  486. { value: "2", label: "经销商" },
  487. { value: "3", label: "分销商" },
  488. { value: "4", label: "电商平台" },
  489. ],
  490. leveloptions: [
  491. { value: "2", label: "生产厂家" },
  492. { value: "0", label: "一级代理商" },
  493. { value: "1", label: "二级代理商" },
  494. ],
  495. pay_typeoptions: [
  496. { value: "0", label: "现结" },
  497. { value: "1", label: "月清" },
  498. { value: "2", label: "双月清" },
  499. ],
  500. title: "添加供应商",
  501. showModelThis: this.showModel,
  502. pickerOptions: {
  503. disabledDate(time) {
  504. return time.getTime() > Date.now();
  505. },
  506. },
  507. ruleForm: {},
  508. rulesThis: this.rules,
  509. rules: {
  510. coop_state: [
  511. { required: true, message: "请选择合作状态", trigger: "change" },
  512. ],
  513. source: [
  514. { required: true, message: "请选择供应商来源", trigger: "change" },
  515. ],
  516. type: [
  517. { required: true, message: "请选择申请类型", trigger: "change" },
  518. ],
  519. category: [
  520. { required: true, message: "请选择所属类别", trigger: "change" },
  521. ],
  522. delivery_way: [
  523. { required: true, message: "请选择物流方式", trigger: "change" },
  524. ],
  525. supplier_type: [
  526. { required: true, message: "请选择供应商类型", trigger: "change" },
  527. ],
  528. level: [
  529. { required: true, message: "请选择供应商级别", trigger: "change" },
  530. ],
  531. pay_type: [
  532. { required: true, message: "请选择付款方式", trigger: "change" },
  533. ],
  534. prove_img: [
  535. {
  536. required: false,
  537. type: "array",
  538. message: "请上传资质证明",
  539. trigger: "change",
  540. },
  541. ],
  542. personid: [
  543. {
  544. required: true,
  545. type: "array",
  546. message: "请选择负责人",
  547. trigger: "change",
  548. },
  549. ],
  550. contactor: [
  551. { required: true, message: "姓名不能为空", trigger: "blur" },
  552. ],
  553. mobile: [
  554. { required: true, validator: validatemobile, trigger: "blur" },
  555. ],
  556. telephone: [
  557. { required: false, validator: validatetelephone, trigger: "blur" },
  558. ],
  559. position: [
  560. { required: true, message: "职位不能为空", trigger: "blur" },
  561. ],
  562. registercode: [
  563. { required: true, validator: validateLicense, trigger: "blur" },
  564. ],
  565. name: [
  566. { required: true, message: "供应商名称不能为空", trigger: "blur" },
  567. ],
  568. nature: [
  569. { required: true, message: "公司类型不能为空", trigger: "change" },
  570. ],
  571. addr: [
  572. { required: true, message: "详细地址不能为空", trigger: "blur" },
  573. ],
  574. legaler: [
  575. { required: true, message: "法人代表不能为空", trigger: "blur" },
  576. ],
  577. registertime: [
  578. { required: true, message: "成立时间不能为空", trigger: "change" },
  579. ],
  580. scope: [
  581. { required: true, message: "营业执照不能为空", trigger: "blur" },
  582. ],
  583. },
  584. };
  585. },
  586. mounted() {
  587. this.initForm();
  588. },
  589. methods: {
  590. async initForm() {
  591. this.hand_name = "";
  592. this.loading = true;
  593. this.resetFormData();
  594. this.rulesThis = this.rules;
  595. await this.resetForm();
  596. this.loading = false;
  597. },
  598. async resetForm() {
  599. // 重置
  600. await this.$nextTick(() => {
  601. if (this.$refs.ruleForm) {
  602. this.$refs.ruleForm.resetFields();
  603. this.$refs.ruleForm.clearValidate();
  604. this.resetFormData();
  605. }
  606. });
  607. },
  608. resetFormData() {
  609. const {
  610. id,
  611. coop_state,
  612. source,
  613. type,
  614. category,
  615. delivery_way,
  616. supplier_type,
  617. level,
  618. pay_type,
  619. supplier_img,
  620. prove_img,
  621. contactor,
  622. mobile,
  623. position,
  624. registercode,
  625. name,
  626. nature,
  627. addr,
  628. legaler,
  629. registertime,
  630. scope,
  631. personid,
  632. person,
  633. telephone,
  634. } = this.sitem;
  635. this.hand_name = person || "";
  636. this.ruleForm = {
  637. id: id || "",
  638. coop_state: coop_state || "",
  639. source: source || "",
  640. type: type || "",
  641. category: category || "",
  642. delivery_way: delivery_way || "",
  643. supplier_type: supplier_type || "",
  644. level: level || "",
  645. pay_type: pay_type || "",
  646. supplier_img: supplier_img || "",
  647. prove_img: prove_img ? (prove_img || "").split(",") : [],
  648. contactor: contactor || "",
  649. mobile: mobile || "",
  650. telephone: telephone || "",
  651. position: position || "",
  652. registercode: registercode || "",
  653. name: name || "",
  654. nature: nature || "",
  655. addr: addr || "",
  656. legaler: legaler || "",
  657. registertime: registertime || "",
  658. scope: scope || "",
  659. personid: personid ? [personid] : [],
  660. };
  661. },
  662. closeImg(index) {
  663. this.ruleForm.prove_img.splice(index, 1);
  664. this.$refs.ruleForm.validateField("prove_img");
  665. },
  666. async submitForm() {
  667. await this.$refs.ruleForm.validate(async (valid) => {
  668. if (valid) {
  669. this.loading = true;
  670. let model = JSON.parse(JSON.stringify(this.ruleForm));
  671. model.prove_img = model.prove_img.toString();
  672. model.personid = model.personid.toString();
  673. let res = {};
  674. if (this.id === "add") {
  675. delete model["id"];
  676. res = await asyncRequest.add(model);
  677. } else {
  678. res = await asyncRequest.update(model);
  679. }
  680. this.loading = false;
  681. if (res && res.code === 0) {
  682. const title = this.id === "add" ? "添加成功!" : "修改成功!";
  683. this.$notify.success({
  684. title,
  685. message: "",
  686. });
  687. this.showModelThis = false;
  688. // 刷新
  689. this.$emit("refresh", res.data);
  690. } else if (res && res.code >= 100 && res.code <= 104) {
  691. await this.logout();
  692. } else {
  693. this.$message.warning(res.message);
  694. }
  695. } else {
  696. console.log("error submit!!");
  697. return false;
  698. }
  699. });
  700. },
  701. deleteimg() {
  702. this.ruleForm.supplier_img = "";
  703. this.$refs.ruleForm.validateField("supplier_img");
  704. },
  705. handleHandoverName(e) {
  706. if (e && e.id) {
  707. this.ruleForm.personid = [e.id];
  708. } else {
  709. this.ruleForm.personid = [];
  710. }
  711. this.$refs.ruleForm.validateField("personid");
  712. },
  713. type_search_change(e) {
  714. const { id, code, label } = e;
  715. if (id) {
  716. this.ruleForm.nature = id;
  717. } else {
  718. this.ruleForm.nature = "";
  719. }
  720. this.$refs.ruleForm.validateField("nature");
  721. },
  722. //图片上传成功
  723. async UploadSuccessEventsupplier_img(data) {
  724. await this.UploadSuccessEvent(1, data);
  725. },
  726. // //图片上传成功
  727. // async UploadSuccessEventgood_img(data) {
  728. // await this.UploadSuccessEvent(2, data);
  729. // },
  730. //图片上传成功
  731. async UploadSuccessEventgood_info_img(data) {
  732. await this.UploadSuccessEvent(3, data);
  733. },
  734. //图片上传成功
  735. async UploadSuccessEvent(type, data) {
  736. const { url } = data;
  737. if (url === "noToken") {
  738. await this.logout();
  739. } else {
  740. if (type === 1) {
  741. this.ruleForm.supplier_img = url;
  742. this.$refs.ruleForm.validateField("supplier_img");
  743. } else if (type === 2) {
  744. this.ruleForm.good_img = url;
  745. this.$refs.ruleForm.validateField("good_img");
  746. } else {
  747. this.ruleForm.prove_img.push(url);
  748. this.$refs.ruleForm.validateField("prove_img");
  749. }
  750. this.$message.success("图片上传成功!");
  751. }
  752. },
  753. //图片上传失败
  754. UploadErrorEventsupplier_img(res) {
  755. this.imgUploadError(1, res);
  756. },
  757. // //图片上传失败
  758. // UploadErrorEventgood_img(res) {
  759. // this.imgUploadError(2, res);
  760. // },
  761. //图片上传失败
  762. UploadErrorEventgood_info_img(res) {
  763. this.imgUploadError(3, res);
  764. },
  765. imgUploadError(type, res) {
  766. if (res !== "break") {
  767. this.$message.error("图片上传失败!");
  768. this.$refs.ruleForm.validateField(
  769. type === 1
  770. ? "supplier_img"
  771. : type === 2
  772. ? "good_img"
  773. : "good_info_img"
  774. );
  775. }
  776. },
  777. //判断图片规格
  778. beforeAvatarUpload(file) {
  779. let isJPG = false;
  780. if (
  781. file.type === "image/jpg" ||
  782. file.type === "image/png" ||
  783. file.type === "image/jpeg"
  784. ) {
  785. isJPG = true;
  786. }
  787. const isLt2M = file.size / 1024 / 1024 < 1;
  788. if (!isJPG) {
  789. this.$message.error("图片格式不正确!");
  790. }
  791. if (!isLt2M) {
  792. this.$message.error("图片大小不能超过 1MB!");
  793. }
  794. return isJPG && isLt2M;
  795. },
  796. },
  797. };
  798. </script>
  799. <style lang="scss" scoped>
  800. .supplierAdd {
  801. .good_info_img_div {
  802. ul {
  803. width: 100%;
  804. li {
  805. float: left;
  806. width: 89px;
  807. height: 89px;
  808. padding: 0 5px 0 0;
  809. .img-show-li-div {
  810. width: 84px;
  811. height: 84px;
  812. border: 1px solid #dfe4ed;
  813. background: #dfe4ed;
  814. position: relative;
  815. img.img-show {
  816. width: 100%;
  817. height: 100%;
  818. position: relative;
  819. display: inline-block;
  820. }
  821. i.el-icon-close {
  822. position: absolute;
  823. z-index: 2;
  824. top: 0;
  825. right: 0;
  826. color: #dfe4ed;
  827. }
  828. &:hover {
  829. i.el-icon-close {
  830. cursor: pointer;
  831. color: #63cbe7;
  832. }
  833. }
  834. }
  835. }
  836. }
  837. }
  838. .supplierAdd-title {
  839. border-left: 5px solid #006eff;
  840. margin: 6px 0 25px 10px;
  841. width: 100%;
  842. box-sizing: border-box;
  843. padding: 0 0 0 10px;
  844. }
  845. }
  846. </style>