baseForm.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879
  1. <template>
  2. <el-form
  3. :model="ruleForm"
  4. status-icon
  5. :rules="rulesThis"
  6. ref="ruleForm"
  7. :size="'mini'"
  8. label-width="100px"
  9. class="demo-ruleForm"
  10. >
  11. <el-row>
  12. <el-col :span="1" class="dtitle">
  13. <ul style="padding: 150px 0 0 0">
  14. <li>基</li>
  15. <li>础</li>
  16. <li>信</li>
  17. <li>息</li>
  18. </ul>
  19. </el-col>
  20. <el-col :span="23" class="dmain">
  21. <el-row>
  22. <el-col :span="8">
  23. <el-form-item label="商品分类" prop="a1">
  24. <el-cascader
  25. v-model="ruleForm.a1"
  26. style="width: 100%"
  27. filterable
  28. placeholder="商品分类"
  29. clearable
  30. :options="catOptions"
  31. :props="{ expandTrigger: 'hover', checkStrictly: true }"
  32. ></el-cascader>
  33. </el-form-item>
  34. <el-form-item label="商品品牌" prop="a2">
  35. <el-select
  36. style="width: 100%"
  37. v-model="ruleForm.a2"
  38. clearable
  39. placeholder="商品品牌"
  40. >
  41. <el-option
  42. v-for="item in a2Options"
  43. :key="item.id"
  44. :label="item.brand_name"
  45. :value="item.id"
  46. >
  47. </el-option>
  48. </el-select>
  49. </el-form-item>
  50. <el-form-item label="重量" prop="a3">
  51. <el-input
  52. placeholder="重量"
  53. v-model="ruleForm.a3"
  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-form-item label="是否定制" prop="a4">
  63. <el-select
  64. v-model="ruleForm.a4"
  65. filterable
  66. clearable
  67. style="width: 100%"
  68. placeholder="是否定制"
  69. >
  70. <el-option
  71. v-for="group in options1"
  72. :key="group.id"
  73. :label="group.name"
  74. :value="group.id"
  75. />
  76. </el-select>
  77. </el-form-item>
  78. <el-form-item label="是否库存品" prop="a5">
  79. <el-select
  80. v-model="ruleForm.a5"
  81. filterable
  82. clearable
  83. style="width: 100%"
  84. placeholder="是否库存品"
  85. >
  86. <el-option
  87. v-for="group in options4"
  88. :key="group.id"
  89. :label="group.name"
  90. :value="group.id"
  91. />
  92. </el-select>
  93. </el-form-item>
  94. <el-form-item label="供应商" prop="a6">
  95. <el-select
  96. v-model="ruleForm.a6"
  97. filterable
  98. clearable
  99. style="width: 100%"
  100. placeholder="供应商"
  101. >
  102. <el-option
  103. v-for="group in supplierOptions6"
  104. :key="group.id"
  105. :label="group.name"
  106. :value="group.id"
  107. />
  108. </el-select>
  109. </el-form-item>
  110. <el-form-item label="销售权限" prop="a7">
  111. <el-select
  112. v-model="ruleForm.a7"
  113. filterable
  114. clearable
  115. style="width: 100%"
  116. placeholder="销售权限"
  117. >
  118. <el-option
  119. v-for="group in options3"
  120. :key="group.id"
  121. :label="group.name"
  122. :value="group.id"
  123. />
  124. </el-select>
  125. </el-form-item>
  126. <el-form-item label="税点" prop="a8">
  127. <el-select
  128. v-model="ruleForm.a8"
  129. filterable
  130. clearable
  131. style="width: 100%"
  132. placeholder="税点"
  133. >
  134. <el-option
  135. v-for="group in supplierOptions4"
  136. :key="group.id"
  137. :label="group.name"
  138. :value="group.id"
  139. />
  140. </el-select>
  141. </el-form-item>
  142. </el-col>
  143. <el-col :span="16">
  144. <el-form-item label="商品名称" prop="b1">
  145. <el-input
  146. placeholder="请输入商品名称"
  147. v-model="ruleForm.b1"
  148. ></el-input>
  149. </el-form-item>
  150. <el-row>
  151. <el-col :span="12">
  152. <el-form-item label="商品单位" prop="b2">
  153. <el-input
  154. placeholder="商品单位"
  155. v-model="ruleForm.b2"
  156. :disabled="isDetail"
  157. ></el-input>
  158. </el-form-item>
  159. </el-col>
  160. <el-col :span="12">
  161. <el-form-item label="专属类型" prop="b3">
  162. <el-select
  163. v-model="ruleForm.b3"
  164. filterable
  165. clearable
  166. style="width: 100%"
  167. placeholder="专属类型"
  168. >
  169. <el-option
  170. v-for="group in options2"
  171. :key="group.id"
  172. :label="group.name"
  173. :value="group.id"
  174. />
  175. </el-select>
  176. </el-form-item>
  177. </el-col>
  178. <el-col :span="12">
  179. <el-form-item label="贵金属种类" prop="b4">
  180. <el-select
  181. v-model="ruleForm.b4"
  182. filterable
  183. clearable
  184. style="width: 100%"
  185. placeholder="销售权限"
  186. >
  187. <el-option
  188. v-for="group in []"
  189. :key="group.id"
  190. :label="group.name"
  191. :value="group.id"
  192. />
  193. </el-select> </el-form-item
  194. ></el-col>
  195. <el-col :span="12">
  196. <el-form-item label="启用实时金价" prop="b5">
  197. <el-select
  198. v-model="ruleForm.b5"
  199. filterable
  200. clearable
  201. style="width: 100%"
  202. placeholder="启用实时金价"
  203. >
  204. <el-option
  205. v-for="group in options5"
  206. :key="group.id"
  207. :label="group.name"
  208. :value="group.id"
  209. />
  210. </el-select> </el-form-item
  211. ></el-col>
  212. <el-col :span="12">
  213. <el-form-item label="定制起订量" prop="b6">
  214. <el-input
  215. placeholder="定制起订量"
  216. v-model="ruleForm.b6"
  217. type="number"
  218. :min="0"
  219. :max="9999999999"
  220. :step="0"
  221. />
  222. </el-form-item>
  223. </el-col>
  224. <el-col :span="12">
  225. <el-form-item label="定制工期" prop="b7">
  226. <el-input
  227. placeholder="定制工期"
  228. v-model="ruleForm.b7"
  229. type="number"
  230. :min="0"
  231. :max="9999999999"
  232. :step="0"
  233. >
  234. <template slot="append">天</template>
  235. </el-input>
  236. </el-form-item>
  237. </el-col>
  238. </el-row>
  239. <el-form-item label="售后说明" prop="b8">
  240. <el-input
  241. type="textarea"
  242. :rows="2"
  243. placeholder="售后说明"
  244. v-model="ruleForm.b8"
  245. >
  246. </el-input>
  247. </el-form-item>
  248. <el-form-item label="工艺说明" prop="b9">
  249. <el-input
  250. type="textarea"
  251. :rows="2"
  252. placeholder="工艺说明"
  253. v-model="ruleForm.b9"
  254. >
  255. </el-input>
  256. </el-form-item>
  257. <el-form-item label="商品备注" prop="bb1">
  258. <el-input
  259. type="textarea"
  260. :rows="2"
  261. placeholder="商品备注"
  262. v-model="ruleForm.bb1"
  263. >
  264. </el-input>
  265. </el-form-item>
  266. </el-col>
  267. </el-row>
  268. </el-col>
  269. </el-row>
  270. <el-row class="ddiv">
  271. <el-col :span="1" class="dtitle">
  272. <ul>
  273. <li>规</li>
  274. <li>格</li>
  275. <li>信</li>
  276. <li>息</li>
  277. </ul>
  278. </el-col>
  279. <el-col :span="23" class="dmain" style="padding-left: 18px">
  280. <el-table :data="tableData" :size="'mini'" border style="width: 100%">
  281. <el-table-column prop="index" label="序号"> </el-table-column>
  282. <el-table-column prop="name" label="规格类型"> </el-table-column>
  283. <el-table-column prop="address" label="规格值"> </el-table-column>
  284. <el-table-column fixed="right">
  285. <template slot="header" slot-scope="scope">
  286. <span>操作</span>
  287. <el-button :size="'mini'" class="fr">添加规格类型</el-button>
  288. </template>
  289. <template slot-scope="scope">
  290. <el-button
  291. @click="handleClick(scope.row)"
  292. type="text"
  293. size="small"
  294. >新建规格值</el-button
  295. >
  296. <el-button
  297. @click="handleClick(scope.row)"
  298. type="text"
  299. size="small"
  300. >修改规格值</el-button
  301. >
  302. <el-button type="text" size="small">移除规格类型</el-button>
  303. </template>
  304. </el-table-column>
  305. </el-table>
  306. </el-col>
  307. </el-row>
  308. </el-form>
  309. </template>
  310. <script>
  311. import asyncRequest from "@/apis/service/goodStore/goodsCost";
  312. import resToken from "@/mixins/resToken";
  313. import { mapGetters } from "vuex";
  314. import { options1, options2, options3, options4, options5 } from "../columns";
  315. export default {
  316. name: "goodsCostAdd",
  317. mixins: [resToken],
  318. computed: {
  319. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  320. powers() {
  321. let tran =
  322. this.$store.getters.btnList.find(
  323. (item) => item.menu_route == "goodsCostAdd"
  324. ) || {};
  325. if (tran && tran.action && tran.action.length > 0) {
  326. return tran.action;
  327. } else {
  328. return [];
  329. }
  330. },
  331. },
  332. data() {
  333. return {
  334. size: "small",
  335. rulesThis: this.rules,
  336. activeName: "1",
  337. loading: false,
  338. tableData: [],
  339. options1: options1,
  340. options2: options2,
  341. options3: options3,
  342. options4: options4,
  343. options5: options5,
  344. supplierOptions4: [
  345. { id: "0", name: "0%" },
  346. { id: "1", name: "1%" },
  347. { id: "3", name: "3%" },
  348. { id: "6", name: "6%" },
  349. { id: "9", name: "9%" },
  350. { id: "13", name: "13%" },
  351. ],
  352. supplierOptions6: [
  353. { id: "0", name: "供应商1" },
  354. { id: "1", name: "供应商1" },
  355. ],
  356. ruleForm: {},
  357. rules: {
  358. supplier: [
  359. {
  360. required: true,
  361. message: "供应商联系人",
  362. trigger: "change",
  363. },
  364. ],
  365. image: [
  366. {
  367. required: true,
  368. message: "商品主图",
  369. trigger: "change",
  370. },
  371. ],
  372. a1: [
  373. {
  374. required: true,
  375. message: "商品分类",
  376. trigger: "change",
  377. },
  378. ],
  379. a2: [
  380. {
  381. required: true,
  382. message: "商品品牌",
  383. trigger: "change",
  384. },
  385. ],
  386. good_name: [
  387. {
  388. required: true,
  389. message: "请输入商品名称",
  390. trigger: "blur",
  391. },
  392. {
  393. min: 2,
  394. max: 50,
  395. message: "长度在 2 到 50 个字符",
  396. trigger: "blur",
  397. },
  398. ],
  399. unit: [
  400. {
  401. required: true,
  402. message: "请输入商品单位",
  403. trigger: "blur",
  404. },
  405. {
  406. min: 1,
  407. max: 10,
  408. message: "长度在 1 到 10 个字符",
  409. trigger: "blur",
  410. },
  411. ],
  412. },
  413. ruleForm: {},
  414. };
  415. },
  416. mounted() {
  417. this.initForm();
  418. },
  419. methods: {
  420. async initForm() {
  421. this.loading = true;
  422. this.rulesThis = this.rules;
  423. await this.resetForm();
  424. this.loading = false;
  425. },
  426. handleClick(row) {
  427. console.log(row);
  428. },
  429. async initData() {
  430. this.loading = true;
  431. let res = await asyncRequest.detail({ id: this.id });
  432. this.loading = false;
  433. if (res.code === 0) {
  434. await this.resetForm(res.data);
  435. }
  436. },
  437. async resetForm() {
  438. // 重置
  439. await this.$nextTick(async () => {
  440. if (this.$refs.ruleForm) {
  441. this.$refs.ruleForm.resetFields();
  442. this.$refs.ruleForm.clearValidate();
  443. this.ruleForm = {
  444. a1: "",
  445. a2: "",
  446. a3: "",
  447. a4: "",
  448. a5: "",
  449. a6: "",
  450. a7: "",
  451. a8: "",
  452. b1: "2018春秋新款V领修身丝绒西装女 双排扣复古极简中长款工装外套",
  453. b2: "",
  454. b3: "",
  455. b4: "",
  456. b5: "",
  457. b6: "",
  458. b7: "",
  459. b8: "",
  460. b9: "",
  461. bb1: "",
  462. };
  463. }
  464. });
  465. },
  466. async submitForm() {
  467. await this.$refs.ruleForm.validate(async (valid) => {
  468. if (valid) {
  469. let change = false;
  470. this.mock.forEach((v1) => {
  471. if (v1.change && v1.change.length > 0) {
  472. change = true;
  473. }
  474. });
  475. if (!change) {
  476. this.ruleForm.spec = "规格!";
  477. return;
  478. } else {
  479. this.ruleForm.spec = "";
  480. let table = false;
  481. let hasnot = false;
  482. let stock = [];
  483. this.right.specList.forEach((v1) => {
  484. if (v1) {
  485. v1.forEach((v2) => {
  486. if (v2 && v2.limit && v2.limit.length > 0) {
  487. let list = [];
  488. v2.limit.forEach((v3) => {
  489. if (v3.num != 0 && v3.price != 0) {
  490. table = true;
  491. list.push(v3);
  492. }
  493. if (
  494. (v3.num != 0 && v3.price == 0) ||
  495. (v3.num == 0 && v3.price !== 0)
  496. ) {
  497. hasnot = true;
  498. }
  499. });
  500. if (list.length > 0) {
  501. let model = Object.assign({}, v2);
  502. model.limit = list;
  503. stock.push(model);
  504. }
  505. }
  506. });
  507. }
  508. });
  509. if (hasnot) {
  510. this.ruleForm.table =
  511. "起订量与成本价需成对填写,未成对请设为零!";
  512. } else {
  513. if (!table) {
  514. this.ruleForm.table = "至少填写一堆起订量与成本价!";
  515. } else {
  516. this.ruleForm.table = "";
  517. this.loading = true;
  518. let obj = JSON.parse(JSON.stringify(this.ruleForm));
  519. obj.stock = stock;
  520. obj.a1 = obj.a1[obj.a1.length - 1];
  521. obj.image = obj.image.join();
  522. //split(",");
  523. console.log(obj);
  524. let res = {};
  525. if (this.id === "add") {
  526. delete obj["id"];
  527. res = await asyncRequest.add(obj);
  528. } else {
  529. res = await asyncRequest.update(obj);
  530. }
  531. this.loading = false;
  532. if (res.code === 0) {
  533. let title = this.id === "add" ? "添加成功" : "修改成功";
  534. this.$notify.success({
  535. title,
  536. message: "",
  537. });
  538. // 刷新
  539. this.$emit("refresh");
  540. }
  541. }
  542. }
  543. }
  544. } else {
  545. console.log("error submit!!");
  546. return false;
  547. }
  548. });
  549. },
  550. // groupChange($event, index, item) {
  551. // this.$set(this.mock, index, item);
  552. // this.actionSpecList();
  553. // },
  554. // actionSpecList() {
  555. // // this.leftS = "0px";
  556. // this.left.header = [];
  557. // this.left.middle = [];
  558. // this.left.specList = [];
  559. // console.log(this.mock);
  560. // console.log(this.right.specList);
  561. // this.mock.forEach((v1) => {
  562. // if (
  563. // v1.change &&
  564. // v1.change.length > 0 &&
  565. // v1.child &&
  566. // v1.child.length > 0
  567. // ) {
  568. // this.left.header.push({
  569. // spec_id: v1.spec_id,
  570. // spec_name: v1.spec_name,
  571. // });
  572. // let arr = [];
  573. // let changeList = v1.change;
  574. // changeList.forEach((v2) => {
  575. // let index = v1.child.findIndex((v3) => v2 === v3.id);
  576. // if (index !== -1) {
  577. // let x = {
  578. // spec_id: v1.spec_id,
  579. // spec_name: v1.spec_name,
  580. // id: v1.child[index].id,
  581. // spec_value: v1.child[index].spec_value,
  582. // };
  583. // arr.push(x);
  584. // }
  585. // });
  586. // this.left.middle.push(arr);
  587. // }
  588. // });
  589. // let lang = this.left.header.length;
  590. // this.leftS = lang * 70 + "px";
  591. // if (this.left.middle.length > 1) {
  592. // this.left.specList = this.doExchange(this.left.middle);
  593. // } else if (this.left.middle.length === 0) {
  594. // this.left.specList = [];
  595. // } else {
  596. // let list1 = [];
  597. // this.left.middle.forEach((v1) => {
  598. // if (v1) {
  599. // v1.forEach((v2) => {
  600. // let list2 = [];
  601. // list2.push(v2);
  602. // list1.push(list2);
  603. // });
  604. // }
  605. // });
  606. // this.left.specList = list1;
  607. // }
  608. // this.right.header = [];
  609. // for (let i = 0; i < this.ladderNum; i++) {
  610. // this.right.header.push(this.headLadder);
  611. // }
  612. // this.right.specList = [];
  613. // this.left.specList.forEach((v1) => {
  614. // let arr = [];
  615. // let model = {
  616. // specid: [],
  617. // limit: [],
  618. // };
  619. // v1.forEach((v2) => {
  620. // model.specid.push(v2.id);
  621. // });
  622. // for (let i = 0; i < this.ladderNum; i++) {
  623. // let bodyLadder = {
  624. // num: 0,
  625. // price: 0,
  626. // };
  627. // model.limit.push(bodyLadder);
  628. // }
  629. // arr.push(model);
  630. // this.right.specList.push(arr);
  631. // });
  632. // console.log(this.right.specList);
  633. // },
  634. // closeLadder(index) {
  635. // console.log(index);
  636. // },
  637. // async handleChange(type) {
  638. // if (this.ruleForm.a1 !== this.olda1 && this.olda1.length === 0) {
  639. // await this.specByCat();
  640. // if (this.step === 0 && !type) {
  641. // this.step = 1;
  642. // }
  643. // } else if (
  644. // this.ruleForm.a1 !== this.olda1 &&
  645. // this.olda1.length > 0
  646. // ) {
  647. // await this.$confirm(
  648. // "分类修改会影响该商品规格与价格!",
  649. // "确定要修改?",
  650. // {
  651. // confirmButtonText: "确定",
  652. // cancelButtonText: "取消",
  653. // type: "warning",
  654. // }
  655. // )
  656. // .then(async () => {
  657. // await this.specByCat();
  658. // if (this.step === 0) {
  659. // this.step = 1;
  660. // }
  661. // })
  662. // .catch(() => {
  663. // this.ruleForm.a1 = this.olda1;
  664. // });
  665. // } else {
  666. // if (this.step === 0 && !type) {
  667. // this.step = 1;
  668. // }
  669. // }
  670. // },
  671. // // 商品种类ID换取规格值
  672. // async specByCat(type) {
  673. // console.log("准备拉取!");
  674. // this.mock = [];
  675. // this.$set(this.mock);
  676. // let list = this.ruleForm.a1;
  677. // let res = await asyncRequest.specByCat({ a1: list[list.length - 1] });
  678. // if (res.code === 0) {
  679. // this.dealWitHInitMock(res.data, type);
  680. // this.olda1 = list;
  681. // } else if (res.code !== 101 && res.code !== 102) {
  682. // this.ruleForm.a1 = this.olda1;
  683. // }
  684. // },
  685. // // 规格属性值新建
  686. // async specinfoadd(id, value) {
  687. // console.log(id, value);
  688. // let list = this.ruleForm.a1;
  689. // let model = {
  690. // a1: list[list.length - 1],
  691. // specid: id,
  692. // spec_value: value,
  693. // };
  694. // let res = await asyncRequest.specinfoadd(model);
  695. // if (res.code === 0) {
  696. // await this.specByCat(true);
  697. // }
  698. // },
  699. // dealWitHInitMock(list, type) {
  700. // console.log(list, type);
  701. // if (!type) {
  702. // this.mock = [];
  703. // console.log("12345678");
  704. // console.log(this.mock);
  705. // this.left.header = [];
  706. // this.left.specList = [];
  707. // this.right.header = [];
  708. // this.right.specList = [];
  709. // list.map((v1) => {
  710. // v1.value = "";
  711. // v1.change = [];
  712. // return v1;
  713. // });
  714. // this.mock = list;
  715. // console.log(this.mock);
  716. // this.mock.forEach((v3, i) => {
  717. // this.$set(this.mock, i, v3);
  718. // });
  719. // } else {
  720. // let arr = JSON.parse(JSON.stringify(this.mock));
  721. // list.map((v1) => {
  722. // v1.value = "";
  723. // let index = arr.findIndex((v2) => v2.spec_id === v1.spec_id);
  724. // if (index !== -1) {
  725. // v1.change = arr[index].change;
  726. // }
  727. // return v1;
  728. // });
  729. // this.mock = list;
  730. // this.mock.forEach((v3, i) => {
  731. // this.$set(this.mock, i, v3);
  732. // });
  733. // }
  734. // },
  735. // async getAlla2() {
  736. // const res = await asyncRequest.brandAll({});
  737. // if (res.code === 0 && res.data) {
  738. // this.a2Options = res.data;
  739. // }
  740. // },
  741. // async getAllCat() {
  742. // const res = await asyncRequest.catAll({});
  743. // if (res.code === 0 && res.data) {
  744. // let list = res.data;
  745. // list.map((v1) => {
  746. // v1.value = v1.id;
  747. // v1.label = v1.cat_name;
  748. // if (v1.child && v1.child.length > 0) {
  749. // v1.child.map((v2) => {
  750. // v2.value = v2.id;
  751. // v2.label = v2.cat_name;
  752. // if (v2.child && v2.child.length > 0) {
  753. // v2.child.map((v3) => {
  754. // v3.value = v3.id;
  755. // v3.label = v3.cat_name;
  756. // return v3;
  757. // });
  758. // v2.children = v2.child;
  759. // }
  760. // return v2;
  761. // });
  762. // v1.children = v1.child;
  763. // }
  764. // return v1;
  765. // });
  766. // this.catOptions = list;
  767. // }
  768. // },
  769. // async getAllSupplier() {
  770. // const res = await asyncRequest.supplierAll({});
  771. // if (res.code === 0 && res.data) {
  772. // let list = res.data;
  773. // this.supplierOptions = list;
  774. // }
  775. // },
  776. //图片上传失败
  777. UploadErrorEvent() {
  778. this.$message.error("图片上传失败!");
  779. this.$refs.ruleForm.validateField("image");
  780. },
  781. closeImg(index) {
  782. this.ruleForm.image.splice(index, 1);
  783. this.$refs.ruleForm.validateField("image");
  784. },
  785. //图片上传成功
  786. UploadSuccessEvent(data) {
  787. console.log(data);
  788. this.ruleForm.image.push(data.url);
  789. this.$message.success("图片上传成功!");
  790. this.$refs.ruleForm.validateField("image");
  791. },
  792. //判断图片规格
  793. beforeAvatarUpload(file) {
  794. console.log(file);
  795. let isJPG = false;
  796. if (
  797. file.type === "image/jpg" ||
  798. file.type === "image/png" ||
  799. file.type === "image/bmp" ||
  800. file.type === "image/jpeg" ||
  801. file.type === "image/gif"
  802. ) {
  803. isJPG = true;
  804. }
  805. const isLt2M = file.size / 1024 / 1024 < 1;
  806. if (!isJPG) {
  807. this.$message.error("图片格式不正确!");
  808. }
  809. if (!isLt2M) {
  810. this.$message.error("图片大小不能超过 1MB!");
  811. }
  812. return isJPG && isLt2M;
  813. },
  814. doExchange(arr) {
  815. let len = arr.length;
  816. // 当数组大于等于2个的时候
  817. if (len >= 2) {
  818. // 第一个数组的长度
  819. let len1 = arr[0].length;
  820. // 第二个数组的长度
  821. let len2 = arr[1].length;
  822. // 2个数组产生的组合数
  823. let lenBoth = len1 * len2;
  824. // 申明一个新数组
  825. let items = new Array(lenBoth);
  826. // 申明新数组的索引
  827. let index = 0;
  828. for (let i = 0; i < len1; i++) {
  829. for (let j = 0; j < len2; j++) {
  830. if (arr[0][i] instanceof Array) {
  831. items[index] = arr[0][i].concat(arr[1][j]);
  832. } else {
  833. items[index] = [arr[0][i]].concat(arr[1][j]);
  834. }
  835. index++;
  836. }
  837. }
  838. let newArr = new Array(len - 1);
  839. for (let i = 2; i < arr.length; i++) {
  840. newArr[i - 1] = arr[i];
  841. }
  842. newArr[0] = items;
  843. return this.doExchange(newArr);
  844. } else {
  845. return arr[0];
  846. }
  847. },
  848. },
  849. watch: {},
  850. };
  851. </script>
  852. <style lang="scss" scoped>
  853. .goodsCostAdd {
  854. .goodsCostAdd-title {
  855. border-top: 1px solid #ebeef5;
  856. span {
  857. height: 50px;
  858. line-height: 50px;
  859. font-family: "微软雅黑", sans-serif;
  860. font-weight: 400;
  861. font-style: normal;
  862. font-size: 16fpx;
  863. text-align: left;
  864. }
  865. }
  866. }
  867. </style>