baseForm.vue 47 KB

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