From 3e72240f9926463bba8d2d5cbec743dbcdcf9bd3 Mon Sep 17 00:00:00 2001 From: k94314517 <8417338+k94314517@user.noreply.gitee.com> Date: 星期日, 07 四月 2024 16:00:32 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/1.0.1' into 1.0.1 --- company/src/components/business/OperaSolutionsDescWindow.vue | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/company/src/components/business/OperaSolutionsDescWindow.vue b/company/src/components/business/OperaSolutionsDescWindow.vue index b6d2413..8404f01 100644 --- a/company/src/components/business/OperaSolutionsDescWindow.vue +++ b/company/src/components/business/OperaSolutionsDescWindow.vue @@ -1,7 +1,7 @@ <template> <GlobalWindow :title="title" - width="50%" + width="70%" text="淇敼" :withFooter="userInfo.type !== 1" :visible.sync="visible" @@ -64,6 +64,10 @@ <div class="info_list_item_label">鎺ユ敹鏂囦欢閭锛�</div> <div class="info_list_item_val">{{form.email}}</div> </div> + <div class="info_list_item" style="width: 100%" v-if="form.type==1"> + <div class="info_list_item_label">鏂规纭涔︼細</div> + <div class="info_list_item_val" ><a v-if="form.fanganFile && form.fanganFile.fileurlFull" style="cursor: pointer;color: #2E68EC" title="鐐瑰嚮鏌ョ湅" @click="openFile(form.fanganFile.fileurlFull)">{{ form.fanganFile.name || '鐐瑰嚮鏌ョ湅' }}</a></div> + </div> </div> <el-table :data="form.worktypeList" @@ -165,11 +169,13 @@ specialAgreement: '', specialInfo: '', ortherInfo: '', + fanganFile:null, insuranceName: '', signKeyword: '', worktypeList: [], worktypeIdList: [] } + this.$nextTick(() => { for (const key in this.form) { this.form[key] = target[key] @@ -177,6 +183,11 @@ this.getDetails() }) }, + openFile (url) { + setTimeout(() => { + window.open(url) + }, 500) + }, getDetails() { solutionsId(this.form.id) .then(res => { -- Gitblit v1.9.3