detail.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  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-tabs>
  239. </div>
  240. <div v-else>
  241. <no-auth></no-auth>
  242. </div>
  243. <product-modal
  244. :type="modalType"
  245. :editIndex="editIndex"
  246. :editItem="editItem"
  247. :visible.sync="visible"
  248. />
  249. </div>
  250. </template>
  251. <script>
  252. import ShowDataTable from "@/views/standingBook/components/detail-data-table.vue";
  253. import asyncRequest from "@/apis/service/goodStore/goodsCost";
  254. import ProductModal from "./components/productModal.vue";
  255. import privateField from "@/mixins/privateField";
  256. import costForm from "./components/costDetail";
  257. import baseForm from "./components/baseForm";
  258. import baseFormNormal from "./components/baseFormNormal";
  259. import resToken from "@/mixins/resToken";
  260. import { mapGetters } from "vuex";
  261. import {
  262. packingColumns,
  263. ladderColumns,
  264. basicColumns,
  265. imageColumns,
  266. sendColumns,
  267. options3,
  268. options6
  269. } from "./columns";
  270. export default {
  271. name: "goodsCostDetail",
  272. mixins: [resToken, privateField],
  273. components: {
  274. baseFormNormal,
  275. ShowDataTable,
  276. ProductModal,
  277. baseForm,
  278. costForm
  279. },
  280. computed: {
  281. ...mapGetters([
  282. "tablebtnSize",
  283. "searchSize",
  284. "size",
  285. "private_field",
  286. "originLevel"
  287. ]),
  288. createSource(){
  289. return this.$route.query.createSource
  290. },
  291. powers() {
  292. const { btnList } = this.$store.getters;
  293. const tran =
  294. btnList.find(item => item.menu_route == "goodsCostDetail") || {};
  295. const { action } = tran ?? {};
  296. return action ?? [];
  297. },
  298. ppowers() {
  299. const tran =
  300. this.$store.getters.roleProcess.find(i => i.process_type === "SPCB") ||
  301. {};
  302. const { action } = tran ?? {};
  303. return action ?? [];
  304. }
  305. },
  306. data() {
  307. return {
  308. statusList: [],
  309. basicColumns,
  310. packingColumns,
  311. options3,
  312. options6,
  313. sendColumns,
  314. imageColumns,
  315. ladderColumns,
  316. size: "small",
  317. activeTabs: "1",
  318. activeNames: ["0", "1", "2", "3", "4", "5", "6"],
  319. newTime: "",
  320. loading: false,
  321. queryType: "",
  322. queryId: "",
  323. status: "",
  324. sitem: null,
  325. delivery_place: "",
  326. origin_place: "",
  327. editItem: null,
  328. editIndex: -1,
  329. visible: false,
  330. modalType: ""
  331. };
  332. },
  333. mounted() {
  334. this.initForm();
  335. },
  336. methods: {
  337. onChildProdChange(index = null, type = "view") {
  338. this.modalType = type;
  339. this.editItem =
  340. index === null ? null : { ...this.sitem.combind_list[index] };
  341. this.editIndex = index === null ? -1 : index;
  342. this.visible = true;
  343. },
  344. async initForm() {
  345. const { id, type } = this.$route.query;
  346. this.queryId = id;
  347. this.queryType = type;
  348. this.activeTabs = type === "add" ? "0" : "1";
  349. this.loading = true;
  350. if (this.queryType === "add") {
  351. this.sitem = {};
  352. this.getNewTime();
  353. } else {
  354. await this.initData();
  355. await this.getArea("delivery_place");
  356. await this.getArea("origin_place");
  357. }
  358. this.loading = false;
  359. },
  360. // 点击业务审核的保存按钮
  361. async examForm(e) {
  362. if (!this.loading) {
  363. let type = "";
  364. if (e.state + "" === "1") {
  365. type = "1";
  366. } else {
  367. type =
  368. this.status + "" === "0"
  369. ? "6"
  370. : this.status + "" === "2"
  371. ? "4"
  372. : this.status + "" === "3"
  373. ? "5"
  374. : "";
  375. }
  376. await this.setstatus(type, "提交采购部门审核", e.remark);
  377. }
  378. },
  379. async getArea(prop = "delivery_place") {
  380. const chunks = this.sitem[prop].split(",");
  381. if(chunks.length !== 3) return ""
  382. let { data: province } = await asyncRequest.province();
  383. province = province.find(
  384. ({ province_code }) => province_code === chunks[0]
  385. );
  386. let { data: city } = await asyncRequest.city({ code: chunks[0] });
  387. city = city.find(({ city_code }) => city_code === chunks[1]);
  388. let { data: area } = await asyncRequest.area({ code: chunks[1] });
  389. area = area.find(({ area_code }) => area_code === chunks[2]);
  390. this[prop] = [province, city, area].map(({ name }) => name).join("_");
  391. },
  392. async setstatus(type, detail, remark) {
  393. await this.$confirm(`确定要${detail}?`, {
  394. confirmButtonText: "确定",
  395. cancelButtonText: "取消",
  396. type: "warning"
  397. })
  398. .then(async () => {
  399. let _model = {
  400. spuCode: this.queryId,
  401. status: type,
  402. remark: remark
  403. };
  404. let res = await asyncRequest.status(_model);
  405. if (res && res.code === 0) {
  406. this.$notify.success({
  407. title: "提交成功!",
  408. message: ""
  409. });
  410. await this.initForm();
  411. } else if (res && res.code >= 100 && res.code <= 104) {
  412. await this.logout();
  413. } else {
  414. this.$message.warning(res.message);
  415. }
  416. })
  417. .catch(() => {
  418. console.log("取消");
  419. });
  420. },
  421. handleClick(row) {
  422. console.log(row);
  423. },
  424. async refresh(e) {
  425. await this.routeReGoto("goodsCost", {});
  426. },
  427. async initData() {
  428. this.loading = true;
  429. const { code, message, data } = await asyncRequest.detail({
  430. spuCode: this.queryId
  431. });
  432. this.loading = false;
  433. if (code === 0) {
  434. this.sitem = JSON.parse(JSON.stringify(data));
  435. const { status } = this.sitem;
  436. this.status = status;
  437. this.getNewTime();
  438. } else if (code >= 100 && code <= 104) {
  439. await this.logout();
  440. } else {
  441. this.$message.warning(message);
  442. }
  443. },
  444. getNewTime() {
  445. this.newTime = new Date().valueOf();
  446. }
  447. }
  448. };
  449. </script>
  450. <style lang="scss" scoped>
  451. .goodsCostDetail {
  452. width: 100%;
  453. box-sizing: border-box;
  454. .goodsCostDetail-main {
  455. box-sizing: border-box;
  456. padding: 10px;
  457. height: 100%;
  458. width: 100%;
  459. }
  460. .goodsCostDetail-title {
  461. border-top: 1px solid #ebeef5;
  462. span {
  463. height: 50px;
  464. line-height: 50px;
  465. font-family: "微软雅黑", sans-serif;
  466. font-weight: 400;
  467. font-style: normal;
  468. font-size: 16fpx;
  469. text-align: left;
  470. }
  471. }
  472. /deep/ .ddiv {
  473. border-top: 1px solid #dcdfe6;
  474. }
  475. /deep/ .dtitle {
  476. width: 40px;
  477. text-align: center;
  478. height: 100%;
  479. min-height: 100%;
  480. ul {
  481. padding: 12px 0 0 0;
  482. }
  483. }
  484. /deep/ .dmain {
  485. padding: 20px 0 0 0;
  486. width: calc(100% - 40px);
  487. border-left: 1px solid #dcdfe6;
  488. }
  489. }
  490. </style>