baseForm.vue 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530
  1. <template>
  2. <el-form
  3. :model="ruleForm"
  4. status-icon
  5. :rules="rules"
  6. ref="ruleForm"
  7. :size="'mini'"
  8. v-loading="loading"
  9. label-width="85px"
  10. class="demo-ruleForm"
  11. >
  12. <el-row>
  13. <el-col :span="24" style="padding: 12px 16px 12px 16px; text-align: right">
  14. <span>
  15. 预计成本合计:<span>
  16. {{ newPrice }}
  17. </span></span>
  18. <span class="fl" style="height: 28px; font-size: 16px; line-height: 28px">{{
  19. title
  20. }}</span>
  21. <el-button :size="'mini'" @click="$emit('cancel')">取 消 </el-button>
  22. <el-button
  23. :size="'mini'"
  24. type="primary"
  25. v-if="type !== 'view'"
  26. @click="submitForm"
  27. >保 存
  28. </el-button>
  29. </el-col>
  30. <el-col :span="16">
  31. <el-form-item label="供应商" prop="supplierNo">
  32. <search-supplier
  33. :value="ruleForm.supplierNo"
  34. :placeholder="'供应商'"
  35. :size="'mini'"
  36. :names="supplierNo_name"
  37. disabled
  38. :isDetail="true"
  39. @searchChange="supplierNosearchChange"
  40. />
  41. </el-form-item>
  42. </el-col>
  43. <el-col :span="8">
  44. <el-form-item label="品牌" prop="brandid" label-width="60px">
  45. <search-brand
  46. :value="ruleForm.brandid"
  47. :size="'mini'"
  48. :disabled="false"
  49. :isDetail="true"
  50. :names="brand_name"
  51. :placeholder="'品牌'"
  52. @searchChange="brandidsearchChange"
  53. />
  54. </el-form-item>
  55. </el-col>
  56. <el-col :span="5">
  57. <el-form-item label="有效期" prop="expire_day">
  58. <digital-input
  59. :values="ruleForm.expire_day"
  60. :placeholder="'有效期'"
  61. :min="1"
  62. :max="100000000000"
  63. :position="'right'"
  64. :precision="0"
  65. :size="'mini'"
  66. :disabled="type === 'view'"
  67. :controls="false"
  68. :append="'天'"
  69. @reschange="number_change($event, 'expire_day')"
  70. />
  71. </el-form-item>
  72. </el-col>
  73. <el-col :span="5">
  74. <el-form-item label="物流时间" prop="delivery_day">
  75. <digital-input
  76. :values="ruleForm.delivery_day"
  77. :placeholder="'物流时间'"
  78. :min="0"
  79. :max="100000000000"
  80. :position="'right'"
  81. :precision="0"
  82. :size="'mini'"
  83. :disabled="type === 'view'"
  84. :controls="false"
  85. :append="'天'"
  86. @reschange="number_change($event, 'delivery_day')"
  87. />
  88. </el-form-item>
  89. </el-col>
  90. <el-col :span="5">
  91. <el-form-item label="生产工期" prop="work_day">
  92. <digital-input
  93. :values="ruleForm.work_day"
  94. :placeholder="'生产工期'"
  95. :min="0"
  96. :max="100000000000"
  97. :disabled="type === 'view'"
  98. :position="'right'"
  99. :precision="0"
  100. :size="'mini'"
  101. :controls="false"
  102. :append="'天'"
  103. @reschange="number_change($event, 'work_day')"
  104. />
  105. </el-form-item>
  106. </el-col>
  107. <el-col :span="5">
  108. <el-form-item label="税点" prop="tax" label-width="60px">
  109. <search-tax
  110. :value="ruleForm.tax"
  111. :size="'mini'"
  112. :disabled="type === 'view'"
  113. :isDetail="type !== 'add'"
  114. :placeholder="'税点'"
  115. @searchChange="taxsearchChange"
  116. />
  117. </el-form-item>
  118. </el-col>
  119. <el-col :span="4">
  120. <el-form-item label="单位" prop="unit_id" label-width="60px">
  121. <search-unit
  122. :value="ruleForm.unit_id"
  123. :size="'mini'"
  124. :isDetail="true"
  125. :names="unit_name"
  126. :disabled="false"
  127. :placeholder="'单位'"
  128. @searchChange="unitsearchChange"
  129. />
  130. </el-form-item>
  131. </el-col>
  132. <el-col :span="24">
  133. <el-row>
  134. <el-col :span="12">
  135. <el-form-item label="分类" prop="cat_id">
  136. <search-sort
  137. :value="ruleForm.cat_id"
  138. :placeholder="'分类'"
  139. :size="'mini'"
  140. :names="cat_id_name"
  141. :disabled="false"
  142. :isDetail="true"
  143. @searchChange="cat_id_change"
  144. />
  145. </el-form-item>
  146. <el-form-item label="商品名称" prop="pname">
  147. <el-input
  148. placeholder="商品名称"
  149. maxlength="100"
  150. :disabled="type === 'view'"
  151. v-model="ruleForm.pname"
  152. ></el-input>
  153. </el-form-item>
  154. <el-form-item label="产地" prop="origin_place">
  155. <search-area
  156. :value="areaInfo.origin_place.code"
  157. :disabled="type === 'view' || type === 'editCoin'"
  158. :is-detail="true"
  159. size="mini"
  160. :names="areaInfo.origin_place.label"
  161. placeholder="产地"
  162. :level="3"
  163. @searchChange="areaChange($event, 'origin_place')"
  164. />
  165. </el-form-item>
  166. <el-form-item label="发货地" prop="delivery_place">
  167. <search-area
  168. :value="areaInfo.delivery_place.code"
  169. :is-detail="true"
  170. size="mini"
  171. :disabled="type === 'view' || type === 'editCoin'"
  172. :names="areaInfo.delivery_place.label"
  173. placeholder="发货地"
  174. :level="3"
  175. @searchChange="areaChange($event, 'delivery_place')"
  176. />
  177. </el-form-item>
  178. </el-col>
  179. <el-col :span="12" style="padding: 0 0 0 15px">
  180. <el-table
  181. :data="spec_tableData"
  182. :size="'mini'"
  183. border
  184. style="width: 100%"
  185. max-height="175px"
  186. >
  187. <el-table-column prop="spec_name" label="规格类型" />
  188. <el-table-column prop="spec_value_name" label="规格值" />
  189. <el-table-column fixed="right" width="88px" v-if="type !== 'view'">
  190. <template slot="header" slot-scope="scope">
  191. <span>操作</span>
  192. <el-tooltip
  193. class="item"
  194. effect="dark"
  195. content="添加规格类型"
  196. placement="top"
  197. >
  198. <i
  199. class="el-icon-circle-plus-outline fr"
  200. style="font-size: 18px; margin-top: 2px"
  201. @click="openEdit('-1', {})"
  202. />
  203. </el-tooltip>
  204. </template>
  205. <template slot-scope="scope">
  206. <el-tooltip effect="dark" content="修改" placement="top">
  207. <i
  208. class="el-icon-edit tb-icon"
  209. @click="openEdit(scope.$index, scope.row)"
  210. ></i>
  211. </el-tooltip>
  212. <el-tooltip
  213. effect="dark"
  214. v-if="!scope.row.isMust"
  215. content="删除"
  216. placement="top"
  217. >
  218. <i
  219. class="el-icon-delete tb-icon"
  220. @click="openDelete(scope.$index)"
  221. ></i>
  222. </el-tooltip>
  223. </template>
  224. </el-table-column>
  225. </el-table>
  226. <!-- 弹窗 新增/修改 -->
  227. <base-form-add-edit
  228. :index="modelIndex"
  229. :show-model="showOtherModel"
  230. :sitem="modelSitem"
  231. @refresh="refreshEdit"
  232. @cancel="showOtherModel = false"
  233. />
  234. </el-col>
  235. </el-row>
  236. </el-col>
  237. <el-col :span="6">
  238. <el-form-item label="总重量" prop="weight">
  239. <digital-input
  240. :values="ruleForm.weight"
  241. :placeholder="'总重量'"
  242. :min="0"
  243. :max="100000000000"
  244. :position="'right'"
  245. :precision="3"
  246. :disabled="type === 'view'"
  247. :size="'mini'"
  248. :controls="false"
  249. :append="'g'"
  250. @reschange="number_change($event, 'weight')"
  251. />
  252. </el-form-item>
  253. </el-col>
  254. <el-col :span="6">
  255. <el-form-item label="供货区域" prop="supply_area">
  256. <el-select
  257. v-model="ruleForm.supply_area"
  258. filterable
  259. :disabled="type === 'view'"
  260. clearable
  261. style="width: 100%"
  262. placeholder="供货区域"
  263. >
  264. <el-option
  265. v-for="group in options6"
  266. :key="group.id"
  267. :label="group.name"
  268. :value="group.id"
  269. />
  270. </el-select>
  271. </el-form-item>
  272. </el-col>
  273. <el-col :span="6">
  274. <el-form-item label="付款方式" prop="pay_way" class="clear">
  275. <el-select
  276. v-model="ruleForm.pay_way"
  277. filterable
  278. :disabled="type === 'view'"
  279. clearable
  280. style="width: 100%"
  281. placeholder="付款方式"
  282. >
  283. <el-option
  284. v-for="group in options10"
  285. :key="group.id"
  286. :label="group.name"
  287. :value="group.id"
  288. />
  289. </el-select>
  290. </el-form-item>
  291. </el-col>
  292. <el-col :span="6">
  293. <el-form-item label="发货方式" prop="send_way" class="clear">
  294. <el-select
  295. v-model="ruleForm.send_way"
  296. filterable
  297. clearable
  298. :disabled="type === 'view'"
  299. style="width: 100%"
  300. placeholder="发货方式"
  301. >
  302. <el-option
  303. v-for="group in options11"
  304. :key="group.id"
  305. :label="group.name"
  306. :value="group.id"
  307. />
  308. </el-select>
  309. </el-form-item>
  310. </el-col>
  311. <el-col :span="6">
  312. <el-form-item label="证书费" prop="cert_fee">
  313. <digital-input
  314. :values="ruleForm.cert_fee"
  315. :placeholder="'证书费'"
  316. :min="0"
  317. :disabled="type === 'view'"
  318. :max="100000000000"
  319. :position="'right'"
  320. :precision="2"
  321. :size="'mini'"
  322. :controls="false"
  323. :append="'元'"
  324. @reschange="number_change($event, 'cert_fee')"
  325. />
  326. </el-form-item>
  327. </el-col>
  328. <el-col :span="6">
  329. <el-form-item label="包装费" prop="pakge_fee">
  330. <digital-input
  331. :values="ruleForm.pakge_fee"
  332. :placeholder="'包装费'"
  333. :min="0"
  334. :disabled="type === 'view'"
  335. :max="100000000000"
  336. :position="'right'"
  337. :precision="2"
  338. :size="'mini'"
  339. :controls="false"
  340. :append="'元'"
  341. @reschange="number_change($event, 'pakge_fee')"
  342. />
  343. </el-form-item>
  344. </el-col>
  345. <el-col :span="6">
  346. <el-form-item label="工艺费" prop="cost_fee">
  347. <digital-input
  348. :values="ruleForm.cost_fee"
  349. :placeholder="'工艺费'"
  350. :min="0"
  351. :disabled="type === 'view'"
  352. :max="100000000000"
  353. :position="'right'"
  354. :precision="2"
  355. :size="'mini'"
  356. :controls="false"
  357. :append="'元'"
  358. @reschange="number_change($event, 'cost_fee')"
  359. />
  360. </el-form-item>
  361. </el-col>
  362. <el-col :span="6">
  363. <el-form-item label="加标费" prop="mark_fee">
  364. <digital-input
  365. :values="ruleForm.mark_fee"
  366. :placeholder="'加标费'"
  367. :min="0"
  368. :disabled="type === 'view'"
  369. :max="100000000000"
  370. :position="'right'"
  371. :precision="2"
  372. :size="'mini'"
  373. :controls="false"
  374. :append="'元'"
  375. @reschange="number_change($event, 'mark_fee')"
  376. />
  377. </el-form-item>
  378. </el-col>
  379. <el-col :span="6">
  380. <el-form-item label="打样费" prop="demo_fee">
  381. <digital-input
  382. :values="ruleForm.demo_fee"
  383. :placeholder="'打样费'"
  384. :min="0"
  385. :disabled="type === 'view'"
  386. :max="100000000000"
  387. :position="'right'"
  388. :precision="2"
  389. :size="'mini'"
  390. :controls="false"
  391. :append="'元'"
  392. @reschange="number_change($event, 'demo_fee')"
  393. />
  394. </el-form-item>
  395. </el-col>
  396. <el-col :span="6">
  397. <el-form-item label="开模费" prop="open_fee">
  398. <digital-input
  399. :values="ruleForm.open_fee"
  400. :placeholder="'开模费'"
  401. :min="0"
  402. :disabled="type === 'view'"
  403. :max="100000000000"
  404. :position="'right'"
  405. :precision="2"
  406. :size="'mini'"
  407. :controls="false"
  408. :append="'元'"
  409. @reschange="number_change($event, 'open_fee')"
  410. />
  411. </el-form-item>
  412. </el-col>
  413. <el-col :span="6">
  414. <el-form-item label="物流费" prop="delivery_fee">
  415. <digital-input
  416. :values="ruleForm.delivery_fee"
  417. :placeholder="'物流费'"
  418. :min="0"
  419. :disabled="type === 'view'"
  420. :max="100000000000"
  421. :position="'right'"
  422. :precision="2"
  423. :size="'mini'"
  424. :controls="false"
  425. :append="'元'"
  426. @reschange="number_change($event, 'delivery_fee')"
  427. />
  428. </el-form-item>
  429. </el-col>
  430. <el-col :span="6">
  431. <el-form-item label="裸价" prop="nake_fee" class="clear">
  432. <digital-input
  433. :values="ruleForm.nake_fee"
  434. :placeholder="'裸价'"
  435. :min="0"
  436. :disabled="type === 'view' || is_noble"
  437. :max="100000000000"
  438. :position="'right'"
  439. :precision="2"
  440. :size="'mini'"
  441. :controls="false"
  442. :append="'元'"
  443. @reschange="number_change($event, 'nake_fee')"
  444. />
  445. </el-form-item>
  446. </el-col>
  447. <el-col :span="24" v-show="pid + '' === '6'">
  448. <el-col :span="6">
  449. <el-form-item label="金属重量" prop="noble_weight">
  450. <digital-input
  451. :values="ruleForm.noble_weight"
  452. :placeholder="'金属重量'"
  453. :min="0"
  454. :disabled="type === 'view'"
  455. :max="100000000000"
  456. :position="'right'"
  457. :precision="3"
  458. :size="'mini'"
  459. :controls="false"
  460. :append="'g'"
  461. @reschange="number_change($event, 'noble_weight')"
  462. />
  463. </el-form-item>
  464. </el-col>
  465. <el-col :span="6">
  466. <el-form-item label="金属种类" prop="metal_id">
  467. <search-metal-kind
  468. :value="ruleForm.metal_id"
  469. :size="'mini'"
  470. :disabled="type === 'view'"
  471. :isDetail="true"
  472. :placeholder="'金属种类'"
  473. @searchChange="metal_idsearchChange"
  474. />
  475. </el-form-item>
  476. </el-col>
  477. <el-col :span="6">
  478. <el-form-item label="启用金价" prop="is_gold_price">
  479. <el-select
  480. v-model="ruleForm.is_gold_price"
  481. filterable
  482. clearable
  483. :disabled="type === 'view'"
  484. style="width: 100%"
  485. placeholder="启用金价"
  486. @change="is_gold_price_change"
  487. >
  488. <el-option
  489. v-for="group in options5"
  490. :key="group.id"
  491. :label="group.name"
  492. :value="group.id"
  493. />
  494. </el-select>
  495. </el-form-item>
  496. </el-col>
  497. <el-col :span="6">
  498. <el-form-item label="有无工差" prop="is_diff">
  499. <el-select
  500. v-model="ruleForm.is_diff"
  501. filterable
  502. clearable
  503. :disabled="type === 'view'"
  504. style="width: 100%"
  505. placeholder="有无工差"
  506. >
  507. <el-option
  508. v-for="group in options8"
  509. :key="group.id"
  510. :label="group.name"
  511. :value="group.id"
  512. />
  513. </el-select>
  514. </el-form-item>
  515. </el-col>
  516. <el-col :span="12">
  517. <el-form-item label="配置要求" prop="config">
  518. <el-select
  519. v-model="ruleForm.config"
  520. multiple
  521. :disabled="type === 'view'"
  522. style="width: 100%"
  523. placeholder="配置要求"
  524. >
  525. <el-option
  526. v-for="(item, index) in options9"
  527. :key="item + index"
  528. :label="item"
  529. :value="item"
  530. >
  531. </el-option>
  532. </el-select>
  533. </el-form-item>
  534. </el-col>
  535. <el-col :span="12">
  536. <el-form-item label="其他配置要求" prop="other_config" label-width="120px">
  537. <el-input
  538. placeholder="其他要求"
  539. maxlength="100"
  540. :disabled="type === 'view'"
  541. v-model="ruleForm.other_config"
  542. >
  543. </el-input>
  544. </el-form-item>
  545. </el-col>
  546. </el-col>
  547. <el-col :span="24">
  548. <el-form-item label="采购备注" prop="remark">
  549. <el-input
  550. placeholder="采购备注"
  551. maxlength="500"
  552. :disabled="type === 'view'"
  553. v-model="ruleForm.remark"
  554. >
  555. </el-input>
  556. </el-form-item>
  557. <el-form-item label="工艺说明" prop="cost_desc">
  558. <el-input
  559. placeholder="工艺说明"
  560. maxlength="500"
  561. :disabled="type === 'view'"
  562. v-model="ruleForm.cost_desc"
  563. >
  564. </el-input>
  565. </el-form-item>
  566. </el-col>
  567. <!-- <el-col :span="24">
  568. <el-form-item
  569. label="商品图片(<1mb)"
  570. prop="good_img"
  571. class="activity-upload"
  572. >
  573. <div class="btnupload" style="position: relative">
  574. <img
  575. v-if="ruleForm.good_img"
  576. :src="ruleForm.good_img"
  577. class="avatar"
  578. />
  579. <i v-else class="el-icon-plus avatar-uploader-icon"></i>
  580. <file-upload
  581. class="Upload"
  582. :accept="'.jpg,.png,.jpeg'"
  583. :multiple="true"
  584. :disabled="type === 'view'"
  585. :uploadcondition="beforeAvatarUpload"
  586. @UploadErrorEvent="UploadErrorEventgood_img"
  587. @UploadSuccessEvent="UploadSuccessEventgood_img"
  588. ></file-upload>
  589. </div>
  590. </el-form-item>
  591. </el-col> -->
  592. <el-col :span="24">
  593. <el-form-item
  594. label="商品图片(<1mb)"
  595. prop="good_img"
  596. v-if="ruleForm.good_img"
  597. class="activity-upload"
  598. >
  599. <div
  600. class="btnupload"
  601. style="position: relative; margin-left: 10px"
  602. v-for="(item, index) in ruleForm.good_img"
  603. :key="index"
  604. >
  605. <img :src="ruleForm.good_img[index]" class="avatar" />
  606. <i
  607. v-if="type == 'add' || type === 'editBase' || type === 'edit'"
  608. class="el-icon-close"
  609. @click="closeImg(index, 'good_img')"
  610. ></i>
  611. </div>
  612. <div v-if="type == 'view' ? false : true">
  613. <i
  614. class="el-icon-plus avatar-uploader-icon"
  615. style="position: relative; width: 50px; height: 50px"
  616. >
  617. <file-upload
  618. class="Upload"
  619. :accept="'.jpg,.png,.jpeg'"
  620. :multiple="true"
  621. :disabled="type === 'view'"
  622. :uploadcondition="beforeAvatarUpload"
  623. @UploadErrorEvent="UploadErrorEventgood_img"
  624. @UploadSuccessEvent="UploadSuccessEventgood_img"
  625. ></file-upload>
  626. </i>
  627. </div>
  628. </el-form-item>
  629. <!-- <i class="el-icon-plus avatar-uploader-icon">
  630. </i>
  631. <file-upload
  632. class="Upload"
  633. :accept="'.jpg,.png,.jpeg'"
  634. :multiple="true"
  635. :disabled="false"
  636. :uploadcondition="beforeAvatarUpload"
  637. @UploadErrorEvent="UploadErrorEventgood_img"
  638. @UploadSuccessEvent="UploadSuccessEventgood_img"
  639. ></file-upload> -->
  640. </el-col>
  641. </el-row>
  642. </el-form>
  643. </template>
  644. <script>
  645. import asyncRequest from "@/apis/service/supplierPurchaseIn/supplierWorkbench";
  646. import resToken from "@/mixins/resToken";
  647. import companyHelper from "@/mixins/companyHelper";
  648. import { mapGetters } from "vuex";
  649. import baseFormAddEdit from "./baseFormAddEdit";
  650. import { add_sum, accMul, accDiv } from "@/utils/validate";
  651. import {
  652. options1,
  653. options2,
  654. options3,
  655. options4,
  656. options5,
  657. options6,
  658. options7,
  659. options8,
  660. options9,
  661. options10,
  662. options11,
  663. rules,
  664. } from "../columns";
  665. export default {
  666. name: "goodsCostAdd",
  667. mixins: [resToken,companyHelper],
  668. props: ["showModel", "id", "type", "sitem", "askItem", "newTime", "editId"],
  669. components: {
  670. baseFormAddEdit,
  671. },
  672. computed: {
  673. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  674. powers() {
  675. const tran =
  676. this.$store.getters.btnList.find((item) => item.menu_route == "goodsCostAdd") ||
  677. {};
  678. const { action } = tran ?? {};
  679. return action ?? [];
  680. },
  681. },
  682. watch: {
  683. newTime: function (val) {
  684. if (val) {
  685. this.initForm();
  686. }
  687. },
  688. },
  689. data() {
  690. return {
  691. areaInfo:{
  692. delivery_place:{
  693. code:[],
  694. label:[]
  695. },
  696. origin_place:{
  697. code:[],
  698. label:[]
  699. }
  700. },
  701. pid: "",
  702. cat_id_name: "",
  703. supplierNo: "",
  704. brand_name: "",
  705. unit_name: "",
  706. title: "",
  707. modelIndex: "",
  708. modelSitem: {},
  709. showOtherModel: false,
  710. is_noble: false,
  711. status: "",
  712. rulesThis: this.rules,
  713. activeName: "1",
  714. loading: true,
  715. supplierNo_name:"",
  716. //新实时金价
  717. newGoldPrice: 0,
  718. options1: options1,
  719. options2: options2,
  720. options3: options3,
  721. options4: options4,
  722. options5: options5,
  723. options6: options6,
  724. options7: options7,
  725. options8: options8,
  726. options9: options9,
  727. options10: options10,
  728. options11: options11,
  729. ruleForm: {},
  730. rules,
  731. //乘法处理
  732. r1: "",
  733. r2: "",
  734. //除法处理
  735. r3: "",
  736. r4: "",
  737. //成本合算
  738. newPrice: 0,
  739. };
  740. },
  741. mounted() {
  742. this.initForm();
  743. },
  744. methods: {
  745. async areaChange(e, key) {
  746. const { code, area_code, label } = e
  747. this.ruleForm[key] = code ? code.split(',') : []
  748. this.areaInfo[key].code = area_code ? [area_code] : []
  749. this.areaInfo[key].label = label ? [label] : []
  750. this.$refs.ruleForm.validateField(key)
  751. },
  752. //图片悬浮删除
  753. closeImg(index, key) {
  754. this.ruleForm[key].splice(index, 1);
  755. this.$refs.ruleForm.validateField(key);
  756. },
  757. async initForm() {
  758. this.supplierNo = [];
  759. this.loading = true;
  760. if (this.type === "add") {
  761. this.title = "新建采返商品";
  762. } else if (this.type === "edit") {
  763. this.title = "编辑采返商品";
  764. } else {
  765. this.title = "采返商品详情";
  766. }
  767. this.resetFormData();
  768. await this.resetForm();
  769. if (this.type === "edit" || this.type === "view") {
  770. await this.initData();
  771. }else{
  772. this.areaInfo = {
  773. delivery_place:{
  774. code:[],
  775. label:[]
  776. },
  777. origin_place:{
  778. code:[],
  779. label:[]
  780. }
  781. }
  782. }
  783. if(this.type === 'add'){
  784. this.ruleForm.supplierNo = [this.currentCompany]
  785. this.supplierNo_name = this.getCompanyWithCode(this.currentCompany).name
  786. }
  787. //调用实时金价获取接口
  788. this.golpricelast();
  789. //调用成本合算计算函数
  790. // this.computedCost()
  791. this.rulesThis = this.rules;
  792. this.setrules();
  793. this.loading = false;
  794. },
  795. //计算价格
  796. computedCost() {
  797. const { num } = this.askItem;
  798. const {
  799. demo_fee,
  800. open_fee,
  801. noble_weight,
  802. cost_fee,
  803. pakge_fee,
  804. mark_fee,
  805. cert_fee,
  806. nake_fee,
  807. delivery_fee,
  808. } = this.ruleForm;
  809. let a = accDiv(demo_fee, num); // 打样费/购买数量
  810. let b = accDiv(open_fee, num); //开模费/购买数量
  811. let c = accMul(noble_weight, this.newGoldPrice); //金属重量* 最新金价
  812. let d = accMul(cost_fee, noble_weight); //工艺费* 金属重量
  813. let e = add_sum(pakge_fee, mark_fee); //包装费+加标费
  814. let f = add_sum(cert_fee, nake_fee); //证书费+产品裸价
  815. if (this.is_noble) {
  816. this.newPrice = add_sum(
  817. add_sum(add_sum(a, b), add_sum(c, d)),
  818. add_sum(add_sum(e, f), delivery_fee)
  819. ).toFixed(2);
  820. } else {
  821. this.newPrice = add_sum(
  822. add_sum(add_sum(a, b), add_sum(e, f)),
  823. delivery_fee
  824. ).toFixed(2);
  825. }
  826. console.log(new Date().valueOf() + this.newPrice);
  827. },
  828. number_change(e, key) {
  829. this.ruleForm[key] = e + "" || "0";
  830. this.$refs.ruleForm.validateField(key);
  831. this.computedCost();
  832. },
  833. async initData() {
  834. this.loading = true;
  835. const { code, message, data } = await asyncRequest.good_detail({
  836. bidNo: this.editId,
  837. });
  838. if (code === 0) {
  839. const {
  840. bidNo,
  841. good_name, //string 名称
  842. cat_id, //array 分类
  843. cat_info,
  844. brand_id, //string 品牌id
  845. unit, // string 单位
  846. unit_id, //单位ID
  847. tax, //string 税率
  848. supplierNo, // string 供应商
  849. cost_desc, // string 工艺说明
  850. remark, // string 采购备注
  851. weight, // string 重量
  852. supply_area, // string 供货区域 1 全国2 除偏远地区
  853. origin_place, // string 产地
  854. origin_place_cn, // string 产地
  855. delivery_place, // string 发货地
  856. delivery_place_cn, // string 发货地
  857. delivery_day, // string 物流天数
  858. expire_day, // string 信息有效期
  859. good_img, //
  860. // good_name,
  861. cert_fee, // string 证书费
  862. pakge_fee, // string 打包费
  863. cost_fee, // string 工艺费
  864. mark_fee, // string 加标费
  865. demo_fee, // string 打样费
  866. open_fee, // string 开模费
  867. metal_id, // string 金属类别
  868. noble_weight, // string 金属重量
  869. is_gold_price, // string 是否使用实时金价
  870. delivery_fee, // string 物流费
  871. status, // string 状态
  872. brand_name,
  873. work_day,
  874. pay_way,
  875. send_way,
  876. is_diff,
  877. config,
  878. nake_fee,
  879. other_config,
  880. supplierName,
  881. specinfo,
  882. } = JSON.parse(JSON.stringify(data));
  883. if(this.type !== 'add'){
  884. this.areaInfo.origin_place.code = origin_place ? [origin_place.split(',')[2]] : []
  885. this.areaInfo.origin_place.label = origin_place_cn ? [origin_place_cn] : []
  886. this.areaInfo.delivery_place.code = delivery_place ? [delivery_place.split(',')[2]] : []
  887. this.areaInfo.delivery_place.label = delivery_place_cn ? [delivery_place_cn] : []
  888. }
  889. if (specinfo && specinfo.length > 0) {
  890. this.spec_tableData = JSON.parse(JSON.stringify(specinfo));
  891. }
  892. this.cat_id_name = "";
  893. if (cat_info && cat_info.length) {
  894. cat_info.forEach((e, ei) => {
  895. if (ei === 0) {
  896. this.pid = e.id;
  897. }
  898. this.cat_id_name += `${ei !== 0 ? "_" : ""}${e.name}`;
  899. });
  900. }
  901. this.supplierNo_name = supplierName || "";
  902. this.is_noble = is_gold_price === "1" && this.pid === "6";
  903. // this.is_noble = this.askItem.is_metal;
  904. this.brand_name = brand_name || "";
  905. this.unit_name = unit || "";
  906. this.ruleForm = {
  907. infoNo: this.id || "",
  908. bidNo: bidNo || "",
  909. infoNo: this.id || "",
  910. cat_id: cat_id ? [cat_id] : [],
  911. supplierNo: supplierNo ? [supplierNo] : [],
  912. pname: good_name || "",
  913. expire_day: expire_day || "1", //有效期
  914. delivery_day: delivery_day || "0", //物流时间
  915. work_day: work_day || "0", //生产工期
  916. brandid: brand_id ? [brand_id] : [],
  917. unit_id: unit_id ? [unit_id] : [],
  918. weight: weight || "0.000",
  919. tax: tax ? tax + "%" : "",
  920. supply_area: supply_area || "",
  921. origin_place: origin_place ? origin_place.split(",") : [],
  922. delivery_place: delivery_place ? delivery_place.split(",") : [],
  923. cert_fee: cert_fee || "0.00",
  924. pakge_fee: pakge_fee || "0.00",
  925. cost_fee: cost_fee || "0.00",
  926. mark_fee: mark_fee || "0.00",
  927. demo_fee: demo_fee || "0.00",
  928. open_fee: open_fee || "0.00",
  929. delivery_fee: delivery_fee || "0.00",
  930. nake_fee: nake_fee || "0.00",
  931. pay_way: pay_way || "",
  932. send_way: send_way || "",
  933. noble_weight: noble_weight || "0.000",
  934. metal_id: metal_id || "",
  935. is_gold_price: is_gold_price || "",
  936. is_diff: is_diff || "",
  937. config: config ? config.split(",") : [],
  938. other_config: other_config || "",
  939. remark: remark || "",
  940. cost_desc: cost_desc || "",
  941. good_img: good_img || [],
  942. };
  943. this.status = status;
  944. if (this.is_noble) {
  945. this.ruleForm.nake_fee = "0";
  946. }
  947. } else if (code >= 100 && code <= 104) {
  948. await this.logout();
  949. } else {
  950. this.$message.warning(message);
  951. }
  952. },
  953. async submitForm() {
  954. if (this.loading) {
  955. return;
  956. }
  957. if (this.is_noble) {
  958. this.ruleForm.nake_fee = "0";
  959. }
  960. this.computedCost();
  961. if (this.ruleForm.good_img.length > 10) {
  962. this.$message.warning("上传图片不能超过10张");
  963. return;
  964. }
  965. // for (let key in this.ruleForm) {
  966. // console.log(this.rulesThis[key]);
  967. // console.log(
  968. // key + "---" + this.rulesThis[key][0].required + "-----" + this.ruleForm[key]
  969. // );
  970. // }
  971. await this.$refs.ruleForm.validate(async (valid) => {
  972. console.log(valid);
  973. if (valid) {
  974. if (!this.loading) {
  975. this.loading = true;
  976. if (this.spec_tableData.length === 0) {
  977. this.$message.warning("请填写规格!");
  978. this.loading = false;
  979. return;
  980. }
  981. let model = JSON.parse(JSON.stringify(this.ruleForm));
  982. model.cat_id = model.cat_id[model.cat_id.length - 1];
  983. model.brandid = model.brandid.toString();
  984. model.supplierNo = model.supplierNo.toString();
  985. model.origin_place = model.origin_place.toString();
  986. model.delivery_place = model.delivery_place.toString();
  987. model.unit_id = model.unit_id.toString();
  988. model.config = model.config.toString();
  989. model.tax = parseInt(model.tax + "") + "";
  990. model.specinfo = [];
  991. let list = JSON.parse(JSON.stringify(this.spec_tableData));
  992. list.forEach((a) => {
  993. let am = {
  994. specid: a.specid,
  995. spec_value_id: a.spec_value_id,
  996. };
  997. model.specinfo.push(am);
  998. });
  999. console.log(model);
  1000. let res = {};
  1001. if (this.type === "add") {
  1002. delete model["bidNo"];
  1003. res = await asyncRequest.good_add(model);
  1004. } else {
  1005. res = await asyncRequest.good_update(model);
  1006. }
  1007. console.log(res);
  1008. this.loading = false;
  1009. if (res && res.code === 0) {
  1010. const title = this.type === "add" ? "新建成功!" : "修改成功!";
  1011. this.$notify.success({
  1012. title: title,
  1013. message: "",
  1014. });
  1015. this.showModelThis = false;
  1016. // 刷新
  1017. this.$emit("refresh");
  1018. } else if (res && res.code >= 100 && res.code <= 104) {
  1019. await this.logout();
  1020. } else {
  1021. this.$message.warning(res.message);
  1022. }
  1023. }
  1024. } else {
  1025. console.log("error submit!!");
  1026. return false;
  1027. }
  1028. });
  1029. },
  1030. async resetForm() {
  1031. // 重置
  1032. await this.$nextTick(async () => {
  1033. if (this.$refs.ruleForm) {
  1034. this.$refs.ruleForm.resetFields();
  1035. this.$refs.ruleForm.clearValidate();
  1036. this.spec_tableData = [];
  1037. // console.log(this.askItem);
  1038. this.is_noble = false;
  1039. const { can_id_arr, is_gold_price } = this.askItem;
  1040. can_id_arr.forEach((e, index) => {
  1041. if (index == 0) {
  1042. this.pid = e;
  1043. }
  1044. });
  1045. if (this.pid === "6" && is_gold_price === "1") {
  1046. this.is_noble = true;
  1047. }
  1048. this.cat_id_name = this.type === "add" ? this.askItem.can_name : "";
  1049. this.brand_name = "";
  1050. // this.type === "add" ? this.askItem.brand : "";
  1051. this.unit_name = "";
  1052. let good_img = this.askItem.good_img ? this.askItem.good_img.split(",") : [];
  1053. //this.type === "add" ? this.askItem.unit_name : "";
  1054. this.ruleForm = {
  1055. infoNo: this.id || "",
  1056. cat_id: this.type === "add" ? [this.askItem.cat_id] : [],
  1057. supplierNo: [],
  1058. pname: this.type === "add" ? this.askItem.good_name : "",
  1059. expire_day: "1", //有效期
  1060. delivery_day: "0", //物流时间
  1061. work_day: "0", //生产工期
  1062. brandid: [],
  1063. // this.type === "add" && this.askItem.brand_id
  1064. // ? [this.askItem.brand_id]
  1065. // : [],
  1066. unit_id: [],
  1067. //this.type === "add" ? [this.askItem.unit] : [],
  1068. weight: this.type === "add" ? this.askItem.total_weight : "0.000",
  1069. tax: "",
  1070. supply_area: "",
  1071. origin_place: [],
  1072. delivery_place: [],
  1073. cert_fee: "0.00",
  1074. pakge_fee: "0.00",
  1075. cost_fee: "0.00",
  1076. mark_fee: "0.00",
  1077. demo_fee: "0.00",
  1078. open_fee: "0.00",
  1079. delivery_fee: "0.00",
  1080. nake_fee: "0.00",
  1081. pay_way: "",
  1082. send_way: "",
  1083. noble_weight: this.type === "add" ? this.askItem.specs_weight : "0.000",
  1084. metal_id: this.type === "add" ? this.askItem.metal_id : "",
  1085. is_gold_price: this.type === "add" ? this.askItem.is_gold_price : "",
  1086. is_diff: "",
  1087. config:
  1088. this.type === "add"
  1089. ? this.askItem.config
  1090. ? this.askItem.config.split(",")
  1091. : []
  1092. : [],
  1093. other_config: this.type === "add" ? this.askItem.other_config : "",
  1094. remark: "",
  1095. cost_desc: this.type === "add" ? this.askItem.cost_desc : "",
  1096. good_img: this.type === "add" ? good_img : [],
  1097. };
  1098. if (this.type === "add") {
  1099. this.spec_tableData = JSON.parse(JSON.stringify(this.askItem.specinfo));
  1100. }
  1101. await this.set_must_spec();
  1102. }
  1103. });
  1104. },
  1105. openEdit(index, sitem) {
  1106. this.modelIndex = index;
  1107. this.modelSitem = sitem;
  1108. this.showOtherModel = true;
  1109. },
  1110. openDelete(index) {
  1111. this.spec_tableData.splice(index, 1);
  1112. },
  1113. //规格编辑修改结果
  1114. refreshEdit(e) {
  1115. let item = JSON.parse(JSON.stringify(e));
  1116. const { index, specid, spec_name, spec_value_id, spec_value_name } = item;
  1117. if (index + "" === "-1") {
  1118. this.spec_tableData.push(item);
  1119. } else {
  1120. let findex = parseInt(index + "");
  1121. this.spec_tableData[findex].specid = specid;
  1122. this.spec_tableData[findex].spec_name = spec_name;
  1123. this.spec_tableData[findex].spec_value_id = spec_value_id;
  1124. this.spec_tableData[findex].spec_value_name = spec_value_name;
  1125. }
  1126. this.showOtherModel = false;
  1127. },
  1128. //分类选择
  1129. async cat_id_change(e) {
  1130. const { pid, id, label } = e;
  1131. this.pid = pid || "";
  1132. this.ruleForm.cat_id = id ? [id] : [];
  1133. this.$refs.ruleForm.validateField("cat_id");
  1134. const { is_gold_price } = this.ruleForm;
  1135. this.is_noble = this.pid === "6" && is_gold_price === "1";
  1136. this.setrules();
  1137. if (this.is_noble) {
  1138. this.ruleForm.nake_fee = "0";
  1139. }
  1140. this.computedCost();
  1141. await this.set_must_spec();
  1142. },
  1143. async set_must_spec() {
  1144. const { cat_id } = this.ruleForm;
  1145. let id = cat_id.length == 1 ? cat_id[0] : "";
  1146. if (id) {
  1147. const { code, message, data } = await asyncRequest.catinfo({ id: id });
  1148. if (code === 0) {
  1149. const { spec } = data;
  1150. if (spec && spec.length > 0) {
  1151. if (this.spec_tableData && this.spec_tableData.length > 0) {
  1152. this.spec_tableData.forEach((c) => {
  1153. c.isMust = false;
  1154. });
  1155. spec.forEach((a, ai) => {
  1156. let findex = this.spec_tableData.findIndex((b) => b.specid === a.id);
  1157. if (findex !== -1) {
  1158. this.spec_tableData[findex].isMust = true;
  1159. } else {
  1160. this.spec_tableData.push({
  1161. id: "",
  1162. index: "1",
  1163. specid: a.id,
  1164. spec_name: a.spec_name,
  1165. isMust: true,
  1166. spec_value_name: "",
  1167. spec_value_id: "",
  1168. });
  1169. }
  1170. });
  1171. } else {
  1172. spec.forEach((a, ai) => {
  1173. let model = {
  1174. id: "",
  1175. index: "1",
  1176. specid: a.id,
  1177. spec_name: a.spec_name,
  1178. isMust: true,
  1179. spec_value_name: "",
  1180. spec_value_id: "",
  1181. };
  1182. this.spec_tableData.push(model);
  1183. });
  1184. }
  1185. }
  1186. this.spec_tableData.map((e, ei) => {
  1187. e.index = ei + "";
  1188. return e;
  1189. });
  1190. this.spec_tableData.forEach((si, sii) => {
  1191. this.$set(this.spec_tableData, sii, si);
  1192. });
  1193. console.log(this.spec_tableData);
  1194. } else if (code >= 100 && code <= 104) {
  1195. await this.logout();
  1196. } else {
  1197. this.$message.warning(message);
  1198. }
  1199. } else {
  1200. this.spec_tableData.forEach((si, sii) => {
  1201. si.isMust = false;
  1202. this.$set(this.spec_tableData, sii, si);
  1203. });
  1204. }
  1205. },
  1206. setrules() {
  1207. let list1 = ["noble_weight", "is_gold_price", "is_diff"];
  1208. for (let i = 0; i < list1.length; i++) {
  1209. this.rulesThis[list1[i]][0].required = this.is_noble;
  1210. }
  1211. let list2 = ["metal_id", "config", "other_config"];
  1212. for (let i = 0; i < list2.length; i++) {
  1213. this.rulesThis[list2[i]][0].required = this.pid === "6";
  1214. }
  1215. },
  1216. is_gold_price_change() {
  1217. const { is_gold_price } = this.ruleForm;
  1218. this.$refs.ruleForm.validateField("is_gold_price");
  1219. this.is_noble = this.pid === "6" && is_gold_price === "1";
  1220. this.setrules();
  1221. if (this.is_noble) {
  1222. this.ruleForm.nake_fee = "0";
  1223. }
  1224. this.computedCost();
  1225. },
  1226. //品牌选择
  1227. brandidsearchChange(e) {
  1228. const { id, code, label } = e;
  1229. if (id) {
  1230. this.ruleForm.brandid = [id];
  1231. } else {
  1232. this.ruleForm.brandid = [];
  1233. }
  1234. this.$refs.ruleForm.validateField("brandid");
  1235. },
  1236. //供应商选择
  1237. supplierNosearchChange(e) {
  1238. console.log(e);
  1239. const { id, code, label } = e;
  1240. if (id) {
  1241. this.ruleForm.supplierNo = [code];
  1242. } else {
  1243. this.ruleForm.supplierNo = [];
  1244. }
  1245. this.$refs.ruleForm.validateField("supplierNo");
  1246. },
  1247. //税点选择
  1248. taxsearchChange(e) {
  1249. this.ruleForm.tax = e;
  1250. this.$refs.ruleForm.validateField("tax");
  1251. },
  1252. //单位选择
  1253. unitsearchChange(e) {
  1254. const { id, code, label } = e;
  1255. if (id) {
  1256. this.ruleForm.unit_id = [code];
  1257. } else {
  1258. this.ruleForm.unit_id = [];
  1259. }
  1260. this.$refs.ruleForm.validateField("unit_id");
  1261. },
  1262. //金属种类选择
  1263. //需修改,未改完
  1264. async metal_idsearchChange(e) {
  1265. this.loading = true;
  1266. const { id, code, label } = e;
  1267. if (id) {
  1268. this.ruleForm.metal_id = id;
  1269. } else {
  1270. this.ruleForm.metal_id = "";
  1271. }
  1272. this.$refs.ruleForm.validateField("metal_id");
  1273. //获取实时金价
  1274. this.golpricelast();
  1275. this.loading = false;
  1276. },
  1277. //获取实时金价
  1278. async golpricelast() {
  1279. const { metal_id } = this.ruleForm;
  1280. if (metal_id === "" && metal_id === "0") {
  1281. this.newGoldPrice = 0;
  1282. this.computedCost();
  1283. return;
  1284. }
  1285. const { code, data } = await asyncRequest.golpricelast({
  1286. type: metal_id,
  1287. });
  1288. if (code === 0) {
  1289. if (data.length !== 1) {
  1290. this.newGoldPrice = 0;
  1291. } else {
  1292. this.newGoldPrice = data[0].price;
  1293. }
  1294. } else if (code >= 100 && code <= 104) {
  1295. this.newGoldPrice = 0;
  1296. await this.logout();
  1297. } else {
  1298. this.newGoldPrice = 0;
  1299. }
  1300. this.computedCost();
  1301. },
  1302. //仓库省市区
  1303. selectAreaorigin_place(e) {
  1304. this.ruleForm.origin_place = e;
  1305. this.$refs.ruleForm.validateField("origin_place");
  1306. },
  1307. //发货地省市区
  1308. selectAreadelivery_place(e) {
  1309. this.ruleForm.delivery_place = e;
  1310. this.$refs.ruleForm.validateField("delivery_place");
  1311. },
  1312. //图片上传成功
  1313. async UploadSuccessEventgood_img(data) {
  1314. await this.UploadSuccessEvent(1, data);
  1315. },
  1316. //图片上传成功
  1317. async UploadSuccessEvent(type, data) {
  1318. if (this.ruleForm.good_img.length > 10) {
  1319. this.$message.warning("上传图片最多不能超过10张");
  1320. return;
  1321. }
  1322. const { url } = data;
  1323. if (url === "noToken") {
  1324. await this.logout();
  1325. } else {
  1326. if (type === 1) {
  1327. this.ruleForm.good_img.push(url);
  1328. this.$refs.ruleForm.validateField("good_img");
  1329. } else if (type === 2) {
  1330. this.ruleForm.good_img.push(url);
  1331. this.$refs.ruleForm.validateField("good_img");
  1332. }
  1333. console.log(this.ruleForm.good_img.length);
  1334. this.$message.success("图片上传成功!");
  1335. }
  1336. },
  1337. //图片上传失败
  1338. UploadErrorEventgood_img(res) {
  1339. this.imgUploadError(1, res);
  1340. },
  1341. imgUploadError(type, res) {
  1342. if (res !== "break") {
  1343. this.$message.error("图片上传失败!");
  1344. this.$refs.ruleForm.validateField(
  1345. type === 1 ? "good_img" : type === 2 ? "good_img" : ""
  1346. );
  1347. }
  1348. },
  1349. //判断图片规格
  1350. beforeAvatarUpload(file) {
  1351. let isJPG = false;
  1352. if (
  1353. file.type === "image/jpg" ||
  1354. file.type === "image/png" ||
  1355. file.type === "image/jpeg"
  1356. ) {
  1357. isJPG = true;
  1358. }
  1359. const isLt2M = file.size / 1024 / 1024 < 1;
  1360. if (!isJPG) {
  1361. this.$message.error("图片格式不正确!");
  1362. }
  1363. if (!isLt2M) {
  1364. this.$message.error("图片大小不能超过 1MB!");
  1365. }
  1366. return isJPG && isLt2M;
  1367. },
  1368. resetFormData() {
  1369. this.status = "";
  1370. this.is_noble = false;
  1371. this.cat_id_name = "";
  1372. this.brand_name = "";
  1373. this.unit_name = "";
  1374. this.ruleForm = {
  1375. infoNo: "",
  1376. cat_id: [],
  1377. supplierNo: [],
  1378. pname: "",
  1379. expire_day: "1", //有效期
  1380. delivery_day: "0", //物流时间
  1381. work_day: "0", //生产工期
  1382. color: "",
  1383. model: "",
  1384. material: "",
  1385. brandid: [],
  1386. unit_id: [],
  1387. weight: "0.000",
  1388. tax: "",
  1389. supply_area: "",
  1390. origin_place: [],
  1391. delivery_place: [],
  1392. cert_fee: "0.00",
  1393. pakge_fee: "0.00",
  1394. cost_fee: "0.00",
  1395. mark_fee: "0.00",
  1396. demo_fee: "0.00",
  1397. open_fee: "0.00",
  1398. delivery_fee: "0.00",
  1399. nake_fee: "0.00",
  1400. pay_way: "",
  1401. send_way: "",
  1402. noble_weight: "0.000",
  1403. metal_id: "",
  1404. is_gold_price: "",
  1405. is_diff: "",
  1406. config: [],
  1407. other_config: "",
  1408. remark: "",
  1409. cost_desc: "",
  1410. good_img: [],
  1411. };
  1412. },
  1413. addFormData() {
  1414. this.status = "";
  1415. this.is_noble = false;
  1416. this.cat_id_name = "";
  1417. this.brand_name = "";
  1418. this.unit_name = "";
  1419. this.ruleForm = {
  1420. infoNo: "",
  1421. cat_id: [],
  1422. supplierNo: [],
  1423. pname: "",
  1424. expire_day: "1", //有效期
  1425. delivery_day: "0", //物流时间
  1426. work_day: "0", //生产工期
  1427. color: "",
  1428. model: "",
  1429. material: "",
  1430. brandid: [],
  1431. unit_id: [],
  1432. weight: "0.000",
  1433. tax: "",
  1434. supply_area: "",
  1435. origin_place: [],
  1436. delivery_place: [],
  1437. cert_fee: "0.00",
  1438. pakge_fee: "0.00",
  1439. cost_fee: "0.00",
  1440. mark_fee: "0.00",
  1441. demo_fee: "0.00",
  1442. open_fee: "0.00",
  1443. delivery_fee: "0.00",
  1444. nake_fee: "0.00",
  1445. pay_way: "",
  1446. send_way: "",
  1447. noble_weight: "0.000",
  1448. metal_id: "",
  1449. is_gold_price: "",
  1450. is_diff: "",
  1451. config: [],
  1452. other_config: "",
  1453. remark: "",
  1454. cost_desc: "",
  1455. good_img: [],
  1456. };
  1457. },
  1458. },
  1459. };
  1460. </script>
  1461. <style lang="scss" scoped>
  1462. .goodsCostDetail {
  1463. .goodsCostAdd-title {
  1464. border-top: 1px solid #ebeef5;
  1465. span {
  1466. height: 50px;
  1467. line-height: 50px;
  1468. font-family: "微软雅黑", sans-serif;
  1469. font-weight: 400;
  1470. font-style: normal;
  1471. font-size: 16px;
  1472. text-align: left;
  1473. }
  1474. }
  1475. }
  1476. i.el-icon-close {
  1477. position: absolute;
  1478. z-index: 2;
  1479. top: 0;
  1480. right: 0;
  1481. color: #6954f0;
  1482. font-weight: bold;
  1483. cursor: pointer;
  1484. }
  1485. // /deep/ .fileUp {
  1486. // opacity: 10 !important;
  1487. // width: 228px !important;
  1488. // height: 200px !important;
  1489. // outline: none;
  1490. // position: static !important;
  1491. // }
  1492. </style>