baseForm.vue 45 KB

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