index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. <template>
  2. <div class="bargainList pagePadding">
  3. <div
  4. v-if=" powers.some((i) => i == '001')"
  5. >
  6. <ex-table
  7. v-loading="loading"
  8. :table="table"
  9. :data="tableData"
  10. :columns="columns"
  11. :page="pageInfo"
  12. :size="size"
  13. @page-curr-change="handlePageChange"
  14. @page-size-change="handleSizeChange"
  15. @screen-reset="
  16. pageInfo.curr = 1;
  17. parmValue.page = 1;
  18. searchList();
  19. "
  20. @screen-submit="
  21. pageInfo.curr = 1;
  22. parmValue.page = 1;
  23. searchList();
  24. "
  25. >
  26. <template #table-header="{}">
  27. <div style="width: 100%">
  28. <el-row style="padding: 0 0 0 80px">
  29. <el-col :span="4" style="width: 130px">
  30. <el-select
  31. :size="searchSize"
  32. v-model="parmValue.status"
  33. clearable
  34. placeholder="状态"
  35. @change="
  36. pageInfo.curr = 1;
  37. parmValue.page = 1;
  38. searchList();
  39. "
  40. >
  41. <el-option
  42. v-for="item in statusList"
  43. :key="item.id"
  44. :label="item.label"
  45. :value="item.id"
  46. >
  47. </el-option>
  48. </el-select>
  49. </el-col>
  50. <el-col :span="4" style="width: 301px; padding: 0 0 0 10px">
  51. <period-date-picker
  52. :start="parmValue.start"
  53. :end="parmValue.end"
  54. :width="'134px'"
  55. :size="searchSize"
  56. @timeReturned="handleTime"
  57. />
  58. </el-col>
  59. <el-col :span="3" style="width: 66px; float: right">
  60. <el-button
  61. :size="searchSize"
  62. type="primary"
  63. style="float: right; margin-left: 5px"
  64. @click="searchList"
  65. >
  66. 刷新
  67. </el-button>
  68. </el-col>
  69. <el-col :span="4" class="fr" style="width: 66px">
  70. <el-button
  71. type="warning"
  72. class="fr"
  73. :size="searchSize"
  74. @click="restSearch"
  75. >
  76. 重置
  77. </el-button>
  78. </el-col>
  79. </el-row>
  80. <el-row>
  81. <el-col :span="4" style="width: 420px;margin-top: 10px; ">
  82. <el-input
  83. clearable
  84. :size="searchSize"
  85. placeholder="关键字"
  86. v-model="s_input"
  87. maxlength="40"
  88. @blur="
  89. pageInfo.curr = 1;
  90. parmValue.page = 1;
  91. searchList();
  92. "
  93. class="input-with-select"
  94. >
  95. <el-select
  96. style="width: 140px"
  97. v-model="select"
  98. slot="prepend"
  99. placeholder="关键字类型"
  100. >
  101. <el-option label="议价单编号" value="1" />
  102. <el-option label="反馈商品编号" value="2" />
  103. <el-option label="竞价单编号" value="3" />
  104. <el-option label="申请人部门" value="4" />
  105. </el-select>
  106. <el-button
  107. slot="append"
  108. icon="el-icon-search"
  109. @click="
  110. pageInfo.curr = 1;
  111. parmValue.page = 1;
  112. searchList();
  113. "
  114. ></el-button>
  115. </el-input>
  116. </el-col>
  117. </el-row>
  118. <el-row>
  119. <el-col :span="4" style="width: 380px;margin-top: 10px;">
  120. <search-customer
  121. :value="parmValue.customer_code"
  122. :size="searchSize"
  123. :placeholder="'企业客户'"
  124. @searchChange="customerChange"
  125. :names="parmValue.supplierName"
  126. :is-detail="true"
  127. />
  128. </el-col>
  129. </el-row>
  130. </div>
  131. </template>
  132. <template #status="{ scope }">
  133. <el-tag
  134. :size="tablebtnSize"
  135. :type="
  136. (statusList.find((item) => item.id == scope.row.status) || {})
  137. .type || ''
  138. "
  139. v-text="
  140. (statusList.find((item) => item.id == scope.row.status) || {})
  141. .label || '--'
  142. "
  143. ></el-tag>
  144. </template>
  145. <template #good_name="{ scope }">
  146. <span>{{ scope.row.good_name }}</span>
  147. <span
  148. v-for="(si, sii) in scope.row.specinfo"
  149. :key="si.spec_value_id + sii"
  150. >
  151. {{ sii == 0 ? "__" : "--" }}{{ si.spec_name }}[{{
  152. si.spec_value_name
  153. }}]</span
  154. >
  155. </template>
  156. <template #can="{ scope }">
  157. <span v-for="(si, sii) in scope.row.can" :key="si.id + sii">
  158. <span v-if="sii !== 0">_</span>{{ si.name }}</span
  159. >
  160. </template>
  161. <template #operation="{ scope }">
  162. <el-tooltip
  163. v-if="powers.some((i) => i == '007')"
  164. effect="dark"
  165. content="详情"
  166. placement="top"
  167. >
  168. <i
  169. class="el-icon-view tb-icon"
  170. @click="getRouter('bargainListDetail', scope.row.bargainNo )"
  171. ></i>
  172. </el-tooltip>
  173. </template>
  174. </ex-table>
  175. </div>
  176. <div v-else>
  177. <no-auth></no-auth>
  178. </div>
  179. </div>
  180. </template>
  181. <script>
  182. import mixinPage from "@/mixins/elPaginationHandle";
  183. import resToken from "@/mixins/resToken";
  184. import asyncRequest from "@/apis/service/sellOut/bargainList";
  185. import companyHelper from "@/mixins/companyHelper"
  186. import { listCol, statusList } from "./columns";
  187. import { mapGetters } from "vuex";
  188. export default {
  189. name: "bargainList",
  190. mixins: [mixinPage, resToken, companyHelper],
  191. computed: {
  192. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  193. powers() {
  194. const tran =
  195. this.$store.getters.btnList.find(
  196. (item) => item.menu_route == "bargainList"
  197. ) || {};
  198. const { action } = tran ?? {};
  199. return action ?? [];
  200. },
  201. },
  202. data() {
  203. return {
  204. select: "1",
  205. s_input: "",
  206. customerCode: [], //客户公司code
  207. statusList,
  208. sitem: null,
  209. loading: true,
  210. showModel: false,
  211. isDetail: false,
  212. modelId: 0,
  213. parmValue: {
  214. supplierName: "",
  215. customer_code: "",
  216. bidsNo: "", // 反馈编号
  217. infoNo: "", // 竞价单编号
  218. status: "", // 状态
  219. bargainNo: "", //议价编号
  220. status: "", //售后退货单处理状态
  221. start: "",
  222. end: "",
  223. page: 1, // 页码
  224. size: 15, // 每页显示条数
  225. company_name:"",
  226. },
  227. // 表格 - 数据
  228. tableData: [],
  229. // 表格 - 参数
  230. table: {
  231. stripe: true,
  232. border: true,
  233. _defaultHeader_: ["setcol"],
  234. },
  235. // 表格 - 分页
  236. pageInfo: {
  237. size: 15,
  238. curr: 1,
  239. total: 0,
  240. },
  241. // 表格 - 列参数
  242. columns: listCol,
  243. resultValue: "", //处理结果
  244. };
  245. },
  246. mounted() {
  247. const { back } = this.$route.query;
  248. if (back) {
  249. this.parmValue = JSON.parse(back);
  250. console.log(this.parmValue)
  251. const {page,size}=this.parmValue;
  252. // this.parmValue.start = start || last_start;
  253. // this.parmValue.end = end || last_end;
  254. // if(this.parmValue.customer_code.length>0){
  255. // this.customerCode = [this.parmValue.customer_code] ;
  256. // }
  257. this.pageInfo= {
  258. size: size,
  259. curr: page,
  260. total: 0,
  261. }
  262. //多选条件
  263. this.select = this.parmValue.select;
  264. // this.sselect = this.parmValue.sselect;
  265. this.s_input = this.parmValue.s_input
  266. }else{
  267. this.select = "1";
  268. // this.sselect = "创建时间"
  269. }
  270. this.searchList();
  271. },
  272. methods: {
  273. getRouter(toRouter, queryId){
  274. if (toRouter && queryId) {
  275. let model = {
  276. id: queryId,
  277. type: 'view',
  278. };
  279. //有多选框的条件
  280. this.parmValue.select = this.select ;
  281. // this.parmValue.sselect = this.sselect ;
  282. this.parmValue.s_input= this.s_input;
  283. //
  284. let routerModel = {
  285. options: JSON.parse(JSON.stringify(this.parmValue)),
  286. router: this.$route.path,
  287. };
  288. model.preModel = JSON.stringify(routerModel);
  289. this.routeGoto(toRouter, model);
  290. } else {
  291. this.$message.warning("暂未找到相关流程!");
  292. }
  293. },
  294. restSearch() {
  295. this.customerCode = [];
  296. this.select = "1";
  297. this.s_input = "";
  298. this.parmValue = {
  299. bidsNo: "", // 反馈编号
  300. infoNo: "", // 竞价单编号
  301. bargainNo: "", //议价编号
  302. status: "", // 状态
  303. start: "",
  304. end: "",
  305. page: 1, // 页码
  306. size: 15, // 每页显示条数
  307. company_name:"",
  308. };
  309. // 表格 - 分页
  310. this.pageInfo = {
  311. size: 15,
  312. curr: 1,
  313. total: 0,
  314. };
  315. this.searchList();
  316. },
  317. openModal(id, isDetail, sitem) {
  318. this.showModel = true;
  319. this.modelId = id;
  320. this.isDetail = isDetail;
  321. this.sitem = sitem;
  322. },
  323. async deleteById(id, status) {
  324. await this.$confirm("确定要删除?", {
  325. confirmButtonText: "确定",
  326. cancelButtonText: "取消",
  327. type: "warning",
  328. }).then(async () => {
  329. const model = {
  330. id: id,
  331. status: status + '' === "1" ? "0" : "1",
  332. };
  333. const res = await asyncRequest.status(model);
  334. if (res && res.code === 0) {
  335. this.$notify.success({
  336. title: "删除成功",
  337. message: "",
  338. });
  339. this.searchList();
  340. } else if (res && res.code >= 100 && res.code <= 104) {
  341. await this.logout();
  342. } else {
  343. this.$message.warning(res.message);
  344. }
  345. })
  346. .catch(() => {
  347. console.log("取消");
  348. });
  349. },
  350. // 列表搜索
  351. async searchList() {
  352. if (
  353. (this.parmValue.start !== "" && this.parmValue.end === "") ||
  354. (this.parmValue.start === "" && this.parmValue.end !== "")
  355. ) {
  356. this.$message.warning("时间区间不完整!");
  357. return;
  358. }
  359. this.loading = true;
  360. this.parmValue.bargainNo = this.select === "1" ? this.s_input : "";
  361. this.parmValue.bidsNo = this.select === "2" ? this.s_input : "";
  362. this.parmValue.infoNo = this.select === "3" ? this.s_input : "";
  363. this.parmValue.company_name = this.select === "4" ? this.s_input : "";
  364. const res = await asyncRequest.list({
  365. ...this.parmValue,
  366. companyNo: this.currentCompany,
  367. customer_code: Array.isArray(this.parmValue.customer_code) ? this.parmValue.customer_code[0] : "",
  368. noRelation: true
  369. });
  370. if (res && res.code === 0 && res.data) {
  371. this.tableData = res.data.list;
  372. this.pageInfo.total = Number(res.data.count);
  373. } else if (res && res.code >= 100 && res.code <= 104) {
  374. await this.logout();
  375. } else {
  376. this.tableData = [];
  377. this.pageInfo.total = 0;
  378. }
  379. this.loading = false;
  380. },
  381. async statusConfirm(id, status) {
  382. let str = status + '' === "1" ? "禁用" : "启用";
  383. await this.$confirm("确定要改为" + str + "?", {
  384. confirmButtonText: "确定",
  385. cancelButtonText: "取消",
  386. type: "warning",
  387. })
  388. .then(async () => {
  389. this.loading = true;
  390. const model = {
  391. id: id,
  392. status: status + '' === "1" ? "0" : "1",
  393. };
  394. const res = await asyncRequest.status(model);
  395. if (res && res.code === 0) {
  396. this.loading = false;
  397. this.$notify.success({
  398. title: "状态修改成功!",
  399. message: "",
  400. });
  401. await this.searchList();
  402. } else if (res && res.code >= 100 && res.code <= 104) {
  403. await this.logout();
  404. } else {
  405. this.$message.warning(res.message);
  406. }
  407. })
  408. .catch(() => {
  409. console.log("取消");
  410. });
  411. },
  412. // 时间选择事件
  413. async handleTime(e) {
  414. if (e.startTime !== "") {
  415. this.parmValue.start = e.startTime;
  416. } else {
  417. this.parmValue.start = "";
  418. }
  419. if (e.endTime !== "") {
  420. this.parmValue.end = e.endTime;
  421. } else {
  422. this.parmValue.end = "";
  423. }
  424. if (this.parmValue.start !== "" && this.parmValue.end !== "") {
  425. this.pageInfo.curr = 1;
  426. this.parmValue.page = 1;
  427. await this.searchList();
  428. }
  429. },
  430. async customerChange(e) {
  431. const { code } = e;
  432. this.parmValue.customer_code = code ? [code] : [];
  433. // this.parmValue.supplierName = e.label;
  434. this.pageInfo.curr = 1;
  435. this.parmValue.page = 1;
  436. await this.searchList();
  437. },
  438. },
  439. };
  440. </script>
  441. <style lang="scss" scoped>
  442. .bargainList {
  443. }
  444. </style>