From 6dc9010756dbc40debb6bbd82c0cd76df80b3c90 Mon Sep 17 00:00:00 2001 From: qiuyt Date: Tue, 25 Mar 2025 10:39:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0=E7=A0=81=E5=BA=93=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/product/basicYbNotCode.vue | 144 +++++++++++++++++++-- 1 file changed, 130 insertions(+), 14 deletions(-) diff --git a/src/views/basic/product/basicYbNotCode.vue b/src/views/basic/product/basicYbNotCode.vue index 4a51f0c4..6fcfb890 100644 --- a/src/views/basic/product/basicYbNotCode.vue +++ b/src/views/basic/product/basicYbNotCode.vue @@ -83,7 +83,6 @@ > - - + - + + 选入 + - +
@@ -148,21 +153,90 @@ 取消
+ - + + + + + + + + + + + + + + + + + + + + + + +
+ 查询 + +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + -
+ +
+ @@ -179,7 +253,9 @@ import { getOrganizationCode } from '@/api/basic/ybNotCode' - +import { + getUdiInfos +} from '@/api/basic/product/udiRelevance' import { getAdminId, getToken } from '@/utils/auth' import { executeFuc, getHead } from '@/utils/customConfig' import Treeselect from '@riophae/vue-treeselect' @@ -257,7 +333,17 @@ export default { uploadLoading: false, action: process.env.VUE_APP_BASE_API + '/udiwms/aliDrug/txtUpload', fileList: [], - thrYbData:{} + thrYbData:{}, + productList:[], + productMainIds:{}, + selectProductVisible:false, + filterProduct:{ + productsType: 2, + page: 1, + limit: 20, + addType: 1, + }, + productTotal:0 } }, methods: { @@ -420,6 +506,36 @@ export default { }).catch((error) => { this.$message.error(error.message) }) + }, + getProductList() { + getUdiInfos(this.filterProduct) + .then((response) => { + this.loading = false + this.productList = response.data.list || [] + this.productTotal = response.data.total || 0 + }) + .catch(() => { + this.productLoading = false + this.productList = [] + this.productTotal = 0 + }) + }, + closeProductVisible(){ + this.selectProductVisible = false + this.productList = [] + }, + handleCurrentChange() { + this.getProductList() + + }, + selectProduct(){ + this.selectProductVisible = true + this.getProductList() + }, + selectOne(row){ + this.formData.ybbm = row.ybbm + this.selectProductVisible = false + } }, filters: {