feedbackList.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  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 v-for="(item, index) in show_reject_item" :key="item.id + index" style="margin:-20px 0 0 0">
  174. <li style="line-height: 20px; padding: 0 0 16px 0 ">
  175. 驳回节点:{{
  176. (baoptions.find((it) => it.id == item.status) || {}).label || "--"
  177. }}
  178. </li>
  179. <li>驳回理由:{{ item.remark }}</li>
  180. </ul>
  181. </el-dialog>
  182. </div>
  183. </template>
  184. <script>
  185. import mixinPage from "@/mixins/elPaginationHandle";
  186. import resToken from "@/mixins/resToken";
  187. import asyncRequest from "@/apis/service/sellOut/zixunOrder";
  188. import { feedbackListCol } from "../columns";
  189. import { mapGetters } from "vuex";
  190. import addEditBargain from "./addEditBargain";
  191. import buyGoodModal from "./buyGoodModal";
  192. import showGoodsDataTableModal from "@/components/show-goods-data-table-modal";
  193. export default {
  194. name: "zixunOrder",
  195. mixins: [mixinPage, resToken],
  196. props: ["id", "newTime", "sitem"],
  197. components: {
  198. addEditBargain,
  199. buyGoodModal,
  200. showGoodsDataTableModal,
  201. },
  202. computed: {
  203. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  204. powers() {
  205. let tran =
  206. this.$store.getters.btnList.find(
  207. (item) => item.menu_route == "zixunOrderDetail"
  208. ) || {};
  209. if (tran && tran.action && tran.action.length > 0) {
  210. return tran.action;
  211. } else {
  212. return [];
  213. }
  214. },
  215. },
  216. watch: {
  217. newTime: function (val) {
  218. if (val) {
  219. const { is_project, status } = this.sitem;
  220. this.is_project = is_project;
  221. this.status = status;
  222. this.searchList();
  223. }
  224. },
  225. },
  226. data() {
  227. return {
  228. row: {},
  229. visible: false,
  230. view_spuCode: "",
  231. view_show: false,
  232. wantBmodel: false,
  233. wantBsitem: "",
  234. select: "1",
  235. s_input: "",
  236. status: "",
  237. bayGoodShowModel: false,
  238. bayGoodItem: {},
  239. is_project: false,
  240. customerCode: [], //客户公司code
  241. baoptions: [
  242. { id: "1", label: "待业务主管审批" },
  243. { id: "2", label: "待财务专员审批" },
  244. { id: "3", label: "待财务主管审批" },
  245. { id: "4", label: "审批通过" },
  246. { id: "5", label: "业务主管驳回" },
  247. { id: "6", label: "财务主管驳回" },
  248. { id: "7", label: "已取消议价" },
  249. ],
  250. options: [
  251. { id: "0", label: "待发布竞标" },
  252. { id: "1", label: "招标进行中" },
  253. { id: "2", label: "招标已结束" },
  254. { id: "3", label: "待选择商品" },
  255. { id: "4", label: "已选商品待下单" },
  256. { id: "5", label: "已成功转单" },
  257. { id: "6", label: "已取消转单" },
  258. { id: "7", label: "招标已暂停" },
  259. ],
  260. sitem: null,
  261. // 状态
  262. statusOptions: [
  263. { id: "0", label: "采返已结束", type: "info" },
  264. { id: "1", label: "采返已结束", type: "info" },
  265. { id: "2", label: "采返已结束", type: "info" },
  266. { id: "3", label: "等待议价结果", type: "warning" },
  267. { id: "4", label: "等待议价结果", type: "warning" },
  268. { id: "5", label: "议价已结束", type: "" },
  269. { id: "6", label: "已选择该商品", type: "success" },
  270. // 0待提交1待任务结束 2 待咨询确认 3议价待财务定价4 待主管确认5 待咨询确认定价6 咨询确认
  271. ],
  272. loading: true,
  273. showModel: false,
  274. isDetail: false,
  275. show_reject_item: null,
  276. show_reject_model: false,
  277. modelId: 0,
  278. parmValue: {
  279. zxNo: "",
  280. infoNo: "",
  281. bidNo: "",
  282. projectNo: "",
  283. page: 1, // 页码
  284. size: 15, // 每页显示条数
  285. },
  286. // 表格 - 数据
  287. tableData: [],
  288. // 表格 - 参数
  289. table: {
  290. stripe: true,
  291. border: true,
  292. // _defaultHeader_: ["setcol"],
  293. },
  294. // 表格 - 分页
  295. pageInfo: {
  296. size: 15,
  297. curr: 1,
  298. total: 0,
  299. },
  300. // 表格 - 列参数
  301. columns: feedbackListCol,
  302. };
  303. },
  304. mounted() {
  305. console.log(this.sitem);
  306. const { is_project, status } = this.sitem;
  307. this.is_project = is_project;
  308. this.status = status;
  309. this.searchList();
  310. },
  311. methods: {
  312. show_view(row) {
  313. this.row = row;
  314. this.visible = true;
  315. },
  316. restSearch() {
  317. this.parmValue = {
  318. zxNo: "",
  319. infoNo: "",
  320. bidNo: "",
  321. projectNo: "",
  322. page: 1, // 页码
  323. size: 15, // 每页显示条数
  324. };
  325. // 表格 - 分页
  326. this.pageInfo = {
  327. size: 15,
  328. curr: 1,
  329. total: 0,
  330. };
  331. this.searchList();
  332. },
  333. show_reject(row) {
  334. this.show_reject_item = [];
  335. this.show_reject_item.push(row.reject);
  336. this.show_reject_model = true;
  337. },
  338. wantBargaining(row) {
  339. this.wantBsitem = row;
  340. this.wantBmodel = true;
  341. },
  342. openModal(id, isDetail, sitem) {
  343. this.showModel = true;
  344. this.modelId = id;
  345. this.isDetail = isDetail;
  346. this.sitem = sitem;
  347. },
  348. // 列表搜索
  349. async searchList() {
  350. this.loading = true;
  351. this.parmValue.infoNo = this.id;
  352. const res = await asyncRequest.feedList(this.parmValue);
  353. if (res && res.code === 0 && res.data) {
  354. this.tableData = res.data.list;
  355. this.pageInfo.total = Number(res.data.count);
  356. } else if (res && res.code >= 100 && res.code <= 104) {
  357. await this.logout();
  358. } else {
  359. this.tableData = [];
  360. this.pageInfo.total = 0;
  361. }
  362. this.loading = false;
  363. },
  364. async change_goods(bidNo) {
  365. await this.$confirm("确定要选择该商品下单?", {
  366. confirmButtonText: "确定",
  367. cancelButtonText: "取消",
  368. type: "warning",
  369. })
  370. .then(async () => {
  371. this.loading = true;
  372. const model = {
  373. bidNo: bidNo,
  374. };
  375. const res = await asyncRequest.bidscheck(model);
  376. if (res && res.code === 0) {
  377. this.loading = false;
  378. this.$notify.success({
  379. title: "选择商品成功!",
  380. message: "",
  381. });
  382. this.$emit("resGoodOk");
  383. } else if (res && res.code >= 100 && res.code <= 104) {
  384. await this.logout();
  385. } else {
  386. this.$message.warning(res.message);
  387. }
  388. })
  389. .catch(() => {
  390. console.log("取消");
  391. });
  392. },
  393. async statusConfirm(id, status) {
  394. let str = status === "1" ? "禁用" : "启用";
  395. await this.$confirm("确定要改为" + str + "?", {
  396. confirmButtonText: "确定",
  397. cancelButtonText: "取消",
  398. type: "warning",
  399. })
  400. .then(async () => {
  401. this.loading = true;
  402. const model = {
  403. id: id,
  404. status: status === "1" ? "0" : "1",
  405. };
  406. const res = await asyncRequest.status(model);
  407. if (res && res.code === 0) {
  408. this.loading = false;
  409. this.$notify.success({
  410. title: "状态修改成功!",
  411. message: "",
  412. });
  413. await this.searchList();
  414. } else if (res && res.code >= 100 && res.code <= 104) {
  415. await this.logout();
  416. } else {
  417. this.$message.warning(res.message);
  418. }
  419. })
  420. .catch(() => {
  421. console.log("取消");
  422. });
  423. },
  424. buy_goods(row) {
  425. const { company, khname, platform_name, arrival_time, num } = this.sitem;
  426. this.bayGoodItem = JSON.parse(JSON.stringify(row));
  427. this.bayGoodItem.in_company = company;
  428. this.bayGoodItem.in_khname = khname;
  429. this.bayGoodItem.in_platform_name = platform_name;
  430. this.bayGoodItem.in_arrival_time = arrival_time;
  431. this.bayGoodItem.in_num = num;
  432. this.bayGoodShowModel = true;
  433. // console.log(row);
  434. },
  435. // 时间选择事件
  436. async handleTime(e) {
  437. if (e.startTime !== "") {
  438. this.parmValue.start = e.startTime;
  439. } else {
  440. this.parmValue.start = "";
  441. }
  442. if (e.endTime !== "") {
  443. this.parmValue.end = e.endTime;
  444. } else {
  445. this.parmValue.end = "";
  446. }
  447. if (this.parmValue.start !== "" && this.parmValue.end !== "") {
  448. this.pageInfo.curr = 1;
  449. this.parmValue.page = 1;
  450. await this.searchList();
  451. }
  452. },
  453. async customerChange(e) {
  454. if (e && e.id) {
  455. this.customerCode = [e.code];
  456. this.parmValue.customer_code = e.code;
  457. } else {
  458. this.customerCode = [];
  459. this.parmValue.customer_code = "";
  460. }
  461. this.pageInfo.curr = 1;
  462. this.parmValue.page = 1;
  463. await this.searchList();
  464. },
  465. },
  466. };
  467. </script>
  468. <style lang="scss" scoped>
  469. .zixunOrder {
  470. }
  471. /deep/ .el-dialog {
  472. width: 1024px;
  473. }
  474. </style>