From d5bd0e88c1eec6bb2947d2bfa57348d89edbc1c3 Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: Fri, 18 Jul 2025 16:20:45 +0800
Subject: [PATCH] 修改
---
src/views/build/conpanyFunctionConsult/orgStructure/dutyDistributeChart/index.vue | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/views/build/conpanyFunctionConsult/orgStructure/dutyDistributeChart/index.vue b/src/views/build/conpanyFunctionConsult/orgStructure/dutyDistributeChart/index.vue
index 6b619b7..f536e19 100644
--- a/src/views/build/conpanyFunctionConsult/orgStructure/dutyDistributeChart/index.vue
+++ b/src/views/build/conpanyFunctionConsult/orgStructure/dutyDistributeChart/index.vue
@@ -75,7 +75,7 @@
</el-input>
</el-form-item>
- <span v-else>{{ remarkForm.tableData[scope.$index].remark }}</span>
+ <span v-else>{{ remarkForm?.tableData?.[scope.$index]?.remark || '' }}</span>
</div>
</template>
</el-table-column>
@@ -238,7 +238,7 @@
return {
companyId: data.queryParams.companyId,
clauseNum: i.clauseNum,
- remark: i.remark
+ remark: i.remark.trim()
}
})
if(data.form.list.length == 0 && data.form.remarks.length == 0){
@@ -310,6 +310,7 @@
data.remarkForm = {
tableData: JSON.parse(JSON.stringify(data.caluseList))
}
+ console.log(data.remarkForm,5555555)
loading.value = false
}
--
Gitblit v1.9.2