index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. <template>
  2. <div class="consultOrder pagePadding">
  3. <div
  4. v-if="powers && powers.length > 0 && powers.some((item) => item == '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="24">
  30. <el-col :span="4" style="width: 140px">
  31. <el-select
  32. :size="searchSize"
  33. v-model="parmValue.zxtype"
  34. filterable
  35. clearable
  36. placeholder="咨询类型"
  37. style="width: 100%"
  38. @change="
  39. pageInfo.curr = 1;
  40. parmValue.page = 1;
  41. searchList();
  42. "
  43. >
  44. <el-option
  45. v-for="item in statusList"
  46. :key="'zxtype' + item"
  47. :label="iteme"
  48. :value="item"
  49. />
  50. </el-select>
  51. </el-col>
  52. <el-col :span="4" style="width: 420px; padding: 0 0 0 10px">
  53. <search-customer
  54. :value="customerCode"
  55. :size="searchSize"
  56. :placeholder="'客户公司名称'"
  57. @searchChange="customerChange"
  58. />
  59. </el-col>
  60. <el-col :span="3" style="width: 66px; float: right">
  61. <el-button
  62. :size="searchSize"
  63. type="primary"
  64. style="float: right; margin-left: 5px"
  65. @click="searchList"
  66. >
  67. 刷新
  68. </el-button>
  69. </el-col>
  70. </el-col>
  71. </el-row>
  72. <el-row style="padding: 10px 0 0 0">
  73. <el-col :span="24">
  74. <el-col :span="6" style="width: 292px">
  75. <period-date-picker
  76. :start="parmValue.start"
  77. :end="parmValue.end"
  78. :type="1"
  79. :width="'135px'"
  80. :size="searchSize"
  81. @timeReturned="timeReturned($event)"
  82. />
  83. </el-col>
  84. <el-col :span="4" style="width: 350px; padding: 0 0 0 10px">
  85. <el-input
  86. placeholder="关键字"
  87. v-model="input"
  88. :size="searchSize"
  89. >
  90. <el-select
  91. v-model="select"
  92. slot="prepend"
  93. placeholder="请选择"
  94. style="width: 115px"
  95. :size="searchSize"
  96. >
  97. <el-option label="咨询单编码" value="1"></el-option>
  98. <el-option label="申请人" value="2"></el-option>
  99. <el-option label="商品名称" value="3"></el-option>
  100. </el-select>
  101. <el-button
  102. slot="append"
  103. icon="el-icon-search"
  104. @click="
  105. pageInfo.curr = 1;
  106. parmValue.page = 1;
  107. searchList();
  108. "
  109. ></el-button>
  110. </el-input>
  111. </el-col>
  112. <el-col :span="4" style="width: 66px; float: right">
  113. <el-button
  114. type="warning"
  115. class="fr"
  116. :size="searchSize"
  117. @click="restSearch"
  118. >
  119. 重置
  120. </el-button>
  121. </el-col>
  122. </el-col>
  123. </el-row>
  124. </div>
  125. </template>
  126. <template #status="{ scope }">
  127. <el-tag
  128. :size="tablebtnSize"
  129. :type="scope.row.status == '0' ? 'warning' : ''"
  130. v-text="
  131. (statusOptions.find((item) => item.id == scope.row.status) || {})
  132. .label || '--'
  133. "
  134. ></el-tag>
  135. </template>
  136. <template #operation="{ scope }">
  137. <el-tooltip
  138. v-if="powers.some((item) => item == '007')"
  139. effect="dark"
  140. content="详情"
  141. placement="top"
  142. >
  143. <i
  144. class="el-icon-view tb-icon"
  145. @click="openModal(scope.row.id, true)"
  146. ></i>
  147. </el-tooltip>
  148. <el-tooltip
  149. v-if="powers.some((item) => item == '006')"
  150. effect="dark"
  151. content="删除"
  152. placement="top"
  153. >
  154. <i
  155. class="el-icon-delete tb-icon"
  156. @click="deleteById(scope.row.id, scope.row.status)"
  157. ></i>
  158. </el-tooltip>
  159. </template>
  160. </ex-table>
  161. <add-edit
  162. :id="modelId"
  163. :sitem="sitem"
  164. :show-model="showModel"
  165. :is-detail="isDetail"
  166. @refresh="searchList"
  167. @cancel="showModel = false"
  168. />
  169. </div>
  170. <div v-else>
  171. <no-auth></no-auth>
  172. </div>
  173. </div>
  174. </template>
  175. <script>
  176. import mixinPage from "@/mixins/elPaginationHandle";
  177. import resToken from "@/mixins/resToken";
  178. import addEdit from "./addEdit";
  179. import asyncRequest from "@/apis/service/sellOut/consultOrder";
  180. import { mapGetters } from "vuex";
  181. export default {
  182. name: "consultOrder",
  183. mixins: [mixinPage, resToken],
  184. components: {
  185. addEdit,
  186. },
  187. computed: {
  188. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  189. powers() {
  190. let tran =
  191. this.$store.getters.btnList.find(
  192. (item) => item.menu_route == "consultOrder"
  193. ) || {};
  194. if (tran && tran.action && tran.action.length > 0) {
  195. return tran.action;
  196. } else {
  197. return [];
  198. }
  199. },
  200. },
  201. data() {
  202. return {
  203. select: "1",
  204. input: "",
  205. customerCode: [],
  206. sitem: null,
  207. // 状态
  208. statusOptions: [
  209. { id: "0", label: "禁用" },
  210. { id: "1", label: "启用" },
  211. ],
  212. statusList: [
  213. "样品咨询单",
  214. "线上咨询",
  215. "线上贵金属",
  216. "线下咨询",
  217. "线下贵金属",
  218. "赠品咨询单",
  219. "项目竞聘",
  220. ],
  221. loading: true,
  222. showModel: false,
  223. isDetail: false,
  224. modelId: 0,
  225. parmValue: {
  226. zxNo: "", // 咨询单编码
  227. khNo: "", // 客户编码
  228. cpName: "", //商品名称
  229. zxtype: "", //咨询类型
  230. salesman: "", //申请人
  231. start: "",
  232. end: "",
  233. page: 1, // 页码
  234. size: 15, // 每页显示条数
  235. },
  236. tableData: [],
  237. passwordModel: false,
  238. passwordModelId: 0,
  239. isPasswordDetail: false,
  240. // 表格 - 数据
  241. tableData: [],
  242. // 表格 - 参数
  243. table: {
  244. stripe: true,
  245. border: true,
  246. _defaultHeader_: ["setcol"],
  247. },
  248. // 表格 - 分页
  249. pageInfo: {
  250. size: 15,
  251. curr: 1,
  252. total: 0,
  253. },
  254. // 表格 - 列参数
  255. columns: [
  256. {
  257. prop: "zxNo",
  258. label: "咨询单号",
  259. fixed: "left",
  260. width: "152px",
  261. },
  262. {
  263. prop: "sequenceNo",
  264. label: "单据号",
  265. width: "152px",
  266. },
  267. {
  268. prop: "salesman",
  269. label: "申请人",
  270. width: "60px",
  271. },
  272. {
  273. prop: "khNo",
  274. label: "客户公司编码",
  275. width: "125px",
  276. },
  277. {
  278. prop: "khname",
  279. label: "客户公司名称",
  280. "min-width": "160px",
  281. },
  282. {
  283. prop: "zxtype",
  284. label: "咨询类型",
  285. width: "85px",
  286. },
  287. {
  288. prop: "cpname",
  289. label: "产品名称",
  290. "min-width": "160px",
  291. },
  292. {
  293. prop: "unit",
  294. label: "单位",
  295. width: "45px",
  296. },
  297. {
  298. prop: "num",
  299. label: "需求数量",
  300. width: "80px",
  301. },
  302. {
  303. prop: "sale_price",
  304. label: "财务定价",
  305. width: "110px",
  306. },
  307. {
  308. prop: "sale_fee",
  309. label: "最终销售单价",
  310. width: "110px",
  311. },
  312. {
  313. prop: "color",
  314. label: "颜色",
  315. },
  316. {
  317. prop: "model",
  318. label: "型号",
  319. },
  320. {
  321. prop: "material",
  322. label: "材质",
  323. },
  324. // {
  325. // prop: "status",
  326. // label: "状态",
  327. // _slot_: "status",
  328. // width: "80px",
  329. // },
  330. {
  331. prop: "scheme_name",
  332. label: "方案名称",
  333. },
  334. {
  335. prop: "zxtime",
  336. label: "创建时间",
  337. width: "140px",
  338. },
  339. {
  340. prop: "",
  341. label: "操作",
  342. fixed: "right",
  343. _noset_: true,
  344. width: "80px",
  345. _slot_: "operation",
  346. },
  347. ],
  348. };
  349. },
  350. mounted() {
  351. this.searchList();
  352. },
  353. methods: {
  354. async timeReturned(e) {
  355. if (e.startTime !== "") {
  356. this.parmValue.start = e.startTime;
  357. } else {
  358. this.parmValue.start = "";
  359. }
  360. if (e.endTime !== "") {
  361. this.parmValue.end = e.endTime;
  362. } else {
  363. this.parmValue.end = "";
  364. }
  365. if (this.parmValue.start !== "" && this.parmValue.end !== "") {
  366. this.parmValue.page = 1;
  367. await this.searchList();
  368. }
  369. },
  370. restSearch() {
  371. // 表格 - 分页
  372. this.pageInfo = {
  373. size: 15,
  374. curr: 1,
  375. total: 0,
  376. };
  377. this.select = "1";
  378. this.input = "";
  379. this.customerCode = [];
  380. this.parmValue = {
  381. zxNo: "", // 咨询单编码
  382. khNo: "", // 客户编码
  383. cpName: "", //商品名称
  384. zxtype: "", //咨询类型
  385. salesman: "", //申请人
  386. start: "",
  387. end: "",
  388. page: 1, // 页码
  389. size: 15, // 每页显示条数
  390. };
  391. this.searchList();
  392. },
  393. async customerChange(e) {
  394. if (e && e.id) {
  395. this.customerCode = [e.code];
  396. this.parmValue.khNo = e.code;
  397. } else {
  398. this.customerCode = [];
  399. this.parmValue.khNo = "";
  400. }
  401. this.parmValue.page = 1;
  402. await this.searchList();
  403. },
  404. openModal(id, isDetail) {
  405. this.showModel = true;
  406. this.modelId = id;
  407. this.isDetail = isDetail;
  408. },
  409. async deleteById(id, status) {
  410. await this.$confirm("确定要删除?", {
  411. confirmButtonText: "确定",
  412. cancelButtonText: "取消",
  413. type: "warning",
  414. })
  415. .then(async () => {
  416. const model = {
  417. id: id,
  418. // status: status === "1" ? "0" : "1",
  419. };
  420. const res = await asyncRequest.delete(model);
  421. if (res && res.code === 0) {
  422. this.$notify.success({
  423. title: "删除成功",
  424. message: "",
  425. });
  426. this.searchList();
  427. } else if (res && res.code >= 100 && res.code <= 104) {
  428. await this.logout();
  429. } else {
  430. this.$message.warning(res.message);
  431. }
  432. })
  433. .catch(() => {
  434. console.log("取消");
  435. });
  436. },
  437. async searchList() {
  438. this.loading = true;
  439. this.parmValue.zxNo = this.select === "1" ? this.input : ""; //咨询类型
  440. this.parmValue.salesman = this.select === "2" ? this.input : ""; //申请人
  441. this.parmValue.cpName = this.select === "3" ? this.input : ""; //商品名称
  442. const res = await asyncRequest.list(this.parmValue);
  443. if (res && res.code === 0 && res.data) {
  444. this.tableData = res.data.list;
  445. this.tableData.map((v) => {
  446. v.sale_price = this.setNum(v.sale_price);
  447. v.sale_fee = this.setNum(v.sale_fee);
  448. return v;
  449. });
  450. this.pageInfo.total = Number(res.data.count);
  451. } else if (res && res.code >= 100 && res.code <= 104) {
  452. await this.logout();
  453. } else {
  454. this.tableData = [];
  455. this.pageInfo.total = 0;
  456. }
  457. this.loading = false;
  458. },
  459. },
  460. };
  461. </script>
  462. <style lang="scss" scoped>
  463. .consultOrder {
  464. }
  465. </style>