...
|
...
|
@@ -7,7 +7,7 @@ |
|
|
<el-tooltip v-model="visible">
|
|
|
<template #content>
|
|
|
<div class="basic-ul-all" style="width:720px;" @click="pressingVisibleTip=false">
|
|
|
<el-row class="basic-item" :style="fontStyle" v-for="item in informationDataAll">
|
|
|
<el-row class="basic-item" :style="fontStyle" v-for="(item,index) in informationDataAll" :key="index">
|
|
|
<el-col class="basic-border basic-item-title basic-flex" :span="10">
|
|
|
{{ item.name }}
|
|
|
<span class="basic-img" v-if="item.code=='link'">
|
...
|
...
|
@@ -27,7 +27,7 @@ |
|
|
</div>
|
|
|
</div>
|
|
|
<div class="basic-ul">
|
|
|
<el-row class="basic-item" :style="fontStyle" v-for="item in informationData">
|
|
|
<el-row class="basic-item" :style="fontStyle" v-for="(item,index) in informationData" :key="index">
|
|
|
<el-col class="basic-border basic-item-title basic-flex" :span="10">
|
|
|
{{ item.name }}
|
|
|
<span class="basic-img" v-if="item.code=='link'">
|
...
|
...
|
|