diff --git a/src/api/basic/workPlace/SysWorkplaceQueue.js b/src/api/basic/workPlace/SysWorkplaceQueue.js index 8ccfd4ee..5dbf858a 100644 --- a/src/api/basic/workPlace/SysWorkplaceQueue.js +++ b/src/api/basic/workPlace/SysWorkplaceQueue.js @@ -62,9 +62,33 @@ export function addLayer(query) { }); } +export function getInfoByCode(query) { + return axios({ + url: "/udiwms/sysWorkplaceQueue/getInfoByCode", + method: "post", + data: query + }); +} + +export function getProductByCode(query) { + return axios({ + url: "/udiwms/sysWorkplaceQueue/getProductByCode", + method: "post", + data: query + }); +} + +export function bind(query) { + return axios({ + url: "/udiwms/WorkplaceQueue/bind", + method: "post", + data: query + }); +} + export function getQueueListPage(query) { return axios({ - url: "/udiwms/sysWorkplaceQueue/getQueueList", + url: "/udiwms/sysWorkplaceQueue/getQueueBindList", method: "get", params: query }); diff --git a/src/views/basic/workplace/workplaceQueue.vue b/src/views/basic/workplace/workplaceQueue.vue index 5e798fbc..de987547 100644 --- a/src/views/basic/workplace/workplaceQueue.vue +++ b/src/views/basic/workplace/workplaceQueue.vue @@ -4,21 +4,28 @@ - - + + -
显示/隐藏搜索栏 + 维护绑定关系 + 查询 - +
@@ -40,7 +46,9 @@ - + + + @@ -60,12 +68,88 @@ @pagination="getCodeDetailList" /> + + + + + + + + + + + + + + + + + {{sysWorkplaceQueue.code}} + {{sysWorkplaceQueue.name}} + {{sysWorkplaceQueue.remark}} + + + + + + + + + + + + + + {{product.nameCode}} + {{product.cpmctymc}} + {{product.ggxh}} + + + + + +
+ 提交 +
+ +
+