feedbackList.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. <template>
  2. <div class="zixunOrder pagePadding">
  3. <ex-table
  4. v-loading="loading"
  5. :table="table"
  6. :data="tableData"
  7. :columns="columns"
  8. :page="pageInfo"
  9. :size="size"
  10. @page-curr-change="handlePageChange"
  11. @page-size-change="handleSizeChange"
  12. @screen-reset="
  13. pageInfo.curr = 1;
  14. parmValue.page = 1;
  15. searchList();
  16. "
  17. @screen-submit="
  18. pageInfo.curr = 1;
  19. parmValue.page = 1;
  20. searchList();
  21. "
  22. >
  23. <!-- <template #good_img="{ scope }">
  24. <div
  25. v-if="scope.row.good_img"
  26. style="width: 20px; height: 20px"
  27. class="hover"
  28. v-viewer
  29. >
  30. <img
  31. :src="scope.row.good_img"
  32. style="display: inline-block; width: 100%; height: 100%"
  33. alt=""
  34. />
  35. </div>
  36. </template> -->
  37. <template #status="{ scope }">
  38. <el-tag
  39. :size="tablebtnSize"
  40. :type="
  41. (statusOptions.find((item) => item.id == scope.row.status) || {})
  42. .type || ''
  43. "
  44. v-text="
  45. (statusOptions.find((item) => item.id == scope.row.status) || {})
  46. .label || '--'
  47. "
  48. ></el-tag>
  49. </template>
  50. <template #specinfo="{ scope }">
  51. <span v-for="(si, sii) in scope.row.specinfo" :key="si.specid + sii">
  52. <span v-if="sii !== 0"></span>{{ si.spec_name }}[{{
  53. si.spec_value_name
  54. }}]</span
  55. >
  56. </template>
  57. <template #operation="{ scope }">
  58. <!-- 状态 -->
  59. <el-tooltip
  60. v-if="powers.some((item) => item == '007')"
  61. effect="dark"
  62. content="详情"
  63. placement="top"
  64. >
  65. <i class="el-icon-view tb-icon" @click="show_view(scope.row)"></i>
  66. </el-tooltip>
  67. <el-tooltip
  68. v-if="
  69. powers &&
  70. powers.length > 0 &&
  71. powers.some((item) => item == '068') &&
  72. is_project === '0' &&
  73. scope.row.reject &&
  74. scope.row.reject.id
  75. "
  76. effect="dark"
  77. content="上次议价驳回原因"
  78. placement="top"
  79. >
  80. <i
  81. class="el-icon-warning tb-icon"
  82. @click="show_reject(scope.row)"
  83. ></i>
  84. </el-tooltip>
  85. <el-tooltip
  86. v-if="
  87. powers &&
  88. powers.length > 0 &&
  89. powers.some((item) => item == '068') &&
  90. is_project === '0' &&
  91. (status === '2' ||
  92. status === '7' ||
  93. (status === '3' &&
  94. scope.row.status !== '3' &&
  95. scope.row.status !== '4' &&
  96. scope.row.status !== '6'))
  97. "
  98. effect="dark"
  99. content="发起议价流程"
  100. placement="top"
  101. >
  102. <i
  103. class="el-icon-s-flag tb-icon"
  104. @click="wantBargaining(scope.row)"
  105. ></i>
  106. </el-tooltip>
  107. <el-tooltip
  108. v-if="
  109. powers &&
  110. powers.length > 0 &&
  111. powers.some((item) => item == '069') &&
  112. is_project === '0' &&
  113. scope.row.status !== '6' &&
  114. (status == '3' || status == '2' || status == '7')
  115. "
  116. effect="dark"
  117. content="选择该商品"
  118. placement="top"
  119. >
  120. <i
  121. class="el-icon-s-check tb-icon"
  122. @click="change_goods(scope.row.bidNo)"
  123. ></i>
  124. </el-tooltip>
  125. <el-tooltip
  126. v-if="
  127. powers &&
  128. powers.length > 0 &&
  129. powers.some((item) => item == '070') &&
  130. is_project === '0' &&
  131. scope.row.status === '6' &&
  132. status == '4'
  133. "
  134. effect="dark"
  135. content="下单"
  136. placement="top"
  137. >
  138. <i
  139. class="el-icon-shopping-cart-2 tb-icon"
  140. @click="buy_goods(scope.row)"
  141. ></i>
  142. </el-tooltip>
  143. </template>
  144. </ex-table>
  145. <add-edit-bargain
  146. :showModel="wantBmodel"
  147. :sitem="wantBsitem"
  148. @cancel="wantBmodel = false"
  149. @refresh="(wantBmodel = false), $emit('resGoodOk')"
  150. />
  151. <buy-good-modal
  152. :showModel="bayGoodShowModel"
  153. :sitem="bayGoodItem"
  154. @cancel="bayGoodShowModel = false"
  155. @refresh="(bayGoodShowModel = false), $emit('resGoodOk')"
  156. />
  157. <show-goods-data-table-modal
  158. :showModel="visible"
  159. :type="'3'"
  160. :title="'采返商品详情'"
  161. :skuCode="row.skuCode"
  162. :spuCode="row.spuCode"
  163. :iscgd="true"
  164. @cancel="visible = false"
  165. />
  166. <el-dialog
  167. title="上次议价驳回原因"
  168. :visible.sync="show_reject_model"
  169. width="30%"
  170. @close="show_reject_model = false"
  171. append-to-body
  172. >
  173. <ul
  174. v-for="(item, index) in show_reject_item"
  175. :key="item.id + index"
  176. style="margin: -20px 0 0 0"
  177. >
  178. <li style="line-height: 20px; padding: 0 0 16px 0">
  179. 驳回节点:{{
  180. (baoptions.find((it) => it.id == item.status) || {}).label || "--"
  181. }}
  182. </li>
  183. <li>驳回理由:{{ item.remark }}</li>
  184. </ul>
  185. </el-dialog>
  186. </div>
  187. </template>
  188. <script>
  189. import mixinPage from "@/mixins/elPaginationHandle";
  190. import resToken from "@/mixins/resToken";
  191. import asyncRequest from "@/apis/service/sellOut/zixunOrder";
  192. import { feedbackListCol } from "../columns";
  193. import { mapGetters } from "vuex";
  194. import addEditBargain from "./addEditBargain";
  195. import buyGoodModal from "./buyGoodModal";
  196. import showGoodsDataTableModal from "@/components/show-goods-data-table-modal";
  197. export default {
  198. name: "zixunOrder",
  199. mixins: [mixinPage, resToken],
  200. props: ["id", "newTime", "sitem"],
  201. components: {
  202. addEditBargain,
  203. buyGoodModal,
  204. showGoodsDataTableModal,
  205. },
  206. computed: {
  207. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  208. powers() {
  209. let tran =
  210. this.$store.getters.btnList.find(
  211. (item) => item.menu_route == "zixunOrderDetail"
  212. ) || {};
  213. if (tran && tran.action && tran.action.length > 0) {
  214. return tran.action;
  215. } else {
  216. return [];
  217. }
  218. },
  219. },
  220. watch: {
  221. newTime: function (val) {
  222. if (val) {
  223. const { is_project, status } = this.sitem;
  224. this.is_project = is_project;
  225. this.status = status;
  226. this.searchList();
  227. }
  228. },
  229. },
  230. data() {
  231. return {
  232. row: {},
  233. visible: false,
  234. view_spuCode: "",
  235. view_show: false,
  236. wantBmodel: false,
  237. wantBsitem: "",
  238. select: "1",
  239. s_input: "",
  240. status: "",
  241. bayGoodShowModel: false,
  242. bayGoodItem: {},
  243. is_project: false,
  244. customerCode: [], //客户公司code
  245. baoptions: [
  246. { id: "0", label: "待业务主管审核", type: "warning" },
  247. { id: "1", label: "业务主管通过", type: "success" },
  248. { id: "2", label: "待财务专员审批", type: "warning" },
  249. { id: "3", label: "业务主管驳回", type: "danger" },
  250. { id: "4", label: "待财务主管审核", type: "warning" },
  251. // { id: "5", label: "专员驳回", type: "" },
  252. { id: "6", label: "财务主管通过", type: "success" },
  253. { id: "7", label: "待BOSS审批", type: "warning" },
  254. { id: "8", label: "财务主管驳回", type: "danger" },
  255. { id: "9", label: "boss通过", type: "success" },
  256. { id: "10", label: "boss越线通过", type: "" },
  257. { id: "11", label: "boss驳回", type: "danger" },
  258. ],
  259. options: [
  260. { id: "0", label: "待发布竞标" },
  261. { id: "1", label: "招标进行中" },
  262. { id: "2", label: "招标已结束" },
  263. { id: "3", label: "待选择商品" },
  264. { id: "4", label: "已选商品待下单" },
  265. { id: "5", label: "已成功转单" },
  266. { id: "6", label: "已取消转单" },
  267. { id: "7", label: "招标已暂停" },
  268. ],
  269. sitem: null,
  270. // 状态
  271. statusOptions: [
  272. { id: "0", label: "采返已结束", type: "info" },
  273. { id: "1", label: "采返已结束", type: "info" },
  274. { id: "2", label: "采返已结束", type: "info" },
  275. { id: "3", label: "等待议价结果", type: "warning" },
  276. { id: "4", label: "等待议价结果", type: "warning" },
  277. { id: "5", label: "议价已结束", type: "" },
  278. { id: "6", label: "已选择该商品", type: "success" },
  279. // 0待提交1待任务结束 2 待咨询确认 3议价待财务定价4 待主管确认5 待咨询确认定价6 咨询确认
  280. ],
  281. loading: true,
  282. showModel: false,
  283. isDetail: false,
  284. show_reject_item: null,
  285. show_reject_model: false,
  286. modelId: 0,
  287. parmValue: {
  288. zxNo: "",
  289. infoNo: "",
  290. bidNo: "",
  291. projectNo: "",
  292. page: 1, // 页码
  293. size: 15, // 每页显示条数
  294. },
  295. // 表格 - 数据
  296. tableData: [],
  297. // 表格 - 参数
  298. table: {
  299. stripe: true,
  300. border: true,
  301. // _defaultHeader_: ["setcol"],
  302. },
  303. // 表格 - 分页
  304. pageInfo: {
  305. size: 15,
  306. curr: 1,
  307. total: 0,
  308. },
  309. // 表格 - 列参数
  310. columns: feedbackListCol,
  311. };
  312. },
  313. mounted() {
  314. console.log(this.sitem);
  315. const { is_project, status } = this.sitem;
  316. this.is_project = is_project;
  317. this.status = status;
  318. this.searchList();
  319. },
  320. methods: {
  321. show_view(row) {
  322. this.row = row;
  323. this.visible = true;
  324. },
  325. restSearch() {
  326. this.parmValue = {
  327. zxNo: "",
  328. infoNo: "",
  329. bidNo: "",
  330. projectNo: "",
  331. page: 1, // 页码
  332. size: 15, // 每页显示条数
  333. };
  334. // 表格 - 分页
  335. this.pageInfo = {
  336. size: 15,
  337. curr: 1,
  338. total: 0,
  339. };
  340. this.searchList();
  341. },
  342. show_reject(row) {
  343. this.show_reject_item = [];
  344. this.show_reject_item.push(row.reject);
  345. this.show_reject_model = true;
  346. },
  347. wantBargaining(row) {
  348. this.wantBsitem = row;
  349. this.wantBmodel = true;
  350. },
  351. openModal(id, isDetail, sitem) {
  352. this.showModel = true;
  353. this.modelId = id;
  354. this.isDetail = isDetail;
  355. this.sitem = sitem;
  356. },
  357. // 列表搜索
  358. async searchList() {
  359. this.loading = true;
  360. this.parmValue.infoNo = this.id;
  361. const res = await asyncRequest.feedList(this.parmValue);
  362. if (res && res.code === 0 && res.data) {
  363. this.tableData = res.data.list;
  364. this.pageInfo.total = Number(res.data.count);
  365. } else if (res && res.code >= 100 && res.code <= 104) {
  366. await this.logout();
  367. } else {
  368. this.tableData = [];
  369. this.pageInfo.total = 0;
  370. }
  371. this.loading = false;
  372. },
  373. async change_goods(bidNo) {
  374. await this.$confirm("确定要选择该商品下单?", {
  375. confirmButtonText: "确定",
  376. cancelButtonText: "取消",
  377. type: "warning",
  378. })
  379. .then(async () => {
  380. this.loading = true;
  381. const model = {
  382. bidNo: bidNo,
  383. };
  384. const res = await asyncRequest.bidscheck(model);
  385. if (res && res.code === 0) {
  386. this.loading = false;
  387. this.$notify.success({
  388. title: "选择商品成功!",
  389. message: "",
  390. });
  391. this.$emit("resGoodOk");
  392. } else if (res && res.code >= 100 && res.code <= 104) {
  393. await this.logout();
  394. } else {
  395. this.$message.warning(res.message);
  396. }
  397. })
  398. .catch(() => {
  399. console.log("取消");
  400. });
  401. },
  402. async statusConfirm(id, status) {
  403. let str = status === "1" ? "禁用" : "启用";
  404. await this.$confirm("确定要改为" + str + "?", {
  405. confirmButtonText: "确定",
  406. cancelButtonText: "取消",
  407. type: "warning",
  408. })
  409. .then(async () => {
  410. this.loading = true;
  411. const model = {
  412. id: id,
  413. status: status === "1" ? "0" : "1",
  414. };
  415. const res = await asyncRequest.status(model);
  416. if (res && res.code === 0) {
  417. this.loading = false;
  418. this.$notify.success({
  419. title: "状态修改成功!",
  420. message: "",
  421. });
  422. await this.searchList();
  423. } else if (res && res.code >= 100 && res.code <= 104) {
  424. await this.logout();
  425. } else {
  426. this.$message.warning(res.message);
  427. }
  428. })
  429. .catch(() => {
  430. console.log("取消");
  431. });
  432. },
  433. buy_goods(row) {
  434. const { company, khname, platform_name, arrival_time, num } = this.sitem;
  435. this.bayGoodItem = JSON.parse(JSON.stringify(row));
  436. this.bayGoodItem.in_company = company;
  437. this.bayGoodItem.in_khname = khname;
  438. this.bayGoodItem.in_platform_name = platform_name;
  439. this.bayGoodItem.in_arrival_time = arrival_time;
  440. this.bayGoodItem.in_num = num;
  441. this.bayGoodShowModel = true;
  442. // console.log(row);
  443. },
  444. // 时间选择事件
  445. async handleTime(e) {
  446. if (e.startTime !== "") {
  447. this.parmValue.start = e.startTime;
  448. } else {
  449. this.parmValue.start = "";
  450. }
  451. if (e.endTime !== "") {
  452. this.parmValue.end = e.endTime;
  453. } else {
  454. this.parmValue.end = "";
  455. }
  456. if (this.parmValue.start !== "" && this.parmValue.end !== "") {
  457. this.pageInfo.curr = 1;
  458. this.parmValue.page = 1;
  459. await this.searchList();
  460. }
  461. },
  462. async customerChange(e) {
  463. if (e && e.id) {
  464. this.customerCode = [e.code];
  465. this.parmValue.customer_code = e.code;
  466. } else {
  467. this.customerCode = [];
  468. this.parmValue.customer_code = "";
  469. }
  470. this.pageInfo.curr = 1;
  471. this.parmValue.page = 1;
  472. await this.searchList();
  473. },
  474. },
  475. };
  476. </script>
  477. <style lang="scss" scoped>
  478. .zixunOrder {
  479. }
  480. /deep/ .el-dialog {
  481. width: 1024px;
  482. }
  483. </style>