index.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. <template>
  2. <div class="workbench">
  3. <div
  4. class="workbench-main"
  5. v-loading="loading"
  6. v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
  7. >
  8. <ul class="clear">
  9. <li>
  10. <div class="taskTitle color1">咨询单任务</div>
  11. <div class="taskList clear">
  12. <div
  13. class="aaa"
  14. v-for="item in list"
  15. :key="item"
  16. @click="routeGoto('workbenchDetail', { id: 'INF2203151428199103' })"
  17. >
  18. {{ item }}
  19. </div>
  20. <div class="no-data">暂无数据!</div>
  21. </div>
  22. </li>
  23. <li>
  24. <div class="taskTitle color2">客户指定商品任务</div>
  25. <div class="taskList">
  26. <div
  27. class="aaa"
  28. v-for="item in list"
  29. :key="item"
  30. @click="routeGoto('workbenchDetail', { id: 'INF2203151428199103' })"
  31. >
  32. {{ item }}
  33. </div>
  34. <div class="no-data">暂无数据!</div>
  35. </div>
  36. </li>
  37. </ul>
  38. </div>
  39. <no-auth v-else></no-auth>
  40. <!-- 弹窗 新增/修改 -->
  41. <add-edit
  42. :id="modelId"
  43. :show-model="showModel"
  44. :sitem="sitem"
  45. @refresh="searchList"
  46. @cancel="showModel = false"
  47. />
  48. </div>
  49. </template>
  50. <script>
  51. import asyncRequest from "@/apis/service/purchaseIn/workbench";
  52. import statusList from "@/assets/js/statusList";
  53. import roleLevel from "@/assets/js/roleLevel";
  54. import mixinPage from "@/mixins/elPaginationHandle";
  55. import { mapGetters } from "vuex";
  56. import resToken from "@/mixins/resToken";
  57. export default {
  58. name: "workbench",
  59. mixins: [mixinPage, resToken],
  60. computed: {
  61. //组件SIZE设置
  62. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  63. powers() {
  64. let tran =
  65. this.$store.getters.btnList.find(
  66. (item) => item.menu_route == "workbench"
  67. ) || {};
  68. if (tran && tran.action && tran.action.length > 0) {
  69. return tran.action;
  70. } else {
  71. return [];
  72. }
  73. },
  74. },
  75. data() {
  76. return {
  77. statusList: statusList,
  78. roleLevel: roleLevel,
  79. loading: false,
  80. showModel: false,
  81. modelId: "000",
  82. sitem: {},
  83. list: [
  84. 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
  85. 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
  86. 39, 40,
  87. ],
  88. parmValue: {
  89. page: 1, // 页码
  90. size: 15, // 每页显示条数
  91. starttime: "",
  92. endtime: "",
  93. status: "",
  94. creater: "",
  95. },
  96. // 状态
  97. statusOptions: [
  98. { id: "0", label: "禁用" },
  99. { id: "1", label: "启用" },
  100. ],
  101. // 表格 - 数据
  102. tableData: [],
  103. // 表格 - 参数
  104. table: {
  105. stripe: true,
  106. border: true,
  107. _defaultHeader_: ["setcol"],
  108. },
  109. // 表格 - 分页
  110. pageInfo: {
  111. size: 15,
  112. curr: 1,
  113. total: 0,
  114. },
  115. // 表格 - 列参数
  116. columns: [
  117. {
  118. prop: "id",
  119. label: "ID",
  120. },
  121. {
  122. prop: "workbench",
  123. label: "活动名称",
  124. },
  125. {
  126. prop: "status",
  127. label: "状态",
  128. sortable: true,
  129. _slot_: "status",
  130. },
  131. {
  132. prop: "creater",
  133. label: "创建人",
  134. },
  135. {
  136. prop: "addtime",
  137. label: "创建时间",
  138. sortable: true,
  139. },
  140. {
  141. prop: "",
  142. label: "操作",
  143. fixed: "right",
  144. _noset_: true,
  145. _slot_: "operation",
  146. },
  147. ],
  148. };
  149. },
  150. mounted() {
  151. // this.searchList();
  152. },
  153. methods: {
  154. restSearch() {
  155. // 表格 - 分页
  156. this.pageInfo = {
  157. size: 15,
  158. curr: 1,
  159. total: 0,
  160. };
  161. this.parmValue = {
  162. page: 1, // 页码
  163. size: 15, // 每页显示条数
  164. starttime: "",
  165. endtime: "",
  166. status: "",
  167. creater: "",
  168. };
  169. this.searchList();
  170. },
  171. // 新建/编辑/详情
  172. openModal(row, type) {
  173. this.sitem = row;
  174. this.modelId = type;
  175. this.showModel = true;
  176. },
  177. // 时间
  178. async handleTime(e) {
  179. this.parmValue.starttime = e.startTime || "";
  180. this.parmValue.endtime = e.endTime || "";
  181. if (
  182. (this.parmValue.starttime !== "" && this.parmValue.endtime !== "") ||
  183. (this.parmValue.starttime === "" && this.parmValue.endtime === "")
  184. ) {
  185. this.pageInfo.curr = 1;
  186. this.parmValue.page = 1;
  187. await this.searchList();
  188. }
  189. },
  190. /**
  191. * 启用/禁用
  192. * @param {String} id id
  193. * @param {String} status 0-禁用 1-启用
  194. */
  195. async changeStatus(id, status) {
  196. await this.$confirm(`确定要改为${status === "1" ? "禁用" : "启用"}?`, {
  197. confirmButtonText: "确定",
  198. cancelButtonText: "取消",
  199. type: "warning",
  200. })
  201. .then(async () => {
  202. this.loading = true;
  203. const model = {
  204. id: id,
  205. status: status === "1" ? "0" : "1",
  206. };
  207. const res = await asyncRequest.status(model);
  208. if (res && res.code === 0) {
  209. this.loading = false;
  210. this.$notify.success({
  211. title: "状态修改成功!",
  212. message: "",
  213. });
  214. await this.searchList();
  215. } else if (res && res.code >= 100 && res.code <= 104) {
  216. await this.logout();
  217. } else {
  218. this.loading = false;
  219. this.$message.warning(res.message);
  220. }
  221. })
  222. .catch(() => {
  223. console.log("取消");
  224. });
  225. },
  226. async deleteItem(id) {
  227. await this.$confirm("确定要删除?", {
  228. confirmButtonText: "确定",
  229. cancelButtonText: "取消",
  230. type: "warning",
  231. })
  232. .then(async () => {
  233. const model = {
  234. id: id,
  235. };
  236. const res = await asyncRequest.delete(model);
  237. if (res && res.code === 0) {
  238. this.$notify.success({
  239. title: "删除成功",
  240. message: "",
  241. });
  242. this.searchList();
  243. } else if (res && res.code >= 100 && res.code <= 104) {
  244. await this.logout();
  245. } else {
  246. this.$message.warning(res.message);
  247. }
  248. })
  249. .catch(() => {
  250. console.log("取消");
  251. });
  252. },
  253. // 刷新表格
  254. async searchList() {
  255. this.loading = true;
  256. const res = await asyncRequest.list1(this.parmValue);
  257. if (res && res.code === 0 && res.data) {
  258. this.tableData = res.data.list;
  259. this.pageInfo.total = Number(res.data.count);
  260. } else if (res && res.code >= 100 && res.code <= 104) {
  261. await this.logout();
  262. } else {
  263. this.tableData = [];
  264. this.pageInfo.total = 0;
  265. }
  266. this.loading = false;
  267. },
  268. },
  269. };
  270. </script>
  271. <style lang="scss" scoped>
  272. @import "~@/styles/mixin.scss";
  273. .workbench {
  274. position: relative;
  275. width: 100%;
  276. height: calc(100vh - 50px);
  277. box-sizing: border-box;
  278. background: #f0f2f5;
  279. padding: 16px;
  280. .workbench-main {
  281. position: relative;
  282. width: 100%;
  283. height: 100%;
  284. box-sizing: border-box;
  285. ul {
  286. width: 100%;
  287. height: 100%;
  288. overflow-y: hidden;
  289. box-sizing: border-box;
  290. li {
  291. position: relative;
  292. height: 100%;
  293. width: 100%;
  294. border-radius: 5px;
  295. overflow: hidden;
  296. box-sizing: border-box;
  297. // border: 1px solid rgba(121, 121, 121, 1);
  298. .aaa {
  299. border-bottom: 1px dashed #e6ebf5;
  300. height: 140px;
  301. line-height: 140px;
  302. float: left;
  303. width: 100%;
  304. text-align: center;
  305. // &:last-child{
  306. // border: 0;
  307. // }
  308. }
  309. &:first-child {
  310. float: left;
  311. width: 66%;
  312. margin: 0 2% 0 0;
  313. .aaa {
  314. width: 50%;
  315. &:nth-child(2n + 1) {
  316. border-right: 1px dashed #e6ebf5;
  317. }
  318. }
  319. }
  320. &:last-child {
  321. margin: 0;
  322. float: right;
  323. width: 32%;
  324. }
  325. .taskTitle {
  326. width: 100%;
  327. height: 55px;
  328. line-height: 55px;
  329. text-align: center;
  330. position: absolute;
  331. top: 0;
  332. left: 0;
  333. z-index: 2;
  334. // border-bottom: 1px solid rgba(121, 121, 121, 1);
  335. &.color1 {
  336. background: rgba(250, 205, 145, 1);
  337. }
  338. &.color2 {
  339. background: rgba(202, 249, 130, 1);
  340. }
  341. // &.color3 {
  342. // background: rgba(129, 211, 248, 1);
  343. // }
  344. // &.color4 {
  345. // background: rgba(255, 255, 128, 1);
  346. // }
  347. }
  348. .taskList {
  349. position: relative;
  350. padding: 0 0 0 5px;
  351. margin: 56px 0 0 0;
  352. background: #fff;
  353. height: calc(100% - 56px);
  354. width: 100%;
  355. overflow-y: scroll;
  356. @include scrollBar();
  357. .no-data {
  358. width: 100%;
  359. height: 60px;
  360. line-height: 60px;
  361. font-size: 14px;
  362. float: left;
  363. text-align: center;
  364. color: rgba(0, 0, 0, 0.65);
  365. }
  366. }
  367. }
  368. }
  369. }
  370. }
  371. </style>