detail.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  1. <template>
  2. <div class="bargainListDetail">
  3. <div
  4. class="bargainListDetail-main"
  5. v-if="powers && powers.length > 0 && powers.some((item) => item == '007')"
  6. >
  7. <el-tabs v-model="projectTabs" v-loading="loading">
  8. <el-tab-pane label="议价单详情" name="1">
  9. <el-collapse v-model="activeNames" style="margin: -18px 0 0 0">
  10. <el-collapse-item :title="'议价详情'" name="1">
  11. <show-data-table
  12. style="padding: -5px 0 10px 0"
  13. :newTime="newTime"
  14. v-if="newTime !== ''"
  15. :sitem="sitem"
  16. :columns="editColumns"
  17. >
  18. <template slot="status">
  19. <el-tag
  20. :size="tablebtnSize"
  21. :type="
  22. (statusList.find((item) => item.id == sitem.status) || {})
  23. .type || ''
  24. "
  25. v-text="
  26. (statusList.find((item) => item.id == sitem.status) || {})
  27. .label || '--'
  28. "
  29. ></el-tag>
  30. </template>
  31. <template slot="good_img">
  32. <img
  33. v-for="(si,sii) in sitem.good_img"
  34. :key="si+sii"
  35. :src="si"
  36. class="fl hover"
  37. v-viewer
  38. style="
  39. width: 23px;
  40. height: 23px;
  41. margin: 0;
  42. vertical-align: top;
  43. "
  44. alt=""
  45. />
  46. </template>
  47. <template slot="specinfo">
  48. <span
  49. v-for="(si, sii) in sitem.specinfo"
  50. :key="si.specid + sii"
  51. >
  52. <span v-if="sii !== 0">--</span>{{ si.spec_name }}[{{
  53. si.spec_value_name
  54. }}]</span
  55. >
  56. </template>
  57. <template slot="can">
  58. <span v-for="(si, sii) in sitem.can" :key="si.id + sii">
  59. <span v-if="sii !== 0">_</span>{{ si.name }}</span
  60. >
  61. </template>
  62. <template slot="is_addrs">
  63. <el-tag
  64. :size="tablebtnSize"
  65. v-text="
  66. (
  67. options12.find((item) => item.id == sitem.is_addrs) ||
  68. {}
  69. ).name || '--'
  70. "
  71. ></el-tag>
  72. </template>
  73. <template slot="is_custom">
  74. <el-tag
  75. :size="tablebtnSize"
  76. v-text="
  77. (
  78. options1.find((item) => item.id == sitem.is_custom) ||
  79. {}
  80. ).name || '--'
  81. "
  82. ></el-tag>
  83. </template>
  84. <template slot="supply_area">
  85. <el-tag
  86. :size="tablebtnSize"
  87. v-text="
  88. (
  89. options6.find(
  90. (item) => item.id === sitem.supply_area
  91. ) || {}
  92. ).name || '--'
  93. "
  94. ></el-tag>
  95. </template>
  96. <template slot="pay_way">
  97. <el-tag
  98. :size="tablebtnSize"
  99. v-text="
  100. (options10.find((item) => item.id == sitem.pay_way) || {})
  101. .name || '--'
  102. "
  103. ></el-tag>
  104. </template>
  105. <template slot="send_way">
  106. <el-tag
  107. :size="tablebtnSize"
  108. v-text="
  109. (
  110. options11.find((item) => item.id == sitem.send_way) ||
  111. {}
  112. ).name || '--'
  113. "
  114. ></el-tag>
  115. </template>
  116. <template slot="good_num">
  117. <span
  118. >{{ sitem.good_num ? sitem.good_num : "0"
  119. }}{{ sitem.unit }}</span
  120. >
  121. </template>
  122. <template slot="metal_id">
  123. <span v-if="sitem.metal_id"
  124. >{{ sitem.noble_weight ? sitem.noble_weight : "0" }}g---{{
  125. sitem.metal_name
  126. }}---{{
  127. sitem.gold_price ? sitem.gold_price : "0"
  128. }}元/g---{{
  129. sitem.is_gold_price === "0" ? "不" : ""
  130. }}启用实时金价---{{
  131. sitem.is_diff === "1" ? "有" : "无"
  132. }}工差---{{ sitem.config }}---{{ sitem.other_config }}</span
  133. >
  134. <span v-else>--</span>
  135. </template>
  136. </show-data-table>
  137. </el-collapse-item>
  138. <el-collapse-item
  139. title="商品成本信息"
  140. name="6"
  141. v-if="
  142. newTime !== '' &&
  143. private_field &&
  144. private_field.length > 0 &&
  145. private_field.some((item) => item == '1')
  146. "
  147. >
  148. <show-data-table
  149. :newTime="newTime"
  150. v-if="newTime !== ''"
  151. :sitem="sitem"
  152. :columns="costArr"
  153. >
  154. </show-data-table>
  155. </el-collapse-item>
  156. <el-collapse-item
  157. title="商品毛利信息"
  158. name="7"
  159. v-if="
  160. newTime !== '' &&
  161. private_field &&
  162. private_field.length > 0 &&
  163. private_field.some((item) => item == '3')
  164. "
  165. >
  166. <show-data-table
  167. :newTime="newTime"
  168. v-if="newTime !== ''"
  169. :sitem="sitem"
  170. :columns="bargainingArr"
  171. >
  172. </show-data-table>
  173. </el-collapse-item>
  174. <el-collapse-item
  175. title="业务部门审批"
  176. name="2"
  177. v-if="
  178. eaxmList.some((item) => item.info_status + '' == '0') ||
  179. (status == '0' && powers.some((item) => item == '043'))
  180. "
  181. >
  182. <exam-formss
  183. :newTime="newTime"
  184. v-if="newTime !== ''"
  185. :disabled="
  186. !(status == '0' && powers.some((item) => item == '043'))
  187. "
  188. :sitem="orderItem"
  189. @searchChange="examFormSubmit($event, '业务部门')"
  190. />
  191. </el-collapse-item>
  192. <el-collapse-item
  193. title="财务专员审批"
  194. name="3"
  195. v-if="
  196. eaxmList.some((item) => item.info_status + '' == '2') ||
  197. (status == '2' && powers.some((item) => item == '058'))
  198. "
  199. >
  200. <exam-formss
  201. :newTime="newTime"
  202. v-if="newTime !== ''"
  203. :disabled="
  204. !(status == '2' && powers.some((item) => item == '058'))
  205. "
  206. :sitem="moneyDirItem"
  207. @searchChange="examFormSubmit($event, '财务专员')"
  208. />
  209. </el-collapse-item>
  210. <el-collapse-item
  211. title="财务主管审批"
  212. name="4"
  213. v-if="
  214. eaxmList.some((item) => item.info_status + '' == '4') ||
  215. (status == '4' && powers.some((item) => item == '059'))
  216. "
  217. >
  218. <exam-formss
  219. :newTime="newTime"
  220. v-if="newTime !== ''"
  221. :disabled="
  222. !(status == '4' && powers.some((item) => item == '059'))
  223. "
  224. :sitem="moneyItem"
  225. @searchChange="examFormSubmit($event, '财务主管')"
  226. />
  227. </el-collapse-item>
  228. <el-collapse-item
  229. title="BOSS审批"
  230. name="5"
  231. v-if="
  232. eaxmList.some((item) => item.info_status + '' == '7') ||
  233. (status == '7' && powers.some((item) => item == '084'))
  234. "
  235. >
  236. <exam-formss
  237. :newTime="newTime"
  238. v-if="newTime !== ''"
  239. :disabled="
  240. !(status == '7' && powers.some((item) => item == '084'))
  241. "
  242. :sitem="BossItem"
  243. @searchChange="examFormSubmit($event, 'BOSS')"
  244. />
  245. </el-collapse-item>
  246. </el-collapse>
  247. </el-tab-pane>
  248. <el-tab-pane label="审批记录" name="3">
  249. <process-time-line
  250. v-if="newTime !== ''"
  251. :newTime="newTime"
  252. :type="'YJD'"
  253. :orderCode="queryId"
  254. />
  255. </el-tab-pane>
  256. </el-tabs>
  257. </div>
  258. <div v-else>
  259. <no-auth></no-auth>
  260. </div>
  261. </div>
  262. </template>
  263. <script>
  264. import examFormss from "./exam-form.vue";
  265. import asyncRequest from "@/apis/service/sellOut/bargainList";
  266. import resToken from "@/mixins/resToken";
  267. import { mapGetters } from "vuex";
  268. import {
  269. editColumns,
  270. costArr,
  271. bargainingArr,
  272. options1,
  273. options2,
  274. options3,
  275. options4,
  276. options5,
  277. options6,
  278. options7,
  279. options8,
  280. options9,
  281. options10,
  282. options11,
  283. options12,
  284. statusList,
  285. } from "./columns";
  286. export default {
  287. components: {
  288. examFormss,
  289. },
  290. name: "bargainListDetail",
  291. mixins: [resToken],
  292. computed: {
  293. ...mapGetters(["tablebtnSize", "searchSize", "size", "private_field"]),
  294. powers() {
  295. let tran =
  296. this.$store.getters.btnList.find(
  297. (item) => item.menu_route == "bargainListDetail"
  298. ) || {};
  299. if (tran && tran.action && tran.action.length > 0) {
  300. return tran.action;
  301. } else {
  302. return [];
  303. }
  304. },
  305. },
  306. data() {
  307. return {
  308. size: "small",
  309. eaxmList: [],
  310. costArr,
  311. bargainingArr,
  312. editColumns,
  313. options1,
  314. options2,
  315. options3,
  316. options4,
  317. options5,
  318. options6,
  319. options7,
  320. options8,
  321. options9,
  322. options10,
  323. options11,
  324. options12,
  325. statusList,
  326. projectTabs: "1",
  327. activeNames: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],
  328. newTime: "",
  329. loading: false,
  330. queryType: "",
  331. queryId: "",
  332. status: "",
  333. sitem: null,
  334. orderItem: {},
  335. moneyDirItem: {},
  336. moneyItem: {},
  337. BossItem: {},
  338. };
  339. },
  340. mounted() {
  341. this.initForm();
  342. },
  343. methods: {
  344. async initForm() {
  345. const { id, type } = this.$route.query;
  346. this.queryId = id;
  347. this.queryType = type;
  348. this.projectTabs = "1";
  349. this.loading = true;
  350. await this.initData();
  351. this.loading = false;
  352. },
  353. handleClick(row) {
  354. console.log(row);
  355. },
  356. async refresh() {
  357. this.routeReGoto("bargainList", {});
  358. },
  359. async initData() {
  360. this.loading = true;
  361. const { code, message, data } = await asyncRequest.detail({
  362. bargainNo: this.queryId,
  363. });
  364. this.eaxmList = [];
  365. this.loading = false;
  366. if (code === 0) {
  367. this.sitem = JSON.parse(JSON.stringify(data));
  368. this.sitem.good_img = this.sitem.good_img
  369. ? this.sitem.good_img.split(",")
  370. : [];
  371. const { status, exam_info } = this.sitem;
  372. this.orderItem = {};
  373. this.moneyDirItem = {};
  374. this.moneyItem = {};
  375. this.BossItem = {};
  376. if (exam_info && exam_info.length > 0) {
  377. exam_info.forEach((e) => {
  378. console.log(e.status);
  379. switch (e.info_status + "") {
  380. case "0":
  381. this.orderItem = JSON.parse(JSON.stringify(e));
  382. break;
  383. case "2":
  384. this.moneyDirItem = JSON.parse(JSON.stringify(e));
  385. break;
  386. case "4":
  387. this.moneyItem = JSON.parse(JSON.stringify(e));
  388. break;
  389. case "7":
  390. this.BossItem = JSON.parse(JSON.stringify(e));
  391. break;
  392. default:
  393. this.orderItem = JSON.parse(JSON.stringify(e));
  394. }
  395. });
  396. this.eaxmList = JSON.parse(JSON.stringify(exam_info));
  397. }
  398. this.status = status;
  399. this.getNewTime();
  400. } else if (code >= 100 && code <= 104) {
  401. await this.logout();
  402. } else {
  403. this.$message.warning(message);
  404. }
  405. },
  406. getNewTime() {
  407. this.newTime = new Date().valueOf();
  408. },
  409. // 点击业务审核的保存按钮
  410. async examFormSubmit(e, title) {
  411. if (!this.loading) {
  412. let model = {
  413. bargainNo: this.queryId,
  414. status: e.state,
  415. remark: e.remark,
  416. };
  417. await this.$confirm(`确定要${title}?`, {
  418. confirmButtonText: "确定",
  419. cancelButtonText: "取消",
  420. type: "warning",
  421. })
  422. .then(async () => {
  423. const { after_price, lower_price } = this.sitem;
  424. if (this.status === "7" && after_price * 1 < lower_price * 1) {
  425. this.loading = false;
  426. await this.$confirm(
  427. `当前商品同意议价后,售价已低于系统最低售价${this.sitem.lower_price}元!`,
  428. `最终售价已低于系统最低售价!是否继续?`,
  429. {
  430. confirmButtonText: "确定",
  431. cancelButtonText: "取消",
  432. type: "error",
  433. }
  434. )
  435. .then(async () => {
  436. this.loading = true;
  437. await this.statusSubmit(model, title);
  438. })
  439. .catch(() => {
  440. this.loading = false;
  441. console.log("取消1");
  442. });
  443. } else {
  444. await this.statusSubmit(model, title);
  445. }
  446. })
  447. .catch(() => {
  448. this.loading = false;
  449. console.log("取消");
  450. });
  451. }
  452. },
  453. async statusSubmit(model, title) {
  454. const { code, data, message } = await asyncRequest.status(model);
  455. this.loading = false;
  456. // console.log("res", data);
  457. if (code === 0) {
  458. this.$notify.success({
  459. title: title + "成功!",
  460. message: "",
  461. });
  462. await this.initForm();
  463. } else if (code >= 100 && code <= 104) {
  464. await this.logout();
  465. } else {
  466. this.$message.warning(message);
  467. }
  468. },
  469. },
  470. };
  471. </script>
  472. <style lang="scss" scoped>
  473. .bargainListDetail {
  474. position: relative;
  475. height: 100%;
  476. width: 100%;
  477. box-sizing: border-box;
  478. .bargainListDetail-main {
  479. position: relative;
  480. padding: 10px;
  481. height: 100%;
  482. width: 100%;
  483. }
  484. .bargainListDetail-title {
  485. border-top: 1px solid #ebeef5;
  486. span {
  487. height: 50px;
  488. line-height: 50px;
  489. font-family: "微软雅黑", sans-serif;
  490. font-weight: 400;
  491. font-style: normal;
  492. font-size: 16fpx;
  493. text-align: left;
  494. }
  495. }
  496. /deep/ .ddiv {
  497. border-top: 1px solid #dcdfe6;
  498. }
  499. /deep/ .dtitle {
  500. width: 40px;
  501. text-align: center;
  502. height: 100%;
  503. min-height: 100%;
  504. ul {
  505. padding: 12px 0 0 0;
  506. }
  507. }
  508. /deep/ .dmain {
  509. padding: 20px 0 0 0;
  510. width: calc(100% - 40px);
  511. border-left: 1px solid #dcdfe6;
  512. }
  513. }
  514. </style>