packForm.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. <template>
  2. <el-form
  3. :model="ruleForm"
  4. status-icon
  5. :rules="rulesThis"
  6. ref="ruleForm"
  7. :size="'mini'"
  8. label-width="110px"
  9. class="demo-ruleForm"
  10. >
  11. <el-row>
  12. <el-col :span="1" class="dtitle">
  13. <ul>
  14. <li>包</li>
  15. <li>装</li>
  16. <li>信</li>
  17. <li>息</li>
  18. </ul></el-col
  19. >
  20. <el-col :span="23" class="dmain">
  21. <el-row>
  22. <el-col :span="8">
  23. <el-form-item label="包装清单" prop="a1">
  24. <el-input
  25. placeholder="包装清单"
  26. v-model="ruleForm.a1"
  27. maxlength="250"
  28. />
  29. </el-form-item>
  30. </el-col>
  31. <el-col :span="8">
  32. <el-form-item label="包装方式" prop="a2">
  33. <el-input
  34. placeholder="包装方式"
  35. v-model="ruleForm.a2"
  36. maxlength="250"
  37. />
  38. </el-form-item>
  39. </el-col>
  40. <el-col :span="8">
  41. <el-form-item label="装箱规格" prop="a3">
  42. <el-input
  43. placeholder="装箱规格"
  44. v-model="ruleForm.a3"
  45. maxlength="250"
  46. />
  47. </el-form-item>
  48. </el-col>
  49. <el-col :span="8">
  50. <el-form-item label="装箱重量" prop="a4">
  51. <el-input
  52. placeholder="装箱重量"
  53. v-model="ruleForm.a4"
  54. type="number"
  55. :min="0"
  56. :max="9999999999.99"
  57. :step="2"
  58. >
  59. <template slot="append">g</template>
  60. </el-input>
  61. </el-form-item>
  62. </el-col>
  63. <el-col :span="8">
  64. <el-form-item label="装箱尺寸" prop="a5">
  65. <el-input
  66. placeholder="装箱尺寸"
  67. v-model="ruleForm.a5"
  68. maxlength="250"
  69. />
  70. </el-form-item>
  71. </el-col>
  72. <el-col :span="8">
  73. <el-form-item label="商品条形码" prop="a6">
  74. <el-input
  75. placeholder="物流时间"
  76. v-model="ruleForm.a6"
  77. type="number"
  78. :min="0"
  79. :max="9999999999999"
  80. :step="0"
  81. />
  82. </el-form-item>
  83. </el-col>
  84. </el-row>
  85. </el-col>
  86. </el-row>
  87. <el-row class="ddiv">
  88. <el-col :span="1" class="dtitle">
  89. <ul>
  90. <li>发</li>
  91. <li>货</li>
  92. <li>信</li>
  93. <li>息</li>
  94. </ul></el-col
  95. >
  96. <el-col :span="23" class="dmain">
  97. <el-row>
  98. <el-col :span="8">
  99. <el-form-item label="供货区域" prop="b1">
  100. <el-select
  101. v-model="ruleForm.b1"
  102. filterable
  103. clearable
  104. style="width: 100%"
  105. placeholder="供货区域"
  106. >
  107. <el-option
  108. v-for="group in options6"
  109. :key="group.id"
  110. :label="group.name"
  111. :value="group.id"
  112. />
  113. </el-select>
  114. </el-form-item>
  115. </el-col>
  116. <el-col :span="8">
  117. <el-form-item label="发货地" prop="b2">
  118. <select-area
  119. :placeholder="'发货地'"
  120. :value="ruleForm.b2"
  121. :is-detail="id !== 'add'"
  122. :disabled="isDetail"
  123. :size="'mini'"
  124. @selectChange="selectAreab2"
  125. />
  126. </el-form-item>
  127. </el-col>
  128. <el-col :span="8">
  129. <el-form-item label="产地" prop="b3">
  130. <select-area
  131. :placeholder="'产地'"
  132. :value="ruleForm.b3"
  133. :size="'mini'"
  134. :is-detail="id !== 'add'"
  135. :disabled="isDetail"
  136. @selectChange="selectAreab3"
  137. />
  138. </el-form-item>
  139. </el-col>
  140. <el-col :span="8">
  141. <el-form-item label="物流时间" prop="b4">
  142. <el-input
  143. placeholder="物流时间"
  144. v-model="ruleForm.b4"
  145. type="number"
  146. :min="0"
  147. :max="9999999999"
  148. :step="0"
  149. >
  150. <template slot="append">天</template>
  151. </el-input>
  152. </el-form-item>
  153. </el-col>
  154. <el-col :span="8">
  155. <el-form-item label="供货周期" prop="b5">
  156. <el-input
  157. placeholder="供货周期"
  158. v-model="ruleForm.b5"
  159. type="number"
  160. :min="0"
  161. :max="9999999999"
  162. :step="0"
  163. >
  164. <template slot="append">天</template>
  165. </el-input>
  166. </el-form-item>
  167. </el-col>
  168. <el-col :span="8">
  169. <el-form-item label="调样周期" prop="b6">
  170. <el-input
  171. placeholder="调样周期"
  172. v-model="ruleForm.b6"
  173. type="number"
  174. :min="0"
  175. :max="9999999999"
  176. :step="0"
  177. >
  178. <template slot="append">天</template>
  179. </el-input>
  180. </el-form-item>
  181. </el-col>
  182. </el-row>
  183. </el-col>
  184. </el-row>
  185. <el-row class="ddiv">
  186. <el-col :span="1" class="dtitle">
  187. <ul>
  188. <li>图</li>
  189. <li>片</li>
  190. <li>信</li>
  191. <li>息</li>
  192. </ul></el-col
  193. >
  194. <el-col :span="23" class="dmain">
  195. <el-row style="padding: 0 0 20px 0">
  196. <el-col :span="8">
  197. <el-form-item label="缩略图" prop="c1" class="goodStore-upload">
  198. <div class="btnupload" style="position: relative">
  199. <img v-if="ruleForm.c1" :src="ruleForm.c1" class="avatar" />
  200. <i v-else class="el-icon-plus avatar-uploader-icon"></i>
  201. <file-upload
  202. class="Upload"
  203. :disabled="id == '007'"
  204. :accept="'.jpg,.png,.jpeg'"
  205. :multiple="true"
  206. :uploadcondition="beforeAvatarUpload"
  207. @UploadErrorEvent="UploadErrorEventc1"
  208. @UploadSuccessEvent="UploadSuccessEventc1"
  209. ></file-upload>
  210. </div>
  211. <div class="txt-tips fl">
  212. <p>尺寸比例:</p>
  213. <p>1:1</p>
  214. </div>
  215. </el-form-item>
  216. <el-form-item label="详情主图" prop="c2" class="goodStore-upload">
  217. <div class="btnupload" style="position: relative">
  218. <img v-if="ruleForm.c2" :src="ruleForm.c2" class="avatar" />
  219. <i v-else class="el-icon-plus avatar-uploader-icon"></i>
  220. <file-upload
  221. class="Upload"
  222. :disabled="id == '007'"
  223. :accept="'.jpg,.png,.jpeg'"
  224. :multiple="true"
  225. :uploadcondition="beforeAvatarUpload"
  226. @UploadErrorEvent="UploadErrorEventc2"
  227. @UploadSuccessEvent="UploadSuccessEventc2"
  228. ></file-upload>
  229. </div>
  230. </el-form-item>
  231. <div style="font-size: 12px; color: #606266">
  232. <span style="padding: 0 0 0 20px">图片大小:小于1M</span>
  233. <span style="padding: 0 0 0 20px">图片类型.jpg/png/jpeg</span>
  234. </div>
  235. </el-col>
  236. <el-col :span="16">
  237. <el-form-item label="详情介绍图" prop="c3">
  238. <div class="c3-div">
  239. <ul v-if="ruleForm.c3" class="clear">
  240. <li class="img-show-li" v-viewer v-for="(img, iindex) in ruleForm.c3" :key="img + iindex">
  241. <img :src="img" alt="" />
  242. <i class="el-icon-close" @click="closeImg(iindex)"></i>
  243. </li>
  244. <li class="img-upload-li" v-if="ruleForm.c3.length < 10">
  245. <div class="goodStore-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="id == '007'"
  251. :accept="'.jpg,.png,.jpeg'"
  252. :multiple="true"
  253. :uploadcondition="beforeAvatarUpload"
  254. @UploadErrorEvent="UploadErrorEventc3"
  255. @UploadSuccessEvent="UploadSuccessEventc3"
  256. ></file-upload>
  257. </div>
  258. </div>
  259. </li>
  260. </ul>
  261. </div>
  262. </el-form-item>
  263. </el-col>
  264. </el-row>
  265. </el-col>
  266. </el-row>
  267. </el-form>
  268. </template>
  269. <script>
  270. import asyncRequest from "@/apis/service/goodStore/active";
  271. import resToken from "@/mixins/resToken";
  272. import { mapGetters } from "vuex";
  273. import { options6 } from "../columns";
  274. export default {
  275. name: "activeAdd",
  276. mixins: [resToken],
  277. computed: {
  278. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  279. powers() {
  280. let tran =
  281. this.$store.getters.btnList.find(
  282. (item) => item.menu_route == "activeAdd"
  283. ) || {};
  284. if (tran && tran.action && tran.action.length > 0) {
  285. return tran.action;
  286. } else {
  287. return [];
  288. }
  289. },
  290. },
  291. data() {
  292. return {
  293. size: "small",
  294. rulesThis: this.rules,
  295. loading: false,
  296. options6: options6,
  297. ruleForm: {},
  298. rules: {
  299. a1: [
  300. {
  301. required: true,
  302. message: "请输入包装清单",
  303. trigger: "blur",
  304. },
  305. ],
  306. a2: [
  307. {
  308. required: true,
  309. message: "请输入包装方式",
  310. trigger: "blur",
  311. },
  312. ],
  313. a3: [
  314. {
  315. required: true,
  316. message: "请输入装箱规格",
  317. trigger: "blur",
  318. },
  319. ],
  320. a4: [
  321. {
  322. required: true,
  323. message: "请输入装箱重量",
  324. trigger: "blur",
  325. },
  326. ],
  327. a5: [
  328. {
  329. required: true,
  330. message: "请输入装箱尺寸",
  331. trigger: "blur",
  332. },
  333. ],
  334. b1: [
  335. {
  336. required: true,
  337. message: "请选择供货区域",
  338. trigger: "change",
  339. },
  340. ],
  341. b2: [
  342. {
  343. type: "array",
  344. required: true,
  345. message: "请选择发货地",
  346. trigger: "change",
  347. },
  348. ],
  349. b3: [
  350. {
  351. type: "array",
  352. required: true,
  353. message: "请选择产地",
  354. trigger: "change",
  355. },
  356. ],
  357. b4: [
  358. {
  359. required: true,
  360. message: "请输入物流时间",
  361. trigger: "blur",
  362. },
  363. ],
  364. b5: [
  365. {
  366. required: true,
  367. message: "请输入供货周期",
  368. trigger: "blur",
  369. },
  370. ],
  371. b6: [
  372. {
  373. required: true,
  374. message: "请输入调样周期",
  375. trigger: "blur",
  376. },
  377. ],
  378. c1: [
  379. {
  380. required: true,
  381. message: "商品主图",
  382. trigger: "change",
  383. },
  384. ],
  385. c2: [
  386. {
  387. required: true,
  388. message: "商品分类",
  389. trigger: "change",
  390. },
  391. ],
  392. c3: [
  393. {
  394. type: "array",
  395. required: true,
  396. message: "商品品牌",
  397. trigger: "change",
  398. },
  399. ],
  400. },
  401. };
  402. },
  403. mounted() {
  404. this.initForm();
  405. },
  406. methods: {
  407. async initForm() {
  408. this.loading = true;
  409. this.resetFormData();
  410. this.rulesThis = this.rules;
  411. await this.resetForm();
  412. this.loading = false;
  413. },
  414. handleClick(row) {
  415. console.log(row);
  416. },
  417. async initData() {
  418. this.loading = true;
  419. let res = await asyncRequest.detail({ id: this.id });
  420. this.loading = false;
  421. if (res.code === 0) {
  422. await this.resetForm(res.data);
  423. }
  424. },
  425. async resetForm() {
  426. // 重置
  427. await this.$nextTick(async () => {
  428. if (this.$refs.ruleForm) {
  429. this.$refs.ruleForm.resetFields();
  430. this.$refs.ruleForm.clearValidate();
  431. this.resetFormData();
  432. }
  433. });
  434. },
  435. resetFormData() {
  436. this.ruleForm = {
  437. a1: "",
  438. a2: "",
  439. a3: "",
  440. a4: "",
  441. a5: "",
  442. a6: "",
  443. b1: "",
  444. b2: [],
  445. b3: [],
  446. b4: "",
  447. b5: "",
  448. b6: "",
  449. c1: "",
  450. c2: "",
  451. c3: [],
  452. };
  453. },
  454. //仓库省市区
  455. selectAreab2(e) {
  456. this.ruleForm.b2 = e;
  457. this.$refs.ruleForm.validateField("b2");
  458. },
  459. //仓库省市区
  460. selectAreab3(e) {
  461. this.ruleForm.b3 = e;
  462. this.$refs.ruleForm.validateField("b3");
  463. },
  464. async submitForm() {
  465. await this.$refs.ruleForm.validate(async (valid) => {
  466. if (valid) {
  467. let change = false;
  468. this.mock.forEach((v1) => {
  469. if (v1.change && v1.change.length > 0) {
  470. change = true;
  471. }
  472. });
  473. if (!change) {
  474. this.ruleForm.spec = "规格!";
  475. return;
  476. } else {
  477. this.ruleForm.spec = "";
  478. let table = false;
  479. let hasnot = false;
  480. let stock = [];
  481. this.right.specList.forEach((v1) => {
  482. if (v1) {
  483. v1.forEach((v2) => {
  484. if (v2 && v2.limit && v2.limit.length > 0) {
  485. let list = [];
  486. v2.limit.forEach((v3) => {
  487. if (v3.num != 0 && v3.price != 0) {
  488. table = true;
  489. list.push(v3);
  490. }
  491. if (
  492. (v3.num != 0 && v3.price == 0) ||
  493. (v3.num == 0 && v3.price !== 0)
  494. ) {
  495. hasnot = true;
  496. }
  497. });
  498. if (list.length > 0) {
  499. let model = Object.assign({}, v2);
  500. model.limit = list;
  501. stock.push(model);
  502. }
  503. }
  504. });
  505. }
  506. });
  507. if (hasnot) {
  508. this.ruleForm.table =
  509. "起订量与成本价需成对填写,未成对请设为零!";
  510. } else {
  511. if (!table) {
  512. this.ruleForm.table = "至少填写一堆起订量与成本价!";
  513. } else {
  514. this.ruleForm.table = "";
  515. this.loading = true;
  516. let obj = JSON.parse(JSON.stringify(this.ruleForm));
  517. obj.stock = stock;
  518. obj.catid = obj.catid[obj.catid.length - 1];
  519. obj.image = obj.image.join();
  520. //split(",");
  521. console.log(obj);
  522. let res = {};
  523. if (this.id === "add") {
  524. delete obj["id"];
  525. res = await asyncRequest.add(obj);
  526. } else {
  527. res = await asyncRequest.update(obj);
  528. }
  529. this.loading = false;
  530. if (res.code === 0) {
  531. let title = this.id === "add" ? "添加成功" : "修改成功";
  532. this.$notify.success({
  533. title,
  534. message: "",
  535. });
  536. // 刷新
  537. this.$emit("refresh");
  538. }
  539. }
  540. }
  541. }
  542. } else {
  543. console.log("error submit!!");
  544. return false;
  545. }
  546. });
  547. },
  548. closeImg(index) {
  549. this.ruleForm.c3.splice(index, 1);
  550. this.$refs.ruleForm.validateField("c3");
  551. },
  552. //图片上传成功
  553. async UploadSuccessEventc1(data) {
  554. await this.UploadSuccessEvent(1, data);
  555. },
  556. //图片上传成功
  557. async UploadSuccessEventc2(data) {
  558. await this.UploadSuccessEvent(2, data);
  559. },
  560. //图片上传成功
  561. async UploadSuccessEventc3(data) {
  562. await this.UploadSuccessEvent(3, data);
  563. },
  564. //图片上传成功
  565. async UploadSuccessEvent(type, data) {
  566. const { url } = data;
  567. if (url === "noToken") {
  568. await this.logout();
  569. } else {
  570. if (type === 1) {
  571. this.ruleForm.c1 = url;
  572. this.$refs.ruleForm.validateField("c1");
  573. } else if (type === 2) {
  574. this.ruleForm.c2 = url;
  575. this.$refs.ruleForm.validateField("c2");
  576. } else {
  577. this.ruleForm.c3.push(url);
  578. this.$refs.ruleForm.validateField("c3");
  579. }
  580. this.$message.success("图片上传成功!");
  581. }
  582. },
  583. //图片上传失败
  584. UploadErrorEventc1(res) {
  585. this.imgUploadError(1, res);
  586. },
  587. //图片上传失败
  588. UploadErrorEventc2(res) {
  589. this.imgUploadError(2, res);
  590. },
  591. //图片上传失败
  592. UploadErrorEventc3(res) {
  593. this.imgUploadError(3, res);
  594. },
  595. imgUploadError(type, res) {
  596. if (res !== "break") {
  597. this.$message.error("图片上传失败!");
  598. this.$refs.ruleForm.validateField(
  599. type === 1 ? "c1" : type === 2 ? "c2" : "c3"
  600. );
  601. }
  602. },
  603. //判断图片规格
  604. beforeAvatarUpload(file) {
  605. let isJPG = false;
  606. if (
  607. file.type === "image/jpg" ||
  608. file.type === "image/png" ||
  609. file.type === "image/jpeg"
  610. ) {
  611. isJPG = true;
  612. }
  613. const isLt2M = file.size / 1024 / 1024 < 1;
  614. if (!isJPG) {
  615. this.$message.error("图片格式不正确!");
  616. }
  617. if (!isLt2M) {
  618. this.$message.error("图片大小不能超过 1MB!");
  619. }
  620. return isJPG && isLt2M;
  621. },
  622. },
  623. };
  624. </script>
  625. <style lang="scss" scoped>
  626. .activeAdd {
  627. .c3-div {
  628. ul {
  629. float: left;
  630. width: 100%;
  631. li {
  632. float: left;
  633. width: 102px;
  634. height: 102px;
  635. overflow: hidden;
  636. margin: 0 10px 10px 0;
  637. border: 1px solid rgb(220, 223, 230);
  638. position: relative;
  639. &.img-upload-li {
  640. border: 0;
  641. }
  642. &.img-show-li {
  643. img {
  644. display: inline-block;
  645. width: 100%;
  646. }
  647. i {
  648. position: absolute;
  649. width: 20px;
  650. height: 20px;
  651. font-size: 13px;
  652. text-align: center;
  653. line-height: 20px;
  654. top: 0;
  655. right: 0;
  656. z-index: 2;
  657. color: rgb(220, 223, 230);
  658. }
  659. &:hover {
  660. i {
  661. color: #63cbe7;
  662. &:hover {
  663. cursor: pointer;
  664. }
  665. }
  666. }
  667. }
  668. }
  669. }
  670. }
  671. }
  672. </style>