| | |
| | | <div class="info"> |
| | | <div class="info_list"> |
| | | <div class="info_list_item"> |
| | | <div class="info_list_item_label">子方案:</div> |
| | | <div class="info_list_item_label">{{userInfo.type!=1?'子方案:':'方案:'}}</div> |
| | | <div class="info_list_item_val">{{form.name}}</div> |
| | | </div> |
| | | <div class="info_list_item"> |
| | | <div class="info_list_item" v-if="userInfo.type !== 1"> |
| | | <div class="info_list_item_label">主方案:</div> |
| | | <div class="info_list_item_val"><a @click="$refs.operaSolutionsBaseDescWindow.open('主方案详情', { id: form.parentId })" style="cursor: pointer;color: #2E68EC;">{{form.solutionBaseName}}</a></div> |
| | | </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> |
| | | <div style="font-size: 18px; font-weight: bold; margin-bottom: 10px;">方案使用情况</div> |
| | | <div style="font-size: 18px; font-weight: bold; margin-bottom: 10px;" v-if="userInfo.type === 0">方案使用情况</div> |
| | | <el-table |
| | | :data="form.worktypeList" |
| | | v-if="userInfo.type === 0" |
| | | :data="list" |
| | | border |
| | | style="width: 100%; margin-bottom: 20px;"> |
| | | <el-table-column |
| | |
| | | signKeyword: '', |
| | | worktypeList: [], |
| | | worktypeIdList: [] |
| | | } |
| | | }, |
| | | list: [] |
| | | } |
| | | }, |
| | | computed: { |
| | |
| | | getList() { |
| | | listForCompany({ solutionId: this.form.id }) |
| | | .then(res => { |
| | | console.log(res) |
| | | this.list = res |
| | | }) |
| | | }, |
| | | openFile (url) { |