mirror of
https://gitee.com/fit2cloud-feizhiyun/MeterSphere.git
synced 2024-12-02 03:58:33 +08:00
fix(接口测试): 修复场景定时任务模块树统计和列表数量不符合的缺陷
--bug=1031581 --user=王孝刚 【接口测试】首页-场景定时任务数量统计-运行中/未运行-点击进入新tab页面左侧模块树数量显示不符 https://www.tapd.cn/55049933/s/1425553
This commit is contained in:
parent
f3ff5b4180
commit
68d5f73290
@ -150,7 +150,9 @@ export default {
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.list();
|
||||
if(!this.$route.params) {
|
||||
this.list()
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
'condition.filterText'() {
|
||||
|
@ -131,6 +131,7 @@ export default {
|
||||
'image/svg+xml',
|
||||
'image/apng',
|
||||
'image/avif',
|
||||
"application/octet-stream"
|
||||
],
|
||||
srcUrl: '',
|
||||
};
|
||||
|
@ -27,7 +27,7 @@ public class JMeterBase {
|
||||
private final static String SPLIT_EQ = "split==";
|
||||
private final static String SPLIT_AND = "split&&";
|
||||
|
||||
private static final List<String> imageList = Arrays.asList("image/png", "image/jpeg", "image/gif", "image/bmp", "image/webp", "image/svg+xml", "image/apng", "image/avif");
|
||||
private static final List<String> imageList = Arrays.asList("image/png", "image/jpeg", "image/gif", "image/bmp", "image/webp", "image/svg+xml", "image/apng", "image/avif", "application/octet-stream");
|
||||
|
||||
public static HashTree getHashTree(Object scriptWrapper) throws Exception {
|
||||
Field field = scriptWrapper.getClass().getDeclaredField("testPlan");
|
||||
|
Loading…
Reference in New Issue
Block a user