index.vue 12 KB

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