add-good-form.vue 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561
  1. <template>
  2. <div class="page" :class="{ 'page--iphoneX': iphoneX }">
  3. <!-- 基本信息 -->
  4. <div class="form-card">
  5. <div class="head">
  6. <div class="tit">基本信息</div>
  7. <div class="switch"></div>
  8. </div>
  9. <section class="form-item">
  10. <div class="label">
  11. <span class="required">*</span>
  12. 店铺:
  13. </div>
  14. <div class="box">
  15. <!-- <picker
  16. :mode="'selector'"
  17. :range="storeList"
  18. :range-key="'name'"
  19. @change="pickerStoreChange"
  20. > -->
  21. <input
  22. type="text"
  23. v-model="baseInfo._storeName"
  24. :disabled="true"
  25. placeholder="请选择"
  26. />
  27. <!-- </picker> -->
  28. </div>
  29. </section>
  30. <section class="form-item">
  31. <div class="label">
  32. <span class="required">*</span>
  33. 商品条码:
  34. </div>
  35. <div class="box">
  36. <input
  37. type="text"
  38. v-model="baseInfo.barCode"
  39. @confirm="getBarCodeGood"
  40. />
  41. </div>
  42. <div class="tool code-tool">
  43. <span class="generate" @click="createBarcode()">生成</span>
  44. <my-image
  45. class="scan-img"
  46. @click="scan"
  47. src="/static/icon/scan.png"
  48. ></my-image>
  49. </div>
  50. </section>
  51. <section class="form-item">
  52. <div class="label">
  53. <span class="required">*</span>
  54. 商品标题:
  55. </div>
  56. <div class="box">
  57. <input type="text" v-model="baseInfo.name" />
  58. </div>
  59. </section>
  60. <section class="form-item">
  61. <div class="label">
  62. <span class="required hide">*</span>
  63. 初始销量:
  64. </div>
  65. <div class="box">
  66. <input type="number" v-model="baseInfo.initialSale" />
  67. </div>
  68. </section>
  69. <section class="form-item">
  70. <div class="label">
  71. <span class="required">*</span>
  72. 分类:
  73. </div>
  74. <div class="box">
  75. <div
  76. class="type-tip"
  77. v-if="cateList.length === 0"
  78. @touchstart.stop
  79. >
  80. 加载中...
  81. </div>
  82. <div
  83. class="type-item"
  84. v-for="(item, index) of typeList"
  85. :key="index"
  86. >
  87. <picker
  88. :mode="'multiSelector'"
  89. :range="cateList"
  90. :range-key="'name'"
  91. @columnchange="typeColumnchange"
  92. @change="pickerTypeChange($event, index)"
  93. >
  94. <input
  95. type="text"
  96. :disabled="true"
  97. :value="item.name"
  98. placeholder="请选择"
  99. />
  100. </picker>
  101. <span class="remove-text" @click="typeRemove(index,item)"
  102. >删除</span
  103. >
  104. </div>
  105. <div class="add-type" @click="addType">增加分类</div>
  106. </div>
  107. </section>
  108. </div>
  109. <!-- 规格 -->
  110. <div class="form-card sepc-card">
  111. <div class="head">
  112. <div class="tit">规格</div>
  113. <div class="switch"></div>
  114. </div>
  115. <section class="form-item">
  116. <div class="label">
  117. <span class="required">*</span>
  118. 规格数目:
  119. </div>
  120. <div class="box">
  121. <ul class="spec-list">
  122. <li
  123. :class="{ on: specIndex === 0 }"
  124. @click="specClick(0)"
  125. >
  126. 单品
  127. </li>
  128. <li
  129. :class="{ on: specIndex === 1 }"
  130. @click="specClick(1)"
  131. >
  132. 一种
  133. </li>
  134. <li
  135. :class="{ on: specIndex === 2 }"
  136. @click="specClick(2)"
  137. >
  138. 两种
  139. </li>
  140. <li
  141. :class="{ on: specIndex === 3 }"
  142. @click="specClick(3)"
  143. >
  144. 三种
  145. </li>
  146. </ul>
  147. </div>
  148. </section>
  149. <section
  150. class="form-item"
  151. v-if="specIndex === 1 || specIndex === 2 || specIndex === 3"
  152. >
  153. <div class="label">
  154. <span class="required">*</span>
  155. 规格一:
  156. </div>
  157. <div class="box">
  158. <div class="spec-view" @click="specEdit(1)">
  159. <span class="text" :class="{ dis: !specData1 }">{{
  160. specData1 | arrView
  161. }}</span>
  162. <my-image
  163. class="spec-link"
  164. src="/static/common/arrows_left.png"
  165. ></my-image>
  166. </div>
  167. </div>
  168. </section>
  169. <section
  170. class="form-item"
  171. v-if="specIndex === 2 || specIndex === 3"
  172. >
  173. <div class="label">
  174. <span class="required">*</span>
  175. 规格二:
  176. </div>
  177. <div class="box">
  178. <div class="spec-view" @click="specEdit(2)">
  179. <span class="text" :class="{ dis: !specData2 }">{{
  180. specData2 | arrView
  181. }}</span>
  182. <my-image
  183. class="spec-link"
  184. src="/static/common/arrows_left.png"
  185. ></my-image>
  186. </div>
  187. </div>
  188. </section>
  189. <section class="form-item" v-if="specIndex === 3">
  190. <div class="label">
  191. <span class="required">*</span>
  192. 规格三:
  193. </div>
  194. <div class="box">
  195. <div class="spec-view" @click="specEdit(3)">
  196. <span class="text" :class="{ dis: !specData3 }">{{
  197. specData3 | arrView
  198. }}</span>
  199. <my-image
  200. class="spec-link"
  201. src="/static/common/arrows_left.png"
  202. ></my-image>
  203. </div>
  204. </div>
  205. </section>
  206. <!-- 单品 -->
  207. <black v-if="specIndex === 0">
  208. <section class="form-item">
  209. <div class="label">
  210. <span class="required">*</span>
  211. 价格:
  212. </div>
  213. <div class="box">
  214. <input type="digit" v-model="baseInfo.price" />
  215. </div>
  216. <div class="tool">
  217. <span class="">元</span>
  218. </div>
  219. </section>
  220. <section class="form-item">
  221. <div class="label">
  222. <span class="required hide">*</span>
  223. 进货价:
  224. </div>
  225. <div class="box">
  226. <input type="digit" v-model="baseInfo.supplyPrice" />
  227. </div>
  228. <div class="tool">
  229. <span class="">元</span>
  230. </div>
  231. </section>
  232. <section class="form-item">
  233. <div class="label">
  234. <span class="required hide">*</span>
  235. 成本:
  236. </div>
  237. <div class="box">
  238. <input type="digit" v-model="baseInfo.cost" />
  239. </div>
  240. <div class="tool">
  241. <span class="">元</span>
  242. </div>
  243. </section>
  244. <section class="form-item">
  245. <div class="label">
  246. <span class="required hide">*</span>
  247. 划线价:
  248. </div>
  249. <div class="box">
  250. <input type="digit" v-model="baseInfo.tagPrice" />
  251. </div>
  252. <div class="tool">
  253. <span class="">元</span>
  254. </div>
  255. </section>
  256. <section class="form-item">
  257. <div class="label">
  258. <span class="required">*</span>
  259. 重量:
  260. </div>
  261. <div class="box">
  262. <input type="digit" v-model="baseInfo.weight" />
  263. </div>
  264. <div class="tool">
  265. <span class="">克</span>
  266. </div>
  267. </section>
  268. <section class="form-item">
  269. <div class="label">
  270. <span class="required">*</span>
  271. 库存:
  272. </div>
  273. <div class="box">
  274. <input type="number" v-model="baseInfo.stock" />
  275. </div>
  276. </section>
  277. <section class="form-item">
  278. <div class="label">
  279. <span class="required">*</span>
  280. sku编码:
  281. </div>
  282. <div class="box">
  283. <input type="digit" v-model="baseInfo.skuCode" />
  284. </div>
  285. <div class="tool code-tool">
  286. <span class="generate" @click="generateCode('skuCode')"
  287. >生成</span
  288. >
  289. </div>
  290. </section>
  291. </black>
  292. <black v-if="specIndex !== 0">
  293. <section
  294. class="spec-item"
  295. v-for="item of skuTableData"
  296. :key="item.key"
  297. >
  298. <div class="spec-head" @click="specForm(item)">
  299. <span class="name">组合一:{{ item.key }}</span>
  300. <my-image
  301. class="img"
  302. src="/static/common/arrows_left.png"
  303. ></my-image>
  304. </div>
  305. <div class="con">
  306. <div class="con-item">
  307. 价格<span class="required">*</span>:{{
  308. item.price
  309. }}
  310. </div>
  311. <div class="con-item">
  312. 库存<span class="required">*</span>:{{
  313. item.stock
  314. }}
  315. </div>
  316. </div>
  317. </section>
  318. </black>
  319. </div>
  320. <!-- 图片 -->
  321. <div class="form-card img-card">
  322. <section class="form-img-item">
  323. <div class="tit"><span class="required">*</span>封面图</div>
  324. <div class="list">
  325. <easy-upload
  326. :types="'image'"
  327. v-model="mainImage"
  328. :uploadCount="1"
  329. :openCilp="true"
  330. @change="minImgChange"
  331. ></easy-upload>
  332. </div>
  333. </section>
  334. <section class="form-img-item">
  335. <div class="tit"><span class="required">*</span>主图</div>
  336. <div class="list">
  337. <easy-upload
  338. :types="'image'"
  339. v-model="productForm.images"
  340. :uploadCount="100"
  341. @change="imagesChange"
  342. ></easy-upload>
  343. </div>
  344. </section>
  345. <section class="form-img-item">
  346. <div class="tit">
  347. <span class="required hide">*</span>详情图
  348. </div>
  349. <div class="list">
  350. <easy-upload
  351. :types="'image'"
  352. v-model="productForm.detailImages"
  353. :uploadCount="100"
  354. @change="detailImagesChange"
  355. ></easy-upload>
  356. </div>
  357. </section>
  358. </div>
  359. <!-- 其他 -->
  360. <div class="form-card">
  361. <div class="head">
  362. <div class="tit">其他信息</div>
  363. <div class="switch">
  364. <switch :checked="showOther" @change="otherChange"></switch>
  365. </div>
  366. </div>
  367. <block v-if="showOther">
  368. <section class="form-item">
  369. <div class="label">
  370. <span class="required">*</span>
  371. 商品编码:
  372. </div>
  373. <div class="box">
  374. <input type="text" v-model="baseInfo.code" />
  375. </div>
  376. <div class="tool code-tool">
  377. <span class="generate" @click="generateCode('code')"
  378. >生成</span
  379. >
  380. </div>
  381. </section>
  382. <section class="form-item">
  383. <div class="label">
  384. <span class="required">*</span>
  385. 模板详情:
  386. </div>
  387. <div class="box">
  388. <radio-group @change="tempChange">
  389. <label>
  390. <radio
  391. :value="true"
  392. :checked="productForm.useTemplate === true"
  393. />
  394. <text>是</text>
  395. </label>
  396. <label>
  397. <radio
  398. :value="false"
  399. :checked="productForm.useTemplate === false"
  400. />
  401. <text>否</text>
  402. </label>
  403. </radio-group>
  404. </div>
  405. </section>
  406. <section class="form-item">
  407. <div class="label">
  408. <span class="required hide">*</span>
  409. 商品描述:
  410. </div>
  411. <div class="box">
  412. <textarea
  413. v-model="baseInfo.description"
  414. :maxlength="1048"
  415. :auto-height="true"
  416. ></textarea>
  417. </div>
  418. </section>
  419. <section class="form-item">
  420. <div class="label">
  421. <span class="required">*</span>
  422. 出售方式:
  423. </div>
  424. <div class="box">
  425. <picker
  426. :mode="'selector'"
  427. :range="sellType"
  428. :range-key="'key'"
  429. @change="pickerStatusChange"
  430. >
  431. <input
  432. type="text"
  433. :disabled="true"
  434. v-model="baseInfo._statusName"
  435. placeholder="请选择"
  436. />
  437. </picker>
  438. </div>
  439. </section>
  440. <section class="form-item">
  441. <div class="label">
  442. <span class="required hide">*</span>
  443. 限购数:
  444. </div>
  445. <div class="box">
  446. <input
  447. type="number"
  448. v-model="baseInfo.maxBuyableCount"
  449. />
  450. </div>
  451. </section>
  452. <!-- <section class="form-item">
  453. <div class="label">
  454. <span class="required">*</span>
  455. 供应商:
  456. </div>
  457. <div class="box">
  458. <picker :mode="'selector'" :range="supplierList">
  459. <input
  460. type="text"
  461. :disabled="true"
  462. placeholder="请选择"
  463. />
  464. </picker>
  465. </div>
  466. </section> -->
  467. </block>
  468. </div>
  469. <div class="btns">
  470. <button type="button" class="btn" @click="save('back')">
  471. 保存返回
  472. </button>
  473. <button type="button" class="btn" @click="save('next')">
  474. 保存继续
  475. </button>
  476. </div>
  477. <div class="spec-set-modal"></div>
  478. </div>
  479. </template>
  480. <script>
  481. import MyImage from "../../components/image/index";
  482. import easyUpload from "../../components/easy-upload/easy-upload";
  483. export default {
  484. name: "",
  485. components: { MyImage, easyUpload },
  486. filters: {
  487. arrView(val) {
  488. let str = "";
  489. if (val) {
  490. str += val.name + ": ";
  491. for (let item of val.list) {
  492. str += item + ",";
  493. }
  494. str = str.replace(/,$/, "");
  495. }
  496. return str;
  497. },
  498. },
  499. // 数据
  500. data() {
  501. return {
  502. sellType: [
  503. { key: "立即出售", value: 1 },
  504. { key: "放入仓库", value: 0 },
  505. ], // 出售方式
  506. supplierList: ["测试供应商"], // 供应商
  507. storeList: [], // 店铺列表
  508. cateList: [], // 分类列表
  509. showOther: false, // 显示其他
  510. barCodeData: {}, // 条码扫描数据
  511. // 选中的分类列表 {id,name}
  512. typeList: [{}],
  513. // 基本信息表, _为前端临时用
  514. baseInfo: {
  515. storeId: "", // 店铺id
  516. _storeName: "", // 店铺名 前台显示用
  517. barCode: "", // 条码
  518. name: "", // 标题
  519. code: "", // 编码
  520. description: "", // 描述
  521. productTypeIds: [], // 分类
  522. price: 0, // 价格
  523. supplyPrice: 0, // 进货价
  524. cost: 0, // 成本
  525. tagPrice: 0, //划线价,单位为分
  526. weight: 0, //商品重量,单位为g
  527. stock: 0, // 库存
  528. skuCode: "", // sku编码
  529. initialSale: 0, // 初始销量
  530. status: 1, // 出售方式 0-放入仓库(即没有上架),1-立即出售(即上架)
  531. _statusName: "立即出售",
  532. maxBuyableCount: 0, // 限购数
  533. mainImage: "", // 封面图 300 *300
  534. },
  535. productForm: {
  536. useTemplate: true, // 是否使用模板
  537. images: [], // 主图
  538. detailImages: [], // 详情图
  539. },
  540. mainImage: [],
  541. // 规格
  542. specIndex: 0,
  543. specData1: null, // {name,list,columnName}
  544. specData2: null, // {name,list,columnName}
  545. specData3: null, // {name,list,columnName}
  546. curSpecIndex: 0, // 当前编辑specData
  547. skuTableData: [], // sku表格数据 详情见initSkuTable
  548. skuAttrs: {}, // sku后台保存用
  549. submitLoading:false,
  550. };
  551. },
  552. onLoad() {
  553. this.mainImage = [];
  554. // this.getStore();
  555. if (this.user.storeId) {
  556. this.baseInfo.storeId = this.user.storeId;
  557. this.baseInfo._storeName = this.user.storeName;
  558. }
  559. this.getClassify(this.baseInfo.storeId);
  560. },
  561. async onShow() {
  562. // 规格设置
  563. console.log("specData", this.$store.state.common.specData);
  564. if (this.$store.state.common.specData) {
  565. switch (this.curSpecIndex) {
  566. case 1:
  567. this.specData1 = this.$store.state.common.specData;
  568. break;
  569. case 2:
  570. this.specData2 = this.$store.state.common.specData;
  571. break;
  572. case 3:
  573. this.specData3 = this.$store.state.common.specData;
  574. break;
  575. }
  576. this.$store.commit("common/update", {
  577. specData: null,
  578. });
  579. this.initSkuTable();
  580. }
  581. // sku值
  582. console.log("skuItem", this.$store.state.common.skuItem);
  583. if (this.$store.state.common.skuItem) {
  584. let d = this.$store.state.common.skuItem;
  585. let arr = [];
  586. for (let item of this.skuTableData) {
  587. if (item.key === d.key) {
  588. arr.push(d);
  589. } else {
  590. arr.push(item);
  591. }
  592. }
  593. this.$store.commit("common/update", {
  594. skuItem: null,
  595. });
  596. this.skuTableData = arr;
  597. }
  598. },
  599. // 函数
  600. methods: {
  601. // 获取店铺
  602. getStore() {
  603. this.api.get("/Store/GetShopList").then((res) => {
  604. this.storeList = res.data;
  605. });
  606. },
  607. // 获取分类
  608. getClassify(storeId) {
  609. this.api
  610. .get("/Product/GetProductType", {
  611. storeId,
  612. })
  613. .then((res) => {
  614. let arr = [res.data];
  615. if (res.data[0].children) {
  616. arr.push(res.data[0].children);
  617. } else {
  618. arr.push([]);
  619. }
  620. this.cateList = arr;
  621. });
  622. },
  623. // 条码回车
  624. barCodeKeyup() {
  625. let self = this;
  626. if (self.baseInfo.barCode) {
  627. self.getBarCodeGood();
  628. }
  629. },
  630. // 条码扫描
  631. scan() {
  632. let self = this;
  633. wx.scanCode({
  634. scanType: "barCode",
  635. success(res) {
  636. console.log("扫码", res);
  637. if (res.scanType === "EAN_13") {
  638. let code = res.result;
  639. self.baseInfo.barCode = code;
  640. self.baseInfo.code = code;
  641. self.baseInfo.skuCode = code;
  642. uni.showLoading({
  643. title: "识别条码中...",
  644. });
  645. self.getBarCodeGood();
  646. } else {
  647. self.fn.showToast("扫码失败,不是有效条码,请重新扫描");
  648. }
  649. },
  650. fail(res) {
  651. self.fn.showToast("扫码失败");
  652. console.log("扫码失败:", res);
  653. },
  654. });
  655. },
  656. // 获取条码商品
  657. getBarCodeGood() {
  658. let self = this;
  659. this.api
  660. .get(
  661. "/Product/GetProductByBarcode",
  662. {
  663. barcode: self.baseInfo.barCode,
  664. },
  665. { pass: true }
  666. )
  667. .then((res) => {
  668. uni.hideLoading();
  669. if (res.code === "200203") {
  670. // 标准库存在
  671. self.barCodeData = res.data;
  672. self.pullBarCodeData();
  673. } else if (res.code === "200202") {
  674. // 其他门店存在
  675. self.barCodeData = res.data;
  676. self.fn
  677. .showModal({
  678. content: "该条码在其他门店存在数据,是否复制",
  679. })
  680. .then((res) => {
  681. if (res.confirm) {
  682. self.pullBarCodeData();
  683. }
  684. });
  685. } else if (res.code === "200201") {
  686. // 当前门店存在
  687. self.barCodeData = res.data;
  688. self.fn
  689. .showModal({
  690. content:
  691. "该条码在当前门店存在已有数据,是否去编辑",
  692. })
  693. .then((res) => {
  694. if (res.confirm) {
  695. self.router.replace({
  696. path: "/pages/manage/edit-good-form",
  697. query: {
  698. id: self.barCodeData.baseInfo.id,
  699. },
  700. });
  701. }
  702. });
  703. } else {
  704. self.fn.showToast("当前条码无已有商品数据");
  705. }
  706. });
  707. },
  708. // 赋值条码数据
  709. pullBarCodeData() {
  710. let data = this.barCodeData;
  711. this.baseInfo = {
  712. ...data.baseInfo,
  713. };
  714. if (data.baseInfo.mainImage) {
  715. this.mainImage = [data.baseInfo.mainImage];
  716. } else {
  717. this.mainImage = [];
  718. }
  719. this.productForm.useTemplate = data.useTemplate;
  720. this.productForm.images = data.images;
  721. this.productForm.detailImages = data.detailImages;
  722. // 店铺不变
  723. if (this.user.storeId) {
  724. this.baseInfo.storeId = this.user.storeId;
  725. this.baseInfo._storeName = this.user.storeName;
  726. }
  727. // 状态
  728. this.baseInfo.status = 1;
  729. this.baseInfo._statusName = "立即出售";
  730. // 价格处理
  731. this.baseInfo.price = this.baseInfo.price / 100;
  732. this.baseInfo.supplyPrice = this.baseInfo.supplyPrice / 100;
  733. this.baseInfo.cost = this.baseInfo.cost / 100;
  734. this.baseInfo.tagPrice = this.baseInfo.tagPrice / 100;
  735. //编码 sku吗 等于条码
  736. if (!this.baseInfo.code) {
  737. this.baseInfo.code = this.baseInfo.barCode;
  738. }
  739. if (!this.baseInfo.skuCode) {
  740. this.baseInfo.skuCode = this.baseInfo.barCode;
  741. }
  742. // 多规格还原
  743. this.specClick(0);
  744. this.specData1 = null;
  745. this.specData2 = null;
  746. this.specData3 = null;
  747. this.curSpecIndex = 0;
  748. this.skuTableData = [];
  749. this.skuAttrs = {};
  750. console.log(this.baseInfo);
  751. this.$forceUpdate();
  752. },
  753. // 生成编码
  754. generateCode(name) {
  755. // 后台编码生成方式
  756. const timestamp = Date.parse(new Date());
  757. this.baseInfo[name] = timestamp;
  758. },
  759. //随机生成13位条形码
  760. createBarcode() {
  761. const timestamp = Date.parse(new Date());
  762. this.baseInfo.barCode = timestamp;
  763. if (!this.baseInfo.code) {
  764. this.baseInfo.code = timestamp;
  765. }
  766. if (!this.baseInfo.skuCode) {
  767. this.baseInfo.skuCode = timestamp;
  768. }
  769. },
  770. // 其他面板切换
  771. otherChange(e) {
  772. this.showOther = !this.showOther;
  773. },
  774. // 模板详情切换
  775. tempChange(e) {
  776. let val = e.target.value;
  777. if (val === "true") {
  778. this.productForm.useTemplate = true;
  779. } else {
  780. this.productForm.useTemplate = false;
  781. }
  782. },
  783. // 主图
  784. minImgChange(e) {
  785. this.baseInfo.mainImage = e[0] || "";
  786. },
  787. // 封面图
  788. imagesChange(e) {
  789. this.productForm.images = e;
  790. },
  791. // 详情图
  792. detailImagesChange(e) {
  793. this.productForm.detailImages = e;
  794. },
  795. // picker变化
  796. // 店铺
  797. pickerStoreChange(e) {
  798. let index = e.target.value;
  799. let val = this.storeList[index];
  800. this.baseInfo.storeId = val.id;
  801. this.baseInfo._storeName = val.name;
  802. this.typeList = [{}];
  803. this.cateList = [];
  804. this.getClassify(val.id);
  805. },
  806. // 分类
  807. addType() {
  808. this.typeList.push({});
  809. },
  810. typeRemove(i) {
  811. this.typeList.splice(i, 1);
  812. this.typeList = [...this.typeList];
  813. let ids = [];
  814. for(let item of this.baseInfo.productTypeIds){
  815. if(item !== val.id){
  816. ids.push(item);
  817. }
  818. }
  819. this.baseInfo.productTypeIds = ids;
  820. },
  821. pickerTypeChange(e, typeListIndex) {
  822. let index1 = e.detail.value[0] || 0;
  823. let index2 = e.detail.value[1] || 0;
  824. let name = this.cateList[0][index1].name;
  825. let id = this.cateList[0][index1].id;
  826. if (this.cateList[1].length) {
  827. name += "/" + this.cateList[1][index2].name;
  828. id = this.cateList[1][index2].id;
  829. }
  830. this.typeList[typeListIndex].name = name;
  831. this.typeList[typeListIndex].id = id;
  832. this.typeList = [...this.typeList];
  833. let ids = [];
  834. for (let item of this.typeList) {
  835. if (item.id) {
  836. ids.push(item.id);
  837. }
  838. }
  839. this.baseInfo.productTypeIds = ids;
  840. this.cateList[1] = this.cateList[0][0].children || [];
  841. },
  842. typeColumnchange(e) {
  843. let column = e.detail.column;
  844. let index = e.detail.value;
  845. if (column === 0) {
  846. let val = this.cateList[0][index];
  847. if (val.children) {
  848. this.cateList[1] = val.children;
  849. } else {
  850. this.cateList[1] = [];
  851. }
  852. this.$forceUpdate();
  853. }
  854. },
  855. // 出售方式
  856. pickerStatusChange(e) {
  857. let index = e.target.value;
  858. let val = this.sellType[index];
  859. this.baseInfo.status = val.value;
  860. this.baseInfo._statusName = val.key;
  861. },
  862. // 保存
  863. save(type) {
  864. if(this.submitLoading){
  865. return;
  866. }
  867. let requiredFile1 = [
  868. {
  869. key: "storeId",
  870. msg: "请选择店铺",
  871. },
  872. {
  873. key: "name",
  874. msg: "请输入商品标题",
  875. },
  876. {
  877. key: "code",
  878. msg: "请输入商品编码",
  879. },
  880. {
  881. key: "productTypeIds",
  882. type: "array",
  883. msg: "请选择分类",
  884. },
  885. {
  886. key: "mainImage",
  887. msg: "请上传封面图",
  888. },
  889. ];
  890. let requiredSku = [
  891. {
  892. key: "price",
  893. msg: "请输入价格",
  894. },
  895. {
  896. key: "weight",
  897. type: "number",
  898. msg: "请输入重量",
  899. },
  900. {
  901. key: "stock",
  902. type: "number",
  903. msg: "请输入库存",
  904. },
  905. {
  906. key: "skuCode",
  907. msg: "请输入sku编码",
  908. },
  909. ];
  910. let requiredFile2 = [
  911. {
  912. key: "images",
  913. type: "array",
  914. msg: "请上传主图",
  915. },
  916. // {
  917. // key: "detailImages",
  918. // type: "array",
  919. // msg: "请上传详情图",
  920. // }
  921. ];
  922. for (let item of requiredFile1) {
  923. if (item.type === "array") {
  924. if (this.baseInfo[item.key].length === 0) {
  925. return this.fn.showToast(item.msg);
  926. }
  927. } else if (item.type === "number") {
  928. if (!this.baseInfo[item.key]) {
  929. if (String(this.baseInfo[item.key]) !== "0") {
  930. return this.fn.showToast(item.msg);
  931. }
  932. }
  933. } else {
  934. if (!this.baseInfo[item.key]) {
  935. return this.fn.showToast(item.msg);
  936. }
  937. }
  938. }
  939. for (let item of requiredFile2) {
  940. if (item.type === "array") {
  941. if (this.productForm[item.key].length === 0) {
  942. return this.fn.showToast(item.msg);
  943. }
  944. } else if (item.type === "number") {
  945. if (!this.productForm[item.key]) {
  946. if (String(this.productForm[item.key]) !== "0") {
  947. return this.fn.showToast(item.msg);
  948. }
  949. }
  950. } else {
  951. if (!this.productForm[item.key]) {
  952. return this.fn.showToast(item.msg);
  953. }
  954. }
  955. }
  956. // 规格判断
  957. let skuInfo = "";
  958. if (this.specIndex === 0) {
  959. for (let item of requiredSku) {
  960. if (item.type === "array") {
  961. if (this.baseInfo[item.key].length === 0) {
  962. return this.fn.showToast(item.msg);
  963. }
  964. } else if (item.type === "number") {
  965. if (!this.baseInfo[item.key]) {
  966. if (String(this.baseInfo[item.key]) !== "0") {
  967. return this.fn.showToast(item.msg);
  968. }
  969. }
  970. } else {
  971. if (!this.baseInfo[item.key]) {
  972. return this.fn.showToast(item.msg);
  973. }
  974. }
  975. }
  976. } else {
  977. if (this.skuTableData.length === 0) {
  978. return this.fn.showToast("请先选择规格");
  979. }
  980. // 价格转换
  981. let arr = JSON.parse(JSON.stringify(this.skuTableData));
  982. for (let item of arr) {
  983. item.price = parseInt(Number(item.price) * 100);
  984. item.supplyPrice = parseInt(Number(item.supplyPrice) * 100);
  985. item.cost = parseInt(Number(item.cost) * 100);
  986. item.tagPrice = parseInt(Number(item.tagPrice) * 100);
  987. }
  988. skuInfo = JSON.stringify({
  989. skuAttrs: this.skuAttrs,
  990. skus: arr,
  991. });
  992. }
  993. let sendData = {
  994. baseInfo: {
  995. ...this.baseInfo,
  996. },
  997. ...this.productForm,
  998. hotSaleRecommendIds: [],
  999. businessRecommendIds: [],
  1000. participated: false,
  1001. video: "",
  1002. skuInfo: skuInfo,
  1003. };
  1004. //规格判断
  1005. if (this.specIndex === 0) {
  1006. sendData.baseInfo.price = parseInt(
  1007. Number(sendData.baseInfo.price) * 100
  1008. );
  1009. sendData.baseInfo.supplyPrice = parseInt(
  1010. Number(sendData.baseInfo.supplyPrice) * 100
  1011. );
  1012. sendData.baseInfo.cost = parseInt(
  1013. Number(sendData.baseInfo.cost) * 100
  1014. );
  1015. sendData.baseInfo.tagPrice = parseInt(
  1016. Number(sendData.baseInfo.tagPrice) * 100
  1017. );
  1018. }
  1019. this.submitLoading = true;
  1020. this.api.post("/product/SaveEdit", sendData).then((res) => {
  1021. this.submitLoading = false;
  1022. if (res.success) {
  1023. if (type === "next") {
  1024. this.fn.showToast("保存成功");
  1025. this.reset();
  1026. } else {
  1027. this.fn.showToast("保存成功");
  1028. this.router.back();
  1029. }
  1030. } else {
  1031. this.fn.showModal({
  1032. content: res.message,
  1033. showCancel: false,
  1034. });
  1035. }
  1036. });
  1037. },
  1038. // 重置
  1039. reset() {
  1040. this.typeList = [{}];
  1041. this.baseInfo = {
  1042. storeId: "", // 店铺id
  1043. _storeName: "", // 店铺名 前台显示用
  1044. barCode: "", // 条码
  1045. name: "", // 标题
  1046. code: "", // 编码
  1047. description: "", // 描述
  1048. productTypeIds: [], // 分类
  1049. price: 0, // 价格
  1050. supplyPrice: 0, // 进货价
  1051. cost: 0, // 成本
  1052. tagPrice: 0, //划线价,单位为分
  1053. weight: 0, //商品重量,单位为g
  1054. stock: 0, // 库存
  1055. skuCode: "", // sku编码
  1056. initialSale: 0, // 初始销量
  1057. status: 1, // 出售方式 0-放入仓库(即没有上架),1-立即出售(即上架)
  1058. _statusName: "立即出售",
  1059. maxBuyableCount: 0, // 限购数
  1060. mainImage: "", // 主图 300 *300
  1061. };
  1062. this.productForm = {
  1063. useTemplate: true, // 是否使用模板
  1064. images: [], // 封面图
  1065. detailImages: [], // 详情图
  1066. };
  1067. this.mainImage = [];
  1068. if (this.user.storeId) {
  1069. this.baseInfo.storeId = this.user.storeId;
  1070. this.baseInfo._storeName = this.user.storeName;
  1071. }
  1072. this.specIndex = 0;
  1073. this.specData1 = null;
  1074. this.specData2 = null;
  1075. this.specData3 = null;
  1076. this.curSpecIndex = 0;
  1077. this.skuTableData = [];
  1078. this.skuAttrs = {};
  1079. uni.pageScrollTo({
  1080. scrollTop: 0,
  1081. });
  1082. this.$forceUpdate();
  1083. },
  1084. // 规格点击
  1085. specClick(index) {
  1086. this.specIndex = index;
  1087. switch (index) {
  1088. case 0:
  1089. this.specData1 = null;
  1090. this.specData2 = null;
  1091. this.specData3 = null;
  1092. this.skuTableData = [];
  1093. this.skuAttrs = {};
  1094. this.curSpecIndex = 0;
  1095. break;
  1096. case 1:
  1097. this.specData2 = null;
  1098. this.specData3 = null;
  1099. break;
  1100. case 2:
  1101. this.specData3 = null;
  1102. break;
  1103. }
  1104. if (index !== 0) {
  1105. this.baseInfo.price = 0;
  1106. this.baseInfo.supplyPrice = 0;
  1107. this.baseInfo.cost = 0;
  1108. this.baseInfo.tagPrice = 0;
  1109. this.baseInfo.weight = 0;
  1110. this.baseInfo.stock = 0;
  1111. this.baseInfo.skuCode = "";
  1112. }
  1113. },
  1114. // 规格设置
  1115. specEdit(index) {
  1116. switch (index) {
  1117. case 1:
  1118. this.$store.commit("common/update", {
  1119. specData: this.specData1,
  1120. });
  1121. break;
  1122. case 2:
  1123. this.$store.commit("common/update", {
  1124. specData: this.specData2,
  1125. });
  1126. break;
  1127. case 3:
  1128. this.$store.commit("common/update", {
  1129. specData: this.specData3,
  1130. });
  1131. break;
  1132. }
  1133. this.curSpecIndex = index;
  1134. this.router.push("/pages/manage/spec-edit");
  1135. },
  1136. // 规格表单
  1137. specForm(item) {
  1138. console.log(item);
  1139. this.$store.commit("common/update", {
  1140. skuItem: item,
  1141. });
  1142. this.router.push("/pages/manage/spec-item-form");
  1143. },
  1144. // 生成skuTable
  1145. initSkuTable() {
  1146. let arr = [];
  1147. let skuAttrs = {};
  1148. if (this.specData1) {
  1149. for (let item of this.specData1.list) {
  1150. if (this.specData2) {
  1151. for (let item2 of this.specData2.list) {
  1152. if (this.specData3) {
  1153. for (let item3 of this.specData3.list) {
  1154. let tabItem = this.initSkuItem({
  1155. key: item + "-" + item2 + "-" + item3,
  1156. [this.specData1.columnName]: item,
  1157. [this.specData2.columnName]: item2,
  1158. [this.specData3.columnName]: item3,
  1159. });
  1160. skuAttrs[
  1161. this.specData1.columnName
  1162. ] = this.specData1.name;
  1163. skuAttrs[
  1164. this.specData2.columnName
  1165. ] = this.specData2.name;
  1166. skuAttrs[
  1167. this.specData3.columnName
  1168. ] = this.specData3.name;
  1169. arr.push(tabItem);
  1170. }
  1171. } else {
  1172. let tabItem = this.initSkuItem({
  1173. key: item + "-" + item2,
  1174. [this.specData1.columnName]: item,
  1175. [this.specData2.columnName]: item2,
  1176. });
  1177. skuAttrs[
  1178. this.specData1.columnName
  1179. ] = this.specData1.name;
  1180. skuAttrs[
  1181. this.specData2.columnName
  1182. ] = this.specData2.name;
  1183. arr.push(tabItem);
  1184. }
  1185. }
  1186. } else {
  1187. let tabItem = this.initSkuItem({
  1188. key: item,
  1189. [this.specData1.columnName]: item,
  1190. });
  1191. skuAttrs[
  1192. this.specData1.columnName
  1193. ] = this.specData1.name;
  1194. arr.push(tabItem);
  1195. }
  1196. }
  1197. }
  1198. let arr2 = [];
  1199. for (let item of arr) {
  1200. let f = false;
  1201. for (let skuItem of this.skuTableData) {
  1202. if (item.key === skuItem.key) {
  1203. arr2.push(skuItem);
  1204. f = true;
  1205. }
  1206. }
  1207. if (!f) {
  1208. arr2.push(item);
  1209. }
  1210. }
  1211. this.skuTableData = arr2;
  1212. this.skuAttrs = skuAttrs;
  1213. },
  1214. // 生成sku某一项
  1215. initSkuItem(obj = {}) {
  1216. //
  1217. //this.fn.guid()
  1218. return {
  1219. code: String(Date.now()), // 编码
  1220. cost: 0, // 成本
  1221. img:
  1222. "https://oss.ixiaokejia.com/images/common/20201021094129.png", // sku图
  1223. key: "", //关键字
  1224. order: 0, // 顺序
  1225. price: 0,
  1226. skuId: "",
  1227. stock: 0, // 库存
  1228. supplyPrice: 0, // 进货价
  1229. tagPrice: 0, // 标签价
  1230. weight: 0, // 重量
  1231. ...obj,
  1232. };
  1233. },
  1234. },
  1235. // 数据计算
  1236. computed: {
  1237. user() {
  1238. return this.$store.state.user.user;
  1239. },
  1240. },
  1241. // 数据监听
  1242. watch: {},
  1243. };
  1244. </script>
  1245. <style lang="scss" scoped>
  1246. .page {
  1247. padding-bottom: px(180);
  1248. }
  1249. .form-card {
  1250. background-color: #fff;
  1251. padding: 0 px(30);
  1252. & ~ .form-card {
  1253. margin-top: px(25);
  1254. }
  1255. .head {
  1256. display: flex;
  1257. align-items: center;
  1258. justify-content: space-between;
  1259. height: px(140);
  1260. background-color: #fbfbfb;
  1261. border-bottom: 1px solid #f1f1f1;
  1262. border-top: 1px solid #f1f1f1;
  1263. font-size: px(48);
  1264. }
  1265. }
  1266. .required {
  1267. color: #f00;
  1268. font-size: px(44);
  1269. &.hide {
  1270. visibility: hidden;
  1271. }
  1272. }
  1273. .form-item {
  1274. display: flex;
  1275. min-height: px(140);
  1276. padding: px(30) 0;
  1277. box-sizing: border-box;
  1278. align-items: center;
  1279. font-size: px(44);
  1280. & ~ .form-item {
  1281. border-top: 1px solid #f1f1f1;
  1282. }
  1283. .label {
  1284. width: px(240);
  1285. flex-shrink: 0;
  1286. color: #999;
  1287. margin-right: px(10);
  1288. }
  1289. .box {
  1290. width: 100%;
  1291. position: relative;
  1292. input {
  1293. width: 100%;
  1294. }
  1295. }
  1296. .tool {
  1297. flex-shrink: 0;
  1298. color: #999;
  1299. margin-left: px(10);
  1300. }
  1301. textarea,
  1302. input {
  1303. max-width: 100%;
  1304. width: 100%;
  1305. }
  1306. }
  1307. .code-tool {
  1308. display: flex;
  1309. justify-content: flex-start;
  1310. align-items: center;
  1311. .scan-img {
  1312. flex-shrink: 0;
  1313. width: px(80);
  1314. height: px(80);
  1315. /deep/ img {
  1316. width: px(80);
  1317. height: px(80);
  1318. }
  1319. }
  1320. .generate {
  1321. color: #0097d1;
  1322. margin-right: px(30);
  1323. flex-shrink: 0;
  1324. }
  1325. }
  1326. radio-group {
  1327. label ~ label {
  1328. margin-left: px(40);
  1329. }
  1330. }
  1331. .img-card {
  1332. padding-top: px(30);
  1333. padding-bottom: px(30);
  1334. }
  1335. .form-img-item {
  1336. .tit {
  1337. padding: px(30);
  1338. font-size: px(44);
  1339. }
  1340. }
  1341. .btns {
  1342. display: flex;
  1343. justify-content: space-between;
  1344. align-items: center;
  1345. position: fixed;
  1346. bottom: 0;
  1347. left: 0;
  1348. right: 0;
  1349. z-index: 100;
  1350. }
  1351. button::after {
  1352. border: none;
  1353. display: none;
  1354. }
  1355. button::before {
  1356. border: none;
  1357. display: none;
  1358. }
  1359. .page--iphoneX {
  1360. .btns {
  1361. padding-bottom: px(30);
  1362. background-color: rgb(0, 188, 38);
  1363. }
  1364. }
  1365. .btn {
  1366. background-color: rgb(0, 188, 38);
  1367. color: #fff;
  1368. border-radius: 0;
  1369. font-size: px(50);
  1370. border: none;
  1371. width: 50%;
  1372. & ~ .btn {
  1373. border-left: 1px solid #999;
  1374. }
  1375. }
  1376. .add-type {
  1377. width: 100%;
  1378. font-size: px(40);
  1379. color: #0097d1;
  1380. padding: px(20) 0;
  1381. }
  1382. .type-item {
  1383. padding: px(20) 0;
  1384. display: flex;
  1385. justify-content: space-between;
  1386. align-items: center;
  1387. border-bottom: 1px solid #f1f1f1;
  1388. .remove-text {
  1389. color: red;
  1390. flex-shrink: 0;
  1391. margin-left: px(10);
  1392. padding-left: px(30);
  1393. }
  1394. }
  1395. .type-tip {
  1396. position: absolute;
  1397. top: 0;
  1398. left: 0;
  1399. width: 100%;
  1400. height: 100%;
  1401. z-index: 100;
  1402. background-color: rgba(0, 0, 0, 0.3);
  1403. color: #fff;
  1404. font-size: px(44);
  1405. display: flex;
  1406. justify-content: center;
  1407. align-items: center;
  1408. pointer-events: none;
  1409. }
  1410. .min-radio {
  1411. transform: scale(0.8);
  1412. }
  1413. .spec-list {
  1414. width: 100%;
  1415. display: flex;
  1416. justify-content: space-between;
  1417. align-items: center;
  1418. li {
  1419. width: 25%;
  1420. font-size: px(40);
  1421. height: px(100);
  1422. border: 1px solid #f1f1f1;
  1423. display: flex;
  1424. align-items: center;
  1425. justify-content: center;
  1426. color: #999;
  1427. & ~ li {
  1428. // border-left: none;
  1429. }
  1430. &.on {
  1431. color: rgb(0, 188, 38);
  1432. border-color: rgb(0, 188, 38);
  1433. }
  1434. }
  1435. }
  1436. .spec-view {
  1437. display: flex;
  1438. justify-content: flex-end;
  1439. align-items: center;
  1440. .text {
  1441. font-size: px(40);
  1442. &.dis {
  1443. color: #999;
  1444. }
  1445. }
  1446. .spec-link {
  1447. width: px(50);
  1448. height: px(50);
  1449. margin-left: px(20);
  1450. transform: rotate(180deg);
  1451. /deep/ img {
  1452. width: px(50);
  1453. height: px(50);
  1454. }
  1455. }
  1456. }
  1457. .spec-item {
  1458. border: 1px solid #f1f1f1;
  1459. margin-top: px(30);
  1460. .spec-head {
  1461. display: flex;
  1462. justify-content: space-between;
  1463. align-items: center;
  1464. background-color: #f9f9f9;
  1465. border-bottom: 1px solid #f1f1f1;
  1466. padding: px(0) px(30);
  1467. height: px(120);
  1468. line-height: px(100);
  1469. font-size: px(44);
  1470. .img {
  1471. width: px(40);
  1472. height: px(40);
  1473. transform: rotate(180deg);
  1474. /deep/ img {
  1475. width: px(40);
  1476. height: px(40);
  1477. }
  1478. }
  1479. }
  1480. .con {
  1481. display: flex;
  1482. justify-content: space-between;
  1483. align-items: center;
  1484. padding: px(30) px(30);
  1485. }
  1486. .con-item {
  1487. width: 50%;
  1488. font-size: px(44);
  1489. color: #333;
  1490. }
  1491. }
  1492. .sepc-card {
  1493. padding-bottom: px(30);
  1494. }
  1495. </style>