|
@@ -136,19 +136,16 @@
|
|
|
<div class="list-basis-text">
|
|
|
<div class="list-basis-text-t" :class="item.show?'show':''">
|
|
|
<div v-for="(yItem, yIndex) of item.basis" :key="yIndex" style="margin-bottom: 10px;">
|
|
|
- <div v-if="item.rule_id !== 6">
|
|
|
- <span class="span-index">{{ yIndex+1 }}</span>
|
|
|
- <span v-if="item.category=='入院记录'">
|
|
|
- <span v-for="(cItem, cIndex) of yItem" :key="cIndex" @click="hightRight(cItem,292,item.JZHM)" v-html="cItem"></span>
|
|
|
- </span>
|
|
|
- <span v-else>
|
|
|
- <span v-for="(cItem, cIndex) of yItem" :key="cIndex" v-html="cItem"></span>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- <div v-else>
|
|
|
- <span class="span-index">1</span>
|
|
|
- <span style="font-size: 13px;">{{ yItem[0] }}</span>
|
|
|
- </div>
|
|
|
+ <div v-if="typeof yItem == 'string'">
|
|
|
+ <span class="span-index">{{ yIndex+1 }}</span>
|
|
|
+ <span>{{yItem}}</span><br/>
|
|
|
+ </div>
|
|
|
+ <div v-else>
|
|
|
+ <span class="span-index">{{ yIndex+1 }}</span>
|
|
|
+ <span v-for="(cItem, cIndex) in yItem" :key="cIndex">
|
|
|
+ <span v-if="!isNaN(parseFloat(cIndex))" style="line-height: 25px">{{cItem}}</span><br/>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="list-basis-bottom-box" v-if="$route.path == '/whitelist-caseControl'">
|