- {{$t('engineeringInterfacePerson')}}
- {{queryForm.sdtName || '--'}}
+ {{$t('certifiedEngineer')}}
+
+
+ {{item}}
+
+
+ --
@@ -280,6 +286,7 @@
deliverablesResultFile: [],
deliveryResultList: [],
isDisplay: false,
+ certificationEngineerName: [],
url: {
queryProjectCertificationInventoryById: '/phone/toDoCenter/queryProjectCertificationInventoryById',
saveBatch: '/project/projectCertificationInventoryEO/saveBatch'
@@ -295,7 +302,6 @@
iconClick() {
this.$router.go(-1)
},
-
getFileInfos(item) {
getAction('sys/common/getFileInfos', { id: item }).then((res) => {
if (res.success) {
@@ -450,11 +456,26 @@
this.getDeliveryResult(this.queryForm.deliverableTemplate)
}
this.queryForm = { ...this.queryForm }
+ this.getForm()
} else {
this.queryForm = {}
}
})
},
+ getForm() {
+ getAction('project/projectLibraryBase/queryById',
+ { id: this.queryForm.projectLibraryId }).then((res) => {
+ if (res.success) {
+ this.certificationEngineerName = []
+ this.certificationEngineerName = res.result[0].certificationEngineerName || ''
+ if (this.certificationEngineerName && typeof this.certificationEngineerName == 'string') {
+ this.certificationEngineerName = this.certificationEngineerName.split(',')
+ } else {
+ this.certificationEngineerName = []
+ }
+ }
+ })
+ },
async upload(file) {
// 这时候我们创建一个formData对象实例
const formData = new FormData()
@@ -498,10 +519,10 @@
if (!this.isBrowser()) {
Dialog.alert({
message: '未授权用户
Unauthorized User',
- theme: 'round-button',
+ theme: 'round-button'
}).then(() => {
// on close
- });
+ })
return
}
let url = kkFileView(item.fileName, item.id)
@@ -975,4 +996,14 @@
::v-deep .productionEnterpriseName .van-field__error-message {
display: none;
}
+
+ .content-box-textList {
+ display: inline-block;
+ width: 100%;
+ font-size: 0.38rem;
+ font-family: PingFang SC-Regular, PingFang SC;
+ font-weight: 500;
+ color: #040B29;
+ word-break: break-all;
+ }
\ No newline at end of file
diff --git a/jero-web/src/views/phoneView/recentBrowsing.vue b/jero-web/src/views/phoneView/recentBrowsing.vue
index b04313114..f6a2cc6cb 100644
--- a/jero-web/src/views/phoneView/recentBrowsing.vue
+++ b/jero-web/src/views/phoneView/recentBrowsing.vue
@@ -194,7 +194,7 @@
}
.content-text-button {
- font-size: 0.42rem;
+ font-size: 0.37rem;
font-family: PingFang SC-Regular, PingFang SC;
font-weight: 400;
color: #595E72;
From 431a75d3bb092a9a97d59feefbfa056377279a51 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167>
Date: Fri, 14 Jul 2023 11:16:07 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9UAT=E6=8F=90=E5=87=BA?=
=?UTF-8?q?=E7=9A=84=E4=BC=98=E5=8C=96=E7=82=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/views/documentManage/tags/dialog/ListTable.vue | 7 +++++++
.../src/views/documentManage/tags/dialog/TreeTable.vue | 7 +++++++
2 files changed, 14 insertions(+)
diff --git a/jero-web/src/views/documentManage/tags/dialog/ListTable.vue b/jero-web/src/views/documentManage/tags/dialog/ListTable.vue
index a5786a581..958328f09 100644
--- a/jero-web/src/views/documentManage/tags/dialog/ListTable.vue
+++ b/jero-web/src/views/documentManage/tags/dialog/ListTable.vue
@@ -71,6 +71,13 @@
ellipsis: true,
width: 100
},
+ {
+ title: this.$t('DisplayOrder'),
+ align: 'left',
+ width: 100,
+ ellipsis: true,
+ dataIndex: 'sortOrder'
+ },
{
title: this.$t('describe'),
align: 'left',
diff --git a/jero-web/src/views/documentManage/tags/dialog/TreeTable.vue b/jero-web/src/views/documentManage/tags/dialog/TreeTable.vue
index 1456d2bc5..29201a472 100644
--- a/jero-web/src/views/documentManage/tags/dialog/TreeTable.vue
+++ b/jero-web/src/views/documentManage/tags/dialog/TreeTable.vue
@@ -73,6 +73,13 @@
ellipsis: true,
width: 100
},
+ {
+ title: this.$t('DisplayOrder'),
+ align: 'left',
+ width: 100,
+ ellipsis: true,
+ dataIndex: 'sortOrder'
+ },
{
title: this.$t('describe'),
dataIndex: 'description',