|
@@ -36,17 +36,21 @@
|
|
|
<view>
|
|
|
考评指标
|
|
|
</view>
|
|
|
- <view class="margin-left">
|
|
|
+ <view v-if="infoData.clsName" class="margin-left">
|
|
|
{{infoData.clsName}}
|
|
|
</view>
|
|
|
+ <view v-else class="ygq">
|
|
|
+ <u-icon name="info-circle"></u-icon>
|
|
|
+ 未关联问题项
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<!-- 描述 -->
|
|
|
<view class="text-item">
|
|
|
<view>
|
|
|
描述
|
|
|
</view>
|
|
|
- <view class="margin-left">
|
|
|
- {{infoData.problemDesc}}
|
|
|
+ <view :class="['margin-left',infoData.problemDesc?'':'ygq']">
|
|
|
+ {{infoData.problemDesc?infoData.problemDesc:'暂无'}}
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -265,12 +269,12 @@
|
|
|
.dzg{
|
|
|
color: #007AFF;
|
|
|
}
|
|
|
- .ygq {
|
|
|
- color: #999;
|
|
|
- }
|
|
|
.ywc {
|
|
|
color: #10c71e;
|
|
|
}
|
|
|
}
|
|
|
+ .ygq {
|
|
|
+ color: #999;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|