fix: 查看场景测试报告报错
This commit is contained in:
parent
b14abedb88
commit
74cd21ce5e
|
@ -70,12 +70,17 @@
|
|||
<if test="request.orders != null and request.orders.size() > 0">
|
||||
order by
|
||||
<foreach collection="request.orders" separator="," item="order">
|
||||
<if test="order.name == 'num'">
|
||||
lt.${order.name} ${order.type}
|
||||
</if>
|
||||
<if test="order.name != 'num'">
|
||||
tplc.${order.name} ${order.type}
|
||||
</if>
|
||||
<choose>
|
||||
<when test="order.name == 'num'">
|
||||
lt.${order.name} ${order.type}
|
||||
</when>
|
||||
<when test="order.name == 'case_name'">
|
||||
lt.name ${order.type}
|
||||
</when>
|
||||
<otherwise>
|
||||
tplc.${order.name} ${order.type}
|
||||
</otherwise>
|
||||
</choose>
|
||||
</foreach>
|
||||
</if>
|
||||
</select>
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
prop="caseName"
|
||||
:label="$t('commons.name')"
|
||||
min-width="120"
|
||||
sortable
|
||||
show-overflow-tooltip
|
||||
:key="index">
|
||||
</el-table-column>
|
||||
|
|
Loading…
Reference in New Issue