|  |  |  | 
|---|
|  |  |  | <template> | 
|---|
|  |  |  | <GlobalWindow | 
|---|
|  |  |  | :title="title" | 
|---|
|  |  |  | width="50%" | 
|---|
|  |  |  | width="70%" | 
|---|
|  |  |  | text="修改" | 
|---|
|  |  |  | :withFooter="userInfo.type !== 1" | 
|---|
|  |  |  | :visible.sync="visible" | 
|---|
|  |  |  | 
|---|
|  |  |  | <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" | 
|---|
|  |  |  | 
|---|
|  |  |  | specialAgreement: '', | 
|---|
|  |  |  | specialInfo: '', | 
|---|
|  |  |  | ortherInfo: '', | 
|---|
|  |  |  | fanganFile:null, | 
|---|
|  |  |  | insuranceName: '', | 
|---|
|  |  |  | signKeyword: '', | 
|---|
|  |  |  | worktypeList: [], | 
|---|
|  |  |  | worktypeIdList: [] | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.$nextTick(() => { | 
|---|
|  |  |  | for (const key in this.form) { | 
|---|
|  |  |  | this.form[key] = target[key] | 
|---|
|  |  |  | 
|---|
|  |  |  | this.getDetails() | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | openFile (url) { | 
|---|
|  |  |  | setTimeout(() => { | 
|---|
|  |  |  | window.open(url) | 
|---|
|  |  |  | }, 500) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | getDetails() { | 
|---|
|  |  |  | solutionsId(this.form.id) | 
|---|
|  |  |  | .then(res => { | 
|---|