diff --git a/src/views/index.vue b/src/views/index.vue index 904d9ee4..f0b72b3b 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -212,7 +212,7 @@ @@ -318,8 +318,15 @@ export default { this.certMsgCount = res.data }) }, - linkPage(path) { + linkPage(row) { + let path = "" + if (row.productType == 2){ + path = "/drug/order/drug/checked" + }else { + path = "/order/checked" + } console.log(path) + this.$router.push(path) }, getSysMsgTodoList() { diff --git a/src/views/inoutDrug/DialogSelectInvProduct.vue b/src/views/inoutDrug/DialogSelectInvProduct.vue index abb5200f..c6179bc4 100644 --- a/src/views/inoutDrug/DialogSelectInvProduct.vue +++ b/src/views/inoutDrug/DialogSelectInvProduct.vue @@ -14,8 +14,8 @@ - - + + @@ -77,7 +77,6 @@ - @@ -87,7 +86,7 @@ - + diff --git a/src/views/pharmaceuticals/purApplyDrug/purUdiRlDetailDialog.vue b/src/views/pharmaceuticals/purApplyDrug/purUdiRlDetailDialog.vue index 0da368ed..130b6969 100644 --- a/src/views/pharmaceuticals/purApplyDrug/purUdiRlDetailDialog.vue +++ b/src/views/pharmaceuticals/purApplyDrug/purUdiRlDetailDialog.vue @@ -436,11 +436,12 @@ export default { if (this.editQuery.uuid != null) { this.query.uuid = this.editQuery.uuid //根据 type 的值决定 id 的来源 - if (this.type == 1) { + // if (this.type == 1) { this.query.id = this.editQuery.rlId; // 如果 type 为 1,使用 relId - } else { - this.query.id = this.editQuery.id; // 否则使用 id - } + // } + // else { + // this.query.id = this.editQuery.id; // 否则使用 id + // } filterByUuid(this.query) .then((response) => { this.loading = false