From b496da6315314d9bd048ac2214d8bc95d2f1df02 Mon Sep 17 00:00:00 2001 From: MrShi <1878285526@qq.com> Date: 星期三, 13 十一月 2024 08:59:18 +0800 Subject: [PATCH] 优化 --- company/src/components/business/OperaSolutionsDescWindow.vue | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/company/src/components/business/OperaSolutionsDescWindow.vue b/company/src/components/business/OperaSolutionsDescWindow.vue index 988a7fe..2fa8651 100644 --- a/company/src/components/business/OperaSolutionsDescWindow.vue +++ b/company/src/components/business/OperaSolutionsDescWindow.vue @@ -59,7 +59,7 @@ </div> <div style="font-size: 18px; font-weight: bold; margin-bottom: 10px;">鏂规浣跨敤鎯呭喌</div> <el-table - :data="form.worktypeList" + :data="list" border style="width: 100%; margin-bottom: 20px;"> <el-table-column @@ -157,7 +157,8 @@ signKeyword: '', worktypeList: [], worktypeIdList: [] - } + }, + list: [] } }, computed: { @@ -219,7 +220,7 @@ getList() { listForCompany({ solutionId: this.form.id }) .then(res => { - console.log(res) + this.list = res }) }, openFile (url) { -- Gitblit v1.9.3