detail.vue 17 KB

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