fixed-price-form-c.vue 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246
  1. <template>
  2. <div v-loading="loading">
  3. <!-- {{ sitem.is_gold_price }} -->
  4. <el-form
  5. :model="addrForm"
  6. ref="addrForm"
  7. status-icon
  8. class="demo-addrForm-goodsOnline"
  9. :size="'mini'"
  10. >
  11. <el-table
  12. :data="addrForm.good_ladder"
  13. :size="'mini'"
  14. border
  15. stripe
  16. max-height="300px"
  17. row-key="key"
  18. style="width: 100%; margin: 0 0 20px 0"
  19. >
  20. <el-table-column type="index" width="50" show-overflow-tooltip />
  21. <el-table-column prop="min_num" label="起订量(>=)" show-overflow-tooltip>
  22. <template slot-scope="scope">
  23. <el-form-item
  24. v-show="scope.row.edit"
  25. :prop="'good_ladder.' + scope.$index + '.' + 'min_num'"
  26. :rules="addrRules.min_num"
  27. :size="'mini'"
  28. :style="{ marginBottom: scope.row.edit ? '13px' : '0' }"
  29. >
  30. <digital-input
  31. :values="scope.row.min_num"
  32. :placeholder="'起订量(>=)'"
  33. :min="0"
  34. :max="100000000000"
  35. :position="'right'"
  36. :precision="0"
  37. :controls="false"
  38. :append="''"
  39. :newTime="scope.row.newTime"
  40. :size="'mini'"
  41. :disabled="!scope.row.edit"
  42. @reschange="num_change($event, 'min_num', scope.$index)"
  43. />
  44. </el-form-item>
  45. <span v-show="!scope.row.edit">{{ scope.row.min_num }}</span>
  46. </template>
  47. </el-table-column>
  48. <el-table-column prop="new_sale_price" show-overflow-tooltip v-if="!(sitem && sitem.is_gold_price === '1' && is_noble)">
  49. <template slot="header" slot-scope="scope">
  50. <span>系统售价</span>
  51. </template>
  52. <template slot-scope="scope">
  53. <el-form-item
  54. v-show="scope.row.edit"
  55. :prop="'good_ladder.' + scope.$index + '.' + 'new_sale_price'"
  56. :rules="addrRules.new_sale_price"
  57. :size="'mini'"
  58. :style="{ marginBottom: scope.row.edit ? '13px' : '0' }"
  59. >
  60. <el-input
  61. v-loading="scope.row.loading"
  62. v-model="scope.row.new_sale_price"
  63. placeholder="系统售价"
  64. :disabled="true"
  65. :size="'mini'"
  66. maxlength="20"
  67. />
  68. </el-form-item>
  69. <span v-show="!scope.row.edit">{{ scope.row.new_sale_price }}</span>
  70. </template>
  71. </el-table-column>
  72. <el-table-column
  73. prop="sale_price"
  74. label="售价"
  75. show-overflow-tooltip
  76. v-if="!(sitem && sitem.is_gold_price === '1' && is_noble)"
  77. >
  78. <template slot-scope="scope">
  79. <el-form-item
  80. v-show="scope.row.edit"
  81. :prop="'good_ladder.' + scope.$index + '.' + 'sale_price'"
  82. :rules="addrRules.sale_price"
  83. :size="'mini'"
  84. :style="{ marginBottom: scope.row.edit ? '13px' : '0' }"
  85. >
  86. <digital-input
  87. :values="scope.row.sale_price"
  88. :placeholder="'售价'"
  89. :min="0"
  90. :max="100000000000"
  91. :position="'right'"
  92. :precision="2"
  93. :controls="false"
  94. :append="''"
  95. :newTime="scope.row.newTime"
  96. :size="'mini'"
  97. :disabled="!scope.row.edit"
  98. @reschange="num_change($event, 'sale_price', scope.$index)"
  99. />
  100. </el-form-item>
  101. <span v-show="!scope.row.edit">{{ scope.row.sale_price }}</span>
  102. </template>
  103. </el-table-column>
  104. <el-table-column
  105. prop="new_cost_fee"
  106. show-overflow-
  107. v-if="sitem && sitem.is_gold_price === '1' && is_noble"
  108. label="系统工艺费"
  109. >
  110. <template slot-scope="scope">
  111. <el-form-item
  112. v-show="scope.row.edit"
  113. :prop="'good_ladder.' + scope.$index + '.' + 'new_cost_fee'"
  114. :rules="addrRules.new_cost_fee"
  115. :size="'mini'"
  116. :style="{ marginBottom: scope.row.edit ? '13px' : '0' }"
  117. >
  118. <el-input
  119. v-loading="scope.row.loading"
  120. v-model="scope.row.new_cost_fee"
  121. placeholder="工艺费"
  122. :disabled="true"
  123. :size="'mini'"
  124. maxlength="20"
  125. />
  126. </el-form-item>
  127. <span v-show="!scope.row.edit">{{ scope.row.new_cost_fee }}</span>
  128. </template>
  129. </el-table-column>
  130. <el-table-column
  131. prop="cost_fee"
  132. label="工艺费"
  133. show-overflow-tooltip
  134. v-if="sitem && sitem.is_gold_price === '1' && is_noble"
  135. >
  136. <template slot-scope="scope">
  137. <el-form-item
  138. v-show="scope.row.edit"
  139. :prop="'good_ladder.' + scope.$index + '.' + 'cost_fee'"
  140. :rules="addrRules.cost_fee"
  141. :size="'mini'"
  142. :style="{ marginBottom: scope.row.edit ? '13px' : '0' }"
  143. >
  144. <digital-input
  145. :values="scope.row.cost_fee"
  146. :placeholder="'工艺费'"
  147. :min="0"
  148. :max="100000000000"
  149. :position="'right'"
  150. :precision="2"
  151. :controls="false"
  152. :append="''"
  153. :newTime="scope.row.newTime"
  154. :size="'mini'"
  155. :disabled="!scope.row.edit"
  156. @reschange="num_change($event, 'cost_fee', scope.$index)"
  157. />
  158. </el-form-item>
  159. <span v-show="!scope.row.edit">{{ scope.row.cost_fee }}</span>
  160. </template>
  161. </el-table-column>
  162. <el-table-column prop="market_price" label="市场价" show-overflow-tooltip>
  163. <template slot-scope="scope">
  164. <el-form-item
  165. v-show="scope.row.edit"
  166. :prop="'good_ladder.' + scope.$index + '.' + 'market_price'"
  167. :rules="addrRules.market_price"
  168. :size="'mini'"
  169. :style="{ marginBottom: scope.row.edit ? '13px' : '0' }"
  170. >
  171. <digital-input
  172. :values="scope.row.market_price"
  173. :placeholder="'市场价'"
  174. :min="0"
  175. :max="100000000000"
  176. :position="'right'"
  177. :precision="2"
  178. :controls="false"
  179. :append="''"
  180. :newTime="scope.row.newTime"
  181. :size="'mini'"
  182. :disabled="!scope.row.edit"
  183. @reschange="num_change($event, 'market_price', scope.$index)"
  184. />
  185. </el-form-item>
  186. <span v-show="!scope.row.edit">{{ scope.row.market_price }}</span>
  187. </template>
  188. </el-table-column>
  189. <el-table-column prop="market_platform" label="对比平台" show-overflow-tooltip>
  190. <template slot-scope="scope">
  191. <el-form-item
  192. v-show="scope.row.edit"
  193. :prop="'good_ladder.' + scope.$index + '.' + 'market_platform'"
  194. :rules="addrRules.market_platform"
  195. :size="'mini'"
  196. :style="{ marginBottom: scope.row.edit ? '13px' : '0' }"
  197. >
  198. <el-input
  199. v-model="scope.row.market_platform"
  200. placeholder="对比平台"
  201. maxlength="50"
  202. :disabled="!scope.row.edit"
  203. />
  204. </el-form-item>
  205. <span v-show="!scope.row.edit">{{ scope.row.market_platform }}</span>
  206. </template>
  207. </el-table-column>
  208. <!-- <el-table-column prop="status" label="状态" show-overflow-tooltip>
  209. <template slot-scope="scope">
  210. <el-form-item
  211. v-show="scope.row.edit"
  212. :prop="'good_ladder.' + scope.$index + '.' + 'status'"
  213. :rules="addrRules.status"
  214. :size="'mini'"
  215. :style="{ marginBottom: scope.row.edit ? '13px' : '0' }"
  216. >
  217. <el-select v-model="scope.row.status" placeholder="状态">
  218. <el-option
  219. v-for="item in status_options"
  220. :key="item.value"
  221. :label="item.label"
  222. :value="item.value"
  223. >
  224. </el-option>
  225. </el-select>
  226. </el-form-item>
  227. <span v-show="!scope.row.edit">{{
  228. scope.row.status + "" == "1" ? "启用" : "禁用"
  229. }}</span>
  230. </template>
  231. </el-table-column> -->
  232. <el-table-column fixed="right">
  233. <template slot="header" slot-scope="scope">
  234. <span>操作</span>
  235. <el-tooltip effect="dark" content="添加阶梯" placement="top">
  236. <i
  237. class="el-icon-circle-plus-outline tb-icon fr"
  238. @click="openCostEdit(-1)"
  239. ></i>
  240. </el-tooltip>
  241. </template>
  242. <template slot-scope="scope">
  243. <el-tooltip
  244. effect="dark"
  245. content="保存"
  246. v-if="scope.row.edit"
  247. placement="top"
  248. >
  249. <i class="el-icon-circle-check tb-icon" @click="checkRow(scope.$index)"></i>
  250. </el-tooltip>
  251. <el-tooltip effect="dark" v-else content="修改" placement="top">
  252. <i class="el-icon-edit tb-icon" @click="openCostEdit(scope.$index)"></i>
  253. </el-tooltip>
  254. <el-tooltip effect="dark" content="删除" placement="top">
  255. <i
  256. class="el-icon-delete tb-icon"
  257. @click="openCostEditDelete(scope.$index)"
  258. ></i>
  259. </el-tooltip>
  260. </template>
  261. </el-table-column>
  262. </el-table>
  263. </el-form>
  264. <el-form
  265. ref="ruleForm"
  266. :model="ruleForm"
  267. status-icon
  268. :rules="rulesThis"
  269. :label-position="'left'"
  270. class="demo-ruleForm-goodsOnline"
  271. :size="'mini'"
  272. >
  273. <el-row>
  274. <el-col :span="12"
  275. ><el-form-item label="审核状态" prop="state">
  276. <el-radio-group
  277. v-model="ruleForm.state"
  278. placeholder="请选择审核状态"
  279. :size="size || 'medium'"
  280. @change="stateChange"
  281. >
  282. <el-radio v-for="item in stateList" :key="item.value" :label="item.value">{{
  283. item.label
  284. }}</el-radio>
  285. </el-radio-group>
  286. </el-form-item>
  287. <el-form-item
  288. label="平台商品编码"
  289. label-width="120px"
  290. v-if="ruleForm.state + '' === '1'"
  291. prop="plat_code"
  292. >
  293. <el-input
  294. placeholder="平台商品编码"
  295. v-model="ruleForm.plat_code"
  296. :disabled="disabled"
  297. maxlength="100"
  298. /></el-form-item>
  299. <el-form-item label="审核备注" prop="remark" label-width="100px">
  300. <!-- v-if="ruleForm.state === '0'" -->
  301. <el-input
  302. type="textarea"
  303. placeholder="审核备注"
  304. v-model="ruleForm.remark"
  305. :disabled="disabled"
  306. maxlength="250"
  307. show-word-limit
  308. :autosize="{ minRows: 3, maxRows: 3 }"
  309. />
  310. </el-form-item>
  311. </el-col>
  312. <!-- <el-col :span="12" v-if="ruleForm.state === '1'"
  313. ><el-form-item label="售价凭证类型" prop="proof_type">
  314. <el-radio-group v-model="ruleForm.proof_type" @change="set_proof_url()">
  315. <el-radio v-for="item in options" :key="item.value" :label="item.value">{{
  316. item.label
  317. }}</el-radio>
  318. </el-radio-group>
  319. <el-button class="fr" type="primary" @click="showVoucher = true"
  320. >查看历史凭证</el-button
  321. >
  322. </el-form-item>
  323. <el-form-item label="凭证文件" prop="proof_url">
  324. <ul class="shangchuan-ul">
  325. <li v-if="ruleForm.proof_type === '1'" class="shiping">
  326. <div v-if="video_url" class="clearfix">
  327. <el-popover placement="top" width="300" trigger="hover">
  328. <video width="275" controls class="fl">
  329. <source :src="video_url" type="video/mp4" />
  330. <source :src="video_url" type="video/avi" />
  331. 您的浏览器不支持Video标签。
  332. </video>
  333. <i
  334. class="el-icon-video-camera-solid hover"
  335. style="font-size: 18px"
  336. slot="reference"
  337. ></i>
  338. </el-popover>
  339. <el-link
  340. :underline="false"
  341. @click="deleteUrl('1')"
  342. type="warning"
  343. style="margin: 0 0 0 16px"
  344. >删除</el-link
  345. >
  346. </div>
  347. <div class="activity-upload" v-else>
  348. <div class="btnupload" style="position: relative">
  349. <i class="el-icon-plus avatar-uploader-icon"></i>
  350. <video-upload
  351. class="Upload"
  352. :disabled="type === 'view' || type === 'editCoin'"
  353. :accept="'.mp4,.avi'"
  354. :multiple="false"
  355. :uploadcondition="beforeVideoUpload"
  356. @UploadErrorEvent="UploadVideoEventproof_url"
  357. @UploadSuccessEvent="UploadSuccessVideoproof_url"
  358. />
  359. </div>
  360. <div class="txt-tips fl">
  361. <p>建议大小:小于10MB</p>
  362. <p>文件格式:.mp4,.avi</p>
  363. </div>
  364. </div>
  365. </li>
  366. <li v-if="ruleForm.proof_type === '2'" class="tupian">
  367. <div v-if="img_url" class="clearfix">
  368. <img
  369. style="width: 50px; height: 50px"
  370. :src="img_url"
  371. class="avatar fl"
  372. />
  373. <el-link
  374. :underline="false"
  375. @click="deleteUrl('2')"
  376. type="warning"
  377. style="margin: 0 0 0 16px"
  378. >删除</el-link
  379. >
  380. </div>
  381. <div class="activity-upload" v-else>
  382. <div class="btnupload" style="position: relative">
  383. <i class="el-icon-plus avatar-uploader-icon"></i>
  384. <file-upload
  385. class="Upload"
  386. :disabled="type === 'view' || type === 'editCoin'"
  387. :accept="'.jpg,.png,.jpeg'"
  388. :multiple="false"
  389. :uploadcondition="beforeAvatarUpload"
  390. @UploadErrorEvent="UploadErrorEventproof_url"
  391. @UploadSuccessEvent="UploadSuccessEventproof_url"
  392. ></file-upload>
  393. </div>
  394. <div class="txt-tips fl">
  395. <p>建议大小:小于1MB</p>
  396. <p>文件格式:.jpg,.png,.jpeg</p>
  397. </div>
  398. </div>
  399. </li>
  400. <li v-if="ruleForm.proof_type === '3'" class="qita">
  401. <div v-if="other_url" class="clearfix">
  402. <a :href="other_url" download="凭证文件">点击下载</a>
  403. <el-link
  404. :underline="false"
  405. @click="deleteUrl('3')"
  406. type="warning"
  407. style="margin: 0 0 0 16px"
  408. >删除</el-link
  409. >
  410. </div>
  411. <div class="activity-upload" v-else>
  412. <div class="btnupload" style="position: relative">
  413. <i class="el-icon-plus avatar-uploader-icon"></i>
  414. <file-upload-pdf
  415. class="Upload"
  416. :accept="'.xlsx,.xls,.pdf,.zip,.rar,.7z'"
  417. :multiple="false"
  418. :uploadcondition="beforeOtherUpload"
  419. @UploadErrorEvent="UploadErrorOtherproof_url"
  420. @UploadSuccessEvent="UploadSuccessOtherproof_url"
  421. />
  422. </div>
  423. <div class="txt-tips fl">
  424. <p>建议大小:小于5MB</p>
  425. <p>文件格式:.xlsx,.xls,.pdf,.zip,.rar,.7z</p>
  426. </div>
  427. </div>
  428. </li>
  429. </ul>
  430. </el-form-item>
  431. <show-voucher-model
  432. :showModel="showVoucher"
  433. :id="spuCode"
  434. @cancel="showVoucher = false"
  435. @searchChange="resvoucher"
  436. />
  437. </el-col> -->
  438. <el-col :span="24">
  439. <el-form-item class="fr">
  440. <el-button
  441. v-if="!isDetail && ruleForm.state !== '1'"
  442. :size="'mini'"
  443. type="primary"
  444. @click="rejectRe('')"
  445. >驳回重新审核
  446. </el-button>
  447. <el-button v-if="!isDetail" :size="'mini'" type="primary" @click="submitForm"
  448. >保 存
  449. </el-button>
  450. </el-form-item>
  451. </el-col>
  452. </el-row>
  453. </el-form>
  454. </div>
  455. </template>
  456. <script>
  457. import asyncRequest from "@/apis/service/goodStore/goodsOnline";
  458. import showVoucherModel from "@/components/show-voucher-model";
  459. import companyHelper from "@/mixins/companyHelper"
  460. import { isAlphanumeric, isnumber, validAlphabets } from "@/utils/validate";
  461. export default {
  462. name: "exam-form",
  463. props: [
  464. "size",
  465. "statusList",
  466. "disabled",
  467. "isMust",
  468. "labelWidth",
  469. "id",
  470. "spuCode",
  471. "sitem",
  472. ],
  473. components: {
  474. // costFormAddEdit,
  475. showVoucherModel,
  476. },
  477. mixins:[companyHelper],
  478. /**
  479. * 属性集合
  480. * @param {String} size : 组件大小 非必填
  481. * @param {Array} statusList : 驳回至备选项 必填
  482. * @param {Boolean} disabled : 是否禁用 必填
  483. * @param {Boolean} isMust : 是否需要展示驳回节点 必填
  484. *
  485. *
  486. */
  487. /**
  488. * 事件集合
  489. * @searchChange : 选中值变化调用 抛出选中数据
  490. */
  491. data() {
  492. const validate_num = (rule, value, callback) => {
  493. const { required } = rule;
  494. if (required && value === "") {
  495. callback(new Error("不能为空!"));
  496. } else {
  497. callback();
  498. }
  499. };
  500. const validate_num_0 = (rule, value, callback) => {
  501. const { required } = rule;
  502. if (required && value === "") {
  503. callback(new Error("不能为空!"));
  504. } else if (
  505. required &&
  506. (value === "0" ||
  507. value === "0." ||
  508. value === "0.0" ||
  509. value === "0.00" ||
  510. value === "0.000")
  511. ) {
  512. callback(new Error("不能为零!"));
  513. } else {
  514. callback();
  515. }
  516. };
  517. const validate_plat_code = (rule, value, callback) => {
  518. if (value === "" || !value) {
  519. callback(new Error("平台商品编号不能为空!"));
  520. } else {
  521. if (isnumber(value)) {
  522. callback();
  523. } else if (validAlphabets(value)) {
  524. callback();
  525. } else if (isAlphanumeric(value)) {
  526. callback();
  527. } else {
  528. callback("平台商品编号仅支持数字和字母!");
  529. }
  530. }
  531. };
  532. return {
  533. loading: false,
  534. stateList: [
  535. {
  536. value: "1",
  537. label: "通过",
  538. },
  539. {
  540. value: "0",
  541. label: "驳回",
  542. },
  543. ],
  544. platform_id:"",
  545. showVoucher: false,
  546. is_noble: false,
  547. video_url: "",
  548. img_url: "",
  549. other_url: "",
  550. options: [
  551. {
  552. value: "1",
  553. label: "视频",
  554. },
  555. {
  556. value: "2",
  557. label: "图片",
  558. },
  559. {
  560. value: "3",
  561. label: "其他",
  562. },
  563. ],
  564. status_options: [
  565. {
  566. value: "1",
  567. label: "启用",
  568. },
  569. {
  570. value: "0",
  571. label: "禁用",
  572. },
  573. ],
  574. showModelThis: this.showModel,
  575. pickerOptions: {
  576. disabledDate(time) {
  577. return time.getTime() < Date.now() - 60 * 60 * 24 * 1000;
  578. },
  579. },
  580. costshowModel: false,
  581. costmodelIndex: "",
  582. costsitem: {},
  583. ruleForm: {
  584. plat_code:"",
  585. skuCode: "",
  586. numStatus: "",
  587. state: "1", //通过or驳回
  588. proof_type: "1", //
  589. proof_url: "", //驳回至
  590. remark: "",
  591. },
  592. rulesThis: this.rules,
  593. rules: {
  594. // proof_type: [
  595. // {
  596. // required: true,
  597. // message: "请选择凭证类型",
  598. // trigger: "change",
  599. // },
  600. // ],
  601. plat_code: [
  602. {
  603. required: true,
  604. validator:validate_plat_code,
  605. trigger:'change'
  606. },
  607. ],
  608. // proof_url: [
  609. // {
  610. // required: true,
  611. // message: "请上传凭证文件",
  612. // trigger: "blur,change",
  613. // },
  614. // ],
  615. rebut: [
  616. {
  617. required: true,
  618. message: "请选择驳回节点",
  619. trigger: "change",
  620. },
  621. ],
  622. state: [
  623. {
  624. required: true,
  625. message: "请选择审核状态",
  626. trigger: "change",
  627. },
  628. ],
  629. remark: [
  630. { required: true, message: "请输入审核备注", trigger: "blur" },
  631. {
  632. min: 1,
  633. max: 250,
  634. message: "长度在 1 到 250 个字符",
  635. trigger: "blur",
  636. },
  637. ],
  638. },
  639. addrForm: {
  640. good_ladder: [],
  641. },
  642. good_ladder: [],
  643. addrRules: {
  644. min_num: [
  645. {
  646. required: true,
  647. validator: validate_num_0,
  648. trigger: "blur",
  649. },
  650. ],
  651. new_sale_price: [{ required: false }],
  652. sale_price: [
  653. {
  654. required: true,
  655. trigger: "blur",
  656. validator: validate_num,
  657. },
  658. ],
  659. cost_fee: [
  660. {
  661. required: true,
  662. trigger: "blur",
  663. validator: validate_num,
  664. },
  665. ],
  666. new_cost_fee: [
  667. {
  668. required: false,
  669. },
  670. ],
  671. market_price: [
  672. {
  673. required: true,
  674. validator: validate_num,
  675. trigger: "blur",
  676. },
  677. ],
  678. market_platform: [
  679. {
  680. required: true,
  681. message: "对比平台不能为空",
  682. trigger: "blur",
  683. },
  684. ],
  685. status: [
  686. {
  687. required: true,
  688. message: "状态不能为空",
  689. trigger: "change",
  690. },
  691. ],
  692. },
  693. };
  694. },
  695. watch: {
  696. isDetail: function (val, old) {
  697. if (this.isDetail !== val) {
  698. this.options = [];
  699. this.selectLoading = false;
  700. }
  701. },
  702. newTime: function (val) {
  703. if (val) {
  704. this.initForm();
  705. }
  706. },
  707. },
  708. mounted() {
  709. this.initForm();
  710. },
  711. methods: {
  712. // 点击驳回重新审核或驳回并下线按钮
  713. async rejectRe(numStatus) {
  714. this.ruleForm.numStatus = numStatus;
  715. await this.$refs.ruleForm.validate(async (valid) => {
  716. if (valid) {
  717. console.log(valid);
  718. this.$emit("searchChange", this.ruleForm);
  719. } else {
  720. console.log("error submit!!");
  721. return false;
  722. }
  723. });
  724. },
  725. async initForm() {
  726. this.loading = true;
  727. await this.resetForm();
  728. this.rulesThis = this.rules;
  729. this.stateChange();
  730. this.loading = false;
  731. },
  732. stateChange() {
  733. if (this.ruleForm.state === "1") {
  734. this.rulesThis.rebut[0].required = false;
  735. this.rulesThis.remark[0].required = false;
  736. } else {
  737. this.rulesThis.rebut[0].required = true;
  738. this.rulesThis.remark[0].required = true;
  739. }
  740. },
  741. openCostEdit(index) {
  742. let findex = this.addrForm.good_ladder.findIndex((v) => v.edit === true);
  743. if (findex !== -1) {
  744. this.$message.warning("当前已有阶梯售价在编辑,请保存后再试!");
  745. return;
  746. } else {
  747. if (index === -1) {
  748. this.addrForm.good_ladder.push({
  749. edit: true,
  750. min_num: "0",
  751. new_sale_price: "0",
  752. new_cost_fee: "0",
  753. sale_price: "0",
  754. cost_fee: "0",
  755. market_price: "0",
  756. market_platform: "",
  757. status: "1",
  758. });
  759. } else {
  760. this.addrForm.good_ladder[index].edit = true;
  761. this.addrForm.good_ladder[index].newTime = new Date().valueOf() + "";
  762. }
  763. }
  764. },
  765. async get_new(index) {
  766. const { min_num } = this.addrForm.good_ladder[index];
  767. this.addrForm.good_ladder[index].search_loading = true;
  768. let { code, data, message } = await asyncRequest.goodupprice({
  769. platform_id:this.platform_id,
  770. min_num: min_num,
  771. spuCode: this.spuCode,
  772. relaComNo: this.companyNo,
  773. needRela: true
  774. });
  775. let resModel = {
  776. isok: code,
  777. platform_id: this.platform_id,
  778. price: code === 0 ? data.sale_price : "0",
  779. new_cost_fee: code === 0 ? data.new_cost_fee : "0",
  780. message: message,
  781. };
  782. this.addrForm.good_ladder[index].search_loading = false;
  783. return resModel;
  784. },
  785. //保存某一行
  786. async checkRow(rowIndex) {
  787. const { sale_price ,new_sale_price , cost_fee , new_cost_fee } = this.addrForm.good_ladder[rowIndex] || {}
  788. const _salePrice = Number(sale_price)
  789. const _systemSalePrice = Number(new_sale_price)
  790. const _costFee = Number(cost_fee)
  791. const _systemCostFee = Number(new_cost_fee)
  792. if(_salePrice && _salePrice < _systemSalePrice){
  793. this.$message.warning('售价不能小于系统售价!')
  794. return
  795. }
  796. if(_costFee && _costFee < _systemCostFee) {
  797. this.$message.warning('工艺费不能小于系统工艺费!')
  798. return
  799. }
  800. await this.$refs.addrForm.validate(async (valid) => {
  801. if (valid) {
  802. if (!this.addrForm.good_ladder[rowIndex].search_loading) {
  803. const { min_num } = this.addrForm.good_ladder[rowIndex];
  804. let findex = this.addrForm.good_ladder.findIndex(
  805. (v) => v.edit !== true && v.min_num + "" === min_num + ""
  806. );
  807. if (findex !== -1) {
  808. this.$message.warning("当前已有相同起订量的销售价!");
  809. return;
  810. }
  811. let { isok, price, message, new_cost_fee } = await this.get_new(rowIndex);
  812. if (isok === 0) {
  813. this.addrForm.good_ladder[rowIndex].new_sale_price = price;
  814. this.addrForm.good_ladder[rowIndex].new_cost_fee = new_cost_fee;
  815. this.addrForm.good_ladder[rowIndex].edit = false;
  816. } else if (isok >= 100 && isok <= 104) {
  817. await this.logout();
  818. } else {
  819. this.addrForm.good_ladder[rowIndex].new_sale_price = price;
  820. this.addrForm.good_ladder[rowIndex].new_cost_fee = new_cost_fee;
  821. this.$message.warning(message);
  822. }
  823. }
  824. } else {
  825. console.log("error submit!!");
  826. return false;
  827. }
  828. });
  829. },
  830. openCostEditDelete(index) {
  831. this.addrForm.good_ladder.splice(index, 1);
  832. },
  833. async num_change(e, key, index) {
  834. const resNum = e ?? "";
  835. this.addrForm.good_ladder[index][key] = resNum === "" ? "0" : resNum;
  836. if (key === "min_num") {
  837. const { min_num } = this.addrForm.good_ladder[index];
  838. if (min_num === "" || min_num === "0") {
  839. this.addrForm.good_ladder[index].new_sale_price = "0";
  840. } else {
  841. if (!this.addrForm.good_ladder[index].search_loading) {
  842. let { isok, price, message, new_cost_fee } = await this.get_new(index);
  843. if (isok === 0) {
  844. this.addrForm.good_ladder[index].new_sale_price = price;
  845. this.addrForm.good_ladder[index].new_cost_fee = new_cost_fee;
  846. } else if (isok >= 100 && isok <= 104) {
  847. await this.logout();
  848. } else {
  849. this.addrForm.good_ladder[index].new_sale_price = price;
  850. this.addrForm.good_ladder[index].new_cost_fee = new_cost_fee;
  851. this.$message.warning(message);
  852. }
  853. }
  854. }
  855. }
  856. },
  857. async resetForm() {
  858. this.is_noble = false;
  859. // 重置
  860. await this.$nextTick(async () => {
  861. if (this.$refs.ruleForm && this.$refs.addrForm) {
  862. this.$refs.ruleForm.resetFields();
  863. this.$refs.ruleForm.clearValidate();
  864. this.$refs.addrForm.resetFields();
  865. this.$refs.addrForm.clearValidate();
  866. let { proof, ladderlist, cat_info ,platform_id} = this.sitem;
  867. console.log(platform_id)
  868. this.platform_id = platform_id;
  869. if (cat_info && cat_info.length > 0) {
  870. cat_info.forEach((e) => {
  871. if (e.id === "6") {
  872. this.is_noble = true;
  873. }
  874. });
  875. }
  876. ladderlist.map((a) => {
  877. a.search_loading = false;
  878. a.new_sale_price = "0";
  879. a.newTime = new Date().valueOf() + "";
  880. a.edit = false;
  881. return a;
  882. });
  883. this.ruleForm = {
  884. skuCode: this.id,
  885. state: "1", // 通过or驳回
  886. remark: "",
  887. numStatus: "",
  888. proof_type: proof && proof.proof_type ? proof.proof_type : "1", // 通过or驳回
  889. proof_url: proof && proof.proof_url ? proof.proof_url : "", //驳回至
  890. };
  891. this.addrForm = {
  892. good_ladder:
  893. ladderlist && ladderlist.length > 0
  894. ? JSON.parse(JSON.stringify(ladderlist))
  895. : [],
  896. };
  897. this.good_ladder =
  898. ladderlist && ladderlist.length > 0
  899. ? JSON.parse(JSON.stringify(ladderlist))
  900. : [];
  901. // console.log(this.ruleForm.proof_url);
  902. switch (this.ruleForm.proof_type) {
  903. case "1":
  904. this.video_url = this.ruleForm.proof_url;
  905. break;
  906. case "2":
  907. this.img_url = this.ruleForm.proof_url;
  908. break;
  909. case "3":
  910. this.other_url = this.ruleForm.proof_url;
  911. break;
  912. default:
  913. this.video_url = this.ruleForm.proof_url;
  914. }
  915. this.$refs.ruleForm.validateField("proof_url");
  916. for (let i = 0; i < this.addrForm.good_ladder.length; i++) {
  917. let { isok, price, new_cost_fee, message } = await this.get_new(i);
  918. if (isok === 0) {
  919. this.addrForm.good_ladder[i].new_sale_price = price;
  920. this.addrForm.good_ladder[i].new_cost_fee = new_cost_fee;
  921. this.addrForm.good_ladder[i].edit = false;
  922. } else if (isok >= 100 && isok <= 104) {
  923. await this.logout();
  924. } else {
  925. this.addrForm.good_ladder[i].new_sale_price = price;
  926. this.addrForm.good_ladder[i].new_cost_fee = new_cost_fee;
  927. this.addrForm.good_ladder[i].edit = true;
  928. this.addrForm.good_ladder[i].newTime = new Date().valueOf() + "";
  929. this.$message.warning(message);
  930. }
  931. }
  932. }
  933. });
  934. },
  935. async submitForm() {
  936. await this.$refs.ruleForm.validate(async (valid) => {
  937. if (valid) {
  938. if (!this.loading) {
  939. let model = JSON.parse(JSON.stringify(this.ruleForm));
  940. if('proof_type' in model) delete model['proof_type']
  941. if('proof_url' in model) delete model['proof_url']
  942. const { state } = model;
  943. if (state + "" === "1") {
  944. this.loading = true;
  945. if (this.addrForm.good_ladder.length === 0) {
  946. this.$message.warning("至少存在一条销售价信息!");
  947. this.loading = false;
  948. return;
  949. }
  950. let list = JSON.parse(JSON.stringify(this.addrForm.good_ladder));
  951. let all_is_ok = true;
  952. let isok = true;
  953. for (let i = 0; i < this.addrForm.good_ladder; i++) {
  954. this.addrForm.good_ladder[i].search_loading = true;
  955. const { market_platform } = this.addrForm.good_ladder[i];
  956. if (market_platform == "") {
  957. isok = false;
  958. }
  959. let { isok, price, new_cost_fee } = await this.get_new(i);
  960. if (isok === 0) {
  961. this.set_ladder_item(i, price, new_cost_fee);
  962. } else if (isok >= 100 && isok <= 104) {
  963. await this.logout();
  964. } else {
  965. all_is_ok = false;
  966. this.set_ladder_item(i, price, new_cost_fee);
  967. }
  968. }
  969. if (!isok) {
  970. this.$message.warning("比价平台不能为空!");
  971. this.loading = false;
  972. }
  973. if (!all_is_ok) {
  974. this.$message.warning("阶梯售价未满足成本最低起订量!");
  975. this.loading = false;
  976. }
  977. let list2 = [];
  978. list.forEach((e) => {
  979. let n = JSON.parse(JSON.stringify(e));
  980. for (let key in n) {
  981. n[key] += "";
  982. }
  983. delete n["index"];
  984. list2.push(n);
  985. });
  986. this.good_ladder.forEach((si, sii) => {
  987. const index = list2.findIndex((ai, aii) => si.id === ai.id);
  988. if (index === -1) {
  989. si.is_del = "1";
  990. list2.push(si);
  991. }
  992. });
  993. model.good_ladder = list2;
  994. model.skuCode = this.id;
  995. model.exam_remark = model.remark;
  996. model.exam_status = "3";
  997. delete model["remark"];
  998. await this.successHttp(model);
  999. } else {
  1000. const { remark } = this.ruleForm;
  1001. await this.successHttp({
  1002. exam_remark: remark,
  1003. exam_status: "4",
  1004. skuCode: this.id,
  1005. noRelation: true,
  1006. });
  1007. }
  1008. }
  1009. } else {
  1010. console.log("error submit!!");
  1011. return false;
  1012. }
  1013. });
  1014. },
  1015. async successHttp(model) {
  1016. const { code, message } = await asyncRequest.status(model);
  1017. this.loading = false;
  1018. if (code === 0) {
  1019. this.$notify.success({
  1020. title: "信息提交成功",
  1021. message: "",
  1022. });
  1023. this.$emit("resSuccess", true);
  1024. } else if (code >= 100 && code <= 104) {
  1025. await this.logout();
  1026. } else {
  1027. this.$message.warning(message);
  1028. }
  1029. },
  1030. resvoucher(e) {
  1031. const { proof_type, proof_url } = e;
  1032. this.ruleForm.proof_type = proof_type || "1";
  1033. switch (this.ruleForm.proof_type) {
  1034. case "1":
  1035. this.video_url = proof_url;
  1036. break;
  1037. case "2":
  1038. this.img_url = proof_url;
  1039. break;
  1040. case "3":
  1041. this.other_url = proof_url;
  1042. break;
  1043. default:
  1044. this.video_url = proof_url;
  1045. }
  1046. this.set_proof_url();
  1047. },
  1048. //图片上传成功
  1049. async UploadSuccessEventproof_url(data) {
  1050. const { url } = data;
  1051. if (url === "noToken") {
  1052. await this.logout();
  1053. } else {
  1054. this.img_url = url;
  1055. this.set_proof_url();
  1056. this.$message.success("图片上传成功!");
  1057. }
  1058. },
  1059. //图片上传失败
  1060. UploadErrorEventproof_url(res) {
  1061. if (res !== "break") {
  1062. this.set_proof_url();
  1063. this.$message.error("图片上传失败!");
  1064. }
  1065. },
  1066. //判断图片规格
  1067. beforeAvatarUpload(file) {
  1068. let isJPG = false;
  1069. if (
  1070. file.type === "image/jpg" ||
  1071. file.type === "image/png" ||
  1072. file.type === "image/jpeg"
  1073. ) {
  1074. isJPG = true;
  1075. }
  1076. const isLt2M = file.size / 1024 / 1024 < 1;
  1077. if (!isJPG) {
  1078. this.$message.error("图片格式不正确!");
  1079. }
  1080. if (!isLt2M) {
  1081. this.$message.error("图片大小不能超过 1MB!");
  1082. }
  1083. return isJPG && isLt2M;
  1084. },
  1085. //视频上传成功
  1086. async UploadSuccessVideoproof_url(data) {
  1087. const { url } = data;
  1088. if (url === "noToken") {
  1089. await this.logout();
  1090. } else {
  1091. this.video_url = url;
  1092. this.set_proof_url();
  1093. this.$message.success("视频上传成功!");
  1094. }
  1095. },
  1096. //视频上传失败
  1097. UploadErrorVideoproof_url(res) {
  1098. if (res !== "break") {
  1099. this.set_proof_url();
  1100. this.$message.error("视频上传失败!");
  1101. }
  1102. },
  1103. //判断视频规格
  1104. beforeVideoUpload(file) {
  1105. let isJPG = false;
  1106. if (file.type === "video/mp4" || file.type === "video/avi") {
  1107. isJPG = true;
  1108. }
  1109. const isLt2M = file.size / 1024 / 1024 < 10;
  1110. if (!isJPG) {
  1111. this.$message.error("视频格式不正确!");
  1112. }
  1113. if (!isLt2M) {
  1114. this.$message.error("视频大小不能超过 10MB!");
  1115. }
  1116. return isJPG && isLt2M;
  1117. },
  1118. // 其他文件上传成功
  1119. async UploadSuccessOtherproof_url(data) {
  1120. const { url } = data;
  1121. if (url === "noToken") {
  1122. await this.logout();
  1123. } else {
  1124. this.other_url = url;
  1125. this.set_proof_url();
  1126. this.$message.success("文件成功!");
  1127. }
  1128. },
  1129. //其他文件上传失败
  1130. UploadErrorOtherproof_url(res) {
  1131. if (res !== "break") {
  1132. this.set_proof_url();
  1133. this.$message.error("文件上传失败!");
  1134. }
  1135. },
  1136. //判断其他文件规格
  1137. beforeOtherUpload(file) {
  1138. console.log(file);
  1139. let isJPG = false;
  1140. if (
  1141. file.type === "application/vnd.ms-excel" ||
  1142. file.type ===
  1143. "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ||
  1144. file.type === "application/pdf" ||
  1145. file.type === "application/x-zip-compressed"
  1146. ) {
  1147. isJPG = true;
  1148. }
  1149. let name = file.name;
  1150. let list = name.split(".");
  1151. if (list[list.length - 1] === "rar" || list[list.length - 1] === "7z") {
  1152. isJPG = true;
  1153. }
  1154. const isLt2M = file.size / 1024 / 1024 < 5;
  1155. if (!isJPG) {
  1156. this.$message.error("文件格式不正确!");
  1157. }
  1158. if (!isLt2M) {
  1159. this.$message.error("文件大小不能超过 5MB!");
  1160. }
  1161. return isJPG && isLt2M;
  1162. },
  1163. deleteUrl(type) {
  1164. switch (type) {
  1165. case "1":
  1166. this.video_url = "";
  1167. break;
  1168. case "2":
  1169. this.img_url = "";
  1170. break;
  1171. case "3":
  1172. this.other_url = "";
  1173. break;
  1174. default:
  1175. this.video_url = "";
  1176. }
  1177. this.set_proof_url();
  1178. },
  1179. set_proof_url() {
  1180. const { proof_type } = this.ruleForm;
  1181. switch (proof_type) {
  1182. case "1":
  1183. this.ruleForm.proof_url = this.video_url;
  1184. break;
  1185. case "2":
  1186. this.ruleForm.proof_url = this.img_url;
  1187. break;
  1188. case "3":
  1189. this.ruleForm.proof_url = this.other_url;
  1190. break;
  1191. default:
  1192. this.ruleForm.proof_url = this.video_url;
  1193. }
  1194. this.$refs.ruleForm.validateField("proof_url");
  1195. },
  1196. },
  1197. };
  1198. </script>
  1199. <style lang="scss" scoped>
  1200. .demo-ruleForm-goodsOnline {
  1201. .shangchuan-ul {
  1202. li {
  1203. position: relative;
  1204. width: 100%;
  1205. &.tupian {
  1206. }
  1207. }
  1208. }
  1209. }
  1210. </style>