From 2d1592ece14ca52e64298cc9c6fbca329664803b Mon Sep 17 00:00:00 2001 From: ruanqi Date: Wed, 17 Apr 2024 16:39:19 +0800 Subject: [PATCH] plm BM --- src/api/project/project.js | 1 + src/views/modules/common/Chooselist.vue | 2 +- .../projectPart/com_projectPart_quotation.vue | 265 ++++++++ ...com_projectPart_technicalSpecification.vue | 405 +++++++++++ .../project/projectPart/searchProjectPart.vue | 638 ++++++++++++++++++ .../com_bm_customerInformation.vue | 24 +- .../com_bm_routing.vue | 52 +- .../com_tsd_basicInformation.vue | 62 +- 8 files changed, 1429 insertions(+), 20 deletions(-) create mode 100644 src/views/modules/project/projectPart/com_projectPart_quotation.vue create mode 100644 src/views/modules/project/projectPart/com_projectPart_technicalSpecification.vue create mode 100644 src/views/modules/project/projectPart/searchProjectPart.vue diff --git a/src/api/project/project.js b/src/api/project/project.js index a349bcb..9aa949b 100644 --- a/src/api/project/project.js +++ b/src/api/project/project.js @@ -44,3 +44,4 @@ export const addContact= data => createAPI(`/project/addContact`,'post',data) export const deleteContact= data => createAPI(`/project/deleteContact`,'post',data) export const queryCustomerContact= data => createAPI(`/project/queryCustomerContact`,'post',data) +export const projectInfoPartSearch= data => createAPI(`/project/projectInfoPartSearch`,'post',data) diff --git a/src/views/modules/common/Chooselist.vue b/src/views/modules/common/Chooselist.vue index 3dd7601..d0dcc54 100644 --- a/src/views/modules/common/Chooselist.vue +++ b/src/views/modules/common/Chooselist.vue @@ -120,7 +120,7 @@ export default { init(tagNo,param,conSql) { this.tagNo = tagNo this.visible = true; - this.param = param + this.param = param===null?'':param this.conSql = conSql?conSql: '' // 根据 tagNo 获取列表 getChooselist({"tagNo": tagNo}).then(({data}) => { diff --git a/src/views/modules/project/projectPart/com_projectPart_quotation.vue b/src/views/modules/project/projectPart/com_projectPart_quotation.vue new file mode 100644 index 0000000..243b97f --- /dev/null +++ b/src/views/modules/project/projectPart/com_projectPart_quotation.vue @@ -0,0 +1,265 @@ + + + + + diff --git a/src/views/modules/project/projectPart/com_projectPart_technicalSpecification.vue b/src/views/modules/project/projectPart/com_projectPart_technicalSpecification.vue new file mode 100644 index 0000000..2ed1ee3 --- /dev/null +++ b/src/views/modules/project/projectPart/com_projectPart_technicalSpecification.vue @@ -0,0 +1,405 @@ + + + + + diff --git a/src/views/modules/project/projectPart/searchProjectPart.vue b/src/views/modules/project/projectPart/searchProjectPart.vue new file mode 100644 index 0000000..d03b3f5 --- /dev/null +++ b/src/views/modules/project/projectPart/searchProjectPart.vue @@ -0,0 +1,638 @@ + + + + + diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue index 3329072..f7b223c 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue @@ -1,5 +1,8 @@