<view wx:if="{{problemType}}" class="analysis-wrap">
|
<view class="analysis-title">
|
<view class="flex-h">
|
<t-icon name="chart-bubble" size="36rpx" color="var(--td-brand-color)" />
|
<text>问题分析</text>
|
</view>
|
</view>
|
<t-divider />
|
<view class="analysis-problem">{{problemType}}</view>
|
<view class="analysis-tag"> 当前问题总计{{problemCount}}个,发现该问题场景如下: </view>
|
<t-divider />
|
<view wx:for="{{thisSubtasks}}" data-index="{{index}}" bind:tap="navToDetail">
|
<view class="flex-h">
|
<view class="analysis-subtask"> {{index + 1 + '. ' + item.scensename}} </view>
|
<t-tag max-width="{{130}}" shape="square" size="small" theme="default" variant="light-outline"
|
>{{item.planstarttime}}</t-tag
|
>
|
</view>
|
<view class="analysis-tag"> 地址:{{item.scenseaddress}} </view>
|
<t-divider />
|
</view>
|
<!-- <view wx:for="{{lastSubtasks}}">{{item.name}}</view> -->
|
</view>
|