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: {