From 656899585152180d72efe3745e5cff7f4b914695 Mon Sep 17 00:00:00 2001 From: Aoi_Tori <2547614904@qq.com> Date: Mon, 30 Jun 2025 21:03:35 +0800 Subject: [PATCH] 2025/6/30 --- .../com_bm_customerInformation.vue | 50 +++++++++++++++---- 1 file changed, 39 insertions(+), 11 deletions(-) diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue index 47df391..a9ed2af 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_customerInformation.vue @@ -160,14 +160,29 @@ -
- - 附加客户图纸/Attach Customer Drawing(点击跳转) - - - - 附加客户图纸/Attach Customer Drawing(点击跳转) - +
+ + + + + + + + + + +
@@ -643,13 +658,19 @@ openNewPage (url) { // window.open(this.$store.state.user.bmPicUrl +url); - let urlIn = url.replaceAll('\\','/') - if (url === '') { + if (!url || typeof url !== 'string' || url.trim() === '') { this.$alert("链接没有数据!", '错误', { confirmButtonText: '确定' - }) + }); return false; } + let urlIn = url.replaceAll('\\','/') + // if (url === '') { + // this.$alert("链接没有数据!", '错误', { + // confirmButtonText: '确定' + // }) + // return false; + // } // window.open(url); let data = { url: urlIn @@ -719,4 +740,11 @@ height: auto; line-height: 1.5; } + +.tight-form-item /deep/ .el-form-item__label { + margin-bottom: 3px; +} +.tight-form-item /deep/ .el-form-item__content { + margin-top: 3px; +}