diff --git a/src/components/contractIntegration/index.vue b/src/components/contractIntegration/index.vue
index f800cf5..f736473 100644
--- a/src/components/contractIntegration/index.vue
+++ b/src/components/contractIntegration/index.vue
@@ -178,7 +178,7 @@
申请时间
- {{ shOaView.create_at }}
+ {{ shOaView.created_at }}
审批状态
@@ -722,8 +722,8 @@ export default {
// 注释掉的代码已移除,直接使用res.plans
console.log('合同详情:', this.detail)
// 获取上会详情
- if (this.detail.meeting_flow_mod_id) {
- this.getShOaView(this.detail.sh_id)
+ if (this.detail.meeting_flow_id) {
+ this.getShOaView(this.detail.meeting_flow_id)
}
// 获取合同签订计划
// const plan = await getContractSign({
@@ -783,10 +783,8 @@ export default {
}
},
async getShOaView(id) {
- const res = await getOaView({
- id: id
- })
- this.shOaView = res.data.flow
+ const res = await getOaView(id)
+ this.shOaView = res.flow
},
// 概览/详情-合同签订状态类名(结合是否需要合同签订与审批完成)
getOverviewStepClassForContractSign() {