detail.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. <template>
  2. <div class="goodsCostDetail">
  3. <div class="goodsCostDetail-main" v-if="powers.some((i) => i == '007')">
  4. <el-tabs v-model="activeTabs">
  5. <el-tab-pane label="新建商品成本" name="0" v-if="queryType === 'add'">
  6. <base-form-normal
  7. v-if="(newTime !== '')"
  8. :type="queryType"
  9. :id="queryId"
  10. :newTime="newTime"
  11. :sitem="sitem"
  12. @refresh="refresh"
  13. />
  14. </el-tab-pane>
  15. <el-tab-pane label="商品成本详情" name="1" v-if="queryType !== 'add'">
  16. <el-collapse v-model="activeNames" style="margin: -18px 0 0 0">
  17. <tempalte
  18. v-if="
  19. queryType === 'editCoin' ||
  20. queryType === 'editBase' ||
  21. queryType === 'edit'
  22. "
  23. >
  24. <el-collapse-item title="商品成本详情" name="0">
  25. <base-form
  26. v-if="(newTime !== '' && createSource === '1')"
  27. :type="queryType"
  28. :id="queryId"
  29. :newTime="newTime"
  30. :sitem="sitem"
  31. @refresh="refresh"
  32. />
  33. <base-form-normal
  34. v-if="(newTime !== '' && createSource === '0')"
  35. :type="queryType"
  36. :id="queryId"
  37. :newTime="newTime"
  38. :sitem="sitem"
  39. @refresh="refresh"
  40. />
  41. </el-collapse-item>
  42. </tempalte>
  43. <template v-else>
  44. <el-collapse-item title="基础信息" name="1">
  45. <show-data-table :columns="basicColumns" :sitem="sitem" border>
  46. <template slot="good_img">
  47. <template v-if="sitem && sitem.good_img">
  48. <div style="max-height: 24px; overflow: hidden">
  49. <el-image
  50. style="height: 24px; width: 24px; margin-right: 5px"
  51. v-for="(img, index) in Array.isArray(sitem.good_img) ? sitem.good_img : sitem.good_img.split(',')"
  52. :src="img"
  53. :preview-src-list="Array.isArray(sitem.good_img) ? sitem.good_img : sitem.good_img.split(',')"
  54. :key="index"
  55. />
  56. </div>
  57. </template>
  58. </template>
  59. <template slot="create_source">
  60. <el-tag size="mini" :type="sitem.create_source === '1' ? 'warning' : ''">
  61. {{ sitem.create_source === "1" ? "咨询成交商品" : "手动创建商品" }}
  62. </el-tag> <span v-if="Number(sitem.create_source) === 1">,咨询采购价 {{ sitem.cgd_price }}</span>
  63. </template>
  64. <template slot="is_combind">
  65. {{ String(sitem.is_combind) === '1' ? '组合商品' : '非组合商品' }}
  66. </template>
  67. <template slot="packing_spec">
  68. <el-tag
  69. size="mini"
  70. >{{ ( options6.find(({id}) => id === sitem.supply_area) || {}).name || '--' }}</el-tag>
  71. </template>
  72. <template slot="is_auth">
  73. <el-tag
  74. size="mini"
  75. >{{ (options3.find(({id}) => id === sitem.is_auth) || {}).name || '--' }}</el-tag>
  76. </template>
  77. <template slot="good_info_img">
  78. <div style="max-height: 24px; overflow: hidden">
  79. <el-image
  80. v-for="imgSrc in sitem.good_info_img ? sitem.good_info_img.split(',') : []"
  81. style="height: 24px; width: 24px;margin-right: 5px"
  82. :src="imgSrc"
  83. :preview-src-list="[imgSrc]"
  84. />
  85. </div>
  86. </template>
  87. <template slot="cat_info">
  88. {{
  89. sitem.cat_info
  90. ? sitem.cat_info.map(({ name }) => name).join("_")
  91. : "--"
  92. }}
  93. </template>
  94. <template slot="good_name">
  95. <img
  96. v-if="sitem.good_thumb_img"
  97. v-viewer
  98. style="width: 23px; height: 23px; margin: 0 5px 0 0"
  99. class="fl"
  100. :src="sitem.good_thumb_img"
  101. alt
  102. />
  103. <span>{{ sitem.good_name }}</span>
  104. <span v-for="(si, i) in sitem.speclist" :key="si.spec_id + i">
  105. <span v-if="i !== 0">-</span>
  106. <span v-else>_</span>
  107. <span>{{ si.spec_name }}[{{ si.spec_value }}]</span>
  108. </span>
  109. <el-popover placement="top" width="300" trigger="hover">
  110. <ul>
  111. <li v-if="newTime !== '' && isDisplayPrivateField('1')">
  112. <span>商品成本编号:</span>
  113. <span>{{ sitem.spuCode }}</span>
  114. </li>
  115. </ul>
  116. <i slot="reference" class="el-icon-warning-outline fr" />
  117. </el-popover>
  118. </template>
  119. <template slot="noble">
  120. <span v-if="sitem.noble_metal">
  121. {{ sitem.noble_weight ? sitem.noble_weight : "0" }}g-{{
  122. sitem.noble_name
  123. }}-{{ sitem.gold_price ? sitem.gold_price : "0" }}元/g-{{
  124. sitem.is_gold_price + "" === "0" ? "不" : ""
  125. }}启用实时金价-{{ sitem.is_diff + "" === "1" ? "有" : "无" }}工差-{{
  126. sitem.config
  127. }}-{{ sitem.other_config }}
  128. </span>
  129. </template>
  130. <template slot="weight">{{ sitem.weight }}g</template>
  131. <template slot="tax">{{ sitem.tax }}%</template>
  132. <template slot="is_stock">{{ String(sitem.is_stock) === "0" ? "非库存品" : "库存品" }}</template>
  133. <template
  134. slot="is_exclusive"
  135. >{{ String(sitem.is_exclusive) === "0" ? "非泰康" : "泰康" }}</template>
  136. <template slot="noble_weight">{{ sitem.noble_weight }}g</template>
  137. <template slot="is_gold_price">
  138. {{
  139. String(sitem.is_gold_price) === "1" ? "是" : "否"
  140. }}
  141. </template>
  142. <template slot="is_diff">
  143. {{
  144. String(sitem.is_diff) === "1" ? "有公差" : "无工差"
  145. }}
  146. </template>
  147. <template slot="packing_weight">{{ sitem.packing_weight }}g</template>
  148. <template slot="delivery_day">{{ sitem.delivery_day }}天</template>
  149. <template slot="lead_time">{{ sitem.lead_time }}天</template>
  150. <template slot="sample_day">{{ sitem.sample_day }}天</template>
  151. <template slot="delivery_place">{{ delivery_place }}</template>
  152. <template slot="origin_place">{{ origin_place }}</template>
  153. </show-data-table>
  154. </el-collapse-item>
  155. <el-collapse-item
  156. title="子商品信息"
  157. v-if="sitem.combind_list && sitem.combind_list.length > 0"
  158. name="4"
  159. >
  160. <el-table :data="sitem.combind_list" size="mini" border max-height="350px">
  161. <el-table-column label="子商品成本编号" prop="childCode" min-width="160px" />
  162. <el-table-column
  163. label="子商品名称"
  164. prop="child_name"
  165. min-width="180px"
  166. show-overflow-tooltip
  167. />
  168. <el-table-column label="组合比例" prop="child_num" width="100px" />
  169. <el-table-column label="操作" width="60px">
  170. <template slot-scope="scope">
  171. <el-tooltip effect="dark" content="查看" placement="top">
  172. <i
  173. class="el-icon-view tb-icon"
  174. @click="onChildProdChange(scope.$index, 'view')"
  175. ></i>
  176. </el-tooltip>
  177. </template>
  178. </el-table-column>
  179. </el-table>
  180. </el-collapse-item>
  181. <el-collapse-item title="固定与阶梯成本" name="2" v-if="isDisplayPrivateField('1')">
  182. <show-data-table :columns="ladderColumns" :sitem="sitem">
  183. <template slot="demo_fee">{{ sitem.demo_fee }}元</template>
  184. <template slot="open_fee">{{ sitem.open_fee }}元</template>
  185. <template slot="sample_fee">{{ sitem.sample_fee }}元</template>
  186. <template slot="market_price">{{ sitem.market_price }}元</template>
  187. <template slot="cgd_price">{{ sitem.cgd_price }}元</template>
  188. <template slot="data_table">
  189. <el-table size="mini" :data="sitem.nakelist">
  190. <el-table-column prop="min_num" label="起订量(>=)" />
  191. <el-table-column prop="nake_fee" label="成本单价" />
  192. <el-table-column prop="cost_fee" label="工艺费" />
  193. <el-table-column prop="delivery_fee" label="物流费" />
  194. <el-table-column prop="cert_fee" label="证书费" />
  195. <el-table-column prop="mark_fee" label="加标费" />
  196. <el-table-column prop="package_fee" label="包装费" />
  197. <el-table-column prop="other_fee" label="其他费用" />
  198. <el-table-column prop="nake_total" label="成本合计" />
  199. </el-table>
  200. </template>
  201. </show-data-table>
  202. </el-collapse-item>
  203. <el-collapse-item
  204. name="3"
  205. title="采购部门审批"
  206. v-if="
  207. ((status + '' === '0' && ppowers.some((i) => i == '0')) ||
  208. (status + '' === '2' && ppowers.some((i) => i == '2')) ||
  209. (status + '' === '3' && ppowers.some((i) => i == '3'))) &&
  210. queryType === 'view'
  211. "
  212. >
  213. <exam-form
  214. :statusList="statusList"
  215. :newTime="newTime"
  216. :disabled="false"
  217. :isMust="false"
  218. @searchChange="examForm"
  219. />
  220. </el-collapse-item>
  221. </template>
  222. </el-collapse>
  223. </el-tab-pane>
  224. <el-tab-pane label="最近修改记录" name="2" v-if="queryType !== 'add'">
  225. <type-change-item v-if="newTime !== ''" :newTime="newTime" :type="'3'" :code="queryId" />
  226. </el-tab-pane>
  227. <el-tab-pane label="审批记录" name="3" v-if="queryType !== 'add'">
  228. <process-time-line
  229. v-if="newTime !== ''"
  230. :newTime="newTime"
  231. :type="'SPCB'"
  232. :orderCode="queryId"
  233. />
  234. </el-tab-pane>
  235. <el-tab-pane label="流程图" name="4" v-if="queryType !== 'add'">
  236. <flow-chart process_id="15" type="SPCB" :orderCode="queryId" />
  237. </el-tab-pane>
  238. <el-tab-pane label="商品预览" name="5" v-if="queryType !== 'add'">
  239. <good-preview v-if="newTime !== ''"
  240. :newTime="newTime"
  241. :sitem="sitem"/>
  242. </el-tab-pane>
  243. </el-tabs>
  244. </div>
  245. <div v-else>
  246. <no-auth></no-auth>
  247. </div>
  248. <product-modal
  249. :type="modalType"
  250. :editIndex="editIndex"
  251. :editItem="editItem"
  252. :visible.sync="visible"
  253. />
  254. </div>
  255. </template>
  256. <script>
  257. import ShowDataTable from "@/views/standingBook/components/detail-data-table.vue";
  258. import asyncRequest from "@/apis/service/goodStore/goodsCost";
  259. import ProductModal from "./components/productModal.vue";
  260. import privateField from "@/mixins/privateField";
  261. import costForm from "./components/costDetail";
  262. import baseForm from "./components/baseForm";
  263. import baseFormNormal from "./components/baseFormNormal";
  264. import goodPreview from "./components/goodPreview";
  265. import resToken from "@/mixins/resToken";
  266. import { mapGetters } from "vuex";
  267. import {
  268. packingColumns,
  269. ladderColumns,
  270. basicColumns,
  271. imageColumns,
  272. sendColumns,
  273. options3,
  274. options6
  275. } from "./columns";
  276. export default {
  277. name: "goodsCostDetail",
  278. mixins: [resToken, privateField],
  279. components: {
  280. baseFormNormal,
  281. ShowDataTable,
  282. ProductModal,
  283. baseForm,
  284. costForm,
  285. goodPreview
  286. },
  287. computed: {
  288. ...mapGetters([
  289. "tablebtnSize",
  290. "searchSize",
  291. "size",
  292. "private_field",
  293. "originLevel"
  294. ]),
  295. createSource(){
  296. return this.$route.query.createSource
  297. },
  298. powers() {
  299. const { btnList } = this.$store.getters;
  300. const tran =
  301. btnList.find(item => item.menu_route == "goodsCostDetail") || {};
  302. const { action } = tran ?? {};
  303. return action ?? [];
  304. },
  305. ppowers() {
  306. const tran =
  307. this.$store.getters.roleProcess.find(i => i.process_type === "SPCB") ||
  308. {};
  309. const { action } = tran ?? {};
  310. return action ?? [];
  311. }
  312. },
  313. data() {
  314. return {
  315. statusList: [],
  316. basicColumns,
  317. packingColumns,
  318. options3,
  319. options6,
  320. sendColumns,
  321. imageColumns,
  322. ladderColumns,
  323. size: "small",
  324. activeTabs: "1",
  325. activeNames: ["0", "1", "2", "3", "4", "5", "6"],
  326. newTime: "",
  327. loading: false,
  328. queryType: "",
  329. queryId: "",
  330. status: "",
  331. sitem: null,
  332. delivery_place: "",
  333. origin_place: "",
  334. editItem: null,
  335. editIndex: -1,
  336. visible: false,
  337. modalType: ""
  338. };
  339. },
  340. mounted() {
  341. this.initForm();
  342. },
  343. methods: {
  344. onChildProdChange(index = null, type = "view") {
  345. this.modalType = type;
  346. this.editItem =
  347. index === null ? null : { ...this.sitem.combind_list[index] };
  348. this.editIndex = index === null ? -1 : index;
  349. this.visible = true;
  350. },
  351. async initForm() {
  352. const { id, type } = this.$route.query;
  353. this.queryId = id;
  354. this.queryType = type;
  355. this.activeTabs = type === "add" ? "0" : "1";
  356. this.loading = true;
  357. if (this.queryType === "add") {
  358. this.sitem = {};
  359. this.getNewTime();
  360. } else {
  361. await this.initData();
  362. await this.getArea("delivery_place");
  363. await this.getArea("origin_place");
  364. }
  365. this.loading = false;
  366. },
  367. // 点击业务审核的保存按钮
  368. async examForm(e) {
  369. if (!this.loading) {
  370. let type = "";
  371. if (e.state + "" === "1") {
  372. type = "1";
  373. } else {
  374. type =
  375. this.status + "" === "0"
  376. ? "6"
  377. : this.status + "" === "2"
  378. ? "4"
  379. : this.status + "" === "3"
  380. ? "5"
  381. : "";
  382. }
  383. await this.setstatus(type, "提交采购部门审核", e.remark);
  384. }
  385. },
  386. async getArea(prop = "delivery_place") {
  387. const chunks = this.sitem[prop].split(",");
  388. if(chunks.length !== 3) return ""
  389. let { data: province } = await asyncRequest.province();
  390. province = province.find(
  391. ({ province_code }) => province_code === chunks[0]
  392. );
  393. let { data: city } = await asyncRequest.city({ code: chunks[0] });
  394. city = city.find(({ city_code }) => city_code === chunks[1]);
  395. let { data: area } = await asyncRequest.area({ code: chunks[1] });
  396. area = area.find(({ area_code }) => area_code === chunks[2]);
  397. this[prop] = [province, city, area].map(({ name }) => name).join("_");
  398. },
  399. async setstatus(type, detail, remark) {
  400. await this.$confirm(`确定要${detail}?`, {
  401. confirmButtonText: "确定",
  402. cancelButtonText: "取消",
  403. type: "warning"
  404. })
  405. .then(async () => {
  406. let _model = {
  407. spuCode: this.queryId,
  408. status: type,
  409. remark: remark
  410. };
  411. let res = await asyncRequest.status(_model);
  412. if (res && res.code === 0) {
  413. this.$notify.success({
  414. title: "提交成功!",
  415. message: ""
  416. });
  417. await this.initForm();
  418. } else if (res && res.code >= 100 && res.code <= 104) {
  419. await this.logout();
  420. } else {
  421. this.$message.warning(res.message);
  422. }
  423. })
  424. .catch(() => {
  425. console.log("取消");
  426. });
  427. },
  428. handleClick(row) {
  429. console.log(row);
  430. },
  431. async refresh(e) {
  432. await this.routeReGoto("goodsCost", {});
  433. },
  434. async initData() {
  435. this.loading = true;
  436. const { code, message, data } = await asyncRequest.detail({
  437. spuCode: this.queryId
  438. });
  439. this.loading = false;
  440. if (code === 0) {
  441. this.sitem = JSON.parse(JSON.stringify(data));
  442. const { status } = this.sitem;
  443. this.status = status;
  444. this.getNewTime();
  445. } else if (code >= 100 && code <= 104) {
  446. await this.logout();
  447. } else {
  448. this.$message.warning(message);
  449. }
  450. },
  451. getNewTime() {
  452. this.newTime = new Date().valueOf();
  453. }
  454. }
  455. };
  456. </script>
  457. <style lang="scss" scoped>
  458. .goodsCostDetail {
  459. width: 100%;
  460. box-sizing: border-box;
  461. .goodsCostDetail-main {
  462. box-sizing: border-box;
  463. padding: 10px;
  464. height: 100%;
  465. width: 100%;
  466. }
  467. .goodsCostDetail-title {
  468. border-top: 1px solid #ebeef5;
  469. span {
  470. height: 50px;
  471. line-height: 50px;
  472. font-family: "微软雅黑", sans-serif;
  473. font-weight: 400;
  474. font-style: normal;
  475. font-size: 16fpx;
  476. text-align: left;
  477. }
  478. }
  479. /deep/ .ddiv {
  480. border-top: 1px solid #dcdfe6;
  481. }
  482. /deep/ .dtitle {
  483. width: 40px;
  484. text-align: center;
  485. height: 100%;
  486. min-height: 100%;
  487. ul {
  488. padding: 12px 0 0 0;
  489. }
  490. }
  491. /deep/ .dmain {
  492. padding: 20px 0 0 0;
  493. width: calc(100% - 40px);
  494. border-left: 1px solid #dcdfe6;
  495. }
  496. }
  497. </style>